@markuplint/rules 2.0.0-dev.2021117.3 → 2.0.0-dev.20211213.2
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/attr-check.d.ts +8 -1
- package/lib/attr-check.js +51 -455
- package/lib/case-sensitive-attr-name/index.js +2 -3
- package/lib/create-message.d.ts +5 -0
- package/lib/create-message.js +270 -0
- package/lib/debug.d.ts +3 -0
- package/lib/debug.js +6 -0
- package/lib/deprecated-attr/index.js +1 -2
- package/lib/helpers.d.ts +8 -3
- package/lib/helpers.js +8 -41
- package/lib/index.d.ts +9 -2
- package/lib/index.js +4 -0
- package/lib/ineffective-attr/index.d.ts +2 -0
- package/lib/ineffective-attr/index.js +42 -0
- package/lib/invalid-attr/index.d.ts +3 -1
- package/lib/invalid-attr/index.js +16 -6
- package/lib/no-boolean-attr-value/index.d.ts +2 -0
- package/lib/no-boolean-attr-value/index.js +49 -0
- package/lib/required-attr/index.d.ts +5 -1
- package/lib/required-attr/index.js +60 -18
- package/lib/wai-aria/index.js +2 -2
- package/package.json +10 -5
- package/tsconfig.tsbuildinfo +1 -1
- package/lib/primitive-check.d.ts +0 -48
- package/lib/primitive-check.js +0 -109
|
@@ -7,29 +7,45 @@ exports.default = (0, ml_core_1.createRule)({
|
|
|
7
7
|
defaultOptions: null,
|
|
8
8
|
async verify({ document, report, t }) {
|
|
9
9
|
await document.walkOn('Element', async (node) => {
|
|
10
|
+
var _a;
|
|
10
11
|
if (node.hasSpreadAttr) {
|
|
11
12
|
return;
|
|
12
13
|
}
|
|
13
14
|
const customRequiredAttrs = typeof node.rule.value === 'string' ? [node.rule.value] : node.rule.value;
|
|
14
|
-
const attrSpec = (0,
|
|
15
|
-
const attributeSpecs =
|
|
16
|
-
|
|
17
|
-
|
|
18
|
-
if (required) {
|
|
19
|
-
|
|
20
|
-
...
|
|
21
|
-
|
|
15
|
+
const attrSpec = (0, ml_core_1.getAttrSpecs)(node.nameWithNS, document.specs);
|
|
16
|
+
const attributeSpecs = {};
|
|
17
|
+
if (attrSpec) {
|
|
18
|
+
for (const spec of attrSpec) {
|
|
19
|
+
if (spec.required || spec.requiredEither || spec.condition) {
|
|
20
|
+
attributeSpecs[spec.name] = {
|
|
21
|
+
...spec,
|
|
22
|
+
values: [],
|
|
22
23
|
};
|
|
23
24
|
}
|
|
24
|
-
|
|
25
|
-
|
|
26
|
-
|
|
27
|
-
|
|
25
|
+
}
|
|
26
|
+
}
|
|
27
|
+
for (const req of customRequiredAttrs) {
|
|
28
|
+
let name;
|
|
29
|
+
const values = [];
|
|
30
|
+
if (typeof req === 'string') {
|
|
31
|
+
name = req;
|
|
32
|
+
}
|
|
33
|
+
else {
|
|
34
|
+
name = req.name;
|
|
35
|
+
if (Array.isArray(req.value)) {
|
|
36
|
+
values.push(...req.value);
|
|
37
|
+
}
|
|
38
|
+
else {
|
|
39
|
+
values.push(req.value);
|
|
40
|
+
}
|
|
41
|
+
}
|
|
42
|
+
attributeSpecs[name] = {
|
|
43
|
+
name,
|
|
44
|
+
values,
|
|
28
45
|
required: true,
|
|
29
|
-
|
|
30
|
-
|
|
31
|
-
|
|
32
|
-
for (const spec of attributeSpecs) {
|
|
46
|
+
};
|
|
47
|
+
}
|
|
48
|
+
for (const spec of Object.values(attributeSpecs)) {
|
|
33
49
|
const didntHave = !node.hasAttribute(spec.name);
|
|
34
50
|
let invalid = false;
|
|
35
51
|
if (spec.requiredEither) {
|
|
@@ -41,17 +57,43 @@ exports.default = (0, ml_core_1.createRule)({
|
|
|
41
57
|
}
|
|
42
58
|
else if (spec.required) {
|
|
43
59
|
if ('ancestor' in spec.required && spec.required.ancestor) {
|
|
44
|
-
const
|
|
60
|
+
const ancestorList = Array.isArray(spec.required.ancestor)
|
|
61
|
+
? spec.required.ancestor
|
|
62
|
+
: [spec.required.ancestor];
|
|
63
|
+
const ancestors = ancestorList
|
|
64
|
+
.join(',')
|
|
65
|
+
.split(',')
|
|
66
|
+
.map(a => a.trim());
|
|
45
67
|
invalid = ancestors.some(a => node.closest(a)) && didntHave;
|
|
46
68
|
}
|
|
47
69
|
}
|
|
48
70
|
if (invalid) {
|
|
49
|
-
const message = t('{0} expects {1}', t('the "{0}" {1}',
|
|
71
|
+
const message = t('{0} expects {1}', t('the "{0}" {1}', node.nodeName, 'element'), t('the "{0}" {1}', spec.name, 'attribute'));
|
|
50
72
|
report({
|
|
51
73
|
scope: node,
|
|
52
74
|
message,
|
|
53
75
|
});
|
|
54
76
|
}
|
|
77
|
+
const value = node.getAttribute(spec.name);
|
|
78
|
+
if (spec.values.length && value) {
|
|
79
|
+
const matched = spec.values.some(pattern => (0, helpers_1.match)(value, pattern));
|
|
80
|
+
if (!matched) {
|
|
81
|
+
const expects = spec.values.length === 1 ? t(spec.values) : t('either {0}', t(spec.values));
|
|
82
|
+
const message = t('{0} expects {1}', t('the "{0}" {1}', spec.name, 'attribute'), expects);
|
|
83
|
+
const attrToken = node.getAttributeToken(spec.name);
|
|
84
|
+
const valueToken = ((_a = attrToken[0]) === null || _a === void 0 ? void 0 : _a.attrType) === 'html-attr' ? attrToken[0].value : null;
|
|
85
|
+
const token = valueToken || attrToken[0];
|
|
86
|
+
report({
|
|
87
|
+
scope: {
|
|
88
|
+
rule: node.rule,
|
|
89
|
+
raw: token.raw,
|
|
90
|
+
startCol: token.startCol,
|
|
91
|
+
startLine: token.startLine,
|
|
92
|
+
},
|
|
93
|
+
message,
|
|
94
|
+
});
|
|
95
|
+
}
|
|
96
|
+
}
|
|
55
97
|
}
|
|
56
98
|
});
|
|
57
99
|
},
|
package/lib/wai-aria/index.js
CHANGED
|
@@ -14,7 +14,7 @@ exports.default = (0, ml_core_1.createRule)({
|
|
|
14
14
|
},
|
|
15
15
|
async verify({ document, report, t }) {
|
|
16
16
|
await document.walkOn('Element', async (node) => {
|
|
17
|
-
const attrSpecs = (0,
|
|
17
|
+
const attrSpecs = (0, ml_core_1.getAttrSpecs)(node.nameWithNS, document.specs);
|
|
18
18
|
const html = (0, helpers_1.htmlSpec)(node.nodeName);
|
|
19
19
|
const { roles, ariaAttrs } = (0, helpers_1.ariaSpec)();
|
|
20
20
|
if (!html || !attrSpecs) {
|
|
@@ -167,7 +167,7 @@ exports.default = (0, ml_core_1.createRule)({
|
|
|
167
167
|
scope: node,
|
|
168
168
|
message: t('{0:c} on {1}', t('{0} is {1:c}', t('the "{0}"', value), 'disallowed'), t('the "{0}" {1}', attrName, 'ARIA state/property')) +
|
|
169
169
|
('enum' in result && result.enum.length
|
|
170
|
-
? t('. ') + t('
|
|
170
|
+
? t('. ') + t('Allowed values are: {0}', t(result.enum))
|
|
171
171
|
: ''),
|
|
172
172
|
line: attr.startLine,
|
|
173
173
|
col: attr.startCol,
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@markuplint/rules",
|
|
3
|
-
"version": "2.0.0-dev.
|
|
3
|
+
"version": "2.0.0-dev.20211213.2",
|
|
4
4
|
"description": "Rules for markuplint",
|
|
5
5
|
"repository": "git@github.com:markuplint/markuplint.git",
|
|
6
6
|
"author": "Yusuke Hirao <yusukehirao@me.com>",
|
|
@@ -17,10 +17,15 @@
|
|
|
17
17
|
"clean": "tsc --build --clean"
|
|
18
18
|
},
|
|
19
19
|
"dependencies": {
|
|
20
|
-
"@markuplint/html-spec": "2.0.0-dev.
|
|
21
|
-
"@markuplint/ml-core": "2.0.0-dev.
|
|
22
|
-
"@markuplint/ml-spec": "2.0.0-dev.
|
|
20
|
+
"@markuplint/html-spec": "2.0.0-dev.20211213.2",
|
|
21
|
+
"@markuplint/ml-core": "2.0.0-dev.20211213.2",
|
|
22
|
+
"@markuplint/ml-spec": "2.0.0-dev.20211213.2",
|
|
23
|
+
"@markuplint/types": "1.0.0-dev.20211213.2",
|
|
24
|
+
"debug": "^4.3.2",
|
|
23
25
|
"tslib": "^2.3.1"
|
|
24
26
|
},
|
|
25
|
-
"
|
|
27
|
+
"devDependencies": {
|
|
28
|
+
"@types/debug": "^4.1.7"
|
|
29
|
+
},
|
|
30
|
+
"gitHead": "f94cbc11593ae7b65fab01272f91df9defc4413b"
|
|
26
31
|
}
|
package/tsconfig.tsbuildinfo
CHANGED
|
@@ -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","../i18n/lib/types.d.ts","../i18n/lib/translator.d.ts","../i18n/lib/index.d.ts","../ml-spec/lib/permitted-structres.d.ts","../ml-spec/lib/attributes.d.ts","../ml-spec/lib/types.d.ts","../ml-spec/lib/get-spec-by-tag-name.d.ts","../ml-spec/lib/get-spec.d.ts","../ml-spec/lib/get-ns.d.ts","../ml-spec/lib/index.d.ts","./src/primitive-check.ts","./src/attr-check.ts","../ml-config/lib/types.d.ts","../ml-config/lib/merge-config.d.ts","../ml-config/lib/utils.d.ts","../ml-config/lib/index.d.ts","../ml-core/lib/ruleset/index.d.ts","../ml-core/lib/convert-ruleset.d.ts","../ml-ast/lib/types.d.ts","../ml-ast/lib/index.d.ts","../ml-core/lib/ml-dom/tokens/token.d.ts","../ml-core/lib/ml-dom/tokens/attribute.d.ts","../ml-core/lib/ml-dom/index.d.ts","../ml-core/lib/ml-dom/helper/mapped-nodes.d.ts","../ml-core/lib/ml-dom/helper/create-node.d.ts","../ml-core/lib/ml-dom/helper/node-store.d.ts","../ml-core/lib/ml-dom/tokens/preprocessor-specific-attribute.d.ts","../ml-core/lib/ml-dom/tokens/abstract-element.d.ts","../ml-core/lib/ml-dom/helper/selector.d.ts","../ml-core/lib/ml-dom/helper/index.d.ts","../ml-core/lib/ml-dom/tokens/node.d.ts","../ml-core/lib/ml-dom/tokens/comment.d.ts","../ml-core/lib/ml-dom/tokens/doctype.d.ts","../ml-core/lib/ml-dom/tokens/text.d.ts","../ml-core/lib/ml-dom/tokens/omitted-element.d.ts","../ml-core/lib/ml-dom/tokens/element.d.ts","../ml-core/lib/ml-dom/tokens/element-close-tag.d.ts","../ml-core/lib/ml-dom/tokens/preprocessor-specific-block.d.ts","../ml-core/lib/ml-dom/tokens/index.d.ts","../ml-core/lib/ml-dom/types.d.ts","../ml-core/lib/ml-dom/helper/walkers.d.ts","../ml-core/lib/ml-dom/document.d.ts","../ml-core/lib/ml-rule/ml-rule-context.d.ts","../ml-core/lib/ml-rule/types.d.ts","../ml-core/lib/ml-rule/create-rule.d.ts","../ml-core/lib/ml-rule/ml-rule.d.ts","../ml-core/lib/ml-rule/index.d.ts","../ml-core/lib/types.d.ts","../ml-core/lib/ml-error/ml-parse-error.d.ts","../ml-core/lib/ml-core.d.ts","../ml-core/lib/plugin/types.d.ts","../ml-core/lib/plugin/plugin.d.ts","../ml-core/lib/plugin/index.d.ts","../ml-core/lib/ml-dom/helper/getindent.d.ts","../ml-core/lib/utils/get-location-from-chars.d.ts","../ml-core/lib/utils/index.d.ts","../ml-core/lib/configs.d.ts","../ml-core/lib/test/index.d.ts","../../../node_modules/@types/ms/index.d.ts","../../../node_modules/@types/debug/index.d.ts","../ml-core/lib/debug.d.ts","../ml-core/lib/index.d.ts","../html-spec/index.d.ts","./src/helpers.ts","./src/attr-duplication/index.ts","./src/attr-equal-space-after/index.ts","./src/attr-equal-space-before/index.ts","./src/attr-spacing/index.ts","./src/attr-value-quotes/index.ts","./src/case-sensitive-attr-name/index.ts","./src/case-sensitive-tag-name/index.ts","./src/character-reference/index.ts","./src/class-naming/index.ts","./src/deprecated-attr/index.ts","./src/deprecated-element/index.ts","./src/doctype/index.ts","./src/id-duplication/index.ts","./src/indentation/index.ts","./src/invalid-attr/index.ts","./src/landmark-roles/index.ts","./src/permitted-contents/array.combination.ts","./src/permitted-contents/unfold-content-models-to-tags.ts","./src/permitted-contents/permitted-content.spec-to-regexp.ts","./src/permitted-contents/index.ts","./src/required-attr/index.ts","./src/required-h1/index.ts","./src/wai-aria/index.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/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/fs-extra/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/uuid/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","56d0eb242037dacc548873cca58b20691f86a56d5039cd606e0f4c45d57a38d8","242bed4f80070663ce54ec5760d5f792e6fe8c352a302164780bf20f2e4a08c1","86ae37fbd9fce5f0f7a4ec0c2aee97f504d99624c913463586abc5e642818216","69c244969d015398aa12e7510b62fc6151a5bfd5eb9cee64dea80f2c957398fd","819641407f59b257b829eac5f24ff74c18695cee4076fba60f7f209fc50b3afe","24a3e3702274e0255803ac4148303f963e293f55dc68cb64ef5949494eb4da30","5c56c35a916b5199891eecb6295ae91dfacb92cbbca68de4128474ec8bb7acfd","6204b45bbc0cfc06c6781cba9ecf9c8134151e6384f86694491efd4cafbdd416","0f6e1366207419917adb76cb114757b0d027c11aa0bcf9af6652154ac0f4f37a","afc4e3a21776ee2842568ca4a5d41351631f81c26b4f1e86b8b8e8f37662d1bc","f1a24b9e4cba2b24b9653ffaf0e40ddc1d3c2940ecdb9ffbf9e10ed9fd5fd4e6","35840a92b29aeec12de78d0fcc963a503d73ce28f3ce45c1f3027b07ed7beb54","acc12635c75f0b57bcd9bf6af5624c27ffbb9a830fdab4e4dcba31725f1ea9a1","9cebc879f5f9bb8bb528044ae54e45946514589ee9a9261b5eab2e05111841d4","9b3c07ddff7e4f0c092c351da5782850390298a9050174156b881bc67f97a5dc","3e846bbed6945fa695b2a999410d4096f485c254230e93e355859af8749d33dd","ee6c6adbdbee0ae00dfefb53144f0cc330a4c5a438ba2c7d1a70350818a73146","9b33db8515f42c53ccf8597e4125b1c6f29b4d7bcad011f5a489f787d898507f","7f23bb7aaddd94dd6231bc8fa77d7e3926b8ffd87095c24290f2c67d24b16e58","d5c19655468e29f60c871b21e73af8ebc653f736e7123ade916f22c4a5f80ce5","e3d0465e1f55bba40fa77a57c3e70fb67331c897865f6ea8713fb6c8197747c9","fda5d74bbad4f9a3f9eee55e26abc4c6a5fb03d51978faa64c9e2fd6a36a51c8","2aa5097087ac3bba1312d8688ba7b5e4796588b5b10ad3037a3055bf1b839c13","61e065560757fd39d2eb9ce5407825a285929b0095d14017f6d9019d581ec450","b0670bd95983821cbc9cbbebe39784f0887128496ee337b08dba0feb7501fa25","5bfe85a019ea9280bed1be8b184d11fe252576fc4df33bb3efdf8c95fafeb097","2b3298f5c296eb5249cf10df838c1aa70f35ff1a7e57ea32e15b045ce25b54c6","37a5495f7e805b76ddf6a78b8389eaa79fbfdc308b8a6af5f1c45f0b6952e6ab","b9c53690a134b0b7f792efa8ab16849a07134a36a31a28aec5d91cae1c19fc9f","dd20634d51965217889c41c8e8f7264c244b372d338eb53012917659daff8c3a","9a911e4f95a47b1788ddbf80ce55521bf636544d5c7382987e46bc77d53f097c","f5ad87e89e48568546a6d0bd69965040abf89d02c95d6bccca8d25319514ed76","c9e3fd9d1925492ef6b8b555f07baea3b783d1e787c109c6b8be9bf1060f87a9","9722bb10a935428dccd8d17ef0888b91250db3f1ae46a42e21ff6a2816a314dc","541ce43cbf437b6121ce60195c9a747a030b2c57c53db127cefd0e18a45accd3","ca73f933c4576230805b6bded3c43f78f606ff048b14352ed02311bf02bf5db4","9cb27eb30484f306b68f8e2ad83c97b4740cd96b9b5e007626fe7ba7c22be5be","6bb29e58589d171e83dd3f0fba79984dff01db05f5e4003ab471436287ee9d21","2ed9951145168f1e101366322e2bed6c3aa39d5fdcd9c3dbeba9a5d9568ff595","9bdf67331be727e1589a98adf329fcab8a1e0dd2ef167d32edaa62dc0da8d561","e2914caf6dcf0a9c22a849df279fcf70e025f45a8aae75c42d0c97e591a1b532","9e1d8afbf14fbef9237d31e3dbfadccbd14032a5988ed384c1edfb9cd5d7c8fb","ad5b8145dce3ed9d856baa6d0a833d7347da5596a484e67f7089f36b835414fd","8e96bdb39c2cfe7e059877ab95bcfd226bc70b2708ac3fe18a602f1746c59deb","fb4742d55b29c065fea41c1a9f0f9a4d2eff3c7cd3737be6d8a2605477f88b23","f5a6c1f39b695abf4c4b9be1df4e27895c4743102cdeb63e1f5a41fbf48b1169","2520d7ae590b2ccdda4b3647cc0cc17363c4fc44411d6e1e13c4bf766c2a83c8","5c801e438c7c9f3c2c8f739edcedc8870c3355e9c5a5f57f48a80b0cc89f8c77","f29e5c795942cb39b4ae749cbbe63c16b835fc72b53a951a8a39a88997469903","c96bf348fc0d9d42565dc423b69cc76bd3e1b7b83e17c382deef170d2065cfb2","7383e41983fd3e4cdbea4a82f255b4facd404cad648ef1f87a2a99e8e5849276","4bb30deeba1445b8cee229d90cb52ec3ae4ae0552c9a457102373f9aa795c4b0","4edba813e2167ea3232803eefd0a4a582623b1ce18877b37be870e44a5e05b05","c0361b15220d7423fa2d45c856e3869085a5545d58ce3d42f5970b449b83cf3f","b75fa94ba821ec5471ea98431612815152b1f4687d7100eaaa4b172fab9f24f8","9d05a5c14da47f875fce5e7b911a6e0f79038df59ee3c61d5448746fbe6b1120","e58bf85a801daba2927f22010cb42030a43310c0af4ba86a1be12ed9021cbd3c","1f3979af250f115aa5f4229cefa2241cab33831ed7a351e9d10c416b8bc1be39","6a9c5127096b35264eb7cd21b2417bfc1d42cceca9ba4ce2bb0c3410b7816042","78828b06c0d3b586954015e9ebde5480b009e166c71244763bda328ec0920f41","3ffa52413f929d194a1eab5ec4b4bf5faf57ffd0b5f62d9ddfbab97c50240179","b303f66ef8cb62f474bb0d23f7e0d634d115f1a03d1dc46b6fd3c7c812ecc432","5983be11dccf50796dd69cbe422f9d9c8966090c276ec01c558db4741d394165","78e2a5f2059a1c7cda642632f02e0dd4f52bf065e90d9d3b9c679db1807b9f87","45a58b5c8fedeb2a70ceac5dab802aa528bbddb6a3fe65707b1994e5369dd484","3d735db9811d45901df2a6e59a5da4dd86b0dcd6255979e663ac24cac48da9aa","9acef05f82ddb45d74036bbb1a6cdf473c0109a1ded6642392845026e0e39be8","f04fb1e29dca4a28fd6441ff8cf9fec7e67bf816291645a8bdbdde861950db01","9bf242a5ac8329d2cbc4fca771d3e791e82d6741b619ff16834b25da847d88f2","a873d4f313cac9ebd731809b1112e349ba3f9bb9ae8611fa6463a702d1a1e323","2cdc34993c58709219e8bda31faa5881697f872e72f17ce8a4a3bdb1a5ca4360","948b0041519ea23feb861e19135a9a2c427039d515781dc4418abca9fc2aab74","40504dcd457d35253eb87e74ac55d1ce1cb6ef0370da18e75b2603feb6eb7653","cdbfd230af119c9563de004cf7c3b08ce56288eb1d1e389a77d517c37a0cdee4","22a6691194d85eb69b0b9d569969c1f4afe5ae7ecd5a34494ce9ebc1fa68c45b","a9d2619408faac61fe93f9def534fc6fed2935cbd8b7bcca76045ef93d896a97","f3c4332b6a76b908e6f88d576119565d60bfc7fc5d6db638e31a2a71acf63702","ead6d2c5a4cdb642cfca32449db0276c6bb4137780ac662dbcea4098c9510995","9ade1c5402b1eaba09c54c618e9c616faa605bcf0a19356e892a2a0d0af4f71c","c0ba8c21e26899a64c7ad77f00c6a280c57cca8e3afa0b3de85b27e63c3c82c7","75ed125570eff8d305119bcf1d5adc0035fe4465e3809d532f6d73c294b35acf","ff3894d50d686cc1f961cfecabd3d84c313520f4020b38e6bc1161e186a6e433","7e429b09200b85eb80003739018ec291930775b4c9934f96f2ee0f21b3f05555","885826de526e46ee593d0b931988deffc0be261c1b0ed5defba5382addd39631","2f29b847cf1902ff6a9218bcef834ae2138d4d7810934fda4340563459708b33","22c486145cf5eeee95894086d3700c8727a0f3d4b2fd434d6bfc310999a0d918","c7f39ac43b7b34b058e42f0d36bb3cdd0c6cc8a18021d752b7713451dd16157e","31244260901e0cfef2db4608aa82bdda405e4976877ac8dc46c867e250f62873","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",{"version":"64d4b35c5456adf258d2cf56c341e203a073253f229ef3208fc0d5020253b241","affectsGlobalScope":true},"0133ebdd17a823ae56861948870cde4dac18dd8818ab641039c85bbb720429e0","0359682c54e487c4cab2b53b2b4d35cc8dea4d9914bc6abcdb5701f8b8e745a4","7d7c8ef7d48a035142c07dae60545ecc0e4af4c337742760cb09726f2f8e31db","ab9cce8526b1878586804696261de5505885a9b9bbe8af15e99b7387c81f2b6d","82772e5d55062a042a2715a555d347275a663940926fc785705eb082010cb9f6","84e3bbd6f80983d468260fdbfeeb431cc81f7ea98d284d836e4d168e36875e86","0b85cb069d0e427ba946e5eb2d86ef65ffd19867042810516d16919f6c1a5aec","15c88bfd1b8dc7231ff828ae8df5d955bae5ebca4cf2bcb417af5821e52299ae","ed19da84b7dbf00952ad0b98ce5c194f1903bcf7c94d8103e8e0d63b271543ae","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","fab58e600970e66547644a44bc9918e3223aa2cbd9e8763cec004b2cfb48827e","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":[[134,183],[183],[134,135,136,137,138,183],[134,136,183],[158,183,190,191],[183,190],[183,194,195,196,197,198,199,200,201,202,203,204,205],[155,183,190],[182,183,190,210],[158,183,190],[104,183],[183,215,216],[183,212,213,214,215],[183,216],[155,158,183,190,208,209],[183,192,209,210,219],[156,183,190],[155,156,183,190,222],[183,225],[155,158,160,163,172,182,183,190],[183,229],[183,230],[183,236,238],[183,241,243,244,245,246,247,248,249,250,251,252,253],[183,241,242,244,245,246,247,248,249,250,251,252,253],[183,242,243,244,245,246,247,248,249,250,251,252,253],[183,241,242,243,245,246,247,248,249,250,251,252,253],[183,241,242,243,244,246,247,248,249,250,251,252,253],[183,241,242,243,244,245,247,248,249,250,251,252,253],[183,241,242,243,244,245,246,248,249,250,251,252,253],[183,241,242,243,244,245,246,247,249,250,251,252,253],[183,241,242,243,244,245,246,247,248,250,251,252,253],[183,241,242,243,244,245,246,247,248,249,251,252,253],[183,241,242,243,244,245,246,247,248,249,250,252,253],[183,241,242,243,244,245,246,247,248,249,250,251,253],[183,241,242,243,244,245,246,247,248,249,250,251,252],[183,259],[183,267],[158,182,183,190,271,272],[140,183],[143,183],[144,149,183],[145,155,156,163,172,182,183],[145,146,155,163,183],[147,183],[148,149,156,164,183],[149,172,179,183],[150,152,155,163,183],[151,183],[152,153,183],[154,155,183],[155,183],[155,156,157,172,182,183],[155,156,157,172,183],[158,163,172,182,183],[155,156,158,159,163,172,179,182,183],[158,160,172,179,182,183],[140,141,142,143,144,145,146,147,148,149,150,151,152,153,154,155,156,157,158,159,160,161,162,163,164,165,166,167,168,169,170,171,172,173,174,175,176,177,178,179,180,181,182,183,184,185,186,187,188,189],[155,161,183],[162,182,183],[152,155,163,172,183],[164,183],[165,183],[143,166,183],[167,181,183,187],[168,183],[169,183],[155,170,183],[170,171,183,185],[155,172,173,174,183],[172,174,183],[172,173,183],[175,183],[176,183],[155,177,178,183],[177,178,183],[149,163,179,183],[180,183],[163,181,183],[144,158,169,182,183],[149,183],[172,183,184],[183,185],[183,186],[144,149,155,157,166,172,182,183,185,187],[172,183,188],[183,276],[183,277],[183,255,256,257,258],[182,183,190],[158,183,190,218],[183,287],[158,160,183,211,219,220,266,267],[183,190,292,293,294,295,296,297,298,299,300,301,302],[183,291,292,301],[183,292,301],[183,284,291,292,301],[183,291,292,293,294,295,296,297,298,299,300,302],[183,292],[149,183,291,301],[183,190,266],[183,263],[183,214,261,262],[183,214,263],[158,163,179,183,215,261,263,264,265],[183,304],[158,172,183,190],[183,232,233],[183,232,233,234,235],[183,237],[55,183],[46,47,183],[46,183],[64,183],[58,59,60,183],[58,183],[61,183],[61,62,183],[105,183],[61,62,63,68,92,93,94,95,98,99,101,102,103,106,183],[61,68,93,94,183],[55,61,62,65,75,84,85,86,107,183],[61,65,68,69,84,183],[84,85,183],[69,70,71,74,183],[61,65,84,183],[61,65,69,76,183],[73,183],[61,85,183],[84,85,87,183],[55,61,65,68,72,76,84,183],[65,66,183],[61,65,76,85,183],[61,65,68,76,85,183],[61,65,68,76,84,85,183],[61,65,66,68,73,84,85,183],[66,67,76,77,78,79,80,81,82,83,183],[61,65,66,68,75,84,85,107,183],[61,65,68,73,85,183],[55,61,65,68,76,85,183],[65,183],[61,84,183],[61,89,183],[89,90,91,183],[48,61,87,183],[48,61,87,89,183],[61,88,183],[96,97,183],[96,183],[61,92,183],[55,61,65,68,183],[48,55,61,62,65,92,183],[100,183],[51,183],[49,50,51,52,53,54,183],[49,50,183],[45,48,55,56,183],[45,107,183],[45,107,109,183],[45,55,107,108,183],[45,48,55,57,107,108,183],[45,110,111,112,113,114,115,116,117,118,119,120,121,122,123,124,125,129,130,131,132,183],[45,55,57,107,109,183],[45,183],[45,55,107,109,127,128,183],[45,55,109,126,127,183],[45,55,108,183]],"referencedMap":[[136,1],[134,2],[139,3],[135,1],[137,4],[138,1],[192,5],[193,6],[194,2],[195,2],[196,2],[197,2],[198,2],[200,2],[206,7],[199,2],[204,2],[201,2],[202,2],[203,2],[205,2],[207,8],[211,9],[191,10],[105,11],[217,12],[212,2],[216,13],[213,14],[215,2],[210,15],[220,16],[221,17],[223,18],[224,17],[226,19],[227,2],[228,20],[229,2],[230,21],[231,22],[239,23],[214,2],[240,2],[242,24],[243,25],[241,26],[244,27],[245,28],[246,29],[247,30],[248,31],[249,32],[250,33],[251,34],[252,35],[253,36],[254,19],[260,37],[218,2],[268,38],[222,2],[269,2],[104,2],[270,2],[272,2],[273,39],[140,40],[141,40],[143,41],[144,42],[145,43],[146,44],[147,45],[148,46],[149,47],[150,48],[151,49],[152,50],[153,50],[154,51],[155,52],[156,53],[157,54],[142,2],[189,2],[158,55],[159,56],[160,57],[190,58],[161,59],[162,60],[163,61],[164,62],[165,63],[166,64],[167,65],[168,66],[169,67],[170,68],[171,69],[172,70],[174,71],[173,72],[175,73],[176,74],[177,75],[178,76],[179,77],[180,78],[181,79],[182,80],[183,81],[184,82],[185,83],[186,84],[187,85],[188,86],[274,2],[275,2],[277,87],[276,88],[278,2],[257,2],[279,2],[280,2],[209,2],[208,2],[255,2],[259,89],[281,90],[282,2],[258,2],[283,38],[219,91],[284,2],[285,2],[286,2],[288,92],[225,2],[289,2],[290,93],[303,94],[302,95],[293,96],[294,97],[301,98],[295,97],[296,96],[297,96],[298,96],[299,99],[292,100],[300,95],[291,2],[267,101],[264,102],[263,103],[261,104],[265,2],[266,105],[304,2],[305,106],[262,2],[256,2],[271,107],[232,2],[234,108],[236,109],[235,108],[233,2],[238,110],[237,2],[287,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],[108,111],[48,112],[47,113],[46,2],[65,114],[64,2],[61,115],[59,116],[58,2],[60,116],[102,117],[63,118],[106,119],[107,120],[95,121],[87,122],[70,123],[99,124],[75,125],[69,126],[71,127],[74,128],[86,129],[68,130],[73,131],[67,132],[77,133],[78,134],[82,135],[81,136],[84,137],[76,138],[80,139],[72,132],[83,134],[79,140],[66,141],[85,142],[94,2],[90,143],[92,144],[88,145],[91,146],[89,147],[98,148],[97,149],[96,150],[62,117],[103,151],[93,152],[100,2],[101,153],[50,2],[54,2],[52,154],[53,154],[55,155],[49,2],[51,156],[57,157],[110,158],[111,158],[112,158],[113,158],[114,158],[115,159],[116,158],[117,158],[118,159],[119,159],[120,160],[121,158],[109,161],[122,158],[123,158],[133,162],[124,163],[125,158],[126,164],[129,165],[128,166],[127,167],[56,164],[130,159],[131,158],[132,159]],"exportedModulesMap":[[136,1],[134,2],[139,3],[135,1],[137,4],[138,1],[192,5],[193,6],[194,2],[195,2],[196,2],[197,2],[198,2],[200,2],[206,7],[199,2],[204,2],[201,2],[202,2],[203,2],[205,2],[207,8],[211,9],[191,10],[105,11],[217,12],[212,2],[216,13],[213,14],[215,2],[210,15],[220,16],[221,17],[223,18],[224,17],[226,19],[227,2],[228,20],[229,2],[230,21],[231,22],[239,23],[214,2],[240,2],[242,24],[243,25],[241,26],[244,27],[245,28],[246,29],[247,30],[248,31],[249,32],[250,33],[251,34],[252,35],[253,36],[254,19],[260,37],[218,2],[268,38],[222,2],[269,2],[104,2],[270,2],[272,2],[273,39],[140,40],[141,40],[143,41],[144,42],[145,43],[146,44],[147,45],[148,46],[149,47],[150,48],[151,49],[152,50],[153,50],[154,51],[155,52],[156,53],[157,54],[142,2],[189,2],[158,55],[159,56],[160,57],[190,58],[161,59],[162,60],[163,61],[164,62],[165,63],[166,64],[167,65],[168,66],[169,67],[170,68],[171,69],[172,70],[174,71],[173,72],[175,73],[176,74],[177,75],[178,76],[179,77],[180,78],[181,79],[182,80],[183,81],[184,82],[185,83],[186,84],[187,85],[188,86],[274,2],[275,2],[277,87],[276,88],[278,2],[257,2],[279,2],[280,2],[209,2],[208,2],[255,2],[259,89],[281,90],[282,2],[258,2],[283,38],[219,91],[284,2],[285,2],[286,2],[288,92],[225,2],[289,2],[290,93],[303,94],[302,95],[293,96],[294,97],[301,98],[295,97],[296,96],[297,96],[298,96],[299,99],[292,100],[300,95],[291,2],[267,101],[264,102],[263,103],[261,104],[265,2],[266,105],[304,2],[305,106],[262,2],[256,2],[271,107],[232,2],[234,108],[236,109],[235,108],[233,2],[238,110],[237,2],[287,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],[108,111],[48,112],[47,113],[46,2],[65,114],[64,2],[61,115],[59,116],[58,2],[60,116],[102,117],[63,118],[106,119],[107,120],[95,121],[87,122],[70,123],[99,124],[75,125],[69,126],[71,127],[74,128],[86,129],[68,130],[73,131],[67,132],[77,133],[78,134],[82,135],[81,136],[84,137],[76,138],[80,139],[72,132],[83,134],[79,140],[66,141],[85,142],[94,2],[90,143],[92,144],[88,145],[91,146],[89,147],[98,148],[97,149],[96,150],[62,117],[103,151],[93,152],[100,2],[101,153],[50,2],[54,2],[52,154],[53,154],[55,155],[49,2],[51,156],[57,157],[110,158],[111,158],[112,158],[113,158],[114,158],[115,159],[116,158],[117,158],[118,159],[119,159],[120,160],[121,158],[109,161],[122,158],[123,158],[133,162],[124,163],[125,158],[126,164],[129,165],[128,166],[127,167],[56,164],[130,159],[131,158],[132,159]],"semanticDiagnosticsPerFile":[136,134,139,135,137,138,192,193,194,195,196,197,198,200,206,199,204,201,202,203,205,207,211,191,105,217,212,216,213,215,210,220,221,223,224,226,227,228,229,230,231,239,214,240,242,243,241,244,245,246,247,248,249,250,251,252,253,254,260,218,268,222,269,104,270,272,273,140,141,143,144,145,146,147,148,149,150,151,152,153,154,155,156,157,142,189,158,159,160,190,161,162,163,164,165,166,167,168,169,170,171,172,174,173,175,176,177,178,179,180,181,182,183,184,185,186,187,188,274,275,277,276,278,257,279,280,209,208,255,259,281,282,258,283,219,284,285,286,288,225,289,290,303,302,293,294,301,295,296,297,298,299,292,300,291,267,264,263,261,265,266,304,305,262,256,271,232,234,236,235,233,238,237,287,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,108,48,47,46,65,64,61,59,58,60,102,63,106,107,95,87,70,99,75,69,71,74,86,68,73,67,77,78,82,81,84,76,80,72,83,79,66,85,94,90,92,88,91,89,98,97,96,62,103,93,100,101,50,54,52,53,55,49,51,57,110,111,112,113,114,115,116,117,118,119,120,121,109,122,123,133,124,125,126,129,128,127,56,130,131,132]},"version":"4.4.4"}
|
|
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","../i18n/lib/types.d.ts","../i18n/lib/translator.d.ts","../i18n/lib/index.d.ts","../ml-spec/lib/permitted-structres.d.ts","../ml-spec/lib/attributes.d.ts","../ml-spec/lib/types.d.ts","../ml-spec/lib/get-attr-specs.d.ts","../ml-spec/lib/get-spec-by-tag-name.d.ts","../ml-spec/lib/get-spec.d.ts","../ml-spec/lib/get-ns.d.ts","../ml-spec/lib/index.d.ts","../types/lib/css-syntax.d.ts","../types/lib/types.schema.d.ts","../types/lib/types.d.ts","../types/lib/whatwg/is-custom-element-name.d.ts","../types/lib/check.d.ts","../types/lib/index.d.ts","./src/create-message.ts","../../../node_modules/@types/ms/index.d.ts","../../../node_modules/@types/debug/index.d.ts","./src/debug.ts","./src/attr-check.ts","../ml-config/lib/types.d.ts","../ml-config/lib/merge-config.d.ts","../ml-config/lib/utils.d.ts","../ml-config/lib/index.d.ts","../ml-core/lib/ruleset/index.d.ts","../ml-core/lib/convert-ruleset.d.ts","../ml-ast/lib/types.d.ts","../ml-ast/lib/index.d.ts","../ml-core/lib/ml-dom/tokens/token.d.ts","../ml-core/lib/ml-dom/tokens/attribute.d.ts","../ml-core/lib/ml-dom/index.d.ts","../ml-core/lib/ml-dom/helper/mapped-nodes.d.ts","../ml-core/lib/ml-dom/helper/create-node.d.ts","../ml-core/lib/ml-dom/helper/node-store.d.ts","../ml-core/lib/ml-dom/tokens/preprocessor-specific-attribute.d.ts","../ml-core/lib/ml-dom/tokens/abstract-element.d.ts","../ml-core/lib/ml-dom/helper/selector.d.ts","../ml-core/lib/ml-dom/helper/index.d.ts","../ml-core/lib/ml-dom/tokens/node.d.ts","../ml-core/lib/ml-dom/tokens/comment.d.ts","../ml-core/lib/ml-dom/tokens/doctype.d.ts","../ml-core/lib/ml-dom/tokens/text.d.ts","../ml-core/lib/ml-dom/tokens/omitted-element.d.ts","../ml-core/lib/ml-dom/tokens/element.d.ts","../ml-core/lib/ml-dom/tokens/element-close-tag.d.ts","../ml-core/lib/ml-dom/tokens/preprocessor-specific-block.d.ts","../ml-core/lib/ml-dom/tokens/index.d.ts","../ml-core/lib/ml-dom/types.d.ts","../ml-core/lib/ml-dom/helper/walkers.d.ts","../ml-core/lib/ml-dom/document.d.ts","../ml-core/lib/ml-rule/ml-rule-context.d.ts","../ml-core/lib/ml-rule/types.d.ts","../ml-core/lib/ml-rule/create-rule.d.ts","../ml-core/lib/ml-rule/ml-rule.d.ts","../ml-core/lib/ml-rule/index.d.ts","../ml-core/lib/types.d.ts","../ml-core/lib/ml-error/ml-parse-error.d.ts","../ml-core/lib/ml-core.d.ts","../ml-core/lib/plugin/types.d.ts","../ml-core/lib/plugin/plugin.d.ts","../ml-core/lib/plugin/index.d.ts","../ml-core/lib/ml-dom/helper/getindent.d.ts","../ml-core/lib/utils/get-location-from-chars.d.ts","../ml-core/lib/utils/index.d.ts","../ml-core/lib/configs.d.ts","../ml-core/lib/test/index.d.ts","../ml-core/lib/debug.d.ts","../ml-core/lib/index.d.ts","../html-spec/index.d.ts","./src/helpers.ts","./src/attr-duplication/index.ts","./src/attr-equal-space-after/index.ts","./src/attr-equal-space-before/index.ts","./src/attr-spacing/index.ts","./src/attr-value-quotes/index.ts","./src/case-sensitive-attr-name/index.ts","./src/case-sensitive-tag-name/index.ts","./src/character-reference/index.ts","./src/class-naming/index.ts","./src/deprecated-attr/index.ts","./src/deprecated-element/index.ts","./src/doctype/index.ts","./src/id-duplication/index.ts","./src/indentation/index.ts","./src/ineffective-attr/index.ts","./src/invalid-attr/index.ts","./src/landmark-roles/index.ts","./src/no-boolean-attr-value/index.ts","./src/permitted-contents/array.combination.ts","./src/permitted-contents/unfold-content-models-to-tags.ts","./src/permitted-contents/permitted-content.spec-to-regexp.ts","./src/permitted-contents/index.ts","./src/required-attr/index.ts","./src/required-h1/index.ts","./src/wai-aria/index.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/bcp-47/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/css-tree/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/fs-extra/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/uuid/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/whatwg-mimetype/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","56d0eb242037dacc548873cca58b20691f86a56d5039cd606e0f4c45d57a38d8","7aa09aeffcf2fd3f713bea715d7bc89ba0ad9633f4f64652a79c12fd4ae6ab17","86ae37fbd9fce5f0f7a4ec0c2aee97f504d99624c913463586abc5e642818216","223481752f49a6e25caa5062e5df3f1f1ef5089a72270a105c3221730b8b2a5a","55d2d6c7f615546f3b3a408368ebfc4314f535fb464beac86e102ff54c883539","39b4ab1bf470c42a34ad672fc2cb03558497a5783e6689891f5f2f1388ec4062","e0de2a1918b453af8deb85b03b628b88e71d3ed7d8a4cd2ae0af2aa27f0266fd","5c56c35a916b5199891eecb6295ae91dfacb92cbbca68de4128474ec8bb7acfd","6204b45bbc0cfc06c6781cba9ecf9c8134151e6384f86694491efd4cafbdd416","0f6e1366207419917adb76cb114757b0d027c11aa0bcf9af6652154ac0f4f37a","4d18ee67886c9b16e20e3768a799429ff828fe367a42fe71378c6c8ada59d232","d0b1e3e11ed7cf3f9a87b9538438920a480f22cf537f2fcc0480702f7fa0b0d7","fe17efc15c09a2713a51dea47b8a465439d35f12fa20c592801e4e1f3832e0fe","cf9b781cadd764325012852f799a194eac5f0e2bab89bb8b6ef50494e04a6abf","e001e626dcc1a99ddbf11c1514e30f12c72bb7b333e83763f68a9a246ae8ad8f","d43b711f5ff1cc4317321db198503f7fe2cde277316e3c9798d0ad2982e4c30a","ee1c0d1c8017580054968706d63e85f42384b02fee7673ab436da569426ab9fc","a80a17c6b70c892de129aea289c8e23ff6a1e77dfe1e31ff6b75afc78f4e5609","6a9c5127096b35264eb7cd21b2417bfc1d42cceca9ba4ce2bb0c3410b7816042","78828b06c0d3b586954015e9ebde5480b009e166c71244763bda328ec0920f41","3b9afd718a4fd17bd4c14c3239dbe01d89233bdbfc955bf5a29010703191ee9c","9bca86af63884d667aa14810e4d723981f239268551db485314aaaa4f0f02511","acc12635c75f0b57bcd9bf6af5624c27ffbb9a830fdab4e4dcba31725f1ea9a1","9cebc879f5f9bb8bb528044ae54e45946514589ee9a9261b5eab2e05111841d4","9b3c07ddff7e4f0c092c351da5782850390298a9050174156b881bc67f97a5dc","3e846bbed6945fa695b2a999410d4096f485c254230e93e355859af8749d33dd","ee6c6adbdbee0ae00dfefb53144f0cc330a4c5a438ba2c7d1a70350818a73146","9b33db8515f42c53ccf8597e4125b1c6f29b4d7bcad011f5a489f787d898507f","7f23bb7aaddd94dd6231bc8fa77d7e3926b8ffd87095c24290f2c67d24b16e58","d5c19655468e29f60c871b21e73af8ebc653f736e7123ade916f22c4a5f80ce5","e3d0465e1f55bba40fa77a57c3e70fb67331c897865f6ea8713fb6c8197747c9","fda5d74bbad4f9a3f9eee55e26abc4c6a5fb03d51978faa64c9e2fd6a36a51c8","2aa5097087ac3bba1312d8688ba7b5e4796588b5b10ad3037a3055bf1b839c13","61e065560757fd39d2eb9ce5407825a285929b0095d14017f6d9019d581ec450","b0670bd95983821cbc9cbbebe39784f0887128496ee337b08dba0feb7501fa25","5bfe85a019ea9280bed1be8b184d11fe252576fc4df33bb3efdf8c95fafeb097","2b3298f5c296eb5249cf10df838c1aa70f35ff1a7e57ea32e15b045ce25b54c6","37a5495f7e805b76ddf6a78b8389eaa79fbfdc308b8a6af5f1c45f0b6952e6ab","b9c53690a134b0b7f792efa8ab16849a07134a36a31a28aec5d91cae1c19fc9f","dd20634d51965217889c41c8e8f7264c244b372d338eb53012917659daff8c3a","9a911e4f95a47b1788ddbf80ce55521bf636544d5c7382987e46bc77d53f097c","f5ad87e89e48568546a6d0bd69965040abf89d02c95d6bccca8d25319514ed76","c9e3fd9d1925492ef6b8b555f07baea3b783d1e787c109c6b8be9bf1060f87a9","9722bb10a935428dccd8d17ef0888b91250db3f1ae46a42e21ff6a2816a314dc","541ce43cbf437b6121ce60195c9a747a030b2c57c53db127cefd0e18a45accd3","ca73f933c4576230805b6bded3c43f78f606ff048b14352ed02311bf02bf5db4","9cb27eb30484f306b68f8e2ad83c97b4740cd96b9b5e007626fe7ba7c22be5be","6bb29e58589d171e83dd3f0fba79984dff01db05f5e4003ab471436287ee9d21","2ed9951145168f1e101366322e2bed6c3aa39d5fdcd9c3dbeba9a5d9568ff595","9bdf67331be727e1589a98adf329fcab8a1e0dd2ef167d32edaa62dc0da8d561","e2914caf6dcf0a9c22a849df279fcf70e025f45a8aae75c42d0c97e591a1b532","9e1d8afbf14fbef9237d31e3dbfadccbd14032a5988ed384c1edfb9cd5d7c8fb","ad5b8145dce3ed9d856baa6d0a833d7347da5596a484e67f7089f36b835414fd","8e96bdb39c2cfe7e059877ab95bcfd226bc70b2708ac3fe18a602f1746c59deb","fb4742d55b29c065fea41c1a9f0f9a4d2eff3c7cd3737be6d8a2605477f88b23","f5a6c1f39b695abf4c4b9be1df4e27895c4743102cdeb63e1f5a41fbf48b1169","2520d7ae590b2ccdda4b3647cc0cc17363c4fc44411d6e1e13c4bf766c2a83c8","5c801e438c7c9f3c2c8f739edcedc8870c3355e9c5a5f57f48a80b0cc89f8c77","f29e5c795942cb39b4ae749cbbe63c16b835fc72b53a951a8a39a88997469903","c96bf348fc0d9d42565dc423b69cc76bd3e1b7b83e17c382deef170d2065cfb2","7383e41983fd3e4cdbea4a82f255b4facd404cad648ef1f87a2a99e8e5849276","4bb30deeba1445b8cee229d90cb52ec3ae4ae0552c9a457102373f9aa795c4b0","4edba813e2167ea3232803eefd0a4a582623b1ce18877b37be870e44a5e05b05","c0361b15220d7423fa2d45c856e3869085a5545d58ce3d42f5970b449b83cf3f","b75fa94ba821ec5471ea98431612815152b1f4687d7100eaaa4b172fab9f24f8","9d05a5c14da47f875fce5e7b911a6e0f79038df59ee3c61d5448746fbe6b1120","e58bf85a801daba2927f22010cb42030a43310c0af4ba86a1be12ed9021cbd3c","1f3979af250f115aa5f4229cefa2241cab33831ed7a351e9d10c416b8bc1be39","3ffa52413f929d194a1eab5ec4b4bf5faf57ffd0b5f62d9ddfbab97c50240179","1a7a771e9cb6a4bb74e92db9a6aa8df5f0e72387e2ead7d47bdfdcceb2fdca14","5983be11dccf50796dd69cbe422f9d9c8966090c276ec01c558db4741d394165","cd40c1ea323662fe5ae0e6f6d4bfc50ea5b3f6aa9094ed7f84ca322f6dc68f2c","45a58b5c8fedeb2a70ceac5dab802aa528bbddb6a3fe65707b1994e5369dd484","3d735db9811d45901df2a6e59a5da4dd86b0dcd6255979e663ac24cac48da9aa","9acef05f82ddb45d74036bbb1a6cdf473c0109a1ded6642392845026e0e39be8","f04fb1e29dca4a28fd6441ff8cf9fec7e67bf816291645a8bdbdde861950db01","9bf242a5ac8329d2cbc4fca771d3e791e82d6741b619ff16834b25da847d88f2","cc2e5c6faabadff6e8d5a47c105c4ea06a6838153524efa08f92a1b19d56b49b","2cdc34993c58709219e8bda31faa5881697f872e72f17ce8a4a3bdb1a5ca4360","948b0041519ea23feb861e19135a9a2c427039d515781dc4418abca9fc2aab74","40504dcd457d35253eb87e74ac55d1ce1cb6ef0370da18e75b2603feb6eb7653","e65c67a4b0929a1be439bad7bb577807721cc1a8b80e0e05170f496a2b3d49e8","22a6691194d85eb69b0b9d569969c1f4afe5ae7ecd5a34494ce9ebc1fa68c45b","a9d2619408faac61fe93f9def534fc6fed2935cbd8b7bcca76045ef93d896a97","f3c4332b6a76b908e6f88d576119565d60bfc7fc5d6db638e31a2a71acf63702","ead6d2c5a4cdb642cfca32449db0276c6bb4137780ac662dbcea4098c9510995","4203f9789261e4061ae69c8109310da0c8ede031c9bfba073798be6bd3afa253",{"version":"5c6fb9325037955fdfa2390aa1eafaec646954123a6c82b931525fe664c04db4","signature":"bedd7185a37da0b00dee19834f5e1ceeec1d9520f817e6e5aed84ed1a52b7be0"},"c0ba8c21e26899a64c7ad77f00c6a280c57cca8e3afa0b3de85b27e63c3c82c7","37f9231d9de1b834a493d69123f7c85ae10243f0c027fb50178c1c29c99578a0","75ed125570eff8d305119bcf1d5adc0035fe4465e3809d532f6d73c294b35acf","ff3894d50d686cc1f961cfecabd3d84c313520f4020b38e6bc1161e186a6e433","7e429b09200b85eb80003739018ec291930775b4c9934f96f2ee0f21b3f05555","885826de526e46ee593d0b931988deffc0be261c1b0ed5defba5382addd39631","d18eb4f6b65d49488d28e79cd215da255a03e68c95b003d078cadf4e4a06a5a7","22c486145cf5eeee95894086d3700c8727a0f3d4b2fd434d6bfc310999a0d918","496dc1a25a85d7f3a5e5968210411daee58cc5b7e205926caa20cc1f4e9aac95",{"version":"fe410dc1f47b08908d9978540ddb3dc8bfa7472279bfbcb6cda7cab0a48fc3f4","signature":"ecdaf09d8382e5fa567429202a745a8024c86ddb3ddc6a0dfa3f7eef6722c778"},"272c2dac4baaf7fdd2d7efeef0fa2547af54cc21883c5e138b8c4d1661697a54","8dfed5c91ad36e69e6da6b7e49be929d4e19666db2b651aa839c485170a2902c","64b867c61effed7b5bc0cc06b3d8eac23b067a3fba581fc7d3c292fa593e6a45","93de1c6dab503f053efe8d304cb522bb3a89feab8c98f307a674a4fae04773e9","3b043cf9a81854a72963fdb57d1884fc4da1cf5be69b5e0a4c5b751e58cb6d88","d0b0a00cf31968a33baeaadf974ce4e5e7edf58cea5288765293f41ba5e72b3a","e2a56bb80f66ac0b6767fd7bb6b337ac3cb9cd4a368b13491e3fd1b5e26d93d6","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","af9abc3144d279b29affb0e6dd842609eca65fb44c712368f6a89bb264b34ef4",{"version":"64d4b35c5456adf258d2cf56c341e203a073253f229ef3208fc0d5020253b241","affectsGlobalScope":true},"0133ebdd17a823ae56861948870cde4dac18dd8818ab641039c85bbb720429e0","0359682c54e487c4cab2b53b2b4d35cc8dea4d9914bc6abcdb5701f8b8e745a4","7d7c8ef7d48a035142c07dae60545ecc0e4af4c337742760cb09726f2f8e31db","ab9cce8526b1878586804696261de5505885a9b9bbe8af15e99b7387c81f2b6d","82772e5d55062a042a2715a555d347275a663940926fc785705eb082010cb9f6","84e3bbd6f80983d468260fdbfeeb431cc81f7ea98d284d836e4d168e36875e86","0b85cb069d0e427ba946e5eb2d86ef65ffd19867042810516d16919f6c1a5aec","15c88bfd1b8dc7231ff828ae8df5d955bae5ebca4cf2bcb417af5821e52299ae","ed19da84b7dbf00952ad0b98ce5c194f1903bcf7c94d8103e8e0d63b271543ae","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","fab58e600970e66547644a44bc9918e3223aa2cbd9e8763cec004b2cfb48827e","320dfb6b91f1ede1216fe57eb0a608c49b71e61ba5b1f16b2629254db563476e","b90c59ac4682368a01c83881b814738eb151de8a58f52eb7edadea2bcffb11b9","8560a87b2e9f8e2c3808c8f6172c9b7eb6c9b08cb9f937db71c285ecf292c81d","ffe3931ff864f28d80ae2f33bd11123ad3d7bad9896b910a1e61504cc093e1f5","083c1bd82f8dc3a1ed6fc9e8eaddf141f7c05df418eca386598821e045253af9","274ebe605bd7f71ce161f9f5328febc7d547a2929f803f04b44ec4a7d8729517","6ca0207e70d985a24396583f55836b10dc181063ab6069733561bfde404d1bad","5908142efeaab38ffdf43927ee0af681ae77e0d7672b956dfb8b6c705dbfe106","f772b188b943549b5c5eb803133314b8aa7689eced80eed0b70e2f30ca07ab9c","0026b816ef05cfbf290e8585820eef0f13250438669107dfc44482bac007b14f","05d64cc1118031b29786632a9a0f6d7cf1dcacb303f27023a466cf3cdc860538","e0fff9119e1a5d2fdd46345734126cd6cb99c2d98a9debf0257047fe3937cc3f","d84398556ba4595ee6be554671da142cfe964cbdebb2f0c517a10f76f2b016c0","e275297155ec3251200abbb334c7f5641fecc68b2a9573e40eed50dff7584762","3c71707988135662b344d59c4f92d2ea37b1f198149b762693db61e30bdaae9a","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":[[144,194],[194],[144,145,146,147,148,194],[144,146,194],[169,194,201,202],[194,201],[194,205,206,207,208,209,210,211,212,213,214,215,216],[166,194,201],[193,194,201,221],[169,194,201],[64,194],[194,227,228],[194,224,225,226,227],[194,228],[166,169,194,201,219,220],[194,203,220,221,231],[167,194,201],[166,167,194,201,234],[194,237],[166,169,171,174,183,193,194,201],[194,241],[194,242],[194,248,250],[194,253,255,256,257,258,259,260,261,262,263,264,265],[194,253,254,256,257,258,259,260,261,262,263,264,265],[194,254,255,256,257,258,259,260,261,262,263,264,265],[194,253,254,255,257,258,259,260,261,262,263,264,265],[194,253,254,255,256,258,259,260,261,262,263,264,265],[194,253,254,255,256,257,259,260,261,262,263,264,265],[194,253,254,255,256,257,258,260,261,262,263,264,265],[194,253,254,255,256,257,258,259,261,262,263,264,265],[194,253,254,255,256,257,258,259,260,262,263,264,265],[194,253,254,255,256,257,258,259,260,261,263,264,265],[194,253,254,255,256,257,258,259,260,261,262,264,265],[194,253,254,255,256,257,258,259,260,261,262,263,265],[194,253,254,255,256,257,258,259,260,261,262,263,264],[194,271],[194,279],[169,193,194,201,283,284],[151,194],[154,194],[155,160,194],[156,166,167,174,183,193,194],[156,157,166,174,194],[158,194],[159,160,167,175,194],[160,183,190,194],[161,163,166,174,194],[162,194],[163,164,194],[165,166,194],[166,194],[166,167,168,183,193,194],[166,167,168,183,194],[169,174,183,193,194],[166,167,169,170,174,183,190,193,194],[169,171,183,190,193,194],[151,152,153,154,155,156,157,158,159,160,161,162,163,164,165,166,167,168,169,170,171,172,173,174,175,176,177,178,179,180,181,182,183,184,185,186,187,188,189,190,191,192,193,194,195,196,197,198,199,200],[166,172,194],[173,193,194],[163,166,174,183,194],[175,194],[176,194],[154,177,194],[178,192,194,198],[179,194],[180,194],[166,181,194],[181,182,194,196],[166,183,184,185,194],[183,185,194],[183,184,194],[186,194],[187,194],[166,188,189,194],[188,189,194],[160,174,190,194],[191,194],[174,192,194],[155,169,180,193,194],[160,194],[183,194,195],[194,196],[194,197],[155,160,166,168,177,183,193,194,196,198],[183,194,199],[194,288],[194,289],[194,267,268,269,270],[193,194,201],[169,194,201,230],[194,299],[169,171,194,222,231,232,278,279],[194,201,304,305,306,307,308,309,310,311,312,313,314],[194,303,304,313],[194,304,313],[194,296,303,304,313],[194,303,304,305,306,307,308,309,310,311,312,314],[194,304],[160,194,303,313],[194,201,278],[194,275],[194,226,273,274],[194,226,275],[169,174,190,194,227,273,275,276,277],[194,317],[169,183,194,201],[194,244,245],[194,244,245,246,247],[194,249],[56,194],[46,47,194],[46,194],[74,194],[68,69,70,194],[68,194],[71,194],[71,72,194],[65,194],[56,71,72,73,78,102,103,104,105,108,109,111,112,113,114,194],[71,78,103,104,194],[56,71,72,75,85,94,95,96,115,194],[71,75,78,79,94,194],[94,95,194],[79,80,81,84,194],[71,75,94,194],[71,75,79,86,194],[83,194],[71,95,194],[94,95,97,194],[56,71,75,78,82,86,94,194],[75,76,194],[71,75,86,95,194],[71,75,78,86,95,194],[71,75,78,86,94,95,194],[71,75,76,78,83,94,95,194],[76,77,86,87,88,89,90,91,92,93,194],[71,75,76,78,85,94,95,115,194],[71,75,78,83,95,194],[56,71,75,78,86,95,194],[75,194],[71,94,194],[71,99,194],[99,100,101,194],[48,71,97,194],[48,71,97,99,194],[71,98,194],[106,107,194],[106,194],[71,102,194],[56,71,75,78,194],[48,56,71,72,75,102,194],[110,194],[51,194],[49,50,51,52,53,54,55,194],[49,50,56,194],[45,48,56,62,63,66,194],[45,115,194],[45,115,117,194],[45,48,56,62,194],[45,65,194],[45,56,115,116,194],[45,48,56,66,67,115,116,194],[45,118,119,120,121,122,123,124,125,126,127,128,129,130,131,132,133,134,135,139,140,141,142,194],[45,56,66,67,115,117,194],[45,194],[45,56,115,117,137,138,194],[45,56,117,136,137,194],[45,56,116,194],[45,115,116,117,194],[59,194],[59,60,61,194],[57,58,194],[56,115,121,122,123,124,126,131,141],[56,115]],"referencedMap":[[146,1],[144,2],[149,3],[145,1],[147,4],[148,1],[150,2],[203,5],[204,6],[205,2],[206,2],[207,2],[208,2],[209,2],[211,2],[217,7],[210,2],[215,2],[212,2],[213,2],[214,2],[216,2],[218,8],[222,9],[202,10],[223,2],[65,11],[229,12],[224,2],[228,13],[225,14],[227,2],[221,15],[232,16],[233,17],[235,18],[236,17],[238,19],[239,2],[240,20],[241,2],[242,21],[243,22],[251,23],[226,2],[252,2],[254,24],[255,25],[253,26],[256,27],[257,28],[258,29],[259,30],[260,31],[261,32],[262,33],[263,34],[264,35],[265,36],[266,19],[272,37],[230,2],[280,38],[234,2],[281,2],[64,2],[282,2],[284,2],[285,39],[151,40],[152,40],[154,41],[155,42],[156,43],[157,44],[158,45],[159,46],[160,47],[161,48],[162,49],[163,50],[164,50],[165,51],[166,52],[167,53],[168,54],[153,2],[200,2],[169,55],[170,56],[171,57],[201,58],[172,59],[173,60],[174,61],[175,62],[176,63],[177,64],[178,65],[179,66],[180,67],[181,68],[182,69],[183,70],[185,71],[184,72],[186,73],[187,74],[188,75],[189,76],[190,77],[191,78],[192,79],[193,80],[194,81],[195,82],[196,83],[197,84],[198,85],[199,86],[286,2],[287,2],[289,87],[288,88],[290,2],[269,2],[291,2],[292,2],[220,2],[219,2],[267,2],[271,89],[293,90],[294,2],[270,2],[295,38],[231,91],[296,2],[297,2],[298,2],[300,92],[237,2],[301,2],[302,93],[315,94],[314,95],[305,96],[306,97],[313,98],[307,97],[308,96],[309,96],[310,96],[311,99],[304,100],[312,95],[303,2],[279,101],[276,102],[275,103],[273,104],[277,2],[278,105],[316,2],[317,2],[318,106],[274,2],[268,2],[283,107],[244,2],[246,108],[248,109],[247,108],[245,2],[250,110],[249,2],[299,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],[116,111],[48,112],[47,113],[46,2],[75,114],[74,2],[71,115],[69,116],[68,2],[70,116],[112,117],[73,118],[114,119],[115,120],[105,121],[97,122],[80,123],[109,124],[85,125],[79,126],[81,127],[84,128],[96,129],[78,130],[83,131],[77,132],[87,133],[88,134],[92,135],[91,136],[94,137],[86,138],[90,139],[82,132],[93,134],[89,140],[76,141],[95,142],[104,2],[100,143],[102,144],[98,145],[101,146],[99,147],[108,148],[107,149],[106,150],[72,117],[113,151],[103,152],[110,2],[111,153],[50,2],[52,154],[55,2],[53,154],[54,154],[56,155],[49,2],[51,156],[67,157],[118,158],[119,158],[120,158],[121,158],[122,158],[123,158],[124,158],[125,158],[126,159],[63,160],[66,161],[127,158],[128,162],[129,158],[117,163],[130,158],[131,158],[143,164],[132,158],[133,165],[134,158],[135,158],[136,166],[139,167],[138,168],[137,169],[140,170],[141,158],[142,159],[61,171],[57,171],[62,172],[59,173],[58,2],[60,171]],"exportedModulesMap":[[146,1],[144,2],[149,3],[145,1],[147,4],[148,1],[150,2],[203,5],[204,6],[205,2],[206,2],[207,2],[208,2],[209,2],[211,2],[217,7],[210,2],[215,2],[212,2],[213,2],[214,2],[216,2],[218,8],[222,9],[202,10],[223,2],[65,11],[229,12],[224,2],[228,13],[225,14],[227,2],[221,15],[232,16],[233,17],[235,18],[236,17],[238,19],[239,2],[240,20],[241,2],[242,21],[243,22],[251,23],[226,2],[252,2],[254,24],[255,25],[253,26],[256,27],[257,28],[258,29],[259,30],[260,31],[261,32],[262,33],[263,34],[264,35],[265,36],[266,19],[272,37],[230,2],[280,38],[234,2],[281,2],[64,2],[282,2],[284,2],[285,39],[151,40],[152,40],[154,41],[155,42],[156,43],[157,44],[158,45],[159,46],[160,47],[161,48],[162,49],[163,50],[164,50],[165,51],[166,52],[167,53],[168,54],[153,2],[200,2],[169,55],[170,56],[171,57],[201,58],[172,59],[173,60],[174,61],[175,62],[176,63],[177,64],[178,65],[179,66],[180,67],[181,68],[182,69],[183,70],[185,71],[184,72],[186,73],[187,74],[188,75],[189,76],[190,77],[191,78],[192,79],[193,80],[194,81],[195,82],[196,83],[197,84],[198,85],[199,86],[286,2],[287,2],[289,87],[288,88],[290,2],[269,2],[291,2],[292,2],[220,2],[219,2],[267,2],[271,89],[293,90],[294,2],[270,2],[295,38],[231,91],[296,2],[297,2],[298,2],[300,92],[237,2],[301,2],[302,93],[315,94],[314,95],[305,96],[306,97],[313,98],[307,97],[308,96],[309,96],[310,96],[311,99],[304,100],[312,95],[303,2],[279,101],[276,102],[275,103],[273,104],[277,2],[278,105],[316,2],[317,2],[318,106],[274,2],[268,2],[283,107],[244,2],[246,108],[248,109],[247,108],[245,2],[250,110],[249,2],[299,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],[116,111],[48,112],[47,113],[46,2],[75,114],[74,2],[71,115],[69,116],[68,2],[70,116],[112,117],[73,118],[114,119],[115,120],[105,121],[97,122],[80,123],[109,124],[85,125],[79,126],[81,127],[84,128],[96,129],[78,130],[83,131],[77,132],[87,133],[88,134],[92,135],[91,136],[94,137],[86,138],[90,139],[82,132],[93,134],[89,140],[76,141],[95,142],[104,2],[100,143],[102,144],[98,145],[101,146],[99,147],[108,148],[107,149],[106,150],[72,117],[113,151],[103,152],[110,2],[111,153],[50,2],[52,154],[55,2],[53,154],[54,154],[56,155],[49,2],[51,156],[67,157],[118,158],[119,158],[120,158],[121,158],[122,158],[123,158],[124,158],[125,158],[126,159],[63,160],[66,161],[127,158],[128,162],[129,158],[117,163],[130,158],[131,158],[143,174],[132,158],[133,175],[134,158],[135,158],[136,166],[139,167],[138,168],[137,169],[140,170],[141,158],[142,159],[61,171],[57,171],[62,172],[59,173],[58,2],[60,171]],"semanticDiagnosticsPerFile":[146,144,149,145,147,148,150,203,204,205,206,207,208,209,211,217,210,215,212,213,214,216,218,222,202,223,65,229,224,228,225,227,221,232,233,235,236,238,239,240,241,242,243,251,226,252,254,255,253,256,257,258,259,260,261,262,263,264,265,266,272,230,280,234,281,64,282,284,285,151,152,154,155,156,157,158,159,160,161,162,163,164,165,166,167,168,153,200,169,170,171,201,172,173,174,175,176,177,178,179,180,181,182,183,185,184,186,187,188,189,190,191,192,193,194,195,196,197,198,199,286,287,289,288,290,269,291,292,220,219,267,271,293,294,270,295,231,296,297,298,300,237,301,302,315,314,305,306,313,307,308,309,310,311,304,312,303,279,276,275,273,277,278,316,317,318,274,268,283,244,246,248,247,245,250,249,299,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,116,48,47,46,75,74,71,69,68,70,112,73,114,115,105,97,80,109,85,79,81,84,96,78,83,77,87,88,92,91,94,86,90,82,93,89,76,95,104,100,102,98,101,99,108,107,106,72,113,103,110,111,50,52,55,53,54,56,49,51,67,118,119,120,121,122,123,124,125,126,63,66,127,128,129,117,130,131,143,132,133,134,135,136,139,138,137,140,141,142,61,57,62,59,58,60]},"version":"4.4.4"}
|
package/lib/primitive-check.d.ts
DELETED
|
@@ -1,48 +0,0 @@
|
|
|
1
|
-
/**
|
|
2
|
-
* @see https://html.spec.whatwg.org/dev/common-microsyntaxes.html#signed-integers
|
|
3
|
-
*
|
|
4
|
-
* @param value
|
|
5
|
-
*/
|
|
6
|
-
export declare function intCheck(value: string): boolean;
|
|
7
|
-
/**
|
|
8
|
-
* @see https://html.spec.whatwg.org/dev/common-microsyntaxes.html#non-negative-integers
|
|
9
|
-
*
|
|
10
|
-
* @param value
|
|
11
|
-
*/
|
|
12
|
-
export declare function uintCheck(value: string): boolean;
|
|
13
|
-
/**
|
|
14
|
-
* @see https://html.spec.whatwg.org/dev/common-microsyntaxes.html#floating-point-numbers
|
|
15
|
-
*
|
|
16
|
-
* @param value
|
|
17
|
-
*/
|
|
18
|
-
export declare function floatCheck(value: string): boolean;
|
|
19
|
-
/**
|
|
20
|
-
* Non-negative integer greater than zero
|
|
21
|
-
*
|
|
22
|
-
* @param value
|
|
23
|
-
*/
|
|
24
|
-
export declare function nonZeroUintCheck(value: string): boolean;
|
|
25
|
-
/**
|
|
26
|
-
* It is in the range between `from` and `to`.
|
|
27
|
-
*
|
|
28
|
-
* @param value
|
|
29
|
-
* @param from
|
|
30
|
-
* @param to
|
|
31
|
-
*/
|
|
32
|
-
export declare function range(value: string, from: number, to: number): boolean;
|
|
33
|
-
/**
|
|
34
|
-
*
|
|
35
|
-
* @param value
|
|
36
|
-
* @returns
|
|
37
|
-
*/
|
|
38
|
-
export declare function splitUnit(value: string): {
|
|
39
|
-
num: string;
|
|
40
|
-
unit: string;
|
|
41
|
-
};
|
|
42
|
-
/**
|
|
43
|
-
*
|
|
44
|
-
* @param value
|
|
45
|
-
* @param units
|
|
46
|
-
* @param numberType
|
|
47
|
-
*/
|
|
48
|
-
export declare function numberCheckWithUnit(value: string, units: string[], numberType?: 'int' | 'uint' | 'float'): boolean;
|
package/lib/primitive-check.js
DELETED
|
@@ -1,109 +0,0 @@
|
|
|
1
|
-
"use strict";
|
|
2
|
-
Object.defineProperty(exports, "__esModule", { value: true });
|
|
3
|
-
exports.numberCheckWithUnit = exports.splitUnit = exports.range = exports.nonZeroUintCheck = exports.floatCheck = exports.uintCheck = exports.intCheck = void 0;
|
|
4
|
-
/**
|
|
5
|
-
* @see https://html.spec.whatwg.org/dev/common-microsyntaxes.html#signed-integers
|
|
6
|
-
*
|
|
7
|
-
* @param value
|
|
8
|
-
*/
|
|
9
|
-
function intCheck(value) {
|
|
10
|
-
return /^-?[0-9]+$/.test(value);
|
|
11
|
-
}
|
|
12
|
-
exports.intCheck = intCheck;
|
|
13
|
-
/**
|
|
14
|
-
* @see https://html.spec.whatwg.org/dev/common-microsyntaxes.html#non-negative-integers
|
|
15
|
-
*
|
|
16
|
-
* @param value
|
|
17
|
-
*/
|
|
18
|
-
function uintCheck(value) {
|
|
19
|
-
return /^[0-9]+$/.test(value);
|
|
20
|
-
}
|
|
21
|
-
exports.uintCheck = uintCheck;
|
|
22
|
-
/**
|
|
23
|
-
* @see https://html.spec.whatwg.org/dev/common-microsyntaxes.html#floating-point-numbers
|
|
24
|
-
*
|
|
25
|
-
* @param value
|
|
26
|
-
*/
|
|
27
|
-
function floatCheck(value) {
|
|
28
|
-
return value === value.trim() && Number.isFinite(parseFloat(value));
|
|
29
|
-
}
|
|
30
|
-
exports.floatCheck = floatCheck;
|
|
31
|
-
/**
|
|
32
|
-
* Non-negative integer greater than zero
|
|
33
|
-
*
|
|
34
|
-
* @param value
|
|
35
|
-
*/
|
|
36
|
-
function nonZeroUintCheck(value) {
|
|
37
|
-
return /^[0-9]+$/.test(value) && !/^0+$/.test(value);
|
|
38
|
-
}
|
|
39
|
-
exports.nonZeroUintCheck = nonZeroUintCheck;
|
|
40
|
-
/**
|
|
41
|
-
* It is in the range between `from` and `to`.
|
|
42
|
-
*
|
|
43
|
-
* @param value
|
|
44
|
-
* @param from
|
|
45
|
-
* @param to
|
|
46
|
-
*/
|
|
47
|
-
function range(value, from, to) {
|
|
48
|
-
const num = parseFloat(value);
|
|
49
|
-
if (isNaN(num)) {
|
|
50
|
-
return false;
|
|
51
|
-
}
|
|
52
|
-
return from <= num && num <= to;
|
|
53
|
-
}
|
|
54
|
-
exports.range = range;
|
|
55
|
-
/**
|
|
56
|
-
*
|
|
57
|
-
* @param value
|
|
58
|
-
* @returns
|
|
59
|
-
*/
|
|
60
|
-
function splitUnit(value) {
|
|
61
|
-
value = value.trim().toLowerCase();
|
|
62
|
-
const matched = value.match(/(^-?\.[0-9]+|^-?[0-9]+(?:\.[0-9]+(?:e[+-][0-9]+)?)?)([a-z]+$)/i);
|
|
63
|
-
if (!matched) {
|
|
64
|
-
return {
|
|
65
|
-
num: value,
|
|
66
|
-
unit: '',
|
|
67
|
-
};
|
|
68
|
-
}
|
|
69
|
-
const [, num, unit] = matched;
|
|
70
|
-
return {
|
|
71
|
-
num,
|
|
72
|
-
unit,
|
|
73
|
-
};
|
|
74
|
-
}
|
|
75
|
-
exports.splitUnit = splitUnit;
|
|
76
|
-
/**
|
|
77
|
-
*
|
|
78
|
-
* @param value
|
|
79
|
-
* @param units
|
|
80
|
-
* @param numberType
|
|
81
|
-
*/
|
|
82
|
-
function numberCheckWithUnit(value, units, numberType = 'float') {
|
|
83
|
-
const { num, unit } = splitUnit(value);
|
|
84
|
-
if (!units.includes(unit.toLowerCase())) {
|
|
85
|
-
return false;
|
|
86
|
-
}
|
|
87
|
-
switch (numberType) {
|
|
88
|
-
case 'int': {
|
|
89
|
-
if (!intCheck(num)) {
|
|
90
|
-
return false;
|
|
91
|
-
}
|
|
92
|
-
break;
|
|
93
|
-
}
|
|
94
|
-
case 'uint': {
|
|
95
|
-
if (!uintCheck(num)) {
|
|
96
|
-
return false;
|
|
97
|
-
}
|
|
98
|
-
break;
|
|
99
|
-
}
|
|
100
|
-
case 'float': {
|
|
101
|
-
if (!floatCheck(num)) {
|
|
102
|
-
return false;
|
|
103
|
-
}
|
|
104
|
-
break;
|
|
105
|
-
}
|
|
106
|
-
}
|
|
107
|
-
return true;
|
|
108
|
-
}
|
|
109
|
-
exports.numberCheckWithUnit = numberCheckWithUnit;
|