@akala/pm 3.3.4 → 3.4.0
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- package/changelog.md +11 -1
- package/dist/commands/bridge.d.ts +3 -0
- package/dist/commands/bridge.js +8 -0
- package/dist/commands/bridge.js.map +1 -0
- package/dist/commands/reload-metadata.js +1 -1
- package/dist/commands/reload-metadata.js.map +1 -1
- package/dist/commands/start.d.ts +1 -13
- package/dist/commands/start.js +2 -45
- package/dist/commands/start.js.map +1 -1
- package/dist/fork.js +32 -19
- package/dist/fork.js.map +1 -1
- package/dist/index.js +1 -1
- package/dist/ipc-adapter.d.ts +15 -0
- package/dist/ipc-adapter.js +51 -0
- package/dist/ipc-adapter.js.map +1 -0
- package/dist/state.d.ts +4 -1
- package/package.json +6 -6
- package/src/commands/bridge.ts +9 -0
- package/src/commands/reload-metadata.ts +1 -1
- package/src/commands/start.ts +1 -67
- package/src/fork.ts +39 -24
- package/src/index.ts +1 -1
- package/src/ipc-adapter.ts +65 -0
- package/src/state.ts +2 -1
- package/tsconfig.tsbuildinfo +1 -1
package/changelog.md
CHANGED
@@ -0,0 +1,8 @@
|
|
1
|
+
"use strict";
|
2
|
+
Object.defineProperty(exports, "__esModule", { value: true });
|
3
|
+
function default_1(connectionId, socket) {
|
4
|
+
this.awaitingConnections[connectionId].pipe(socket);
|
5
|
+
socket.pipe(this.awaitingConnections[connectionId]);
|
6
|
+
}
|
7
|
+
exports.default = default_1;
|
8
|
+
//# sourceMappingURL=bridge.js.map
|
@@ -0,0 +1 @@
|
|
1
|
+
{"version":3,"file":"bridge.js","sourceRoot":"","sources":["../../src/commands/bridge.ts"],"names":[],"mappings":";;AAIA,mBAAsC,YAAoB,EAAE,MAAqB;IAE7E,IAAI,CAAC,mBAAmB,CAAC,YAAY,CAAC,CAAC,IAAI,CAAC,MAAM,CAAC,CAAC;IACpD,MAAM,CAAC,IAAI,CAAC,IAAI,CAAC,mBAAmB,CAAC,YAAY,CAAC,CAAC,CAAC;AACxD,CAAC;AAJD,4BAIC"}
|
@@ -2,7 +2,7 @@
|
|
2
2
|
Object.defineProperty(exports, "__esModule", { value: true });
|
3
3
|
const commands_1 = require("@akala/commands");
|
4
4
|
async function default_1(remoteContainer) {
|
5
|
-
const metadata = await remoteContainer.dispatch('$metadata');
|
5
|
+
const metadata = await remoteContainer.dispatch('$metadata', true);
|
6
6
|
remoteContainer.name = metadata.name;
|
7
7
|
(0, commands_1.updateCommands)(metadata.commands, null, remoteContainer);
|
8
8
|
}
|
@@ -1 +1 @@
|
|
1
|
-
{"version":3,"file":"reload-metadata.js","sourceRoot":"","sources":["../../src/commands/reload-metadata.ts"],"names":[],"mappings":";;AAAA,8CAAsE;AAEvD,KAAK,oBAAW,eAAgC;IAE3D,MAAM,QAAQ,GAAuB,MAAM,eAAe,CAAC,QAAQ,CAAC,WAAW,CAAC,CAAC;
|
1
|
+
{"version":3,"file":"reload-metadata.js","sourceRoot":"","sources":["../../src/commands/reload-metadata.ts"],"names":[],"mappings":";;AAAA,8CAAsE;AAEvD,KAAK,oBAAW,eAAgC;IAE3D,MAAM,QAAQ,GAAuB,MAAM,eAAe,CAAC,QAAQ,CAAC,WAAW,EAAE,IAAI,CAAC,CAAC;IACvF,eAAe,CAAC,IAAI,GAAG,QAAQ,CAAC,IAAI,CAAC;IACrC,IAAA,yBAAc,EAAC,QAAQ,CAAC,QAAQ,EAAE,IAAI,EAAE,eAAe,CAAC,CAAC;AAC7D,CAAC;AALD,4BAKC"}
|
package/dist/commands/start.d.ts
CHANGED
@@ -1,11 +1,8 @@
|
|
1
1
|
/// <reference types="node" />
|
2
|
-
/// <reference types="webpack-env" />
|
3
2
|
import { Container } from "@akala/commands";
|
4
3
|
import State from '../state';
|
5
|
-
import {
|
4
|
+
import { StdioOptions } from "child_process";
|
6
5
|
import pmContainer from '../container';
|
7
|
-
import * as jsonrpc from '@akala/json-rpc-ws';
|
8
|
-
import { SocketAdapterEventMap } from "@akala/json-rpc-ws";
|
9
6
|
import { CliContext } from "@akala/cli";
|
10
7
|
declare function start(this: State, pm: pmContainer.container & Container<State>, name: string, context?: CliContext<{
|
11
8
|
new?: boolean;
|
@@ -25,12 +22,3 @@ declare namespace start {
|
|
25
22
|
var $inject: string[];
|
26
23
|
}
|
27
24
|
export default start;
|
28
|
-
export declare class IpcAdapter implements jsonrpc.SocketAdapter {
|
29
|
-
private cp;
|
30
|
-
get open(): boolean;
|
31
|
-
close(): void;
|
32
|
-
send(data: string): void;
|
33
|
-
on<K extends keyof SocketAdapterEventMap>(event: K, handler: (ev: SocketAdapterEventMap[K]) => void): void;
|
34
|
-
once<K extends keyof SocketAdapterEventMap>(event: K, handler: (ev: SocketAdapterEventMap[K]) => void): void;
|
35
|
-
constructor(cp: ChildProcess | NodeJS.Process);
|
36
|
-
}
|
package/dist/commands/start.js
CHANGED
@@ -26,7 +26,6 @@ var __importDefault = (this && this.__importDefault) || function (mod) {
|
|
26
26
|
return (mod && mod.__esModule) ? mod : { "default": mod };
|
27
27
|
};
|
28
28
|
Object.defineProperty(exports, "__esModule", { value: true });
|
29
|
-
exports.IpcAdapter = void 0;
|
30
29
|
const commands_1 = require("@akala/commands");
|
31
30
|
const child_process_1 = require("child_process");
|
32
31
|
const jsonrpc = __importStar(require("@akala/json-rpc-ws"));
|
@@ -34,6 +33,7 @@ const core_1 = require("@akala/core");
|
|
34
33
|
const new_line_prefixer_js_1 = require("../new-line-prefixer.js");
|
35
34
|
const cli_1 = require("@akala/cli");
|
36
35
|
const name_1 = __importDefault(require("./name"));
|
36
|
+
const ipc_adapter_1 = require("../ipc-adapter");
|
37
37
|
async function start(pm, name, context) {
|
38
38
|
let args;
|
39
39
|
if (!context.options.name && context.options.new)
|
@@ -103,7 +103,7 @@ async function start(pm, name, context) {
|
|
103
103
|
cp.stderr?.pipe(new new_line_prefixer_js_1.NewLinePrefixer(context.options.name + ' ', { useColors: true })).pipe(process.stderr);
|
104
104
|
cp.stdout?.pipe(new new_line_prefixer_js_1.NewLinePrefixer(context.options.name + ' ', { useColors: true })).pipe(process.stdout);
|
105
105
|
if (!container || !container.running) {
|
106
|
-
const processor = new commands_1.Processors.JsonRpc(new jsonrpc.Connection(new IpcAdapter(cp), {
|
106
|
+
const processor = new commands_1.Processors.JsonRpc(new jsonrpc.Connection(new ipc_adapter_1.IpcAdapter(cp), {
|
107
107
|
type: 'client', getHandler(method) {
|
108
108
|
log.debug(method);
|
109
109
|
return async function (params, reply) {
|
@@ -164,48 +164,5 @@ async function start(pm, name, context) {
|
|
164
164
|
}
|
165
165
|
}
|
166
166
|
exports.default = start;
|
167
|
-
class IpcAdapter {
|
168
|
-
cp;
|
169
|
-
get open() { return !!this.cp.pid; }
|
170
|
-
close() {
|
171
|
-
this.cp.disconnect();
|
172
|
-
}
|
173
|
-
send(data) {
|
174
|
-
if (this.cp.send)
|
175
|
-
this.cp.send(data + '\n');
|
176
|
-
else
|
177
|
-
console.warn(`process ${this.cp.pid} does not support send over IPC`);
|
178
|
-
}
|
179
|
-
on(event, handler) {
|
180
|
-
switch (event) {
|
181
|
-
case 'message':
|
182
|
-
this.cp.on('message', handler);
|
183
|
-
break;
|
184
|
-
case 'open':
|
185
|
-
handler(null);
|
186
|
-
break;
|
187
|
-
case 'close':
|
188
|
-
this.cp.on('disconnect', handler);
|
189
|
-
break;
|
190
|
-
}
|
191
|
-
}
|
192
|
-
once(event, handler) {
|
193
|
-
switch (event) {
|
194
|
-
case 'message':
|
195
|
-
this.cp.once('message', handler);
|
196
|
-
break;
|
197
|
-
case 'open':
|
198
|
-
handler(null);
|
199
|
-
break;
|
200
|
-
case 'close':
|
201
|
-
this.cp.once('disconnect', () => handler(null));
|
202
|
-
break;
|
203
|
-
}
|
204
|
-
}
|
205
|
-
constructor(cp) {
|
206
|
-
this.cp = cp;
|
207
|
-
}
|
208
|
-
}
|
209
|
-
exports.IpcAdapter = IpcAdapter;
|
210
167
|
start.$inject = ['$container', 'param.0', 'options'];
|
211
168
|
//# sourceMappingURL=start.js.map
|
@@ -1 +1 @@
|
|
1
|
-
{"version":3,"file":"start.js","sourceRoot":"","sources":["../../src/commands/start.ts"],"names":[],"mappings":"
|
1
|
+
{"version":3,"file":"start.js","sourceRoot":"","sources":["../../src/commands/start.ts"],"names":[],"mappings":"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"}
|
package/dist/fork.js
CHANGED
@@ -32,11 +32,12 @@ source_map_support_1.default.install();
|
|
32
32
|
const path = __importStar(require("path"));
|
33
33
|
const ac = __importStar(require("@akala/commands"));
|
34
34
|
const promises_1 = require("fs/promises");
|
35
|
-
const
|
35
|
+
const ipc_adapter_1 = require("./ipc-adapter");
|
36
36
|
const net_1 = require("net");
|
37
37
|
const core_1 = require("@akala/core");
|
38
38
|
const cli_1 = __importStar(require("@akala/cli"));
|
39
39
|
const commands_1 = require("@akala/commands");
|
40
|
+
const serve_metadata_1 = require("@akala/commands/src/serve-metadata");
|
40
41
|
var isPm = false;
|
41
42
|
cli_1.default.useMiddleware({
|
42
43
|
handle: async (c) => {
|
@@ -59,7 +60,7 @@ logMiddleware.preAction(async (c) => {
|
|
59
60
|
await ac.Processors.FileSystem.discoverCommands(c.options.program, cliContainer, { processor: processor, isDirectory: folderOrFile.isDirectory() });
|
60
61
|
});
|
61
62
|
const initMiddleware = new cli_1.NamespaceMiddleware(null);
|
62
|
-
cli_1.default.option('program', { needsValue: true }).option('name', { needsValue: true }).
|
63
|
+
cli_1.default.option('program', { needsValue: true }).option('name', { needsValue: true }).option('tls', { needsValue: false }).
|
63
64
|
use(async (c) => //If pure js file
|
64
65
|
{
|
65
66
|
folderOrFile = await (0, promises_1.lstat)(c.options.program);
|
@@ -87,28 +88,34 @@ cli_1.default.option('program', { needsValue: true }).option('name', { needsValu
|
|
87
88
|
ac.Triggers.addCliOptions(init, initMiddleware);
|
88
89
|
initMiddleware.option('pmSocket', { aliases: ['pm-socket', 'pm-sock'] }).action(async (c) => {
|
89
90
|
let pm;
|
91
|
+
let pmConnectInfo;
|
90
92
|
if (!isPm) {
|
91
93
|
if (process.connected) {
|
92
|
-
pm = new ac.Container('pm', null, new ac.Processors.JsonRpc(ac.Processors.JsonRpc.getConnection(new
|
94
|
+
pm = new ac.Container('pm', null, new ac.Processors.JsonRpc(ac.Processors.JsonRpc.getConnection(new ipc_adapter_1.IpcAdapter(process), cliContainer), true));
|
93
95
|
}
|
94
96
|
else {
|
95
97
|
const pmSocket = new net_1.Socket();
|
96
|
-
await
|
97
|
-
|
98
|
-
|
99
|
-
|
100
|
-
|
101
|
-
|
102
|
-
|
103
|
-
|
104
|
-
|
105
|
-
|
106
|
-
|
107
|
-
|
108
|
-
|
109
|
-
|
110
|
-
|
111
|
-
|
98
|
+
const x = await ac.connectByPreference(pmConnectInfo = (0, serve_metadata_1.parseMetadata)(c.options.pmSocket, c.options.tls), { container: cliContainer });
|
99
|
+
pm = x.container;
|
100
|
+
// await new Promise<void>((resolve, reject) =>
|
101
|
+
// {
|
102
|
+
// pmSocket.on('error', reject)
|
103
|
+
// const remote = /^(?:([^:]+):)?(\d+)$/.exec(c.options.pmSocket);
|
104
|
+
// if (!remote)
|
105
|
+
// {
|
106
|
+
// pmSocket.connect(c.options.pmSocket, resolve);
|
107
|
+
// }
|
108
|
+
// else
|
109
|
+
// {
|
110
|
+
// const host = remote[1];
|
111
|
+
// const port = remote[2];
|
112
|
+
// if (host)
|
113
|
+
// pmSocket.connect(Number(port), host, resolve);
|
114
|
+
// else
|
115
|
+
// pmSocket.connect(Number(port), resolve);
|
116
|
+
// }
|
117
|
+
// })
|
118
|
+
// pm = new ac.Container('pm', null, new ac.Processors.JsonRpc(ac.Processors.JsonRpc.getConnection(new ac.NetSocketAdapter(pmSocket), cliContainer), true));
|
112
119
|
}
|
113
120
|
// eslint-disable-next-line @typescript-eslint/no-var-requires
|
114
121
|
(0, commands_1.registerCommands)(require('../commands.json').commands.map(ac.Metadata.extractCommandMetadata), null, pm);
|
@@ -118,6 +125,12 @@ cli_1.default.option('program', { needsValue: true }).option('name', { needsValu
|
|
118
125
|
else
|
119
126
|
pm = cliContainer;
|
120
127
|
(0, core_1.module)('@akala/pm').register('container', pm);
|
128
|
+
cliContainer.register(new commands_1.SelfDefinedCommand(async (connectionId) => {
|
129
|
+
if (!pmConnectInfo)
|
130
|
+
pmConnectInfo = await pm.dispatch('connect', 'pm');
|
131
|
+
var pm2 = await ac.connectByPreference(pmConnectInfo, { container: cliContainer });
|
132
|
+
await pm2.container.dispatch('bridge', connectionId);
|
133
|
+
}, '$bridge'));
|
121
134
|
if (init)
|
122
135
|
await cliContainer.dispatch(init, { options: c.options, param: c.args, _trigger: 'cli', pm: pm, context: c });
|
123
136
|
let stop;
|
package/dist/fork.js.map
CHANGED
@@ -1 +1 @@
|
|
1
|
-
{"version":3,"file":"fork.js","sourceRoot":"","sources":["../src/fork.ts"],"names":[],"mappings":";;;;;;;;;;;;;;;;;;;;;;;;;;;;;AACA,4EAAoC;AACpC,4BAAG,CAAC,OAAO,EAAE,CAAC;AACd,2CAA4B;AAC5B,oDAAsC;AACtC,0CAAoC;AACpC
|
1
|
+
{"version":3,"file":"fork.js","sourceRoot":"","sources":["../src/fork.ts"],"names":[],"mappings":"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"}
|
package/dist/index.js
CHANGED
@@ -64,7 +64,7 @@ function sidecar(options, noCache) {
|
|
64
64
|
catch (e) {
|
65
65
|
if (e && e.statusCode == 404 || !meta.connect) {
|
66
66
|
var c = new commands_1.Container(meta.container.name, null, (0, core_1.module)('@akala/pm').resolve('container').processor);
|
67
|
-
c.processor.useMiddleware(
|
67
|
+
c.processor.useMiddleware(0, {
|
68
68
|
handle(origin, cmd, param) {
|
69
69
|
if (cmd.name.startsWith(meta.container.name + '.'))
|
70
70
|
return undefined;
|
@@ -0,0 +1,15 @@
|
|
1
|
+
/// <reference types="node" />
|
2
|
+
/// <reference types="webpack-env" />
|
3
|
+
import { ChildProcess } from "child_process";
|
4
|
+
import * as jsonrpc from '@akala/json-rpc-ws';
|
5
|
+
import { SocketAdapterEventMap } from "@akala/json-rpc-ws";
|
6
|
+
export declare class IpcAdapter implements jsonrpc.SocketAdapter {
|
7
|
+
private cp;
|
8
|
+
get open(): boolean;
|
9
|
+
pipe(socket: jsonrpc.SocketAdapter<unknown>): void;
|
10
|
+
close(): void;
|
11
|
+
send(data: string): void;
|
12
|
+
on<K extends keyof SocketAdapterEventMap>(event: K, handler: (ev: SocketAdapterEventMap[K]) => void): void;
|
13
|
+
once<K extends keyof SocketAdapterEventMap>(event: K, handler: (ev: SocketAdapterEventMap[K]) => void): void;
|
14
|
+
constructor(cp: ChildProcess | NodeJS.Process);
|
15
|
+
}
|
@@ -0,0 +1,51 @@
|
|
1
|
+
"use strict";
|
2
|
+
Object.defineProperty(exports, "__esModule", { value: true });
|
3
|
+
exports.IpcAdapter = void 0;
|
4
|
+
class IpcAdapter {
|
5
|
+
cp;
|
6
|
+
get open() { return !!this.cp.pid; }
|
7
|
+
pipe(socket) {
|
8
|
+
this.on('message', (message) => socket.send(message));
|
9
|
+
this.on('close', () => socket.close());
|
10
|
+
}
|
11
|
+
close() {
|
12
|
+
this.cp.disconnect();
|
13
|
+
}
|
14
|
+
send(data) {
|
15
|
+
if (this.cp.send)
|
16
|
+
this.cp.send(data + '\n');
|
17
|
+
else
|
18
|
+
console.warn(`process ${this.cp.pid} does not support send over IPC`);
|
19
|
+
}
|
20
|
+
on(event, handler) {
|
21
|
+
switch (event) {
|
22
|
+
case 'message':
|
23
|
+
this.cp.on('message', handler);
|
24
|
+
break;
|
25
|
+
case 'open':
|
26
|
+
handler(null);
|
27
|
+
break;
|
28
|
+
case 'close':
|
29
|
+
this.cp.on('disconnect', handler);
|
30
|
+
break;
|
31
|
+
}
|
32
|
+
}
|
33
|
+
once(event, handler) {
|
34
|
+
switch (event) {
|
35
|
+
case 'message':
|
36
|
+
this.cp.once('message', handler);
|
37
|
+
break;
|
38
|
+
case 'open':
|
39
|
+
handler(null);
|
40
|
+
break;
|
41
|
+
case 'close':
|
42
|
+
this.cp.once('disconnect', () => handler(null));
|
43
|
+
break;
|
44
|
+
}
|
45
|
+
}
|
46
|
+
constructor(cp) {
|
47
|
+
this.cp = cp;
|
48
|
+
}
|
49
|
+
}
|
50
|
+
exports.IpcAdapter = IpcAdapter;
|
51
|
+
//# sourceMappingURL=ipc-adapter.js.map
|
@@ -0,0 +1 @@
|
|
1
|
+
{"version":3,"file":"ipc-adapter.js","sourceRoot":"","sources":["../src/ipc-adapter.ts"],"names":[],"mappings":";;;AAKA,MAAa,UAAU;IAuDC;IArDpB,IAAI,IAAI,KAAc,OAAO,CAAC,CAAC,IAAI,CAAC,EAAE,CAAC,GAAG,CAAC,CAAC,CAAC;IAG7C,IAAI,CAAC,MAAsC;QAEvC,IAAI,CAAC,EAAE,CAAC,SAAS,EAAE,CAAC,OAAO,EAAE,EAAE,CAAC,MAAM,CAAC,IAAI,CAAC,OAAO,CAAC,CAAC,CAAC;QACtD,IAAI,CAAC,EAAE,CAAC,OAAO,EAAE,GAAG,EAAE,CAAC,MAAM,CAAC,KAAK,EAAE,CAAC,CAAC;IAC3C,CAAC;IAED,KAAK;QAED,IAAI,CAAC,EAAE,CAAC,UAAU,EAAE,CAAC;IACzB,CAAC;IACD,IAAI,CAAC,IAAY;QAEb,IAAI,IAAI,CAAC,EAAE,CAAC,IAAI;YACZ,IAAI,CAAC,EAAE,CAAC,IAAI,CAAC,IAAI,GAAG,IAAI,CAAC,CAAC;;YAG1B,OAAO,CAAC,IAAI,CAAC,WAAW,IAAI,CAAC,EAAE,CAAC,GAAG,iCAAiC,CAAC,CAAC;IAC9E,CAAC;IACD,EAAE,CAAwC,KAAQ,EAAE,OAA+C;QAE/F,QAAQ,KAAK,EACb;YACI,KAAK,SAAS;gBACV,IAAI,CAAC,EAAE,CAAC,EAAE,CAAC,SAAS,EAAE,OAAO,CAAC,CAAC;gBAC/B,MAAM;YACV,KAAK,MAAM;gBACP,OAAO,CAAC,IAAI,CAAC,CAAC;gBACd,MAAM;YACV,KAAK,OAAO;gBACR,IAAI,CAAC,EAAE,CAAC,EAAE,CAAC,YAAY,EAAE,OAAO,CAAC,CAAC;gBAClC,MAAM;SACb;IACL,CAAC;IAED,IAAI,CAAwC,KAAQ,EAAE,OAA+C;QAEjG,QAAQ,KAAK,EACb;YACI,KAAK,SAAS;gBACV,IAAI,CAAC,EAAE,CAAC,IAAI,CAAC,SAAS,EAAE,OAAO,CAAC,CAAC;gBACjC,MAAM;YACV,KAAK,MAAM;gBACP,OAAO,CAAC,IAAI,CAAC,CAAC;gBACd,MAAM;YACV,KAAK,OAAO;gBACR,IAAI,CAAC,EAAE,CAAC,IAAI,CAAC,YAAY,EAAE,GAAG,EAAE,CAAC,OAAO,CAAC,IAAI,CAAC,CAAC,CAAC;gBAChD,MAAM;SACb;IACL,CAAC;IAED,YAAoB,EAAiC;QAAjC,OAAE,GAAF,EAAE,CAA+B;IAErD,CAAC;CAEJ;AA3DD,gCA2DC"}
|
package/dist/state.d.ts
CHANGED
@@ -1,7 +1,7 @@
|
|
1
1
|
/// <reference types="node" />
|
2
2
|
import { Container } from "@akala/commands";
|
3
3
|
import { ChildProcess } from "child_process";
|
4
|
-
import { Deferred, SerializableObject } from "@akala/json-rpc-ws";
|
4
|
+
import { Deferred, SerializableObject, SocketAdapter } from "@akala/json-rpc-ws";
|
5
5
|
import { ServeMetadata } from "@akala/commands";
|
6
6
|
import { ProxyConfiguration } from "@akala/config";
|
7
7
|
export default interface State {
|
@@ -10,6 +10,9 @@ export default interface State {
|
|
10
10
|
};
|
11
11
|
isDaemon: boolean;
|
12
12
|
config: ProxyConfiguration<StateConfiguration>;
|
13
|
+
awaitingConnections: {
|
14
|
+
[key: string]: SocketAdapter;
|
15
|
+
};
|
13
16
|
}
|
14
17
|
export interface StateConfiguration {
|
15
18
|
containers: {
|
package/package.json
CHANGED
@@ -4,7 +4,7 @@
|
|
4
4
|
"pm": "dist/cli.js",
|
5
5
|
"pm-fork": "dist/fork.js"
|
6
6
|
},
|
7
|
-
"version": "3.
|
7
|
+
"version": "3.4.0",
|
8
8
|
"scripts": {
|
9
9
|
"test": "echo 1",
|
10
10
|
"generate": "ac generate dist/commands commands.json",
|
@@ -19,11 +19,11 @@
|
|
19
19
|
},
|
20
20
|
"homepage": "https://akala.js.org/pm",
|
21
21
|
"dependencies": {
|
22
|
-
"@akala/cli": "^2.1.
|
23
|
-
"@akala/commands": "^3.
|
24
|
-
"@akala/config": "^1.1.
|
25
|
-
"@akala/core": "^9.0.
|
26
|
-
"@akala/json-rpc-ws": "^9.
|
22
|
+
"@akala/cli": "^2.1.8",
|
23
|
+
"@akala/commands": "^3.2.0",
|
24
|
+
"@akala/config": "^1.1.19",
|
25
|
+
"@akala/core": "^9.0.4",
|
26
|
+
"@akala/json-rpc-ws": "^9.5.0",
|
27
27
|
"reflect-metadata": "^0.1.13",
|
28
28
|
"source-map-support": "^0.5.21"
|
29
29
|
},
|
@@ -0,0 +1,9 @@
|
|
1
|
+
import { Container } from "@akala/commands";
|
2
|
+
import { SocketAdapter } from "@akala/json-rpc-ws";
|
3
|
+
import State from "../state";
|
4
|
+
|
5
|
+
export default function (this: State, connectionId: string, socket: SocketAdapter)
|
6
|
+
{
|
7
|
+
this.awaitingConnections[connectionId].pipe(socket);
|
8
|
+
socket.pipe(this.awaitingConnections[connectionId]);
|
9
|
+
}
|
@@ -2,7 +2,7 @@ import { Container, Metadata, updateCommands } from "@akala/commands";
|
|
2
2
|
|
3
3
|
export default async function (remoteContainer: Container<void>)
|
4
4
|
{
|
5
|
-
const metadata: Metadata.Container = await remoteContainer.dispatch('$metadata');
|
5
|
+
const metadata: Metadata.Container = await remoteContainer.dispatch('$metadata', true);
|
6
6
|
remoteContainer.name = metadata.name;
|
7
7
|
updateCommands(metadata.commands, null, remoteContainer);
|
8
8
|
}
|
package/src/commands/start.ts
CHANGED
@@ -5,10 +5,10 @@ import pmContainer from '../container';
|
|
5
5
|
import * as jsonrpc from '@akala/json-rpc-ws'
|
6
6
|
import { eachAsync, logger } from "@akala/core";
|
7
7
|
import { NewLinePrefixer } from "../new-line-prefixer.js";
|
8
|
-
import { SocketAdapterEventMap } from "@akala/json-rpc-ws";
|
9
8
|
import { CliContext, ErrorWithStatus } from "@akala/cli";
|
10
9
|
import getRandomName from "./name";
|
11
10
|
import { ProxyConfiguration } from "@akala/config";
|
11
|
+
import { IpcAdapter } from "../ipc-adapter";
|
12
12
|
|
13
13
|
export default async function start(this: State, pm: pmContainer.container & Container<State>, name: string, context?: CliContext<{ new?: boolean, name: string, inspect?: boolean, verbose?: boolean, wait?: boolean }>): Promise<void | { execPath: string, args: string[], cwd: string, stdio: StdioOptions, shell: boolean, windowsHide: boolean }>
|
14
14
|
{
|
@@ -182,70 +182,4 @@ export default async function start(this: State, pm: pmContainer.container & Con
|
|
182
182
|
}
|
183
183
|
}
|
184
184
|
|
185
|
-
export class IpcAdapter implements jsonrpc.SocketAdapter
|
186
|
-
{
|
187
|
-
get open(): boolean { return !!this.cp.pid }
|
188
|
-
close(): void
|
189
|
-
{
|
190
|
-
this.cp.disconnect();
|
191
|
-
}
|
192
|
-
send(data: string): void
|
193
|
-
{
|
194
|
-
if (this.cp.send)
|
195
|
-
this.cp.send(data + '\n');
|
196
|
-
else
|
197
|
-
console.warn(`process ${this.cp.pid} does not support send over IPC`);
|
198
|
-
}
|
199
|
-
on<K extends keyof SocketAdapterEventMap>(event: K, handler: (ev: SocketAdapterEventMap[K]) => void): void
|
200
|
-
{
|
201
|
-
switch (event)
|
202
|
-
{
|
203
|
-
case 'message':
|
204
|
-
this.cp.on('message', handler);
|
205
|
-
break;
|
206
|
-
case 'open':
|
207
|
-
handler(null);
|
208
|
-
break;
|
209
|
-
case 'close':
|
210
|
-
this.cp.on('disconnect', handler);
|
211
|
-
break;
|
212
|
-
}
|
213
|
-
}
|
214
|
-
|
215
|
-
once<K extends keyof SocketAdapterEventMap>(event: K, handler: (ev: SocketAdapterEventMap[K]) => void): void
|
216
|
-
{
|
217
|
-
switch (event)
|
218
|
-
{
|
219
|
-
case 'message':
|
220
|
-
this.cp.once('message', handler);
|
221
|
-
break;
|
222
|
-
case 'open':
|
223
|
-
handler(null);
|
224
|
-
break;
|
225
|
-
case 'close':
|
226
|
-
this.cp.once('disconnect', () => handler(null));
|
227
|
-
break;
|
228
|
-
}
|
229
|
-
}
|
230
|
-
|
231
|
-
constructor(private cp: ChildProcess | NodeJS.Process)
|
232
|
-
{
|
233
|
-
}
|
234
|
-
|
235
|
-
// _write(chunk: string | Buffer, encoding: string, callback: (error?: any) => void)
|
236
|
-
// {
|
237
|
-
// // The underlying source only deals with strings.
|
238
|
-
// if (Buffer.isBuffer(chunk))
|
239
|
-
// chunk = chunk.toString('utf8');
|
240
|
-
// if (this.cp.send)
|
241
|
-
// this.cp.send(chunk + '\n', callback);
|
242
|
-
// else
|
243
|
-
// callback(new Error('there is no send method on this process'));
|
244
|
-
// }
|
245
|
-
|
246
|
-
// _read()
|
247
|
-
// {
|
248
|
-
// }
|
249
|
-
}
|
250
|
-
|
251
185
|
start.$inject = ['$container', 'param.0', 'options']
|
package/src/fork.ts
CHANGED
@@ -4,12 +4,13 @@ sms.install();
|
|
4
4
|
import * as path from 'path'
|
5
5
|
import * as ac from '@akala/commands';
|
6
6
|
import { lstat } from 'fs/promises';
|
7
|
-
import { IpcAdapter } from
|
7
|
+
import { IpcAdapter } from "./ipc-adapter";
|
8
8
|
import { Socket } from 'net';
|
9
9
|
import { logger, Logger, module as coreModule } from '@akala/core';
|
10
10
|
import program, { buildCliContextFromProcess, NamespaceMiddleware } from '@akala/cli';
|
11
11
|
import { Stats } from 'fs';
|
12
|
-
import { registerCommands } from '@akala/commands';
|
12
|
+
import { registerCommands, SelfDefinedCommand } from '@akala/commands';
|
13
|
+
import { parseMetadata } from '@akala/commands/src/serve-metadata';
|
13
14
|
|
14
15
|
var isPm = false;
|
15
16
|
|
@@ -25,7 +26,7 @@ let folderOrFile: Stats;
|
|
25
26
|
let cliContainer: ac.Container<unknown>;
|
26
27
|
let processor: ac.CommandProcessor;
|
27
28
|
let log: Logger;
|
28
|
-
const logMiddleware = new NamespaceMiddleware<{ program: string, name: string }>(null).option<string, 'verbose'>('verbose', { aliases: ['v',] });
|
29
|
+
const logMiddleware = new NamespaceMiddleware<{ program: string, name: string, tls: boolean }>(null).option<string, 'verbose'>('verbose', { aliases: ['v',] });
|
29
30
|
logMiddleware.preAction(async c =>
|
30
31
|
{
|
31
32
|
if (c.options.verbose)
|
@@ -37,8 +38,8 @@ logMiddleware.preAction(async c =>
|
|
37
38
|
|
38
39
|
await ac.Processors.FileSystem.discoverCommands(c.options.program, cliContainer, { processor: processor, isDirectory: folderOrFile.isDirectory() });
|
39
40
|
});
|
40
|
-
const initMiddleware = new NamespaceMiddleware<{ program: string, name: string }>(null);
|
41
|
-
program.option<string, 'program'>('program', { needsValue: true }).option<string, 'name'>('name', { needsValue: true }).
|
41
|
+
const initMiddleware = new NamespaceMiddleware<{ program: string, name: string, tls: boolean }>(null);
|
42
|
+
program.option<string, 'program'>('program', { needsValue: true }).option<string, 'name'>('name', { needsValue: true }).option<boolean, 'tls'>('tls', { needsValue: false }).
|
42
43
|
use(async c => //If pure js file
|
43
44
|
{
|
44
45
|
folderOrFile = await lstat(c.options.program);
|
@@ -71,7 +72,10 @@ program.option<string, 'program'>('program', { needsValue: true }).option<string
|
|
71
72
|
|
72
73
|
initMiddleware.option<string, 'pmSocket'>('pmSocket', { aliases: ['pm-socket', 'pm-sock'] }).action(async c =>
|
73
74
|
{
|
75
|
+
|
74
76
|
let pm: ac.Container<unknown>;
|
77
|
+
let pmConnectInfo: ac.ServeMetadata;
|
78
|
+
|
75
79
|
if (!isPm)
|
76
80
|
{
|
77
81
|
if (process.connected)
|
@@ -81,25 +85,27 @@ program.option<string, 'program'>('program', { needsValue: true }).option<string
|
|
81
85
|
else
|
82
86
|
{
|
83
87
|
const pmSocket = new Socket();
|
84
|
-
await
|
85
|
-
|
86
|
-
|
87
|
-
|
88
|
-
|
89
|
-
|
90
|
-
|
91
|
-
|
92
|
-
|
93
|
-
|
94
|
-
|
95
|
-
|
96
|
-
|
97
|
-
|
98
|
-
|
99
|
-
|
100
|
-
|
101
|
-
|
102
|
-
|
88
|
+
const x = await ac.connectByPreference(pmConnectInfo = parseMetadata(c.options.pmSocket, c.options.tls), { container: cliContainer });
|
89
|
+
pm = x.container;
|
90
|
+
// await new Promise<void>((resolve, reject) =>
|
91
|
+
// {
|
92
|
+
// pmSocket.on('error', reject)
|
93
|
+
// const remote = /^(?:([^:]+):)?(\d+)$/.exec(c.options.pmSocket);
|
94
|
+
// if (!remote)
|
95
|
+
// {
|
96
|
+
// pmSocket.connect(c.options.pmSocket, resolve);
|
97
|
+
// }
|
98
|
+
// else
|
99
|
+
// {
|
100
|
+
// const host = remote[1];
|
101
|
+
// const port = remote[2];
|
102
|
+
// if (host)
|
103
|
+
// pmSocket.connect(Number(port), host, resolve);
|
104
|
+
// else
|
105
|
+
// pmSocket.connect(Number(port), resolve);
|
106
|
+
// }
|
107
|
+
// })
|
108
|
+
// pm = new ac.Container('pm', null, new ac.Processors.JsonRpc(ac.Processors.JsonRpc.getConnection(new ac.NetSocketAdapter(pmSocket), cliContainer), true));
|
103
109
|
}
|
104
110
|
// eslint-disable-next-line @typescript-eslint/no-var-requires
|
105
111
|
registerCommands(require('../commands.json').commands.map(ac.Metadata.extractCommandMetadata), null, pm);
|
@@ -112,6 +118,15 @@ program.option<string, 'program'>('program', { needsValue: true }).option<string
|
|
112
118
|
|
113
119
|
coreModule('@akala/pm').register('container', pm);
|
114
120
|
|
121
|
+
cliContainer.register(new SelfDefinedCommand(async (connectionId: string) =>
|
122
|
+
{
|
123
|
+
if (!pmConnectInfo)
|
124
|
+
pmConnectInfo = await pm.dispatch('connect', 'pm');
|
125
|
+
var pm2 = await ac.connectByPreference(pmConnectInfo, { container: cliContainer });
|
126
|
+
await pm2.container.dispatch('bridge', connectionId);
|
127
|
+
}, '$bridge'));
|
128
|
+
|
129
|
+
|
115
130
|
if (init)
|
116
131
|
await cliContainer.dispatch(init, { options: c.options, param: c.args, _trigger: 'cli', pm: pm, context: c });
|
117
132
|
|
package/src/index.ts
CHANGED
@@ -86,7 +86,7 @@ export function sidecar(options?: Omit<ConnectionPreference, 'metadata'> | SideC
|
|
86
86
|
if (e && e.statusCode == 404 || !meta.connect)
|
87
87
|
{
|
88
88
|
var c = new Container(meta.container.name, null, module('@akala/pm').resolve('container').processor);
|
89
|
-
c.processor.useMiddleware(
|
89
|
+
c.processor.useMiddleware(0, {
|
90
90
|
handle(origin, cmd, param)
|
91
91
|
{
|
92
92
|
if (cmd.name.startsWith(meta.container.name + '.'))
|
@@ -0,0 +1,65 @@
|
|
1
|
+
import { ChildProcess } from "child_process";
|
2
|
+
import * as jsonrpc from '@akala/json-rpc-ws';
|
3
|
+
import { SocketAdapterEventMap } from "@akala/json-rpc-ws";
|
4
|
+
|
5
|
+
|
6
|
+
export class IpcAdapter implements jsonrpc.SocketAdapter
|
7
|
+
{
|
8
|
+
get open(): boolean { return !!this.cp.pid; }
|
9
|
+
|
10
|
+
|
11
|
+
pipe(socket: jsonrpc.SocketAdapter<unknown>)
|
12
|
+
{
|
13
|
+
this.on('message', (message) => socket.send(message));
|
14
|
+
this.on('close', () => socket.close());
|
15
|
+
}
|
16
|
+
|
17
|
+
close(): void
|
18
|
+
{
|
19
|
+
this.cp.disconnect();
|
20
|
+
}
|
21
|
+
send(data: string): void
|
22
|
+
{
|
23
|
+
if (this.cp.send)
|
24
|
+
this.cp.send(data + '\n');
|
25
|
+
|
26
|
+
else
|
27
|
+
console.warn(`process ${this.cp.pid} does not support send over IPC`);
|
28
|
+
}
|
29
|
+
on<K extends keyof SocketAdapterEventMap>(event: K, handler: (ev: SocketAdapterEventMap[K]) => void): void
|
30
|
+
{
|
31
|
+
switch (event)
|
32
|
+
{
|
33
|
+
case 'message':
|
34
|
+
this.cp.on('message', handler);
|
35
|
+
break;
|
36
|
+
case 'open':
|
37
|
+
handler(null);
|
38
|
+
break;
|
39
|
+
case 'close':
|
40
|
+
this.cp.on('disconnect', handler);
|
41
|
+
break;
|
42
|
+
}
|
43
|
+
}
|
44
|
+
|
45
|
+
once<K extends keyof SocketAdapterEventMap>(event: K, handler: (ev: SocketAdapterEventMap[K]) => void): void
|
46
|
+
{
|
47
|
+
switch (event)
|
48
|
+
{
|
49
|
+
case 'message':
|
50
|
+
this.cp.once('message', handler);
|
51
|
+
break;
|
52
|
+
case 'open':
|
53
|
+
handler(null);
|
54
|
+
break;
|
55
|
+
case 'close':
|
56
|
+
this.cp.once('disconnect', () => handler(null));
|
57
|
+
break;
|
58
|
+
}
|
59
|
+
}
|
60
|
+
|
61
|
+
constructor(private cp: ChildProcess | NodeJS.Process)
|
62
|
+
{
|
63
|
+
}
|
64
|
+
|
65
|
+
}
|
package/src/state.ts
CHANGED
@@ -1,6 +1,6 @@
|
|
1
1
|
import { Container } from "@akala/commands";
|
2
2
|
import { ChildProcess } from "child_process";
|
3
|
-
import { Deferred, SerializableObject } from "@akala/json-rpc-ws";
|
3
|
+
import { Deferred, SerializableObject, SocketAdapter } from "@akala/json-rpc-ws";
|
4
4
|
import { ServeMetadata } from "@akala/commands";
|
5
5
|
import Configuration, { ProxyConfiguration } from "@akala/config";
|
6
6
|
|
@@ -9,6 +9,7 @@ export default interface State
|
|
9
9
|
processes: { [key: string]: RunningContainer };
|
10
10
|
isDaemon: boolean;
|
11
11
|
config: ProxyConfiguration<StateConfiguration>
|
12
|
+
awaitingConnections: { [key: string]: SocketAdapter }
|
12
13
|
}
|
13
14
|
|
14
15
|
export interface StateConfiguration
|
package/tsconfig.tsbuildinfo
CHANGED
@@ -1 +1 @@
|
|
1
|
-
{"program":{"fileNames":["../../node_modules/typescript/lib/lib.es5.d.ts","../../node_modules/typescript/lib/lib.es2015.d.ts","../../node_modules/typescript/lib/lib.es2016.d.ts","../../node_modules/typescript/lib/lib.es2017.d.ts","../../node_modules/typescript/lib/lib.es2018.d.ts","../../node_modules/typescript/lib/lib.es2019.d.ts","../../node_modules/typescript/lib/lib.es2020.d.ts","../../node_modules/typescript/lib/lib.es2021.d.ts","../../node_modules/typescript/lib/lib.es2022.d.ts","../../node_modules/typescript/lib/lib.esnext.d.ts","../../node_modules/typescript/lib/lib.dom.d.ts","../../node_modules/typescript/lib/lib.dom.iterable.d.ts","../../node_modules/typescript/lib/lib.webworker.importscripts.d.ts","../../node_modules/typescript/lib/lib.scripthost.d.ts","../../node_modules/typescript/lib/lib.es2015.core.d.ts","../../node_modules/typescript/lib/lib.es2015.collection.d.ts","../../node_modules/typescript/lib/lib.es2015.generator.d.ts","../../node_modules/typescript/lib/lib.es2015.iterable.d.ts","../../node_modules/typescript/lib/lib.es2015.promise.d.ts","../../node_modules/typescript/lib/lib.es2015.proxy.d.ts","../../node_modules/typescript/lib/lib.es2015.reflect.d.ts","../../node_modules/typescript/lib/lib.es2015.symbol.d.ts","../../node_modules/typescript/lib/lib.es2015.symbol.wellknown.d.ts","../../node_modules/typescript/lib/lib.es2016.array.include.d.ts","../../node_modules/typescript/lib/lib.es2017.object.d.ts","../../node_modules/typescript/lib/lib.es2017.sharedmemory.d.ts","../../node_modules/typescript/lib/lib.es2017.string.d.ts","../../node_modules/typescript/lib/lib.es2017.intl.d.ts","../../node_modules/typescript/lib/lib.es2017.typedarrays.d.ts","../../node_modules/typescript/lib/lib.es2018.asyncgenerator.d.ts","../../node_modules/typescript/lib/lib.es2018.asynciterable.d.ts","../../node_modules/typescript/lib/lib.es2018.intl.d.ts","../../node_modules/typescript/lib/lib.es2018.promise.d.ts","../../node_modules/typescript/lib/lib.es2018.regexp.d.ts","../../node_modules/typescript/lib/lib.es2019.array.d.ts","../../node_modules/typescript/lib/lib.es2019.object.d.ts","../../node_modules/typescript/lib/lib.es2019.string.d.ts","../../node_modules/typescript/lib/lib.es2019.symbol.d.ts","../../node_modules/typescript/lib/lib.es2020.bigint.d.ts","../../node_modules/typescript/lib/lib.es2020.promise.d.ts","../../node_modules/typescript/lib/lib.es2020.sharedmemory.d.ts","../../node_modules/typescript/lib/lib.es2020.string.d.ts","../../node_modules/typescript/lib/lib.es2020.symbol.wellknown.d.ts","../../node_modules/typescript/lib/lib.es2020.intl.d.ts","../../node_modules/typescript/lib/lib.es2021.promise.d.ts","../../node_modules/typescript/lib/lib.es2021.string.d.ts","../../node_modules/typescript/lib/lib.es2021.weakref.d.ts","../../node_modules/typescript/lib/lib.es2021.intl.d.ts","../../node_modules/typescript/lib/lib.es2022.array.d.ts","../../node_modules/typescript/lib/lib.es2022.error.d.ts","../../node_modules/typescript/lib/lib.es2022.object.d.ts","../../node_modules/typescript/lib/lib.es2022.string.d.ts","../../node_modules/typescript/lib/lib.esnext.intl.d.ts","../../node_modules/typescript/lib/lib.esnext.full.d.ts","./src/cli-helper.ts","../../node_modules/reflect-metadata/index.d.ts","../core/dist/injector.d.ts","../core/dist/reflection-injector.d.ts","../core/dist/factory.d.ts","../../node_modules/@types/node/assert.d.ts","../../node_modules/@types/node/assert/strict.d.ts","../../node_modules/@types/node/globals.d.ts","../../node_modules/@types/node/async_hooks.d.ts","../../node_modules/@types/node/buffer.d.ts","../../node_modules/@types/node/child_process.d.ts","../../node_modules/@types/node/cluster.d.ts","../../node_modules/@types/node/console.d.ts","../../node_modules/@types/node/constants.d.ts","../../node_modules/@types/node/crypto.d.ts","../../node_modules/@types/node/dgram.d.ts","../../node_modules/@types/node/diagnostics_channel.d.ts","../../node_modules/@types/node/dns.d.ts","../../node_modules/@types/node/dns/promises.d.ts","../../node_modules/@types/node/domain.d.ts","../../node_modules/@types/node/events.d.ts","../../node_modules/@types/node/fs.d.ts","../../node_modules/@types/node/fs/promises.d.ts","../../node_modules/@types/node/http.d.ts","../../node_modules/@types/node/http2.d.ts","../../node_modules/@types/node/https.d.ts","../../node_modules/@types/node/inspector.d.ts","../../node_modules/@types/node/module.d.ts","../../node_modules/@types/node/net.d.ts","../../node_modules/@types/node/os.d.ts","../../node_modules/@types/node/path.d.ts","../../node_modules/@types/node/perf_hooks.d.ts","../../node_modules/@types/node/process.d.ts","../../node_modules/@types/node/punycode.d.ts","../../node_modules/@types/node/querystring.d.ts","../../node_modules/@types/node/readline.d.ts","../../node_modules/@types/node/repl.d.ts","../../node_modules/@types/node/stream.d.ts","../../node_modules/@types/node/stream/promises.d.ts","../../node_modules/@types/node/stream/consumers.d.ts","../../node_modules/@types/node/stream/web.d.ts","../../node_modules/@types/node/string_decoder.d.ts","../../node_modules/@types/node/timers.d.ts","../../node_modules/@types/node/timers/promises.d.ts","../../node_modules/@types/node/tls.d.ts","../../node_modules/@types/node/trace_events.d.ts","../../node_modules/@types/node/tty.d.ts","../../node_modules/@types/node/url.d.ts","../../node_modules/@types/node/util.d.ts","../../node_modules/@types/node/v8.d.ts","../../node_modules/@types/node/vm.d.ts","../../node_modules/@types/node/wasi.d.ts","../../node_modules/@types/node/worker_threads.d.ts","../../node_modules/@types/node/zlib.d.ts","../../node_modules/@types/node/globals.global.d.ts","../../node_modules/@types/node/index.d.ts","../core/dist/formatters/common.d.ts","../core/dist/module.d.ts","../core/dist/binder.d.ts","../core/dist/parser.d.ts","../core/dist/http.d.ts","../core/dist/service.d.ts","../core/dist/type-helper.d.ts","../json-rpc-ws/lib/errors.d.ts","../json-rpc-ws/lib/shared-connection.d.ts","../json-rpc-ws/lib/connection.d.ts","../json-rpc-ws/lib/base.d.ts","../json-rpc-ws/lib/shared-client.d.ts","../json-rpc-ws/lib/server.d.ts","../../node_modules/@types/ws/index.d.ts","../json-rpc-ws/lib/ws/ws-socket-adapter.d.ts","../json-rpc-ws/lib/ws/server.d.ts","../json-rpc-ws/lib/ws/shared-client.d.ts","../json-rpc-ws/lib/ws/client.d.ts","../json-rpc-ws/lib/ws/index.d.ts","../json-rpc-ws/lib/index.d.ts","../core/dist/promiseHelpers.d.ts","../core/dist/eachAsync.d.ts","../core/dist/each.d.ts","../core/dist/helpers.d.ts","../../node_modules/path-to-regexp/dist/index.d.ts","../core/dist/router/shared.d.ts","../core/dist/router/composite.d.ts","../core/dist/router/route.d.ts","../core/dist/router/router.d.ts","../core/dist/router/index.d.ts","../core/dist/queue.d.ts","../core/dist/interpolate.d.ts","../core/dist/reflect.d.ts","../core/dist/chain.d.ts","../core/dist/polymorph.d.ts","../../node_modules/@types/ms/index.d.ts","../../node_modules/@types/debug/index.d.ts","../core/dist/logger.d.ts","../core/dist/index.d.ts","../cli/dist/router/index.d.ts","../cli/dist/index.d.ts","../commands/dist/model/trigger.d.ts","../commands/dist/model/container.d.ts","../commands/dist/processors/event.d.ts","../commands/dist/processors/http-client.d.ts","../commands/dist/processors/local.d.ts","../commands/dist/processors/log.d.ts","../commands/dist/processors/pipe.d.ts","../commands/dist/processors/fs.d.ts","../commands/dist/processors/jsonrpc.d.ts","../commands/dist/processors/index.d.ts","../commands/dist/metadata/configurations.d.ts","../commands/dist/metadata/command.d.ts","../commands/dist/metadata/container.d.ts","../commands/dist/metadata/index.d.ts","../commands/dist/model/processor.d.ts","../commands/dist/model/command.d.ts","../commands/dist/decorators.d.ts","../commands/dist/generator.d.ts","../commands/dist/model/error-unknowncommand.d.ts","../commands/dist/triggers/jsonrpc.d.ts","../commands/dist/triggers/cli.d.ts","../commands/dist/triggers/index.d.ts","../commands/dist/cli/serve.d.ts","../commands/dist/serve-metadata.d.ts","../commands/dist/index.d.ts","../config/dist/configuration.d.ts","../config/dist/commands/commit.d.ts","../config/dist/commands/get.d.ts","../config/dist/commands/revert.d.ts","../config/dist/commands/set.d.ts","../config/dist/commander.d.ts","../config/dist/index.d.ts","./src/state.ts","./src/commands/connect.ts","./src/commands/config.ts","./src/npm-helper.ts","./src/yarn-helper.ts","./src/commands/map.ts","./src/commands/discover.ts","./src/commands/install.ts","./src/commands/$init.ts","./src/commands/link.ts","./src/commands/ls.ts","./src/commands/name.ts","./src/commands/log.ts","./src/commands/reload-metadata.ts","./src/commands/ready.ts","./src/commands/status.ts","./src/commands/stop.ts","./src/commands/update.ts","./src/commands/version.ts","./src/container.ts","./src/new-line-prefixer.ts","./src/commands/start.ts","./src/index.ts","./src/cli.ts","../../node_modules/source-map/source-map.d.ts","../../node_modules/@types/source-map-support/index.d.ts","./src/fork.ts","./src/test/pwet.ts","../../node_modules/@types/assert/index.d.ts","../../node_modules/@types/keyv/index.d.ts","../../node_modules/@types/http-cache-semantics/index.d.ts","../../node_modules/@types/responselike/index.d.ts","../../node_modules/@types/cacheable-request/index.d.ts","../../node_modules/@types/caseless/index.d.ts","../../node_modules/@types/qs/index.d.ts","../../node_modules/@types/co-body/index.d.ts","../../node_modules/@types/content-type/index.d.ts","../../node_modules/@types/conventional-commits-parser/index.d.ts","../../node_modules/@types/conventional-changelog-writer/index.d.ts","../../node_modules/@types/conventional-changelog-core/node_modules/@types/conventional-recommended-bump/index.d.ts","../../node_modules/@types/git-raw-commits/index.d.ts","../../node_modules/@types/normalize-package-data/index.d.ts","../../node_modules/@types/conventional-changelog-core/index.d.ts","../../node_modules/@types/conventional-recommended-bump/index.d.ts","../../node_modules/@types/cookie/index.d.ts","../../node_modules/@types/emscripten/index.d.ts","../../node_modules/@types/eslint/helpers.d.ts","../../node_modules/@types/eslint/node_modules/@types/json-schema/index.d.ts","../../node_modules/@types/estree/index.d.ts","../../node_modules/@types/eslint/index.d.ts","../../node_modules/@types/eslint-scope/index.d.ts","../../node_modules/@types/html-minifier-terser/index.d.ts","../../node_modules/@types/json-schema/index.d.ts","../../node_modules/@types/mime/index.d.ts","../../node_modules/@types/minimist/index.d.ts","../../node_modules/@types/mkdirp/index.d.ts","../../node_modules/@types/mocha/index.d.ts","../../node_modules/@types/mock-require/index.d.ts","../../node_modules/@types/node-fetch/node_modules/form-data/index.d.ts","../../node_modules/@types/node-fetch/externals.d.ts","../../node_modules/@types/node-fetch/index.d.ts","../../node_modules/@types/on-finished/index.d.ts","../../node_modules/@types/q/index.d.ts","../../node_modules/@types/orchestrator/index.d.ts","../../node_modules/@types/parse-json/index.d.ts","../../node_modules/form-data/index.d.ts","../../node_modules/@types/tough-cookie/index.d.ts","../../node_modules/@types/request/index.d.ts","../../node_modules/@types/semver/classes/semver.d.ts","../../node_modules/@types/semver/functions/parse.d.ts","../../node_modules/@types/semver/functions/valid.d.ts","../../node_modules/@types/semver/functions/clean.d.ts","../../node_modules/@types/semver/functions/inc.d.ts","../../node_modules/@types/semver/functions/diff.d.ts","../../node_modules/@types/semver/functions/major.d.ts","../../node_modules/@types/semver/functions/minor.d.ts","../../node_modules/@types/semver/functions/patch.d.ts","../../node_modules/@types/semver/functions/prerelease.d.ts","../../node_modules/@types/semver/functions/compare.d.ts","../../node_modules/@types/semver/functions/rcompare.d.ts","../../node_modules/@types/semver/functions/compare-loose.d.ts","../../node_modules/@types/semver/functions/compare-build.d.ts","../../node_modules/@types/semver/functions/sort.d.ts","../../node_modules/@types/semver/functions/rsort.d.ts","../../node_modules/@types/semver/functions/gt.d.ts","../../node_modules/@types/semver/functions/lt.d.ts","../../node_modules/@types/semver/functions/eq.d.ts","../../node_modules/@types/semver/functions/neq.d.ts","../../node_modules/@types/semver/functions/gte.d.ts","../../node_modules/@types/semver/functions/lte.d.ts","../../node_modules/@types/semver/functions/cmp.d.ts","../../node_modules/@types/semver/functions/coerce.d.ts","../../node_modules/@types/semver/classes/comparator.d.ts","../../node_modules/@types/semver/classes/range.d.ts","../../node_modules/@types/semver/functions/satisfies.d.ts","../../node_modules/@types/semver/ranges/max-satisfying.d.ts","../../node_modules/@types/semver/ranges/min-satisfying.d.ts","../../node_modules/@types/semver/ranges/to-comparators.d.ts","../../node_modules/@types/semver/ranges/min-version.d.ts","../../node_modules/@types/semver/ranges/valid.d.ts","../../node_modules/@types/semver/ranges/outside.d.ts","../../node_modules/@types/semver/ranges/gtr.d.ts","../../node_modules/@types/semver/ranges/ltr.d.ts","../../node_modules/@types/semver/ranges/intersects.d.ts","../../node_modules/@types/semver/ranges/simplify.d.ts","../../node_modules/@types/semver/ranges/subset.d.ts","../../node_modules/@types/semver/internals/identifiers.d.ts","../../node_modules/@types/semver/index.d.ts","../../node_modules/@types/send/node_modules/@types/mime/index.d.ts","../../node_modules/@types/send/index.d.ts","../../node_modules/@types/showdown/index.d.ts","../../node_modules/@types/split2/index.d.ts","../../node_modules/@types/treeify/index.d.ts","../../node_modules/@types/uuid/index.d.ts","../../node_modules/@types/webpack-env/index.d.ts","../../node_modules/@types/xml2js/lib/processors.d.ts","../../node_modules/@types/xml2js/index.d.ts","../../node_modules/@types/yauzl/index.d.ts"],"fileInfos":[{"version":"3ac1b83264055b28c0165688fda6dfcc39001e9e7828f649299101c23ad0a0c3","affectsGlobalScope":true},"dc47c4fa66b9b9890cf076304de2a9c5201e94b740cffdf09f87296d877d71f6","7a387c58583dfca701b6c85e0adaf43fb17d590fb16d5b2dc0a2fbd89f35c467","8a12173c586e95f4433e0c6dc446bc88346be73ffe9ca6eec7aa63c8f3dca7f9","5f4e733ced4e129482ae2186aae29fde948ab7182844c3a5a51dd346182c7b06","e6b724280c694a9f588847f754198fb96c43d805f065c3a5b28bbc9594541c84","e21c071ca3e1b4a815d5f04a7475adcaeea5d64367e840dd0154096d705c3940","746d62152361558ea6d6115cf0da4dd10ede041d14882ede3568bce5dc4b4f1f","2f93dda35dafec68ec217c9ce67f0f4fbbbb030c055ac312641565ad60dd7e26","aea179452def8a6152f98f63b191b84e7cbd69b0e248c91e61fb2e52328abe8c",{"version":"72704b10d97777e15f1a581b73f88273037ef752d2e50b72287bd0a90af64fe6","affectsGlobalScope":true},{"version":"dbb73d4d99be496175cb432c74c2615f78c76f4272f1d83cba11ee0ed6dbddf0","affectsGlobalScope":true},{"version":"7fac8cb5fc820bc2a59ae11ef1c5b38d3832c6d0dfaec5acdb5569137d09a481","affectsGlobalScope":true},{"version":"097a57355ded99c68e6df1b738990448e0bf170e606707df5a7c0481ff2427cd","affectsGlobalScope":true},{"version":"d8996609230d17e90484a2dd58f22668f9a05a3bfe00bfb1d6271171e54a31fb","affectsGlobalScope":true},{"version":"43fb1d932e4966a39a41b464a12a81899d9ae5f2c829063f5571b6b87e6d2f9c","affectsGlobalScope":true},{"version":"cdccba9a388c2ee3fd6ad4018c640a471a6c060e96f1232062223063b0a5ac6a","affectsGlobalScope":true},{"version":"c5c05907c02476e4bde6b7e76a79ffcd948aedd14b6a8f56e4674221b0417398","affectsGlobalScope":true},{"version":"0d5f52b3174bee6edb81260ebcd792692c32c81fd55499d69531496f3f2b25e7","affectsGlobalScope":true},{"version":"810627a82ac06fb5166da5ada4159c4ec11978dfbb0805fe804c86406dab8357","affectsGlobalScope":true},{"version":"62d80405c46c3f4c527ee657ae9d43fda65a0bf582292429aea1e69144a522a6","affectsGlobalScope":true},{"version":"3013574108c36fd3aaca79764002b3717da09725a36a6fc02eac386593110f93","affectsGlobalScope":true},{"version":"75ec0bdd727d887f1b79ed6619412ea72ba3c81d92d0787ccb64bab18d261f14","affectsGlobalScope":true},{"version":"3be5a1453daa63e031d266bf342f3943603873d890ab8b9ada95e22389389006","affectsGlobalScope":true},{"version":"17bb1fc99591b00515502d264fa55dc8370c45c5298f4a5c2083557dccba5a2a","affectsGlobalScope":true},{"version":"7ce9f0bde3307ca1f944119f6365f2d776d281a393b576a18a2f2893a2d75c98","affectsGlobalScope":true},{"version":"6a6b173e739a6a99629a8594bfb294cc7329bfb7b227f12e1f7c11bc163b8577","affectsGlobalScope":true},{"version":"12a310447c5d23c7d0d5ca2af606e3bd08afda69100166730ab92c62999ebb9d","affectsGlobalScope":true},{"version":"b0124885ef82641903d232172577f2ceb5d3e60aed4da1153bab4221e1f6dd4e","affectsGlobalScope":true},{"version":"0eb85d6c590b0d577919a79e0084fa1744c1beba6fd0d4e951432fa1ede5510a","affectsGlobalScope":true},{"version":"da233fc1c8a377ba9e0bed690a73c290d843c2c3d23a7bd7ec5cd3d7d73ba1e0","affectsGlobalScope":true},{"version":"d154ea5bb7f7f9001ed9153e876b2d5b8f5c2bb9ec02b3ae0d239ec769f1f2ae","affectsGlobalScope":true},{"version":"bb2d3fb05a1d2ffbca947cc7cbc95d23e1d053d6595391bd325deb265a18d36c","affectsGlobalScope":true},{"version":"c80df75850fea5caa2afe43b9949338ce4e2de086f91713e9af1a06f973872b8","affectsGlobalScope":true},{"version":"9d57b2b5d15838ed094aa9ff1299eecef40b190722eb619bac4616657a05f951","affectsGlobalScope":true},{"version":"6c51b5dd26a2c31dbf37f00cfc32b2aa6a92e19c995aefb5b97a3a64f1ac99de","affectsGlobalScope":true},{"version":"6e7997ef61de3132e4d4b2250e75343f487903ddf5370e7ce33cf1b9db9a63ed","affectsGlobalScope":true},{"version":"2ad234885a4240522efccd77de6c7d99eecf9b4de0914adb9a35c0c22433f993","affectsGlobalScope":true},{"version":"1b3fe904465430e030c93239a348f05e1be80640d91f2f004c3512c2c2c89f34","affectsGlobalScope":true},{"version":"3787b83e297de7c315d55d4a7c546ae28e5f6c0a361b7a1dcec1f1f50a54ef11","affectsGlobalScope":true},{"version":"e7e8e1d368290e9295ef18ca23f405cf40d5456fa9f20db6373a61ca45f75f40","affectsGlobalScope":true},{"version":"faf0221ae0465363c842ce6aa8a0cbda5d9296940a8e26c86e04cc4081eea21e","affectsGlobalScope":true},{"version":"06393d13ea207a1bfe08ec8d7be562549c5e2da8983f2ee074e00002629d1871","affectsGlobalScope":true},{"version":"5075b36ab861c8c0c45377cb8c96270d7c65f0eeaf105d53fac6850da61f1027","affectsGlobalScope":true},{"version":"6c55633c733c8378db65ac3da7a767c3cf2cf3057f0565a9124a16a3a2019e87","affectsGlobalScope":true},{"version":"fb4416144c1bf0323ccbc9afb0ab289c07312214e8820ad17d709498c865a3fe","affectsGlobalScope":true},{"version":"5b0ca94ec819d68d33da516306c15297acec88efeb0ae9e2b39f71dbd9685ef7","affectsGlobalScope":true},{"version":"e8c9f4e445a489991ca1a4232667de3ac36b07ba75ea335971fbeacf2d26fe67","affectsGlobalScope":true},{"version":"34478567f8a80171f88f2f30808beb7da15eac0538ae91282dd33dce928d98ed","affectsGlobalScope":true},{"version":"6ea9ab679ea030cf46c16a711a316078e9e02619ebaf07a7fcd16964aba88f2d","affectsGlobalScope":true},{"version":"aedb8de1abb2ff1095c153854a6df7deae4a5709c37297f9d6e9948b6806fa66","affectsGlobalScope":true},{"version":"11ffe3c281f375fff9ffdde8bbec7669b4dd671905509079f866f2354a788064","affectsGlobalScope":true},{"version":"10bbdc1981b8d9310ee75bfac28ee0477bb2353e8529da8cff7cb26c409cb5e8","affectsGlobalScope":true},"d96fa8a56871904776165ceb8e00bd56127e1a017bb2664cae76223b5f815141","372f84694b043a991177352e9503f7e888f582e03baa8ae476a65d208c2b08d5",{"version":"8d6d51a5118d000ed3bfe6e1dd1335bebfff3fef23cd2af2f84a24d30f90cc90","affectsGlobalScope":true},"03b5901ef12c7675cd99f58630f0c327ccbba15a2484f6653f9447466438c7eb","99fec408b0c1cf6f1dd48ab8de414011a58fea600585450c6b02740a30c74280","b564503838d92b2db40756301bd1ef14fe87b3ce0c824363bb346e1d7aaa317e","0d5a2ee1fdfa82740e0103389b9efd6bfe145a20018a2da3c02b89666181f4d9","a69c09dbea52352f479d3e7ac949fde3d17b195abe90b045d619f747b38d6d1a",{"version":"92d63add669d18ebc349efbacd88966d6f2ccdddfb1b880b2db98ae3aa7bf7c4","affectsGlobalScope":true},"ccc94049a9841fe47abe5baef6be9a38fc6228807974ae675fb15dc22531b4be",{"version":"aeeee3998c5a730f8689f04038d41cf4245c9edbf6ef29a698e45b36e399b8ed","affectsGlobalScope":true},"95843d5cfafced8f3f8a5ce57d2335f0bcd361b9483587d12a25e4bd403b8216","afc6e96061af46bcff47246158caee7e056f5288783f2d83d6858cd25be1c565",{"version":"34f5bcac12b36d70304b73de5f5aab3bb91bd9919f984be80579ebcad03a624e","affectsGlobalScope":true},"82408ed3e959ddc60d3e9904481b5a8dc16469928257af22a3f7d1a3bc7fd8c4","d9f97c011a6e7ef705db52132e2117afcc2c93e851f546b083c290ae8d183f1d","f50c975ab7b50e25a69e3d8a3773894125b44e9698924105f23b812bf7488baf","2b8c764f856a1dd0a9a2bf23e5efddbff157de8138b0754010be561ae5fcaa90","76650408392bf49a8fbf3e2b6b302712a92d76af77b06e2da1cc8077359c4409","0af3121e68297b2247dd331c0d24dba599e50736a7517a5622d5591aae4a3122","6972fca26f6e9bd56197568d4379f99071a90766e06b4fcb5920a0130a9202be",{"version":"4a2628e95962c8ab756121faa3ac2ed348112ff7a87b5c286dd2cc3326546b4c","affectsGlobalScope":true},"80793b2277f31baa199234daed806fff0fb11491d1ebd3357e520c3558063f00","a049a59a02009fc023684fcfaf0ac526fe36c35dcc5d2b7d620c1750ba11b083","e3b886bacdd1fbf1f72e654596c80a55c7bc1d10bdf464aaf52f45ecd243862f","c665d5c50c2573aefd98f0ffb12c5583e333ed94294ce6f144a4163a8c84f09b","4b9a003b5c556c96784132945bb41c655ea11273b1917f5c8d0c154dd5fd20dd","a458dc78104cc80048ac24fdc02fe6dce254838094c2f25641b3f954d9721241",{"version":"e8b18c6385ff784228a6f369694fcf1a6b475355ba89090a88de13587a9391d5","affectsGlobalScope":true},"8a215750db3e2073511e07c9e293c8c40d6109e5c7368845e060bcc12adbae6f","abc1c425b2ad6720433f40f1877abfa4223f0f3dd486c9c28c492179ca183cb6","945a841f9a591197154c85386bc5a1467d42d325104bb36db51bc566bbb240be","10c39ce1df102994b47d4bc0c71aa9a6aea76f4651a5ec51914431f50bc883a1",{"version":"8207e7e6db9aa5fc7e61c8f17ba74cf9c115d26f51f91ee93f790815a7ea9dfb","affectsGlobalScope":true},"9f1069b9e2c051737b1f9b4f1baf50e4a63385a6a89c32235549ae87fc3d5492","ee18f2da7a037c6ceeb112a084e485aead9ea166980bf433474559eac1b46553","29c2706fa0cc49a2bd90c83234da33d08bb9554ecec675e91c1f85087f5a5324","0acbf26bf958f9e80c1ffa587b74749d2697b75b484062d36e103c137c562bc3","3fa48484c65913004d5abb5c0f917b61ea4684f32d05bb28c1ecfa5f05a9ed12","1b952304137851e45bc009785de89ada562d9376177c97e37702e39e60c2f1ff",{"version":"806ef4cac3b3d9fa4a48d849c8e084d7c72fcd7b16d76e06049a9ed742ff79c0","affectsGlobalScope":true},"33eee034727baf564056b4ea719075c23d3b4767d0b5f9c6933b81f3d77774d2","c33a6ea7147af60d8e98f1ac127047f4b0d4e2ce28b8f08ff3de07ca7cc00637",{"version":"b42b47e17b8ece2424ae8039feb944c2e3ba4b262986aebd582e51efbdca93dc","affectsGlobalScope":true},"664d8f2d59164f2e08c543981453893bc7e003e4dfd29651ce09db13e9457980","2408611d9b4146e35d1dbd1f443ccd8e187c74614a54b80300728277529dbf11","998a3de5237518c0b3ac00a11b3b4417affb008aa20aedee52f3fdae3cb86151","ad41008ffe077206e1811fc873f4d9005b5fd7f6ab52bb6118fef600815a5cb4",{"version":"dd9ea469d1bfaf589c6a196275d35cb1aa14014707c2c46d920c7b921e8f5bca","affectsGlobalScope":true},"badae0df9a8016ac36994b0a0e7b82ba6aaa3528e175a8c3cb161e4683eec03e","c3db860bcaaaeb3bbc23f353bbda1f8ab82756c8d5e973bebb3953cb09ea68f2","235a53595bd20b0b0eeb1a29cb2887c67c48375e92f03749b2488fbd46d0b1a0","bc09393cd4cd13f69cf1366d4236fbae5359bb550f0de4e15767e9a91d63dfb1","9c266243b01545e11d2733a55ad02b4c00ecdbda99c561cd1674f96e89cdc958","c71155c05fc76ff948a4759abc1cb9feec036509f500174bc18dad4c7827a60c",{"version":"ab9b9a36e5284fd8d3bf2f7d5fcbc60052f25f27e4d20954782099282c60d23e","affectsGlobalScope":true},"1503a452a67127e5c2da794d1c7c44344d5038373aae16c9b03ac964db159edd","4f723782bc5521feeeaaa79682455d7189d5eb34aa9bb4c515c7b9e41b35d43c","244fb88efc0f6ce7b836531f859148411d55ab8e4836a8616f21d81ab8ca7f28","277369db1dda65594f49d7261b028e04d9c4be62e9a32452621ecd242940405a","ebfa670c314ae0959e3e960d7d2d96284fff1fb26a9034f77bf0511c09fed4a8","d6bee13fffb7f68dc0221b8c76c7aeeb043c2f6361e38ee015f06201fcef5b31","3b0dd574b2d473ce4d2800ffdf853305323cd13fc102539f610b344bcc4b9808","0619c009b939ea35dff42158a21a5048e5a609d98a7979207dcb75742e15153c","ae33680683e99cb18483652f4168ed8aaa700717f06273f382c7a9622a44595e","aa351a09b5e1426fd8b664ee170829c994c37c5aff2cd67b44e18c4ea2c6d09f","b4a82ad7ad392b37d30ee318883bdb42578a75ede9d73f96a4caa98e39b8c7c0","185c163d5cb858f8e4442bd44b3612d1118ac6df310928ab56106b16d1256e9c","684321f537b8f0fe40e5c672a79b059599550bcc0b8d7ef64544def3a6a2eeac","394e536ffba31fe9541f1efde2a7ca82ab26ce05c22f447248bbc2cd07539d43","b4358a89fcd9c579f84a6c68e2ce44ca91b07e4db3f8f403c2b7a72c1a1e04b6","f11ba3e75a638fce8d9a534f45b9828420bf8e2289474a2cf1fd5c7971de8703","f0afcdde600748cc8098dbb0b724d49e4b052335c7ba81663e76665e2333dbeb","0fa2557019485797e589c02eb375cecb0daf45b24218d68b828d2db94cdeb237","3c6c3c29ffaa38d21244ef0770874bf6b4887b45b0a61eed4c046c726e923767","cef4c839bf5ef93a9fbb78d7c88511b3c31131726de775db1007203fa1f03c7a","e1c04ebf0df596164725b6cd0560ee3c9209bd8884db430cc88913fb3c82e407","8d240aa14b01f6421a2ecd882b2987ac4cb9e99cb1784d65eec5aa287170ac4a","6222aa3413d3373097ec0f9a3db9271e656e700a8c72f43d091eae7824c3e6e0","000ddcd575df7a8624aff5a73222393d54f23f31b50ec2a944df67fa5e5e2333","7f4500483a520eee8eccf70ec9a98d369c000a8ab0db1c9aed5ce076fb3045f5","6e7936b20cd2022c2a71f9d780e7f87216c19fde5c18448aaff60059a46ae2e7","c203dc14222563d96dd90ef723904dcf1e0a55438ea8fb66f185a7935729e25d","ba122209bba1dfe12a102ac53d5f6884ea65904cda388d62ac1d5409cefcf710","e52f069f47e9b2170c6e55f4049c641f661d0ada5cd111b016e131082ccc2957","c90c5972bb7fd9ae50a81c3d98855701c0e41ea55c2c704ae338d67338538d63","10d798846ca512a8aa956dd93edab0e5c5e172113a43e952b0d357f1bee5eb64","cbd6f8aecf15450f845b6c8cde4378c36ec7511dc7d51a06687c2b106a8282fb","8ae5de20a01bc6f03f535e20e4614a57398b3a7dd3cf5ae0f9510a9523a15d58","50b4aab7c34c23d63326e1d288de72e6adf9971cd78f1eb3f36d6cdb8b789fec","7427355bd08852a8176cbf469aafaec243055750da2d635fae9e5a5e88279cdc","286f27fba762e34cae30d0faa8d7f7cd847f9f40c21218e4268a210595093db8","6a9c5127096b35264eb7cd21b2417bfc1d42cceca9ba4ce2bb0c3410b7816042","78828b06c0d3b586954015e9ebde5480b009e166c71244763bda328ec0920f41","1c67bd8c07baf5ce5b1fb4e7ae7f266d43e75bd5edfc003574c45c817a937deb","9cecdafa88fcbb1aa2e4f5b0ae521207daf6a8ce389bfbf3949bcce38e418c79","d1da925e77f71c864dc34f1afc25397979c8d407f119e4b5248182278fef6068","e7e083892d1245c6fa89787561639ba60608f8608cd6027e9766f27aa32b8711","8d4e4410ef3590871439a88fa7bfa13b83e3222f077503b6b1fe5e18a3479106","9bc3cf6e473e1bfd07277b5a58a790355cf8d0734b13c16a3cf411674433be2c","32191ddb3bc1d5637cbe04df52febdf973d14050c7b6b6945aab5e3a66fb6c8c","c8ff874ca3c00f0aca0194e8500bbf5516c97c3fdd9887f98eba57f3c7f7337a","f12a24362d896063c1cf13a41ba32c82c83198937a49f2a96ec6877af738c7d9","d41f77d227da2509a63ad0c1ae5108a4e1cb1918e718fc4d8a4c767b2d771dd4","607909d764a81aea0bd53388d2e3d578b6f35326b8d660c8a17873ac3fe6e619","1e10bf8887348d2925e343f8956bfdfed2bdc9d2ca5f0c9e7e82e1ede142e248","f13fae3e599441412144827c5460da5dfdf5f797b3fdb67d6625c273b03541fb","416bb11d20c5b2d9215155a29f6888d627f41aaec3c21479545bef869d912429","671ca5644cc9c78945eed5b4a29d0d0a186faf77f2f90a378542cc5b50bc37e5","d2fe7aed2ad0d98eee2c148b9e3991f0e50f4f383da5943a2a24137da3d9a824","c57f946e2dc2a89d98a858ec6c1a80e3e3aa4255614c86cf7569b8aae94bec71","7b6412b77a3352752ba053d1d3a4d267ec44d4a64765bf1a517eeadc7805c666","a7dd514674f20e15519462c04ffd06b2128ead107c2da1835bdfa686919543a0","dfccd143a34da1ca4a3fd9503cf0f923fd5a7085bfb00072c4bdf6d44ddab274","6c475564fce4bf0d67406462d142a04f7a669f43b2f5ad89fd638cedbd195149","aa5d0893d7fd4dc6a3b218e14c31f43b6d4919b6db4aca0f7359e3d43cdc073b","f1ee4d9517c9d47135ca94ac13d8ba0e0a28384c65f0de26b0aeac08435e6f19","a8c09b38bcfbb8e9f88ddca8dc7a756c9477b2c59f4ac94ab99bab8c5606bef3","352c2a73c8084b5f4d21b6847ebf21c3047953940d6cab713635ce54e5d6103c","c8ae33f3ea6a53cd8dc9ae941c7857990ca257bdd427fe5741d8110bc45f4bc0","9e2b0f9dd2e89cd75033b957e6f762fef8b059ffd7927fc889e2a43728946c51","750051589dcfbd6975a89a2f20bfe3397e6270393cebf5f1cdb145ceaedeb5b4","b8e2ca1efa2d5361fded3f0f904adf07e42173bc0004807fd5e85396dfd470d7","6015b9c6fcdc009718717a3c33da530f04edc1d65c5005b7a28fccd143498941","9ed50cf8b3d9d75965eccb9bb07d58d6a83c5779274ca79ebbdf67ac4ab4e4af","4a29c526bb3a0f535cb7887e8df574e0f7c0497e645975108efd9b0d63c5f4ba","0e973518e27f9765849163a0dd442659c6a7907204bfb2a73cad78edef8eaf8b","111c62753ffa1a661b7fb12f3d98c22396a6555596b82d64fe4ba2cc756a5414","3121cc9e956fdb4e12a1da788063b6b9f3efa096faf317b23688c48910f2aabc","a328873fd34afb6e86d3694f5140ad0304593ebdf940fb4760609fda467677e7","58cad7d157fac0802cd976072e4390baf4e1641b5d0430eca108e968a3183520","7aaf1831422c3982b0a744dd06b6be843ce7ef5549f58f0b1796efccfa480918","c12938edd0512927a8e1514bba4baa8264597845516085b81202418fdb94ed60","397422b0a3aee5d90c2710b7cd449cd2845b10ee7f30c552ba166156b3baa224","621db152d13b399e4aaf684cad64df8fc4dd42bb37f75dd17ff51ca252f911da","ee51c79978a7d2d5bf6bdb081bfe1f4c497205292a0a71a9ae407cec69f7024d","83ab6d58dff9bc03ae14393d721485065e9833b5bfe675085e2f19718d89b916","b55bdeecc6e6e6350171b49db4696151a6cacb80135870ff3d8907408533ae2d","8e992087120f1cc90f554ddebb202a18b528b86d987466a47f39f90446882058","23ac5485922fda103b3656bee94a1ad010710f822b4469fa98928cf47a16d7e6","decf67f96e0f3cc11ec513d987d53ccdeae8c1efc4d61a8741c9ea34db608106","0975c47e7882ff0c653ec30978e24a87824d02919a1010e8260602b21345bd15","0b125c0262e89346caa13af468599452aa26f9f65ecbc955cdfd2dbe99ded5cc","40cc7d3b920074b5ba2397eb11a1a6ce9a09570f7305886615bd760d275499e1","346c5f72fe0eb15eae39c7c253ebd8c0dbbbf502722c7ed6993781445ccc941a","9d557c610764b7aaac0d61f84fab70fafec9fea38f3fd84bbcafafb624222888","bff71aec8aba1f3ff0a5ae3e1637891b852bd5da9d248a6792b83ba989b57c52","45c60327ac410c791b865385bb6262a0df5adf17a4243fb099be51d346a8a5cb","873eacdb24e20b00873822dfb71757f1fcb3effd44d0f05d5bdf11e04998c250","75d66e450e37575cfa1c4acee2d4f7087ed3f0bb93b5a0cb8c55425867020efa","d19a3deb3f40bab1eb98f3eb989c7e8545a7e92ee692e3a39c0f56d609969de2","fae3ab24e7343a18773b0b41796128ae91bacc4f09b577586bd0c57b3c5987d4","7c74f67af9afc81622cf00015ee44efa2ea0b4f814935c569ecfd73d58b3e432","2c8705a7bf97589884b89a6e44aea90d66df8ab1b06cbfced7b553c764d2a6fd","2887592574fcdfd087647c539dcb0fbe5af2521270dad4a37f9d17c16190d579","1384902f0cccc5a9f9c0d65d93c093f6b9f77c949bf823f511b617cb8bc20fb5","4b3be7f6889403d5e89dee5fb2a036c78d1be468940b8e36237d3a556b42d12a","fd06e5efbb8a820ec6d8af5f3078fd663334d06c02554d9b8433406526cd9f4e","d6c62c91eebdb76cde2ad0dfa3cf90134aad879c463ad7d8642e326e0bb57968","9e7f7ac4d964992cf1b77612ca07e5695821881aa1a9acb0ef0509f192a5ea23","0bf440ab914e79e890cb15e5ffacb5e18bec678338b3eab069a5829d3d5c96e3","3cfb0cb51cc2c2e1b313d7c4df04dbf7e5bda0a133c6b309bf6af77cf614b971","73c05cca1bb5aa8e93efd089af51643b7ff005e47064a0e624a74ee20480a2eb","5343f3c160282dfbaab9af350119a0c3b59b7076ef0117bb5995a66e240dab28","c236451df6139a965bb9b8fba15a43a8bebf4400ca589998e2bdc5e1291fa0f9","495da6628b9474e31d0636d66c54448bb8d84dbce902e8f70539ef6a525a2d7b","f9748c9f1a914930d23a90ca4d1c34ce06c417e9bd36da5d1270485a8b8ff72a","2733d9c68999f6fb4a8e853f4266b40b1e91ef7ae97a35d82014a732f9f3584b","388c90c577f861e1d7e2bb3035f8a02d0c62277544c71cb16a70267460c36970","735d0df8824a9f1e8565baa202b71cffbce1553de6fb0918a2fda0227b7f8070","05ec85b0b3d7963a821f175d4a57d4385343973d54aefb90761e9ec33ed7b8d1","6fa0008bf91a4cc9c8963bace4bba0bd6865cbfa29c3e3ccc461155660fb113a","8c88b2f4bd7238ac5858f4fce02031f2ccc77076398c9bf8ae416a2b86f0bcb0","b2ca4490d0a073b5055090a3919666ac1ef8f6948eb52ccad6f72e2a2c529977","4a547783c826c1dec10d96734687ae4db2e89d40261e91b5c327b60748315dc1",{"version":"4a72ef2edbfb19987b3bc76cc56953cb19217c01c955fe6f37707b547091c024","affectsGlobalScope":true},{"version":"f345b0888d003fd69cb32bad3a0aa04c615ccafc572019e4bd86a52bd5e49e46","affectsGlobalScope":true},"3a1e165b22a1cb8df82c44c9a09502fd2b33f160cd277de2cd3a055d8e5c6b27","f1e8ecd1d960d12e57316fd2889b0a57635f38f8c4c976d8deafa29650bbf320","edb3e2f61a2a6e29a5f9043f73adf65951d52b4c1f22e84050381f7ef0d77318","dc33ce27fbeaf0ea3da556c80a6cc8af9d13eb443088c8f25cdc39fca8e756f6","ee65fe452abe1309389c5f50710f24114e08a302d40708101c4aa950a2a7d044","0359682c54e487c4cab2b53b2b4d35cc8dea4d9914bc6abcdb5701f8b8e745a4","be27a64e821a3e5af838650e4aa25805c60f057d0c37a9762c378d19d364b3e6","e437d83044ba17246a861aa9691aa14223ff4a9d6f338ab1269c41c758586a88","875d567ecf2f865a1b19d30f2acf3203817e19fd95f7675351d046914ee39ac8",{"version":"3f6d6465811321abc30a1e5f667feed63e5b3917b3d6c8d6645daf96c75f97ba","affectsGlobalScope":true},"7babd641e8b4fa5a8d3afad49ec2a2179310c87278211a24ae81bf868f045db2","736097ddbb2903bef918bb3b5811ef1c9c5656f2a73bd39b22a91b9cc2525e50","208bb742e0f201470da121bc73847c74b62cff4172f38ae5949ae77d6c9c6b71","3663d1b50f356656a314e5df169bb51cb9d5fd75905fa703f75db6bb32030568","c69767317aec528b574762b18727db85eef7cf66f33617cc0ee905cbe5a43d97","f9a2dd6a6084665f093ed0e9664b8e673be2a45e342a59dd4e0e4e552e68a9ad","63c1b5da900e33f9e2623bf0cf2bf73f3379eaef74a03393d41bb34737d3e06b","2b8264b2fefd7367e0f20e2c04eed5d3038831fe00f5efbc110ff0131aab899b","e91ad231af87f864b3f07cd0e39b1cf6c133988156f087c1c3ccb0a5491c9115","a6c4cc913246a4f40423d0c6e618239072d7662bd54f6d8b8be59aec55d59873","bf0b1297461549a0e32cd57dffb992c63d7c7134fe0f9e15d359abcc88dbd28c","d9e55d93aa33fad61bd5c63800972d00ba8879ec5d29f6f3bce67d16d86abc33","2ac9c8332c5f8510b8bdd571f8271e0f39b0577714d5e95c1e79a12b2616f069","42c21aa963e7b86fa00801d96e88b36803188018d5ad91db2a9101bccd40b3ff","d31eb848cdebb4c55b4893b335a7c0cca95ad66dee13cbb7d0893810c0a9c301","77c1d91a129ba60b8c405f9f539e42df834afb174fe0785f89d92a2c7c16b77a","c544d81603149987796b24cca297c965db427b84b2580fb27e52fb37ddc1f470","906c751ef5822ec0dadcea2f0e9db64a33fb4ee926cc9f7efa38afe5d5371b2a","5387c049e9702f2d2d7ece1a74836a14b47fbebe9bbeb19f94c580a37c855351","c68391fb9efad5d99ff332c65b1606248c4e4a9f1dd9a087204242b56c7126d6","758e82e32536b66a139e34bb7e067dd860b563070f9746a0ae5cd802588f4def","e8b02b879754d85f48489294f99147aeccc352c760d95a6fe2b6e49cd400b2fe","9f6908ab3d8a86c68b86e38578afc7095114e66b2fc36a2a96e9252aac3998e0","0eedb2344442b143ddcd788f87096961cd8572b64f10b4afc3356aa0460171c6","9eb2875a1e4c583066af7d6194ea8162191b2756e5d87ccb3c562fdf74d06869","c68baff4d8ba346130e9753cefe2e487a16731bf17e05fdacc81e8c9a26aae9d","2cd15528d8bb5d0453aa339b4b52e0696e8b07e790c153831c642c3dea5ac8af","479d622e66283ffa9883fbc33e441f7fc928b2277ff30aacbec7b7761b4e9579","ade307876dc5ca267ca308d09e737b611505e015c535863f22420a11fffc1c54","f8cdefa3e0dee639eccbe9794b46f90291e5fd3989fcba60d2f08fde56179fb9","86c5a62f99aac7053976e317dbe9acb2eaf903aaf3d2e5bb1cafe5c2df7b37a8","2b300954ce01a8343866f737656e13243e86e5baef51bd0631b21dcef1f6e954","a2d409a9ffd872d6b9d78ead00baa116bbc73cfa959fce9a2f29d3227876b2a1","b288936f560cd71f4a6002953290de9ff8dfbfbf37f5a9391be5c83322324898","61178a781ef82e0ff54f9430397e71e8f365fc1e3725e0e5346f2de7b0d50dfa","5349dc09f88a35d52dc0bf24c44ebfd10dcb13e052d79133a56e1ac127162a4d","6eef5113135a0f2bbac8259909a5bbb7666bcde022c28f4ab95145623cbe1f72","058b8dd97b7c67b6bf33e7bda7b1e247b019b675d4b6449d14ac002091a8b4f8","89c8a7b88c378663a8124664f2d9b8c2887e186b55aa066edf6d67177ca1aa04","5a30ba65ad753eb2ef65355dbb3011b28b192cb9df2ef0b5f595b51ca7faf353","5192f9a6469f849e0863616b668fde54bcd6704394b4bfbd115691865f66d761","f41d30972724714763a2698ae949fbc463afb203b5fa7c4ad7e4de0871129a17","0123340327efb174818f4b78bf6a9b12f8470754e6afac9e4d32a2ad27521f7b","9795e0a3a45d5b6f1a791ee54b7c8b58bc931e8900966cea2dff9c5bae56073b","5890be29879d02424b7654f40592915189034948f7a18c5ad121c006d4e92811","0ab49086f10c75a1cb3b18bffe799dae021774146d8a2d5a4bb42dda67b64f9b","81c77839e152b8f715ec67b0a8b910bcc2d6cf916794c3519f8798c40efd12ac","a868a534ba1c2ca9060b8a13b0ffbbbf78b4be7b0ff80d8c75b02773f7192c29","464843c00fb3dd4735b28255c5c9fe713f16b8e47a3db09ba1647687440f7aef","34baf65cfee92f110d6653322e2120c2d368ee64b3c7981dff08ed105c4f19b0","03d2e70c34640b553ed580286eb234835695ea1e473d837a4ced672648d453cd","84e3bbd6f80983d468260fdbfeeb431cc81f7ea98d284d836e4d168e36875e86","aad5ffa61406b8e19524738fcf0e6fda8b3485bba98626268fdf252d1b2b630a","0c7e000e0c64eaffe40f9cc0265b6f32ffec21229138d7e746fee2a0e6c9a7f5","27e654573d3a6d4568b31f27cbf2dd068f37fe8c97c968725e8af18569445c7f","e2c3fb7ba470548053dabb65521b89846fffad3a103ddc72b5115d8caa23ce8e","fab58e600970e66547644a44bc9918e3223aa2cbd9e8763cec004b2cfb48827e",{"version":"e0c29cf48f8c3f7c96d9638c60ce6a68e4e2875760eca40a6e0f314c1e6c0997","affectsGlobalScope":true},"c0288f54de6f544706a3150c8b579b1a975870695c4be866f727ece6a16f3976","ec2c7505ede4bc3ee37cfe431cfd87e545f55f27fe15b0809c1a411765145615","3845d3b64286c12c60d39fc90ac1cc5e47cbc951530658d2567d578b2faa1f26"],"options":{"composite":true,"emitDecoratorMetadata":true,"esModuleInterop":true,"experimentalDecorators":true,"module":1,"outDir":"./dist","rootDir":"./src","sourceMap":true,"target":99},"fileIdsList":[[103],[75,78,102,103,110,213,214,215],[78,103,110,218],[92,103,110,221,222,223,224,225],[103,221,222,226],[92,103,110,221],[92,103,110],[103,146],[103,232,233],[103,230,231,232],[75,103,110],[76,103,110],[103,110],[78,102,103,110,242,243],[78,92,103,110],[60,103],[63,103],[64,69,103],[65,75,76,83,92,102,103],[65,66,75,83,103],[67,103],[68,69,76,84,103],[69,92,99,103],[70,72,75,83,103],[71,103],[72,73,103],[74,75,103],[75,103],[75,76,77,92,102,103],[75,76,77,92,103],[78,83,92,102,103],[75,76,78,79,83,92,99,102,103],[78,80,92,99,102,103],[60,61,62,63,64,65,66,67,68,69,70,71,72,73,74,75,76,77,78,79,80,81,82,83,84,85,86,87,88,89,90,91,92,93,94,95,96,97,98,99,100,101,102,103,104,105,106,107,108,109],[75,81,103],[82,102,103],[72,75,83,92,103],[84,103],[85,103],[63,86,103],[87,101,103,107],[88,103],[89,103],[75,90,103],[90,91,103,105],[75,92,93,94,103],[92,94,103],[92,93,103],[95,103],[96,103],[75,97,98,103],[97,98,103],[69,83,99,103],[100,103],[83,101,103],[64,78,89,102,103],[69,103],[92,103,104],[103,105],[103,106],[64,69,75,77,86,92,102,103,105,107],[92,103,108],[78,103,110],[75,92,103,110,246],[76,78,80,83,92,102,103,110,217,249,250],[103,252,291],[103,252,276,291],[103,291],[103,252],[103,252,277,291],[103,252,253,254,255,256,257,258,259,260,261,262,263,264,265,266,267,268,269,270,271,272,273,274,275,276,277,278,279,280,281,282,283,284,285,286,287,288,289,290],[103,277,291],[76,92,103,110,292],[103,208],[75,78,80,92,99,102,103,108,110],[75,103,110,299],[75,92,103,110],[103,149,150],[103,149],[83,103,110,130,153,175],[103,149,163,165,167],[103,153,165,166],[103,151,152,153,161,165,166,167,168,169,170,173,174,175],[103,151,162],[103,161,163],[103,163],[103,162,163,164],[103,149,165,166],[103,149,152,161,165,166],[103,149,153,165],[103,153],[75,103,110,149,153,165,166],[103,149,153,165,166],[103,154,155,156,157,158,159,160],[92,103,110,130,149,153,165,166],[103,149,153,165,166,167],[103,154,166],[83,99,103,110,153,165,166,174],[103,151,152,165],[103,171,172],[103,130,152],[103,149,178,179,180,181],[103,177],[103,183],[103,130],[103,177,182],[75,103,110,111,112],[103,112,130,131,132,133],[57,78,80,103,110,111,114],[57,58,59,103,112,113,114,115,116,117,131,134,140,141,142,143,144,145,148],[56,103],[103,147],[57,103],[103,113],[56,57,103],[103,136],[103,136,137,138,139],[103,135,136,137],[103,136,137,138],[103,119],[92,103,110,119],[103,118,119,120,122,123,129],[92,103,110,119,120,121],[103,118,119,121],[103,118],[92,103,110,119,120,127],[103,120,123,124,125,126,128],[103,119,123,124],[103,119,122],[92,103,110,119,124],[65,103],[55,83,84,85,92,99,103,149,151,176,184,205,206],[75,77,84,85,92,103,149,151,176,183,184,203],[103,151,183,184],[103,151,176,183,184],[76,82,85,103,149,184,189,203],[103,176,184,187,188,190],[92,103,184],[103,184],[85,103,184],[103,176,184,203],[103,176],[65,103,130,149,151,176,183,184,195,203,204],[103,176,184],[103,176,184,187,188],[103,149,185,186,189,190,191,192,193,194,195,196,197,198,199,200,201,202,205],[76,77,83,85,103,149,151,176,205,209],[83,103,149,176,184,195,203],[92,103],[55,84,103],[65,103,130,176,183],[103,206],[55,76,84,85,103]],"referencedMap":[[212,1],[216,2],[217,1],[219,3],[220,1],[226,4],[223,5],[222,6],[221,7],[227,5],[228,1],[147,8],[229,1],[234,9],[230,1],[233,10],[231,1],[232,1],[224,7],[235,1],[214,1],[236,1],[213,11],[237,1],[238,1],[239,12],[240,1],[241,13],[146,1],[243,1],[244,14],[242,15],[60,16],[61,16],[63,17],[64,18],[65,19],[66,20],[67,21],[68,22],[69,23],[70,24],[71,25],[72,26],[73,26],[74,27],[75,28],[76,29],[77,30],[62,1],[109,1],[78,31],[79,32],[80,33],[110,34],[81,35],[82,36],[83,37],[84,38],[85,39],[86,40],[87,41],[88,42],[89,43],[90,44],[91,45],[92,46],[94,47],[93,48],[95,49],[96,50],[97,51],[98,52],[99,53],[100,54],[101,55],[102,56],[103,57],[104,58],[105,59],[106,60],[107,61],[108,62],[225,1],[245,63],[247,64],[248,1],[246,1],[218,1],[251,65],[215,15],[276,66],[277,67],[252,68],[255,68],[274,66],[275,66],[265,69],[264,69],[262,66],[257,66],[270,66],[268,66],[272,66],[256,66],[269,66],[273,66],[258,66],[259,66],[271,66],[253,66],[260,66],[261,66],[263,66],[267,66],[278,70],[266,66],[254,66],[291,71],[290,1],[285,70],[287,72],[286,70],[279,70],[280,70],[282,70],[284,70],[288,72],[289,72],[281,72],[283,72],[293,73],[292,1],[294,1],[209,74],[295,7],[250,1],[296,1],[297,1],[298,1],[124,75],[300,76],[299,1],[301,77],[249,15],[135,1],[56,1],[208,1],[11,1],[12,1],[16,1],[15,1],[2,1],[17,1],[18,1],[19,1],[20,1],[21,1],[22,1],[23,1],[24,1],[3,1],[4,1],[28,1],[25,1],[26,1],[27,1],[29,1],[30,1],[31,1],[5,1],[32,1],[33,1],[34,1],[35,1],[6,1],[36,1],[37,1],[38,1],[39,1],[7,1],[44,1],[40,1],[41,1],[42,1],[43,1],[8,1],[48,1],[45,1],[46,1],[47,1],[49,1],[9,1],[50,1],[51,1],[52,1],[1,1],[10,1],[54,1],[53,1],[14,1],[13,1],[151,78],[150,79],[174,80],[168,81],[169,82],[176,83],[163,84],[162,85],[164,86],[165,87],[167,88],[153,89],[170,1],[166,90],[152,91],[154,92],[159,93],[155,93],[161,94],[160,95],[156,96],[157,97],[158,93],[175,98],[172,99],[173,100],[171,101],[182,102],[178,103],[179,103],[180,1],[181,104],[177,105],[183,106],[113,107],[144,1],[133,1],[132,1],[59,1],[111,79],[134,108],[115,109],[149,110],[57,111],[142,1],[148,112],[112,113],[114,114],[145,1],[131,1],[141,1],[143,1],[58,115],[137,116],[140,117],[138,118],[139,119],[136,1],[116,1],[117,1],[121,120],[120,121],[118,1],[130,122],[123,123],[122,124],[119,125],[128,126],[129,127],[126,128],[127,129],[125,130],[55,131],[207,132],[192,133],[186,134],[185,135],[190,136],[191,137],[193,137],[196,138],[194,139],[189,140],[195,1],[198,141],[197,142],[205,143],[199,139],[200,144],[201,145],[202,140],[203,146],[210,147],[206,148],[204,149],[187,150],[184,151],[211,152],[188,153]],"exportedModulesMap":[[212,1],[216,2],[217,1],[219,3],[220,1],[226,4],[223,5],[222,6],[221,7],[227,5],[228,1],[147,8],[229,1],[234,9],[230,1],[233,10],[231,1],[232,1],[224,7],[235,1],[214,1],[236,1],[213,11],[237,1],[238,1],[239,12],[240,1],[241,13],[146,1],[243,1],[244,14],[242,15],[60,16],[61,16],[63,17],[64,18],[65,19],[66,20],[67,21],[68,22],[69,23],[70,24],[71,25],[72,26],[73,26],[74,27],[75,28],[76,29],[77,30],[62,1],[109,1],[78,31],[79,32],[80,33],[110,34],[81,35],[82,36],[83,37],[84,38],[85,39],[86,40],[87,41],[88,42],[89,43],[90,44],[91,45],[92,46],[94,47],[93,48],[95,49],[96,50],[97,51],[98,52],[99,53],[100,54],[101,55],[102,56],[103,57],[104,58],[105,59],[106,60],[107,61],[108,62],[225,1],[245,63],[247,64],[248,1],[246,1],[218,1],[251,65],[215,15],[276,66],[277,67],[252,68],[255,68],[274,66],[275,66],[265,69],[264,69],[262,66],[257,66],[270,66],[268,66],[272,66],[256,66],[269,66],[273,66],[258,66],[259,66],[271,66],[253,66],[260,66],[261,66],[263,66],[267,66],[278,70],[266,66],[254,66],[291,71],[290,1],[285,70],[287,72],[286,70],[279,70],[280,70],[282,70],[284,70],[288,72],[289,72],[281,72],[283,72],[293,73],[292,1],[294,1],[209,74],[295,7],[250,1],[296,1],[297,1],[298,1],[124,75],[300,76],[299,1],[301,77],[249,15],[135,1],[56,1],[208,1],[11,1],[12,1],[16,1],[15,1],[2,1],[17,1],[18,1],[19,1],[20,1],[21,1],[22,1],[23,1],[24,1],[3,1],[4,1],[28,1],[25,1],[26,1],[27,1],[29,1],[30,1],[31,1],[5,1],[32,1],[33,1],[34,1],[35,1],[6,1],[36,1],[37,1],[38,1],[39,1],[7,1],[44,1],[40,1],[41,1],[42,1],[43,1],[8,1],[48,1],[45,1],[46,1],[47,1],[49,1],[9,1],[50,1],[51,1],[52,1],[1,1],[10,1],[54,1],[53,1],[14,1],[13,1],[151,78],[150,79],[174,80],[168,81],[169,82],[176,83],[163,84],[162,85],[164,86],[165,87],[167,88],[153,89],[170,1],[166,90],[152,91],[154,92],[159,93],[155,93],[161,94],[160,95],[156,96],[157,97],[158,93],[175,98],[172,99],[173,100],[171,101],[182,102],[178,103],[179,103],[180,1],[181,104],[177,105],[183,106],[113,107],[144,1],[133,1],[132,1],[59,1],[111,79],[134,108],[115,109],[149,110],[57,111],[142,1],[148,112],[112,113],[114,114],[145,1],[131,1],[141,1],[143,1],[58,115],[137,116],[140,117],[138,118],[139,119],[136,1],[116,1],[117,1],[121,120],[120,121],[118,1],[130,122],[123,123],[122,124],[119,125],[128,126],[129,127],[126,128],[127,129],[125,130],[55,131],[207,132],[192,133],[186,134],[185,135],[190,136],[191,137],[193,137],[196,138],[194,139],[189,140],[195,1],[198,141],[197,142],[205,143],[199,139],[200,144],[201,145],[202,140],[203,146],[210,147],[206,148],[204,149],[187,150],[184,151],[211,152],[188,153]],"semanticDiagnosticsPerFile":[212,216,217,219,220,226,223,222,221,227,228,147,229,234,230,233,231,232,224,235,214,236,213,237,238,239,240,241,146,243,244,242,60,61,63,64,65,66,67,68,69,70,71,72,73,74,75,76,77,62,109,78,79,80,110,81,82,83,84,85,86,87,88,89,90,91,92,94,93,95,96,97,98,99,100,101,102,103,104,105,106,107,108,225,245,247,248,246,218,251,215,276,277,252,255,274,275,265,264,262,257,270,268,272,256,269,273,258,259,271,253,260,261,263,267,278,266,254,291,290,285,287,286,279,280,282,284,288,289,281,283,293,292,294,209,295,250,296,297,298,124,300,299,301,249,135,56,208,11,12,16,15,2,17,18,19,20,21,22,23,24,3,4,28,25,26,27,29,30,31,5,32,33,34,35,6,36,37,38,39,7,44,40,41,42,43,8,48,45,46,47,49,9,50,51,52,1,10,54,53,14,13,151,150,174,168,169,176,163,162,164,165,167,153,170,166,152,154,159,155,161,160,156,157,158,175,172,173,171,182,178,179,180,181,177,183,113,144,133,132,59,111,134,115,149,57,142,148,112,114,145,131,141,143,58,137,140,138,139,136,116,117,121,120,118,130,123,122,119,128,129,126,127,125,55,207,192,186,185,190,191,193,196,194,189,195,198,197,205,199,200,201,202,203,210,206,204,187,184,211,188]},"version":"4.6.3"}
|
1
|
+
{"program":{"fileNames":["../../node_modules/typescript/lib/lib.es5.d.ts","../../node_modules/typescript/lib/lib.es2015.d.ts","../../node_modules/typescript/lib/lib.es2016.d.ts","../../node_modules/typescript/lib/lib.es2017.d.ts","../../node_modules/typescript/lib/lib.es2018.d.ts","../../node_modules/typescript/lib/lib.es2019.d.ts","../../node_modules/typescript/lib/lib.es2020.d.ts","../../node_modules/typescript/lib/lib.es2021.d.ts","../../node_modules/typescript/lib/lib.es2022.d.ts","../../node_modules/typescript/lib/lib.esnext.d.ts","../../node_modules/typescript/lib/lib.dom.d.ts","../../node_modules/typescript/lib/lib.dom.iterable.d.ts","../../node_modules/typescript/lib/lib.webworker.importscripts.d.ts","../../node_modules/typescript/lib/lib.scripthost.d.ts","../../node_modules/typescript/lib/lib.es2015.core.d.ts","../../node_modules/typescript/lib/lib.es2015.collection.d.ts","../../node_modules/typescript/lib/lib.es2015.generator.d.ts","../../node_modules/typescript/lib/lib.es2015.iterable.d.ts","../../node_modules/typescript/lib/lib.es2015.promise.d.ts","../../node_modules/typescript/lib/lib.es2015.proxy.d.ts","../../node_modules/typescript/lib/lib.es2015.reflect.d.ts","../../node_modules/typescript/lib/lib.es2015.symbol.d.ts","../../node_modules/typescript/lib/lib.es2015.symbol.wellknown.d.ts","../../node_modules/typescript/lib/lib.es2016.array.include.d.ts","../../node_modules/typescript/lib/lib.es2017.object.d.ts","../../node_modules/typescript/lib/lib.es2017.sharedmemory.d.ts","../../node_modules/typescript/lib/lib.es2017.string.d.ts","../../node_modules/typescript/lib/lib.es2017.intl.d.ts","../../node_modules/typescript/lib/lib.es2017.typedarrays.d.ts","../../node_modules/typescript/lib/lib.es2018.asyncgenerator.d.ts","../../node_modules/typescript/lib/lib.es2018.asynciterable.d.ts","../../node_modules/typescript/lib/lib.es2018.intl.d.ts","../../node_modules/typescript/lib/lib.es2018.promise.d.ts","../../node_modules/typescript/lib/lib.es2018.regexp.d.ts","../../node_modules/typescript/lib/lib.es2019.array.d.ts","../../node_modules/typescript/lib/lib.es2019.object.d.ts","../../node_modules/typescript/lib/lib.es2019.string.d.ts","../../node_modules/typescript/lib/lib.es2019.symbol.d.ts","../../node_modules/typescript/lib/lib.es2020.bigint.d.ts","../../node_modules/typescript/lib/lib.es2020.promise.d.ts","../../node_modules/typescript/lib/lib.es2020.sharedmemory.d.ts","../../node_modules/typescript/lib/lib.es2020.string.d.ts","../../node_modules/typescript/lib/lib.es2020.symbol.wellknown.d.ts","../../node_modules/typescript/lib/lib.es2020.intl.d.ts","../../node_modules/typescript/lib/lib.es2021.promise.d.ts","../../node_modules/typescript/lib/lib.es2021.string.d.ts","../../node_modules/typescript/lib/lib.es2021.weakref.d.ts","../../node_modules/typescript/lib/lib.es2021.intl.d.ts","../../node_modules/typescript/lib/lib.es2022.array.d.ts","../../node_modules/typescript/lib/lib.es2022.error.d.ts","../../node_modules/typescript/lib/lib.es2022.object.d.ts","../../node_modules/typescript/lib/lib.es2022.string.d.ts","../../node_modules/typescript/lib/lib.esnext.intl.d.ts","../../node_modules/typescript/lib/lib.esnext.full.d.ts","./src/cli-helper.ts","../../node_modules/reflect-metadata/index.d.ts","../core/dist/injector.d.ts","../core/dist/reflection-injector.d.ts","../core/dist/factory.d.ts","../../node_modules/@types/node/assert.d.ts","../../node_modules/@types/node/assert/strict.d.ts","../../node_modules/@types/node/globals.d.ts","../../node_modules/@types/node/async_hooks.d.ts","../../node_modules/@types/node/buffer.d.ts","../../node_modules/@types/node/child_process.d.ts","../../node_modules/@types/node/cluster.d.ts","../../node_modules/@types/node/console.d.ts","../../node_modules/@types/node/constants.d.ts","../../node_modules/@types/node/crypto.d.ts","../../node_modules/@types/node/dgram.d.ts","../../node_modules/@types/node/diagnostics_channel.d.ts","../../node_modules/@types/node/dns.d.ts","../../node_modules/@types/node/dns/promises.d.ts","../../node_modules/@types/node/domain.d.ts","../../node_modules/@types/node/events.d.ts","../../node_modules/@types/node/fs.d.ts","../../node_modules/@types/node/fs/promises.d.ts","../../node_modules/@types/node/http.d.ts","../../node_modules/@types/node/http2.d.ts","../../node_modules/@types/node/https.d.ts","../../node_modules/@types/node/inspector.d.ts","../../node_modules/@types/node/module.d.ts","../../node_modules/@types/node/net.d.ts","../../node_modules/@types/node/os.d.ts","../../node_modules/@types/node/path.d.ts","../../node_modules/@types/node/perf_hooks.d.ts","../../node_modules/@types/node/process.d.ts","../../node_modules/@types/node/punycode.d.ts","../../node_modules/@types/node/querystring.d.ts","../../node_modules/@types/node/readline.d.ts","../../node_modules/@types/node/repl.d.ts","../../node_modules/@types/node/stream.d.ts","../../node_modules/@types/node/stream/promises.d.ts","../../node_modules/@types/node/stream/consumers.d.ts","../../node_modules/@types/node/stream/web.d.ts","../../node_modules/@types/node/string_decoder.d.ts","../../node_modules/@types/node/timers.d.ts","../../node_modules/@types/node/timers/promises.d.ts","../../node_modules/@types/node/tls.d.ts","../../node_modules/@types/node/trace_events.d.ts","../../node_modules/@types/node/tty.d.ts","../../node_modules/@types/node/url.d.ts","../../node_modules/@types/node/util.d.ts","../../node_modules/@types/node/v8.d.ts","../../node_modules/@types/node/vm.d.ts","../../node_modules/@types/node/wasi.d.ts","../../node_modules/@types/node/worker_threads.d.ts","../../node_modules/@types/node/zlib.d.ts","../../node_modules/@types/node/globals.global.d.ts","../../node_modules/@types/node/index.d.ts","../core/dist/formatters/common.d.ts","../core/dist/module.d.ts","../core/dist/binder.d.ts","../core/dist/parser.d.ts","../core/dist/http.d.ts","../core/dist/service.d.ts","../core/dist/type-helper.d.ts","../json-rpc-ws/lib/errors.d.ts","../json-rpc-ws/lib/shared-connection.d.ts","../json-rpc-ws/lib/connection.d.ts","../json-rpc-ws/lib/base.d.ts","../json-rpc-ws/lib/shared-client.d.ts","../json-rpc-ws/lib/server.d.ts","../../node_modules/@types/ws/index.d.ts","../json-rpc-ws/lib/ws/ws-socket-adapter.d.ts","../json-rpc-ws/lib/ws/server.d.ts","../json-rpc-ws/lib/ws/shared-client.d.ts","../json-rpc-ws/lib/ws/client.d.ts","../json-rpc-ws/lib/ws/index.d.ts","../json-rpc-ws/lib/index.d.ts","../core/dist/promiseHelpers.d.ts","../core/dist/eachAsync.d.ts","../core/dist/each.d.ts","../core/dist/helpers.d.ts","../../node_modules/path-to-regexp/dist/index.d.ts","../core/dist/router/shared.d.ts","../core/dist/router/composite.d.ts","../core/dist/router/route.d.ts","../core/dist/router/router.d.ts","../core/dist/router/index.d.ts","../core/dist/queue.d.ts","../core/dist/interpolate.d.ts","../core/dist/reflect.d.ts","../core/dist/chain.d.ts","../core/dist/polymorph.d.ts","../../node_modules/@types/ms/index.d.ts","../../node_modules/@types/debug/index.d.ts","../core/dist/logger.d.ts","../core/dist/index.d.ts","../cli/dist/router/index.d.ts","../cli/dist/index.d.ts","../commands/dist/model/trigger.d.ts","../commands/dist/model/container.d.ts","../commands/dist/processors/event.d.ts","../commands/dist/processors/http-client.d.ts","../commands/dist/processors/local.d.ts","../commands/dist/processors/log.d.ts","../commands/dist/processors/pipe.d.ts","../commands/dist/processors/fs.d.ts","../commands/dist/processors/jsonrpc.d.ts","../commands/dist/processors/index.d.ts","../commands/dist/metadata/configurations.d.ts","../commands/dist/metadata/command.d.ts","../commands/dist/metadata/container.d.ts","../commands/dist/metadata/index.d.ts","../commands/dist/model/processor.d.ts","../commands/dist/model/command.d.ts","../commands/dist/decorators.d.ts","../commands/dist/generator.d.ts","../commands/dist/model/error-unknowncommand.d.ts","../commands/dist/triggers/jsonrpc.d.ts","../commands/dist/triggers/cli.d.ts","../commands/dist/triggers/index.d.ts","../commands/dist/cli/serve.d.ts","../commands/dist/serve-metadata.d.ts","../commands/dist/net-socket-adapter.d.ts","../commands/dist/index.d.ts","../config/dist/configuration.d.ts","../config/dist/commands/commit.d.ts","../config/dist/commands/get.d.ts","../config/dist/commands/revert.d.ts","../config/dist/commands/set.d.ts","../config/dist/commander.d.ts","../config/dist/index.d.ts","./src/state.ts","./src/commands/connect.ts","./src/commands/config.ts","./src/npm-helper.ts","./src/yarn-helper.ts","./src/commands/map.ts","./src/commands/discover.ts","./src/commands/install.ts","./src/commands/$init.ts","./src/commands/link.ts","./src/commands/ls.ts","./src/commands/name.ts","./src/commands/log.ts","./src/commands/reload-metadata.ts","./src/commands/ready.ts","./src/commands/status.ts","./src/commands/stop.ts","./src/commands/update.ts","./src/commands/version.ts","./src/container.ts","./src/new-line-prefixer.ts","./src/ipc-adapter.ts","./src/commands/start.ts","./src/index.ts","./src/cli.ts","../../node_modules/source-map/source-map.d.ts","../../node_modules/@types/source-map-support/index.d.ts","./src/fork.ts","./src/commands/bridge.ts","./src/test/pwet.ts","../../node_modules/@types/assert/index.d.ts","../../node_modules/@types/keyv/index.d.ts","../../node_modules/@types/http-cache-semantics/index.d.ts","../../node_modules/@types/responselike/index.d.ts","../../node_modules/@types/cacheable-request/index.d.ts","../../node_modules/@types/caseless/index.d.ts","../../node_modules/@types/qs/index.d.ts","../../node_modules/@types/co-body/index.d.ts","../../node_modules/@types/content-type/index.d.ts","../../node_modules/@types/conventional-commits-parser/index.d.ts","../../node_modules/@types/conventional-changelog-writer/index.d.ts","../../node_modules/@types/conventional-changelog-core/node_modules/@types/conventional-recommended-bump/index.d.ts","../../node_modules/@types/git-raw-commits/index.d.ts","../../node_modules/@types/normalize-package-data/index.d.ts","../../node_modules/@types/conventional-changelog-core/index.d.ts","../../node_modules/@types/conventional-recommended-bump/index.d.ts","../../node_modules/@types/cookie/index.d.ts","../../node_modules/@types/emscripten/index.d.ts","../../node_modules/@types/eslint/helpers.d.ts","../../node_modules/@types/eslint/node_modules/@types/json-schema/index.d.ts","../../node_modules/@types/estree/index.d.ts","../../node_modules/@types/eslint/index.d.ts","../../node_modules/@types/eslint-scope/index.d.ts","../../node_modules/@types/html-minifier-terser/index.d.ts","../../node_modules/@types/json-schema/index.d.ts","../../node_modules/@types/mime/index.d.ts","../../node_modules/@types/minimist/index.d.ts","../../node_modules/@types/mkdirp/index.d.ts","../../node_modules/@types/mocha/index.d.ts","../../node_modules/@types/mock-require/index.d.ts","../../node_modules/@types/node-fetch/node_modules/form-data/index.d.ts","../../node_modules/@types/node-fetch/externals.d.ts","../../node_modules/@types/node-fetch/index.d.ts","../../node_modules/@types/on-finished/index.d.ts","../../node_modules/@types/q/index.d.ts","../../node_modules/@types/orchestrator/index.d.ts","../../node_modules/@types/parse-json/index.d.ts","../../node_modules/form-data/index.d.ts","../../node_modules/@types/tough-cookie/index.d.ts","../../node_modules/@types/request/index.d.ts","../../node_modules/@types/semver/classes/semver.d.ts","../../node_modules/@types/semver/functions/parse.d.ts","../../node_modules/@types/semver/functions/valid.d.ts","../../node_modules/@types/semver/functions/clean.d.ts","../../node_modules/@types/semver/functions/inc.d.ts","../../node_modules/@types/semver/functions/diff.d.ts","../../node_modules/@types/semver/functions/major.d.ts","../../node_modules/@types/semver/functions/minor.d.ts","../../node_modules/@types/semver/functions/patch.d.ts","../../node_modules/@types/semver/functions/prerelease.d.ts","../../node_modules/@types/semver/functions/compare.d.ts","../../node_modules/@types/semver/functions/rcompare.d.ts","../../node_modules/@types/semver/functions/compare-loose.d.ts","../../node_modules/@types/semver/functions/compare-build.d.ts","../../node_modules/@types/semver/functions/sort.d.ts","../../node_modules/@types/semver/functions/rsort.d.ts","../../node_modules/@types/semver/functions/gt.d.ts","../../node_modules/@types/semver/functions/lt.d.ts","../../node_modules/@types/semver/functions/eq.d.ts","../../node_modules/@types/semver/functions/neq.d.ts","../../node_modules/@types/semver/functions/gte.d.ts","../../node_modules/@types/semver/functions/lte.d.ts","../../node_modules/@types/semver/functions/cmp.d.ts","../../node_modules/@types/semver/functions/coerce.d.ts","../../node_modules/@types/semver/classes/comparator.d.ts","../../node_modules/@types/semver/classes/range.d.ts","../../node_modules/@types/semver/functions/satisfies.d.ts","../../node_modules/@types/semver/ranges/max-satisfying.d.ts","../../node_modules/@types/semver/ranges/min-satisfying.d.ts","../../node_modules/@types/semver/ranges/to-comparators.d.ts","../../node_modules/@types/semver/ranges/min-version.d.ts","../../node_modules/@types/semver/ranges/valid.d.ts","../../node_modules/@types/semver/ranges/outside.d.ts","../../node_modules/@types/semver/ranges/gtr.d.ts","../../node_modules/@types/semver/ranges/ltr.d.ts","../../node_modules/@types/semver/ranges/intersects.d.ts","../../node_modules/@types/semver/ranges/simplify.d.ts","../../node_modules/@types/semver/ranges/subset.d.ts","../../node_modules/@types/semver/internals/identifiers.d.ts","../../node_modules/@types/semver/index.d.ts","../../node_modules/@types/send/node_modules/@types/mime/index.d.ts","../../node_modules/@types/send/index.d.ts","../../node_modules/@types/showdown/index.d.ts","../../node_modules/@types/split2/index.d.ts","../../node_modules/@types/treeify/index.d.ts","../../node_modules/@types/uuid/index.d.ts","../../node_modules/@types/webpack-env/index.d.ts","../../node_modules/@types/xml2js/lib/processors.d.ts","../../node_modules/@types/xml2js/index.d.ts","../../node_modules/@types/yauzl/index.d.ts"],"fileInfos":[{"version":"3ac1b83264055b28c0165688fda6dfcc39001e9e7828f649299101c23ad0a0c3","affectsGlobalScope":true},"dc47c4fa66b9b9890cf076304de2a9c5201e94b740cffdf09f87296d877d71f6","7a387c58583dfca701b6c85e0adaf43fb17d590fb16d5b2dc0a2fbd89f35c467","8a12173c586e95f4433e0c6dc446bc88346be73ffe9ca6eec7aa63c8f3dca7f9","5f4e733ced4e129482ae2186aae29fde948ab7182844c3a5a51dd346182c7b06","e6b724280c694a9f588847f754198fb96c43d805f065c3a5b28bbc9594541c84","e21c071ca3e1b4a815d5f04a7475adcaeea5d64367e840dd0154096d705c3940","746d62152361558ea6d6115cf0da4dd10ede041d14882ede3568bce5dc4b4f1f","2f93dda35dafec68ec217c9ce67f0f4fbbbb030c055ac312641565ad60dd7e26","aea179452def8a6152f98f63b191b84e7cbd69b0e248c91e61fb2e52328abe8c",{"version":"72704b10d97777e15f1a581b73f88273037ef752d2e50b72287bd0a90af64fe6","affectsGlobalScope":true},{"version":"dbb73d4d99be496175cb432c74c2615f78c76f4272f1d83cba11ee0ed6dbddf0","affectsGlobalScope":true},{"version":"7fac8cb5fc820bc2a59ae11ef1c5b38d3832c6d0dfaec5acdb5569137d09a481","affectsGlobalScope":true},{"version":"097a57355ded99c68e6df1b738990448e0bf170e606707df5a7c0481ff2427cd","affectsGlobalScope":true},{"version":"d8996609230d17e90484a2dd58f22668f9a05a3bfe00bfb1d6271171e54a31fb","affectsGlobalScope":true},{"version":"43fb1d932e4966a39a41b464a12a81899d9ae5f2c829063f5571b6b87e6d2f9c","affectsGlobalScope":true},{"version":"cdccba9a388c2ee3fd6ad4018c640a471a6c060e96f1232062223063b0a5ac6a","affectsGlobalScope":true},{"version":"c5c05907c02476e4bde6b7e76a79ffcd948aedd14b6a8f56e4674221b0417398","affectsGlobalScope":true},{"version":"0d5f52b3174bee6edb81260ebcd792692c32c81fd55499d69531496f3f2b25e7","affectsGlobalScope":true},{"version":"810627a82ac06fb5166da5ada4159c4ec11978dfbb0805fe804c86406dab8357","affectsGlobalScope":true},{"version":"62d80405c46c3f4c527ee657ae9d43fda65a0bf582292429aea1e69144a522a6","affectsGlobalScope":true},{"version":"3013574108c36fd3aaca79764002b3717da09725a36a6fc02eac386593110f93","affectsGlobalScope":true},{"version":"75ec0bdd727d887f1b79ed6619412ea72ba3c81d92d0787ccb64bab18d261f14","affectsGlobalScope":true},{"version":"3be5a1453daa63e031d266bf342f3943603873d890ab8b9ada95e22389389006","affectsGlobalScope":true},{"version":"17bb1fc99591b00515502d264fa55dc8370c45c5298f4a5c2083557dccba5a2a","affectsGlobalScope":true},{"version":"7ce9f0bde3307ca1f944119f6365f2d776d281a393b576a18a2f2893a2d75c98","affectsGlobalScope":true},{"version":"6a6b173e739a6a99629a8594bfb294cc7329bfb7b227f12e1f7c11bc163b8577","affectsGlobalScope":true},{"version":"12a310447c5d23c7d0d5ca2af606e3bd08afda69100166730ab92c62999ebb9d","affectsGlobalScope":true},{"version":"b0124885ef82641903d232172577f2ceb5d3e60aed4da1153bab4221e1f6dd4e","affectsGlobalScope":true},{"version":"0eb85d6c590b0d577919a79e0084fa1744c1beba6fd0d4e951432fa1ede5510a","affectsGlobalScope":true},{"version":"da233fc1c8a377ba9e0bed690a73c290d843c2c3d23a7bd7ec5cd3d7d73ba1e0","affectsGlobalScope":true},{"version":"d154ea5bb7f7f9001ed9153e876b2d5b8f5c2bb9ec02b3ae0d239ec769f1f2ae","affectsGlobalScope":true},{"version":"bb2d3fb05a1d2ffbca947cc7cbc95d23e1d053d6595391bd325deb265a18d36c","affectsGlobalScope":true},{"version":"c80df75850fea5caa2afe43b9949338ce4e2de086f91713e9af1a06f973872b8","affectsGlobalScope":true},{"version":"9d57b2b5d15838ed094aa9ff1299eecef40b190722eb619bac4616657a05f951","affectsGlobalScope":true},{"version":"6c51b5dd26a2c31dbf37f00cfc32b2aa6a92e19c995aefb5b97a3a64f1ac99de","affectsGlobalScope":true},{"version":"6e7997ef61de3132e4d4b2250e75343f487903ddf5370e7ce33cf1b9db9a63ed","affectsGlobalScope":true},{"version":"2ad234885a4240522efccd77de6c7d99eecf9b4de0914adb9a35c0c22433f993","affectsGlobalScope":true},{"version":"1b3fe904465430e030c93239a348f05e1be80640d91f2f004c3512c2c2c89f34","affectsGlobalScope":true},{"version":"3787b83e297de7c315d55d4a7c546ae28e5f6c0a361b7a1dcec1f1f50a54ef11","affectsGlobalScope":true},{"version":"e7e8e1d368290e9295ef18ca23f405cf40d5456fa9f20db6373a61ca45f75f40","affectsGlobalScope":true},{"version":"faf0221ae0465363c842ce6aa8a0cbda5d9296940a8e26c86e04cc4081eea21e","affectsGlobalScope":true},{"version":"06393d13ea207a1bfe08ec8d7be562549c5e2da8983f2ee074e00002629d1871","affectsGlobalScope":true},{"version":"5075b36ab861c8c0c45377cb8c96270d7c65f0eeaf105d53fac6850da61f1027","affectsGlobalScope":true},{"version":"6c55633c733c8378db65ac3da7a767c3cf2cf3057f0565a9124a16a3a2019e87","affectsGlobalScope":true},{"version":"fb4416144c1bf0323ccbc9afb0ab289c07312214e8820ad17d709498c865a3fe","affectsGlobalScope":true},{"version":"5b0ca94ec819d68d33da516306c15297acec88efeb0ae9e2b39f71dbd9685ef7","affectsGlobalScope":true},{"version":"e8c9f4e445a489991ca1a4232667de3ac36b07ba75ea335971fbeacf2d26fe67","affectsGlobalScope":true},{"version":"34478567f8a80171f88f2f30808beb7da15eac0538ae91282dd33dce928d98ed","affectsGlobalScope":true},{"version":"6ea9ab679ea030cf46c16a711a316078e9e02619ebaf07a7fcd16964aba88f2d","affectsGlobalScope":true},{"version":"aedb8de1abb2ff1095c153854a6df7deae4a5709c37297f9d6e9948b6806fa66","affectsGlobalScope":true},{"version":"11ffe3c281f375fff9ffdde8bbec7669b4dd671905509079f866f2354a788064","affectsGlobalScope":true},{"version":"10bbdc1981b8d9310ee75bfac28ee0477bb2353e8529da8cff7cb26c409cb5e8","affectsGlobalScope":true},"d96fa8a56871904776165ceb8e00bd56127e1a017bb2664cae76223b5f815141","372f84694b043a991177352e9503f7e888f582e03baa8ae476a65d208c2b08d5",{"version":"8d6d51a5118d000ed3bfe6e1dd1335bebfff3fef23cd2af2f84a24d30f90cc90","affectsGlobalScope":true},"03b5901ef12c7675cd99f58630f0c327ccbba15a2484f6653f9447466438c7eb","99fec408b0c1cf6f1dd48ab8de414011a58fea600585450c6b02740a30c74280","b564503838d92b2db40756301bd1ef14fe87b3ce0c824363bb346e1d7aaa317e","0d5a2ee1fdfa82740e0103389b9efd6bfe145a20018a2da3c02b89666181f4d9","a69c09dbea52352f479d3e7ac949fde3d17b195abe90b045d619f747b38d6d1a",{"version":"92d63add669d18ebc349efbacd88966d6f2ccdddfb1b880b2db98ae3aa7bf7c4","affectsGlobalScope":true},"ccc94049a9841fe47abe5baef6be9a38fc6228807974ae675fb15dc22531b4be",{"version":"aeeee3998c5a730f8689f04038d41cf4245c9edbf6ef29a698e45b36e399b8ed","affectsGlobalScope":true},"95843d5cfafced8f3f8a5ce57d2335f0bcd361b9483587d12a25e4bd403b8216","afc6e96061af46bcff47246158caee7e056f5288783f2d83d6858cd25be1c565",{"version":"34f5bcac12b36d70304b73de5f5aab3bb91bd9919f984be80579ebcad03a624e","affectsGlobalScope":true},"82408ed3e959ddc60d3e9904481b5a8dc16469928257af22a3f7d1a3bc7fd8c4","d9f97c011a6e7ef705db52132e2117afcc2c93e851f546b083c290ae8d183f1d","f50c975ab7b50e25a69e3d8a3773894125b44e9698924105f23b812bf7488baf","2b8c764f856a1dd0a9a2bf23e5efddbff157de8138b0754010be561ae5fcaa90","76650408392bf49a8fbf3e2b6b302712a92d76af77b06e2da1cc8077359c4409","0af3121e68297b2247dd331c0d24dba599e50736a7517a5622d5591aae4a3122","6972fca26f6e9bd56197568d4379f99071a90766e06b4fcb5920a0130a9202be",{"version":"4a2628e95962c8ab756121faa3ac2ed348112ff7a87b5c286dd2cc3326546b4c","affectsGlobalScope":true},"80793b2277f31baa199234daed806fff0fb11491d1ebd3357e520c3558063f00","a049a59a02009fc023684fcfaf0ac526fe36c35dcc5d2b7d620c1750ba11b083","e3b886bacdd1fbf1f72e654596c80a55c7bc1d10bdf464aaf52f45ecd243862f","c665d5c50c2573aefd98f0ffb12c5583e333ed94294ce6f144a4163a8c84f09b","4b9a003b5c556c96784132945bb41c655ea11273b1917f5c8d0c154dd5fd20dd","a458dc78104cc80048ac24fdc02fe6dce254838094c2f25641b3f954d9721241",{"version":"e8b18c6385ff784228a6f369694fcf1a6b475355ba89090a88de13587a9391d5","affectsGlobalScope":true},"8a215750db3e2073511e07c9e293c8c40d6109e5c7368845e060bcc12adbae6f","abc1c425b2ad6720433f40f1877abfa4223f0f3dd486c9c28c492179ca183cb6","945a841f9a591197154c85386bc5a1467d42d325104bb36db51bc566bbb240be","10c39ce1df102994b47d4bc0c71aa9a6aea76f4651a5ec51914431f50bc883a1",{"version":"8207e7e6db9aa5fc7e61c8f17ba74cf9c115d26f51f91ee93f790815a7ea9dfb","affectsGlobalScope":true},"9f1069b9e2c051737b1f9b4f1baf50e4a63385a6a89c32235549ae87fc3d5492","ee18f2da7a037c6ceeb112a084e485aead9ea166980bf433474559eac1b46553","29c2706fa0cc49a2bd90c83234da33d08bb9554ecec675e91c1f85087f5a5324","0acbf26bf958f9e80c1ffa587b74749d2697b75b484062d36e103c137c562bc3","3fa48484c65913004d5abb5c0f917b61ea4684f32d05bb28c1ecfa5f05a9ed12","1b952304137851e45bc009785de89ada562d9376177c97e37702e39e60c2f1ff",{"version":"806ef4cac3b3d9fa4a48d849c8e084d7c72fcd7b16d76e06049a9ed742ff79c0","affectsGlobalScope":true},"33eee034727baf564056b4ea719075c23d3b4767d0b5f9c6933b81f3d77774d2","c33a6ea7147af60d8e98f1ac127047f4b0d4e2ce28b8f08ff3de07ca7cc00637",{"version":"b42b47e17b8ece2424ae8039feb944c2e3ba4b262986aebd582e51efbdca93dc","affectsGlobalScope":true},"664d8f2d59164f2e08c543981453893bc7e003e4dfd29651ce09db13e9457980","2408611d9b4146e35d1dbd1f443ccd8e187c74614a54b80300728277529dbf11","998a3de5237518c0b3ac00a11b3b4417affb008aa20aedee52f3fdae3cb86151","ad41008ffe077206e1811fc873f4d9005b5fd7f6ab52bb6118fef600815a5cb4",{"version":"dd9ea469d1bfaf589c6a196275d35cb1aa14014707c2c46d920c7b921e8f5bca","affectsGlobalScope":true},"badae0df9a8016ac36994b0a0e7b82ba6aaa3528e175a8c3cb161e4683eec03e","c3db860bcaaaeb3bbc23f353bbda1f8ab82756c8d5e973bebb3953cb09ea68f2","235a53595bd20b0b0eeb1a29cb2887c67c48375e92f03749b2488fbd46d0b1a0","bc09393cd4cd13f69cf1366d4236fbae5359bb550f0de4e15767e9a91d63dfb1","9c266243b01545e11d2733a55ad02b4c00ecdbda99c561cd1674f96e89cdc958","c71155c05fc76ff948a4759abc1cb9feec036509f500174bc18dad4c7827a60c",{"version":"ab9b9a36e5284fd8d3bf2f7d5fcbc60052f25f27e4d20954782099282c60d23e","affectsGlobalScope":true},"1503a452a67127e5c2da794d1c7c44344d5038373aae16c9b03ac964db159edd","4f723782bc5521feeeaaa79682455d7189d5eb34aa9bb4c515c7b9e41b35d43c","244fb88efc0f6ce7b836531f859148411d55ab8e4836a8616f21d81ab8ca7f28","277369db1dda65594f49d7261b028e04d9c4be62e9a32452621ecd242940405a","ebfa670c314ae0959e3e960d7d2d96284fff1fb26a9034f77bf0511c09fed4a8","d6bee13fffb7f68dc0221b8c76c7aeeb043c2f6361e38ee015f06201fcef5b31","3b0dd574b2d473ce4d2800ffdf853305323cd13fc102539f610b344bcc4b9808","0619c009b939ea35dff42158a21a5048e5a609d98a7979207dcb75742e15153c","ae33680683e99cb18483652f4168ed8aaa700717f06273f382c7a9622a44595e","71c54dafe11f83c88d2eeff88279417ed5c3b0ab50d8f7ee1782bf6281ee63a2","b4a82ad7ad392b37d30ee318883bdb42578a75ede9d73f96a4caa98e39b8c7c0","185c163d5cb858f8e4442bd44b3612d1118ac6df310928ab56106b16d1256e9c","684321f537b8f0fe40e5c672a79b059599550bcc0b8d7ef64544def3a6a2eeac","394e536ffba31fe9541f1efde2a7ca82ab26ce05c22f447248bbc2cd07539d43","b4358a89fcd9c579f84a6c68e2ce44ca91b07e4db3f8f403c2b7a72c1a1e04b6","40ac76db7418f1155e097de43988636629fdc3cd1e16f03a17ec2a5ebd8bcc2a","f0afcdde600748cc8098dbb0b724d49e4b052335c7ba81663e76665e2333dbeb","0fa2557019485797e589c02eb375cecb0daf45b24218d68b828d2db94cdeb237","3c6c3c29ffaa38d21244ef0770874bf6b4887b45b0a61eed4c046c726e923767","cef4c839bf5ef93a9fbb78d7c88511b3c31131726de775db1007203fa1f03c7a","e1c04ebf0df596164725b6cd0560ee3c9209bd8884db430cc88913fb3c82e407","8d240aa14b01f6421a2ecd882b2987ac4cb9e99cb1784d65eec5aa287170ac4a","6222aa3413d3373097ec0f9a3db9271e656e700a8c72f43d091eae7824c3e6e0","000ddcd575df7a8624aff5a73222393d54f23f31b50ec2a944df67fa5e5e2333","7f4500483a520eee8eccf70ec9a98d369c000a8ab0db1c9aed5ce076fb3045f5","6e7936b20cd2022c2a71f9d780e7f87216c19fde5c18448aaff60059a46ae2e7","c203dc14222563d96dd90ef723904dcf1e0a55438ea8fb66f185a7935729e25d","ba122209bba1dfe12a102ac53d5f6884ea65904cda388d62ac1d5409cefcf710","e52f069f47e9b2170c6e55f4049c641f661d0ada5cd111b016e131082ccc2957","c90c5972bb7fd9ae50a81c3d98855701c0e41ea55c2c704ae338d67338538d63","10d798846ca512a8aa956dd93edab0e5c5e172113a43e952b0d357f1bee5eb64","cbd6f8aecf15450f845b6c8cde4378c36ec7511dc7d51a06687c2b106a8282fb","8ae5de20a01bc6f03f535e20e4614a57398b3a7dd3cf5ae0f9510a9523a15d58","50b4aab7c34c23d63326e1d288de72e6adf9971cd78f1eb3f36d6cdb8b789fec","7427355bd08852a8176cbf469aafaec243055750da2d635fae9e5a5e88279cdc","286f27fba762e34cae30d0faa8d7f7cd847f9f40c21218e4268a210595093db8","6a9c5127096b35264eb7cd21b2417bfc1d42cceca9ba4ce2bb0c3410b7816042","78828b06c0d3b586954015e9ebde5480b009e166c71244763bda328ec0920f41","1c67bd8c07baf5ce5b1fb4e7ae7f266d43e75bd5edfc003574c45c817a937deb","9cecdafa88fcbb1aa2e4f5b0ae521207daf6a8ce389bfbf3949bcce38e418c79","d1da925e77f71c864dc34f1afc25397979c8d407f119e4b5248182278fef6068","e7e083892d1245c6fa89787561639ba60608f8608cd6027e9766f27aa32b8711","8d4e4410ef3590871439a88fa7bfa13b83e3222f077503b6b1fe5e18a3479106","9bc3cf6e473e1bfd07277b5a58a790355cf8d0734b13c16a3cf411674433be2c","32191ddb3bc1d5637cbe04df52febdf973d14050c7b6b6945aab5e3a66fb6c8c","c8ff874ca3c00f0aca0194e8500bbf5516c97c3fdd9887f98eba57f3c7f7337a","f12a24362d896063c1cf13a41ba32c82c83198937a49f2a96ec6877af738c7d9","d41f77d227da2509a63ad0c1ae5108a4e1cb1918e718fc4d8a4c767b2d771dd4","607909d764a81aea0bd53388d2e3d578b6f35326b8d660c8a17873ac3fe6e619","1e10bf8887348d2925e343f8956bfdfed2bdc9d2ca5f0c9e7e82e1ede142e248","f13fae3e599441412144827c5460da5dfdf5f797b3fdb67d6625c273b03541fb","416bb11d20c5b2d9215155a29f6888d627f41aaec3c21479545bef869d912429","671ca5644cc9c78945eed5b4a29d0d0a186faf77f2f90a378542cc5b50bc37e5","d2fe7aed2ad0d98eee2c148b9e3991f0e50f4f383da5943a2a24137da3d9a824","c57f946e2dc2a89d98a858ec6c1a80e3e3aa4255614c86cf7569b8aae94bec71","7b6412b77a3352752ba053d1d3a4d267ec44d4a64765bf1a517eeadc7805c666","a7dd514674f20e15519462c04ffd06b2128ead107c2da1835bdfa686919543a0","dfccd143a34da1ca4a3fd9503cf0f923fd5a7085bfb00072c4bdf6d44ddab274","6c475564fce4bf0d67406462d142a04f7a669f43b2f5ad89fd638cedbd195149","aa5d0893d7fd4dc6a3b218e14c31f43b6d4919b6db4aca0f7359e3d43cdc073b","f1ee4d9517c9d47135ca94ac13d8ba0e0a28384c65f0de26b0aeac08435e6f19","a8c09b38bcfbb8e9f88ddca8dc7a756c9477b2c59f4ac94ab99bab8c5606bef3","352c2a73c8084b5f4d21b6847ebf21c3047953940d6cab713635ce54e5d6103c","c8ae33f3ea6a53cd8dc9ae941c7857990ca257bdd427fe5741d8110bc45f4bc0","66eedd33b87e91c351418cab3dcc5992422d2f8f1f48a83d22ad727780bead1f","c47e7832f053794c4290a8630a03b59633c58cb40dd73de494e9921faf1d802e","e60cf7c5304fb5f251f167c2563a8472af49e3b347b728657f3c0a568bf5abd3","d4ec2e4c7fa9e350e4085977a48ccc92a1f478441c02d5db33e9b6c66785af30","6015b9c6fcdc009718717a3c33da530f04edc1d65c5005b7a28fccd143498941","9ed50cf8b3d9d75965eccb9bb07d58d6a83c5779274ca79ebbdf67ac4ab4e4af","4a29c526bb3a0f535cb7887e8df574e0f7c0497e645975108efd9b0d63c5f4ba","0e973518e27f9765849163a0dd442659c6a7907204bfb2a73cad78edef8eaf8b","111c62753ffa1a661b7fb12f3d98c22396a6555596b82d64fe4ba2cc756a5414","3121cc9e956fdb4e12a1da788063b6b9f3efa096faf317b23688c48910f2aabc","a328873fd34afb6e86d3694f5140ad0304593ebdf940fb4760609fda467677e7","83bdd94295431f04af3fa74997478ced00a42c98c87cb75ecbbbf2391540439b","7aaf1831422c3982b0a744dd06b6be843ce7ef5549f58f0b1796efccfa480918","c12938edd0512927a8e1514bba4baa8264597845516085b81202418fdb94ed60","397422b0a3aee5d90c2710b7cd449cd2845b10ee7f30c552ba166156b3baa224","621db152d13b399e4aaf684cad64df8fc4dd42bb37f75dd17ff51ca252f911da","ee51c79978a7d2d5bf6bdb081bfe1f4c497205292a0a71a9ae407cec69f7024d","83ab6d58dff9bc03ae14393d721485065e9833b5bfe675085e2f19718d89b916","b55bdeecc6e6e6350171b49db4696151a6cacb80135870ff3d8907408533ae2d","8e992087120f1cc90f554ddebb202a18b528b86d987466a47f39f90446882058","23ac5485922fda103b3656bee94a1ad010710f822b4469fa98928cf47a16d7e6","decf67f96e0f3cc11ec513d987d53ccdeae8c1efc4d61a8741c9ea34db608106","0975c47e7882ff0c653ec30978e24a87824d02919a1010e8260602b21345bd15","0b125c0262e89346caa13af468599452aa26f9f65ecbc955cdfd2dbe99ded5cc","80783170e1721f552496e11fc92e66db45a68b71054cc85875af7e95f6b528a9","346c5f72fe0eb15eae39c7c253ebd8c0dbbbf502722c7ed6993781445ccc941a","9d557c610764b7aaac0d61f84fab70fafec9fea38f3fd84bbcafafb624222888","bff71aec8aba1f3ff0a5ae3e1637891b852bd5da9d248a6792b83ba989b57c52","45c60327ac410c791b865385bb6262a0df5adf17a4243fb099be51d346a8a5cb","873eacdb24e20b00873822dfb71757f1fcb3effd44d0f05d5bdf11e04998c250","75d66e450e37575cfa1c4acee2d4f7087ed3f0bb93b5a0cb8c55425867020efa","d19a3deb3f40bab1eb98f3eb989c7e8545a7e92ee692e3a39c0f56d609969de2","b641d7f00ddd1d1d65dbf99ce1b9a42a26e5d3ab04e70901eaf9578be0e60fb1","d7c4435d313194e7d5847960e22c5ad02442d126a3c7de5daae02ccfe3f07756","bacaedaafdc9614c9e6d0a0c0118df9ecc788027b3abb8a00bbf0efcb376cf63","2c8705a7bf97589884b89a6e44aea90d66df8ab1b06cbfced7b553c764d2a6fd","2887592574fcdfd087647c539dcb0fbe5af2521270dad4a37f9d17c16190d579","1384902f0cccc5a9f9c0d65d93c093f6b9f77c949bf823f511b617cb8bc20fb5","36c334bdca78079d668ffcce54e429d43cdff7016ea581dd7f675276c8b4c283","323ba1f21e41997ab74a4c5f875c77b28f7186b60624b2df61d06548bc0463ac","fd06e5efbb8a820ec6d8af5f3078fd663334d06c02554d9b8433406526cd9f4e","d6c62c91eebdb76cde2ad0dfa3cf90134aad879c463ad7d8642e326e0bb57968","9e7f7ac4d964992cf1b77612ca07e5695821881aa1a9acb0ef0509f192a5ea23","0bf440ab914e79e890cb15e5ffacb5e18bec678338b3eab069a5829d3d5c96e3","3cfb0cb51cc2c2e1b313d7c4df04dbf7e5bda0a133c6b309bf6af77cf614b971","73c05cca1bb5aa8e93efd089af51643b7ff005e47064a0e624a74ee20480a2eb","5343f3c160282dfbaab9af350119a0c3b59b7076ef0117bb5995a66e240dab28","c236451df6139a965bb9b8fba15a43a8bebf4400ca589998e2bdc5e1291fa0f9","495da6628b9474e31d0636d66c54448bb8d84dbce902e8f70539ef6a525a2d7b","f9748c9f1a914930d23a90ca4d1c34ce06c417e9bd36da5d1270485a8b8ff72a","2733d9c68999f6fb4a8e853f4266b40b1e91ef7ae97a35d82014a732f9f3584b","388c90c577f861e1d7e2bb3035f8a02d0c62277544c71cb16a70267460c36970","735d0df8824a9f1e8565baa202b71cffbce1553de6fb0918a2fda0227b7f8070","05ec85b0b3d7963a821f175d4a57d4385343973d54aefb90761e9ec33ed7b8d1","6fa0008bf91a4cc9c8963bace4bba0bd6865cbfa29c3e3ccc461155660fb113a","8c88b2f4bd7238ac5858f4fce02031f2ccc77076398c9bf8ae416a2b86f0bcb0","b2ca4490d0a073b5055090a3919666ac1ef8f6948eb52ccad6f72e2a2c529977","4a547783c826c1dec10d96734687ae4db2e89d40261e91b5c327b60748315dc1",{"version":"4a72ef2edbfb19987b3bc76cc56953cb19217c01c955fe6f37707b547091c024","affectsGlobalScope":true},{"version":"f345b0888d003fd69cb32bad3a0aa04c615ccafc572019e4bd86a52bd5e49e46","affectsGlobalScope":true},"3a1e165b22a1cb8df82c44c9a09502fd2b33f160cd277de2cd3a055d8e5c6b27","f1e8ecd1d960d12e57316fd2889b0a57635f38f8c4c976d8deafa29650bbf320","edb3e2f61a2a6e29a5f9043f73adf65951d52b4c1f22e84050381f7ef0d77318","dc33ce27fbeaf0ea3da556c80a6cc8af9d13eb443088c8f25cdc39fca8e756f6","ee65fe452abe1309389c5f50710f24114e08a302d40708101c4aa950a2a7d044","0359682c54e487c4cab2b53b2b4d35cc8dea4d9914bc6abcdb5701f8b8e745a4","be27a64e821a3e5af838650e4aa25805c60f057d0c37a9762c378d19d364b3e6","e437d83044ba17246a861aa9691aa14223ff4a9d6f338ab1269c41c758586a88","875d567ecf2f865a1b19d30f2acf3203817e19fd95f7675351d046914ee39ac8",{"version":"3f6d6465811321abc30a1e5f667feed63e5b3917b3d6c8d6645daf96c75f97ba","affectsGlobalScope":true},"7babd641e8b4fa5a8d3afad49ec2a2179310c87278211a24ae81bf868f045db2","736097ddbb2903bef918bb3b5811ef1c9c5656f2a73bd39b22a91b9cc2525e50","208bb742e0f201470da121bc73847c74b62cff4172f38ae5949ae77d6c9c6b71","3663d1b50f356656a314e5df169bb51cb9d5fd75905fa703f75db6bb32030568","c69767317aec528b574762b18727db85eef7cf66f33617cc0ee905cbe5a43d97","f9a2dd6a6084665f093ed0e9664b8e673be2a45e342a59dd4e0e4e552e68a9ad","63c1b5da900e33f9e2623bf0cf2bf73f3379eaef74a03393d41bb34737d3e06b","2b8264b2fefd7367e0f20e2c04eed5d3038831fe00f5efbc110ff0131aab899b","e91ad231af87f864b3f07cd0e39b1cf6c133988156f087c1c3ccb0a5491c9115","a6c4cc913246a4f40423d0c6e618239072d7662bd54f6d8b8be59aec55d59873","bf0b1297461549a0e32cd57dffb992c63d7c7134fe0f9e15d359abcc88dbd28c","d9e55d93aa33fad61bd5c63800972d00ba8879ec5d29f6f3bce67d16d86abc33","2ac9c8332c5f8510b8bdd571f8271e0f39b0577714d5e95c1e79a12b2616f069","42c21aa963e7b86fa00801d96e88b36803188018d5ad91db2a9101bccd40b3ff","d31eb848cdebb4c55b4893b335a7c0cca95ad66dee13cbb7d0893810c0a9c301","77c1d91a129ba60b8c405f9f539e42df834afb174fe0785f89d92a2c7c16b77a","c544d81603149987796b24cca297c965db427b84b2580fb27e52fb37ddc1f470","906c751ef5822ec0dadcea2f0e9db64a33fb4ee926cc9f7efa38afe5d5371b2a","5387c049e9702f2d2d7ece1a74836a14b47fbebe9bbeb19f94c580a37c855351","c68391fb9efad5d99ff332c65b1606248c4e4a9f1dd9a087204242b56c7126d6","758e82e32536b66a139e34bb7e067dd860b563070f9746a0ae5cd802588f4def","e8b02b879754d85f48489294f99147aeccc352c760d95a6fe2b6e49cd400b2fe","9f6908ab3d8a86c68b86e38578afc7095114e66b2fc36a2a96e9252aac3998e0","0eedb2344442b143ddcd788f87096961cd8572b64f10b4afc3356aa0460171c6","9eb2875a1e4c583066af7d6194ea8162191b2756e5d87ccb3c562fdf74d06869","c68baff4d8ba346130e9753cefe2e487a16731bf17e05fdacc81e8c9a26aae9d","2cd15528d8bb5d0453aa339b4b52e0696e8b07e790c153831c642c3dea5ac8af","479d622e66283ffa9883fbc33e441f7fc928b2277ff30aacbec7b7761b4e9579","ade307876dc5ca267ca308d09e737b611505e015c535863f22420a11fffc1c54","f8cdefa3e0dee639eccbe9794b46f90291e5fd3989fcba60d2f08fde56179fb9","86c5a62f99aac7053976e317dbe9acb2eaf903aaf3d2e5bb1cafe5c2df7b37a8","2b300954ce01a8343866f737656e13243e86e5baef51bd0631b21dcef1f6e954","a2d409a9ffd872d6b9d78ead00baa116bbc73cfa959fce9a2f29d3227876b2a1","b288936f560cd71f4a6002953290de9ff8dfbfbf37f5a9391be5c83322324898","61178a781ef82e0ff54f9430397e71e8f365fc1e3725e0e5346f2de7b0d50dfa","5349dc09f88a35d52dc0bf24c44ebfd10dcb13e052d79133a56e1ac127162a4d","6eef5113135a0f2bbac8259909a5bbb7666bcde022c28f4ab95145623cbe1f72","058b8dd97b7c67b6bf33e7bda7b1e247b019b675d4b6449d14ac002091a8b4f8","89c8a7b88c378663a8124664f2d9b8c2887e186b55aa066edf6d67177ca1aa04","5a30ba65ad753eb2ef65355dbb3011b28b192cb9df2ef0b5f595b51ca7faf353","5192f9a6469f849e0863616b668fde54bcd6704394b4bfbd115691865f66d761","f41d30972724714763a2698ae949fbc463afb203b5fa7c4ad7e4de0871129a17","0123340327efb174818f4b78bf6a9b12f8470754e6afac9e4d32a2ad27521f7b","9795e0a3a45d5b6f1a791ee54b7c8b58bc931e8900966cea2dff9c5bae56073b","5890be29879d02424b7654f40592915189034948f7a18c5ad121c006d4e92811","0ab49086f10c75a1cb3b18bffe799dae021774146d8a2d5a4bb42dda67b64f9b","81c77839e152b8f715ec67b0a8b910bcc2d6cf916794c3519f8798c40efd12ac","a868a534ba1c2ca9060b8a13b0ffbbbf78b4be7b0ff80d8c75b02773f7192c29","464843c00fb3dd4735b28255c5c9fe713f16b8e47a3db09ba1647687440f7aef","34baf65cfee92f110d6653322e2120c2d368ee64b3c7981dff08ed105c4f19b0","03d2e70c34640b553ed580286eb234835695ea1e473d837a4ced672648d453cd","84e3bbd6f80983d468260fdbfeeb431cc81f7ea98d284d836e4d168e36875e86","aad5ffa61406b8e19524738fcf0e6fda8b3485bba98626268fdf252d1b2b630a","0c7e000e0c64eaffe40f9cc0265b6f32ffec21229138d7e746fee2a0e6c9a7f5","27e654573d3a6d4568b31f27cbf2dd068f37fe8c97c968725e8af18569445c7f","e2c3fb7ba470548053dabb65521b89846fffad3a103ddc72b5115d8caa23ce8e","fab58e600970e66547644a44bc9918e3223aa2cbd9e8763cec004b2cfb48827e",{"version":"e0c29cf48f8c3f7c96d9638c60ce6a68e4e2875760eca40a6e0f314c1e6c0997","affectsGlobalScope":true},"c0288f54de6f544706a3150c8b579b1a975870695c4be866f727ece6a16f3976","ec2c7505ede4bc3ee37cfe431cfd87e545f55f27fe15b0809c1a411765145615","3845d3b64286c12c60d39fc90ac1cc5e47cbc951530658d2567d578b2faa1f26"],"options":{"composite":true,"emitDecoratorMetadata":true,"esModuleInterop":true,"experimentalDecorators":true,"module":1,"outDir":"./dist","rootDir":"./src","sourceMap":true,"target":99},"fileIdsList":[[103],[75,78,102,103,110,216,217,218],[78,103,110,221],[92,103,110,224,225,226,227,228],[103,224,225,229],[92,103,110,224],[92,103,110],[103,146],[103,235,236],[103,233,234,235],[75,103,110],[76,103,110],[103,110],[78,102,103,110,245,246],[78,92,103,110],[60,103],[63,103],[64,69,103],[65,75,76,83,92,102,103],[65,66,75,83,103],[67,103],[68,69,76,84,103],[69,92,99,103],[70,72,75,83,103],[71,103],[72,73,103],[74,75,103],[75,103],[75,76,77,92,102,103],[75,76,77,92,103],[78,83,92,102,103],[75,76,78,79,83,92,99,102,103],[78,80,92,99,102,103],[60,61,62,63,64,65,66,67,68,69,70,71,72,73,74,75,76,77,78,79,80,81,82,83,84,85,86,87,88,89,90,91,92,93,94,95,96,97,98,99,100,101,102,103,104,105,106,107,108,109],[75,81,103],[82,102,103],[72,75,83,92,103],[84,103],[85,103],[63,86,103],[87,101,103,107],[88,103],[89,103],[75,90,103],[90,91,103,105],[75,92,93,94,103],[92,94,103],[92,93,103],[95,103],[96,103],[75,97,98,103],[97,98,103],[69,83,99,103],[100,103],[83,101,103],[64,78,89,102,103],[69,103],[92,103,104],[103,105],[103,106],[64,69,75,77,86,92,102,103,105,107],[92,103,108],[78,103,110],[75,92,103,110,249],[76,78,80,83,92,102,103,110,220,252,253],[103,255,294],[103,255,279,294],[103,294],[103,255],[103,255,280,294],[103,255,256,257,258,259,260,261,262,263,264,265,266,267,268,269,270,271,272,273,274,275,276,277,278,279,280,281,282,283,284,285,286,287,288,289,290,291,292,293],[103,280,294],[76,92,103,110,295],[103,210],[75,78,80,92,99,102,103,108,110],[75,103,110,302],[75,92,103,110],[103,149,150],[103,149],[103,153,175],[103,149,163,165,167],[103,153,165,166],[103,151,152,153,161,165,166,167,168,169,170,173,174,175,176],[103,151,162],[103,161,163],[103,163],[103,162,163,164],[103,149,165,166],[103,149,152,161,165,166],[103,149,153,165],[103,153],[83,103,110,130],[75,103,110,149,153,165,166],[103,149,153,165,166],[103,154,155,156,157,158,159,160],[92,103,110,130,149,153,165,166],[103,149,153,165,166,167],[103,154,166],[83,99,103,110,153,165,166,174],[103,151,152,165],[103,171,172],[103,130,152],[103,149,179,180,181,182],[103,178],[103,184],[103,130],[103,178,183],[75,103,110,111,112],[103,112,130,131,132,133],[57,78,80,103,110,111,114],[57,58,59,103,112,113,114,115,116,117,131,134,140,141,142,143,144,145,148],[56,103],[103,147],[57,103],[103,113],[56,57,103],[103,136],[103,136,137,138,139],[103,135,136,137],[103,136,137,138],[103,119],[92,103,110,119],[103,118,119,120,122,123,129],[92,103,110,119,120,121],[103,118,119,121],[103,118],[92,103,110,119,120,127],[103,120,123,124,125,126,128],[103,119,123,124],[103,119,122],[92,103,110,119,124],[65,103],[55,83,84,85,92,99,103,149,151,177,185,207,208],[75,77,84,85,92,103,149,151,177,184,185,204],[103,130,177,185],[103,151,184,185],[103,151,177,184,185],[76,82,85,103,149,185,190,204],[103,177,185,188,189,191],[92,103,185],[103,185],[85,103,185],[103,177,185,204],[103,177],[65,103,130,149,151,177,184,185,196,204,205,206],[103,177,185],[103,177,185,188,189],[103,149,186,187,190,191,192,193,194,195,196,197,198,199,200,201,202,203,207],[76,77,83,85,103,149,151,175,177,206,211],[83,103,149,177,185,196,204],[65,103,130],[92,103],[55,84,103],[65,103,130,177,184],[103,208],[55,76,84,85,103]],"referencedMap":[[215,1],[219,2],[220,1],[222,3],[223,1],[229,4],[226,5],[225,6],[224,7],[230,5],[231,1],[147,8],[232,1],[237,9],[233,1],[236,10],[234,1],[235,1],[227,7],[238,1],[217,1],[239,1],[216,11],[240,1],[241,1],[242,12],[243,1],[244,13],[146,1],[246,1],[247,14],[245,15],[60,16],[61,16],[63,17],[64,18],[65,19],[66,20],[67,21],[68,22],[69,23],[70,24],[71,25],[72,26],[73,26],[74,27],[75,28],[76,29],[77,30],[62,1],[109,1],[78,31],[79,32],[80,33],[110,34],[81,35],[82,36],[83,37],[84,38],[85,39],[86,40],[87,41],[88,42],[89,43],[90,44],[91,45],[92,46],[94,47],[93,48],[95,49],[96,50],[97,51],[98,52],[99,53],[100,54],[101,55],[102,56],[103,57],[104,58],[105,59],[106,60],[107,61],[108,62],[228,1],[248,63],[250,64],[251,1],[249,1],[221,1],[254,65],[218,15],[279,66],[280,67],[255,68],[258,68],[277,66],[278,66],[268,69],[267,69],[265,66],[260,66],[273,66],[271,66],[275,66],[259,66],[272,66],[276,66],[261,66],[262,66],[274,66],[256,66],[263,66],[264,66],[266,66],[270,66],[281,70],[269,66],[257,66],[294,71],[293,1],[288,70],[290,72],[289,70],[282,70],[283,70],[285,70],[287,70],[291,72],[292,72],[284,72],[286,72],[296,73],[295,1],[297,1],[211,74],[298,7],[253,1],[299,1],[300,1],[301,1],[124,75],[303,76],[302,1],[304,77],[252,15],[135,1],[56,1],[210,1],[11,1],[12,1],[16,1],[15,1],[2,1],[17,1],[18,1],[19,1],[20,1],[21,1],[22,1],[23,1],[24,1],[3,1],[4,1],[28,1],[25,1],[26,1],[27,1],[29,1],[30,1],[31,1],[5,1],[32,1],[33,1],[34,1],[35,1],[6,1],[36,1],[37,1],[38,1],[39,1],[7,1],[44,1],[40,1],[41,1],[42,1],[43,1],[8,1],[48,1],[45,1],[46,1],[47,1],[49,1],[9,1],[50,1],[51,1],[52,1],[1,1],[10,1],[54,1],[53,1],[14,1],[13,1],[151,78],[150,79],[174,80],[168,81],[169,82],[177,83],[163,84],[162,85],[164,86],[165,87],[167,88],[153,89],[170,1],[166,90],[152,91],[176,92],[154,93],[159,94],[155,94],[161,95],[160,96],[156,97],[157,98],[158,94],[175,99],[172,100],[173,101],[171,102],[183,103],[179,104],[180,104],[181,1],[182,105],[178,106],[184,107],[113,108],[144,1],[133,1],[132,1],[59,1],[111,79],[134,109],[115,110],[149,111],[57,112],[142,1],[148,113],[112,114],[114,115],[145,1],[131,1],[141,1],[143,1],[58,116],[137,117],[140,118],[138,119],[139,120],[136,1],[116,1],[117,1],[121,121],[120,122],[118,1],[130,123],[123,124],[122,125],[119,126],[128,127],[129,128],[126,129],[127,130],[125,131],[55,132],[209,133],[193,134],[213,135],[187,136],[186,137],[191,138],[192,139],[194,139],[197,140],[195,141],[190,142],[196,1],[199,143],[198,144],[207,145],[200,141],[201,146],[202,147],[203,142],[204,148],[212,149],[208,150],[206,151],[205,152],[188,153],[185,154],[214,155],[189,156]],"exportedModulesMap":[[215,1],[219,2],[220,1],[222,3],[223,1],[229,4],[226,5],[225,6],[224,7],[230,5],[231,1],[147,8],[232,1],[237,9],[233,1],[236,10],[234,1],[235,1],[227,7],[238,1],[217,1],[239,1],[216,11],[240,1],[241,1],[242,12],[243,1],[244,13],[146,1],[246,1],[247,14],[245,15],[60,16],[61,16],[63,17],[64,18],[65,19],[66,20],[67,21],[68,22],[69,23],[70,24],[71,25],[72,26],[73,26],[74,27],[75,28],[76,29],[77,30],[62,1],[109,1],[78,31],[79,32],[80,33],[110,34],[81,35],[82,36],[83,37],[84,38],[85,39],[86,40],[87,41],[88,42],[89,43],[90,44],[91,45],[92,46],[94,47],[93,48],[95,49],[96,50],[97,51],[98,52],[99,53],[100,54],[101,55],[102,56],[103,57],[104,58],[105,59],[106,60],[107,61],[108,62],[228,1],[248,63],[250,64],[251,1],[249,1],[221,1],[254,65],[218,15],[279,66],[280,67],[255,68],[258,68],[277,66],[278,66],[268,69],[267,69],[265,66],[260,66],[273,66],[271,66],[275,66],[259,66],[272,66],[276,66],[261,66],[262,66],[274,66],[256,66],[263,66],[264,66],[266,66],[270,66],[281,70],[269,66],[257,66],[294,71],[293,1],[288,70],[290,72],[289,70],[282,70],[283,70],[285,70],[287,70],[291,72],[292,72],[284,72],[286,72],[296,73],[295,1],[297,1],[211,74],[298,7],[253,1],[299,1],[300,1],[301,1],[124,75],[303,76],[302,1],[304,77],[252,15],[135,1],[56,1],[210,1],[11,1],[12,1],[16,1],[15,1],[2,1],[17,1],[18,1],[19,1],[20,1],[21,1],[22,1],[23,1],[24,1],[3,1],[4,1],[28,1],[25,1],[26,1],[27,1],[29,1],[30,1],[31,1],[5,1],[32,1],[33,1],[34,1],[35,1],[6,1],[36,1],[37,1],[38,1],[39,1],[7,1],[44,1],[40,1],[41,1],[42,1],[43,1],[8,1],[48,1],[45,1],[46,1],[47,1],[49,1],[9,1],[50,1],[51,1],[52,1],[1,1],[10,1],[54,1],[53,1],[14,1],[13,1],[151,78],[150,79],[174,80],[168,81],[169,82],[177,83],[163,84],[162,85],[164,86],[165,87],[167,88],[153,89],[170,1],[166,90],[152,91],[176,92],[154,93],[159,94],[155,94],[161,95],[160,96],[156,97],[157,98],[158,94],[175,99],[172,100],[173,101],[171,102],[183,103],[179,104],[180,104],[181,1],[182,105],[178,106],[184,107],[113,108],[144,1],[133,1],[132,1],[59,1],[111,79],[134,109],[115,110],[149,111],[57,112],[142,1],[148,113],[112,114],[114,115],[145,1],[131,1],[141,1],[143,1],[58,116],[137,117],[140,118],[138,119],[139,120],[136,1],[116,1],[117,1],[121,121],[120,122],[118,1],[130,123],[123,124],[122,125],[119,126],[128,127],[129,128],[126,129],[127,130],[125,131],[55,132],[209,133],[193,134],[213,135],[187,136],[186,137],[191,138],[192,139],[194,139],[197,140],[195,141],[190,142],[196,1],[199,143],[198,144],[207,145],[200,141],[201,146],[202,147],[203,142],[204,148],[212,149],[208,150],[206,151],[205,152],[188,153],[185,154],[214,155],[189,156]],"semanticDiagnosticsPerFile":[215,219,220,222,223,229,226,225,224,230,231,147,232,237,233,236,234,235,227,238,217,239,216,240,241,242,243,244,146,246,247,245,60,61,63,64,65,66,67,68,69,70,71,72,73,74,75,76,77,62,109,78,79,80,110,81,82,83,84,85,86,87,88,89,90,91,92,94,93,95,96,97,98,99,100,101,102,103,104,105,106,107,108,228,248,250,251,249,221,254,218,279,280,255,258,277,278,268,267,265,260,273,271,275,259,272,276,261,262,274,256,263,264,266,270,281,269,257,294,293,288,290,289,282,283,285,287,291,292,284,286,296,295,297,211,298,253,299,300,301,124,303,302,304,252,135,56,210,11,12,16,15,2,17,18,19,20,21,22,23,24,3,4,28,25,26,27,29,30,31,5,32,33,34,35,6,36,37,38,39,7,44,40,41,42,43,8,48,45,46,47,49,9,50,51,52,1,10,54,53,14,13,151,150,174,168,169,177,163,162,164,165,167,153,170,166,152,176,154,159,155,161,160,156,157,158,175,172,173,171,183,179,180,181,182,178,184,113,144,133,132,59,111,134,115,149,57,142,148,112,114,145,131,141,143,58,137,140,138,139,136,116,117,121,120,118,130,123,122,119,128,129,126,127,125,55,209,193,213,187,186,191,192,194,197,195,190,196,199,198,207,200,201,202,203,204,212,208,206,205,188,185,214,189]},"version":"4.6.3"}
|