hackmud-script-manager 0.19.1-4bde221 → 0.19.1-5bceac8
Sign up to get free protection for your applications and to get access to all the features.
- package/bin/hsm.js +30 -20
- package/package.json +4 -4
- package/processScript/minify.js +2 -2
- package/processScript/transform.js +121 -109
- package/tsconfig.tsbuildinfo +1 -1
package/bin/hsm.js
CHANGED
@@ -28,8 +28,10 @@ const configDirectoryPath = resolve(homedir(), ".config"),
|
|
28
28
|
),
|
29
29
|
logHelp = () => {
|
30
30
|
const pushCommandDescription = "Push scripts from a directory to hackmud user's scripts directories",
|
31
|
-
mangleNamesOptionDescription =
|
32
|
-
|
31
|
+
mangleNamesOptionDescription =
|
32
|
+
"Reduce character count further but lose function names in error call stacks",
|
33
|
+
forceQuineCheatsOptionDescription = `Force quine cheats on. Use ${colourN("--force-quine-cheats")}=${colourV("false")} to force off.`
|
34
|
+
console.log(colourN("Version") + colourS(": ") + colourV("0.19.1-5bceac8"))
|
33
35
|
switch (commands[0]) {
|
34
36
|
case "config":
|
35
37
|
switch (commands[1]) {
|
@@ -59,7 +61,7 @@ const configDirectoryPath = resolve(homedir(), ".config"),
|
|
59
61
|
case "push":
|
60
62
|
console.log(
|
61
63
|
colourS(
|
62
|
-
`\n${colourJ(pushCommandDescription)}\n\n${colourA("Usage:")}\n${colourC("hsm")} ${colourL(commands[0])} ${colourB("<directory> [<script user>.<script name>...]")}\n\n${colourA("Options:")}\n${colourN("--
|
64
|
+
`\n${colourJ(pushCommandDescription)}\n\n${colourA("Usage:")}\n${colourC("hsm")} ${colourL(commands[0])} ${colourB("<directory> [<script user>.<script name>...]")}\n\n${colourA("Options:")}\n${colourN("--no-minify")}\n Skip minification to produce a "readable" script\n${colourN("--mangle-names")}\n ${mangleNamesOptionDescription}\n${colourN("--force-quine-cheats")}\n ${forceQuineCheatsOptionDescription}`
|
63
65
|
)
|
64
66
|
)
|
65
67
|
break
|
@@ -67,7 +69,7 @@ const configDirectoryPath = resolve(homedir(), ".config"),
|
|
67
69
|
case "watch":
|
68
70
|
console.log(
|
69
71
|
colourS(
|
70
|
-
|
72
|
+
`\n${colourJ("Watch a directory and push a script when modified")}\n\n${colourA("Usage:")}\n${colourC("hsm")} ${colourL(commands[0])} ${colourB("<directory> [<script user>.<script name>...]")}\n\n${colourA("Options:")}\n${colourN("--no-minify")}\n Skip minification to produce a "readable" script\n${colourN("--mangle-names")}\n ${mangleNamesOptionDescription}\n${colourN("--type-declaration-path")}=${colourB("<path>")}\n Path to generate a type declaration file for the scripts\n${colourN("--force-quine-cheats")}\n ${forceQuineCheatsOptionDescription}`
|
71
73
|
)
|
72
74
|
)
|
73
75
|
break
|
@@ -82,7 +84,7 @@ const configDirectoryPath = resolve(homedir(), ".config"),
|
|
82
84
|
case "golf":
|
83
85
|
console.log(
|
84
86
|
colourS(
|
85
|
-
|
87
|
+
`\n${colourJ("Minify a script file on the spot")}\n\n${colourA("Usage:")}\n${colourC("hsm")} ${colourL(commands[0])} ${colourB("<target> [output path]")}\n\n${colourA("Options:")}\n${colourN("--no-minify")}\n Skip minification to produce a "readable" script\n${colourN("--mangle-names")}\n ${mangleNamesOptionDescription}\n${colourN("--force-quine-cheats")}\n ${forceQuineCheatsOptionDescription}\n${colourN("--watch")}\n Watch for changes`
|
86
88
|
)
|
87
89
|
)
|
88
90
|
break
|
@@ -92,7 +94,7 @@ const configDirectoryPath = resolve(homedir(), ".config"),
|
|
92
94
|
case "gen-types":
|
93
95
|
console.log(
|
94
96
|
colourS(
|
95
|
-
`${
|
97
|
+
`${colourJ("Generate a type declaration file for a directory of scripts")}\n\n${colourA("Usage:")}\n${colourC("hsm")} ${colourL(commands[0])} ${colourB("<directory> [output path]")}`
|
96
98
|
)
|
97
99
|
)
|
98
100
|
break
|
@@ -102,7 +104,7 @@ const configDirectoryPath = resolve(homedir(), ".config"),
|
|
102
104
|
default:
|
103
105
|
console.log(
|
104
106
|
colourS(
|
105
|
-
`\n${colourJ("Hackmud Script Manager")}\n\n${colourA("Commands:")}\n${colourL("push")}\n ${pushCommandDescription}\n${colourL("
|
107
|
+
`\n${colourJ("Hackmud Script Manager")}\n\n${colourA("Commands:")}\n${colourL("push")}\n ${pushCommandDescription}\n${colourL("dev")}\n Watch a directory and push a script when modified\n${colourL("golf")}\n Minify a script file on the spot\n${colourL("gen-dts")}\n Generate a type declaration file for a directory of scripts\n${colourL("sync-macros")}\n Sync macros across all hackmud users\n${colourL("config")}\n Modify and view the config file\n${colourL("pull")}\n Pull a script a from a hackmud user's script directory`
|
106
108
|
)
|
107
109
|
)
|
108
110
|
}
|
@@ -147,7 +149,7 @@ for (const argument of process.argv.slice(2))
|
|
147
149
|
else for (const option of key.slice(1)) options.set(option, value)
|
148
150
|
} else commands.push(argument)
|
149
151
|
if ("v" == commands[0] || "version" == commands[0] || options.get("version") || options.get("v")) {
|
150
|
-
console.log("0.19.1-
|
152
|
+
console.log("0.19.1-5bceac8")
|
151
153
|
process.exit()
|
152
154
|
}
|
153
155
|
let configDidNotExist = !1
|
@@ -222,17 +224,20 @@ switch (commands[0]) {
|
|
222
224
|
break
|
223
225
|
}
|
224
226
|
} else scripts.push("*.*")
|
225
|
-
|
226
|
-
|
227
|
+
const optionsHasNoMinify = options.has("no-minify")
|
228
|
+
if ((optionsHasNoMinify || options.has("skip-minify")) && options.has("mangle-names")) {
|
229
|
+
logError(
|
230
|
+
`Options ${colourN("--mangle-names")} and ${colourN(optionsHasNoMinify ? "--no-minify" : "--skip-minify")} are incompatible\n`
|
231
|
+
)
|
227
232
|
logHelp()
|
228
233
|
break
|
229
234
|
}
|
230
|
-
const shouldSkipMinify = options.get("skip-minify")
|
235
|
+
const shouldSkipMinify = options.get("no-minify") || options.get("skip-minify")
|
231
236
|
let shouldMinify
|
232
237
|
if (null != shouldSkipMinify) {
|
233
238
|
if ("boolean" != typeof shouldSkipMinify) {
|
234
239
|
logError(
|
235
|
-
`The value for ${colourN("--skip-minify")} must be ${colourV("true")} or ${colourV("false")}\n`
|
240
|
+
`The value for ${colourN(optionsHasNoMinify ? "--no-minify" : "--skip-minify")} must be ${colourV("true")} or ${colourV("false")}\n`
|
236
241
|
)
|
237
242
|
logHelp()
|
238
243
|
break
|
@@ -292,17 +297,20 @@ switch (commands[0]) {
|
|
292
297
|
break
|
293
298
|
}
|
294
299
|
} else scripts.push("*.*")
|
295
|
-
|
296
|
-
|
300
|
+
const optionsHasNoMinify = options.has("no-minify")
|
301
|
+
if ((optionsHasNoMinify || options.has("skip-minify")) && options.has("mangle-names")) {
|
302
|
+
logError(
|
303
|
+
`Options ${colourN("--mangle-names")} and ${colourN(optionsHasNoMinify ? "--no-minify" : "--skip-minify")} are incompatible\n`
|
304
|
+
)
|
297
305
|
logHelp()
|
298
306
|
break
|
299
307
|
}
|
300
|
-
const shouldSkipMinify = options.get("skip-minify")
|
308
|
+
const shouldSkipMinify = options.get("no-minify") || options.get("skip-minify")
|
301
309
|
let shouldMinify
|
302
310
|
if (null != shouldSkipMinify) {
|
303
311
|
if ("boolean" != typeof shouldSkipMinify) {
|
304
312
|
logError(
|
305
|
-
`The value for ${colourN("--skip-minify")} must be ${colourV("true")} or ${colourV("false")}\n`
|
313
|
+
`The value for ${colourN(optionsHasNoMinify ? "--no-minify" : "--skip-minify")} must be ${colourV("true")} or ${colourV("false")}\n`
|
306
314
|
)
|
307
315
|
logHelp()
|
308
316
|
break
|
@@ -511,9 +519,11 @@ switch (commands[0]) {
|
|
511
519
|
"scripts" == basename(resolve(target, "..")) && "hackmud" == basename(resolve(target, "../../..")) ?
|
512
520
|
basename(resolve(target, "../.."))
|
513
521
|
: "UNKNOWN",
|
514
|
-
|
515
|
-
if (options.has("skip-minify") && options.has("mangle-names")) {
|
516
|
-
logError(
|
522
|
+
optionsHasNoMinify = options.has("no-minify")
|
523
|
+
if ((optionsHasNoMinify || options.has("skip-minify")) && options.has("mangle-names")) {
|
524
|
+
logError(
|
525
|
+
`Options ${colourN("--mangle-names")} and ${colourN(optionsHasNoMinify ? "--no-minify" : "--skip-minify")} are incompatible\n`
|
526
|
+
)
|
517
527
|
logHelp()
|
518
528
|
break
|
519
529
|
}
|
@@ -548,7 +558,7 @@ switch (commands[0]) {
|
|
548
558
|
async source => {
|
549
559
|
const timeStart = performance.now(),
|
550
560
|
{ script, warnings } = await processScript(source, {
|
551
|
-
minify,
|
561
|
+
minify: !(options.get("no-minify") || options.get("skip-minify")),
|
552
562
|
scriptUser,
|
553
563
|
scriptName,
|
554
564
|
filePath: target,
|
package/package.json
CHANGED
@@ -1,6 +1,6 @@
|
|
1
1
|
{
|
2
2
|
"name": "hackmud-script-manager",
|
3
|
-
"version": "0.19.1-
|
3
|
+
"version": "0.19.1-5bceac8",
|
4
4
|
"description": "Script manager for game hackmud, with minification, TypeScript support, and player script type definition generation.",
|
5
5
|
"keywords": [
|
6
6
|
"api",
|
@@ -11,8 +11,8 @@
|
|
11
11
|
"minifier",
|
12
12
|
"hackmd",
|
13
13
|
"hackmud",
|
14
|
-
"
|
15
|
-
"
|
14
|
+
"javascript",
|
15
|
+
"typescript",
|
16
16
|
"typescript-support",
|
17
17
|
"golf",
|
18
18
|
"golfer"
|
@@ -71,7 +71,7 @@
|
|
71
71
|
},
|
72
72
|
"engines": {
|
73
73
|
"node": "^18 || >=20",
|
74
|
-
"pnpm": "^
|
74
|
+
"pnpm": "^9.0.1"
|
75
75
|
},
|
76
76
|
"type": "module",
|
77
77
|
"exports": {
|
package/processScript/minify.js
CHANGED
@@ -357,7 +357,7 @@ const { default: generate } = babelGenerator,
|
|
357
357
|
unsafe_undefined: !0,
|
358
358
|
sequences: !1
|
359
359
|
},
|
360
|
-
format: { semicolons: !1 },
|
360
|
+
format: { semicolons: !1, wrap_func_args: !1 },
|
361
361
|
keep_classnames: !mangleNames,
|
362
362
|
keep_fnames: !mangleNames
|
363
363
|
})
|
@@ -422,7 +422,7 @@ const { default: generate } = babelGenerator,
|
|
422
422
|
if ("ArrayExpression" == element.type) {
|
423
423
|
const childArray = []
|
424
424
|
if (!parseArrayExpression(element, childArray)) return !1
|
425
|
-
|
425
|
+
o.push(childArray)
|
426
426
|
} else if ("ObjectExpression" == element.type) {
|
427
427
|
const childObject = {}
|
428
428
|
if (!parseObjectExpression(element, childObject)) return !1
|
@@ -111,39 +111,34 @@ const { default: traverse } = babelTraverse,
|
|
111
111
|
}
|
112
112
|
}
|
113
113
|
let detectedSeclevel = 4
|
114
|
-
const
|
115
|
-
|
116
|
-
|
117
|
-
|
118
|
-
|
119
|
-
|
120
|
-
|
121
|
-
|
122
|
-
|
123
|
-
|
124
|
-
assert(
|
125
|
-
/^[_a-z][\d_a-z]{0,24}$/.test(referencePath.parentPath.parentPath.node.property.name),
|
126
|
-
`invalid script name "${referencePath.parentPath.parentPath.node.property.name}" in subscript`
|
127
|
-
)
|
128
|
-
"CallExpression" == referencePath.parentPath.parentPath.parentPath?.type ?
|
129
|
-
referencePath.parentPath.parentPath.replaceWith(
|
130
|
-
t.identifier(
|
131
|
-
`$${uniqueID}$SUBSCRIPT$${referencePath.parent.property.name}$${referencePath.parentPath.parentPath.node.property.name}$`
|
132
|
-
)
|
114
|
+
const neededSubscriptLets = new Set(),
|
115
|
+
processFakeSubscriptObject = fakeSubscriptObjectName => {
|
116
|
+
for (const referencePath of getReferencePathsToGlobal(fakeSubscriptObjectName, program)) {
|
117
|
+
assert("MemberExpression" == referencePath.parent.type)
|
118
|
+
assert("Identifier" == referencePath.parent.property.type)
|
119
|
+
assert("MemberExpression" == referencePath.parentPath.parentPath?.node.type)
|
120
|
+
assert("Identifier" == referencePath.parentPath.parentPath.node.property.type)
|
121
|
+
assert(
|
122
|
+
/^[_a-z][\d_a-z]{0,24}$/.test(referencePath.parent.property.name),
|
123
|
+
`invalid user "${referencePath.parent.property.name}" in subscript`
|
133
124
|
)
|
134
|
-
|
135
|
-
|
136
|
-
|
137
|
-
|
138
|
-
|
139
|
-
|
140
|
-
|
141
|
-
|
125
|
+
assert(
|
126
|
+
/^[_a-z][\d_a-z]{0,24}$/.test(referencePath.parentPath.parentPath.node.property.name),
|
127
|
+
`invalid script name "${referencePath.parentPath.parentPath.node.property.name}" in subscript`
|
128
|
+
)
|
129
|
+
if ("CallExpression" == referencePath.parentPath.parentPath.parentPath?.type)
|
130
|
+
referencePath.parentPath.parentPath.replaceWith(
|
131
|
+
t.identifier(
|
132
|
+
`$${uniqueID}$SUBSCRIPT$${referencePath.parent.property.name}$${referencePath.parentPath.parentPath.node.property.name}$`
|
142
133
|
)
|
143
134
|
)
|
144
|
-
|
135
|
+
else {
|
136
|
+
const name = `${referencePath.parent.property.name}$${referencePath.parentPath.parentPath.node.property.name}`
|
137
|
+
referencePath.parentPath.parentPath.replaceWith(t.identifier(`_${uniqueID}_SUBSCRIPT_${name}_`))
|
138
|
+
neededSubscriptLets.add(name)
|
139
|
+
}
|
140
|
+
}
|
145
141
|
}
|
146
|
-
}
|
147
142
|
for (const fakeSubscriptObjectName of ["$fs", "$4s", "$s"])
|
148
143
|
program.scope.hasGlobal(fakeSubscriptObjectName) && processFakeSubscriptObject(fakeSubscriptObjectName)
|
149
144
|
for (const fakeSubscriptObjectName of ["$hs", "$3s"])
|
@@ -167,6 +162,7 @@ const { default: traverse } = babelTraverse,
|
|
167
162
|
processFakeSubscriptObject(fakeSubscriptObjectName)
|
168
163
|
}
|
169
164
|
seclevel = Math.min(seclevel, detectedSeclevel)
|
165
|
+
const neededDbMethodLets = new Set()
|
170
166
|
if (program.scope.hasGlobal("$db"))
|
171
167
|
for (const referencePath of getReferencePathsToGlobal("$db", program)) {
|
172
168
|
assert("MemberExpression" == referencePath.parentPath.node.type)
|
@@ -176,44 +172,24 @@ const { default: traverse } = babelTraverse,
|
|
176
172
|
validDBMethods.includes(databaseOpMethodName),
|
177
173
|
`invalid db method "${databaseOpMethodName}", valid db methods are "${validDBMethods.join('", "')}"`
|
178
174
|
)
|
179
|
-
"CallExpression" == referencePath.parentPath.parentPath?.type
|
175
|
+
if ("CallExpression" == referencePath.parentPath.parentPath?.type)
|
180
176
|
referencePath.parentPath.replaceWith(t.identifier(`$${uniqueID}$DB$${databaseOpMethodName}$`))
|
181
|
-
|
182
|
-
referencePath.parentPath.replaceWith(
|
183
|
-
t.arrowFunctionExpression(
|
184
|
-
[],
|
185
|
-
t.callExpression(t.identifier(`$${uniqueID}$DB$${databaseOpMethodName}$`), [])
|
186
|
-
)
|
187
|
-
)
|
188
|
-
: "i" == databaseOpMethodName || "r" == databaseOpMethodName ?
|
177
|
+
else {
|
189
178
|
referencePath.parentPath.replaceWith(
|
190
|
-
t.
|
191
|
-
[t.identifier("a")],
|
192
|
-
t.callExpression(t.identifier(`$${uniqueID}$DB$${databaseOpMethodName}$`), [
|
193
|
-
t.identifier("a")
|
194
|
-
])
|
195
|
-
)
|
196
|
-
)
|
197
|
-
: referencePath.parentPath.replaceWith(
|
198
|
-
t.arrowFunctionExpression(
|
199
|
-
[t.identifier("a"), t.identifier("b")],
|
200
|
-
t.callExpression(t.identifier(`$${uniqueID}$DB$${databaseOpMethodName}$`), [
|
201
|
-
t.identifier("a"),
|
202
|
-
t.identifier("b")
|
203
|
-
])
|
204
|
-
)
|
179
|
+
t.identifier(`_${uniqueID}_CONSOLE_METHOD_${databaseOpMethodName}_`)
|
205
180
|
)
|
181
|
+
neededDbMethodLets.add(databaseOpMethodName)
|
182
|
+
}
|
206
183
|
}
|
184
|
+
let needDebugLet = !1
|
207
185
|
if (program.scope.hasGlobal("$D"))
|
208
186
|
for (const referencePath of getReferencePathsToGlobal("$D", program))
|
209
|
-
"CallExpression" == referencePath.parentPath.type
|
187
|
+
if ("CallExpression" == referencePath.parentPath.type)
|
210
188
|
referencePath.replaceWith(t.identifier(`$${uniqueID}$DEBUG$`))
|
211
|
-
|
212
|
-
|
213
|
-
|
214
|
-
|
215
|
-
)
|
216
|
-
)
|
189
|
+
else {
|
190
|
+
referencePath.replaceWith(t.identifier(`_${uniqueID}_DEBUG_`))
|
191
|
+
needDebugLet = !0
|
192
|
+
}
|
217
193
|
if (program.scope.hasGlobal("$FMCL"))
|
218
194
|
for (const referencePath of getReferencePathsToGlobal("$FMCL", program))
|
219
195
|
referencePath.replaceWith(t.identifier(`$${uniqueID}$FMCL$`))
|
@@ -223,8 +199,7 @@ const { default: traverse } = babelTraverse,
|
|
223
199
|
if (program.scope.hasGlobal("_SECLEVEL"))
|
224
200
|
for (const referencePath of getReferencePathsToGlobal("_SECLEVEL", program))
|
225
201
|
referencePath.replaceWith(t.numericLiteral(seclevel))
|
226
|
-
let needGetPrototypeOf = !1
|
227
|
-
needSetPrototypeOf = !1
|
202
|
+
let needGetPrototypeOf = !1
|
228
203
|
if (program.scope.hasGlobal("Object"))
|
229
204
|
for (const referencePath of getReferencePathsToGlobal("Object", program))
|
230
205
|
if ("MemberExpression" == referencePath.parent.type && !referencePath.parent.computed) {
|
@@ -232,11 +207,18 @@ const { default: traverse } = babelTraverse,
|
|
232
207
|
if ("getPrototypeOf" == referencePath.parent.property.name) {
|
233
208
|
referencePath.parentPath.replaceWith(t.identifier(`_${uniqueID}_GET_PROTOTYPE_OF_`))
|
234
209
|
needGetPrototypeOf = !0
|
235
|
-
} else if ("setPrototypeOf" == referencePath.parent.property.name) {
|
236
|
-
referencePath.parentPath.replaceWith(t.identifier(`_${uniqueID}_SET_PROTOTYPE_OF_`))
|
237
|
-
needSetPrototypeOf = !0
|
238
210
|
}
|
239
211
|
}
|
212
|
+
const consoleMethodsReferenced = new Set()
|
213
|
+
if (program.scope.hasGlobal("console"))
|
214
|
+
for (const referencePath of getReferencePathsToGlobal("console", program))
|
215
|
+
if ("MemberExpression" == referencePath.parent.type && !referencePath.parent.computed) {
|
216
|
+
assert("Identifier" == referencePath.parent.property.type)
|
217
|
+
referencePath.parentPath.replaceWith(
|
218
|
+
t.identifier(`_${uniqueID}_CONSOLE_METHOD_${referencePath.parent.property.name}_`)
|
219
|
+
)
|
220
|
+
consoleMethodsReferenced.add(referencePath.parent.property.name)
|
221
|
+
}
|
240
222
|
const lastStatement = program.node.body.at(-1)
|
241
223
|
let exportDefaultName
|
242
224
|
assert(lastStatement, "program is empty")
|
@@ -410,7 +392,7 @@ const { default: traverse } = babelTraverse,
|
|
410
392
|
} else globalBlockVariables.add(declarator.id.name)
|
411
393
|
} else if ("ClassDeclaration" == globalBlockStatement.type) {
|
412
394
|
program.scope.crawl()
|
413
|
-
assert(globalBlockStatement.id, "src/processScript/transform.ts:
|
395
|
+
assert(globalBlockStatement.id, "src/processScript/transform.ts:544:37")
|
414
396
|
if (program.scope.hasGlobal(globalBlockStatement.id.name)) {
|
415
397
|
globalBlock.body.splice(globalBlockIndex, 1)
|
416
398
|
const [globalBlockPath] = program.unshiftContainer("body", globalBlock),
|
@@ -471,29 +453,31 @@ const { default: traverse } = babelTraverse,
|
|
471
453
|
)
|
472
454
|
])
|
473
455
|
)
|
474
|
-
|
456
|
+
needGetPrototypeOf &&
|
475
457
|
mainFunction.body.body.unshift(
|
476
458
|
t.variableDeclaration("let", [
|
477
459
|
t.variableDeclarator(
|
478
|
-
t.
|
460
|
+
t.objectPattern([
|
461
|
+
t.objectProperty(t.identifier("get"), t.identifier(`_${uniqueID}_DUNDER_PROTO_GETTER_`))
|
462
|
+
]),
|
479
463
|
t.callExpression(
|
480
|
-
t.memberExpression(
|
481
|
-
|
482
|
-
t.identifier("
|
483
|
-
|
484
|
-
|
464
|
+
t.memberExpression(t.identifier("Object"), t.identifier("getOwnPropertyDescriptor")),
|
465
|
+
[
|
466
|
+
t.memberExpression(t.identifier("Object"), t.identifier("prototype")),
|
467
|
+
t.stringLiteral("__proto__")
|
468
|
+
]
|
485
469
|
)
|
486
|
-
)
|
487
|
-
])
|
488
|
-
)
|
489
|
-
needGetPrototypeOf &&
|
490
|
-
mainFunction.body.body.unshift(
|
491
|
-
t.variableDeclaration("let", [
|
470
|
+
),
|
492
471
|
t.variableDeclarator(
|
493
472
|
t.identifier(`_${uniqueID}_GET_PROTOTYPE_OF_`),
|
494
473
|
t.callExpression(
|
495
474
|
t.memberExpression(
|
496
|
-
t.memberExpression(
|
475
|
+
t.memberExpression(
|
476
|
+
t.identifier(
|
477
|
+
globalFunctionsUnder7Characters.find(name => !program.scope.hasOwnBinding(name))
|
478
|
+
),
|
479
|
+
t.identifier("call")
|
480
|
+
),
|
497
481
|
t.identifier("bind")
|
498
482
|
),
|
499
483
|
[t.identifier(`_${uniqueID}_DUNDER_PROTO_GETTER_`)]
|
@@ -501,41 +485,69 @@ const { default: traverse } = babelTraverse,
|
|
501
485
|
)
|
502
486
|
])
|
503
487
|
)
|
504
|
-
|
488
|
+
consoleMethodsReferenced.size &&
|
489
|
+
mainFunction.body.body.unshift(
|
490
|
+
t.variableDeclaration(
|
491
|
+
"let",
|
492
|
+
[...consoleMethodsReferenced].map(name =>
|
493
|
+
t.variableDeclarator(
|
494
|
+
t.identifier(`_${uniqueID}_CONSOLE_METHOD_${name}_`),
|
495
|
+
t.arrowFunctionExpression(
|
496
|
+
[t.restElement(t.identifier("args"))],
|
497
|
+
t.unaryExpression(
|
498
|
+
"void",
|
499
|
+
t.callExpression(t.identifier(`$${uniqueID}$DEBUG$`), [t.identifier("args")])
|
500
|
+
)
|
501
|
+
)
|
502
|
+
)
|
503
|
+
)
|
504
|
+
)
|
505
|
+
)
|
506
|
+
neededDbMethodLets.size &&
|
507
|
+
mainFunction.body.body.unshift(
|
508
|
+
t.variableDeclaration(
|
509
|
+
"let",
|
510
|
+
[...neededDbMethodLets].map(name => {
|
511
|
+
const getArgs = () =>
|
512
|
+
"ObjectId" == name ? []
|
513
|
+
: "i" == name || "r" == name ? [t.identifier("a")]
|
514
|
+
: [t.identifier("a"), t.identifier("b")]
|
515
|
+
return t.variableDeclarator(
|
516
|
+
t.identifier(`_${uniqueID}_CONSOLE_METHOD_${name}_`),
|
517
|
+
t.arrowFunctionExpression(
|
518
|
+
getArgs(),
|
519
|
+
t.callExpression(t.identifier(`$${uniqueID}$DB$${name}$`), getArgs())
|
520
|
+
)
|
521
|
+
)
|
522
|
+
})
|
523
|
+
)
|
524
|
+
)
|
525
|
+
needDebugLet &&
|
505
526
|
mainFunction.body.body.unshift(
|
506
527
|
t.variableDeclaration("let", [
|
507
528
|
t.variableDeclarator(
|
508
|
-
t.
|
509
|
-
|
510
|
-
needSetPrototypeOf ?
|
511
|
-
[
|
512
|
-
t.objectProperty(
|
513
|
-
t.identifier("get"),
|
514
|
-
t.identifier(`_${uniqueID}_DUNDER_PROTO_GETTER_`)
|
515
|
-
),
|
516
|
-
t.objectProperty(
|
517
|
-
t.identifier("set"),
|
518
|
-
t.identifier(`_${uniqueID}_DUNDER_PROTO_SETTER_`)
|
519
|
-
)
|
520
|
-
]
|
521
|
-
: [
|
522
|
-
t.objectProperty(
|
523
|
-
t.identifier("get"),
|
524
|
-
t.identifier(`_${uniqueID}_DUNDER_PROTO_GETTER_`)
|
525
|
-
)
|
526
|
-
]
|
527
|
-
: [t.objectProperty(t.identifier("set"), t.identifier(`_${uniqueID}_DUNDER_PROTO_SETTER_`))]
|
528
|
-
),
|
529
|
-
t.callExpression(
|
530
|
-
t.memberExpression(t.identifier("Object"), t.identifier("getOwnPropertyDescriptor")),
|
531
|
-
[
|
532
|
-
t.memberExpression(t.identifier("Object"), t.identifier("prototype")),
|
533
|
-
t.stringLiteral("__proto__")
|
534
|
-
]
|
535
|
-
)
|
529
|
+
t.identifier(`_${uniqueID}_DEBUG_`),
|
530
|
+
t.callExpression(t.identifier(`$${uniqueID}$DEBUG$`), [t.identifier("a")])
|
536
531
|
)
|
537
532
|
])
|
538
533
|
)
|
534
|
+
neededSubscriptLets.size &&
|
535
|
+
mainFunction.body.body.unshift(
|
536
|
+
t.variableDeclaration(
|
537
|
+
"let",
|
538
|
+
[...neededSubscriptLets].map(name =>
|
539
|
+
t.variableDeclarator(
|
540
|
+
t.identifier(`_${uniqueID}_SUBSCRIPT_${name}_`),
|
541
|
+
t.arrowFunctionExpression(
|
542
|
+
[t.restElement(t.identifier("args"))],
|
543
|
+
t.callExpression(t.identifier(`$${uniqueID}$SUBSCRIPT$${name}$`), [
|
544
|
+
t.spreadElement(t.identifier("args"))
|
545
|
+
])
|
546
|
+
)
|
547
|
+
)
|
548
|
+
)
|
549
|
+
)
|
550
|
+
)
|
539
551
|
traverse(file, {
|
540
552
|
BlockStatement({ node: blockStatement }) {
|
541
553
|
for (const [index, functionDeclaration] of blockStatement.body.entries())
|
package/tsconfig.tsbuildinfo
CHANGED
@@ -1 +1 @@
|
|
1
|
-
{"program":{"fileNames":["../../../../../../usr/local/lib/node_modules/typescript/lib/lib.es5.d.ts","../../../../../../usr/local/lib/node_modules/typescript/lib/lib.es2015.d.ts","../../../../../../usr/local/lib/node_modules/typescript/lib/lib.es2016.d.ts","../../../../../../usr/local/lib/node_modules/typescript/lib/lib.es2017.d.ts","../../../../../../usr/local/lib/node_modules/typescript/lib/lib.es2018.d.ts","../../../../../../usr/local/lib/node_modules/typescript/lib/lib.es2019.d.ts","../../../../../../usr/local/lib/node_modules/typescript/lib/lib.es2020.d.ts","../../../../../../usr/local/lib/node_modules/typescript/lib/lib.es2021.d.ts","../../../../../../usr/local/lib/node_modules/typescript/lib/lib.es2022.d.ts","../../../../../../usr/local/lib/node_modules/typescript/lib/lib.dom.d.ts","../../../../../../usr/local/lib/node_modules/typescript/lib/lib.dom.iterable.d.ts","../../../../../../usr/local/lib/node_modules/typescript/lib/lib.dom.asynciterable.d.ts","../../../../../../usr/local/lib/node_modules/typescript/lib/lib.webworker.importscripts.d.ts","../../../../../../usr/local/lib/node_modules/typescript/lib/lib.scripthost.d.ts","../../../../../../usr/local/lib/node_modules/typescript/lib/lib.es2015.core.d.ts","../../../../../../usr/local/lib/node_modules/typescript/lib/lib.es2015.collection.d.ts","../../../../../../usr/local/lib/node_modules/typescript/lib/lib.es2015.generator.d.ts","../../../../../../usr/local/lib/node_modules/typescript/lib/lib.es2015.iterable.d.ts","../../../../../../usr/local/lib/node_modules/typescript/lib/lib.es2015.promise.d.ts","../../../../../../usr/local/lib/node_modules/typescript/lib/lib.es2015.proxy.d.ts","../../../../../../usr/local/lib/node_modules/typescript/lib/lib.es2015.reflect.d.ts","../../../../../../usr/local/lib/node_modules/typescript/lib/lib.es2015.symbol.d.ts","../../../../../../usr/local/lib/node_modules/typescript/lib/lib.es2015.symbol.wellknown.d.ts","../../../../../../usr/local/lib/node_modules/typescript/lib/lib.es2016.array.include.d.ts","../../../../../../usr/local/lib/node_modules/typescript/lib/lib.es2016.intl.d.ts","../../../../../../usr/local/lib/node_modules/typescript/lib/lib.es2017.date.d.ts","../../../../../../usr/local/lib/node_modules/typescript/lib/lib.es2017.object.d.ts","../../../../../../usr/local/lib/node_modules/typescript/lib/lib.es2017.sharedmemory.d.ts","../../../../../../usr/local/lib/node_modules/typescript/lib/lib.es2017.string.d.ts","../../../../../../usr/local/lib/node_modules/typescript/lib/lib.es2017.intl.d.ts","../../../../../../usr/local/lib/node_modules/typescript/lib/lib.es2017.typedarrays.d.ts","../../../../../../usr/local/lib/node_modules/typescript/lib/lib.es2018.asyncgenerator.d.ts","../../../../../../usr/local/lib/node_modules/typescript/lib/lib.es2018.asynciterable.d.ts","../../../../../../usr/local/lib/node_modules/typescript/lib/lib.es2018.intl.d.ts","../../../../../../usr/local/lib/node_modules/typescript/lib/lib.es2018.promise.d.ts","../../../../../../usr/local/lib/node_modules/typescript/lib/lib.es2018.regexp.d.ts","../../../../../../usr/local/lib/node_modules/typescript/lib/lib.es2019.array.d.ts","../../../../../../usr/local/lib/node_modules/typescript/lib/lib.es2019.object.d.ts","../../../../../../usr/local/lib/node_modules/typescript/lib/lib.es2019.string.d.ts","../../../../../../usr/local/lib/node_modules/typescript/lib/lib.es2019.symbol.d.ts","../../../../../../usr/local/lib/node_modules/typescript/lib/lib.es2019.intl.d.ts","../../../../../../usr/local/lib/node_modules/typescript/lib/lib.es2020.bigint.d.ts","../../../../../../usr/local/lib/node_modules/typescript/lib/lib.es2020.date.d.ts","../../../../../../usr/local/lib/node_modules/typescript/lib/lib.es2020.promise.d.ts","../../../../../../usr/local/lib/node_modules/typescript/lib/lib.es2020.sharedmemory.d.ts","../../../../../../usr/local/lib/node_modules/typescript/lib/lib.es2020.string.d.ts","../../../../../../usr/local/lib/node_modules/typescript/lib/lib.es2020.symbol.wellknown.d.ts","../../../../../../usr/local/lib/node_modules/typescript/lib/lib.es2020.intl.d.ts","../../../../../../usr/local/lib/node_modules/typescript/lib/lib.es2020.number.d.ts","../../../../../../usr/local/lib/node_modules/typescript/lib/lib.es2021.promise.d.ts","../../../../../../usr/local/lib/node_modules/typescript/lib/lib.es2021.string.d.ts","../../../../../../usr/local/lib/node_modules/typescript/lib/lib.es2021.weakref.d.ts","../../../../../../usr/local/lib/node_modules/typescript/lib/lib.es2021.intl.d.ts","../../../../../../usr/local/lib/node_modules/typescript/lib/lib.es2022.array.d.ts","../../../../../../usr/local/lib/node_modules/typescript/lib/lib.es2022.error.d.ts","../../../../../../usr/local/lib/node_modules/typescript/lib/lib.es2022.intl.d.ts","../../../../../../usr/local/lib/node_modules/typescript/lib/lib.es2022.object.d.ts","../../../../../../usr/local/lib/node_modules/typescript/lib/lib.es2022.sharedmemory.d.ts","../../../../../../usr/local/lib/node_modules/typescript/lib/lib.es2022.string.d.ts","../../../../../../usr/local/lib/node_modules/typescript/lib/lib.es2022.regexp.d.ts","../../../../../../usr/local/lib/node_modules/typescript/lib/lib.esnext.intl.d.ts","../../../../../../usr/local/lib/node_modules/typescript/lib/lib.decorators.d.ts","../../../../../../usr/local/lib/node_modules/typescript/lib/lib.decorators.legacy.d.ts","../../../../../../usr/local/lib/node_modules/typescript/lib/lib.es2022.full.d.ts","../src/constants.ts","../src/env.d.ts","../src/generateTypeDeclaration.ts","../node_modules/.pnpm/@babel+types@7.24.0/node_modules/@babel/types/lib/index.d.ts","../node_modules/.pnpm/@types+babel__generator@7.6.8/node_modules/@types/babel__generator/index.d.ts","../node_modules/.pnpm/@babel+parser@7.24.4/node_modules/@babel/parser/typings/babel-parser.d.ts","../node_modules/.pnpm/@types+babel__template@7.4.4/node_modules/@types/babel__template/index.d.ts","../node_modules/.pnpm/@types+babel__traverse@7.20.5/node_modules/@types/babel__traverse/index.d.ts","../node_modules/.pnpm/@types+babel__core@7.20.5/node_modules/@types/babel__core/index.d.ts","../node_modules/.pnpm/@types+estree@1.0.5/node_modules/@types/estree/index.d.ts","../node_modules/.pnpm/rollup@4.14.2/node_modules/rollup/dist/rollup.d.ts","../node_modules/.pnpm/@rollup+pluginutils@5.1.0_rollup@4.14.2/node_modules/@rollup/pluginutils/types/index.d.ts","../node_modules/.pnpm/@rollup+plugin-babel@6.0.4_@babel+core@7.24.4_@types+babel__core@7.20.5_rollup@4.14.2/node_modules/@rollup/plugin-babel/types/index.d.ts","../node_modules/.pnpm/@rollup+plugin-commonjs@25.0.7_rollup@4.14.2/node_modules/@rollup/plugin-commonjs/types/index.d.ts","../node_modules/.pnpm/@rollup+plugin-json@6.1.0_rollup@4.14.2/node_modules/@rollup/plugin-json/types/index.d.ts","../node_modules/.pnpm/@rollup+plugin-node-resolve@15.2.3_rollup@4.14.2/node_modules/@rollup/plugin-node-resolve/types/index.d.ts","../node_modules/.pnpm/@samual+lib@0.10.1/node_modules/@samual/lib/index.d.ts","../node_modules/.pnpm/@types+node@20.12.7/node_modules/@types/node/assert.d.ts","../node_modules/.pnpm/@types+node@20.12.7/node_modules/@types/node/assert/strict.d.ts","../node_modules/.pnpm/undici-types@5.26.5/node_modules/undici-types/header.d.ts","../node_modules/.pnpm/undici-types@5.26.5/node_modules/undici-types/readable.d.ts","../node_modules/.pnpm/undici-types@5.26.5/node_modules/undici-types/file.d.ts","../node_modules/.pnpm/undici-types@5.26.5/node_modules/undici-types/fetch.d.ts","../node_modules/.pnpm/undici-types@5.26.5/node_modules/undici-types/formdata.d.ts","../node_modules/.pnpm/undici-types@5.26.5/node_modules/undici-types/connector.d.ts","../node_modules/.pnpm/undici-types@5.26.5/node_modules/undici-types/client.d.ts","../node_modules/.pnpm/undici-types@5.26.5/node_modules/undici-types/errors.d.ts","../node_modules/.pnpm/undici-types@5.26.5/node_modules/undici-types/dispatcher.d.ts","../node_modules/.pnpm/undici-types@5.26.5/node_modules/undici-types/global-dispatcher.d.ts","../node_modules/.pnpm/undici-types@5.26.5/node_modules/undici-types/global-origin.d.ts","../node_modules/.pnpm/undici-types@5.26.5/node_modules/undici-types/pool-stats.d.ts","../node_modules/.pnpm/undici-types@5.26.5/node_modules/undici-types/pool.d.ts","../node_modules/.pnpm/undici-types@5.26.5/node_modules/undici-types/handlers.d.ts","../node_modules/.pnpm/undici-types@5.26.5/node_modules/undici-types/balanced-pool.d.ts","../node_modules/.pnpm/undici-types@5.26.5/node_modules/undici-types/agent.d.ts","../node_modules/.pnpm/undici-types@5.26.5/node_modules/undici-types/mock-interceptor.d.ts","../node_modules/.pnpm/undici-types@5.26.5/node_modules/undici-types/mock-agent.d.ts","../node_modules/.pnpm/undici-types@5.26.5/node_modules/undici-types/mock-client.d.ts","../node_modules/.pnpm/undici-types@5.26.5/node_modules/undici-types/mock-pool.d.ts","../node_modules/.pnpm/undici-types@5.26.5/node_modules/undici-types/mock-errors.d.ts","../node_modules/.pnpm/undici-types@5.26.5/node_modules/undici-types/proxy-agent.d.ts","../node_modules/.pnpm/undici-types@5.26.5/node_modules/undici-types/api.d.ts","../node_modules/.pnpm/undici-types@5.26.5/node_modules/undici-types/cookies.d.ts","../node_modules/.pnpm/undici-types@5.26.5/node_modules/undici-types/patch.d.ts","../node_modules/.pnpm/undici-types@5.26.5/node_modules/undici-types/filereader.d.ts","../node_modules/.pnpm/undici-types@5.26.5/node_modules/undici-types/diagnostics-channel.d.ts","../node_modules/.pnpm/undici-types@5.26.5/node_modules/undici-types/websocket.d.ts","../node_modules/.pnpm/undici-types@5.26.5/node_modules/undici-types/content-type.d.ts","../node_modules/.pnpm/undici-types@5.26.5/node_modules/undici-types/cache.d.ts","../node_modules/.pnpm/undici-types@5.26.5/node_modules/undici-types/interceptors.d.ts","../node_modules/.pnpm/undici-types@5.26.5/node_modules/undici-types/index.d.ts","../node_modules/.pnpm/@types+node@20.12.7/node_modules/@types/node/globals.d.ts","../node_modules/.pnpm/@types+node@20.12.7/node_modules/@types/node/async_hooks.d.ts","../node_modules/.pnpm/@types+node@20.12.7/node_modules/@types/node/buffer.d.ts","../node_modules/.pnpm/@types+node@20.12.7/node_modules/@types/node/child_process.d.ts","../node_modules/.pnpm/@types+node@20.12.7/node_modules/@types/node/cluster.d.ts","../node_modules/.pnpm/@types+node@20.12.7/node_modules/@types/node/console.d.ts","../node_modules/.pnpm/@types+node@20.12.7/node_modules/@types/node/constants.d.ts","../node_modules/.pnpm/@types+node@20.12.7/node_modules/@types/node/crypto.d.ts","../node_modules/.pnpm/@types+node@20.12.7/node_modules/@types/node/dgram.d.ts","../node_modules/.pnpm/@types+node@20.12.7/node_modules/@types/node/diagnostics_channel.d.ts","../node_modules/.pnpm/@types+node@20.12.7/node_modules/@types/node/dns.d.ts","../node_modules/.pnpm/@types+node@20.12.7/node_modules/@types/node/dns/promises.d.ts","../node_modules/.pnpm/@types+node@20.12.7/node_modules/@types/node/domain.d.ts","../node_modules/.pnpm/@types+node@20.12.7/node_modules/@types/node/dom-events.d.ts","../node_modules/.pnpm/@types+node@20.12.7/node_modules/@types/node/events.d.ts","../node_modules/.pnpm/@types+node@20.12.7/node_modules/@types/node/fs.d.ts","../node_modules/.pnpm/@types+node@20.12.7/node_modules/@types/node/fs/promises.d.ts","../node_modules/.pnpm/@types+node@20.12.7/node_modules/@types/node/http.d.ts","../node_modules/.pnpm/@types+node@20.12.7/node_modules/@types/node/http2.d.ts","../node_modules/.pnpm/@types+node@20.12.7/node_modules/@types/node/https.d.ts","../node_modules/.pnpm/@types+node@20.12.7/node_modules/@types/node/inspector.d.ts","../node_modules/.pnpm/@types+node@20.12.7/node_modules/@types/node/module.d.ts","../node_modules/.pnpm/@types+node@20.12.7/node_modules/@types/node/net.d.ts","../node_modules/.pnpm/@types+node@20.12.7/node_modules/@types/node/os.d.ts","../node_modules/.pnpm/@types+node@20.12.7/node_modules/@types/node/path.d.ts","../node_modules/.pnpm/@types+node@20.12.7/node_modules/@types/node/perf_hooks.d.ts","../node_modules/.pnpm/@types+node@20.12.7/node_modules/@types/node/process.d.ts","../node_modules/.pnpm/@types+node@20.12.7/node_modules/@types/node/punycode.d.ts","../node_modules/.pnpm/@types+node@20.12.7/node_modules/@types/node/querystring.d.ts","../node_modules/.pnpm/@types+node@20.12.7/node_modules/@types/node/readline.d.ts","../node_modules/.pnpm/@types+node@20.12.7/node_modules/@types/node/readline/promises.d.ts","../node_modules/.pnpm/@types+node@20.12.7/node_modules/@types/node/repl.d.ts","../node_modules/.pnpm/@types+node@20.12.7/node_modules/@types/node/sea.d.ts","../node_modules/.pnpm/@types+node@20.12.7/node_modules/@types/node/stream.d.ts","../node_modules/.pnpm/@types+node@20.12.7/node_modules/@types/node/stream/promises.d.ts","../node_modules/.pnpm/@types+node@20.12.7/node_modules/@types/node/stream/consumers.d.ts","../node_modules/.pnpm/@types+node@20.12.7/node_modules/@types/node/stream/web.d.ts","../node_modules/.pnpm/@types+node@20.12.7/node_modules/@types/node/string_decoder.d.ts","../node_modules/.pnpm/@types+node@20.12.7/node_modules/@types/node/test.d.ts","../node_modules/.pnpm/@types+node@20.12.7/node_modules/@types/node/timers.d.ts","../node_modules/.pnpm/@types+node@20.12.7/node_modules/@types/node/timers/promises.d.ts","../node_modules/.pnpm/@types+node@20.12.7/node_modules/@types/node/tls.d.ts","../node_modules/.pnpm/@types+node@20.12.7/node_modules/@types/node/trace_events.d.ts","../node_modules/.pnpm/@types+node@20.12.7/node_modules/@types/node/tty.d.ts","../node_modules/.pnpm/@types+node@20.12.7/node_modules/@types/node/url.d.ts","../node_modules/.pnpm/@types+node@20.12.7/node_modules/@types/node/util.d.ts","../node_modules/.pnpm/@types+node@20.12.7/node_modules/@types/node/v8.d.ts","../node_modules/.pnpm/@types+node@20.12.7/node_modules/@types/node/vm.d.ts","../node_modules/.pnpm/@types+node@20.12.7/node_modules/@types/node/wasi.d.ts","../node_modules/.pnpm/@types+node@20.12.7/node_modules/@types/node/worker_threads.d.ts","../node_modules/.pnpm/@types+node@20.12.7/node_modules/@types/node/zlib.d.ts","../node_modules/.pnpm/@types+node@20.12.7/node_modules/@types/node/globals.global.d.ts","../node_modules/.pnpm/@types+node@20.12.7/node_modules/@types/node/index.d.ts","../node_modules/.pnpm/@samual+lib@0.10.1/node_modules/@samual/lib/assert.d.ts","../node_modules/.pnpm/prettier@3.2.5/node_modules/prettier/doc.d.ts","../node_modules/.pnpm/prettier@3.2.5/node_modules/prettier/index.d.ts","../node_modules/.pnpm/@samual+lib@0.10.1/node_modules/@samual/lib/countHackmudCharacters.d.ts","../node_modules/.pnpm/@samual+lib@0.10.1/node_modules/@samual/lib/spliceString.d.ts","../node_modules/.pnpm/acorn@8.11.3/node_modules/acorn/dist/acorn.d.ts","../node_modules/.pnpm/@jridgewell+trace-mapping@0.3.25/node_modules/@jridgewell/trace-mapping/dist/types/sourcemap-segment.d.ts","../node_modules/.pnpm/@jridgewell+trace-mapping@0.3.25/node_modules/@jridgewell/trace-mapping/dist/types/types.d.ts","../node_modules/.pnpm/@jridgewell+trace-mapping@0.3.25/node_modules/@jridgewell/trace-mapping/dist/types/any-map.d.ts","../node_modules/.pnpm/@jridgewell+trace-mapping@0.3.25/node_modules/@jridgewell/trace-mapping/dist/types/trace-mapping.d.ts","../node_modules/.pnpm/@jridgewell+gen-mapping@0.3.5/node_modules/@jridgewell/gen-mapping/dist/types/sourcemap-segment.d.ts","../node_modules/.pnpm/@jridgewell+gen-mapping@0.3.5/node_modules/@jridgewell/gen-mapping/dist/types/types.d.ts","../node_modules/.pnpm/@jridgewell+gen-mapping@0.3.5/node_modules/@jridgewell/gen-mapping/dist/types/gen-mapping.d.ts","../node_modules/.pnpm/@jridgewell+source-map@0.3.6/node_modules/@jridgewell/source-map/dist/types/source-map.d.ts","../node_modules/.pnpm/terser@5.30.3/node_modules/terser/tools/terser.d.ts","../src/processScript/shared.ts","../src/processScript/minify.ts","../src/processScript/postprocess.ts","../node_modules/.pnpm/import-meta-resolve@4.0.0/node_modules/import-meta-resolve/lib/errors.d.ts","../node_modules/.pnpm/import-meta-resolve@4.0.0/node_modules/import-meta-resolve/lib/package-json-reader.d.ts","../node_modules/.pnpm/import-meta-resolve@4.0.0/node_modules/import-meta-resolve/lib/package-config.d.ts","../node_modules/.pnpm/import-meta-resolve@4.0.0/node_modules/import-meta-resolve/lib/resolve.d.ts","../node_modules/.pnpm/import-meta-resolve@4.0.0/node_modules/import-meta-resolve/index.d.ts","../src/processScript/preprocess.ts","../node_modules/.pnpm/@samual+lib@0.10.1/node_modules/@samual/lib/clearObject.d.ts","../src/processScript/transform.ts","../src/processScript/index.ts","../node_modules/.pnpm/@samual+lib@0.10.1/node_modules/@samual/lib/copyFilePersistent.d.ts","../src/pull.ts","../node_modules/.pnpm/@samual+lib@0.10.1/node_modules/@samual/lib/Cache.d.ts","../node_modules/.pnpm/@samual+lib@0.10.1/node_modules/@samual/lib/writeFilePersistent.d.ts","../src/push.ts","../src/syncMacros.ts","../node_modules/.pnpm/anymatch@3.1.3/node_modules/anymatch/index.d.ts","../node_modules/.pnpm/chokidar@3.6.0/node_modules/chokidar/types/index.d.ts","../src/watch.ts","../src/index.ts","../package.json","../node_modules/.pnpm/chalk@5.3.0/node_modules/chalk/source/vendor/ansi-styles/index.d.ts","../node_modules/.pnpm/chalk@5.3.0/node_modules/chalk/source/vendor/supports-color/index.d.ts","../node_modules/.pnpm/chalk@5.3.0/node_modules/chalk/source/index.d.ts","../src/bin/hsm.ts","../node_modules/.pnpm/@types+semver@7.5.8/node_modules/@types/semver/classes/semver.d.ts","../node_modules/.pnpm/@types+semver@7.5.8/node_modules/@types/semver/functions/parse.d.ts","../node_modules/.pnpm/@types+semver@7.5.8/node_modules/@types/semver/functions/valid.d.ts","../node_modules/.pnpm/@types+semver@7.5.8/node_modules/@types/semver/functions/clean.d.ts","../node_modules/.pnpm/@types+semver@7.5.8/node_modules/@types/semver/functions/inc.d.ts","../node_modules/.pnpm/@types+semver@7.5.8/node_modules/@types/semver/functions/diff.d.ts","../node_modules/.pnpm/@types+semver@7.5.8/node_modules/@types/semver/functions/major.d.ts","../node_modules/.pnpm/@types+semver@7.5.8/node_modules/@types/semver/functions/minor.d.ts","../node_modules/.pnpm/@types+semver@7.5.8/node_modules/@types/semver/functions/patch.d.ts","../node_modules/.pnpm/@types+semver@7.5.8/node_modules/@types/semver/functions/prerelease.d.ts","../node_modules/.pnpm/@types+semver@7.5.8/node_modules/@types/semver/functions/compare.d.ts","../node_modules/.pnpm/@types+semver@7.5.8/node_modules/@types/semver/functions/rcompare.d.ts","../node_modules/.pnpm/@types+semver@7.5.8/node_modules/@types/semver/functions/compare-loose.d.ts","../node_modules/.pnpm/@types+semver@7.5.8/node_modules/@types/semver/functions/compare-build.d.ts","../node_modules/.pnpm/@types+semver@7.5.8/node_modules/@types/semver/functions/sort.d.ts","../node_modules/.pnpm/@types+semver@7.5.8/node_modules/@types/semver/functions/rsort.d.ts","../node_modules/.pnpm/@types+semver@7.5.8/node_modules/@types/semver/functions/gt.d.ts","../node_modules/.pnpm/@types+semver@7.5.8/node_modules/@types/semver/functions/lt.d.ts","../node_modules/.pnpm/@types+semver@7.5.8/node_modules/@types/semver/functions/eq.d.ts","../node_modules/.pnpm/@types+semver@7.5.8/node_modules/@types/semver/functions/neq.d.ts","../node_modules/.pnpm/@types+semver@7.5.8/node_modules/@types/semver/functions/gte.d.ts","../node_modules/.pnpm/@types+semver@7.5.8/node_modules/@types/semver/functions/lte.d.ts","../node_modules/.pnpm/@types+semver@7.5.8/node_modules/@types/semver/functions/cmp.d.ts","../node_modules/.pnpm/@types+semver@7.5.8/node_modules/@types/semver/functions/coerce.d.ts","../node_modules/.pnpm/@types+semver@7.5.8/node_modules/@types/semver/classes/comparator.d.ts","../node_modules/.pnpm/@types+semver@7.5.8/node_modules/@types/semver/classes/range.d.ts","../node_modules/.pnpm/@types+semver@7.5.8/node_modules/@types/semver/functions/satisfies.d.ts","../node_modules/.pnpm/@types+semver@7.5.8/node_modules/@types/semver/ranges/max-satisfying.d.ts","../node_modules/.pnpm/@types+semver@7.5.8/node_modules/@types/semver/ranges/min-satisfying.d.ts","../node_modules/.pnpm/@types+semver@7.5.8/node_modules/@types/semver/ranges/to-comparators.d.ts","../node_modules/.pnpm/@types+semver@7.5.8/node_modules/@types/semver/ranges/min-version.d.ts","../node_modules/.pnpm/@types+semver@7.5.8/node_modules/@types/semver/ranges/valid.d.ts","../node_modules/.pnpm/@types+semver@7.5.8/node_modules/@types/semver/ranges/outside.d.ts","../node_modules/.pnpm/@types+semver@7.5.8/node_modules/@types/semver/ranges/gtr.d.ts","../node_modules/.pnpm/@types+semver@7.5.8/node_modules/@types/semver/ranges/ltr.d.ts","../node_modules/.pnpm/@types+semver@7.5.8/node_modules/@types/semver/ranges/intersects.d.ts","../node_modules/.pnpm/@types+semver@7.5.8/node_modules/@types/semver/ranges/simplify.d.ts","../node_modules/.pnpm/@types+semver@7.5.8/node_modules/@types/semver/ranges/subset.d.ts","../node_modules/.pnpm/@types+semver@7.5.8/node_modules/@types/semver/internals/identifiers.d.ts","../node_modules/.pnpm/@types+semver@7.5.8/node_modules/@types/semver/index.d.ts"],"fileInfos":[{"version":"824cb491a40f7e8fdeb56f1df5edf91b23f3e3ee6b4cde84d4a99be32338faee","affectsGlobalScope":true},"45b7ab580deca34ae9729e97c13cfd999df04416a79116c3bfb483804f85ded4","3facaf05f0c5fc569c5649dd359892c98a85557e3e0c847964caeb67076f4d75","9a68c0c07ae2fa71b44384a839b7b8d81662a236d4b9ac30916718f7510b1b2d","5e1c4c362065a6b95ff952c0eab010f04dcd2c3494e813b493ecfd4fcb9fc0d8","68d73b4a11549f9c0b7d352d10e91e5dca8faa3322bfb77b661839c42b1ddec7","5efce4fc3c29ea84e8928f97adec086e3dc876365e0982cc8479a07954a3efd4","feecb1be483ed332fad555aff858affd90a48ab19ba7272ee084704eb7167569","5514e54f17d6d74ecefedc73c504eadffdeda79c7ea205cf9febead32d45c4bc",{"version":"87d693a4920d794a73384b3c779cadcb8548ac6945aa7a925832fe2418c9527a","affectsGlobalScope":true},{"version":"76f838d5d49b65de83bc345c04aa54c62a3cfdb72a477dc0c0fce89a30596c30","affectsGlobalScope":true},{"version":"73e370058f82add1fdbc78ef3d1aab110108f2d5d9c857cb55d3361982347ace","affectsGlobalScope":true},{"version":"80e18897e5884b6723488d4f5652167e7bb5024f946743134ecc4aa4ee731f89","affectsGlobalScope":true},{"version":"cd034f499c6cdca722b60c04b5b1b78e058487a7085a8e0d6fb50809947ee573","affectsGlobalScope":true},{"version":"138fb588d26538783b78d1e3b2c2cc12d55840b97bf5e08bca7f7a174fbe2f17","affectsGlobalScope":true},{"version":"dc2df20b1bcdc8c2d34af4926e2c3ab15ffe1160a63e58b7e09833f616efff44","affectsGlobalScope":true},{"version":"4443e68b35f3332f753eacc66a04ac1d2053b8b035a0e0ac1d455392b5e243b3","affectsGlobalScope":true},{"version":"bc47685641087c015972a3f072480889f0d6c65515f12bd85222f49a98952ed7","affectsGlobalScope":true},{"version":"0dc1e7ceda9b8b9b455c3a2d67b0412feab00bd2f66656cd8850e8831b08b537","affectsGlobalScope":true},{"version":"ce691fb9e5c64efb9547083e4a34091bcbe5bdb41027e310ebba8f7d96a98671","affectsGlobalScope":true},{"version":"8d697a2a929a5fcb38b7a65594020fcef05ec1630804a33748829c5ff53640d0","affectsGlobalScope":true},{"version":"4ff2a353abf8a80ee399af572debb8faab2d33ad38c4b4474cff7f26e7653b8d","affectsGlobalScope":true},{"version":"93495ff27b8746f55d19fcbcdbaccc99fd95f19d057aed1bd2c0cafe1335fbf0","affectsGlobalScope":true},{"version":"6fc23bb8c3965964be8c597310a2878b53a0306edb71d4b5a4dfe760186bcc01","affectsGlobalScope":true},{"version":"ea011c76963fb15ef1cdd7ce6a6808b46322c527de2077b6cfdf23ae6f5f9ec7","affectsGlobalScope":true},{"version":"38f0219c9e23c915ef9790ab1d680440d95419ad264816fa15009a8851e79119","affectsGlobalScope":true},{"version":"bb42a7797d996412ecdc5b2787720de477103a0b2e53058569069a0e2bae6c7e","affectsGlobalScope":true},{"version":"4738f2420687fd85629c9efb470793bb753709c2379e5f85bc1815d875ceadcd","affectsGlobalScope":true},{"version":"2f11ff796926e0832f9ae148008138ad583bd181899ab7dd768a2666700b1893","affectsGlobalScope":true},{"version":"4de680d5bb41c17f7f68e0419412ca23c98d5749dcaaea1896172f06435891fc","affectsGlobalScope":true},{"version":"9fc46429fbe091ac5ad2608c657201eb68b6f1b8341bd6d670047d32ed0a88fa","affectsGlobalScope":true},{"version":"61c37c1de663cf4171e1192466e52c7a382afa58da01b1dc75058f032ddf0839","affectsGlobalScope":true},{"version":"b541a838a13f9234aba650a825393ffc2292dc0fc87681a5d81ef0c96d281e7a","affectsGlobalScope":true},{"version":"b20fe0eca9a4e405f1a5ae24a2b3290b37cf7f21eba6cbe4fc3fab979237d4f3","affectsGlobalScope":true},{"version":"811ec78f7fefcabbda4bfa93b3eb67d9ae166ef95f9bff989d964061cbf81a0c","affectsGlobalScope":true},{"version":"717937616a17072082152a2ef351cb51f98802fb4b2fdabd32399843875974ca","affectsGlobalScope":true},{"version":"d7e7d9b7b50e5f22c915b525acc5a49a7a6584cf8f62d0569e557c5cfc4b2ac2","affectsGlobalScope":true},{"version":"71c37f4c9543f31dfced6c7840e068c5a5aacb7b89111a4364b1d5276b852557","affectsGlobalScope":true},{"version":"576711e016cf4f1804676043e6a0a5414252560eb57de9faceee34d79798c850","affectsGlobalScope":true},{"version":"89c1b1281ba7b8a96efc676b11b264de7a8374c5ea1e6617f11880a13fc56dc6","affectsGlobalScope":true},{"version":"49ed889be54031e1044af0ad2c603d627b8bda8b50c1a68435fe85583901d072","affectsGlobalScope":true},{"version":"e93d098658ce4f0c8a0779e6cab91d0259efb88a318137f686ad76f8410ca270","affectsGlobalScope":true},{"version":"063600664504610fe3e99b717a1223f8b1900087fab0b4cad1496a114744f8df","affectsGlobalScope":true},{"version":"934019d7e3c81950f9a8426d093458b65d5aff2c7c1511233c0fd5b941e608ab","affectsGlobalScope":true},{"version":"bf14a426dbbf1022d11bd08d6b8e709a2e9d246f0c6c1032f3b2edb9a902adbe","affectsGlobalScope":true},{"version":"5e07ed3809d48205d5b985642a59f2eba47c402374a7cf8006b686f79efadcbd","affectsGlobalScope":true},{"version":"2b72d528b2e2fe3c57889ca7baef5e13a56c957b946906d03767c642f386bbc3","affectsGlobalScope":true},{"version":"8073890e29d2f46fdbc19b8d6d2eb9ea58db9a2052f8640af20baff9afbc8640","affectsGlobalScope":true},{"version":"368af93f74c9c932edd84c58883e736c9e3d53cec1fe24c0b0ff451f529ceab1","affectsGlobalScope":true},{"version":"af3dd424cf267428f30ccfc376f47a2c0114546b55c44d8c0f1d57d841e28d74","affectsGlobalScope":true},{"version":"995c005ab91a498455ea8dfb63aa9f83fa2ea793c3d8aa344be4a1678d06d399","affectsGlobalScope":true},{"version":"51e547984877a62227042850456de71a5c45e7fe86b7c975c6e68896c86fa23b","affectsGlobalScope":true},{"version":"956d27abdea9652e8368ce029bb1e0b9174e9678a273529f426df4b3d90abd60","affectsGlobalScope":true},{"version":"4fa6ed14e98aa80b91f61b9805c653ee82af3502dc21c9da5268d3857772ca05","affectsGlobalScope":true},{"version":"e6633e05da3ff36e6da2ec170d0d03ccf33de50ca4dc6f5aeecb572cedd162fb","affectsGlobalScope":true},{"version":"d8670852241d4c6e03f2b89d67497a4bbefe29ecaa5a444e2c11a9b05e6fccc6","affectsGlobalScope":true},{"version":"8444af78980e3b20b49324f4a16ba35024fef3ee069a0eb67616ea6ca821c47a","affectsGlobalScope":true},{"version":"caccc56c72713969e1cfe5c3d44e5bab151544d9d2b373d7dbe5a1e4166652be","affectsGlobalScope":true},{"version":"3287d9d085fbd618c3971944b65b4be57859f5415f495b33a6adc994edd2f004","affectsGlobalScope":true},{"version":"50d53ccd31f6667aff66e3d62adf948879a3a16f05d89882d1188084ee415bbc","affectsGlobalScope":true},{"version":"13f6e6380c78e15e140243dc4be2fa546c287c6d61f4729bc2dd7cf449605471","affectsGlobalScope":true},{"version":"33358442698bb565130f52ba79bfd3d4d484ac85fe33f3cb1759c54d18201393","affectsGlobalScope":true},{"version":"782dec38049b92d4e85c1585fbea5474a219c6984a35b004963b00beb1aab538","affectsGlobalScope":true},"3cbad9a1ba4453443026ed38e4b8be018abb26565fa7c944376463ad9df07c41",{"version":"9581880726f6a7c2ac58f242e0ff574b217544c9715815d557465e0b42beadd0","signature":"e326f4296ab10bbe0d9fc4bbc0ec6bd8ad47e5f3120471aedf482a0704974dab"},{"version":"a5010b48b8e8774342e907222976ed9a102ab61b7237f4c6bc382970a574aaba","affectsGlobalScope":true},{"version":"48da7777fb5b3d49f8bca6e373eeff5230f3df6434fbb16721352e214b5c337a","signature":"a2dc116b16fae95e29d3c0c34ccdce1d0c5222110739a088eb15bfd3d6243859"},"4489c6a9fde8934733aa7df6f7911461ee6e9e4ad092736bd416f6b2cc20b2c6","2c8e55457aaf4902941dfdba4061935922e8ee6e120539c9801cd7b400fae050","8041cfce439ff29d339742389de04c136e3029d6b1817f07b2d7fcbfb7534990","670a76db379b27c8ff42f1ba927828a22862e2ab0b0908e38b671f0e912cc5ed","9d38964b57191567a14b396422c87488cecd48f405c642daa734159875ee81d9","069bebfee29864e3955378107e243508b163e77ab10de6a5ee03ae06939f0bb9","ee7d8894904b465b072be0d2e4b45cf6b887cdba16a467645c4e200982ece7ea",{"version":"ae900471ea16b852ce62c0cd17477ca332af7004045242d41b01a505c678950a","affectsGlobalScope":true},"77b55f8bfab90aa408704132d98b72f8762e2fe955eeda093ace44120d6adc1a","1a51e4b4124e594679e6d180c78744fc71a653498ab2fca15936213ae44988f5","062c4a701f1ae473443a9b9e44db248226679716362b4759b7f5f682a97a5e8c","c730d00be50adc461f9fbf58c6db9cda705939a09409cd87a1856797db87bdf8","a4d75759d36a6e0f3ad9714c580297645982e6e815c589f0477d9e986463ad02","44f6faf4f46620220cacf9757989fcd4a64d56ff9dfd50b5075b889283f8a606","acdc9fb9638a235a69bd270003d8db4d6153ada2b7ccbea741ade36b295e431e","7394959e5a741b185456e1ef5d64599c36c60a323207450991e7a42e08911419","5929864ce17fba74232584d90cb721a89b7ad277220627cc97054ba15a98ea8f","7180c03fd3cb6e22f911ce9ba0f8a7008b1a6ddbe88ccf16a9c8140ef9ac1686","25c8056edf4314820382a5fdb4bb7816999acdcb929c8f75e3f39473b87e85bc","54cb85a47d760da1c13c00add10d26b5118280d44d58e6908d8e89abbd9d7725","3e4825171442666d31c845aeb47fcd34b62e14041bb353ae2b874285d78482aa","c6fd2c5a395f2432786c9cb8deb870b9b0e8ff7e22c029954fabdd692bff6195","a967bfe3ad4e62243eb604bf956101e4c740f5921277c60debaf325c1320bf88","e9775e97ac4877aebf963a0289c81abe76d1ec9a2a7778dbe637e5151f25c5f3","471e1da5a78350bc55ef8cef24eb3aca6174143c281b8b214ca2beda51f5e04a","cadc8aced301244057c4e7e73fbcae534b0f5b12a37b150d80e5a45aa4bebcbd","385aab901643aa54e1c36f5ef3107913b10d1b5bb8cbcd933d4263b80a0d7f20","9670d44354bab9d9982eca21945686b5c24a3f893db73c0dae0fd74217a4c219","db3435f3525cd785bf21ec6769bf8da7e8a776be1a99e2e7efb5f244a2ef5fee","c3b170c45fc031db31f782e612adf7314b167e60439d304b49e704010e7bafe5","40383ebef22b943d503c6ce2cb2e060282936b952a01bea5f9f493d5fb487cc7","4893a895ea92c85345017a04ed427cbd6a1710453338df26881a6019432febdd","3a84b7cb891141824bd00ef8a50b6a44596aded4075da937f180c90e362fe5f6","13f6f39e12b1518c6650bbb220c8985999020fe0f21d818e28f512b7771d00f9","9b5369969f6e7175740bf51223112ff209f94ba43ecd3bb09eefff9fd675624a","4fe9e626e7164748e8769bbf74b538e09607f07ed17c2f20af8d680ee49fc1da","24515859bc0b836719105bb6cc3d68255042a9f02a6022b3187948b204946bd2","33203609eba548914dc83ddf6cadbc0bcb6e8ef89f6d648ca0908ae887f9fcc5","0db18c6e78ea846316c012478888f33c11ffadab9efd1cc8bcc12daded7a60b6","89167d696a849fce5ca508032aabfe901c0868f833a8625d5a9c6e861ef935d2","e53a3c2a9f624d90f24bf4588aacd223e7bec1b9d0d479b68d2f4a9e6011147f","339dc5265ee5ed92e536a93a04c4ebbc2128f45eeec6ed29f379e0085283542c","9f0a92164925aa37d4a5d9dd3e0134cff8177208dba55fd2310cd74beea40ee2","8bfdb79bf1a9d435ec48d9372dc93291161f152c0865b81fc0b2694aedb4578d","2e85db9e6fd73cfa3d7f28e0ab6b55417ea18931423bd47b409a96e4a169e8e6","c46e079fe54c76f95c67fb89081b3e399da2c7d109e7dca8e4b58d83e332e605","d32275be3546f252e3ad33976caf8c5e842c09cb87d468cb40d5f4cf092d1acc","4a0c3504813a3289f7fb1115db13967c8e004aa8e4f8a9021b95285502221bd1",{"version":"a14ed46fa3f5ffc7a8336b497cd07b45c2084213aaca933a22443fcb2eef0d07","affectsGlobalScope":true},"cce1f5f86974c1e916ec4a8cab6eec9aa8e31e8148845bf07fbaa8e1d97b1a2c",{"version":"7fd7fcbf021a5845bdd9397d4649fcf2fe17152d2098140fc723099a215d19ad","affectsGlobalScope":true},"df3389f71a71a38bc931aaf1ef97a65fada98f0a27f19dd12f8b8de2b0f4e461","d69a3298a197fe5d59edba0ec23b4abf2c8e7b8c6718eac97833633cd664e4c9",{"version":"a9544f6f8af0d046565e8dde585502698ebc99eef28b715bad7c2bded62e4a32","affectsGlobalScope":true},"a40826e8476694e90da94aa008283a7de50d1dafd37beada623863f1901cb7fb",{"version":"8b809082dfeffc8cc4f3b9c59f55c0ff52ba12f5ae0766cb5c35deee83b8552e","affectsGlobalScope":true},"bd3f5d05b6b5e4bfcea7739a45f3ffb4a7f4a3442ba7baf93e0200799285b8f1","4c775c2fccabf49483c03cd5e3673f87c1ffb6079d98e7b81089c3def79e29c6","d4f9d3ae2fe1ae199e1c832cca2c44f45e0b305dfa2808afdd51249b6f4a5163","7525257b4aa35efc7a1bbc00f205a9a96c4e4ab791da90db41b77938c4e0c18e","b7fe70be794e13d1b7940e318b8770cd1fb3eced7707805318a2e3aaac2c3e9e",{"version":"ee1ee365d88c4c6c0c0a5a5701d66ebc27ccd0bcfcfaa482c6e2e7fe7b98edf7","affectsGlobalScope":true},{"version":"9c611eff81287837680c1f4496daf9e737d6f3a1ff17752207814b8f8e1265af","affectsGlobalScope":true},"fe1fd6afdfe77976d4c702f3746c05fb05a7e566845c890e0e970fe9376d6a90","b5d4e3e524f2eead4519c8e819eaf7fa44a27c22418eff1b7b2d0ebc5fdc510d","afb1701fd4be413a8a5a88df6befdd4510c30a31372c07a4138facf61594c66d","9bd8e5984676cf28ebffcc65620b4ab5cb38ab2ec0aac0825df8568856895653","396a8939b5e177542bdf9b5262b4eee85d29851b2d57681fa9d7eae30e225830","5e8dc64e7e68b2b3ea52ed685cf85239e0d5fb9df31aabc94370c6bc7e19077b",{"version":"ea455cc68871b049bcecd9f56d4cf27b852d6dafd5e3b54468ca87cc11604e4d","affectsGlobalScope":true},"c07146dbbbd8b347241b5df250a51e48f2d7bef19b1e187b1a3f20c849988ff1","45b1053e691c5af9bfe85060a3e1542835f8d84a7e6e2e77ca305251eda0cb3c","0f05c06ff6196958d76b865ae17245b52d8fe01773626ac3c43214a2458ea7b7",{"version":"ae5507fc333d637dec9f37c6b3f4d423105421ea2820a64818de55db85214d66","affectsGlobalScope":true},{"version":"46755a4afc53df75f0bfce72259fb971daac826b0cdd8c4eaccad2755a817403","affectsGlobalScope":true},"8abd0566d2854c4bd1c5e48e05df5c74927187f1541e6770001d9637ac41542e","54e854615c4eafbdd3fd7688bd02a3aafd0ccf0e87c98f79d3e9109f047ce6b8","d8dba11dc34d50cb4202de5effa9a1b296d7a2f4a029eec871f894bddfb6430d","8b71dd18e7e63b6f991b511a201fad7c3bf8d1e0dd98acb5e3d844f335a73634","01d8e1419c84affad359cc240b2b551fb9812b450b4d3d456b64cda8102d4f60","9eece5e586312581ccd106d4853e861aaaa1a39f8e3ea672b8c3847eedd12f6e","8221b00f271cf7f535a8eeec03b0f80f0929c7a16116e2d2df089b41066de69b","269929a24b2816343a178008ac9ae9248304d92a8ba8e233055e0ed6dbe6ef71","93452d394fdd1dc551ec62f5042366f011a00d342d36d50793b3529bfc9bd633","7fa32887f8a97909fca35ebba3740f8caf8df146618d8fff957a3f89f67a2f6a","9a9634296cca836c3308923ba7aa094fa6ed76bb1e366d8ddcf5c65888ab1024",{"version":"bddce945d552a963c9733db106b17a25474eefcab7fc990157a2134ef55d4954","affectsGlobalScope":true},{"version":"7052b7b0c3829df3b4985bab2fd74531074b4835d5a7b263b75c82f0916ad62f","affectsGlobalScope":true},"aa34c3aa493d1c699601027c441b9664547c3024f9dbab1639df7701d63d18fa","4b55240c2a03b2c71e98a7fc528b16136faa762211c92e781a01c37821915ea6","7c651f8dce91a927ab62925e73f190763574c46098f2b11fb8ddc1b147a6709a","7440ab60f4cb031812940cc38166b8bb6fbf2540cfe599f87c41c08011f0c1df",{"version":"94c086dff8dbc5998749326bc69b520e8e4273fb5b7b58b50e0210e0885dfcde","affectsGlobalScope":true},{"version":"f5b5dc128973498b75f52b1b8c2d5f8629869104899733ae485100c2309b4c12","affectsGlobalScope":true},"ebe5facd12fd7745cda5f4bc3319f91fb29dc1f96e57e9c6f8b260a7cc5b67ee","79bad8541d5779c85e82a9fb119c1fe06af77a71cc40f869d62ad379473d4b75","21c56c6e8eeacef15f63f373a29fab6a2b36e4705be7a528aae8c51469e2737b",{"version":"629d20681ca284d9e38c0a019f647108f5fe02f9c59ac164d56f5694fc3faf4d","affectsGlobalScope":true},"e7dbf5716d76846c7522e910896c5747b6df1abd538fee8f5291bdc843461795",{"version":"ab9b9a36e5284fd8d3bf2f7d5fcbc60052f25f27e4d20954782099282c60d23e","affectsGlobalScope":true},"a42be67ed1ddaec743582f41fc219db96a1b69719fccac6d1464321178d610fc","52b45ec8a6511f1c50bd5fd41ee5ccfd6909560b71f66352771f0d556c7e443f","2f848b4e660b568651a6350565afc8ac5b0644853a2a863862807602cf244a05","e7049308a11ff36ca7eee4ff33df35106eb108018ea4cd4cdb00efe8e9711ce0","ce8b68c4394368261823cd31b6dd3b02457aa93b3488e93302d1a5438dbe8107","93931e9bf03fc64df77f6617fbd8df48ad86c636eb97188c7ef979a4c338cd9e","6c468c66d622b07d6ad6c4dc2fbec2ce1ca3d50e22c247a69a8ca7a214ceabd8","971f12a5fc236419ced0b7b9f23a53c1758233713f565635bbf4b85e2b23f55a","9d670bb3be18ea59cea824e3bb07d576b55c9542f5bc24aacc2a3c1ebd889de6","695b586df2d8c78b78cdd7cc6943594f3f4bc52948f13b31cdedfa3ce8d97c31","0771a93ef5e3b2a29f929c20f7ad232829341a671c9d1e96e93ef3fc42ef7bc2","cadb68b67b80b14a9a5bb64cce3093168fb2bfe2c7b10096d230df5203218de1","0b3c75be13f930b46117e205d900ee9c4f2ad6c7317655bca5364958ba1e34f0","5af161220fdf46730477706e8c431ccbd1b4ff50223cb32450bc20513f50bfbd","1bfbc75967888d5e8854123482a2725a806208d9cee4a09937e566ea67c1df99","a6b62e405392a02cc9433194c8713ede9cdf45997a6745c377888dcb0ef0f5b7",{"version":"15eb1ed602c940e54df2f6f603ae0a2e27429ba037c0a48cfb8bcace4f9d0ae1","signature":"51560636940c1db1f5890df21603e3a01ca8c82f514e6ed7fc74ece5f133d7cd"},{"version":"a7ae614005023c91e1a28b3f6ea018d4f23fa5c79a1e8a823c28918363579f08","signature":"820055ca96c42524f9d97bd807ad04b9409232ad7eaded419dc8045ecce562b7"},{"version":"81219c1dacc7c3684e450781d4fabef365fd7cbb7c59ea7b0f1e3bd363e9b61f","signature":"910d2fac24fd87cec6419572d00528987cebb27ad85e573dbcadc85fb8b8c905"},"50fe7227e5ec1fb3af6533cfbf768b0ec9e7720cd4c3a23d487250fc7e5ef787","c402f0c81658ab9b62fa1c2cee7019fccb6c8bde30afbbfe4d174eb700d5c4e3","9a31c55a8db9f8a598572259178ad9fe894f9988aae18b55460f4f44af1b76ce","94e21187921b012a2bb763962655ea237d6b9a09e6555b9718e3cf9992cba585","1acf4222a7c7f9c3e7caae92fd073713dd122913f1c53b3fa14b2fc0474ac9f2",{"version":"8e7164057b822abfe9a89081b14426f080883f435226a7bfdc7d41f52f099c95","signature":"44908da5d98afedda43aca5cc6ccc20055089cc72bdb55160ee376df5abfda65"},"af919f385be19f5567a9b541f219ff2b9efe8a054e59460e9884415a4c81d67f",{"version":"01d081ae0840a0057b5dfe7b96de71f51d8268a63b34680ad2e68ee21f8c0f5a","signature":"538f66dbbfadf1ff4a8009046c9c2c221d381455543a254ba45be92df5289f20"},{"version":"8d38dbc4eee91ce95a3b6191c54a8905d9ed2746daf65d1ebdf5d236693c9412","signature":"64292e0c80e414624a458a479f6e125e6c11fe363620a59f990ffd880ce72eeb"},"945525e692865e8aefdbfe701542f15fe256babb642c538893979994f9f91c0a",{"version":"886fb5e32df42461989c99405ec5a7de5ba220563d2251899d52c3e9204ab292","signature":"b54e6fba7b99116a7817e98eccb5ea6e7919eb6f6aa668909b418cd208fd4040"},"ea5954e89abc0c4e805de7f97ef1e9bc8ec88f277754da5ee93f6c0f1bc8edc1","ee9e05db3595260d6b0711bd770b95284726d007013ff332ee1842de60da0bb6",{"version":"36b2da85a66b1ba0c630891344a78c459eceb85d8212caebda46d0b18bae6a06","signature":"734ceff6664514d97e76c9da86de362aadaa4b0562e7c632c48a4b1ecc8c3b12"},{"version":"b2828fa6f99e5dff31bf79f441ab0ad57d59c5e632c4ae880ee537b3208eeaca","signature":"0545a204da459bca62369c9187bb92da117c080d630b7178e0dc5658eb5ccd27"},"eac647a94fb1f09789e12dfecb52dcd678d05159a4796b4e415aa15892f3b103","0744807211f8cd16343fb1a796f53a8f7b7f95d4bd278c48febf657679bf28e6",{"version":"51cd612f34bc94e4269433114423c836525b31d0618f38f86aeeb82cbcf9e473","signature":"9b3959dfd00878828934ee3dcffa80739d0179efdf66951540eec602ef2edd8b"},{"version":"7a646667c717666665bc01ed14c9a7b216d72b2df354764937f414c0de82fa1d","signature":"793472fa703dabd65bc3bcdb71e0ed66fddcc1de57e3ea274a648dbe0e5a029d"},"26e8168762172993916a717ed042690a2b3174d97b2d6a8577aeea73e5b69735","acfed6cc001e7f7f26d2ba42222a180ba669bb966d4dd9cb4ad5596516061b13","f61a4dc92450609c353738f0a2daebf8cae71b24716dbd952456d80b1e1a48b6","b1adbadd9e2b45fa099362a19f95fec9d145b4b7f74f81c18d8fa1a163da47e0",{"version":"2143252b0b91f77d3fa7fdee1b6d0edefc2f78b338db0c9de0aff5777ca11370","signature":"43e818adf60173644896298637f47b01d5819b17eda46eaa32d0c7d64724d012"},"cf3d384d082b933d987c4e2fe7bfb8710adfd9dc8155190056ed6695a25a559e","9871b7ee672bc16c78833bdab3052615834b08375cb144e4d2cba74473f4a589","c863198dae89420f3c552b5a03da6ed6d0acfa3807a64772b895db624b0de707","8b03a5e327d7db67112ebbc93b4f744133eda2c1743dbb0a990c61a8007823ef","86c73f2ee1752bac8eeeece234fd05dfcf0637a4fbd8032e4f5f43102faa8eec","42fad1f540271e35ca37cecda12c4ce2eef27f0f5cf0f8dd761d723c744d3159","ff3743a5de32bee10906aff63d1de726f6a7fd6ee2da4b8229054dfa69de2c34","83acd370f7f84f203e71ebba33ba61b7f1291ca027d7f9a662c6307d74e4ac22","1445cec898f90bdd18b2949b9590b3c012f5b7e1804e6e329fb0fe053946d5ec","0e5318ec2275d8da858b541920d9306650ae6ac8012f0e872fe66eb50321a669","cf530297c3fb3a92ec9591dd4fa229d58b5981e45fe6702a0bd2bea53a5e59be","c1f6f7d08d42148ddfe164d36d7aba91f467dbcb3caa715966ff95f55048b3a4","f4e9bf9103191ef3b3612d3ec0044ca4044ca5be27711fe648ada06fad4bcc85","0c1ee27b8f6a00097c2d6d91a21ee4d096ab52c1e28350f6362542b55380059a","7677d5b0db9e020d3017720f853ba18f415219fb3a9597343b1b1012cfd699f7","bc1c6bc119c1784b1a2be6d9c47addec0d83ef0d52c8fbe1f14a51b4dfffc675","52cf2ce99c2a23de70225e252e9822a22b4e0adb82643ab0b710858810e00bf1","770625067bb27a20b9826255a8d47b6b5b0a2d3dfcbd21f89904c731f671ba77","d1ed6765f4d7906a05968fb5cd6d1db8afa14dbe512a4884e8ea5c0f5e142c80","799c0f1b07c092626cf1efd71d459997635911bb5f7fc1196efe449bba87e965","2a184e4462b9914a30b1b5c41cf80c6d3428f17b20d3afb711fff3f0644001fd","9eabde32a3aa5d80de34af2c2206cdc3ee094c6504a8d0c2d6d20c7c179503cc","397c8051b6cfcb48aa22656f0faca2553c5f56187262135162ee79d2b2f6c966","a8ead142e0c87dcd5dc130eba1f8eeed506b08952d905c47621dc2f583b1bff9","a02f10ea5f73130efca046429254a4e3c06b5475baecc8f7b99a0014731be8b3","c2576a4083232b0e2d9bd06875dd43d371dee2e090325a9eac0133fd5650c1cb","4c9a0564bb317349de6a24eb4efea8bb79898fa72ad63a1809165f5bd42970dd","f40ac11d8859092d20f953aae14ba967282c3bb056431a37fced1866ec7a2681","cc11e9e79d4746cc59e0e17473a59d6f104692fd0eeea1bdb2e206eabed83b03","b444a410d34fb5e98aa5ee2b381362044f4884652e8bc8a11c8fe14bbd85518e","c35808c1f5e16d2c571aa65067e3cb95afeff843b259ecfa2fc107a9519b5392","14d5dc055143e941c8743c6a21fa459f961cbc3deedf1bfe47b11587ca4b3ef5","a3ad4e1fc542751005267d50a6298e6765928c0c3a8dce1572f2ba6ca518661c","f237e7c97a3a89f4591afd49ecb3bd8d14f51a1c4adc8fcae3430febedff5eb6","3ffdfbec93b7aed71082af62b8c3e0cc71261cc68d796665faa1e91604fbae8f","662201f943ed45b1ad600d03a90dffe20841e725203ced8b708c91fcd7f9379a","c9ef74c64ed051ea5b958621e7fb853fe3b56e8787c1587aefc6ea988b3c7e79","2462ccfac5f3375794b861abaa81da380f1bbd9401de59ffa43119a0b644253d","34baf65cfee92f110d6653322e2120c2d368ee64b3c7981dff08ed105c4f19b0","7d8ddf0f021c53099e34ee831a06c394d50371816caa98684812f089b4c6b3d4"],"root":[[65,67],[184,186],192,194,195,197,200,201,204,205,210],"options":{"allowUnreachableCode":false,"allowUnusedLabels":false,"checkJs":true,"composite":true,"declaration":true,"emitDeclarationOnly":true,"esModuleInterop":true,"exactOptionalPropertyTypes":true,"module":99,"noFallthroughCasesInSwitch":true,"noImplicitOverride":true,"noImplicitReturns":true,"noUncheckedIndexedAccess":true,"noUnusedParameters":true,"outDir":"./","rootDir":"../src","skipLibCheck":true,"strict":true,"strictNullChecks":true,"target":9,"useUnknownInCatchVariables":true},"fileIdsList":[[68],[178,180],[179],[178,181],[176,178],[175,176,177],[175,178],[73,75,76],[75,76],[75],[74],[81,168],[131,168],[130,131,149,168],[68,69,70,71,72],[68,70],[82],[117],[118,123,152],[119,130,131,138,149,160],[119,120,130,138],[121,161],[122,123,131,139],[123,149,157],[124,126,130,138],[117,125],[126,127],[130],[128,130],[117,130],[130,131,132,149,160],[130,131,132,145,149,152],[115,118,165],[126,130,133,138,149,160],[130,131,133,134,138,149,157,160],[133,135,149,157,160],[82,83,116,117,118,119,120,121,122,123,124,125,126,127,128,129,130,131,132,133,134,135,136,137,138,139,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],[130,136],[137,160,165],[126,130,138,149],[139],[140],[117,141],[142,159,165],[143],[144],[130,145,146],[145,147,161,163],[118,130,149,150,151,152],[118,149,151],[149,150],[152],[153],[117,149],[130,155,156],[155,156],[123,138,149,157],[158],[138,159],[118,133,144,160],[123,161],[149,162],[137,163],[164],[118,123,130,132,141,149,160,163,165],[149,166],[211,250],[211,235,250],[250],[211],[211,236,250],[211,212,213,214,215,216,217,218,219,220,221,222,223,224,225,226,227,228,229,230,231,232,233,234,235,236,237,238,239,240,241,242,243,244,245,246,247,248,249],[236,250],[207,208],[159],[130,131,168,202],[187,190],[160,168,188],[187],[160,168,187,189],[170],[182],[92,96,160],[92,149,160],[87],[89,92,157,160],[138,157],[168],[87,168],[89,92,138,160],[84,85,88,91,118,130,149,160],[84,90],[88,92,118,152,160,168],[118,168],[108,118,168],[86,87,168],[92],[86,87,88,89,90,91,92,93,94,96,97,98,99,100,101,102,103,104,105,106,107,109,110,111,112,113,114],[92,99,100],[90,92,100,101],[91],[84,87,92],[92,96,100,101],[96],[90,92,95,160],[84,89,90,92,96,99],[118,149],[87,92,108,118,165,168],[65,67,132,139,140,169,172,195,197,198,199,200,201,203,204,205,206,209],[132,140],[65,67,195,197,200,201,204],[65,66,68,69,70,72,73,75,77,78,79,80,81,140,169,171,184,185,186,192,194],[68,69,72,81,169,172,173,174,183,184],[68,69,70,72,169,173,191],[68,72,169],[65,68,72,169,184,193],[140,196],[65,81,132,140,172,195,198,199,205],[65,67,81,132,140,169,172,195,198,199,200,203],[81,185,186,192,194],[68,81],[68,72],[81,205],[81,200]],"referencedMap":[[70,1],[181,2],[180,3],[182,4],[177,5],[178,6],[176,7],[77,8],[78,9],[79,9],[80,10],[76,11],[169,12],[196,13],[199,14],[73,15],[69,1],[71,16],[72,1],[82,17],[83,17],[117,18],[118,19],[119,20],[120,21],[121,22],[122,23],[123,24],[124,25],[125,26],[126,27],[127,27],[129,28],[128,29],[130,30],[131,31],[132,32],[116,33],[133,34],[134,35],[135,36],[168,37],[136,38],[137,39],[138,40],[139,41],[140,42],[141,43],[142,44],[143,45],[144,46],[145,47],[146,47],[147,48],[149,49],[151,50],[150,51],[152,52],[153,53],[154,54],[155,55],[156,56],[157,57],[158,58],[159,59],[160,60],[161,61],[162,62],[163,63],[164,64],[165,65],[166,66],[235,67],[236,68],[211,69],[214,69],[233,67],[234,67],[224,67],[223,70],[221,67],[216,67],[229,67],[227,67],[231,67],[215,67],[228,67],[232,67],[217,67],[218,67],[230,67],[212,67],[219,67],[220,67],[222,67],[226,67],[237,71],[225,67],[213,67],[250,72],[244,71],[246,73],[245,71],[238,71],[239,71],[241,71],[243,71],[247,73],[248,73],[240,73],[242,73],[209,74],[208,75],[203,76],[191,77],[189,78],[188,79],[190,80],[171,81],[75,11],[183,82],[99,83],[106,84],[98,83],[113,85],[90,86],[89,87],[112,88],[107,89],[110,90],[92,91],[91,92],[87,93],[86,94],[109,95],[88,96],[93,97],[97,97],[115,98],[114,97],[101,99],[102,100],[104,101],[100,102],[103,103],[108,88],[95,104],[96,105],[105,106],[85,107],[111,108],[210,109],[67,110],[205,111],[195,112],[185,113],[192,114],[184,115],[194,116],[197,117],[200,118],[201,110],[204,119]],"exportedModulesMap":[[70,1],[181,2],[180,3],[182,4],[177,5],[178,6],[176,7],[77,8],[78,9],[79,9],[80,10],[76,11],[169,12],[196,13],[199,14],[73,15],[69,1],[71,16],[72,1],[82,17],[83,17],[117,18],[118,19],[119,20],[120,21],[121,22],[122,23],[123,24],[124,25],[125,26],[126,27],[127,27],[129,28],[128,29],[130,30],[131,31],[132,32],[116,33],[133,34],[134,35],[135,36],[168,37],[136,38],[137,39],[138,40],[139,41],[140,42],[141,43],[142,44],[143,45],[144,46],[145,47],[146,47],[147,48],[149,49],[151,50],[150,51],[152,52],[153,53],[154,54],[155,55],[156,56],[157,57],[158,58],[159,59],[160,60],[161,61],[162,62],[163,63],[164,64],[165,65],[166,66],[235,67],[236,68],[211,69],[214,69],[233,67],[234,67],[224,67],[223,70],[221,67],[216,67],[229,67],[227,67],[231,67],[215,67],[228,67],[232,67],[217,67],[218,67],[230,67],[212,67],[219,67],[220,67],[222,67],[226,67],[237,71],[225,67],[213,67],[250,72],[244,71],[246,73],[245,71],[238,71],[239,71],[241,71],[243,71],[247,73],[248,73],[240,73],[242,73],[209,74],[208,75],[203,76],[191,77],[189,78],[188,79],[190,80],[171,81],[75,11],[183,82],[99,83],[106,84],[98,83],[113,85],[90,86],[89,87],[112,88],[107,89],[110,90],[92,91],[91,92],[87,93],[86,94],[109,95],[88,96],[93,97],[97,97],[115,98],[114,97],[101,99],[102,100],[104,101],[100,102],[103,103],[108,88],[95,104],[96,105],[105,106],[85,107],[111,108],[205,111],[195,120],[185,121],[184,122],[194,1],[200,123],[204,124]],"semanticDiagnosticsPerFile":[70,68,181,179,180,182,177,175,178,176,77,78,79,80,76,198,169,193,196,172,81,173,199,73,69,71,72,74,82,83,117,118,119,120,121,122,123,124,125,126,127,129,128,130,131,132,116,167,133,134,135,168,136,137,138,139,140,141,142,143,144,145,146,147,148,149,151,150,152,153,154,155,156,157,158,159,160,161,162,163,164,165,166,235,236,211,214,233,234,224,223,221,216,229,227,231,215,228,232,217,218,230,212,219,220,222,226,237,225,213,250,249,244,246,245,238,239,241,243,247,248,240,242,174,202,209,207,208,203,191,187,189,188,190,170,171,75,183,99,106,98,113,90,89,112,107,110,92,91,87,86,109,88,93,94,97,84,115,114,101,102,104,100,103,108,95,96,105,85,111,206,210,65,66,67,205,195,185,186,192,184,194,197,200,201,204,62,63,12,10,11,16,15,2,17,18,19,20,21,22,23,24,3,25,4,26,30,27,28,29,31,32,33,5,34,35,36,37,6,41,38,39,40,42,7,43,48,49,44,45,46,47,8,53,50,51,52,54,9,55,64,56,57,60,58,59,1,61,14,13],"latestChangedDtsFile":"./bin/hsm.d.ts"},"version":"5.4.4"}
|
1
|
+
{"program":{"fileNames":["../../../../../../usr/local/lib/node_modules/typescript/lib/lib.es5.d.ts","../../../../../../usr/local/lib/node_modules/typescript/lib/lib.es2015.d.ts","../../../../../../usr/local/lib/node_modules/typescript/lib/lib.es2016.d.ts","../../../../../../usr/local/lib/node_modules/typescript/lib/lib.es2017.d.ts","../../../../../../usr/local/lib/node_modules/typescript/lib/lib.es2018.d.ts","../../../../../../usr/local/lib/node_modules/typescript/lib/lib.es2019.d.ts","../../../../../../usr/local/lib/node_modules/typescript/lib/lib.es2020.d.ts","../../../../../../usr/local/lib/node_modules/typescript/lib/lib.es2021.d.ts","../../../../../../usr/local/lib/node_modules/typescript/lib/lib.es2022.d.ts","../../../../../../usr/local/lib/node_modules/typescript/lib/lib.dom.d.ts","../../../../../../usr/local/lib/node_modules/typescript/lib/lib.dom.iterable.d.ts","../../../../../../usr/local/lib/node_modules/typescript/lib/lib.dom.asynciterable.d.ts","../../../../../../usr/local/lib/node_modules/typescript/lib/lib.webworker.importscripts.d.ts","../../../../../../usr/local/lib/node_modules/typescript/lib/lib.scripthost.d.ts","../../../../../../usr/local/lib/node_modules/typescript/lib/lib.es2015.core.d.ts","../../../../../../usr/local/lib/node_modules/typescript/lib/lib.es2015.collection.d.ts","../../../../../../usr/local/lib/node_modules/typescript/lib/lib.es2015.generator.d.ts","../../../../../../usr/local/lib/node_modules/typescript/lib/lib.es2015.iterable.d.ts","../../../../../../usr/local/lib/node_modules/typescript/lib/lib.es2015.promise.d.ts","../../../../../../usr/local/lib/node_modules/typescript/lib/lib.es2015.proxy.d.ts","../../../../../../usr/local/lib/node_modules/typescript/lib/lib.es2015.reflect.d.ts","../../../../../../usr/local/lib/node_modules/typescript/lib/lib.es2015.symbol.d.ts","../../../../../../usr/local/lib/node_modules/typescript/lib/lib.es2015.symbol.wellknown.d.ts","../../../../../../usr/local/lib/node_modules/typescript/lib/lib.es2016.array.include.d.ts","../../../../../../usr/local/lib/node_modules/typescript/lib/lib.es2016.intl.d.ts","../../../../../../usr/local/lib/node_modules/typescript/lib/lib.es2017.date.d.ts","../../../../../../usr/local/lib/node_modules/typescript/lib/lib.es2017.object.d.ts","../../../../../../usr/local/lib/node_modules/typescript/lib/lib.es2017.sharedmemory.d.ts","../../../../../../usr/local/lib/node_modules/typescript/lib/lib.es2017.string.d.ts","../../../../../../usr/local/lib/node_modules/typescript/lib/lib.es2017.intl.d.ts","../../../../../../usr/local/lib/node_modules/typescript/lib/lib.es2017.typedarrays.d.ts","../../../../../../usr/local/lib/node_modules/typescript/lib/lib.es2018.asyncgenerator.d.ts","../../../../../../usr/local/lib/node_modules/typescript/lib/lib.es2018.asynciterable.d.ts","../../../../../../usr/local/lib/node_modules/typescript/lib/lib.es2018.intl.d.ts","../../../../../../usr/local/lib/node_modules/typescript/lib/lib.es2018.promise.d.ts","../../../../../../usr/local/lib/node_modules/typescript/lib/lib.es2018.regexp.d.ts","../../../../../../usr/local/lib/node_modules/typescript/lib/lib.es2019.array.d.ts","../../../../../../usr/local/lib/node_modules/typescript/lib/lib.es2019.object.d.ts","../../../../../../usr/local/lib/node_modules/typescript/lib/lib.es2019.string.d.ts","../../../../../../usr/local/lib/node_modules/typescript/lib/lib.es2019.symbol.d.ts","../../../../../../usr/local/lib/node_modules/typescript/lib/lib.es2019.intl.d.ts","../../../../../../usr/local/lib/node_modules/typescript/lib/lib.es2020.bigint.d.ts","../../../../../../usr/local/lib/node_modules/typescript/lib/lib.es2020.date.d.ts","../../../../../../usr/local/lib/node_modules/typescript/lib/lib.es2020.promise.d.ts","../../../../../../usr/local/lib/node_modules/typescript/lib/lib.es2020.sharedmemory.d.ts","../../../../../../usr/local/lib/node_modules/typescript/lib/lib.es2020.string.d.ts","../../../../../../usr/local/lib/node_modules/typescript/lib/lib.es2020.symbol.wellknown.d.ts","../../../../../../usr/local/lib/node_modules/typescript/lib/lib.es2020.intl.d.ts","../../../../../../usr/local/lib/node_modules/typescript/lib/lib.es2020.number.d.ts","../../../../../../usr/local/lib/node_modules/typescript/lib/lib.es2021.promise.d.ts","../../../../../../usr/local/lib/node_modules/typescript/lib/lib.es2021.string.d.ts","../../../../../../usr/local/lib/node_modules/typescript/lib/lib.es2021.weakref.d.ts","../../../../../../usr/local/lib/node_modules/typescript/lib/lib.es2021.intl.d.ts","../../../../../../usr/local/lib/node_modules/typescript/lib/lib.es2022.array.d.ts","../../../../../../usr/local/lib/node_modules/typescript/lib/lib.es2022.error.d.ts","../../../../../../usr/local/lib/node_modules/typescript/lib/lib.es2022.intl.d.ts","../../../../../../usr/local/lib/node_modules/typescript/lib/lib.es2022.object.d.ts","../../../../../../usr/local/lib/node_modules/typescript/lib/lib.es2022.sharedmemory.d.ts","../../../../../../usr/local/lib/node_modules/typescript/lib/lib.es2022.string.d.ts","../../../../../../usr/local/lib/node_modules/typescript/lib/lib.es2022.regexp.d.ts","../../../../../../usr/local/lib/node_modules/typescript/lib/lib.esnext.intl.d.ts","../../../../../../usr/local/lib/node_modules/typescript/lib/lib.decorators.d.ts","../../../../../../usr/local/lib/node_modules/typescript/lib/lib.decorators.legacy.d.ts","../../../../../../usr/local/lib/node_modules/typescript/lib/lib.es2022.full.d.ts","../src/constants.ts","../src/env.d.ts","../src/generateTypeDeclaration.ts","../node_modules/.pnpm/@babel+types@7.24.0/node_modules/@babel/types/lib/index.d.ts","../node_modules/.pnpm/@types+babel__generator@7.6.8/node_modules/@types/babel__generator/index.d.ts","../node_modules/.pnpm/@babel+parser@7.24.4/node_modules/@babel/parser/typings/babel-parser.d.ts","../node_modules/.pnpm/@types+babel__template@7.4.4/node_modules/@types/babel__template/index.d.ts","../node_modules/.pnpm/@types+babel__traverse@7.20.5/node_modules/@types/babel__traverse/index.d.ts","../node_modules/.pnpm/@types+babel__core@7.20.5/node_modules/@types/babel__core/index.d.ts","../node_modules/.pnpm/@types+estree@1.0.5/node_modules/@types/estree/index.d.ts","../node_modules/.pnpm/rollup@4.14.2/node_modules/rollup/dist/rollup.d.ts","../node_modules/.pnpm/@rollup+pluginutils@5.1.0_rollup@4.14.2/node_modules/@rollup/pluginutils/types/index.d.ts","../node_modules/.pnpm/@rollup+plugin-babel@6.0.4_@babel+core@7.24.4_@types+babel__core@7.20.5_rollup@4.14.2/node_modules/@rollup/plugin-babel/types/index.d.ts","../node_modules/.pnpm/@rollup+plugin-commonjs@25.0.7_rollup@4.14.2/node_modules/@rollup/plugin-commonjs/types/index.d.ts","../node_modules/.pnpm/@rollup+plugin-json@6.1.0_rollup@4.14.2/node_modules/@rollup/plugin-json/types/index.d.ts","../node_modules/.pnpm/@rollup+plugin-node-resolve@15.2.3_rollup@4.14.2/node_modules/@rollup/plugin-node-resolve/types/index.d.ts","../node_modules/.pnpm/@samual+lib@0.10.1/node_modules/@samual/lib/index.d.ts","../node_modules/.pnpm/@types+node@20.12.7/node_modules/@types/node/assert.d.ts","../node_modules/.pnpm/@types+node@20.12.7/node_modules/@types/node/assert/strict.d.ts","../node_modules/.pnpm/undici-types@5.26.5/node_modules/undici-types/header.d.ts","../node_modules/.pnpm/undici-types@5.26.5/node_modules/undici-types/readable.d.ts","../node_modules/.pnpm/undici-types@5.26.5/node_modules/undici-types/file.d.ts","../node_modules/.pnpm/undici-types@5.26.5/node_modules/undici-types/fetch.d.ts","../node_modules/.pnpm/undici-types@5.26.5/node_modules/undici-types/formdata.d.ts","../node_modules/.pnpm/undici-types@5.26.5/node_modules/undici-types/connector.d.ts","../node_modules/.pnpm/undici-types@5.26.5/node_modules/undici-types/client.d.ts","../node_modules/.pnpm/undici-types@5.26.5/node_modules/undici-types/errors.d.ts","../node_modules/.pnpm/undici-types@5.26.5/node_modules/undici-types/dispatcher.d.ts","../node_modules/.pnpm/undici-types@5.26.5/node_modules/undici-types/global-dispatcher.d.ts","../node_modules/.pnpm/undici-types@5.26.5/node_modules/undici-types/global-origin.d.ts","../node_modules/.pnpm/undici-types@5.26.5/node_modules/undici-types/pool-stats.d.ts","../node_modules/.pnpm/undici-types@5.26.5/node_modules/undici-types/pool.d.ts","../node_modules/.pnpm/undici-types@5.26.5/node_modules/undici-types/handlers.d.ts","../node_modules/.pnpm/undici-types@5.26.5/node_modules/undici-types/balanced-pool.d.ts","../node_modules/.pnpm/undici-types@5.26.5/node_modules/undici-types/agent.d.ts","../node_modules/.pnpm/undici-types@5.26.5/node_modules/undici-types/mock-interceptor.d.ts","../node_modules/.pnpm/undici-types@5.26.5/node_modules/undici-types/mock-agent.d.ts","../node_modules/.pnpm/undici-types@5.26.5/node_modules/undici-types/mock-client.d.ts","../node_modules/.pnpm/undici-types@5.26.5/node_modules/undici-types/mock-pool.d.ts","../node_modules/.pnpm/undici-types@5.26.5/node_modules/undici-types/mock-errors.d.ts","../node_modules/.pnpm/undici-types@5.26.5/node_modules/undici-types/proxy-agent.d.ts","../node_modules/.pnpm/undici-types@5.26.5/node_modules/undici-types/api.d.ts","../node_modules/.pnpm/undici-types@5.26.5/node_modules/undici-types/cookies.d.ts","../node_modules/.pnpm/undici-types@5.26.5/node_modules/undici-types/patch.d.ts","../node_modules/.pnpm/undici-types@5.26.5/node_modules/undici-types/filereader.d.ts","../node_modules/.pnpm/undici-types@5.26.5/node_modules/undici-types/diagnostics-channel.d.ts","../node_modules/.pnpm/undici-types@5.26.5/node_modules/undici-types/websocket.d.ts","../node_modules/.pnpm/undici-types@5.26.5/node_modules/undici-types/content-type.d.ts","../node_modules/.pnpm/undici-types@5.26.5/node_modules/undici-types/cache.d.ts","../node_modules/.pnpm/undici-types@5.26.5/node_modules/undici-types/interceptors.d.ts","../node_modules/.pnpm/undici-types@5.26.5/node_modules/undici-types/index.d.ts","../node_modules/.pnpm/@types+node@20.12.7/node_modules/@types/node/globals.d.ts","../node_modules/.pnpm/@types+node@20.12.7/node_modules/@types/node/async_hooks.d.ts","../node_modules/.pnpm/@types+node@20.12.7/node_modules/@types/node/buffer.d.ts","../node_modules/.pnpm/@types+node@20.12.7/node_modules/@types/node/child_process.d.ts","../node_modules/.pnpm/@types+node@20.12.7/node_modules/@types/node/cluster.d.ts","../node_modules/.pnpm/@types+node@20.12.7/node_modules/@types/node/console.d.ts","../node_modules/.pnpm/@types+node@20.12.7/node_modules/@types/node/constants.d.ts","../node_modules/.pnpm/@types+node@20.12.7/node_modules/@types/node/crypto.d.ts","../node_modules/.pnpm/@types+node@20.12.7/node_modules/@types/node/dgram.d.ts","../node_modules/.pnpm/@types+node@20.12.7/node_modules/@types/node/diagnostics_channel.d.ts","../node_modules/.pnpm/@types+node@20.12.7/node_modules/@types/node/dns.d.ts","../node_modules/.pnpm/@types+node@20.12.7/node_modules/@types/node/dns/promises.d.ts","../node_modules/.pnpm/@types+node@20.12.7/node_modules/@types/node/domain.d.ts","../node_modules/.pnpm/@types+node@20.12.7/node_modules/@types/node/dom-events.d.ts","../node_modules/.pnpm/@types+node@20.12.7/node_modules/@types/node/events.d.ts","../node_modules/.pnpm/@types+node@20.12.7/node_modules/@types/node/fs.d.ts","../node_modules/.pnpm/@types+node@20.12.7/node_modules/@types/node/fs/promises.d.ts","../node_modules/.pnpm/@types+node@20.12.7/node_modules/@types/node/http.d.ts","../node_modules/.pnpm/@types+node@20.12.7/node_modules/@types/node/http2.d.ts","../node_modules/.pnpm/@types+node@20.12.7/node_modules/@types/node/https.d.ts","../node_modules/.pnpm/@types+node@20.12.7/node_modules/@types/node/inspector.d.ts","../node_modules/.pnpm/@types+node@20.12.7/node_modules/@types/node/module.d.ts","../node_modules/.pnpm/@types+node@20.12.7/node_modules/@types/node/net.d.ts","../node_modules/.pnpm/@types+node@20.12.7/node_modules/@types/node/os.d.ts","../node_modules/.pnpm/@types+node@20.12.7/node_modules/@types/node/path.d.ts","../node_modules/.pnpm/@types+node@20.12.7/node_modules/@types/node/perf_hooks.d.ts","../node_modules/.pnpm/@types+node@20.12.7/node_modules/@types/node/process.d.ts","../node_modules/.pnpm/@types+node@20.12.7/node_modules/@types/node/punycode.d.ts","../node_modules/.pnpm/@types+node@20.12.7/node_modules/@types/node/querystring.d.ts","../node_modules/.pnpm/@types+node@20.12.7/node_modules/@types/node/readline.d.ts","../node_modules/.pnpm/@types+node@20.12.7/node_modules/@types/node/readline/promises.d.ts","../node_modules/.pnpm/@types+node@20.12.7/node_modules/@types/node/repl.d.ts","../node_modules/.pnpm/@types+node@20.12.7/node_modules/@types/node/sea.d.ts","../node_modules/.pnpm/@types+node@20.12.7/node_modules/@types/node/stream.d.ts","../node_modules/.pnpm/@types+node@20.12.7/node_modules/@types/node/stream/promises.d.ts","../node_modules/.pnpm/@types+node@20.12.7/node_modules/@types/node/stream/consumers.d.ts","../node_modules/.pnpm/@types+node@20.12.7/node_modules/@types/node/stream/web.d.ts","../node_modules/.pnpm/@types+node@20.12.7/node_modules/@types/node/string_decoder.d.ts","../node_modules/.pnpm/@types+node@20.12.7/node_modules/@types/node/test.d.ts","../node_modules/.pnpm/@types+node@20.12.7/node_modules/@types/node/timers.d.ts","../node_modules/.pnpm/@types+node@20.12.7/node_modules/@types/node/timers/promises.d.ts","../node_modules/.pnpm/@types+node@20.12.7/node_modules/@types/node/tls.d.ts","../node_modules/.pnpm/@types+node@20.12.7/node_modules/@types/node/trace_events.d.ts","../node_modules/.pnpm/@types+node@20.12.7/node_modules/@types/node/tty.d.ts","../node_modules/.pnpm/@types+node@20.12.7/node_modules/@types/node/url.d.ts","../node_modules/.pnpm/@types+node@20.12.7/node_modules/@types/node/util.d.ts","../node_modules/.pnpm/@types+node@20.12.7/node_modules/@types/node/v8.d.ts","../node_modules/.pnpm/@types+node@20.12.7/node_modules/@types/node/vm.d.ts","../node_modules/.pnpm/@types+node@20.12.7/node_modules/@types/node/wasi.d.ts","../node_modules/.pnpm/@types+node@20.12.7/node_modules/@types/node/worker_threads.d.ts","../node_modules/.pnpm/@types+node@20.12.7/node_modules/@types/node/zlib.d.ts","../node_modules/.pnpm/@types+node@20.12.7/node_modules/@types/node/globals.global.d.ts","../node_modules/.pnpm/@types+node@20.12.7/node_modules/@types/node/index.d.ts","../node_modules/.pnpm/@samual+lib@0.10.1/node_modules/@samual/lib/assert.d.ts","../node_modules/.pnpm/prettier@3.2.5/node_modules/prettier/doc.d.ts","../node_modules/.pnpm/prettier@3.2.5/node_modules/prettier/index.d.ts","../node_modules/.pnpm/@samual+lib@0.10.1/node_modules/@samual/lib/countHackmudCharacters.d.ts","../node_modules/.pnpm/@samual+lib@0.10.1/node_modules/@samual/lib/spliceString.d.ts","../node_modules/.pnpm/acorn@8.11.3/node_modules/acorn/dist/acorn.d.ts","../node_modules/.pnpm/@jridgewell+trace-mapping@0.3.25/node_modules/@jridgewell/trace-mapping/dist/types/sourcemap-segment.d.ts","../node_modules/.pnpm/@jridgewell+trace-mapping@0.3.25/node_modules/@jridgewell/trace-mapping/dist/types/types.d.ts","../node_modules/.pnpm/@jridgewell+trace-mapping@0.3.25/node_modules/@jridgewell/trace-mapping/dist/types/any-map.d.ts","../node_modules/.pnpm/@jridgewell+trace-mapping@0.3.25/node_modules/@jridgewell/trace-mapping/dist/types/trace-mapping.d.ts","../node_modules/.pnpm/@jridgewell+gen-mapping@0.3.5/node_modules/@jridgewell/gen-mapping/dist/types/sourcemap-segment.d.ts","../node_modules/.pnpm/@jridgewell+gen-mapping@0.3.5/node_modules/@jridgewell/gen-mapping/dist/types/types.d.ts","../node_modules/.pnpm/@jridgewell+gen-mapping@0.3.5/node_modules/@jridgewell/gen-mapping/dist/types/gen-mapping.d.ts","../node_modules/.pnpm/@jridgewell+source-map@0.3.6/node_modules/@jridgewell/source-map/dist/types/source-map.d.ts","../node_modules/.pnpm/terser@5.30.3/node_modules/terser/tools/terser.d.ts","../src/processScript/shared.ts","../src/processScript/minify.ts","../src/processScript/postprocess.ts","../node_modules/.pnpm/import-meta-resolve@4.0.0/node_modules/import-meta-resolve/lib/errors.d.ts","../node_modules/.pnpm/import-meta-resolve@4.0.0/node_modules/import-meta-resolve/lib/package-json-reader.d.ts","../node_modules/.pnpm/import-meta-resolve@4.0.0/node_modules/import-meta-resolve/lib/package-config.d.ts","../node_modules/.pnpm/import-meta-resolve@4.0.0/node_modules/import-meta-resolve/lib/resolve.d.ts","../node_modules/.pnpm/import-meta-resolve@4.0.0/node_modules/import-meta-resolve/index.d.ts","../src/processScript/preprocess.ts","../node_modules/.pnpm/@samual+lib@0.10.1/node_modules/@samual/lib/clearObject.d.ts","../src/processScript/transform.ts","../src/processScript/index.ts","../node_modules/.pnpm/@samual+lib@0.10.1/node_modules/@samual/lib/copyFilePersistent.d.ts","../src/pull.ts","../node_modules/.pnpm/@samual+lib@0.10.1/node_modules/@samual/lib/Cache.d.ts","../node_modules/.pnpm/@samual+lib@0.10.1/node_modules/@samual/lib/writeFilePersistent.d.ts","../src/push.ts","../src/syncMacros.ts","../node_modules/.pnpm/anymatch@3.1.3/node_modules/anymatch/index.d.ts","../node_modules/.pnpm/chokidar@3.6.0/node_modules/chokidar/types/index.d.ts","../src/watch.ts","../src/index.ts","../package.json","../node_modules/.pnpm/chalk@5.3.0/node_modules/chalk/source/vendor/ansi-styles/index.d.ts","../node_modules/.pnpm/chalk@5.3.0/node_modules/chalk/source/vendor/supports-color/index.d.ts","../node_modules/.pnpm/chalk@5.3.0/node_modules/chalk/source/index.d.ts","../src/bin/hsm.ts","../node_modules/.pnpm/@types+semver@7.5.8/node_modules/@types/semver/classes/semver.d.ts","../node_modules/.pnpm/@types+semver@7.5.8/node_modules/@types/semver/functions/parse.d.ts","../node_modules/.pnpm/@types+semver@7.5.8/node_modules/@types/semver/functions/valid.d.ts","../node_modules/.pnpm/@types+semver@7.5.8/node_modules/@types/semver/functions/clean.d.ts","../node_modules/.pnpm/@types+semver@7.5.8/node_modules/@types/semver/functions/inc.d.ts","../node_modules/.pnpm/@types+semver@7.5.8/node_modules/@types/semver/functions/diff.d.ts","../node_modules/.pnpm/@types+semver@7.5.8/node_modules/@types/semver/functions/major.d.ts","../node_modules/.pnpm/@types+semver@7.5.8/node_modules/@types/semver/functions/minor.d.ts","../node_modules/.pnpm/@types+semver@7.5.8/node_modules/@types/semver/functions/patch.d.ts","../node_modules/.pnpm/@types+semver@7.5.8/node_modules/@types/semver/functions/prerelease.d.ts","../node_modules/.pnpm/@types+semver@7.5.8/node_modules/@types/semver/functions/compare.d.ts","../node_modules/.pnpm/@types+semver@7.5.8/node_modules/@types/semver/functions/rcompare.d.ts","../node_modules/.pnpm/@types+semver@7.5.8/node_modules/@types/semver/functions/compare-loose.d.ts","../node_modules/.pnpm/@types+semver@7.5.8/node_modules/@types/semver/functions/compare-build.d.ts","../node_modules/.pnpm/@types+semver@7.5.8/node_modules/@types/semver/functions/sort.d.ts","../node_modules/.pnpm/@types+semver@7.5.8/node_modules/@types/semver/functions/rsort.d.ts","../node_modules/.pnpm/@types+semver@7.5.8/node_modules/@types/semver/functions/gt.d.ts","../node_modules/.pnpm/@types+semver@7.5.8/node_modules/@types/semver/functions/lt.d.ts","../node_modules/.pnpm/@types+semver@7.5.8/node_modules/@types/semver/functions/eq.d.ts","../node_modules/.pnpm/@types+semver@7.5.8/node_modules/@types/semver/functions/neq.d.ts","../node_modules/.pnpm/@types+semver@7.5.8/node_modules/@types/semver/functions/gte.d.ts","../node_modules/.pnpm/@types+semver@7.5.8/node_modules/@types/semver/functions/lte.d.ts","../node_modules/.pnpm/@types+semver@7.5.8/node_modules/@types/semver/functions/cmp.d.ts","../node_modules/.pnpm/@types+semver@7.5.8/node_modules/@types/semver/functions/coerce.d.ts","../node_modules/.pnpm/@types+semver@7.5.8/node_modules/@types/semver/classes/comparator.d.ts","../node_modules/.pnpm/@types+semver@7.5.8/node_modules/@types/semver/classes/range.d.ts","../node_modules/.pnpm/@types+semver@7.5.8/node_modules/@types/semver/functions/satisfies.d.ts","../node_modules/.pnpm/@types+semver@7.5.8/node_modules/@types/semver/ranges/max-satisfying.d.ts","../node_modules/.pnpm/@types+semver@7.5.8/node_modules/@types/semver/ranges/min-satisfying.d.ts","../node_modules/.pnpm/@types+semver@7.5.8/node_modules/@types/semver/ranges/to-comparators.d.ts","../node_modules/.pnpm/@types+semver@7.5.8/node_modules/@types/semver/ranges/min-version.d.ts","../node_modules/.pnpm/@types+semver@7.5.8/node_modules/@types/semver/ranges/valid.d.ts","../node_modules/.pnpm/@types+semver@7.5.8/node_modules/@types/semver/ranges/outside.d.ts","../node_modules/.pnpm/@types+semver@7.5.8/node_modules/@types/semver/ranges/gtr.d.ts","../node_modules/.pnpm/@types+semver@7.5.8/node_modules/@types/semver/ranges/ltr.d.ts","../node_modules/.pnpm/@types+semver@7.5.8/node_modules/@types/semver/ranges/intersects.d.ts","../node_modules/.pnpm/@types+semver@7.5.8/node_modules/@types/semver/ranges/simplify.d.ts","../node_modules/.pnpm/@types+semver@7.5.8/node_modules/@types/semver/ranges/subset.d.ts","../node_modules/.pnpm/@types+semver@7.5.8/node_modules/@types/semver/internals/identifiers.d.ts","../node_modules/.pnpm/@types+semver@7.5.8/node_modules/@types/semver/index.d.ts"],"fileInfos":[{"version":"824cb491a40f7e8fdeb56f1df5edf91b23f3e3ee6b4cde84d4a99be32338faee","affectsGlobalScope":true},"45b7ab580deca34ae9729e97c13cfd999df04416a79116c3bfb483804f85ded4","3facaf05f0c5fc569c5649dd359892c98a85557e3e0c847964caeb67076f4d75","9a68c0c07ae2fa71b44384a839b7b8d81662a236d4b9ac30916718f7510b1b2d","5e1c4c362065a6b95ff952c0eab010f04dcd2c3494e813b493ecfd4fcb9fc0d8","68d73b4a11549f9c0b7d352d10e91e5dca8faa3322bfb77b661839c42b1ddec7","5efce4fc3c29ea84e8928f97adec086e3dc876365e0982cc8479a07954a3efd4","feecb1be483ed332fad555aff858affd90a48ab19ba7272ee084704eb7167569","5514e54f17d6d74ecefedc73c504eadffdeda79c7ea205cf9febead32d45c4bc",{"version":"87d693a4920d794a73384b3c779cadcb8548ac6945aa7a925832fe2418c9527a","affectsGlobalScope":true},{"version":"76f838d5d49b65de83bc345c04aa54c62a3cfdb72a477dc0c0fce89a30596c30","affectsGlobalScope":true},{"version":"73e370058f82add1fdbc78ef3d1aab110108f2d5d9c857cb55d3361982347ace","affectsGlobalScope":true},{"version":"80e18897e5884b6723488d4f5652167e7bb5024f946743134ecc4aa4ee731f89","affectsGlobalScope":true},{"version":"cd034f499c6cdca722b60c04b5b1b78e058487a7085a8e0d6fb50809947ee573","affectsGlobalScope":true},{"version":"138fb588d26538783b78d1e3b2c2cc12d55840b97bf5e08bca7f7a174fbe2f17","affectsGlobalScope":true},{"version":"dc2df20b1bcdc8c2d34af4926e2c3ab15ffe1160a63e58b7e09833f616efff44","affectsGlobalScope":true},{"version":"4443e68b35f3332f753eacc66a04ac1d2053b8b035a0e0ac1d455392b5e243b3","affectsGlobalScope":true},{"version":"bc47685641087c015972a3f072480889f0d6c65515f12bd85222f49a98952ed7","affectsGlobalScope":true},{"version":"0dc1e7ceda9b8b9b455c3a2d67b0412feab00bd2f66656cd8850e8831b08b537","affectsGlobalScope":true},{"version":"ce691fb9e5c64efb9547083e4a34091bcbe5bdb41027e310ebba8f7d96a98671","affectsGlobalScope":true},{"version":"8d697a2a929a5fcb38b7a65594020fcef05ec1630804a33748829c5ff53640d0","affectsGlobalScope":true},{"version":"4ff2a353abf8a80ee399af572debb8faab2d33ad38c4b4474cff7f26e7653b8d","affectsGlobalScope":true},{"version":"93495ff27b8746f55d19fcbcdbaccc99fd95f19d057aed1bd2c0cafe1335fbf0","affectsGlobalScope":true},{"version":"6fc23bb8c3965964be8c597310a2878b53a0306edb71d4b5a4dfe760186bcc01","affectsGlobalScope":true},{"version":"ea011c76963fb15ef1cdd7ce6a6808b46322c527de2077b6cfdf23ae6f5f9ec7","affectsGlobalScope":true},{"version":"38f0219c9e23c915ef9790ab1d680440d95419ad264816fa15009a8851e79119","affectsGlobalScope":true},{"version":"bb42a7797d996412ecdc5b2787720de477103a0b2e53058569069a0e2bae6c7e","affectsGlobalScope":true},{"version":"4738f2420687fd85629c9efb470793bb753709c2379e5f85bc1815d875ceadcd","affectsGlobalScope":true},{"version":"2f11ff796926e0832f9ae148008138ad583bd181899ab7dd768a2666700b1893","affectsGlobalScope":true},{"version":"4de680d5bb41c17f7f68e0419412ca23c98d5749dcaaea1896172f06435891fc","affectsGlobalScope":true},{"version":"9fc46429fbe091ac5ad2608c657201eb68b6f1b8341bd6d670047d32ed0a88fa","affectsGlobalScope":true},{"version":"61c37c1de663cf4171e1192466e52c7a382afa58da01b1dc75058f032ddf0839","affectsGlobalScope":true},{"version":"b541a838a13f9234aba650a825393ffc2292dc0fc87681a5d81ef0c96d281e7a","affectsGlobalScope":true},{"version":"b20fe0eca9a4e405f1a5ae24a2b3290b37cf7f21eba6cbe4fc3fab979237d4f3","affectsGlobalScope":true},{"version":"811ec78f7fefcabbda4bfa93b3eb67d9ae166ef95f9bff989d964061cbf81a0c","affectsGlobalScope":true},{"version":"717937616a17072082152a2ef351cb51f98802fb4b2fdabd32399843875974ca","affectsGlobalScope":true},{"version":"d7e7d9b7b50e5f22c915b525acc5a49a7a6584cf8f62d0569e557c5cfc4b2ac2","affectsGlobalScope":true},{"version":"71c37f4c9543f31dfced6c7840e068c5a5aacb7b89111a4364b1d5276b852557","affectsGlobalScope":true},{"version":"576711e016cf4f1804676043e6a0a5414252560eb57de9faceee34d79798c850","affectsGlobalScope":true},{"version":"89c1b1281ba7b8a96efc676b11b264de7a8374c5ea1e6617f11880a13fc56dc6","affectsGlobalScope":true},{"version":"49ed889be54031e1044af0ad2c603d627b8bda8b50c1a68435fe85583901d072","affectsGlobalScope":true},{"version":"e93d098658ce4f0c8a0779e6cab91d0259efb88a318137f686ad76f8410ca270","affectsGlobalScope":true},{"version":"063600664504610fe3e99b717a1223f8b1900087fab0b4cad1496a114744f8df","affectsGlobalScope":true},{"version":"934019d7e3c81950f9a8426d093458b65d5aff2c7c1511233c0fd5b941e608ab","affectsGlobalScope":true},{"version":"bf14a426dbbf1022d11bd08d6b8e709a2e9d246f0c6c1032f3b2edb9a902adbe","affectsGlobalScope":true},{"version":"5e07ed3809d48205d5b985642a59f2eba47c402374a7cf8006b686f79efadcbd","affectsGlobalScope":true},{"version":"2b72d528b2e2fe3c57889ca7baef5e13a56c957b946906d03767c642f386bbc3","affectsGlobalScope":true},{"version":"8073890e29d2f46fdbc19b8d6d2eb9ea58db9a2052f8640af20baff9afbc8640","affectsGlobalScope":true},{"version":"368af93f74c9c932edd84c58883e736c9e3d53cec1fe24c0b0ff451f529ceab1","affectsGlobalScope":true},{"version":"af3dd424cf267428f30ccfc376f47a2c0114546b55c44d8c0f1d57d841e28d74","affectsGlobalScope":true},{"version":"995c005ab91a498455ea8dfb63aa9f83fa2ea793c3d8aa344be4a1678d06d399","affectsGlobalScope":true},{"version":"51e547984877a62227042850456de71a5c45e7fe86b7c975c6e68896c86fa23b","affectsGlobalScope":true},{"version":"956d27abdea9652e8368ce029bb1e0b9174e9678a273529f426df4b3d90abd60","affectsGlobalScope":true},{"version":"4fa6ed14e98aa80b91f61b9805c653ee82af3502dc21c9da5268d3857772ca05","affectsGlobalScope":true},{"version":"e6633e05da3ff36e6da2ec170d0d03ccf33de50ca4dc6f5aeecb572cedd162fb","affectsGlobalScope":true},{"version":"d8670852241d4c6e03f2b89d67497a4bbefe29ecaa5a444e2c11a9b05e6fccc6","affectsGlobalScope":true},{"version":"8444af78980e3b20b49324f4a16ba35024fef3ee069a0eb67616ea6ca821c47a","affectsGlobalScope":true},{"version":"caccc56c72713969e1cfe5c3d44e5bab151544d9d2b373d7dbe5a1e4166652be","affectsGlobalScope":true},{"version":"3287d9d085fbd618c3971944b65b4be57859f5415f495b33a6adc994edd2f004","affectsGlobalScope":true},{"version":"50d53ccd31f6667aff66e3d62adf948879a3a16f05d89882d1188084ee415bbc","affectsGlobalScope":true},{"version":"13f6e6380c78e15e140243dc4be2fa546c287c6d61f4729bc2dd7cf449605471","affectsGlobalScope":true},{"version":"33358442698bb565130f52ba79bfd3d4d484ac85fe33f3cb1759c54d18201393","affectsGlobalScope":true},{"version":"782dec38049b92d4e85c1585fbea5474a219c6984a35b004963b00beb1aab538","affectsGlobalScope":true},"3cbad9a1ba4453443026ed38e4b8be018abb26565fa7c944376463ad9df07c41",{"version":"9581880726f6a7c2ac58f242e0ff574b217544c9715815d557465e0b42beadd0","signature":"e326f4296ab10bbe0d9fc4bbc0ec6bd8ad47e5f3120471aedf482a0704974dab"},{"version":"a5010b48b8e8774342e907222976ed9a102ab61b7237f4c6bc382970a574aaba","affectsGlobalScope":true},{"version":"48da7777fb5b3d49f8bca6e373eeff5230f3df6434fbb16721352e214b5c337a","signature":"a2dc116b16fae95e29d3c0c34ccdce1d0c5222110739a088eb15bfd3d6243859"},"4489c6a9fde8934733aa7df6f7911461ee6e9e4ad092736bd416f6b2cc20b2c6","2c8e55457aaf4902941dfdba4061935922e8ee6e120539c9801cd7b400fae050","8041cfce439ff29d339742389de04c136e3029d6b1817f07b2d7fcbfb7534990","670a76db379b27c8ff42f1ba927828a22862e2ab0b0908e38b671f0e912cc5ed","9d38964b57191567a14b396422c87488cecd48f405c642daa734159875ee81d9","069bebfee29864e3955378107e243508b163e77ab10de6a5ee03ae06939f0bb9","ee7d8894904b465b072be0d2e4b45cf6b887cdba16a467645c4e200982ece7ea",{"version":"ae900471ea16b852ce62c0cd17477ca332af7004045242d41b01a505c678950a","affectsGlobalScope":true},"77b55f8bfab90aa408704132d98b72f8762e2fe955eeda093ace44120d6adc1a","1a51e4b4124e594679e6d180c78744fc71a653498ab2fca15936213ae44988f5","062c4a701f1ae473443a9b9e44db248226679716362b4759b7f5f682a97a5e8c","c730d00be50adc461f9fbf58c6db9cda705939a09409cd87a1856797db87bdf8","a4d75759d36a6e0f3ad9714c580297645982e6e815c589f0477d9e986463ad02","44f6faf4f46620220cacf9757989fcd4a64d56ff9dfd50b5075b889283f8a606","acdc9fb9638a235a69bd270003d8db4d6153ada2b7ccbea741ade36b295e431e","7394959e5a741b185456e1ef5d64599c36c60a323207450991e7a42e08911419","5929864ce17fba74232584d90cb721a89b7ad277220627cc97054ba15a98ea8f","7180c03fd3cb6e22f911ce9ba0f8a7008b1a6ddbe88ccf16a9c8140ef9ac1686","25c8056edf4314820382a5fdb4bb7816999acdcb929c8f75e3f39473b87e85bc","54cb85a47d760da1c13c00add10d26b5118280d44d58e6908d8e89abbd9d7725","3e4825171442666d31c845aeb47fcd34b62e14041bb353ae2b874285d78482aa","c6fd2c5a395f2432786c9cb8deb870b9b0e8ff7e22c029954fabdd692bff6195","a967bfe3ad4e62243eb604bf956101e4c740f5921277c60debaf325c1320bf88","e9775e97ac4877aebf963a0289c81abe76d1ec9a2a7778dbe637e5151f25c5f3","471e1da5a78350bc55ef8cef24eb3aca6174143c281b8b214ca2beda51f5e04a","cadc8aced301244057c4e7e73fbcae534b0f5b12a37b150d80e5a45aa4bebcbd","385aab901643aa54e1c36f5ef3107913b10d1b5bb8cbcd933d4263b80a0d7f20","9670d44354bab9d9982eca21945686b5c24a3f893db73c0dae0fd74217a4c219","db3435f3525cd785bf21ec6769bf8da7e8a776be1a99e2e7efb5f244a2ef5fee","c3b170c45fc031db31f782e612adf7314b167e60439d304b49e704010e7bafe5","40383ebef22b943d503c6ce2cb2e060282936b952a01bea5f9f493d5fb487cc7","4893a895ea92c85345017a04ed427cbd6a1710453338df26881a6019432febdd","3a84b7cb891141824bd00ef8a50b6a44596aded4075da937f180c90e362fe5f6","13f6f39e12b1518c6650bbb220c8985999020fe0f21d818e28f512b7771d00f9","9b5369969f6e7175740bf51223112ff209f94ba43ecd3bb09eefff9fd675624a","4fe9e626e7164748e8769bbf74b538e09607f07ed17c2f20af8d680ee49fc1da","24515859bc0b836719105bb6cc3d68255042a9f02a6022b3187948b204946bd2","33203609eba548914dc83ddf6cadbc0bcb6e8ef89f6d648ca0908ae887f9fcc5","0db18c6e78ea846316c012478888f33c11ffadab9efd1cc8bcc12daded7a60b6","89167d696a849fce5ca508032aabfe901c0868f833a8625d5a9c6e861ef935d2","e53a3c2a9f624d90f24bf4588aacd223e7bec1b9d0d479b68d2f4a9e6011147f","339dc5265ee5ed92e536a93a04c4ebbc2128f45eeec6ed29f379e0085283542c","9f0a92164925aa37d4a5d9dd3e0134cff8177208dba55fd2310cd74beea40ee2","8bfdb79bf1a9d435ec48d9372dc93291161f152c0865b81fc0b2694aedb4578d","2e85db9e6fd73cfa3d7f28e0ab6b55417ea18931423bd47b409a96e4a169e8e6","c46e079fe54c76f95c67fb89081b3e399da2c7d109e7dca8e4b58d83e332e605","d32275be3546f252e3ad33976caf8c5e842c09cb87d468cb40d5f4cf092d1acc","4a0c3504813a3289f7fb1115db13967c8e004aa8e4f8a9021b95285502221bd1",{"version":"a14ed46fa3f5ffc7a8336b497cd07b45c2084213aaca933a22443fcb2eef0d07","affectsGlobalScope":true},"cce1f5f86974c1e916ec4a8cab6eec9aa8e31e8148845bf07fbaa8e1d97b1a2c",{"version":"7fd7fcbf021a5845bdd9397d4649fcf2fe17152d2098140fc723099a215d19ad","affectsGlobalScope":true},"df3389f71a71a38bc931aaf1ef97a65fada98f0a27f19dd12f8b8de2b0f4e461","d69a3298a197fe5d59edba0ec23b4abf2c8e7b8c6718eac97833633cd664e4c9",{"version":"a9544f6f8af0d046565e8dde585502698ebc99eef28b715bad7c2bded62e4a32","affectsGlobalScope":true},"a40826e8476694e90da94aa008283a7de50d1dafd37beada623863f1901cb7fb",{"version":"8b809082dfeffc8cc4f3b9c59f55c0ff52ba12f5ae0766cb5c35deee83b8552e","affectsGlobalScope":true},"bd3f5d05b6b5e4bfcea7739a45f3ffb4a7f4a3442ba7baf93e0200799285b8f1","4c775c2fccabf49483c03cd5e3673f87c1ffb6079d98e7b81089c3def79e29c6","d4f9d3ae2fe1ae199e1c832cca2c44f45e0b305dfa2808afdd51249b6f4a5163","7525257b4aa35efc7a1bbc00f205a9a96c4e4ab791da90db41b77938c4e0c18e","b7fe70be794e13d1b7940e318b8770cd1fb3eced7707805318a2e3aaac2c3e9e",{"version":"ee1ee365d88c4c6c0c0a5a5701d66ebc27ccd0bcfcfaa482c6e2e7fe7b98edf7","affectsGlobalScope":true},{"version":"9c611eff81287837680c1f4496daf9e737d6f3a1ff17752207814b8f8e1265af","affectsGlobalScope":true},"fe1fd6afdfe77976d4c702f3746c05fb05a7e566845c890e0e970fe9376d6a90","b5d4e3e524f2eead4519c8e819eaf7fa44a27c22418eff1b7b2d0ebc5fdc510d","afb1701fd4be413a8a5a88df6befdd4510c30a31372c07a4138facf61594c66d","9bd8e5984676cf28ebffcc65620b4ab5cb38ab2ec0aac0825df8568856895653","396a8939b5e177542bdf9b5262b4eee85d29851b2d57681fa9d7eae30e225830","5e8dc64e7e68b2b3ea52ed685cf85239e0d5fb9df31aabc94370c6bc7e19077b",{"version":"ea455cc68871b049bcecd9f56d4cf27b852d6dafd5e3b54468ca87cc11604e4d","affectsGlobalScope":true},"c07146dbbbd8b347241b5df250a51e48f2d7bef19b1e187b1a3f20c849988ff1","45b1053e691c5af9bfe85060a3e1542835f8d84a7e6e2e77ca305251eda0cb3c","0f05c06ff6196958d76b865ae17245b52d8fe01773626ac3c43214a2458ea7b7",{"version":"ae5507fc333d637dec9f37c6b3f4d423105421ea2820a64818de55db85214d66","affectsGlobalScope":true},{"version":"46755a4afc53df75f0bfce72259fb971daac826b0cdd8c4eaccad2755a817403","affectsGlobalScope":true},"8abd0566d2854c4bd1c5e48e05df5c74927187f1541e6770001d9637ac41542e","54e854615c4eafbdd3fd7688bd02a3aafd0ccf0e87c98f79d3e9109f047ce6b8","d8dba11dc34d50cb4202de5effa9a1b296d7a2f4a029eec871f894bddfb6430d","8b71dd18e7e63b6f991b511a201fad7c3bf8d1e0dd98acb5e3d844f335a73634","01d8e1419c84affad359cc240b2b551fb9812b450b4d3d456b64cda8102d4f60","9eece5e586312581ccd106d4853e861aaaa1a39f8e3ea672b8c3847eedd12f6e","8221b00f271cf7f535a8eeec03b0f80f0929c7a16116e2d2df089b41066de69b","269929a24b2816343a178008ac9ae9248304d92a8ba8e233055e0ed6dbe6ef71","93452d394fdd1dc551ec62f5042366f011a00d342d36d50793b3529bfc9bd633","7fa32887f8a97909fca35ebba3740f8caf8df146618d8fff957a3f89f67a2f6a","9a9634296cca836c3308923ba7aa094fa6ed76bb1e366d8ddcf5c65888ab1024",{"version":"bddce945d552a963c9733db106b17a25474eefcab7fc990157a2134ef55d4954","affectsGlobalScope":true},{"version":"7052b7b0c3829df3b4985bab2fd74531074b4835d5a7b263b75c82f0916ad62f","affectsGlobalScope":true},"aa34c3aa493d1c699601027c441b9664547c3024f9dbab1639df7701d63d18fa","4b55240c2a03b2c71e98a7fc528b16136faa762211c92e781a01c37821915ea6","7c651f8dce91a927ab62925e73f190763574c46098f2b11fb8ddc1b147a6709a","7440ab60f4cb031812940cc38166b8bb6fbf2540cfe599f87c41c08011f0c1df",{"version":"94c086dff8dbc5998749326bc69b520e8e4273fb5b7b58b50e0210e0885dfcde","affectsGlobalScope":true},{"version":"f5b5dc128973498b75f52b1b8c2d5f8629869104899733ae485100c2309b4c12","affectsGlobalScope":true},"ebe5facd12fd7745cda5f4bc3319f91fb29dc1f96e57e9c6f8b260a7cc5b67ee","79bad8541d5779c85e82a9fb119c1fe06af77a71cc40f869d62ad379473d4b75","21c56c6e8eeacef15f63f373a29fab6a2b36e4705be7a528aae8c51469e2737b",{"version":"629d20681ca284d9e38c0a019f647108f5fe02f9c59ac164d56f5694fc3faf4d","affectsGlobalScope":true},"e7dbf5716d76846c7522e910896c5747b6df1abd538fee8f5291bdc843461795",{"version":"ab9b9a36e5284fd8d3bf2f7d5fcbc60052f25f27e4d20954782099282c60d23e","affectsGlobalScope":true},"a42be67ed1ddaec743582f41fc219db96a1b69719fccac6d1464321178d610fc","52b45ec8a6511f1c50bd5fd41ee5ccfd6909560b71f66352771f0d556c7e443f","2f848b4e660b568651a6350565afc8ac5b0644853a2a863862807602cf244a05","e7049308a11ff36ca7eee4ff33df35106eb108018ea4cd4cdb00efe8e9711ce0","ce8b68c4394368261823cd31b6dd3b02457aa93b3488e93302d1a5438dbe8107","93931e9bf03fc64df77f6617fbd8df48ad86c636eb97188c7ef979a4c338cd9e","6c468c66d622b07d6ad6c4dc2fbec2ce1ca3d50e22c247a69a8ca7a214ceabd8","971f12a5fc236419ced0b7b9f23a53c1758233713f565635bbf4b85e2b23f55a","9d670bb3be18ea59cea824e3bb07d576b55c9542f5bc24aacc2a3c1ebd889de6","695b586df2d8c78b78cdd7cc6943594f3f4bc52948f13b31cdedfa3ce8d97c31","0771a93ef5e3b2a29f929c20f7ad232829341a671c9d1e96e93ef3fc42ef7bc2","cadb68b67b80b14a9a5bb64cce3093168fb2bfe2c7b10096d230df5203218de1","0b3c75be13f930b46117e205d900ee9c4f2ad6c7317655bca5364958ba1e34f0","5af161220fdf46730477706e8c431ccbd1b4ff50223cb32450bc20513f50bfbd","1bfbc75967888d5e8854123482a2725a806208d9cee4a09937e566ea67c1df99","a6b62e405392a02cc9433194c8713ede9cdf45997a6745c377888dcb0ef0f5b7",{"version":"15eb1ed602c940e54df2f6f603ae0a2e27429ba037c0a48cfb8bcace4f9d0ae1","signature":"51560636940c1db1f5890df21603e3a01ca8c82f514e6ed7fc74ece5f133d7cd"},{"version":"3867b499173febbf5db998810d44d916d89d95e7eb1365509394c55d92a55f4f","signature":"820055ca96c42524f9d97bd807ad04b9409232ad7eaded419dc8045ecce562b7"},{"version":"81219c1dacc7c3684e450781d4fabef365fd7cbb7c59ea7b0f1e3bd363e9b61f","signature":"910d2fac24fd87cec6419572d00528987cebb27ad85e573dbcadc85fb8b8c905"},"50fe7227e5ec1fb3af6533cfbf768b0ec9e7720cd4c3a23d487250fc7e5ef787","c402f0c81658ab9b62fa1c2cee7019fccb6c8bde30afbbfe4d174eb700d5c4e3","9a31c55a8db9f8a598572259178ad9fe894f9988aae18b55460f4f44af1b76ce","94e21187921b012a2bb763962655ea237d6b9a09e6555b9718e3cf9992cba585","1acf4222a7c7f9c3e7caae92fd073713dd122913f1c53b3fa14b2fc0474ac9f2",{"version":"8e7164057b822abfe9a89081b14426f080883f435226a7bfdc7d41f52f099c95","signature":"44908da5d98afedda43aca5cc6ccc20055089cc72bdb55160ee376df5abfda65"},"af919f385be19f5567a9b541f219ff2b9efe8a054e59460e9884415a4c81d67f",{"version":"e4420422049c0c25ba9bea8fb17923409cc5c63382cff5825421f427b290c8de","signature":"538f66dbbfadf1ff4a8009046c9c2c221d381455543a254ba45be92df5289f20"},{"version":"8d38dbc4eee91ce95a3b6191c54a8905d9ed2746daf65d1ebdf5d236693c9412","signature":"64292e0c80e414624a458a479f6e125e6c11fe363620a59f990ffd880ce72eeb"},"945525e692865e8aefdbfe701542f15fe256babb642c538893979994f9f91c0a",{"version":"886fb5e32df42461989c99405ec5a7de5ba220563d2251899d52c3e9204ab292","signature":"b54e6fba7b99116a7817e98eccb5ea6e7919eb6f6aa668909b418cd208fd4040"},"ea5954e89abc0c4e805de7f97ef1e9bc8ec88f277754da5ee93f6c0f1bc8edc1","ee9e05db3595260d6b0711bd770b95284726d007013ff332ee1842de60da0bb6",{"version":"36b2da85a66b1ba0c630891344a78c459eceb85d8212caebda46d0b18bae6a06","signature":"734ceff6664514d97e76c9da86de362aadaa4b0562e7c632c48a4b1ecc8c3b12"},{"version":"b2828fa6f99e5dff31bf79f441ab0ad57d59c5e632c4ae880ee537b3208eeaca","signature":"0545a204da459bca62369c9187bb92da117c080d630b7178e0dc5658eb5ccd27"},"eac647a94fb1f09789e12dfecb52dcd678d05159a4796b4e415aa15892f3b103","0744807211f8cd16343fb1a796f53a8f7b7f95d4bd278c48febf657679bf28e6",{"version":"51cd612f34bc94e4269433114423c836525b31d0618f38f86aeeb82cbcf9e473","signature":"9b3959dfd00878828934ee3dcffa80739d0179efdf66951540eec602ef2edd8b"},{"version":"7a646667c717666665bc01ed14c9a7b216d72b2df354764937f414c0de82fa1d","signature":"793472fa703dabd65bc3bcdb71e0ed66fddcc1de57e3ea274a648dbe0e5a029d"},"16734a9822b84c9ad7d0cbe31a0aebead2b10c2692231c4a22c13c9971b2e754","acfed6cc001e7f7f26d2ba42222a180ba669bb966d4dd9cb4ad5596516061b13","f61a4dc92450609c353738f0a2daebf8cae71b24716dbd952456d80b1e1a48b6","b1adbadd9e2b45fa099362a19f95fec9d145b4b7f74f81c18d8fa1a163da47e0",{"version":"699012acfa1a7ac195caf8a453ddeda67a307859ea0977cc8e60bf7f1099a47a","signature":"43e818adf60173644896298637f47b01d5819b17eda46eaa32d0c7d64724d012"},"cf3d384d082b933d987c4e2fe7bfb8710adfd9dc8155190056ed6695a25a559e","9871b7ee672bc16c78833bdab3052615834b08375cb144e4d2cba74473f4a589","c863198dae89420f3c552b5a03da6ed6d0acfa3807a64772b895db624b0de707","8b03a5e327d7db67112ebbc93b4f744133eda2c1743dbb0a990c61a8007823ef","86c73f2ee1752bac8eeeece234fd05dfcf0637a4fbd8032e4f5f43102faa8eec","42fad1f540271e35ca37cecda12c4ce2eef27f0f5cf0f8dd761d723c744d3159","ff3743a5de32bee10906aff63d1de726f6a7fd6ee2da4b8229054dfa69de2c34","83acd370f7f84f203e71ebba33ba61b7f1291ca027d7f9a662c6307d74e4ac22","1445cec898f90bdd18b2949b9590b3c012f5b7e1804e6e329fb0fe053946d5ec","0e5318ec2275d8da858b541920d9306650ae6ac8012f0e872fe66eb50321a669","cf530297c3fb3a92ec9591dd4fa229d58b5981e45fe6702a0bd2bea53a5e59be","c1f6f7d08d42148ddfe164d36d7aba91f467dbcb3caa715966ff95f55048b3a4","f4e9bf9103191ef3b3612d3ec0044ca4044ca5be27711fe648ada06fad4bcc85","0c1ee27b8f6a00097c2d6d91a21ee4d096ab52c1e28350f6362542b55380059a","7677d5b0db9e020d3017720f853ba18f415219fb3a9597343b1b1012cfd699f7","bc1c6bc119c1784b1a2be6d9c47addec0d83ef0d52c8fbe1f14a51b4dfffc675","52cf2ce99c2a23de70225e252e9822a22b4e0adb82643ab0b710858810e00bf1","770625067bb27a20b9826255a8d47b6b5b0a2d3dfcbd21f89904c731f671ba77","d1ed6765f4d7906a05968fb5cd6d1db8afa14dbe512a4884e8ea5c0f5e142c80","799c0f1b07c092626cf1efd71d459997635911bb5f7fc1196efe449bba87e965","2a184e4462b9914a30b1b5c41cf80c6d3428f17b20d3afb711fff3f0644001fd","9eabde32a3aa5d80de34af2c2206cdc3ee094c6504a8d0c2d6d20c7c179503cc","397c8051b6cfcb48aa22656f0faca2553c5f56187262135162ee79d2b2f6c966","a8ead142e0c87dcd5dc130eba1f8eeed506b08952d905c47621dc2f583b1bff9","a02f10ea5f73130efca046429254a4e3c06b5475baecc8f7b99a0014731be8b3","c2576a4083232b0e2d9bd06875dd43d371dee2e090325a9eac0133fd5650c1cb","4c9a0564bb317349de6a24eb4efea8bb79898fa72ad63a1809165f5bd42970dd","f40ac11d8859092d20f953aae14ba967282c3bb056431a37fced1866ec7a2681","cc11e9e79d4746cc59e0e17473a59d6f104692fd0eeea1bdb2e206eabed83b03","b444a410d34fb5e98aa5ee2b381362044f4884652e8bc8a11c8fe14bbd85518e","c35808c1f5e16d2c571aa65067e3cb95afeff843b259ecfa2fc107a9519b5392","14d5dc055143e941c8743c6a21fa459f961cbc3deedf1bfe47b11587ca4b3ef5","a3ad4e1fc542751005267d50a6298e6765928c0c3a8dce1572f2ba6ca518661c","f237e7c97a3a89f4591afd49ecb3bd8d14f51a1c4adc8fcae3430febedff5eb6","3ffdfbec93b7aed71082af62b8c3e0cc71261cc68d796665faa1e91604fbae8f","662201f943ed45b1ad600d03a90dffe20841e725203ced8b708c91fcd7f9379a","c9ef74c64ed051ea5b958621e7fb853fe3b56e8787c1587aefc6ea988b3c7e79","2462ccfac5f3375794b861abaa81da380f1bbd9401de59ffa43119a0b644253d","34baf65cfee92f110d6653322e2120c2d368ee64b3c7981dff08ed105c4f19b0","7d8ddf0f021c53099e34ee831a06c394d50371816caa98684812f089b4c6b3d4"],"root":[[65,67],[184,186],192,194,195,197,200,201,204,205,210],"options":{"allowUnreachableCode":false,"allowUnusedLabels":false,"checkJs":true,"composite":true,"declaration":true,"emitDeclarationOnly":true,"esModuleInterop":true,"exactOptionalPropertyTypes":true,"module":99,"noFallthroughCasesInSwitch":true,"noImplicitOverride":true,"noImplicitReturns":true,"noUncheckedIndexedAccess":true,"noUnusedParameters":true,"outDir":"./","rootDir":"../src","skipLibCheck":true,"strict":true,"strictNullChecks":true,"target":9,"useUnknownInCatchVariables":true},"fileIdsList":[[68],[178,180],[179],[178,181],[176,178],[175,176,177],[175,178],[73,75,76],[75,76],[75],[74],[81,168],[131,168],[130,131,149,168],[68,69,70,71,72],[68,70],[82],[117],[118,123,152],[119,130,131,138,149,160],[119,120,130,138],[121,161],[122,123,131,139],[123,149,157],[124,126,130,138],[117,125],[126,127],[130],[128,130],[117,130],[130,131,132,149,160],[130,131,132,145,149,152],[115,118,165],[126,130,133,138,149,160],[130,131,133,134,138,149,157,160],[133,135,149,157,160],[82,83,116,117,118,119,120,121,122,123,124,125,126,127,128,129,130,131,132,133,134,135,136,137,138,139,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],[130,136],[137,160,165],[126,130,138,149],[139],[140],[117,141],[142,159,165],[143],[144],[130,145,146],[145,147,161,163],[118,130,149,150,151,152],[118,149,151],[149,150],[152],[153],[117,149],[130,155,156],[155,156],[123,138,149,157],[158],[138,159],[118,133,144,160],[123,161],[149,162],[137,163],[164],[118,123,130,132,141,149,160,163,165],[149,166],[211,250],[211,235,250],[250],[211],[211,236,250],[211,212,213,214,215,216,217,218,219,220,221,222,223,224,225,226,227,228,229,230,231,232,233,234,235,236,237,238,239,240,241,242,243,244,245,246,247,248,249],[236,250],[207,208],[159],[130,131,168,202],[187,190],[160,168,188],[187],[160,168,187,189],[170],[182],[92,96,160],[92,149,160],[87],[89,92,157,160],[138,157],[168],[87,168],[89,92,138,160],[84,85,88,91,118,130,149,160],[84,90],[88,92,118,152,160,168],[118,168],[108,118,168],[86,87,168],[92],[86,87,88,89,90,91,92,93,94,96,97,98,99,100,101,102,103,104,105,106,107,109,110,111,112,113,114],[92,99,100],[90,92,100,101],[91],[84,87,92],[92,96,100,101],[96],[90,92,95,160],[84,89,90,92,96,99],[118,149],[87,92,108,118,165,168],[65,67,132,139,140,169,172,195,197,198,199,200,201,203,204,205,206,209],[132,140],[65,67,195,197,200,201,204],[65,66,68,69,70,72,73,75,77,78,79,80,81,140,169,171,184,185,186,192,194],[68,69,72,81,169,172,173,174,183,184],[68,69,70,72,169,173,191],[68,72,169],[65,68,72,169,184,193],[140,196],[65,81,132,140,172,195,198,199,205],[65,67,81,132,140,169,172,195,198,199,200,203],[81,185,186,192,194],[68,81],[68,72],[81,205],[81,200]],"referencedMap":[[70,1],[181,2],[180,3],[182,4],[177,5],[178,6],[176,7],[77,8],[78,9],[79,9],[80,10],[76,11],[169,12],[196,13],[199,14],[73,15],[69,1],[71,16],[72,1],[82,17],[83,17],[117,18],[118,19],[119,20],[120,21],[121,22],[122,23],[123,24],[124,25],[125,26],[126,27],[127,27],[129,28],[128,29],[130,30],[131,31],[132,32],[116,33],[133,34],[134,35],[135,36],[168,37],[136,38],[137,39],[138,40],[139,41],[140,42],[141,43],[142,44],[143,45],[144,46],[145,47],[146,47],[147,48],[149,49],[151,50],[150,51],[152,52],[153,53],[154,54],[155,55],[156,56],[157,57],[158,58],[159,59],[160,60],[161,61],[162,62],[163,63],[164,64],[165,65],[166,66],[235,67],[236,68],[211,69],[214,69],[233,67],[234,67],[224,67],[223,70],[221,67],[216,67],[229,67],[227,67],[231,67],[215,67],[228,67],[232,67],[217,67],[218,67],[230,67],[212,67],[219,67],[220,67],[222,67],[226,67],[237,71],[225,67],[213,67],[250,72],[244,71],[246,73],[245,71],[238,71],[239,71],[241,71],[243,71],[247,73],[248,73],[240,73],[242,73],[209,74],[208,75],[203,76],[191,77],[189,78],[188,79],[190,80],[171,81],[75,11],[183,82],[99,83],[106,84],[98,83],[113,85],[90,86],[89,87],[112,88],[107,89],[110,90],[92,91],[91,92],[87,93],[86,94],[109,95],[88,96],[93,97],[97,97],[115,98],[114,97],[101,99],[102,100],[104,101],[100,102],[103,103],[108,88],[95,104],[96,105],[105,106],[85,107],[111,108],[210,109],[67,110],[205,111],[195,112],[185,113],[192,114],[184,115],[194,116],[197,117],[200,118],[201,110],[204,119]],"exportedModulesMap":[[70,1],[181,2],[180,3],[182,4],[177,5],[178,6],[176,7],[77,8],[78,9],[79,9],[80,10],[76,11],[169,12],[196,13],[199,14],[73,15],[69,1],[71,16],[72,1],[82,17],[83,17],[117,18],[118,19],[119,20],[120,21],[121,22],[122,23],[123,24],[124,25],[125,26],[126,27],[127,27],[129,28],[128,29],[130,30],[131,31],[132,32],[116,33],[133,34],[134,35],[135,36],[168,37],[136,38],[137,39],[138,40],[139,41],[140,42],[141,43],[142,44],[143,45],[144,46],[145,47],[146,47],[147,48],[149,49],[151,50],[150,51],[152,52],[153,53],[154,54],[155,55],[156,56],[157,57],[158,58],[159,59],[160,60],[161,61],[162,62],[163,63],[164,64],[165,65],[166,66],[235,67],[236,68],[211,69],[214,69],[233,67],[234,67],[224,67],[223,70],[221,67],[216,67],[229,67],[227,67],[231,67],[215,67],[228,67],[232,67],[217,67],[218,67],[230,67],[212,67],[219,67],[220,67],[222,67],[226,67],[237,71],[225,67],[213,67],[250,72],[244,71],[246,73],[245,71],[238,71],[239,71],[241,71],[243,71],[247,73],[248,73],[240,73],[242,73],[209,74],[208,75],[203,76],[191,77],[189,78],[188,79],[190,80],[171,81],[75,11],[183,82],[99,83],[106,84],[98,83],[113,85],[90,86],[89,87],[112,88],[107,89],[110,90],[92,91],[91,92],[87,93],[86,94],[109,95],[88,96],[93,97],[97,97],[115,98],[114,97],[101,99],[102,100],[104,101],[100,102],[103,103],[108,88],[95,104],[96,105],[105,106],[85,107],[111,108],[205,111],[195,120],[185,121],[184,122],[194,1],[200,123],[204,124]],"semanticDiagnosticsPerFile":[70,68,181,179,180,182,177,175,178,176,77,78,79,80,76,198,169,193,196,172,81,173,199,73,69,71,72,74,82,83,117,118,119,120,121,122,123,124,125,126,127,129,128,130,131,132,116,167,133,134,135,168,136,137,138,139,140,141,142,143,144,145,146,147,148,149,151,150,152,153,154,155,156,157,158,159,160,161,162,163,164,165,166,235,236,211,214,233,234,224,223,221,216,229,227,231,215,228,232,217,218,230,212,219,220,222,226,237,225,213,250,249,244,246,245,238,239,241,243,247,248,240,242,174,202,209,207,208,203,191,187,189,188,190,170,171,75,183,99,106,98,113,90,89,112,107,110,92,91,87,86,109,88,93,94,97,84,115,114,101,102,104,100,103,108,95,96,105,85,111,206,210,65,66,67,205,195,185,186,192,184,194,197,200,201,204,62,63,12,10,11,16,15,2,17,18,19,20,21,22,23,24,3,25,4,26,30,27,28,29,31,32,33,5,34,35,36,37,6,41,38,39,40,42,7,43,48,49,44,45,46,47,8,53,50,51,52,54,9,55,64,56,57,60,58,59,1,61,14,13],"latestChangedDtsFile":"./bin/hsm.d.ts"},"version":"5.4.5"}
|