@markuplint/parser-utils 1.6.1 → 2.0.0-dev.23

This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
package/lib/index.js CHANGED
@@ -1,24 +1,11 @@
1
1
  "use strict";
2
2
  Object.defineProperty(exports, "__esModule", { value: true });
3
- exports.ignoreFrontMatter = void 0;
4
3
  const tslib_1 = require("tslib");
5
- tslib_1.__exportStar(require("./ignore-block"), exports);
6
- tslib_1.__exportStar(require("./utils"), exports);
7
- function ignoreFrontMatter(code) {
8
- const reStart = /^(?:\s*\r?\n)?---\r?\n/.exec(code);
9
- if (!reStart) {
10
- return code;
11
- }
12
- const startPoint = reStart[0].length;
13
- const afterStart = code.slice(startPoint);
14
- const reEnd = /\r?\n---\r?\n/.exec(afterStart);
15
- if (!reEnd) {
16
- return code;
17
- }
18
- const endPoint = startPoint + reEnd.index + reEnd[0].length;
19
- const frontMatter = code.slice(0, endPoint);
20
- const afterCode = code.slice(endPoint);
21
- const masked = frontMatter.replace(/[^\r\n]/g, ' ');
22
- return masked + afterCode;
23
- }
24
- exports.ignoreFrontMatter = ignoreFrontMatter;
4
+ (0, tslib_1.__exportStar)(require("./decision"), exports);
5
+ (0, tslib_1.__exportStar)(require("./get-location"), exports);
6
+ (0, tslib_1.__exportStar)(require("./create-token"), exports);
7
+ (0, tslib_1.__exportStar)(require("./idl-attributes"), exports);
8
+ (0, tslib_1.__exportStar)(require("./walker"), exports);
9
+ (0, tslib_1.__exportStar)(require("./ignore-block"), exports);
10
+ (0, tslib_1.__exportStar)(require("./ignore-front-matter"), exports);
11
+ (0, tslib_1.__exportStar)(require("./debugger"), exports);
@@ -0,0 +1,9 @@
1
+ import type { MLASTNode } from '@markuplint/ml-ast';
2
+ /**
3
+ * Correct the references to prevNode and nextNode in the order listed.
4
+ *
5
+ * @param nodeList
6
+ * @affects nodeList[].prevNode
7
+ * @affects nodeList[].nextNode
8
+ */
9
+ export declare function siblingsCorrection(nodeList: MLASTNode[]): void;
@@ -0,0 +1,20 @@
1
+ "use strict";
2
+ Object.defineProperty(exports, "__esModule", { value: true });
3
+ exports.siblingsCorrection = void 0;
4
+ /**
5
+ * Correct the references to prevNode and nextNode in the order listed.
6
+ *
7
+ * @param nodeList
8
+ * @affects nodeList[].prevNode
9
+ * @affects nodeList[].nextNode
10
+ */
11
+ function siblingsCorrection(nodeList) {
12
+ for (let i = 0; i < nodeList.length; i++) {
13
+ const prevNode = nodeList[i - 1] || null;
14
+ const node = nodeList[i];
15
+ const nextNode = nodeList[i + 1] || null;
16
+ node.prevNode = prevNode;
17
+ node.nextNode = nextNode;
18
+ }
19
+ }
20
+ exports.siblingsCorrection = siblingsCorrection;
@@ -0,0 +1,2 @@
1
+ import type { MLASTNode, Walker } from '@markuplint/ml-ast';
2
+ export declare function walk(nodeList: MLASTNode[], walker: Walker, depth?: number): void;
package/lib/walker.js ADDED
@@ -0,0 +1,20 @@
1
+ "use strict";
2
+ Object.defineProperty(exports, "__esModule", { value: true });
3
+ exports.walk = void 0;
4
+ function walk(nodeList, walker, depth = 0) {
5
+ for (const node of nodeList) {
6
+ walker(node, depth);
7
+ if ('childNodes' in node) {
8
+ if (node.type === 'endtag') {
9
+ continue;
10
+ }
11
+ if (node.childNodes && node.childNodes.length) {
12
+ walk(node.childNodes, walker, depth + 1);
13
+ }
14
+ if ('pearNode' in node && node.pearNode) {
15
+ walker(node.pearNode, depth);
16
+ }
17
+ }
18
+ }
19
+ }
20
+ exports.walk = walk;
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@markuplint/parser-utils",
3
- "version": "1.6.1",
3
+ "version": "2.0.0-dev.23+6a10aede",
4
4
  "description": "Utility module for markuplint parser plugin",
5
5
  "repository": "git@github.com:markuplint/markuplint.git",
6
6
  "author": "Yusuke Hirao <yusukehirao@me.com>",
@@ -19,9 +19,9 @@
19
19
  "@types/uuid": "^8.3.1"
20
20
  },
21
21
  "dependencies": {
22
- "@markuplint/ml-ast": "^1.6.0",
23
- "tslib": "^2.3.0",
22
+ "@markuplint/ml-ast": "^2.0.0-dev.36+6a10aede",
23
+ "tslib": "^2.3.1",
24
24
  "uuid": "^8.3.2"
25
25
  },
26
- "gitHead": "26df7acd93a28fa331773cbe895a234a17fc63b6"
26
+ "gitHead": "6a10aede7385e2e97d0ba2c272a2e8c08e5429fd"
27
27
  }
@@ -1,13 +1,3 @@
1
1
  {
2
- "extends": "../../../tsconfig.json",
3
- "compilerOptions": {
4
- "composite": true
5
- },
6
- "references": [
7
- {
8
- "path": "../ml-ast"
9
- }
10
- ],
11
- "include": ["./src/**/*"],
12
- "exclude": ["node_modules"]
2
+ "extends": "../../../tsconfig.json"
13
3
  }
@@ -1 +1 @@
1
- {"program":{"fileNames":["../../../node_modules/typescript/lib/lib.es5.d.ts","../../../node_modules/typescript/lib/lib.es2015.d.ts","../../../node_modules/typescript/lib/lib.es2016.d.ts","../../../node_modules/typescript/lib/lib.es2017.d.ts","../../../node_modules/typescript/lib/lib.es2018.d.ts","../../../node_modules/typescript/lib/lib.es2019.d.ts","../../../node_modules/typescript/lib/lib.es2020.d.ts","../../../node_modules/typescript/lib/lib.es2021.d.ts","../../../node_modules/typescript/lib/lib.esnext.d.ts","../../../node_modules/typescript/lib/lib.dom.d.ts","../../../node_modules/typescript/lib/lib.es2015.core.d.ts","../../../node_modules/typescript/lib/lib.es2015.collection.d.ts","../../../node_modules/typescript/lib/lib.es2015.generator.d.ts","../../../node_modules/typescript/lib/lib.es2015.iterable.d.ts","../../../node_modules/typescript/lib/lib.es2015.promise.d.ts","../../../node_modules/typescript/lib/lib.es2015.proxy.d.ts","../../../node_modules/typescript/lib/lib.es2015.reflect.d.ts","../../../node_modules/typescript/lib/lib.es2015.symbol.d.ts","../../../node_modules/typescript/lib/lib.es2015.symbol.wellknown.d.ts","../../../node_modules/typescript/lib/lib.es2016.array.include.d.ts","../../../node_modules/typescript/lib/lib.es2017.object.d.ts","../../../node_modules/typescript/lib/lib.es2017.sharedmemory.d.ts","../../../node_modules/typescript/lib/lib.es2017.string.d.ts","../../../node_modules/typescript/lib/lib.es2017.intl.d.ts","../../../node_modules/typescript/lib/lib.es2017.typedarrays.d.ts","../../../node_modules/typescript/lib/lib.es2018.asyncgenerator.d.ts","../../../node_modules/typescript/lib/lib.es2018.asynciterable.d.ts","../../../node_modules/typescript/lib/lib.es2018.intl.d.ts","../../../node_modules/typescript/lib/lib.es2018.promise.d.ts","../../../node_modules/typescript/lib/lib.es2018.regexp.d.ts","../../../node_modules/typescript/lib/lib.es2019.array.d.ts","../../../node_modules/typescript/lib/lib.es2019.object.d.ts","../../../node_modules/typescript/lib/lib.es2019.string.d.ts","../../../node_modules/typescript/lib/lib.es2019.symbol.d.ts","../../../node_modules/typescript/lib/lib.es2020.bigint.d.ts","../../../node_modules/typescript/lib/lib.es2020.promise.d.ts","../../../node_modules/typescript/lib/lib.es2020.sharedmemory.d.ts","../../../node_modules/typescript/lib/lib.es2020.string.d.ts","../../../node_modules/typescript/lib/lib.es2020.symbol.wellknown.d.ts","../../../node_modules/typescript/lib/lib.es2020.intl.d.ts","../../../node_modules/typescript/lib/lib.es2021.promise.d.ts","../../../node_modules/typescript/lib/lib.es2021.string.d.ts","../../../node_modules/typescript/lib/lib.es2021.weakref.d.ts","../../../node_modules/typescript/lib/lib.esnext.intl.d.ts","../../../node_modules/tslib/tslib.d.ts","./src/const.ts","./src/types.ts","../ml-ast/lib/types.d.ts","../ml-ast/lib/index.d.ts","../../../node_modules/@types/uuid/index.d.ts","./src/utils.ts","./src/ignore-block.ts","./src/index.ts","../../../node_modules/@types/anymatch/index.d.ts","../../../node_modules/@babel/types/lib/index.d.ts","../../../node_modules/@types/babel__generator/index.d.ts","../../../node_modules/@babel/parser/typings/babel-parser.d.ts","../../../node_modules/@types/babel__template/index.d.ts","../../../node_modules/@types/babel__traverse/index.d.ts","../../../node_modules/@types/babel__core/index.d.ts","../../../node_modules/@types/node/assert/strict.d.ts","../../../node_modules/@types/node/globals.d.ts","../../../node_modules/@types/node/async_hooks.d.ts","../../../node_modules/@types/node/buffer.d.ts","../../../node_modules/@types/node/child_process.d.ts","../../../node_modules/@types/node/cluster.d.ts","../../../node_modules/@types/node/console.d.ts","../../../node_modules/@types/node/constants.d.ts","../../../node_modules/@types/node/crypto.d.ts","../../../node_modules/@types/node/dgram.d.ts","../../../node_modules/@types/node/dns.d.ts","../../../node_modules/@types/node/dns/promises.d.ts","../../../node_modules/@types/node/domain.d.ts","../../../node_modules/@types/node/events.d.ts","../../../node_modules/@types/node/fs.d.ts","../../../node_modules/@types/node/fs/promises.d.ts","../../../node_modules/@types/node/http.d.ts","../../../node_modules/@types/node/http2.d.ts","../../../node_modules/@types/node/https.d.ts","../../../node_modules/@types/node/inspector.d.ts","../../../node_modules/@types/node/module.d.ts","../../../node_modules/@types/node/net.d.ts","../../../node_modules/@types/node/os.d.ts","../../../node_modules/@types/node/path.d.ts","../../../node_modules/@types/node/perf_hooks.d.ts","../../../node_modules/@types/node/process.d.ts","../../../node_modules/@types/node/punycode.d.ts","../../../node_modules/@types/node/querystring.d.ts","../../../node_modules/@types/node/readline.d.ts","../../../node_modules/@types/node/repl.d.ts","../../../node_modules/@types/node/stream.d.ts","../../../node_modules/@types/node/stream/promises.d.ts","../../../node_modules/@types/node/string_decoder.d.ts","../../../node_modules/@types/node/timers.d.ts","../../../node_modules/@types/node/timers/promises.d.ts","../../../node_modules/@types/node/tls.d.ts","../../../node_modules/@types/node/trace_events.d.ts","../../../node_modules/@types/node/tty.d.ts","../../../node_modules/@types/node/url.d.ts","../../../node_modules/@types/node/util.d.ts","../../../node_modules/@types/node/v8.d.ts","../../../node_modules/@types/node/vm.d.ts","../../../node_modules/@types/node/worker_threads.d.ts","../../../node_modules/@types/node/zlib.d.ts","../../../node_modules/@types/node/globals.global.d.ts","../../../node_modules/@types/node/wasi.d.ts","../../../node_modules/@types/node/ts3.6/base.d.ts","../../../node_modules/@types/node/assert.d.ts","../../../node_modules/@types/node/base.d.ts","../../../node_modules/@types/node/index.d.ts","../../../node_modules/@types/connect/index.d.ts","../../../node_modules/@types/body-parser/index.d.ts","../../../node_modules/@types/cheerio/index.d.ts","../../../node_modules/@types/cli-color/art.d.ts","../../../node_modules/@types/cli-color/bare.d.ts","../../../node_modules/@types/cli-color/beep.d.ts","../../../node_modules/@types/cli-color/columns.d.ts","../../../node_modules/@types/cli-color/erase.d.ts","../../../node_modules/@types/cli-color/move.d.ts","../../../node_modules/@types/cli-color/get-stripped-length.d.ts","../../../node_modules/@types/cli-color/slice.d.ts","../../../node_modules/@types/cli-color/strip.d.ts","../../../node_modules/@types/cli-color/throbber.d.ts","../../../node_modules/@types/cli-color/reset.d.ts","../../../node_modules/@types/cli-color/window-size.d.ts","../../../node_modules/@types/cli-color/index.d.ts","../../../node_modules/@types/cli-progress/index.d.ts","../../../node_modules/@types/range-parser/index.d.ts","../../../node_modules/@types/qs/index.d.ts","../../../node_modules/@types/express-serve-static-core/index.d.ts","../../../node_modules/@types/connect-history-api-fallback/index.d.ts","../../../node_modules/@types/eslint/helpers.d.ts","../../../node_modules/@types/eslint/lib/rules/index.d.ts","../../../node_modules/@types/json-schema/index.d.ts","../../../node_modules/@types/estree/index.d.ts","../../../node_modules/@types/eslint/index.d.ts","../../../node_modules/@types/eslint-scope/index.d.ts","../../../node_modules/@types/mime/index.d.ts","../../../node_modules/@types/serve-static/index.d.ts","../../../node_modules/@types/express/index.d.ts","../../../node_modules/@types/minimatch/index.d.ts","../../../node_modules/@types/glob/index.d.ts","../../../node_modules/@types/graceful-fs/index.d.ts","../../../node_modules/@types/unist/index.d.ts","../../../node_modules/@types/hast/index.d.ts","../../../node_modules/@types/html-minifier-terser/index.d.ts","../../../node_modules/@types/http-proxy/index.d.ts","../../../node_modules/@types/istanbul-lib-coverage/index.d.ts","../../../node_modules/@types/istanbul-lib-report/index.d.ts","../../../node_modules/@types/istanbul-reports/index.d.ts","../../../node_modules/@types/jest/node_modules/jest-diff/build/cleanupsemantic.d.ts","../../../node_modules/@types/jest/node_modules/jest-diff/build/types.d.ts","../../../node_modules/@types/jest/node_modules/jest-diff/build/difflines.d.ts","../../../node_modules/@types/jest/node_modules/jest-diff/build/printdiffs.d.ts","../../../node_modules/@types/jest/node_modules/jest-diff/build/index.d.ts","../../../node_modules/@types/jest/node_modules/pretty-format/build/types.d.ts","../../../node_modules/@types/jest/node_modules/pretty-format/build/index.d.ts","../../../node_modules/@types/jest/index.d.ts","../../../node_modules/@types/json5/index.d.ts","../../../node_modules/@types/lodash/common/common.d.ts","../../../node_modules/@types/lodash/common/array.d.ts","../../../node_modules/@types/lodash/common/collection.d.ts","../../../node_modules/@types/lodash/common/date.d.ts","../../../node_modules/@types/lodash/common/function.d.ts","../../../node_modules/@types/lodash/common/lang.d.ts","../../../node_modules/@types/lodash/common/math.d.ts","../../../node_modules/@types/lodash/common/number.d.ts","../../../node_modules/@types/lodash/common/object.d.ts","../../../node_modules/@types/lodash/common/seq.d.ts","../../../node_modules/@types/lodash/common/string.d.ts","../../../node_modules/@types/lodash/common/util.d.ts","../../../node_modules/@types/lodash/index.d.ts","../../../node_modules/@types/mdast/index.d.ts","../../../node_modules/@types/mdx-js__react/node_modules/@types/react/global.d.ts","../../../node_modules/csstype/index.d.ts","../../../node_modules/@types/prop-types/index.d.ts","../../../node_modules/@types/scheduler/tracing.d.ts","../../../node_modules/@types/mdx-js__react/node_modules/@types/react/index.d.ts","../../../node_modules/@types/mdx-js__react/index.d.ts","../../../node_modules/ajv/lib/ajv.d.ts","../../../node_modules/@types/webpack/node_modules/schema-utils/declarations/validationerror.d.ts","../../../node_modules/@types/webpack/node_modules/schema-utils/declarations/validate.d.ts","../../../node_modules/@types/webpack/node_modules/schema-utils/declarations/index.d.ts","../../../node_modules/@types/webpack/node_modules/tapable/tapable.d.ts","../../../node_modules/@types/webpack/node_modules/webpack/types.d.ts","../../../node_modules/@types/webpack/index.d.ts","../../../node_modules/@types/mini-css-extract-plugin/index.d.ts","../../../node_modules/@types/minimist/index.d.ts","../../../node_modules/form-data/index.d.ts","../../../node_modules/@types/node-fetch/externals.d.ts","../../../node_modules/@types/node-fetch/index.d.ts","../../../node_modules/@types/normalize-package-data/index.d.ts","../../../node_modules/@types/parse-json/index.d.ts","../../../node_modules/@types/parse5/lib/tree-adapters/default.d.ts","../../../node_modules/@types/parse5/index.d.ts","../../../node_modules/@types/prettier/index.d.ts","../../../node_modules/@types/pug/index.d.ts","../../../node_modules/@types/q/index.d.ts","../../../node_modules/@types/react/global.d.ts","../../../node_modules/@types/react/index.d.ts","../../../node_modules/@types/sass/index.d.ts","../../../node_modules/@types/scheduler/index.d.ts","../../../node_modules/@types/script-ext-html-webpack-plugin/index.d.ts","../../../node_modules/@types/source-list-map/index.d.ts","../../../node_modules/@types/stack-utils/index.d.ts","../../../node_modules/@types/tapable/index.d.ts","../../../node_modules/source-map/source-map.d.ts","../../../node_modules/@types/uglify-js/index.d.ts","../../../node_modules/@types/webpack-dev-server/index.d.ts","../../../node_modules/@types/webpack-sources/node_modules/source-map/source-map.d.ts","../../../node_modules/@types/webpack-sources/lib/source.d.ts","../../../node_modules/@types/webpack-sources/lib/compatsource.d.ts","../../../node_modules/@types/webpack-sources/lib/concatsource.d.ts","../../../node_modules/@types/webpack-sources/lib/originalsource.d.ts","../../../node_modules/@types/webpack-sources/lib/prefixsource.d.ts","../../../node_modules/@types/webpack-sources/lib/rawsource.d.ts","../../../node_modules/@types/webpack-sources/lib/replacesource.d.ts","../../../node_modules/@types/webpack-sources/lib/sizeonlysource.d.ts","../../../node_modules/@types/webpack-sources/lib/sourcemapsource.d.ts","../../../node_modules/@types/webpack-sources/lib/index.d.ts","../../../node_modules/@types/webpack-sources/lib/cachedsource.d.ts","../../../node_modules/@types/webpack-sources/index.d.ts","../../../node_modules/@types/yargs-parser/index.d.ts","../../../node_modules/@types/yargs/index.d.ts"],"fileInfos":[{"version":"ac3a8c4040e183ce38da69d23b96939112457d1936198e6542672b7963cf0fce","affectsGlobalScope":true},"dc47c4fa66b9b9890cf076304de2a9c5201e94b740cffdf09f87296d877d71f6","7a387c58583dfca701b6c85e0adaf43fb17d590fb16d5b2dc0a2fbd89f35c467","8a12173c586e95f4433e0c6dc446bc88346be73ffe9ca6eec7aa63c8f3dca7f9","5f4e733ced4e129482ae2186aae29fde948ab7182844c3a5a51dd346182c7b06","e6b724280c694a9f588847f754198fb96c43d805f065c3a5b28bbc9594541c84","e21c071ca3e1b4a815d5f04a7475adcaeea5d64367e840dd0154096d705c3940","eb75e89d63b3b72dd9ca8b0cac801cecae5be352307c004adeaa60bc9d6df51f","2cc028cd0bdb35b1b5eb723d84666a255933fffbea607f72cbd0c7c7b4bee144",{"version":"1dad4fe1561d99dfd6709127608b99a76e5c2643626c800434f99c48038567ee","affectsGlobalScope":true},{"version":"cce43d02223f8049864f8568bed322c39424013275cd3bcc3f51492d8b546cb3","affectsGlobalScope":true},{"version":"43fb1d932e4966a39a41b464a12a81899d9ae5f2c829063f5571b6b87e6d2f9c","affectsGlobalScope":true},{"version":"cdccba9a388c2ee3fd6ad4018c640a471a6c060e96f1232062223063b0a5ac6a","affectsGlobalScope":true},{"version":"8dff1b4c2df638fcd976cbb0e636f23ab5968e836cd45084cc31d47d1ab19c49","affectsGlobalScope":true},{"version":"2bb4b3927299434052b37851a47bf5c39764f2ba88a888a107b32262e9292b7c","affectsGlobalScope":true},{"version":"810627a82ac06fb5166da5ada4159c4ec11978dfbb0805fe804c86406dab8357","affectsGlobalScope":true},{"version":"62d80405c46c3f4c527ee657ae9d43fda65a0bf582292429aea1e69144a522a6","affectsGlobalScope":true},{"version":"3013574108c36fd3aaca79764002b3717da09725a36a6fc02eac386593110f93","affectsGlobalScope":true},{"version":"8f4c9f651c8294a2eb1cbd12581fe25bfb901ab1d474bb93cd38c7e2f4be7a30","affectsGlobalScope":true},{"version":"3be5a1453daa63e031d266bf342f3943603873d890ab8b9ada95e22389389006","affectsGlobalScope":true},{"version":"17bb1fc99591b00515502d264fa55dc8370c45c5298f4a5c2083557dccba5a2a","affectsGlobalScope":true},{"version":"7ce9f0bde3307ca1f944119f6365f2d776d281a393b576a18a2f2893a2d75c98","affectsGlobalScope":true},{"version":"6a6b173e739a6a99629a8594bfb294cc7329bfb7b227f12e1f7c11bc163b8577","affectsGlobalScope":true},{"version":"12a310447c5d23c7d0d5ca2af606e3bd08afda69100166730ab92c62999ebb9d","affectsGlobalScope":true},{"version":"b0124885ef82641903d232172577f2ceb5d3e60aed4da1153bab4221e1f6dd4e","affectsGlobalScope":true},{"version":"0eb85d6c590b0d577919a79e0084fa1744c1beba6fd0d4e951432fa1ede5510a","affectsGlobalScope":true},{"version":"da233fc1c8a377ba9e0bed690a73c290d843c2c3d23a7bd7ec5cd3d7d73ba1e0","affectsGlobalScope":true},{"version":"df9c8a72ca8b0ed62f5470b41208a0587f0f73f0a7db28e5a1272cf92537518e","affectsGlobalScope":true},{"version":"bb2d3fb05a1d2ffbca947cc7cbc95d23e1d053d6595391bd325deb265a18d36c","affectsGlobalScope":true},{"version":"c80df75850fea5caa2afe43b9949338ce4e2de086f91713e9af1a06f973872b8","affectsGlobalScope":true},{"version":"9d57b2b5d15838ed094aa9ff1299eecef40b190722eb619bac4616657a05f951","affectsGlobalScope":true},{"version":"6c51b5dd26a2c31dbf37f00cfc32b2aa6a92e19c995aefb5b97a3a64f1ac99de","affectsGlobalScope":true},{"version":"93544ca2f26a48716c1b6c5091842cad63129daac422dfa4bc52460465f22bb1","affectsGlobalScope":true},{"version":"2ad234885a4240522efccd77de6c7d99eecf9b4de0914adb9a35c0c22433f993","affectsGlobalScope":true},{"version":"60761e6ea886034af0f294f025a7199360ce4e2c8ba4ec6408bc049cf9b89799","affectsGlobalScope":true},{"version":"7435b75fdf3509622e79622dbe5091cf4b09688410ee2034e4fc17d0c99d0862","affectsGlobalScope":true},{"version":"e7e8e1d368290e9295ef18ca23f405cf40d5456fa9f20db6373a61ca45f75f40","affectsGlobalScope":true},{"version":"faf0221ae0465363c842ce6aa8a0cbda5d9296940a8e26c86e04cc4081eea21e","affectsGlobalScope":true},{"version":"06393d13ea207a1bfe08ec8d7be562549c5e2da8983f2ee074e00002629d1871","affectsGlobalScope":true},{"version":"9f1817f7c3f02f6d56e0f403b927e90bb133f371dcebc36fa7d6d208ef6899da","affectsGlobalScope":true},{"version":"cd6efb9467a8b6338ece2e2855e37765700f2cd061ca54b01b33878cf5c7677e","affectsGlobalScope":true},{"version":"fb4416144c1bf0323ccbc9afb0ab289c07312214e8820ad17d709498c865a3fe","affectsGlobalScope":true},{"version":"5b0ca94ec819d68d33da516306c15297acec88efeb0ae9e2b39f71dbd9685ef7","affectsGlobalScope":true},{"version":"506b80b9951c9381dc5f11897b31fca5e2a65731d96ddefa19687fbc26b23c6e","affectsGlobalScope":true},"12f4cfe2fe60b810c3174537bc2ddb20c1067b7768643d12cb1266fd183afb75","35fcdcb1d5955ec0dca5123c45e4f179f9760e368b51e1956359c5c4f74dbf13","004a82153f180dda002a46919e8257603fc23334613073c449ef0115faa7d756","4f5bcf913db7f7ac55e8b25fbec8a6d9d5b6c99e64a40ef6d2a77e50bdd26a55","d5c19655468e29f60c871b21e73af8ebc653f736e7123ade916f22c4a5f80ce5","fab58e600970e66547644a44bc9918e3223aa2cbd9e8763cec004b2cfb48827e","93b41afabb5bed58c0a794749ed31034ee36d9b035b37fec46c689d86b77da83",{"version":"ba070e0b32d0a4efd7d6dac3f7e92efe321f86435f78416159531dbdc16de9c2","signature":"715387389000d4cbae758d463b4f006acb543a78f08bc943604cdc770884dc76"},{"version":"70777186f7925a757cc8e5c5b213082034aa16bf982953eb54f8dc3a721e06fc","signature":"e6210bd13cda9d707041733a0b2c6bc02997d11580a2b6a3b837e567b366a13d"},"48b52264fa193879a074197839dbb4796fa07e86350ff888e5361e06aa46df76","4606c6d854002b409744140a996a49c4a607c1eb0396855529836161892abef5","b25c5f2970d06c729f464c0aeaa64b1a5b5f1355aa93554bb5f9c199b8624b1e","3e6297bcddf37e373d40ddb4c2b9e6fc98901b2a44c01b2d96af142874973c43","3051751533eee92572241b3cef28333212401408c4e7aa21718714b793c0f4ed","691aea9772797ca98334eb743e7686e29325b02c6931391bcee4cc7bf27a9f3b","71c56bdaa82d7ce75a72d3c06c04fe10becec09bd9c4ef21776a2a055d3f428e","c7bdc99177a2a94d25fb13722adaaf5b3291bf70b4d1b27584ba189dd3889ba3",{"version":"5402314c88d0127f63f94a0272f79e04ea0fc010ff6da6613807504c4163a1ad","affectsGlobalScope":true},"c9e8a340da877b05a52525554aa255b3f44958c7f6748ebf5cbe0bfbe6766878","a473cf45c3d9809518f8af913312139d9f4db6887dc554e0d06d0f4e52722e6b","a668dfae917097b30fc29bbebeeb869cee22529f2aa9976cea03c7e834a1b841","04eaa93bd75f937f9184dcb95a7983800c5770cf8ddd8ac0f3734dc02f5b20ef",{"version":"c8155caf28fc7b0a564156a5df28ad8a844a3bd32d331d148d8f3ce88025c870","affectsGlobalScope":true},"45ac321f2e15d268fd74a90ddaa6467dcaaff2c5b13f95b4b85831520fb7a491","51a77d65fbadc93dcdf454ea1d94bd9f1f146008d890bea4f168dd397192b9fb","797a9d37eb1f76143311c3f0a186ce5c0d8735e94c0ca08ff8712a876c9b4f9e","ec7dafafe751a5121f8f1c80201ebe7e7238c47e6329280a73c4d1ca4bb7fa28","64debeb10e4b7ae4ec9e89bfb4e04c6101ab98c3cc806d14e5488607cfec2753",{"version":"2866a528b2708aa272ec3eaafd3c980abb23aec1ef831cfc5eb2186b98c37ce5","affectsGlobalScope":true},{"version":"36ba0e764ace4fb55e6165c5f33f2826f88b1d3767f7ec658fe2f6c85ac5e776","affectsGlobalScope":true},"d3315298050252531e7db9046296ca2162fa5218a85b10a62ed79140e3822e3c","bdaf554ae2d9d09e2a42f58a29ef7f80e5b5c1d7b96bfb717243dc91a477216e","bd311ff12ac011f5531edd217189606e7a697376d6109e8a18361358f6249b46","a870e564e578dccc7b34018d6919f9466bae462b4bafc3449ca63a2331ac27c5","13257840c0850d4ebd7c2b17604a9e006f752de76c2400ebc752bc465c330452","42176966283d3835c34278b9b5c0f470d484c0c0c6a55c20a2c916a1ce69b6e8","0cff7901aedfe78e314f7d44088f07e2afa1b6e4f0473a4169b8456ca2fb245d","1eaf8fecdae37cc4c85f496d2bdb9e8d46c21b3643b7e27d3646a330585515a5","69640cc2e76dad52daeb9914e6b70c5c9a5591a3a65190a2d3ea432cf0015e16","21e64a125f65dff99cc3ed366c96e922b90daed343eb52ecdace5f220401dcda","4982d94cb6427263c8839d8d6324a8bbe129e931deb61a7380f8fad17ba2cfc0",{"version":"61977e8f4c042abd392645828c90afd1b551a6fd32c51b93717c68003ce7c983","affectsGlobalScope":true},"7f77304372efe3c9967e5f9ea2061f1b4bf41dc3cda3c83cdd676f2e5af6b7e6","992c6f6be16c0a1d2eec13ece33adeea2c747ba27fcd078353a8f4bb5b4fea58","3b790d08129aca55fd5ae1672d1d26594147ac0d5f2eedc30c7575eb18daef7e","64535caf208a02420d2d04eb2029269efedd11eb8597ada0d5e6f3d54ec663ae","3b02b1e3c3a6730d79e2c8652f3be6a7caef1a604b9c5103abbbcea921694be1","fd2298fba0640e7295e7bd545e2dfbfcccbb00c27019e501c87965a02bbdebf6","4fd3c4debadce3e9ab9dec3eb45f7f5e2e3d4ad65cf975a6d938d883cfb25a50","f49709e8c096b05aca0674d39f471aa05261de7c756df9abdf4a53ed0fa98901","baca27d1de400e027cdc70217ca73e414002baef5798aa24a921097c20066fa1","f89a6d56f0267f6e73c707f8a89d2f38e9928e10bfa505f39a4f4bf954093aee","7df562288f949945cf69c21cd912100c2afedeeb7cdb219085f7f4b46cb7dde4","9d16690485ff1eb4f6fc57aebe237728fd8e03130c460919da3a35f4d9bd97f5","dcc6910d95a3625fd2b0487fda055988e46ab46c357a1b3618c27b4a8dd739c9","e649840284bab8c4d09cadc125cd7fbde7529690cc1a0881872b6a9cd202819b","a364b4a8a015ae377052fa4fac94204d79a69d879567f444c7ceff1b7a18482d","1aa7dbace2b7b2ef60897dcd4f66252ee6ba85e594ded8918c9acdcecda1896c","1535aeef6e803bc8c784b14c99bd214dba9223df4914f3dee616af351ab46042","4926467de88a92a4fc9971d8c6f21b91eca1c0e7fc2a46cc4638ab9440c73875",{"version":"2708349d5a11a5c2e5f3a0765259ebe7ee00cdcc8161cb9990cb4910328442a1","affectsGlobalScope":true},"4e0a4d84b15692ea8669fe4f3d05a4f204567906b1347da7a58b75f45bae48d3","210ef68f34baca2a4499c07a51f05d51b4f0ef01d64efea3017cb3bc31c37e33","b3593bd345ebea5e4d0a894c03251a3774b34df3d6db57075c18e089a599ba76","e61a21e9418f279bc480394a94d1581b2dee73747adcbdef999b6737e34d721b","6c9c7e459e013ddf52c70b90f88bbdd925e483ef984d80f9bffb501029974e82","81c14b89fa607b86dd726e2e3e91360cf8155ce97468404324d404a5bd65b2eb","ebddbd167c2fabd0151f50e5df94ca6d845149c47521280d8867afe3429dd078",{"version":"42c1b00421aa4d5f03b85a2639c1573d32bd82533f34423bbf1f5fb2b0ddc4d8","affectsGlobalScope":true},"a7b9533447378e7f34fa432e26be9102173e79bceb65b20d258d61c4042e90ad","d71ffe64592c4e61c6b431d8fbaff58735cd659738d788a4c8423a27f78f01b7","b869f848bec826c9d3645d10a183b905672a4675747f41700fd30e1b7e0d0308","62cc84c2971b16cc82e1f7cb1dac7d8c70b589d492fbc2f6efbcbfc53b61d514","67729b7b26e1ecf2afeb2f4a0a8c3ba16712918ef22d23bb615f033169ebe0f3","903da09dbdfea0af66cb6b7b25950e42e350f1f3cc87f3516baa553cc4de882f","e237aa7b157ebfb2699d2e3bbf07c65a8cea0382201dc44c9da006f0f730de67","05e8a403b04248dbe9eebd2025d58e95495de303f37b39f13e7562f5f414087a","a56bf5dce7c05192e4c2d95eb1527feda15f9225afea8c5ad67034a79992ebb6","fcb510be50b0756cb770f8caf321dba38ae074665efbea090584f8a8d3e6b8f4","d4c9c56a2f4ecedcc224a495dfbaee88072c8e99679504fb32ef1d0629f843a1","5ec537948044f7c0280d6175729bf7aa13deae28fe0f6346628a8cf15569aefa","a356dbb234a629456ea426c8eef1d8296a2fa4266afb6defb3691ad07140c84e","1cc502622a7f773e7cd75ecacd64d0bc83a2a6442dc16a7081f968702edf5051","4e88b833be14c7f384e0dcd57bb30acd799e8e34d212635d693e41a75a71164b","98437d5a640b67c41534f0de2dcb64c75433dcdff54ff8f8432e613663619a2e",{"version":"e41a1ce538d71d5a3389b7fc2e39c15a4972f0d4cb14bf2fe8cda8c361150028","affectsGlobalScope":true},"a9ef188a807dfa67e80eb100aeac1036f61d01f64d8b51ce68e78ee40cdef415",{"version":"64d4b35c5456adf258d2cf56c341e203a073253f229ef3208fc0d5020253b241","affectsGlobalScope":true},"0133ebdd17a823ae56861948870cde4dac18dd8818ab641039c85bbb720429e0","3a1e165b22a1cb8df82c44c9a09502fd2b33f160cd277de2cd3a055d8e5c6b27","f1e8ecd1d960d12e57316fd2889b0a57635f38f8c4c976d8deafa29650bbf320","7f4366cd82a5391c7a1a196908c624c9415f731a57400ea1c3661041cab398a8","274bda283ef15f4205603ca9967313fc013aa77ae89f2cbeab5fbd51439e96ed","84e3bbd6f80983d468260fdbfeeb431cc81f7ea98d284d836e4d168e36875e86","3b02517f9be71f255eadab9892406055d069167891f1e1ea16c96c4ff1ddda01","3b05c396564e51753e921e1cc4aae1cf7cd9be53c891cf2e81fa29f11c0bd373","95c22bc19835e28e2e524a4bb8898eb5f2107b640d7279a6d3aade261916bbf2","393137c76bd922ba70a2f8bf1ade4f59a16171a02fb25918c168d48875b0cfb0","3ebae8c00411116a66fca65b08228ea0cf0b72724701f9b854442100aab55aba","1320ee42b30487cceb6da9f230354fc34826111f76bf12f0ad76c717c12625b0","b6e83cdeca61289e5ffd770e55ed035babdffadd87d1ffa42b03e9fe8411333f","6767cce098e1e6369c26258b7a1f9e569c5467d501a47a090136d5ea6e80ae6d","62245a56a6df2b5fbe569bee7d8a95e662477e38317262070dd3e82eaa8eecb6","de18acda71730bac52f4b256ce7511bb56cc21f6f114c59c46782eff2f632857","7eb06594824ada538b1d8b48c3925a83e7db792f47a081a62cf3e5c4e23cf0ee","905c3e8f7ddaa6c391b60c05b2f4c3931d7127ad717a080359db3df510b7bdab","d8aab31ba8e618cc3eea10b0945de81cb93b7e8150a013a482332263b9305322","69da61a7b5093dac77fa3bec8be95dcf9a74c95a0e9161edb98bb24e30e439d2","561eca7a381b96d6ccac6e4061e6d2ae53f5bc44203f3fd9f5b26864c32ae6e9","62ea38627e3ebab429f7616812a9394d327c2bc271003dfba985de9b4137369f","b4439890c168d646357928431100daac5cbdee1d345a34e6bf6eca9f3abe22bc","5d72971a459517c44c1379dab9ed248e87a61ba0a1e0f25c9d67e1e640cd9a09","02d734976af36f4273d930bea88b3e62adf6b078cf120c1c63d49aa8d8427c5c",{"version":"516a426e3960379f310107635b8f3a7e8c307c6c665080b128039d9299ec4087","affectsGlobalScope":true},"96d14f21b7652903852eef49379d04dbda28c16ed36468f8c9fa08f7c14c9538","3594c022901a1c8993b0f78a3f534cfb81e7b619ed215348f7f6882f3db02abc","438284c7c455a29b9c0e2d1e72abc62ee93d9a163029ffe918a34c5db3b92da2","0c75b204aed9cf6ff1c7b4bed87a3ece0d9d6fc857a6350c0c95ed0c38c814e8","187119ff4f9553676a884e296089e131e8cc01691c546273b1d0089c3533ce42","c9f396e71966bd3a890d8a36a6a497dbf260e9b868158ea7824d4b5421210afe","509235563ea2b939e1bbe92aae17e71e6a82ceab8f568b45fb4fce7d72523a32","9364c7566b0be2f7b70ff5285eb34686f83ccb01bda529b82d23b2a844653bfb","00baffbe8a2f2e4875367479489b5d43b5fc1429ecb4a4cc98cfc3009095f52a","c311349ec71bb69399ffc4092853e7d8a86c1ca39ddb4cd129e775c19d985793","3c92b6dfd43cc1c2485d9eba5ff0b74a19bb8725b692773ef1d66dac48cda4bd","4908e4c00832b26ce77a629de8501b0e23a903c094f9e79a7fec313a15da796a","2630a7cbb597e85d713b7ef47f2946d4280d3d4c02733282770741d40672b1a5",{"version":"0714e2046df66c0e93c3330d30dbc0565b3e8cd3ee302cf99e4ede6220e5fec8","affectsGlobalScope":true},"9a6d65d77455efaaaeff945bea30c38b8fe0922b807ba45cd23792392f1bfe76",{"version":"ecf78e637f710f340ec08d5d92b3f31b134a46a4fcf2e758690d8c46ce62cba6","affectsGlobalScope":true},"4ee363f83d7be2202f34fcd84c44da71bf3a9329fee8a05f976f75083a52ea94","a7e32dcb90bf0c1b7a1e4ac89b0f7747cbcba25e7beddc1ebf17be1e161842ad","f5a8b384f182b3851cec3596ccc96cb7464f8d3469f48c74bf2befb782a19de5",{"version":"881ea8e225320dd9b436999d82998e1d7699e512e0597f0015e5abd59d95974a","affectsGlobalScope":true},"ac7c35cc5643ab7f4e2884aa0a383d8ac5cd3e995cc7f12349395192a4361c73","67f129ed8b372622ff36b8b10e39d03e09e363a5ff7821105f92f085b8d1ccba","327f42ab31ff4539ba868d0374f8825af328b104b5f78d26b2e3ce9cc17b43a0","62a05210201c793349ec28254f06a01814c5b4f5591f6d1921941286db78ea2a","8f877178233f74095130e129ce86128a6a15afcfc6171d714e154863b6a65fe8","b395ec0779c66de885f97974534e95ee2c8bbf9acaf5857a6782ddc32972b6d8","938cfe3df10c48b87ce33e1e9cbc7ead3fa3889816896cfefa382efa2021503a","d7e12d9634587982b53654f1c9a96e1f9a911fbd5e69fc5c593565c691fd4a12","8537945141892b0e4af62744f8b9ca6e5b67ad65929267dcb0866b33745769a8","e437d83044ba17246a861aa9691aa14223ff4a9d6f338ab1269c41c758586a88","736097ddbb2903bef918bb3b5811ef1c9c5656f2a73bd39b22a91b9cc2525e50","208bb742e0f201470da121bc73847c74b62cff4172f38ae5949ae77d6c9c6b71","554c9868b4f1bfb9109585c3a3ea56218d74156b18849bf97978405abf682f01","c9ad058b2cc9ce6dc2ed92960d6d009e8c04bef46d3f5312283debca6869f613","2b8264b2fefd7367e0f20e2c04eed5d3038831fe00f5efbc110ff0131aab899b","fc37aca06f6b8b296c42412a2e75ab53d30cd1fa8a340a3bb328a723fd678377","201f92d97704e7e17e1c6e208fea976d75ff7b04235b79057891a33c7330bd77","08b428a44bc98005536a12456518797e9afe2a08e8b5d9785641713a54475881","e5c0472e87e18dfe9d2d2d2c3be9f4a5fbec27a74e37bd0e7dd8ab304ea66689","f9a2dd6a6084665f093ed0e9664b8e673be2a45e342a59dd4e0e4e552e68a9ad",{"version":"ecf78e637f710f340ec08d5d92b3f31b134a46a4fcf2e758690d8c46ce62cba6","affectsGlobalScope":true},{"version":"2f1fdc948954bec1253759db6b57952133e38ebb33c990c8d2c81d8ee0b8eea7","affectsGlobalScope":true},"b1071c8eeb8da55bfac2666551ac923320b0c8a76a292ff55de0190ea59e691c","3169db033165677f1d414baf0c82ba27801089ca1b66d97af464512a47df31b5","4045f108d41deca56fa341093feeb16252ccf1fc4d5233bd54dbba022b976477","67fc055eb86a0632e2e072838f889ffe1754083cb13c8c80a06a7d895d877aae","c6c4fea9acc55d5e38ff2b70d57ab0b5cdbd08f8bc5d7a226e322cea128c5b57","d558a0fe921ebcc88d3212c2c42108abf9f0d694d67ebdeba37d7728c044f579","2887592574fcdfd087647c539dcb0fbe5af2521270dad4a37f9d17c16190d579","bee79f5862fe1278d2ba275298862bce3f7abf1e59d9c669c4b9a4b2bba96956","320dfb6b91f1ede1216fe57eb0a608c49b71e61ba5b1f16b2629254db563476e","b90c59ac4682368a01c83881b814738eb151de8a58f52eb7edadea2bcffb11b9","8560a87b2e9f8e2c3808c8f6172c9b7eb6c9b08cb9f937db71c285ecf292c81d","ffe3931ff864f28d80ae2f33bd11123ad3d7bad9896b910a1e61504cc093e1f5","083c1bd82f8dc3a1ed6fc9e8eaddf141f7c05df418eca386598821e045253af9","274ebe605bd7f71ce161f9f5328febc7d547a2929f803f04b44ec4a7d8729517","6ca0207e70d985a24396583f55836b10dc181063ab6069733561bfde404d1bad","5908142efeaab38ffdf43927ee0af681ae77e0d7672b956dfb8b6c705dbfe106","f772b188b943549b5c5eb803133314b8aa7689eced80eed0b70e2f30ca07ab9c","0026b816ef05cfbf290e8585820eef0f13250438669107dfc44482bac007b14f","8ef5aad624890acfe0fa48230edce255f00934016d16acb8de0edac0ea5b21bb","9af6248ff4baf0c1ddc62bb0bc43197437bd5fb2c95ff8e10e4cf2e699ea45c1","d84398556ba4595ee6be554671da142cfe964cbdebb2f0c517a10f76f2b016c0","89b42f8ee5d387a39db85ee2c7123a391c3ede266a2bcd502c85ad55626c3b2b","3bdd93ec24853e61bfa4c63ebaa425ff3e474156e87a47d90122e1d8cc717c1f","6ba73232c9d3267ca36ddb83e335d474d2c0e167481e3dec416c782894e11438"],"options":{"allowSyntheticDefaultImports":true,"composite":true,"declaration":true,"esModuleInterop":true,"experimentalDecorators":true,"importHelpers":true,"module":1,"noImplicitAny":true,"outDir":"./lib","rootDir":"./src","skipLibCheck":true,"strict":true,"strictNullChecks":true,"strictPropertyInitialization":true,"target":4},"fileIdsList":[[55],[55,56,57,58,59],[55,57],[77,110,111],[110],[114,115,116,117,118,119,120,121,122,123,124,125],[74,110],[99,110,130],[77,110],[135,136],[132,133,134,135],[136],[74,77,110,128,129],[112,129,130,139],[74,110,141],[75,110],[144],[74,77,79,82,91,99,110],[148],[149],[155,157],[151,152],[151,152,153,154],[156],[160,162,163,164,165,166,167,168,169,170,171,172],[160,161,163,164,165,166,167,168,169,170,171,172],[161,162,163,164,165,166,167,168,169,170,171,172],[160,161,162,164,165,166,167,168,169,170,171,172],[160,161,162,163,165,166,167,168,169,170,171,172],[160,161,162,163,164,166,167,168,169,170,171,172],[160,161,162,163,164,165,167,168,169,170,171,172],[160,161,162,163,164,165,166,168,169,170,171,172],[160,161,162,163,164,165,166,167,169,170,171,172],[160,161,162,163,164,165,166,167,168,170,171,172],[160,161,162,163,164,165,166,167,168,169,171,172],[160,161,162,163,164,165,166,167,168,169,170,172],[160,161,162,163,164,165,166,167,168,169,170,171],[178],[174,175,176,177],[186],[77,99,110,189,190],[108],[107,108],[74,75,82,91],[65,74,82],[100],[69,75,83],[91],[71,74,82],[72],[71],[74],[74,76,91,99],[75],[82,91,99],[74,75,77,82,91,96,99],[77,96,99],[109],[99],[71,74,91],[63],[98],[89,100,102],[74,92],[94],[82],[61,62,63,64,65,66,67,68,69,70,71,72,73,74,75,76,77,78,79,80,81,82,83,84,85,86,87,88,89,90,91,92,93,94,95,96,97,98,99,100,101,102,103,104,105,106],[88],[74,76,91,99,102],[194],[195],[175,176,177,199],[77,110,138],[207],[77,79,131,139,140,185,186],[110,211,212,213,214,215,216,217,218,219,220,221],[210,211,220],[211,220],[204,210,211,220],[210,211,212,213,214,215,216,217,218,219,221],[211],[69,210,220],[110,185],[181,182],[134,180,181],[134,180,182],[135,182,183,184],[223],[77,91,110],[48],[45],[45,46,47,49,51],[45,51,52],[45,46,49,50],[47,49],[51,52]],"referencedMap":[[57,1],[60,2],[56,1],[58,3],[59,1],[112,4],[113,5],[126,6],[127,7],[131,8],[111,9],[137,10],[136,11],[133,12],[130,13],[140,14],[142,15],[143,16],[145,17],[147,18],[149,19],[150,20],[158,21],[153,22],[155,23],[154,22],[157,24],[161,25],[162,26],[160,27],[163,28],[164,29],[165,30],[166,31],[167,32],[168,33],[169,34],[170,35],[171,36],[172,37],[173,17],[179,38],[178,39],[187,40],[191,41],[61,42],[109,43],[65,44],[66,45],[67,46],[68,47],[69,48],[70,49],[71,50],[72,51],[73,52],[74,52],[75,53],[76,54],[77,55],[78,56],[79,57],[110,58],[80,52],[81,59],[82,60],[85,61],[86,62],[89,52],[90,63],[91,64],[92,48],[95,65],[96,66],[107,67],[98,66],[99,68],[101,48],[103,69],[104,48],[195,70],[194,71],[200,72],[201,5],[203,40],[139,73],[208,74],[209,75],[222,76],[221,77],[212,78],[213,79],[220,80],[214,79],[215,78],[216,78],[217,78],[218,81],[211,82],[219,77],[186,83],[183,84],[182,85],[181,86],[185,87],[224,88],[189,89],[49,90],[46,91],[52,92],[53,93],[47,91],[51,94]],"exportedModulesMap":[[57,1],[60,2],[56,1],[58,3],[59,1],[112,4],[113,5],[126,6],[127,7],[131,8],[111,9],[137,10],[136,11],[133,12],[130,13],[140,14],[142,15],[143,16],[145,17],[147,18],[149,19],[150,20],[158,21],[153,22],[155,23],[154,22],[157,24],[161,25],[162,26],[160,27],[163,28],[164,29],[165,30],[166,31],[167,32],[168,33],[169,34],[170,35],[171,36],[172,37],[173,17],[179,38],[178,39],[187,40],[191,41],[61,42],[109,43],[65,44],[66,45],[67,46],[68,47],[69,48],[70,49],[71,50],[72,51],[73,52],[74,52],[75,53],[76,54],[77,55],[78,56],[79,57],[110,58],[80,52],[81,59],[82,60],[85,61],[86,62],[89,52],[90,63],[91,64],[92,48],[95,65],[96,66],[107,67],[98,66],[99,68],[101,48],[103,69],[104,48],[195,70],[194,71],[200,72],[201,5],[203,40],[139,73],[208,74],[209,75],[222,76],[221,77],[212,78],[213,79],[220,80],[214,79],[215,78],[216,78],[217,78],[218,81],[211,82],[219,77],[186,83],[183,84],[182,85],[181,86],[185,87],[224,88],[189,89],[49,90],[46,91],[52,95],[53,96],[47,91],[51,94]],"semanticDiagnosticsPerFile":[57,55,54,60,56,58,59,112,113,114,115,116,117,118,120,126,119,124,121,122,123,125,127,131,111,137,132,136,133,135,130,140,142,143,145,146,147,148,149,150,158,151,153,155,154,152,157,156,134,159,161,162,160,163,164,165,166,167,168,169,170,171,172,173,179,174,178,138,187,141,188,190,191,108,61,63,109,64,65,66,67,68,69,70,71,72,73,74,75,76,62,105,77,78,79,110,80,81,82,83,84,85,86,87,88,89,90,91,92,93,94,95,96,97,107,98,99,100,101,102,106,103,104,192,193,195,194,196,176,197,198,129,128,199,200,201,202,177,203,139,204,205,206,208,144,50,209,222,221,212,213,220,214,215,216,217,218,211,219,210,186,183,182,181,184,185,223,224,180,175,189,207,45,10,12,11,2,13,14,15,16,17,18,19,20,3,4,24,21,22,23,25,26,27,5,28,29,30,31,6,32,33,34,35,7,40,36,37,38,39,8,41,42,43,1,9,44,49,48,46,52,53,47,51]},"version":"4.3.5"}
1
+ {"program":{"fileNames":["../../../node_modules/typescript/lib/lib.es5.d.ts","../../../node_modules/typescript/lib/lib.es2015.d.ts","../../../node_modules/typescript/lib/lib.es2016.d.ts","../../../node_modules/typescript/lib/lib.es2017.d.ts","../../../node_modules/typescript/lib/lib.es2018.d.ts","../../../node_modules/typescript/lib/lib.es2019.d.ts","../../../node_modules/typescript/lib/lib.es2020.d.ts","../../../node_modules/typescript/lib/lib.es2021.d.ts","../../../node_modules/typescript/lib/lib.esnext.d.ts","../../../node_modules/typescript/lib/lib.dom.d.ts","../../../node_modules/typescript/lib/lib.es2015.core.d.ts","../../../node_modules/typescript/lib/lib.es2015.collection.d.ts","../../../node_modules/typescript/lib/lib.es2015.generator.d.ts","../../../node_modules/typescript/lib/lib.es2015.iterable.d.ts","../../../node_modules/typescript/lib/lib.es2015.promise.d.ts","../../../node_modules/typescript/lib/lib.es2015.proxy.d.ts","../../../node_modules/typescript/lib/lib.es2015.reflect.d.ts","../../../node_modules/typescript/lib/lib.es2015.symbol.d.ts","../../../node_modules/typescript/lib/lib.es2015.symbol.wellknown.d.ts","../../../node_modules/typescript/lib/lib.es2016.array.include.d.ts","../../../node_modules/typescript/lib/lib.es2017.object.d.ts","../../../node_modules/typescript/lib/lib.es2017.sharedmemory.d.ts","../../../node_modules/typescript/lib/lib.es2017.string.d.ts","../../../node_modules/typescript/lib/lib.es2017.intl.d.ts","../../../node_modules/typescript/lib/lib.es2017.typedarrays.d.ts","../../../node_modules/typescript/lib/lib.es2018.asyncgenerator.d.ts","../../../node_modules/typescript/lib/lib.es2018.asynciterable.d.ts","../../../node_modules/typescript/lib/lib.es2018.intl.d.ts","../../../node_modules/typescript/lib/lib.es2018.promise.d.ts","../../../node_modules/typescript/lib/lib.es2018.regexp.d.ts","../../../node_modules/typescript/lib/lib.es2019.array.d.ts","../../../node_modules/typescript/lib/lib.es2019.object.d.ts","../../../node_modules/typescript/lib/lib.es2019.string.d.ts","../../../node_modules/typescript/lib/lib.es2019.symbol.d.ts","../../../node_modules/typescript/lib/lib.es2020.bigint.d.ts","../../../node_modules/typescript/lib/lib.es2020.promise.d.ts","../../../node_modules/typescript/lib/lib.es2020.sharedmemory.d.ts","../../../node_modules/typescript/lib/lib.es2020.string.d.ts","../../../node_modules/typescript/lib/lib.es2020.symbol.wellknown.d.ts","../../../node_modules/typescript/lib/lib.es2020.intl.d.ts","../../../node_modules/typescript/lib/lib.es2021.promise.d.ts","../../../node_modules/typescript/lib/lib.es2021.string.d.ts","../../../node_modules/typescript/lib/lib.es2021.weakref.d.ts","../../../node_modules/typescript/lib/lib.esnext.intl.d.ts","../../../node_modules/tslib/tslib.d.ts","./src/const.ts","../ml-ast/lib/types.d.ts","../ml-ast/lib/index.d.ts","../../../node_modules/@types/uuid/index.d.ts","./src/get-location.ts","./src/create-token.ts","./src/debugger.ts","./src/decision.ts","./src/idl-attributes.ts","./src/idl-attributes.test.ts","./src/types.ts","./src/siblings-correction.ts","./src/ignore-block.ts","./src/ignore-front-matter.ts","./src/walker.ts","./src/index.ts","../../../node_modules/@babel/types/lib/index.d.ts","../../../node_modules/@types/babel__generator/index.d.ts","../../../node_modules/@babel/parser/typings/babel-parser.d.ts","../../../node_modules/@types/babel__template/index.d.ts","../../../node_modules/@types/babel__traverse/index.d.ts","../../../node_modules/@types/babel__core/index.d.ts","../../../node_modules/@types/node/assert.d.ts","../../../node_modules/@types/node/assert/strict.d.ts","../../../node_modules/@types/node/globals.d.ts","../../../node_modules/@types/node/async_hooks.d.ts","../../../node_modules/@types/node/buffer.d.ts","../../../node_modules/@types/node/child_process.d.ts","../../../node_modules/@types/node/cluster.d.ts","../../../node_modules/@types/node/console.d.ts","../../../node_modules/@types/node/constants.d.ts","../../../node_modules/@types/node/crypto.d.ts","../../../node_modules/@types/node/dgram.d.ts","../../../node_modules/@types/node/diagnostics_channel.d.ts","../../../node_modules/@types/node/dns.d.ts","../../../node_modules/@types/node/dns/promises.d.ts","../../../node_modules/@types/node/domain.d.ts","../../../node_modules/@types/node/events.d.ts","../../../node_modules/@types/node/fs.d.ts","../../../node_modules/@types/node/fs/promises.d.ts","../../../node_modules/@types/node/http.d.ts","../../../node_modules/@types/node/http2.d.ts","../../../node_modules/@types/node/https.d.ts","../../../node_modules/@types/node/inspector.d.ts","../../../node_modules/@types/node/module.d.ts","../../../node_modules/@types/node/net.d.ts","../../../node_modules/@types/node/os.d.ts","../../../node_modules/@types/node/path.d.ts","../../../node_modules/@types/node/perf_hooks.d.ts","../../../node_modules/@types/node/process.d.ts","../../../node_modules/@types/node/punycode.d.ts","../../../node_modules/@types/node/querystring.d.ts","../../../node_modules/@types/node/readline.d.ts","../../../node_modules/@types/node/repl.d.ts","../../../node_modules/@types/node/stream.d.ts","../../../node_modules/@types/node/stream/promises.d.ts","../../../node_modules/@types/node/stream/consumers.d.ts","../../../node_modules/@types/node/stream/web.d.ts","../../../node_modules/@types/node/string_decoder.d.ts","../../../node_modules/@types/node/timers.d.ts","../../../node_modules/@types/node/timers/promises.d.ts","../../../node_modules/@types/node/tls.d.ts","../../../node_modules/@types/node/trace_events.d.ts","../../../node_modules/@types/node/tty.d.ts","../../../node_modules/@types/node/url.d.ts","../../../node_modules/@types/node/util.d.ts","../../../node_modules/@types/node/v8.d.ts","../../../node_modules/@types/node/vm.d.ts","../../../node_modules/@types/node/wasi.d.ts","../../../node_modules/@types/node/worker_threads.d.ts","../../../node_modules/@types/node/zlib.d.ts","../../../node_modules/@types/node/globals.global.d.ts","../../../node_modules/@types/node/index.d.ts","../../../node_modules/@types/connect/index.d.ts","../../../node_modules/@types/body-parser/index.d.ts","../../../node_modules/@types/cheerio/index.d.ts","../../../node_modules/@types/cli-color/art.d.ts","../../../node_modules/@types/cli-color/bare.d.ts","../../../node_modules/@types/cli-color/beep.d.ts","../../../node_modules/@types/cli-color/columns.d.ts","../../../node_modules/@types/cli-color/erase.d.ts","../../../node_modules/@types/cli-color/move.d.ts","../../../node_modules/@types/cli-color/get-stripped-length.d.ts","../../../node_modules/@types/cli-color/slice.d.ts","../../../node_modules/@types/cli-color/strip.d.ts","../../../node_modules/@types/cli-color/throbber.d.ts","../../../node_modules/@types/cli-color/reset.d.ts","../../../node_modules/@types/cli-color/window-size.d.ts","../../../node_modules/@types/cli-color/index.d.ts","../../../node_modules/@types/cli-progress/index.d.ts","../../../node_modules/@types/range-parser/index.d.ts","../../../node_modules/@types/qs/index.d.ts","../../../node_modules/@types/express-serve-static-core/index.d.ts","../../../node_modules/@types/connect-history-api-fallback/index.d.ts","../../../node_modules/@types/ms/index.d.ts","../../../node_modules/@types/debug/index.d.ts","../../../node_modules/@types/eslint/helpers.d.ts","../../../node_modules/@types/eslint/lib/rules/index.d.ts","../../../node_modules/@types/json-schema/index.d.ts","../../../node_modules/@types/estree/index.d.ts","../../../node_modules/@types/eslint/index.d.ts","../../../node_modules/@types/eslint-scope/index.d.ts","../../../node_modules/@types/mime/index.d.ts","../../../node_modules/@types/serve-static/index.d.ts","../../../node_modules/@types/express/index.d.ts","../../../node_modules/@types/minimatch/index.d.ts","../../../node_modules/@types/glob/index.d.ts","../../../node_modules/@types/graceful-fs/index.d.ts","../../../node_modules/@types/unist/index.d.ts","../../../node_modules/@types/hast/index.d.ts","../../../node_modules/@types/html-minifier-terser/index.d.ts","../../../node_modules/@types/http-proxy/index.d.ts","../../../node_modules/@types/istanbul-lib-coverage/index.d.ts","../../../node_modules/@types/istanbul-lib-report/index.d.ts","../../../node_modules/@types/istanbul-reports/index.d.ts","../../../node_modules/jest-diff/build/cleanupsemantic.d.ts","../../../node_modules/jest-diff/build/types.d.ts","../../../node_modules/jest-diff/build/difflines.d.ts","../../../node_modules/jest-diff/build/printdiffs.d.ts","../../../node_modules/jest-diff/build/index.d.ts","../../../node_modules/pretty-format/build/types.d.ts","../../../node_modules/pretty-format/build/index.d.ts","../../../node_modules/@types/jest/index.d.ts","../../../node_modules/@types/json5/index.d.ts","../../../node_modules/@types/lodash/common/common.d.ts","../../../node_modules/@types/lodash/common/array.d.ts","../../../node_modules/@types/lodash/common/collection.d.ts","../../../node_modules/@types/lodash/common/date.d.ts","../../../node_modules/@types/lodash/common/function.d.ts","../../../node_modules/@types/lodash/common/lang.d.ts","../../../node_modules/@types/lodash/common/math.d.ts","../../../node_modules/@types/lodash/common/number.d.ts","../../../node_modules/@types/lodash/common/object.d.ts","../../../node_modules/@types/lodash/common/seq.d.ts","../../../node_modules/@types/lodash/common/string.d.ts","../../../node_modules/@types/lodash/common/util.d.ts","../../../node_modules/@types/lodash/index.d.ts","../../../node_modules/@types/mdast/index.d.ts","../../../node_modules/@types/react/global.d.ts","../../../node_modules/csstype/index.d.ts","../../../node_modules/@types/prop-types/index.d.ts","../../../node_modules/@types/scheduler/tracing.d.ts","../../../node_modules/@types/react/index.d.ts","../../../node_modules/@types/mdx-js__react/index.d.ts","../../../node_modules/@types/webpack/node_modules/schema-utils/declarations/validationerror.d.ts","../../../node_modules/ajv/lib/ajv.d.ts","../../../node_modules/@types/webpack/node_modules/schema-utils/declarations/validate.d.ts","../../../node_modules/@types/webpack/node_modules/schema-utils/declarations/index.d.ts","../../../node_modules/@types/webpack/node_modules/tapable/tapable.d.ts","../../../node_modules/@types/webpack/node_modules/webpack/types.d.ts","../../../node_modules/@types/webpack/index.d.ts","../../../node_modules/@types/mini-css-extract-plugin/index.d.ts","../../../node_modules/@types/minimist/index.d.ts","../../../node_modules/@types/mustache/index.d.ts","../../../node_modules/form-data/index.d.ts","../../../node_modules/@types/node-fetch/externals.d.ts","../../../node_modules/@types/node-fetch/index.d.ts","../../../node_modules/@types/normalize-package-data/index.d.ts","../../../node_modules/@types/parse-json/index.d.ts","../../../node_modules/@types/parse5/lib/tree-adapters/default.d.ts","../../../node_modules/@types/parse5/index.d.ts","../../../node_modules/@types/prettier/index.d.ts","../../../node_modules/@types/pug/index.d.ts","../../../node_modules/@types/q/index.d.ts","../../../node_modules/@types/sass/index.d.ts","../../../node_modules/@types/scheduler/index.d.ts","../../../node_modules/@types/script-ext-html-webpack-plugin/index.d.ts","../../../node_modules/@types/source-list-map/index.d.ts","../../../node_modules/@types/stack-utils/index.d.ts","../../../node_modules/@types/tapable/index.d.ts","../../../node_modules/source-map/source-map.d.ts","../../../node_modules/@types/uglify-js/index.d.ts","../../../node_modules/@types/webpack-dev-server/index.d.ts","../../../node_modules/@types/webpack-sources/node_modules/source-map/source-map.d.ts","../../../node_modules/@types/webpack-sources/lib/source.d.ts","../../../node_modules/@types/webpack-sources/lib/compatsource.d.ts","../../../node_modules/@types/webpack-sources/lib/concatsource.d.ts","../../../node_modules/@types/webpack-sources/lib/originalsource.d.ts","../../../node_modules/@types/webpack-sources/lib/prefixsource.d.ts","../../../node_modules/@types/webpack-sources/lib/rawsource.d.ts","../../../node_modules/@types/webpack-sources/lib/replacesource.d.ts","../../../node_modules/@types/webpack-sources/lib/sizeonlysource.d.ts","../../../node_modules/@types/webpack-sources/lib/sourcemapsource.d.ts","../../../node_modules/@types/webpack-sources/lib/index.d.ts","../../../node_modules/@types/webpack-sources/lib/cachedsource.d.ts","../../../node_modules/@types/webpack-sources/index.d.ts","../../../node_modules/@types/yargs-parser/index.d.ts","../../../node_modules/@types/yargs/index.d.ts"],"fileInfos":[{"version":"aa9fb4c70f369237c2f45f9d969c9a59e0eae9a192962eb48581fe864aa609db","affectsGlobalScope":true},"dc47c4fa66b9b9890cf076304de2a9c5201e94b740cffdf09f87296d877d71f6","7a387c58583dfca701b6c85e0adaf43fb17d590fb16d5b2dc0a2fbd89f35c467","8a12173c586e95f4433e0c6dc446bc88346be73ffe9ca6eec7aa63c8f3dca7f9","5f4e733ced4e129482ae2186aae29fde948ab7182844c3a5a51dd346182c7b06","e6b724280c694a9f588847f754198fb96c43d805f065c3a5b28bbc9594541c84","e21c071ca3e1b4a815d5f04a7475adcaeea5d64367e840dd0154096d705c3940","eb75e89d63b3b72dd9ca8b0cac801cecae5be352307c004adeaa60bc9d6df51f","2cc028cd0bdb35b1b5eb723d84666a255933fffbea607f72cbd0c7c7b4bee144",{"version":"e54c8715a4954cfdc66cd69489f2b725c09ebf37492dbd91cff0a1688b1159e8","affectsGlobalScope":true},{"version":"51b8b27c21c066bf877646e320bf6a722b80d1ade65e686923cd9d4494aef1ca","affectsGlobalScope":true},{"version":"43fb1d932e4966a39a41b464a12a81899d9ae5f2c829063f5571b6b87e6d2f9c","affectsGlobalScope":true},{"version":"cdccba9a388c2ee3fd6ad4018c640a471a6c060e96f1232062223063b0a5ac6a","affectsGlobalScope":true},{"version":"2c8c5ee58f30e7c944e04ab1fb5506fdbb4dd507c9efa6972cf4b91cec90c503","affectsGlobalScope":true},{"version":"2bb4b3927299434052b37851a47bf5c39764f2ba88a888a107b32262e9292b7c","affectsGlobalScope":true},{"version":"810627a82ac06fb5166da5ada4159c4ec11978dfbb0805fe804c86406dab8357","affectsGlobalScope":true},{"version":"62d80405c46c3f4c527ee657ae9d43fda65a0bf582292429aea1e69144a522a6","affectsGlobalScope":true},{"version":"3013574108c36fd3aaca79764002b3717da09725a36a6fc02eac386593110f93","affectsGlobalScope":true},{"version":"75ec0bdd727d887f1b79ed6619412ea72ba3c81d92d0787ccb64bab18d261f14","affectsGlobalScope":true},{"version":"3be5a1453daa63e031d266bf342f3943603873d890ab8b9ada95e22389389006","affectsGlobalScope":true},{"version":"17bb1fc99591b00515502d264fa55dc8370c45c5298f4a5c2083557dccba5a2a","affectsGlobalScope":true},{"version":"7ce9f0bde3307ca1f944119f6365f2d776d281a393b576a18a2f2893a2d75c98","affectsGlobalScope":true},{"version":"6a6b173e739a6a99629a8594bfb294cc7329bfb7b227f12e1f7c11bc163b8577","affectsGlobalScope":true},{"version":"12a310447c5d23c7d0d5ca2af606e3bd08afda69100166730ab92c62999ebb9d","affectsGlobalScope":true},{"version":"b0124885ef82641903d232172577f2ceb5d3e60aed4da1153bab4221e1f6dd4e","affectsGlobalScope":true},{"version":"0eb85d6c590b0d577919a79e0084fa1744c1beba6fd0d4e951432fa1ede5510a","affectsGlobalScope":true},{"version":"da233fc1c8a377ba9e0bed690a73c290d843c2c3d23a7bd7ec5cd3d7d73ba1e0","affectsGlobalScope":true},{"version":"df9c8a72ca8b0ed62f5470b41208a0587f0f73f0a7db28e5a1272cf92537518e","affectsGlobalScope":true},{"version":"bb2d3fb05a1d2ffbca947cc7cbc95d23e1d053d6595391bd325deb265a18d36c","affectsGlobalScope":true},{"version":"c80df75850fea5caa2afe43b9949338ce4e2de086f91713e9af1a06f973872b8","affectsGlobalScope":true},{"version":"9d57b2b5d15838ed094aa9ff1299eecef40b190722eb619bac4616657a05f951","affectsGlobalScope":true},{"version":"6c51b5dd26a2c31dbf37f00cfc32b2aa6a92e19c995aefb5b97a3a64f1ac99de","affectsGlobalScope":true},{"version":"93544ca2f26a48716c1b6c5091842cad63129daac422dfa4bc52460465f22bb1","affectsGlobalScope":true},{"version":"2ad234885a4240522efccd77de6c7d99eecf9b4de0914adb9a35c0c22433f993","affectsGlobalScope":true},{"version":"1b3fe904465430e030c93239a348f05e1be80640d91f2f004c3512c2c2c89f34","affectsGlobalScope":true},{"version":"7435b75fdf3509622e79622dbe5091cf4b09688410ee2034e4fc17d0c99d0862","affectsGlobalScope":true},{"version":"e7e8e1d368290e9295ef18ca23f405cf40d5456fa9f20db6373a61ca45f75f40","affectsGlobalScope":true},{"version":"faf0221ae0465363c842ce6aa8a0cbda5d9296940a8e26c86e04cc4081eea21e","affectsGlobalScope":true},{"version":"06393d13ea207a1bfe08ec8d7be562549c5e2da8983f2ee074e00002629d1871","affectsGlobalScope":true},{"version":"9f1817f7c3f02f6d56e0f403b927e90bb133f371dcebc36fa7d6d208ef6899da","affectsGlobalScope":true},{"version":"cd6efb9467a8b6338ece2e2855e37765700f2cd061ca54b01b33878cf5c7677e","affectsGlobalScope":true},{"version":"fb4416144c1bf0323ccbc9afb0ab289c07312214e8820ad17d709498c865a3fe","affectsGlobalScope":true},{"version":"5b0ca94ec819d68d33da516306c15297acec88efeb0ae9e2b39f71dbd9685ef7","affectsGlobalScope":true},{"version":"4632665b87204bb1caa8b44d165bce0c50dfab177df5b561b345a567cabacf9a","affectsGlobalScope":true},"12f4cfe2fe60b810c3174537bc2ddb20c1067b7768643d12cb1266fd183afb75","fc02bdd2e930a79f170a01168c2250182c7b7ff3067a0fc51a3556ee64d80eb8","11814b1e677b3283227d7f325ff8dc75155370b926436795f041de62b71ef6a6","d5c19655468e29f60c871b21e73af8ebc653f736e7123ade916f22c4a5f80ce5","fab58e600970e66547644a44bc9918e3223aa2cbd9e8763cec004b2cfb48827e","0a1ce6b7562573e4be9c3534b20fa20d5471dceaabb1ea9b3c2ad9102d32b756","f60b0c208fe0a0d6aa419a82ef26c1b77fcfbc0662616fe81bd20ceec0af8640","a2ca11a0c143af0d9b73dff88281b8ca66a762466357eb420f5fcd68548574e9","0c211d3ef9ba2da476653e0b848ca7ed730282a9772bb7685b3e1b2ffa0f816b","bc7f065d22b8f15c91fd5be477c34cdb6142a4e7b57c88155ca0d4a57f375f11","69f9c1f4e5e0f6d0f65475e49710ed8d0e69b8d936c25f86b129c48f2b365de1","004a82153f180dda002a46919e8257603fc23334613073c449ef0115faa7d756","35fc9c88c0a476b089603578da3e15e8d6301154a5465733e97e379c8a60ccf2","2cb86b868807842a420bd713cfac065ead7bf51c9e767bd0a6a7a2ecd9640ef7","ec99644406e310b659afcc52794606a3ea1a351878cb3995a071eb979da6deaa","f6547611a018b3b1ff073d01ee4bb84e3c5e48f623a38b31bd6543ca5216b740","3ef0e4902001402dd22a7dc5da0acd15889a475bda30aced83d03b406c912a41","272c2dac4baaf7fdd2d7efeef0fa2547af54cc21883c5e138b8c4d1661697a54","8dfed5c91ad36e69e6da6b7e49be929d4e19666db2b651aa839c485170a2902c","64b867c61effed7b5bc0cc06b3d8eac23b067a3fba581fc7d3c292fa593e6a45","93de1c6dab503f053efe8d304cb522bb3a89feab8c98f307a674a4fae04773e9","3b043cf9a81854a72963fdb57d1884fc4da1cf5be69b5e0a4c5b751e58cb6d88","d0b0a00cf31968a33baeaadf974ce4e5e7edf58cea5288765293f41ba5e72b3a","0d5a2ee1fdfa82740e0103389b9efd6bfe145a20018a2da3c02b89666181f4d9","a69c09dbea52352f479d3e7ac949fde3d17b195abe90b045d619f747b38d6d1a",{"version":"92d63add669d18ebc349efbacd88966d6f2ccdddfb1b880b2db98ae3aa7bf7c4","affectsGlobalScope":true},"ccc94049a9841fe47abe5baef6be9a38fc6228807974ae675fb15dc22531b4be",{"version":"9acfe4d1ff027015151ce81d60797b04b52bffe97ad8310bb0ec2e8fd61e1303","affectsGlobalScope":true},"95843d5cfafced8f3f8a5ce57d2335f0bcd361b9483587d12a25e4bd403b8216","afc6e96061af46bcff47246158caee7e056f5288783f2d83d6858cd25be1c565",{"version":"34f5bcac12b36d70304b73de5f5aab3bb91bd9919f984be80579ebcad03a624e","affectsGlobalScope":true},"82408ed3e959ddc60d3e9904481b5a8dc16469928257af22a3f7d1a3bc7fd8c4","2f520601649a893e6a49a8851ebfcf4be8ce090dc1281c2a08a871cb04e8251f","f50c975ab7b50e25a69e3d8a3773894125b44e9698924105f23b812bf7488baf","2b8c764f856a1dd0a9a2bf23e5efddbff157de8138b0754010be561ae5fcaa90","ad4b60488fb1e562bf375dac9299815f7028bf667d9b5887b2d01d501b7d1ddd","246341c3a7a2638cf830d690e69de1e6085a102c6a30596435b050e6ac86c11a","6972fca26f6e9bd56197568d4379f99071a90766e06b4fcb5920a0130a9202be",{"version":"4a2628e95962c8ab756121faa3ac2ed348112ff7a87b5c286dd2cc3326546b4c","affectsGlobalScope":true},"6dfd135b38ab97c536d9c966fc5a5a879a19c6ed75c2c9633902be1ef0945ff7","a049a59a02009fc023684fcfaf0ac526fe36c35dcc5d2b7d620c1750ba11b083","a361a26932d73497a174a6d48c53cfedb55f735f20e8638fdf7b25cdeaac9ca4","b287b810b5035d5685f1df6e1e418f1ca452a3ed4f59fd5cc081dbf2045f0d9b","4b9a003b5c556c96784132945bb41c655ea11273b1917f5c8d0c154dd5fd20dd","a458dc78104cc80048ac24fdc02fe6dce254838094c2f25641b3f954d9721241",{"version":"e8b18c6385ff784228a6f369694fcf1a6b475355ba89090a88de13587a9391d5","affectsGlobalScope":true},"902cd98bf46e95caf4118a0733fb801e9e90eec3edaed6abdad77124afec9ca2","abc1c425b2ad6720433f40f1877abfa4223f0f3dd486c9c28c492179ca183cb6","cd4854d38f4eb5592afd98ab95ca17389a7dfe38013d9079e802d739bdbcc939","94eed4cc2f5f658d5e229ff1ccd38860bddf4233e347bf78edd2154dee1f2b99",{"version":"e51bee3200733b1f58818b5a9ea90fcd61c5b8afa3a0378391991f3696826a65","affectsGlobalScope":true},"9f1069b9e2c051737b1f9b4f1baf50e4a63385a6a89c32235549ae87fc3d5492","ee18f2da7a037c6ceeb112a084e485aead9ea166980bf433474559eac1b46553","29c2706fa0cc49a2bd90c83234da33d08bb9554ecec675e91c1f85087f5a5324","0acbf26bf958f9e80c1ffa587b74749d2697b75b484062d36e103c137c562bc3","d7838022c7dab596357a9604b9c6adffe37dc34085ce0779c958ce9545bd7139","1b952304137851e45bc009785de89ada562d9376177c97e37702e39e60c2f1ff",{"version":"806ef4cac3b3d9fa4a48d849c8e084d7c72fcd7b16d76e06049a9ed742ff79c0","affectsGlobalScope":true},"a279435e7813d1f061c0cab6ab77b1b9377e8d96851e5ed4a76a1ce6eb6e628f","c33a6ea7147af60d8e98f1ac127047f4b0d4e2ce28b8f08ff3de07ca7cc00637",{"version":"b42b47e17b8ece2424ae8039feb944c2e3ba4b262986aebd582e51efbdca93dc","affectsGlobalScope":true},"664d8f2d59164f2e08c543981453893bc7e003e4dfd29651ce09db13e9457980","2408611d9b4146e35d1dbd1f443ccd8e187c74614a54b80300728277529dbf11","998a3de5237518c0b3ac00a11b3b4417affb008aa20aedee52f3fdae3cb86151","ad41008ffe077206e1811fc873f4d9005b5fd7f6ab52bb6118fef600815a5cb4","d88ecca73348e7c337541c4b8b60a50aca5e87384f6b8a422fc6603c637e4c21","badae0df9a8016ac36994b0a0e7b82ba6aaa3528e175a8c3cb161e4683eec03e","c3db860bcaaaeb3bbc23f353bbda1f8ab82756c8d5e973bebb3953cb09ea68f2","235a53595bd20b0b0eeb1a29cb2887c67c48375e92f03749b2488fbd46d0b1a0","bc09393cd4cd13f69cf1366d4236fbae5359bb550f0de4e15767e9a91d63dfb1","9c266243b01545e11d2733a55ad02b4c00ecdbda99c561cd1674f96e89cdc958","c71155c05fc76ff948a4759abc1cb9feec036509f500174bc18dad4c7827a60c",{"version":"ab9b9a36e5284fd8d3bf2f7d5fcbc60052f25f27e4d20954782099282c60d23e","affectsGlobalScope":true},"e6ef68f677c1b63967d87568043b8af9d2dfd71d5873acd1de3abeb1db606741","6d829824ead8999f87b6df21200df3c6150391b894b4e80662caa462bd48d073","65cfd1c0bc729fbc2b49fe66bc5ebddba5aa3a978c748e1d2e0d07f502238ce2",{"version":"42c1b00421aa4d5f03b85a2639c1573d32bd82533f34423bbf1f5fb2b0ddc4d8","affectsGlobalScope":true},"a7b9533447378e7f34fa432e26be9102173e79bceb65b20d258d61c4042e90ad","d71ffe64592c4e61c6b431d8fbaff58735cd659738d788a4c8423a27f78f01b7","b869f848bec826c9d3645d10a183b905672a4675747f41700fd30e1b7e0d0308","62cc84c2971b16cc82e1f7cb1dac7d8c70b589d492fbc2f6efbcbfc53b61d514","67729b7b26e1ecf2afeb2f4a0a8c3ba16712918ef22d23bb615f033169ebe0f3","903da09dbdfea0af66cb6b7b25950e42e350f1f3cc87f3516baa553cc4de882f","e237aa7b157ebfb2699d2e3bbf07c65a8cea0382201dc44c9da006f0f730de67","05e8a403b04248dbe9eebd2025d58e95495de303f37b39f13e7562f5f414087a","a56bf5dce7c05192e4c2d95eb1527feda15f9225afea8c5ad67034a79992ebb6","fcb510be50b0756cb770f8caf321dba38ae074665efbea090584f8a8d3e6b8f4","d4c9c56a2f4ecedcc224a495dfbaee88072c8e99679504fb32ef1d0629f843a1","5ec537948044f7c0280d6175729bf7aa13deae28fe0f6346628a8cf15569aefa","a356dbb234a629456ea426c8eef1d8296a2fa4266afb6defb3691ad07140c84e","1cc502622a7f773e7cd75ecacd64d0bc83a2a6442dc16a7081f968702edf5051","16d51f964ec125ad2024cf03f0af444b3bc3ec3614d9345cc54d09bab45c9a4c","ba601641fac98c229ccd4a303f747de376d761babb33229bb7153bed9356c9cc",{"version":"d168ca1638b27c95909b68805c84b8018dba87630bb1e4cc99be4ccdf119f39d","affectsGlobalScope":true},"56cbe80e6c42d7e6e66b6f048add8b01c663797b843a074d9f19c4a3d63a269a","6a9c5127096b35264eb7cd21b2417bfc1d42cceca9ba4ce2bb0c3410b7816042","78828b06c0d3b586954015e9ebde5480b009e166c71244763bda328ec0920f41",{"version":"64d4b35c5456adf258d2cf56c341e203a073253f229ef3208fc0d5020253b241","affectsGlobalScope":true},"0133ebdd17a823ae56861948870cde4dac18dd8818ab641039c85bbb720429e0","0359682c54e487c4cab2b53b2b4d35cc8dea4d9914bc6abcdb5701f8b8e745a4","7d7c8ef7d48a035142c07dae60545ecc0e4af4c337742760cb09726f2f8e31db","ab9cce8526b1878586804696261de5505885a9b9bbe8af15e99b7387c81f2b6d","82772e5d55062a042a2715a555d347275a663940926fc785705eb082010cb9f6","84e3bbd6f80983d468260fdbfeeb431cc81f7ea98d284d836e4d168e36875e86","0b85cb069d0e427ba946e5eb2d86ef65ffd19867042810516d16919f6c1a5aec","15c88bfd1b8dc7231ff828ae8df5d955bae5ebca4cf2bcb417af5821e52299ae","8841e2aa774b89bd23302dede20663306dc1b9902431ac64b24be8b8d0e3f649","fd326577c62145816fe1acc306c734c2396487f76719d3785d4e825b34540b33","3ebae8c00411116a66fca65b08228ea0cf0b72724701f9b854442100aab55aba","cddf5c26907c0b8378bc05543161c11637b830da9fadf59e02a11e675d11e180","3d2cd8f3047fff04a71e7037a6a4cb9f4accb28dbd8c0d83164d414811025af0","70b34c8420d6226ed565d55f47fe04912d0ca0ad128825c5a06e018a3498db32","090ca38de36da6946266ef9057295341b6499c2fad4fe441afa50b2e864846b0","de18acda71730bac52f4b256ce7511bb56cc21f6f114c59c46782eff2f632857","7eb06594824ada538b1d8b48c3925a83e7db792f47a081a62cf3e5c4e23cf0ee","f5638f7c2f12a9a1a57b5c41b3c1ea7db3876c003bab68e6a57afd6bcc169af0","d8aab31ba8e618cc3eea10b0945de81cb93b7e8150a013a482332263b9305322","69da61a7b5093dac77fa3bec8be95dcf9a74c95a0e9161edb98bb24e30e439d2","561eca7a381b96d6ccac6e4061e6d2ae53f5bc44203f3fd9f5b26864c32ae6e9","62ea38627e3ebab429f7616812a9394d327c2bc271003dfba985de9b4137369f","8a8a96898906f065f296665e411f51010b51372fa260d5373bf9f64356703190","f014d6d053cb1840965952268a589c9e2a74d66c8c88286562d5699350e28e19","66851b263230decb3684072b2cb777f70ea3e52d4489b88f78f185618d4d398e",{"version":"e9f2cdc4e98e73a606ff68c470a8cb4f23cd638c47649d71b90a2d9413102080","affectsGlobalScope":true},"96d14f21b7652903852eef49379d04dbda28c16ed36468f8c9fa08f7c14c9538","675e702f2032766a91eeadee64f51014c64688525da99dccd8178f0c599f13a8","378df8bbbb9e3f6fca05d58f644aab538e1062eab5e778fb0b83d41125df246d","d88a479cccf787b4aa82362150fbeba5211a32dbfafa7b92ba6995ecaf9a1a89","187119ff4f9553676a884e296089e131e8cc01691c546273b1d0089c3533ce42","c24ad9be9adf28f0927e3d9d9e9cec1c677022356f241ccbbfb97bfe8fb3d1a1","0ec0998e2d085e8ea54266f547976ae152c9dd6cdb9ac4d8a520a230f5ebae84","9364c7566b0be2f7b70ff5285eb34686f83ccb01bda529b82d23b2a844653bfb","00baffbe8a2f2e4875367479489b5d43b5fc1429ecb4a4cc98cfc3009095f52a","ae9930989ed57478eb03b9b80ad3efa7a3eacdfeff0f78ecf7894c4963a64f93","3c92b6dfd43cc1c2485d9eba5ff0b74a19bb8725b692773ef1d66dac48cda4bd","3e59f00ab03c33717b3130066d4debb272da90eeded4935ff0604c2bc25a5cae","9fa6b83a35e897f340858995ca5d77e901d89fd18644cd4c9e8a4afe0b2e6363",{"version":"0714e2046df66c0e93c3330d30dbc0565b3e8cd3ee302cf99e4ede6220e5fec8","affectsGlobalScope":true},"2a2e2c6463bcf3c59f31bc9ab4b6ef963bbf7dffb049cd017e2c1834e3adca63",{"version":"ecf78e637f710f340ec08d5d92b3f31b134a46a4fcf2e758690d8c46ce62cba6","affectsGlobalScope":true},"5b1d4ebd62d975c7d3826202f8fac290bac0bae6e04d9e84d1707d7047e108df","f7b46d22a307739c145e5fddf537818038fdfffd580d79ed717f4d4d37249380","f5a8b384f182b3851cec3596ccc96cb7464f8d3469f48c74bf2befb782a19de5",{"version":"e4be0ff844c90e9112c7cde181f9f76c72272b7b137485f6fa7d1c66a2cc84bd","affectsGlobalScope":true},"1a4f6207fac7bf7e94957a5c7cac0c33d07499bab60a197dabea4f452a544cd8","dee5d387e2e6f3015cbf91fc0c13ed6f016f9c5c1f2ad9c62602f4fd398fa83a","67f129ed8b372622ff36b8b10e39d03e09e363a5ff7821105f92f085b8d1ccba","721124f5db1f4a42da2308dfa1414d2e99055d2dfc59de7bf2e0b6ac64356c0e","0d7569149194d622212c21d5d162b0715d5a6ca764cebae7145fdbaff1e07311","cd74c8275483d3fe0d07a9b4bba28845a8a611f0aa399e961dbd40e5d46dd9ad","71b4b77aaa2abca926f7195cca82367ca384f40e126201cf07a22b5efd5617e5","d7e12d9634587982b53654f1c9a96e1f9a911fbd5e69fc5c593565c691fd4a12","8537945141892b0e4af62744f8b9ca6e5b67ad65929267dcb0866b33745769a8","209e814e8e71aec74f69686a9506dd7610b97ab59dcee9446266446f72a76d05","56dd85019d2374449708458f4acf4712d4c6f7b19ae597e910bab6ae75bc9e05","736097ddbb2903bef918bb3b5811ef1c9c5656f2a73bd39b22a91b9cc2525e50","208bb742e0f201470da121bc73847c74b62cff4172f38ae5949ae77d6c9c6b71","062bd2910098fc059ba93e347649b3e126c555f7b144033d21d3f8ef63d3e39b","6fa0008bf91a4cc9c8963bace4bba0bd6865cbfa29c3e3ccc461155660fb113a","2b8264b2fefd7367e0f20e2c04eed5d3038831fe00f5efbc110ff0131aab899b","fc37aca06f6b8b296c42412a2e75ab53d30cd1fa8a340a3bb328a723fd678377","7a514f06ed8263440e9b50047f2532b9188c9c68422b4607f9d23affaebb3e63","9d9e658d1d5b805562749ce383ef8c67ccb796394d8734d9c138788d7dab6ee3","711596a8f7e8a84ea3985bb2d03f1a6681ac7ecd132d48141d6d6a1287513d27","62b931417104c7cb35d0725e1869f51d52d7b18462fd58f32f846a314a42ba10","630ca25a5f50f64b0eacc40ba4c95f4469ec9dedb76ce522ee34806cbac63883","74b0245c42990ed8a849df955db3f4362c81b13f799ebc981b7bec2d5b414a57","4045f108d41deca56fa341093feeb16252ccf1fc4d5233bd54dbba022b976477","67fc055eb86a0632e2e072838f889ffe1754083cb13c8c80a06a7d895d877aae","b0d10e46cfe3f6c476b69af02eaa38e4ccc7430221ce3109ae84bb9fb8282298","3833c70307dc3d2b46cb6f2a8b6a90e4d7e7367a21ab18c481d7de0909a43e67","2887592574fcdfd087647c539dcb0fbe5af2521270dad4a37f9d17c16190d579","9d74c7330800b325bb19cc8c1a153a612c080a60094e1ab6cfb6e39cf1b88c36","320dfb6b91f1ede1216fe57eb0a608c49b71e61ba5b1f16b2629254db563476e","b90c59ac4682368a01c83881b814738eb151de8a58f52eb7edadea2bcffb11b9","8560a87b2e9f8e2c3808c8f6172c9b7eb6c9b08cb9f937db71c285ecf292c81d","ffe3931ff864f28d80ae2f33bd11123ad3d7bad9896b910a1e61504cc093e1f5","083c1bd82f8dc3a1ed6fc9e8eaddf141f7c05df418eca386598821e045253af9","274ebe605bd7f71ce161f9f5328febc7d547a2929f803f04b44ec4a7d8729517","6ca0207e70d985a24396583f55836b10dc181063ab6069733561bfde404d1bad","5908142efeaab38ffdf43927ee0af681ae77e0d7672b956dfb8b6c705dbfe106","f772b188b943549b5c5eb803133314b8aa7689eced80eed0b70e2f30ca07ab9c","0026b816ef05cfbf290e8585820eef0f13250438669107dfc44482bac007b14f","05d64cc1118031b29786632a9a0f6d7cf1dcacb303f27023a466cf3cdc860538","e0fff9119e1a5d2fdd46345734126cd6cb99c2d98a9debf0257047fe3937cc3f","d84398556ba4595ee6be554671da142cfe964cbdebb2f0c517a10f76f2b016c0","e275297155ec3251200abbb334c7f5641fecc68b2a9573e40eed50dff7584762","f7e133b20ee2669b6c0e5d7f0cd510868c57cd64b283e68c7f598e30ce9d76d2","6ba73232c9d3267ca36ddb83e335d474d2c0e167481e3dec416c782894e11438"],"options":{"allowSyntheticDefaultImports":true,"composite":true,"declaration":true,"esModuleInterop":true,"experimentalDecorators":true,"importHelpers":true,"module":1,"noImplicitAny":true,"outDir":"./lib","rootDir":"./src","skipLibCheck":true,"strict":true,"strictNullChecks":true,"strictPropertyInitialization":true,"target":6},"fileIdsList":[[62,111],[111],[62,63,64,65,66,111],[62,64,111],[86,111,118,119],[111,118],[111,122,123,124,125,126,127,128,129,130,131,132,133],[83,111,118],[110,111,118,138],[86,111,118],[111,140],[111,145,146],[111,142,143,144,145],[111,146],[83,86,111,118,136,137],[111,120,137,138,149],[83,84,111,118,151],[84,111,118],[111,154],[83,86,88,91,100,110,111,118],[111,158],[111,159],[111,165,167],[111,170,172,173,174,175,176,177,178,179,180,181,182],[111,170,171,173,174,175,176,177,178,179,180,181,182],[111,171,172,173,174,175,176,177,178,179,180,181,182],[111,170,171,172,174,175,176,177,178,179,180,181,182],[111,170,171,172,173,175,176,177,178,179,180,181,182],[111,170,171,172,173,174,176,177,178,179,180,181,182],[111,170,171,172,173,174,175,177,178,179,180,181,182],[111,170,171,172,173,174,175,176,178,179,180,181,182],[111,170,171,172,173,174,175,176,177,179,180,181,182],[111,170,171,172,173,174,175,176,177,178,180,181,182],[111,170,171,172,173,174,175,176,177,178,179,181,182],[111,170,171,172,173,174,175,176,177,178,179,180,182],[111,170,171,172,173,174,175,176,177,178,179,180,181],[111,188],[111,196],[86,110,111,118,200,201],[68,111],[71,111],[72,77,111],[73,83,84,91,100,110,111],[73,74,83,91,111],[75,111],[76,77,84,92,111],[77,100,107,111],[78,80,83,91,111],[79,111],[80,81,111],[82,83,111],[83,111],[83,84,85,100,110,111],[83,84,85,100,111],[86,91,100,110,111],[83,84,86,87,91,100,107,110,111],[86,88,100,107,110,111],[68,69,70,71,72,73,74,75,76,77,78,79,80,81,82,83,84,85,86,87,88,89,90,91,92,93,94,95,96,97,98,99,100,101,102,103,104,105,106,107,108,109,110,111,112,113,114,115,116,117],[83,89,111],[90,110,111],[80,83,91,100,111],[92,111],[93,111],[71,94,111],[95,109,111,115],[96,111],[97,111],[83,98,111],[98,99,111,113],[83,100,101,102,111],[100,102,111],[100,101,111],[103,111],[104,111],[83,105,106,111],[105,106,111],[77,91,107,111],[108,111],[91,109,111],[72,86,97,110,111],[77,111],[100,111,112],[111,113],[111,114],[72,77,83,85,94,100,110,111,113,115],[100,111,116],[111,205],[111,206],[111,184,185,186,187],[110,111,118],[86,111,118,148],[111,216],[86,88,111,139,149,150,195,196],[111,118,220,221,222,223,224,225,226,227,228,229,230],[111,219,220,229],[111,220,229],[111,213,219,220,229],[111,219,220,221,222,223,224,225,226,227,228,230],[111,220],[77,111,219,229],[111,118,195],[111,192],[111,144,190,191],[111,144,192],[86,91,107,111,145,190,192,193,194],[111,232],[86,100,111,118],[111,161,162],[111,161,162,163,164],[111,166],[47,111],[45,111],[45,48,49,50,111],[45,48,111],[45,46,111],[45,54,111],[45,46,48,50,51,56,57,111],[45,50,51,52,53,54,58,59,60,111]],"referencedMap":[[64,1],[62,2],[67,3],[63,1],[65,4],[66,1],[120,5],[121,6],[122,2],[123,2],[124,2],[125,2],[126,2],[128,2],[134,7],[127,2],[132,2],[129,2],[130,2],[131,2],[133,2],[135,8],[139,9],[119,10],[141,11],[147,12],[142,2],[146,13],[143,14],[145,2],[138,15],[150,16],[152,17],[153,18],[155,19],[156,2],[157,20],[158,2],[159,21],[160,22],[168,23],[144,2],[169,2],[171,24],[172,25],[170,26],[173,27],[174,28],[175,29],[176,30],[177,31],[178,32],[179,33],[180,34],[181,35],[182,36],[183,19],[189,37],[148,2],[197,38],[151,2],[198,2],[140,2],[199,2],[201,2],[202,39],[68,40],[69,40],[71,41],[72,42],[73,43],[74,44],[75,45],[76,46],[77,47],[78,48],[79,49],[80,50],[81,50],[82,51],[83,52],[84,53],[85,54],[70,2],[117,2],[86,55],[87,56],[88,57],[118,58],[89,59],[90,60],[91,61],[92,62],[93,63],[94,64],[95,65],[96,66],[97,67],[98,68],[99,69],[100,70],[102,71],[101,72],[103,73],[104,74],[105,75],[106,76],[107,77],[108,78],[109,79],[110,80],[111,81],[112,82],[113,83],[114,84],[115,85],[116,86],[203,2],[204,2],[206,87],[205,88],[207,2],[186,2],[208,2],[209,2],[137,2],[136,2],[184,2],[188,89],[210,90],[211,2],[187,2],[212,38],[149,91],[213,2],[214,2],[215,2],[217,92],[154,2],[49,2],[218,93],[231,94],[230,95],[221,96],[222,97],[229,98],[223,97],[224,96],[225,96],[226,96],[227,99],[220,100],[228,95],[219,2],[196,101],[193,102],[192,103],[190,104],[194,2],[195,105],[232,2],[233,106],[191,2],[185,2],[200,107],[161,2],[163,108],[165,109],[164,108],[162,2],[167,110],[166,2],[216,2],[45,2],[10,2],[12,2],[11,2],[2,2],[13,2],[14,2],[15,2],[16,2],[17,2],[18,2],[19,2],[20,2],[3,2],[4,2],[24,2],[21,2],[22,2],[23,2],[25,2],[26,2],[27,2],[5,2],[28,2],[29,2],[30,2],[31,2],[6,2],[32,2],[33,2],[34,2],[35,2],[7,2],[40,2],[36,2],[37,2],[38,2],[39,2],[8,2],[41,2],[42,2],[43,2],[1,2],[9,2],[44,2],[48,111],[47,2],[46,112],[51,113],[52,114],[53,115],[50,112],[55,116],[54,112],[58,117],[59,112],[61,118],[57,114],[56,112],[60,114]],"exportedModulesMap":[[64,1],[62,2],[67,3],[63,1],[65,4],[66,1],[120,5],[121,6],[122,2],[123,2],[124,2],[125,2],[126,2],[128,2],[134,7],[127,2],[132,2],[129,2],[130,2],[131,2],[133,2],[135,8],[139,9],[119,10],[141,11],[147,12],[142,2],[146,13],[143,14],[145,2],[138,15],[150,16],[152,17],[153,18],[155,19],[156,2],[157,20],[158,2],[159,21],[160,22],[168,23],[144,2],[169,2],[171,24],[172,25],[170,26],[173,27],[174,28],[175,29],[176,30],[177,31],[178,32],[179,33],[180,34],[181,35],[182,36],[183,19],[189,37],[148,2],[197,38],[151,2],[198,2],[140,2],[199,2],[201,2],[202,39],[68,40],[69,40],[71,41],[72,42],[73,43],[74,44],[75,45],[76,46],[77,47],[78,48],[79,49],[80,50],[81,50],[82,51],[83,52],[84,53],[85,54],[70,2],[117,2],[86,55],[87,56],[88,57],[118,58],[89,59],[90,60],[91,61],[92,62],[93,63],[94,64],[95,65],[96,66],[97,67],[98,68],[99,69],[100,70],[102,71],[101,72],[103,73],[104,74],[105,75],[106,76],[107,77],[108,78],[109,79],[110,80],[111,81],[112,82],[113,83],[114,84],[115,85],[116,86],[203,2],[204,2],[206,87],[205,88],[207,2],[186,2],[208,2],[209,2],[137,2],[136,2],[184,2],[188,89],[210,90],[211,2],[187,2],[212,38],[149,91],[213,2],[214,2],[215,2],[217,92],[154,2],[49,2],[218,93],[231,94],[230,95],[221,96],[222,97],[229,98],[223,97],[224,96],[225,96],[226,96],[227,99],[220,100],[228,95],[219,2],[196,101],[193,102],[192,103],[190,104],[194,2],[195,105],[232,2],[233,106],[191,2],[185,2],[200,107],[161,2],[163,108],[165,109],[164,108],[162,2],[167,110],[166,2],[216,2],[45,2],[10,2],[12,2],[11,2],[2,2],[13,2],[14,2],[15,2],[16,2],[17,2],[18,2],[19,2],[20,2],[3,2],[4,2],[24,2],[21,2],[22,2],[23,2],[25,2],[26,2],[27,2],[5,2],[28,2],[29,2],[30,2],[31,2],[6,2],[32,2],[33,2],[34,2],[35,2],[7,2],[40,2],[36,2],[37,2],[38,2],[39,2],[8,2],[41,2],[42,2],[43,2],[1,2],[9,2],[44,2],[48,111],[47,2],[46,112],[51,113],[52,114],[53,115],[50,112],[55,116],[54,112],[58,117],[59,112],[61,118],[57,114],[56,112],[60,114]],"semanticDiagnosticsPerFile":[64,62,67,63,65,66,120,121,122,123,124,125,126,128,134,127,132,129,130,131,133,135,139,119,141,147,142,146,143,145,138,150,152,153,155,156,157,158,159,160,168,144,169,171,172,170,173,174,175,176,177,178,179,180,181,182,183,189,148,197,151,198,140,199,201,202,68,69,71,72,73,74,75,76,77,78,79,80,81,82,83,84,85,70,117,86,87,88,118,89,90,91,92,93,94,95,96,97,98,99,100,102,101,103,104,105,106,107,108,109,110,111,112,113,114,115,116,203,204,206,205,207,186,208,209,137,136,184,188,210,211,187,212,149,213,214,215,217,154,49,218,231,230,221,222,229,223,224,225,226,227,220,228,219,196,193,192,190,194,195,232,233,191,185,200,161,163,165,164,162,167,166,216,45,10,12,11,2,13,14,15,16,17,18,19,20,3,4,24,21,22,23,25,26,27,5,28,29,30,31,6,32,33,34,35,7,40,36,37,38,39,8,41,42,43,1,9,44,48,47,46,51,52,53,50,55,54,58,59,61,57,56,60]},"version":"4.4.4"}
package/lib/utils.d.ts DELETED
@@ -1,52 +0,0 @@
1
- import { MLASTAttr, MLASTNode, MLToken, Walker } from '@markuplint/ml-ast';
2
- export declare function uuid(): string;
3
- /**
4
- *
5
- * @deprecated
6
- * @param raw
7
- * @param startLine
8
- * @param startCol
9
- * @param startOffset
10
- * @returns
11
- */
12
- export declare function tokenizer(raw: string | null, startLine: number, startCol: number, startOffset: number): MLToken;
13
- export declare function tokenizer_v2(raw: string | null, startOffset: number, rawCode: string): MLToken;
14
- export declare function sliceFragment(rawHtml: string, start: number, end: number): {
15
- startOffset: number;
16
- endOffset: number;
17
- startLine: number;
18
- endLine: number;
19
- startCol: number;
20
- endCol: number;
21
- raw: string;
22
- };
23
- export declare function getLine(html: string, startOffset: number): number;
24
- export declare function getCol(html: string, startOffset: number): number;
25
- export declare function getEndLine(html: string, line: number): number;
26
- export declare function getEndCol(html: string, col: number): number;
27
- export declare function walk(nodeList: MLASTNode[], walker: Walker, depth?: number): void;
28
- export declare function nodeListToDebugMaps(nodeList: MLASTNode[], withAttr?: boolean): string[];
29
- export declare function attributesToDebugMaps(attributes: MLASTAttr[]): string[][];
30
- export declare function siblingsCorrection(nodeList: MLASTNode[]): void;
31
- /**
32
- * valid name of custom element
33
- *
34
- * @see https://html.spec.whatwg.org/multipage/custom-elements.html#valid-custom-element-name
35
- *
36
- * > - name must match the [PotentialCustomElementName](https://html.spec.whatwg.org/multipage/custom-elements.html#prod-potentialcustomelementname) production
37
- * > - name must not be any of the following:
38
- * > - annotation-xml
39
- * > - color-profile
40
- * > - font-face
41
- * > - font-face-src
42
- * > - font-face-uri
43
- * > - font-face-format
44
- * > - font-face-name
45
- * > - missing-glyph
46
- *
47
- * ASCII-case-insensitively.
48
- * Originally, it is not possible to define a name including ASCII upper alphas in the custom element, but it is not treated as illegal by the HTML parser.
49
- *
50
- * @param tagName
51
- */
52
- export declare function isPotentialCustomElementName(tagName: string): boolean;
package/lib/utils.js DELETED
@@ -1,191 +0,0 @@
1
- "use strict";
2
- Object.defineProperty(exports, "__esModule", { value: true });
3
- exports.isPotentialCustomElementName = exports.siblingsCorrection = exports.attributesToDebugMaps = exports.nodeListToDebugMaps = exports.walk = exports.getEndCol = exports.getEndLine = exports.getCol = exports.getLine = exports.sliceFragment = exports.tokenizer_v2 = exports.tokenizer = exports.uuid = void 0;
4
- const ml_ast_1 = require("@markuplint/ml-ast");
5
- const const_1 = require("./const");
6
- const uuid_1 = require("uuid");
7
- function uuid() {
8
- return uuid_1.v4();
9
- }
10
- exports.uuid = uuid;
11
- /**
12
- *
13
- * @deprecated
14
- * @param raw
15
- * @param startLine
16
- * @param startCol
17
- * @param startOffset
18
- * @returns
19
- */
20
- function tokenizer(raw, startLine, startCol, startOffset) {
21
- raw = raw || '';
22
- const endLine = getEndLine(raw, startLine);
23
- const endCol = getEndCol(raw, startCol);
24
- const endOffset = startOffset + raw.length;
25
- return {
26
- uuid: uuid(),
27
- raw,
28
- startOffset,
29
- endOffset,
30
- startLine,
31
- endLine,
32
- startCol,
33
- endCol,
34
- };
35
- }
36
- exports.tokenizer = tokenizer;
37
- function tokenizer_v2(raw, startOffset, rawCode) {
38
- raw = raw || '';
39
- const loc = sliceFragment(rawCode, startOffset, startOffset + raw.length);
40
- return Object.assign({ uuid: uuid() }, loc);
41
- }
42
- exports.tokenizer_v2 = tokenizer_v2;
43
- function sliceFragment(rawHtml, start, end) {
44
- const raw = rawHtml.slice(start, end);
45
- return {
46
- startOffset: start,
47
- endOffset: end,
48
- startLine: getLine(rawHtml, start),
49
- endLine: getLine(rawHtml, end),
50
- startCol: getCol(rawHtml, start),
51
- endCol: getCol(rawHtml, end),
52
- raw,
53
- };
54
- }
55
- exports.sliceFragment = sliceFragment;
56
- function getLine(html, startOffset) {
57
- return html.slice(0, startOffset).split(/\n/g).length;
58
- }
59
- exports.getLine = getLine;
60
- function getCol(html, startOffset) {
61
- const lines = html.slice(0, startOffset).split(/\n/g);
62
- return lines[lines.length - 1].length + 1;
63
- }
64
- exports.getCol = getCol;
65
- function getEndLine(html, line) {
66
- return html.split(/\r?\n/).length - 1 + line;
67
- }
68
- exports.getEndLine = getEndLine;
69
- function getEndCol(html, col) {
70
- const lines = html.split(/\r?\n/);
71
- const lineCount = lines.length;
72
- const lastLine = lines.pop();
73
- return lineCount > 1 ? lastLine.length + 1 : col + html.length;
74
- }
75
- exports.getEndCol = getEndCol;
76
- function walk(nodeList, walker, depth = 0) {
77
- for (const node of nodeList) {
78
- walker(node, depth);
79
- if ('childNodes' in node) {
80
- if (node.type === ml_ast_1.MLASTNodeType.EndTag) {
81
- continue;
82
- }
83
- if (node.childNodes && node.childNodes.length) {
84
- walk(node.childNodes, walker, depth + 1);
85
- }
86
- if ('pearNode' in node && node.pearNode) {
87
- walker(node.pearNode, depth);
88
- }
89
- }
90
- }
91
- }
92
- exports.walk = walk;
93
- function nodeListToDebugMaps(nodeList, withAttr = false) {
94
- return nodeList
95
- .map(n => {
96
- const r = [];
97
- if (!n.isGhost) {
98
- r.push(tokenDebug(n));
99
- if (withAttr && 'attributes' in n) {
100
- r.push(...attributesToDebugMaps(n.attributes).flat());
101
- }
102
- }
103
- else {
104
- r.push(`[N/A]>[N/A](N/A)${n.nodeName}: ${visibleWhiteSpace(n.raw)}`);
105
- }
106
- return r;
107
- })
108
- .flat();
109
- }
110
- exports.nodeListToDebugMaps = nodeListToDebugMaps;
111
- function attributesToDebugMaps(attributes) {
112
- return attributes.map(n => {
113
- const r = [
114
- tokenDebug(Object.assign(Object.assign({}, n), { name: n.type === 'html-attr' ? n.name.raw : n.raw })),
115
- ];
116
- if (n.type === 'html-attr') {
117
- r.push(` ${tokenDebug(n.spacesBeforeName, 'bN')}`);
118
- r.push(` ${tokenDebug(n.name, 'name')}`);
119
- r.push(` ${tokenDebug(n.spacesBeforeEqual, 'bE')}`);
120
- r.push(` ${tokenDebug(n.equal, 'equal')}`);
121
- r.push(` ${tokenDebug(n.spacesAfterEqual, 'aE')}`);
122
- r.push(` ${tokenDebug(n.startQuote, 'sQ')}`);
123
- r.push(` ${tokenDebug(n.value, 'value')}`);
124
- r.push(` ${tokenDebug(n.endQuote, 'eQ')}`);
125
- r.push(` isDirective: ${!!n.isDirective}`);
126
- r.push(` isDynamicValue: ${!!n.isDynamicValue}`);
127
- r.push(` isInvalid: ${!!n.isInvalid}`);
128
- }
129
- if (n.potentialName != null) {
130
- r.push(` potentialName: ${visibleWhiteSpace(n.potentialName)}`);
131
- }
132
- if (n.type === 'html-attr' && n.candidate) {
133
- r.push(` candidate: ${visibleWhiteSpace(n.candidate)}`);
134
- }
135
- return r;
136
- });
137
- }
138
- exports.attributesToDebugMaps = attributesToDebugMaps;
139
- function siblingsCorrection(nodeList) {
140
- for (let i = 0; i < nodeList.length; i++) {
141
- const prevNode = nodeList[i - 1] || null;
142
- const node = nodeList[i];
143
- const nextNode = nodeList[i + 1] || null;
144
- node.prevNode = prevNode;
145
- node.nextNode = nextNode;
146
- }
147
- }
148
- exports.siblingsCorrection = siblingsCorrection;
149
- /**
150
- * valid name of custom element
151
- *
152
- * @see https://html.spec.whatwg.org/multipage/custom-elements.html#valid-custom-element-name
153
- *
154
- * > - name must match the [PotentialCustomElementName](https://html.spec.whatwg.org/multipage/custom-elements.html#prod-potentialcustomelementname) production
155
- * > - name must not be any of the following:
156
- * > - annotation-xml
157
- * > - color-profile
158
- * > - font-face
159
- * > - font-face-src
160
- * > - font-face-uri
161
- * > - font-face-format
162
- * > - font-face-name
163
- * > - missing-glyph
164
- *
165
- * ASCII-case-insensitively.
166
- * Originally, it is not possible to define a name including ASCII upper alphas in the custom element, but it is not treated as illegal by the HTML parser.
167
- *
168
- * @param tagName
169
- */
170
- function isPotentialCustomElementName(tagName) {
171
- switch (tagName) {
172
- case 'annotation-xml':
173
- case 'color-profile':
174
- case 'font-face':
175
- case 'font-face-src':
176
- case 'font-face-uri':
177
- case 'font-face-format':
178
- case 'font-face-name':
179
- case 'missing-glyph': {
180
- return false;
181
- }
182
- }
183
- return const_1.rePCEN.test(tagName);
184
- }
185
- exports.isPotentialCustomElementName = isPotentialCustomElementName;
186
- function tokenDebug(n, type = '') {
187
- return `[${n.startLine}:${n.startCol}]>[${n.endLine}:${n.endCol}](${n.startOffset},${n.endOffset})${n.nodeName || n.potentialName || n.name || n.type || type}: ${visibleWhiteSpace(n.raw)}`;
188
- }
189
- function visibleWhiteSpace(chars) {
190
- return chars.replace(/\n/g, '⏎').replace(/\t/g, '→').replace(/\s/g, '␣');
191
- }