snyk-broker 4.193.3 → 4.193.5
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/dist/lib/client/brokerClientPlugins/abstractBrokerPlugin.js +7 -1
- package/dist/lib/client/brokerClientPlugins/abstractBrokerPlugin.js.map +1 -1
- package/dist/lib/client/brokerClientPlugins/pluginManager.js +7 -3
- package/dist/lib/client/brokerClientPlugins/pluginManager.js.map +1 -1
- package/dist/lib/client/brokerClientPlugins/plugins/githubServerAppAuth.js +54 -42
- package/dist/lib/client/brokerClientPlugins/plugins/githubServerAppAuth.js.map +1 -1
- package/dist/lib/client/routesHandler/systemCheckHandler.js +1 -1
- package/dist/lib/common/config/pluginsConfig.js +14 -0
- package/dist/lib/common/config/pluginsConfig.js.map +1 -0
- package/dist/lib/common/config/universal.js +4 -0
- package/dist/lib/common/config/universal.js.map +1 -1
- package/dist/lib/common/filter/filter-rules-loading.js +10 -3
- package/dist/lib/common/filter/filter-rules-loading.js.map +1 -1
- package/dist/package.json +2 -2
- package/dist/tsconfig.tsbuildinfo +1 -1
- package/package.json +2 -2
|
@@ -1,5 +1,6 @@
|
|
|
1
1
|
"use strict";
|
|
2
2
|
Object.defineProperty(exports, "__esModule", { value: true });
|
|
3
|
+
const pluginsConfig_1 = require("../../common/config/pluginsConfig");
|
|
3
4
|
const request_1 = require("../../common/http/request");
|
|
4
5
|
const logger_1 = require("../../logs/logger");
|
|
5
6
|
class BrokerPlugin {
|
|
@@ -7,6 +8,7 @@ class BrokerPlugin {
|
|
|
7
8
|
this.logger = logger_1.log;
|
|
8
9
|
this.brokerClientConfiguration = brokerClientCfg;
|
|
9
10
|
this.makeRequestToDownstream = request_1.makeRequestToDownstream;
|
|
11
|
+
this.pluginsConfig = (0, pluginsConfig_1.getPluginsConfig)();
|
|
10
12
|
}
|
|
11
13
|
getApplicableTypes() {
|
|
12
14
|
const applicableTypes = [];
|
|
@@ -23,7 +25,11 @@ class BrokerPlugin {
|
|
|
23
25
|
}
|
|
24
26
|
return isDisabled;
|
|
25
27
|
}
|
|
26
|
-
async preRequest(connectionConfiguration, postFilterPreparedRequest) {
|
|
28
|
+
async preRequest(connectionConfiguration, postFilterPreparedRequest, pluginsConfig) {
|
|
29
|
+
logger_1.log.trace({
|
|
30
|
+
connectionConfig: connectionConfiguration,
|
|
31
|
+
pluginsConfig: pluginsConfig,
|
|
32
|
+
}, 'Abstract preRequest Plugin');
|
|
27
33
|
return postFilterPreparedRequest;
|
|
28
34
|
}
|
|
29
35
|
}
|
|
@@ -1 +1 @@
|
|
|
1
|
-
{"version":3,"file":"abstractBrokerPlugin.js","sourceRoot":"","sources":["../../../../lib/client/brokerClientPlugins/abstractBrokerPlugin.ts"],"names":[],"mappings":";;AAAA,uDAGmC;AAEnC,8CAAkD;AAElD,MAA8B,YAAY;
|
|
1
|
+
{"version":3,"file":"abstractBrokerPlugin.js","sourceRoot":"","sources":["../../../../lib/client/brokerClientPlugins/abstractBrokerPlugin.ts"],"names":[],"mappings":";;AAAA,qEAAqE;AACrE,uDAGmC;AAEnC,8CAAkD;AAElD,MAA8B,YAAY;IAgBxC,YAAY,eAAoC;QAC9C,IAAI,CAAC,MAAM,GAAG,YAAM,CAAC;QACrB,IAAI,CAAC,yBAAyB,GAAG,eAAe,CAAC;QACjD,IAAI,CAAC,uBAAuB,GAAG,iCAAuB,CAAC;QACvD,IAAI,CAAC,aAAa,GAAG,IAAA,gCAAgB,GAAE,CAAC;IAC1C,CAAC;IAED,kBAAkB;QAChB,MAAM,eAAe,GAAkB,EAAE,CAAC;QAC1C,IACE,IAAI,CAAC,qBAAqB,CAAC,KAAK,CAAC,CAAC,IAAI,EAAE,EAAE,CACxC,IAAI,CAAC,yBAAyB,CAAC,oBAAoB,CAAC,QAAQ,CAAC,IAAI,CAAC,CACnE,EACD;YACA,eAAe,CAAC,IAAI,CAAC,GAAG,IAAI,CAAC,qBAAqB,CAAC,CAAC;SACrD;QACD,OAAO,eAAe,CAAC;IACzB,CAAC;IACD,UAAU,CAAC,MAAM;QACf,IAAI,UAAU,GAAG,KAAK,CAAC;QACvB,IAAI,MAAM,CAAC,WAAW,IAAI,CAAC,UAAU,SAAS,CAAC,EAAE;YAC/C,YAAM,CAAC,IAAI,CAAC,EAAE,MAAM,EAAE,IAAI,CAAC,UAAU,EAAE,EAAE,iBAAiB,CAAC,CAAC;YAC5D,UAAU,GAAG,IAAI,CAAC;SACnB;QACD,OAAO,UAAU,CAAC;IACpB,CAAC;IAQD,KAAK,CAAC,UAAU,CACd,uBAA4C,EAC5C,yBAAoD,EACpD,aAAmC;QAEnC,YAAM,CAAC,KAAK,CACV;YACE,gBAAgB,EAAE,uBAAuB;YACzC,aAAa,EAAE,aAAa;SAC7B,EACD,4BAA4B,CAC7B,CAAC;QACF,OAAO,yBAAyB,CAAC;IACnC,CAAC;CACF;AA/DD,+BA+DC"}
|
|
@@ -27,6 +27,7 @@ exports.runPreRequestPlugins = exports.runStartupPlugins = exports.loadPlugins =
|
|
|
27
27
|
const promises_1 = require("fs/promises");
|
|
28
28
|
const logger_1 = require("../../logs/logger");
|
|
29
29
|
const fs_1 = require("fs");
|
|
30
|
+
const pluginsConfig_1 = require("../../common/config/pluginsConfig");
|
|
30
31
|
const loadPlugins = async (pluginsFolderPath, clientOpts) => {
|
|
31
32
|
var _a;
|
|
32
33
|
clientOpts.config['plugins'] = new Map();
|
|
@@ -73,18 +74,21 @@ exports.loadPlugins = loadPlugins;
|
|
|
73
74
|
const runStartupPlugins = async (clientOpts, connectionKey) => {
|
|
74
75
|
var _a;
|
|
75
76
|
const loadedPlugins = clientOpts.config.plugins;
|
|
77
|
+
const pluginsConfig = (0, pluginsConfig_1.getPluginsConfig)();
|
|
76
78
|
if (loadedPlugins.has(`${clientOpts.config.connections[connectionKey].type}`)) {
|
|
77
79
|
const pluginInstances = (_a = loadedPlugins.get(`${clientOpts.config.connections[connectionKey].type}`)) !== null && _a !== void 0 ? _a : [];
|
|
78
80
|
for (let i = 0; i < pluginInstances.length; i++) {
|
|
79
|
-
|
|
81
|
+
pluginsConfig[connectionKey] = {};
|
|
82
|
+
await pluginInstances[i].startUp(clientOpts.config.connections[connectionKey], pluginsConfig[connectionKey]);
|
|
80
83
|
}
|
|
81
84
|
}
|
|
82
85
|
};
|
|
83
86
|
exports.runStartupPlugins = runStartupPlugins;
|
|
84
87
|
const runPreRequestPlugins = async (clientOpts, connectionIdentifier, pristinePreRequest) => {
|
|
85
|
-
var _a;
|
|
88
|
+
var _a, _b;
|
|
86
89
|
let preRequest = pristinePreRequest;
|
|
87
90
|
const loadedPlugins = clientOpts.config.plugins;
|
|
91
|
+
const pluginsConfig = (0, pluginsConfig_1.getPluginsConfig)();
|
|
88
92
|
const connectionsKeys = Object.keys(clientOpts.config.connections);
|
|
89
93
|
let connectionKey;
|
|
90
94
|
for (let i = 0; i < connectionsKeys.length; i++) {
|
|
@@ -102,7 +106,7 @@ const runPreRequestPlugins = async (clientOpts, connectionIdentifier, pristinePr
|
|
|
102
106
|
if (loadedPlugins.has(`${clientOpts.config.connections[connectionKey].type}`)) {
|
|
103
107
|
const pluginInstances = (_a = loadedPlugins.get(`${clientOpts.config.connections[connectionKey].type}`)) !== null && _a !== void 0 ? _a : [];
|
|
104
108
|
for (let i = 0; i < pluginInstances.length; i++) {
|
|
105
|
-
preRequest = await pluginInstances[i].preRequest(clientOpts.config.connections[connectionKey], preRequest);
|
|
109
|
+
preRequest = await pluginInstances[i].preRequest(clientOpts.config.connections[connectionKey], preRequest, (_b = pluginsConfig[connectionKey]) !== null && _b !== void 0 ? _b : {});
|
|
106
110
|
}
|
|
107
111
|
}
|
|
108
112
|
return preRequest;
|
|
@@ -1 +1 @@
|
|
|
1
|
-
{"version":3,"file":"pluginManager.js","sourceRoot":"","sources":["../../../../lib/client/brokerClientPlugins/pluginManager.ts"],"names":[],"mappings":";;;;;;;;;;;;;;;;;;;;;;;;;;AAAA,0CAAsC;AACtC,8CAAkD;AAElD,2BAAgC;
|
|
1
|
+
{"version":3,"file":"pluginManager.js","sourceRoot":"","sources":["../../../../lib/client/brokerClientPlugins/pluginManager.ts"],"names":[],"mappings":"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"}
|
|
@@ -11,7 +11,8 @@ const node_crypto_1 = require("node:crypto");
|
|
|
11
11
|
const jsonwebtoken_1 = require("jsonwebtoken");
|
|
12
12
|
const request_1 = require("../../../common/http/request");
|
|
13
13
|
const token_1 = require("../../../common/utils/token");
|
|
14
|
-
const
|
|
14
|
+
const pluginsConfig_1 = require("../../../common/config/pluginsConfig");
|
|
15
|
+
const replace_vars_1 = require("../../../common/utils/replace-vars");
|
|
15
16
|
class Plugin extends abstractBrokerPlugin_1.default {
|
|
16
17
|
constructor() {
|
|
17
18
|
super(...arguments);
|
|
@@ -24,17 +25,6 @@ class Plugin extends abstractBrokerPlugin_1.default {
|
|
|
24
25
|
this.version = '0.1';
|
|
25
26
|
this.applicableBrokerTypes = ['github-server-app']; // Must match broker types
|
|
26
27
|
this.JWT_TTL = 10 * 60 * 1000;
|
|
27
|
-
// Hook to run pre requests operations - Optional. Uncomment to enable
|
|
28
|
-
// async preRequest(
|
|
29
|
-
// connectionConfiguration: Record<string, any>,
|
|
30
|
-
// postFilterPreparedRequest: PostFilterPreparedRequest,
|
|
31
|
-
// ) {
|
|
32
|
-
// this.logger.debug(
|
|
33
|
-
// { plugin: this.pluginName, connection: connectionConfiguration },
|
|
34
|
-
// 'Running prerequest plugin',
|
|
35
|
-
// );
|
|
36
|
-
// return postFilterPreparedRequest;
|
|
37
|
-
// }
|
|
38
28
|
}
|
|
39
29
|
// Provide a way to include specific conditional logic to execute
|
|
40
30
|
isPluginActive() {
|
|
@@ -46,10 +36,16 @@ class Plugin extends abstractBrokerPlugin_1.default {
|
|
|
46
36
|
}
|
|
47
37
|
// Function running upon broker client startup
|
|
48
38
|
// Useful for credentials retrieval, initial setup, etc...
|
|
49
|
-
async startUp(connectionConfig) {
|
|
39
|
+
async startUp(connectionConfig, pluginsConfig) {
|
|
50
40
|
try {
|
|
51
41
|
this.logger.info({ plugin: this.pluginName }, 'Running Startup');
|
|
52
|
-
this.logger.
|
|
42
|
+
this.logger.trace({
|
|
43
|
+
plugin: this.pluginCode,
|
|
44
|
+
config: connectionConfig,
|
|
45
|
+
pluginConfig: pluginsConfig
|
|
46
|
+
? pluginsConfig[connectionConfig.friendlyName]
|
|
47
|
+
: {},
|
|
48
|
+
}, 'Connection Config passed to the plugin');
|
|
53
49
|
if (connectionConfig &&
|
|
54
50
|
(!connectionConfig.GITHUB_APP_CLIENT_ID ||
|
|
55
51
|
!connectionConfig.GITHUB_APP_PRIVATE_PEM_PATH ||
|
|
@@ -64,18 +60,21 @@ class Plugin extends abstractBrokerPlugin_1.default {
|
|
|
64
60
|
}
|
|
65
61
|
// Generate the JWT
|
|
66
62
|
const now = Date.now();
|
|
67
|
-
connectionConfig.JWT_TOKEN =
|
|
68
|
-
|
|
69
|
-
|
|
63
|
+
(0, pluginsConfig_1.getPluginsConfig)()[connectionConfig.friendlyName].JWT_TOKEN =
|
|
64
|
+
this._getJWT(Math.floor(now / 1000), // Current time in seconds
|
|
65
|
+
connectionConfig.GITHUB_APP_PRIVATE_PEM_PATH, connectionConfig.GITHUB_APP_ID);
|
|
66
|
+
if (!(0, pluginsConfig_1.getPluginsConfig)()[connectionConfig.friendlyName].JWT_TOKEN) {
|
|
70
67
|
throw new Error(`GHSA Plugin Error: could not get JWT.`);
|
|
71
68
|
}
|
|
72
69
|
this._setJWTLifecycleHandler(now, connectionConfig);
|
|
73
|
-
|
|
74
|
-
|
|
70
|
+
(0, pluginsConfig_1.getPluginsConfig)()[connectionConfig.friendlyName].ghsaAccessToken =
|
|
71
|
+
await this._getAccessToken(connectionConfig.GITHUB_API, connectionConfig.GITHUB_APP_INSTALLATION_ID, (0, pluginsConfig_1.getPluginsConfig)()[connectionConfig.friendlyName].JWT_TOKEN);
|
|
72
|
+
if (!(0, pluginsConfig_1.getPluginsConfig)()[connectionConfig.friendlyName].ghsaAccessToken) {
|
|
75
73
|
throw new Error(`GHSA Plugin Error: could not get Access Token.`);
|
|
76
74
|
}
|
|
77
|
-
|
|
78
|
-
|
|
75
|
+
(0, pluginsConfig_1.getPluginsConfig)()[connectionConfig.friendlyName].GHSA_ACCESS_TOKEN =
|
|
76
|
+
JSON.parse((0, pluginsConfig_1.getPluginsConfig)()[connectionConfig.friendlyName].ghsaAccessToken).token;
|
|
77
|
+
if ((0, pluginsConfig_1.getPluginsConfig)()[connectionConfig.friendlyName].GHSA_ACCESS_TOKEN) {
|
|
79
78
|
this._setAccessTokenLifecycleHandler(connectionConfig);
|
|
80
79
|
}
|
|
81
80
|
else {
|
|
@@ -101,7 +100,7 @@ class Plugin extends abstractBrokerPlugin_1.default {
|
|
|
101
100
|
}
|
|
102
101
|
_setJWTLifecycleHandler(now, connectionConfig) {
|
|
103
102
|
try {
|
|
104
|
-
if (connectionConfig.JWT_TOKEN) {
|
|
103
|
+
if ((0, pluginsConfig_1.getPluginsConfig)()[connectionConfig.friendlyName].JWT_TOKEN) {
|
|
105
104
|
let timeoutHandlerId;
|
|
106
105
|
let timeoutHandler = async () => { };
|
|
107
106
|
timeoutHandler = async () => {
|
|
@@ -109,16 +108,14 @@ class Plugin extends abstractBrokerPlugin_1.default {
|
|
|
109
108
|
this.logger.debug({ plugin: this.pluginCode }, 'Refreshing github app JWT token');
|
|
110
109
|
clearTimeout(timeoutHandlerId);
|
|
111
110
|
const timeoutHandlerNow = Date.now();
|
|
112
|
-
|
|
113
|
-
cfg.connections[connectionConfig.friendlyName] = connectionConfig;
|
|
114
|
-
cfg.connections[connectionConfig.friendlyName].JWT_TOKEN =
|
|
111
|
+
(0, pluginsConfig_1.getPluginsConfig)()[connectionConfig.friendlyName].JWT_TOKEN =
|
|
115
112
|
await this._getJWT(Math.floor(timeoutHandlerNow / 1000), connectionConfig.GITHUB_APP_PRIVATE_PEM_PATH, connectionConfig.GITHUB_APP_ID);
|
|
116
|
-
if (!
|
|
113
|
+
if (!(0, pluginsConfig_1.getPluginsConfig)()[connectionConfig.friendlyName].JWT_TOKEN) {
|
|
117
114
|
throw new Error(`GHSA Plugin Error: could not refreshed JWT.`);
|
|
118
115
|
}
|
|
119
116
|
if (process.env.NODE_ENV != 'test') {
|
|
120
117
|
timeoutHandlerId = setTimeout(timeoutHandler, this._getTimeDifferenceInMsToFutureDate(timeoutHandlerNow + this.JWT_TTL) - 10000);
|
|
121
|
-
|
|
118
|
+
(0, pluginsConfig_1.getPluginsConfig)()[connectionConfig.friendlyName].jwtTimeoutHandlerId = timeoutHandlerId;
|
|
122
119
|
}
|
|
123
120
|
}
|
|
124
121
|
catch (err) {
|
|
@@ -127,7 +124,8 @@ class Plugin extends abstractBrokerPlugin_1.default {
|
|
|
127
124
|
}
|
|
128
125
|
};
|
|
129
126
|
timeoutHandlerId = setTimeout(timeoutHandler, this._getTimeDifferenceInMsToFutureDate(now + this.JWT_TTL) - 10000);
|
|
130
|
-
connectionConfig.jwtTimeoutHandlerId =
|
|
127
|
+
(0, pluginsConfig_1.getPluginsConfig)()[connectionConfig.friendlyName].jwtTimeoutHandlerId =
|
|
128
|
+
timeoutHandlerId;
|
|
131
129
|
}
|
|
132
130
|
}
|
|
133
131
|
catch (err) {
|
|
@@ -161,31 +159,32 @@ class Plugin extends abstractBrokerPlugin_1.default {
|
|
|
161
159
|
}
|
|
162
160
|
}
|
|
163
161
|
_setAccessTokenLifecycleHandler(connectionConfig) {
|
|
164
|
-
if (connectionConfig.
|
|
162
|
+
if ((0, pluginsConfig_1.getPluginsConfig)()[connectionConfig.friendlyName].ghsaAccessToken) {
|
|
165
163
|
let timeoutHandlerId;
|
|
166
164
|
let timeoutHandler = async () => { };
|
|
167
165
|
timeoutHandler = async () => {
|
|
168
166
|
try {
|
|
169
167
|
this.logger.debug({ plugin: this.pluginCode }, 'Refreshing github app access token');
|
|
170
168
|
clearTimeout(timeoutHandlerId);
|
|
171
|
-
|
|
172
|
-
|
|
173
|
-
|
|
174
|
-
|
|
175
|
-
|
|
176
|
-
JSON.parse(connectionConfig.accessToken).token;
|
|
177
|
-
if (!cfg.connections[connectionConfig.friendlyName].accessToken) {
|
|
169
|
+
(0, pluginsConfig_1.getPluginsConfig)()[connectionConfig.friendlyName].ghsaAccessToken =
|
|
170
|
+
await this._getAccessToken(connectionConfig.GITHUB_API, connectionConfig.GITHUB_APP_INSTALLATION_ID, (0, pluginsConfig_1.getPluginsConfig)()[connectionConfig.friendlyName].JWT_TOKEN);
|
|
171
|
+
(0, pluginsConfig_1.getPluginsConfig)()[connectionConfig.friendlyName].GHSA_ACCESS_TOKEN =
|
|
172
|
+
JSON.parse((0, pluginsConfig_1.getPluginsConfig)()[connectionConfig.friendlyName].ghsaAccessToken).token;
|
|
173
|
+
if (!(0, pluginsConfig_1.getPluginsConfig)()[connectionConfig.friendlyName].ghsaAccessToken) {
|
|
178
174
|
throw new Error(`GHSA Plugin Error: could not get refreshed Access Token.`);
|
|
179
175
|
}
|
|
180
176
|
else {
|
|
181
177
|
this.logger.debug({
|
|
182
|
-
accessToken: (0, token_1.maskSCMToken)(
|
|
178
|
+
accessToken: (0, token_1.maskSCMToken)((0, pluginsConfig_1.getPluginsConfig)()[connectionConfig.friendlyName]
|
|
179
|
+
.GHSA_ACCESS_TOKEN),
|
|
183
180
|
}, `Access token renewed!`);
|
|
184
181
|
}
|
|
185
|
-
this.logger.debug({ plugin: this.pluginCode }, `Refreshed access token expires at ${JSON.parse(
|
|
182
|
+
this.logger.debug({ plugin: this.pluginCode }, `Refreshed access token expires at ${JSON.parse((0, pluginsConfig_1.getPluginsConfig)()[connectionConfig.friendlyName]
|
|
183
|
+
.ghsaAccessToken).expires_at}`);
|
|
186
184
|
if (process.env.NODE_ENV != 'test') {
|
|
187
|
-
timeoutHandlerId = setTimeout(timeoutHandler, this._getTimeDifferenceInMsToFutureDate(JSON.parse(
|
|
188
|
-
|
|
185
|
+
timeoutHandlerId = setTimeout(timeoutHandler, this._getTimeDifferenceInMsToFutureDate(JSON.parse((0, pluginsConfig_1.getPluginsConfig)()[connectionConfig.friendlyName]
|
|
186
|
+
.ghsaAccessToken).expires_at) - 10000);
|
|
187
|
+
(0, pluginsConfig_1.getPluginsConfig)()[connectionConfig.friendlyName].ghsaAccessTokenTimeoutHandlerId = timeoutHandlerId;
|
|
189
188
|
}
|
|
190
189
|
}
|
|
191
190
|
catch (err) {
|
|
@@ -193,8 +192,8 @@ class Plugin extends abstractBrokerPlugin_1.default {
|
|
|
193
192
|
throw err;
|
|
194
193
|
}
|
|
195
194
|
};
|
|
196
|
-
timeoutHandlerId = setTimeout(timeoutHandler, this._getTimeDifferenceInMsToFutureDate(JSON.parse(connectionConfig.
|
|
197
|
-
connectionConfig.
|
|
195
|
+
timeoutHandlerId = setTimeout(timeoutHandler, this._getTimeDifferenceInMsToFutureDate(JSON.parse((0, pluginsConfig_1.getPluginsConfig)()[connectionConfig.friendlyName].ghsaAccessToken).expires_at) - 10000);
|
|
196
|
+
(0, pluginsConfig_1.getPluginsConfig)()[connectionConfig.friendlyName].ghsaAccessTokenTimeoutHandlerId = timeoutHandlerId;
|
|
198
197
|
}
|
|
199
198
|
}
|
|
200
199
|
_getTimeDifferenceInMsToFutureDate(targetDate) {
|
|
@@ -203,6 +202,19 @@ class Plugin extends abstractBrokerPlugin_1.default {
|
|
|
203
202
|
const timeDifference = futureDate.getTime() - currentDate.getTime();
|
|
204
203
|
return timeDifference;
|
|
205
204
|
}
|
|
205
|
+
// Hook to run pre requests operations - Optional. Uncomment to enable
|
|
206
|
+
async preRequest(connectionConfiguration, postFilterPreparedRequest) {
|
|
207
|
+
this.logger.debug({ plugin: this.pluginName, connection: connectionConfiguration }, 'Running prerequest plugin');
|
|
208
|
+
const regexPattern = /\$[A-Za-z0-9_%]+/g;
|
|
209
|
+
const matches = postFilterPreparedRequest.url.match(regexPattern);
|
|
210
|
+
if (matches) {
|
|
211
|
+
for (const pathPart of matches) {
|
|
212
|
+
const source = (0, replace_vars_1.replace)(`${pathPart.replace('$', '${')}}`, connectionConfiguration); // replace the variables
|
|
213
|
+
postFilterPreparedRequest.url = postFilterPreparedRequest.url.replace(pathPart, source);
|
|
214
|
+
}
|
|
215
|
+
}
|
|
216
|
+
return postFilterPreparedRequest;
|
|
217
|
+
}
|
|
206
218
|
}
|
|
207
219
|
exports.Plugin = Plugin;
|
|
208
220
|
//# sourceMappingURL=githubServerAppAuth.js.map
|
|
@@ -1 +1 @@
|
|
|
1
|
-
{"version":3,"file":"githubServerAppAuth.js","sourceRoot":"","sources":["../../../../../lib/client/brokerClientPlugins/plugins/githubServerAppAuth.ts"],"names":[],"mappings":";;;;;;AAAA,oFAAoF;AACpF,qCAAmD;AACnD,mFAAmD;AACnD,6CAA+C;AAC/C,+CAAoC;AAEpC,0DAAuE;AACvE,uDAA2D;AAC3D,
|
|
1
|
+
{"version":3,"file":"githubServerAppAuth.js","sourceRoot":"","sources":["../../../../../lib/client/brokerClientPlugins/plugins/githubServerAppAuth.ts"],"names":[],"mappings":"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"}
|
|
@@ -30,7 +30,7 @@ const systemCheckHandler = async (req, res) => {
|
|
|
30
30
|
}
|
|
31
31
|
validationResults.push(result);
|
|
32
32
|
}
|
|
33
|
-
res.status(isValidationPassing ? 200 : 500).
|
|
33
|
+
res.status(isValidationPassing ? 200 : 500).json(validationResults);
|
|
34
34
|
}
|
|
35
35
|
else {
|
|
36
36
|
const brokerClientValidationMethod = clientOpts.config.brokerClientValidationMethod || 'GET';
|
|
@@ -0,0 +1,14 @@
|
|
|
1
|
+
"use strict";
|
|
2
|
+
Object.defineProperty(exports, "__esModule", { value: true });
|
|
3
|
+
exports.getPluginsConfigByConnectionKey = exports.getPluginsConfig = void 0;
|
|
4
|
+
const pluginsConfig = {};
|
|
5
|
+
const getPluginsConfig = () => {
|
|
6
|
+
return pluginsConfig;
|
|
7
|
+
};
|
|
8
|
+
exports.getPluginsConfig = getPluginsConfig;
|
|
9
|
+
const getPluginsConfigByConnectionKey = (connectionKey) => {
|
|
10
|
+
var _a;
|
|
11
|
+
return (_a = pluginsConfig[connectionKey]) !== null && _a !== void 0 ? _a : {};
|
|
12
|
+
};
|
|
13
|
+
exports.getPluginsConfigByConnectionKey = getPluginsConfigByConnectionKey;
|
|
14
|
+
//# sourceMappingURL=pluginsConfig.js.map
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
{"version":3,"file":"pluginsConfig.js","sourceRoot":"","sources":["../../../../lib/common/config/pluginsConfig.ts"],"names":[],"mappings":";;;AAAA,MAAM,aAAa,GAAwB,EAAE,CAAC;AAEvC,MAAM,gBAAgB,GAAG,GAAG,EAAE;IACnC,OAAO,aAAa,CAAC;AACvB,CAAC,CAAC;AAFW,QAAA,gBAAgB,oBAE3B;AAEK,MAAM,+BAA+B,GAAG,CAAC,aAAqB,EAAE,EAAE;;IACvE,OAAO,MAAA,aAAa,CAAC,aAAa,CAAC,mCAAI,EAAE,CAAC;AAC5C,CAAC,CAAC;AAFW,QAAA,+BAA+B,mCAE1C"}
|
|
@@ -3,6 +3,7 @@ Object.defineProperty(exports, "__esModule", { value: true });
|
|
|
3
3
|
exports.overloadConfigWithConnectionSpecificConfig = exports.getConfigForIdentifier = exports.getValidationConfigForType = exports.getConfigForConnection = exports.getConfigForConnectionsFromConfig = exports.getConfigForConnections = exports.getConfigForType = void 0;
|
|
4
4
|
const logger_1 = require("../../logs/logger");
|
|
5
5
|
const config_1 = require("./config");
|
|
6
|
+
const pluginsConfig_1 = require("./pluginsConfig");
|
|
6
7
|
const getConfigForType = (type) => {
|
|
7
8
|
var _a;
|
|
8
9
|
const config = (0, config_1.getConfig)();
|
|
@@ -61,6 +62,9 @@ const getConfigForIdentifier = (identifier, config) => {
|
|
|
61
62
|
const configToOverload = {
|
|
62
63
|
...(connectionType ? (0, exports.getConfigForType)(connectionType) : {}),
|
|
63
64
|
...(connectionKey ? config.connections[connectionKey] : {}),
|
|
65
|
+
...((0, pluginsConfig_1.getPluginsConfig)() && (0, pluginsConfig_1.getPluginsConfig)()[connectionKey]
|
|
66
|
+
? (0, pluginsConfig_1.getPluginsConfig)()[connectionKey]
|
|
67
|
+
: {}),
|
|
64
68
|
};
|
|
65
69
|
const configOverloaded = (0, config_1.expandPlaceholderValuesInFlatList)(configToOverload, configToOverload);
|
|
66
70
|
return configOverloaded;
|
|
@@ -1 +1 @@
|
|
|
1
|
-
{"version":3,"file":"universal.js","sourceRoot":"","sources":["../../../../lib/common/config/universal.ts"],"names":[],"mappings":";;;AAAA,8CAAkD;AAElD,qCAAwE;
|
|
1
|
+
{"version":3,"file":"universal.js","sourceRoot":"","sources":["../../../../lib/common/config/universal.ts"],"names":[],"mappings":"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"}
|
|
@@ -123,9 +123,9 @@ function injectRulesAtRuntime(filters, config, ruleType) {
|
|
|
123
123
|
.replace('https://${GITHUB_TOKEN}', 'https://pat:${GITHUB_TOKEN}')
|
|
124
124
|
.replace('https://${GITLAB}', 'https://oauth2:${GITLAB_TOKEN}@${GITLAB}');
|
|
125
125
|
if (templateGET.origin == 'https://${GITHUB}' &&
|
|
126
|
-
templateGET.auth.token == '${
|
|
126
|
+
templateGET.auth.token == '${GHSA_ACCESS_TOKEN}') {
|
|
127
127
|
// GHSA case
|
|
128
|
-
templateGET.origin = templateGET.origin.replace('https://${GITHUB}', 'https://x-access-token:${
|
|
128
|
+
templateGET.origin = templateGET.origin.replace('https://${GITHUB}', 'https://x-access-token:${GHSA_ACCESS_TOKEN}@${GITHUB}');
|
|
129
129
|
delete templateGET.auth;
|
|
130
130
|
}
|
|
131
131
|
const templatePOST = nestedCopy(templateGET);
|
|
@@ -133,7 +133,11 @@ function injectRulesAtRuntime(filters, config, ruleType) {
|
|
|
133
133
|
templatePOST['//'] = 'allow git-upload-pack (for git clone)';
|
|
134
134
|
// Code snippets rules
|
|
135
135
|
const templateGETForSnippets = nestedCopy(filters.private.filter((entry) => entry.method === 'GET' &&
|
|
136
|
-
SNIPPETS_CODE_SCM_ORIGINS.filter((origin) => {
|
|
136
|
+
SNIPPETS_CODE_SCM_ORIGINS.filter((origin) => {
|
|
137
|
+
var _a, _b;
|
|
138
|
+
return ((_a = entry.origin) === null || _a === void 0 ? void 0 : _a.includes(`{${origin}}`)) &&
|
|
139
|
+
((_b = entry.auth) === null || _b === void 0 ? void 0 : _b.token) != '${JWT_TOKEN}';
|
|
140
|
+
}).length > 0)[0]);
|
|
137
141
|
templateGETForSnippets['//'] = 'needed to load code snippets';
|
|
138
142
|
switch (scmType) {
|
|
139
143
|
case 'AZURE_REPOS_HOST':
|
|
@@ -146,6 +150,9 @@ function injectRulesAtRuntime(filters, config, ruleType) {
|
|
|
146
150
|
templateGET.path = '*/info/refs*';
|
|
147
151
|
templateGETForSnippets.path = '/repos/:name/:repo/contents/:path';
|
|
148
152
|
templatePOST.path = '*/git-upload-pack';
|
|
153
|
+
// if(templateGETForSnippets.auth && templateGETForSnippets.auth.token && templateGETForSnippets.auth.token === '${JWT_TOKEN}'){
|
|
154
|
+
// templateGETForSnippets.auth.token === '${GHSA_ACCESS_TOKEN}'
|
|
155
|
+
// }
|
|
149
156
|
break;
|
|
150
157
|
case 'GITLAB':
|
|
151
158
|
templateGET.path = '*/info/refs*';
|
|
@@ -1 +1 @@
|
|
|
1
|
-
{"version":3,"file":"filter-rules-loading.js","sourceRoot":"","sources":["../../../../lib/common/filter/filter-rules-loading.ts"],"names":[],"mappings":"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"}
|
|
1
|
+
{"version":3,"file":"filter-rules-loading.js","sourceRoot":"","sources":["../../../../lib/common/filter/filter-rules-loading.ts"],"names":[],"mappings":"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"}
|
package/dist/package.json
CHANGED
|
@@ -62,7 +62,7 @@
|
|
|
62
62
|
"typescript": "^4.9.3"
|
|
63
63
|
},
|
|
64
64
|
"dependencies": {
|
|
65
|
-
"axios": "1.
|
|
65
|
+
"axios": "1.7.4",
|
|
66
66
|
"axios-retry": "^3.9.1",
|
|
67
67
|
"body-parser": "^1.19.0",
|
|
68
68
|
"bunyan": "^1.8.12",
|
|
@@ -123,5 +123,5 @@
|
|
|
123
123
|
"volta": {
|
|
124
124
|
"node": "20.11.0"
|
|
125
125
|
},
|
|
126
|
-
"version": "4.193.
|
|
126
|
+
"version": "4.193.5"
|
|
127
127
|
}
|
|
@@ -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.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.es2019.intl.d.ts","../node_modules/typescript/lib/lib.es2020.bigint.d.ts","../node_modules/typescript/lib/lib.es2020.date.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.es2020.number.d.ts","../node_modules/typescript/lib/lib.esnext.intl.d.ts","../node_modules/typescript/lib/lib.es2019.full.d.ts","../node_modules/@types/node/assert.d.ts","../node_modules/@types/node/assert/strict.d.ts","../node_modules/buffer/index.d.ts","../node_modules/undici-types/header.d.ts","../node_modules/undici-types/readable.d.ts","../node_modules/undici-types/file.d.ts","../node_modules/undici-types/fetch.d.ts","../node_modules/undici-types/formdata.d.ts","../node_modules/undici-types/connector.d.ts","../node_modules/undici-types/client.d.ts","../node_modules/undici-types/errors.d.ts","../node_modules/undici-types/dispatcher.d.ts","../node_modules/undici-types/global-dispatcher.d.ts","../node_modules/undici-types/global-origin.d.ts","../node_modules/undici-types/pool-stats.d.ts","../node_modules/undici-types/pool.d.ts","../node_modules/undici-types/handlers.d.ts","../node_modules/undici-types/balanced-pool.d.ts","../node_modules/undici-types/agent.d.ts","../node_modules/undici-types/mock-interceptor.d.ts","../node_modules/undici-types/mock-agent.d.ts","../node_modules/undici-types/mock-client.d.ts","../node_modules/undici-types/mock-pool.d.ts","../node_modules/undici-types/mock-errors.d.ts","../node_modules/undici-types/proxy-agent.d.ts","../node_modules/undici-types/api.d.ts","../node_modules/undici-types/cookies.d.ts","../node_modules/undici-types/patch.d.ts","../node_modules/undici-types/filereader.d.ts","../node_modules/undici-types/diagnostics-channel.d.ts","../node_modules/undici-types/websocket.d.ts","../node_modules/undici-types/content-type.d.ts","../node_modules/undici-types/cache.d.ts","../node_modules/undici-types/interceptors.d.ts","../node_modules/undici-types/index.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/dom-events.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/readline/promises.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/test.d.ts","../node_modules/@types/node/timers.d.ts","../node_modules/@types/node/timers/promises.d.ts","../node_modules/@types/node/tls.d.ts","../node_modules/@types/node/trace_events.d.ts","../node_modules/@types/node/tty.d.ts","../node_modules/@types/node/url.d.ts","../node_modules/@types/node/util.d.ts","../node_modules/@types/node/v8.d.ts","../node_modules/@types/node/vm.d.ts","../node_modules/@types/node/wasi.d.ts","../node_modules/@types/node/worker_threads.d.ts","../node_modules/@types/node/zlib.d.ts","../node_modules/@types/node/globals.global.d.ts","../node_modules/@types/node/index.d.ts","../node_modules/@types/bunyan/index.d.ts","../node_modules/camelcase/index.d.ts","../node_modules/snyk-config/dist/index.d.ts","../node_modules/dotenv/lib/main.d.ts","../lib/common/config/config.ts","../lib/logs/logger.ts","../lib/common/types/http.ts","../lib/common/types/filter.ts","../lib/common/filter/filter-rules-loading.ts","../lib/client/socketHandlers/reconnectHandler.ts","../lib/client/socketHandlers/identifyHandler.ts","../lib/client/socketHandlers/errorHandler.ts","../lib/common/types/options.ts","../lib/common/utils/token.ts","../lib/client/types/config.ts","../lib/client/checks/types.ts","../lib/client/types/client.ts","../lib/client/socketHandlers/openHandler.ts","../lib/client/socketHandlers/closeHandler.ts","../lib/common/types/log.ts","../lib/common/utils/replace-vars.ts","../package.json","../lib/common/utils/version.ts","../node_modules/@types/global-agent/index.d.ts","../lib/common/http/downstream-post-stream-to-server.ts","../node_modules/prom-client/index.d.ts","../lib/common/utils/metrics.ts","../lib/common/utils/try-json-parse.ts","../lib/client/scm/github/errors.ts","../lib/client/scm/github/types.ts","../lib/client/scm/github/commit.ts","../lib/client/scm/github/tree.ts","../node_modules/@openpgp/web-stream-tools/types/index.v4.9.d.ts","../node_modules/openpgp/openpgp.d.ts","../lib/client/scm/pgp/errors.ts","../lib/client/scm/pgp/types.ts","../lib/client/scm/pgp/sign.ts","../lib/client/scm/types.ts","../lib/client/scm/github/commit-signing-filter-rules.ts","../lib/client/scm/index.ts","../lib/common/config/universal.ts","../lib/common/utils/headers-value-constants.ts","../lib/common/utils/content-length.ts","../lib/common/relay/prepareRequest.ts","../lib/common/http/utils.ts","../lib/common/http/request.ts","../lib/logs/log.ts","../lib/common/utils/json.ts","../lib/common/relay/requestsHelper.ts","../lib/client/brokerClientPlugins/abstractBrokerPlugin.ts","../lib/client/brokerClientPlugins/pluginManager.ts","../lib/common/relay/forwardWebsocketRequest.ts","../lib/client/socketHandlers/requestHandler.ts","../node_modules/@types/mime/index.d.ts","../node_modules/@types/send/index.d.ts","../node_modules/@types/qs/index.d.ts","../node_modules/@types/range-parser/index.d.ts","../node_modules/@types/express-serve-static-core/index.d.ts","../node_modules/@types/http-errors/index.d.ts","../node_modules/@types/serve-static/index.d.ts","../node_modules/@types/connect/index.d.ts","../node_modules/@types/body-parser/index.d.ts","../node_modules/@types/express/index.d.ts","../node_modules/node-cache/index.d.ts","../lib/common/http/server-post-stream-handler.ts","../lib/common/relay/LegacyStreamResponseHandler.ts","../lib/client/socketHandlers/chunkHandler.ts","../lib/client/socketHandlers/init.ts","../lib/client/auth/oauth.ts","../lib/client/dispatcher/dispatcher-service.ts","../lib/client/dispatcher/client/api.ts","../lib/client/dispatcher/index.ts","../lib/client/socket.ts","../lib/common/relay/forwardHttpRequest.ts","../lib/common/http/webserver.ts","../lib/client/retry/exponential-backoff.ts","../lib/client/checks/http/http-executor.ts","../lib/client/checks/http/index.ts","../lib/client/checks/api/checks-handler.ts","../lib/client/utils/socketHelpers.ts","../lib/client/routesHandler/healthcheckHandler.ts","../lib/client/utils/credentials.ts","../lib/client/utils/connectionValidation.ts","../lib/client/routesHandler/systemCheckHandler.ts","../lib/common/utils/urlValidator.ts","../lib/client/checks/config/brokerClientUrlCheck.ts","../lib/client/checks/config/customAcceptFile.ts","../lib/client/checks/config/codeAgentDeprecation.ts","../lib/client/checks/config/universalConnectionConfigCheck.ts","../lib/client/checks/config/brokerClientVersionCheck.ts","../lib/client/checks/config/index.ts","../lib/client/checks/utils.ts","../lib/client/checks/index.ts","../lib/client/config/configHelpers.ts","../lib/client/hooks/startup/processHooks.ts","../lib/common/relay/forwardHttpRequestOverHttp.ts","../node_modules/path-to-regexp/index.d.ts","../lib/common/utils/auth-header.ts","../lib/common/filter/utils.ts","../lib/common/filter/filtersAsync.ts","../lib/client/routesHandler/websocketConnectionMiddlewares.ts","../lib/client/types/api.ts","../lib/client/utils/configurations.ts","../lib/client/config/remoteConfig.ts","../lib/common/utils/signals.ts","../lib/client/utils/cleanup.ts","../lib/client/connectionsManager/validator.ts","../lib/client/connectionsManager/remoteConnectionSync.ts","../lib/client/connectionsManager/connectionHelpers.ts","../lib/client/connectionsManager/mainWatcher.ts","../lib/client/connectionsManager/manager.ts","../lib/client/index.ts","../lib/server/types/socket.ts","../lib/server/socketHandlers/errorHandler.ts","../lib/server/types/token.ts","../lib/server/utils/token.ts","../node_modules/axios/index.d.ts","../node_modules/axios-retry/index.d.ts","../lib/common/http/axios.ts","../lib/server/infra/dispatcher.ts","../lib/server/utils/socket.ts","../lib/server/socketHandlers/initHandlers.ts","../lib/server/socketHandlers/identifyHandler.ts","../lib/server/socketHandlers/closeHandler.ts","../lib/server/socketHandlers/connectionHandler.ts","../lib/server/socket.ts","../node_modules/express-prom-bundle/types/index.d.ts","../lib/server/utils/prometheus-middleware.ts","../lib/server/broker-middleware.ts","../lib/server/routesHandlers/postResponseHandler.ts","../lib/server/routesHandlers/connectionStatusHandler.ts","../lib/server/routesHandlers/httpRequestHandler.ts","../lib/server/index.ts","../lib/index.ts","../lib/client/brokerClientPlugins/plugins/containerRegistryCredentialsFormatting.ts","../node_modules/@types/jsonwebtoken/index.d.ts","../lib/client/brokerClientPlugins/plugins/githubServerAppAuth.ts","../lib/common/http/patch-https-request-for-proxying.ts","../cli/exec.ts","../cli/help.ts","../cli/init.ts","../node_modules/@types/minimist/index.d.ts","../cli/index.ts","../node_modules/@types/accepts/index.d.ts","../node_modules/@babel/types/lib/index.d.ts","../node_modules/@types/babel__generator/index.d.ts","../node_modules/@babel/parser/typings/babel-parser.d.ts","../node_modules/@types/babel__template/index.d.ts","../node_modules/@types/babel__traverse/index.d.ts","../node_modules/@types/babel__core/index.d.ts","../node_modules/@types/content-disposition/index.d.ts","../node_modules/@types/cookie/index.d.ts","../node_modules/@types/cookiejar/index.d.ts","../node_modules/@types/keygrip/index.d.ts","../node_modules/@types/cookies/index.d.ts","../node_modules/@types/cors/index.d.ts","../node_modules/@types/graceful-fs/index.d.ts","../node_modules/@types/http-assert/index.d.ts","../node_modules/@types/istanbul-lib-coverage/index.d.ts","../node_modules/@types/istanbul-lib-report/index.d.ts","../node_modules/@types/istanbul-reports/index.d.ts","../node_modules/@jest/expect-utils/build/index.d.ts","../node_modules/chalk/index.d.ts","../node_modules/pretty-format/node_modules/@sinclair/typebox/typebox.d.ts","../node_modules/pretty-format/node_modules/@jest/schemas/build/index.d.ts","../node_modules/pretty-format/build/index.d.ts","../node_modules/jest-diff/build/index.d.ts","../node_modules/jest-matcher-utils/build/index.d.ts","../node_modules/expect/build/index.d.ts","../node_modules/@types/jest/index.d.ts","../node_modules/@types/json-schema/index.d.ts","../node_modules/@types/koa-compose/index.d.ts","../node_modules/@types/koa/index.d.ts","../node_modules/@types/koa-bodyparser/index.d.ts","../node_modules/@types/koa-router/index.d.ts","../node_modules/@types/methods/index.d.ts","../node_modules/@types/normalize-package-data/index.d.ts","../node_modules/@types/prettier/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/stack-utils/index.d.ts","../node_modules/@types/superagent/lib/agent-base.d.ts","../node_modules/@types/superagent/lib/node/response.d.ts","../node_modules/@types/superagent/types.d.ts","../node_modules/@types/superagent/lib/node/agent.d.ts","../node_modules/@types/superagent/lib/request-base.d.ts","../node_modules/@types/superagent/lib/node/http2wrapper.d.ts","../node_modules/@types/superagent/lib/node/index.d.ts","../node_modules/@types/superagent/index.d.ts","../node_modules/@types/supertest/types.d.ts","../node_modules/@types/supertest/lib/agent.d.ts","../node_modules/@types/supertest/lib/test.d.ts","../node_modules/@types/supertest/index.d.ts","../node_modules/@types/yargs-parser/index.d.ts","../node_modules/@types/yargs/index.d.ts"],"fileInfos":[{"version":"8730f4bf322026ff5229336391a18bcaa1f94d4f82416c8b2f3954e2ccaae2ba","affectsGlobalScope":true},"dc47c4fa66b9b9890cf076304de2a9c5201e94b740cffdf09f87296d877d71f6","7a387c58583dfca701b6c85e0adaf43fb17d590fb16d5b2dc0a2fbd89f35c467","8a12173c586e95f4433e0c6dc446bc88346be73ffe9ca6eec7aa63c8f3dca7f9","5f4e733ced4e129482ae2186aae29fde948ab7182844c3a5a51dd346182c7b06","4b421cbfb3a38a27c279dec1e9112c3d1da296f77a1a85ddadf7e7a425d45d18","1fc5ab7a764205c68fa10d381b08417795fc73111d6dd16b5b1ed36badb743d9",{"version":"3aafcb693fe5b5c3bd277bd4c3a617b53db474fe498fc5df067c5603b1eebde7","affectsGlobalScope":true},{"version":"f3d4da15233e593eacb3965cde7960f3fddf5878528d882bcedd5cbaba0193c7","affectsGlobalScope":true},{"version":"7fac8cb5fc820bc2a59ae11ef1c5b38d3832c6d0dfaec5acdb5569137d09a481","affectsGlobalScope":true},{"version":"097a57355ded99c68e6df1b738990448e0bf170e606707df5a7c0481ff2427cd","affectsGlobalScope":true},{"version":"adb996790133eb33b33aadb9c09f15c2c575e71fb57a62de8bf74dbf59ec7dfb","affectsGlobalScope":true},{"version":"8cc8c5a3bac513368b0157f3d8b31cfdcfe78b56d3724f30f80ed9715e404af8","affectsGlobalScope":true},{"version":"cdccba9a388c2ee3fd6ad4018c640a471a6c060e96f1232062223063b0a5ac6a","affectsGlobalScope":true},{"version":"c5c05907c02476e4bde6b7e76a79ffcd948aedd14b6a8f56e4674221b0417398","affectsGlobalScope":true},{"version":"5f406584aef28a331c36523df688ca3650288d14f39c5d2e555c95f0d2ff8f6f","affectsGlobalScope":true},{"version":"22f230e544b35349cfb3bd9110b6ef37b41c6d6c43c3314a31bd0d9652fcec72","affectsGlobalScope":true},{"version":"7ea0b55f6b315cf9ac2ad622b0a7813315bb6e97bf4bb3fbf8f8affbca7dc695","affectsGlobalScope":true},{"version":"3013574108c36fd3aaca79764002b3717da09725a36a6fc02eac386593110f93","affectsGlobalScope":true},{"version":"eb26de841c52236d8222f87e9e6a235332e0788af8c87a71e9e210314300410a","affectsGlobalScope":true},{"version":"3be5a1453daa63e031d266bf342f3943603873d890ab8b9ada95e22389389006","affectsGlobalScope":true},{"version":"17bb1fc99591b00515502d264fa55dc8370c45c5298f4a5c2083557dccba5a2a","affectsGlobalScope":true},{"version":"7ce9f0bde3307ca1f944119f6365f2d776d281a393b576a18a2f2893a2d75c98","affectsGlobalScope":true},{"version":"6a6b173e739a6a99629a8594bfb294cc7329bfb7b227f12e1f7c11bc163b8577","affectsGlobalScope":true},{"version":"81cac4cbc92c0c839c70f8ffb94eb61e2d32dc1c3cf6d95844ca099463cf37ea","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":"5e5e095c4470c8bab227dbbc61374878ecead104c74ab9960d3adcccfee23205","affectsGlobalScope":true},{"version":"09aa50414b80c023553090e2f53827f007a301bc34b0495bfb2c3c08ab9ad1eb","affectsGlobalScope":true},{"version":"d7f680a43f8cd12a6b6122c07c54ba40952b0c8aa140dcfcf32eb9e6cb028596","affectsGlobalScope":true},{"version":"3787b83e297de7c315d55d4a7c546ae28e5f6c0a361b7a1dcec1f1f50a54ef11","affectsGlobalScope":true},{"version":"e7e8e1d368290e9295ef18ca23f405cf40d5456fa9f20db6373a61ca45f75f40","affectsGlobalScope":true},{"version":"faf0221ae0465363c842ce6aa8a0cbda5d9296940a8e26c86e04cc4081eea21e","affectsGlobalScope":true},{"version":"06393d13ea207a1bfe08ec8d7be562549c5e2da8983f2ee074e00002629d1871","affectsGlobalScope":true},{"version":"2768ef564cfc0689a1b76106c421a2909bdff0acbe87da010785adab80efdd5c","affectsGlobalScope":true},{"version":"b248e32ca52e8f5571390a4142558ae4f203ae2f94d5bac38a3084d529ef4e58","affectsGlobalScope":true},{"version":"52d1bb7ab7a3306fd0375c8bff560feed26ed676a5b0457fa8027b563aecb9a4","affectsGlobalScope":true},"1f03b495671c3a1bd24510f38b8947f0991dfd6bf0278c68eca14af15b306e1f","0b4bc32128fda7bb0752cf284730dd3a817aae04a3d7f92e3b2d54bd61362fe1","7394959e5a741b185456e1ef5d64599c36c60a323207450991e7a42e08911419","8e9c23ba78aabc2e0a27033f18737a6df754067731e69dc5f52823957d60a4b6","5929864ce17fba74232584d90cb721a89b7ad277220627cc97054ba15a98ea8f","7180c03fd3cb6e22f911ce9ba0f8a7008b1a6ddbe88ccf16a9c8140ef9ac1686","25c8056edf4314820382a5fdb4bb7816999acdcb929c8f75e3f39473b87e85bc","54cb85a47d760da1c13c00add10d26b5118280d44d58e6908d8e89abbd9d7725","3e4825171442666d31c845aeb47fcd34b62e14041bb353ae2b874285d78482aa","c6fd2c5a395f2432786c9cb8deb870b9b0e8ff7e22c029954fabdd692bff6195","a967bfe3ad4e62243eb604bf956101e4c740f5921277c60debaf325c1320bf88","e9775e97ac4877aebf963a0289c81abe76d1ec9a2a7778dbe637e5151f25c5f3","471e1da5a78350bc55ef8cef24eb3aca6174143c281b8b214ca2beda51f5e04a","cadc8aced301244057c4e7e73fbcae534b0f5b12a37b150d80e5a45aa4bebcbd","385aab901643aa54e1c36f5ef3107913b10d1b5bb8cbcd933d4263b80a0d7f20","9670d44354bab9d9982eca21945686b5c24a3f893db73c0dae0fd74217a4c219","db3435f3525cd785bf21ec6769bf8da7e8a776be1a99e2e7efb5f244a2ef5fee","c3b170c45fc031db31f782e612adf7314b167e60439d304b49e704010e7bafe5","40383ebef22b943d503c6ce2cb2e060282936b952a01bea5f9f493d5fb487cc7","4893a895ea92c85345017a04ed427cbd6a1710453338df26881a6019432febdd","3a84b7cb891141824bd00ef8a50b6a44596aded4075da937f180c90e362fe5f6","13f6f39e12b1518c6650bbb220c8985999020fe0f21d818e28f512b7771d00f9","9b5369969f6e7175740bf51223112ff209f94ba43ecd3bb09eefff9fd675624a","4fe9e626e7164748e8769bbf74b538e09607f07ed17c2f20af8d680ee49fc1da","24515859bc0b836719105bb6cc3d68255042a9f02a6022b3187948b204946bd2","33203609eba548914dc83ddf6cadbc0bcb6e8ef89f6d648ca0908ae887f9fcc5","0db18c6e78ea846316c012478888f33c11ffadab9efd1cc8bcc12daded7a60b6","89167d696a849fce5ca508032aabfe901c0868f833a8625d5a9c6e861ef935d2","e53a3c2a9f624d90f24bf4588aacd223e7bec1b9d0d479b68d2f4a9e6011147f","339dc5265ee5ed92e536a93a04c4ebbc2128f45eeec6ed29f379e0085283542c","9f0a92164925aa37d4a5d9dd3e0134cff8177208dba55fd2310cd74beea40ee2","8bfdb79bf1a9d435ec48d9372dc93291161f152c0865b81fc0b2694aedb4578d","2e85db9e6fd73cfa3d7f28e0ab6b55417ea18931423bd47b409a96e4a169e8e6","c46e079fe54c76f95c67fb89081b3e399da2c7d109e7dca8e4b58d83e332e605","d32275be3546f252e3ad33976caf8c5e842c09cb87d468cb40d5f4cf092d1acc","4a0c3504813a3289f7fb1115db13967c8e004aa8e4f8a9021b95285502221bd1",{"version":"49026435d21e3d7559d723af3ae48f73ec28f9cba651b41bd2ac991012836122","affectsGlobalScope":true},"39b1a50d543770780b0409a4caacb87f3ff1d510aedfeb7dc06ed44188256f89",{"version":"49c89f8fa09d21c161e6a367448639e032f42d77cc2ec8ab54ecb8fa9a3ad59f","affectsGlobalScope":true},"a5165a41576f42964e810eb02da0be686ae61f3783779d1e5db8faf3da4ad2fb","304504c854c47a55ab4a89111a27a2daf8a3614740bd787cc1f2c51e5574239c",{"version":"95f9129a37dcace36e17b061a8484952586ecfe928c9c8ce526de1a2f4aaefa7","affectsGlobalScope":true},"a40826e8476694e90da94aa008283a7de50d1dafd37beada623863f1901cb7fb","0f9061846236850a872cb44097d071631e93c8749a8b16c191fe3c2a48faede4","e46fa644658c2d6e5c85e954ea76b92c97d63f0851d3ccdab8c2a80d5962aaa9","1c611ff373ce1958aafc40b328048ac2540ba5c7f373cf2897e0d9aeaabe90a0","fd7a7fc2bb1f38ba0cded7bd8088c99033365859e03ba974f7de072e9d989fde","6cf42fc3765241c59339047a45855c506a2f94ee5e734bbded94ddcafc66e4c5","09d6cebdced6aa1181ac1523c8f22a133f5ed80589678b64051f0602f0518374",{"version":"ee1ee365d88c4c6c0c0a5a5701d66ebc27ccd0bcfcfaa482c6e2e7fe7b98edf7","affectsGlobalScope":true},{"version":"7c35691dc3972ff1507d8dd279d833f540973d0917bde22e191cf7a8feaac29f","affectsGlobalScope":true},"62662d7a886e5cfa870685720fd27b763743ca4d2cf29326f75d76606a64eadd","b8c670688bd228d3cc9c169690b09b687188c50ff263a94df63b207701105ad9","d8e16905907111390d5a943816306ae997dfe56476f14142166f8b13ee322eea","8068c911a1c40bc6c5ffc58c625b21d807778f6aa6d63a73e6f04f88bcac5b79","a1dbce56ad5f3a37caafb9033c9d190a199217d673f5fa099c8968d471a2fdaa","c6f77efcc19f51c8759779b6b6ee0d88046c15c15dadac8ffed729a6620daf39",{"version":"089867511b37a534ae71f3d9bc97acc0b925b7f5dbec113f98c4b49224c694eb","affectsGlobalScope":true},"269d0ea3202820c29a32c1f2a357837a4f1918426844f7e7c90af15ec40d1dc1","66432f885e30cf471573de22a5af5eca9ab46b37b122aec98beadf77e9b7df24","323506ce173f7f865f42f493885ee3dacd18db6359ea1141d57676d3781ce10c",{"version":"034e635df3c014df1d6b1110b724ca0c4d2d324b45a84974c7d6931f9cf95ea7","affectsGlobalScope":true},{"version":"87f9456115554cb0f78f098ddbd585096871c19d2d05274c1b1b4ade3151da78","affectsGlobalScope":true},"ea3ab3727cd6c222d94003ecafa30e8550c61eadcdabbf59514aee76e86211a5","d3cdd41693c5ed6bec4f1a1c399d9501372b14bd341bc46eedacf2854c5df5a7","2de7a21c92226fb8abbeed7a0a9bd8aa6d37e4c68a8c7ff7938c644267e9fcc1","6d6070c5c81ba0bfe58988c69e3ba3149fc86421fd383f253aeb071cbf29cd41","da618f0ea09d95c3b51514de43bf97dab008c85bede58aa57cf95e4984c7c957","48a35b181ecf47dbbc0a7ab4b5ba778d91eaa838ba42bf4aaaead42be77ef39a","269929a24b2816343a178008ac9ae9248304d92a8ba8e233055e0ed6dbe6ef71","93452d394fdd1dc551ec62f5042366f011a00d342d36d50793b3529bfc9bd633","5195aeb0de306d1c5ca8033457fbcab5987657112fa6d4971cfeb7644493a369","c5dbf0003bc9f0f643e54cd00a3868d1afe85497fecb56be6f2373dc85102924",{"version":"b446ae935d08a57c3ba4188e82d9fb2c251528ed805ec1f41c20e691c3db6325","affectsGlobalScope":true},{"version":"300f8e9de0b0c3482be3e749462b6ebc3dab8a316801f1da0def94aed0cd2018","affectsGlobalScope":true},"4e228e78c1e9b0a75c70588d59288f63a6258e8b1fe4a67b0c53fe03461421d9","962f105729d5b888c8b70e193f6020ee92c6c8144c827de40f80d65dd188ad7f","ac74e2b754fba690036f8221d978f6debb867462b87af254f24e924b677395d0","80858f6de9af22e53aff221fe3590215ea544c2aeb2cc60cf8e08a9c785c8fef",{"version":"068b8ee5c2cd90d7a50f2efadbbe353cb10196a41189a48bf4b2a867363012b4","affectsGlobalScope":true},{"version":"340659b96782f5813aad6c1f89ea1b83b2f3fa993115c7b30366375d9bae5a4e","affectsGlobalScope":true},"6f44a190351ab5e1811abebe007cf60518044772ccc08244f9f241706afa767f","fecdf44bec4ee9c5188e5f2f58c292c9689c02520900dceaaa6e76594de6da90","cf45d0510b661f1da461479851ff902f188edb111777c37055eff12fa986a23a",{"version":"6a4a80787c57c10b3ea8314c80d9cc6e1deb99d20adca16106a337825f582420","affectsGlobalScope":true},"f2b9440f98d6f94c8105883a2b65aee2fce0248f71f41beafd0a80636f3a565d",{"version":"ab9b9a36e5284fd8d3bf2f7d5fcbc60052f25f27e4d20954782099282c60d23e","affectsGlobalScope":true},"b510d0a18e3db42ac9765d26711083ec1e8b4e21caaca6dc4d25ae6e8623f447","5fb46bf84a85cf5e924e30465b7f919c777a1a03af44ae8c273d2ca229dcfd44","b8e7261f41dd775524077306a69c01796bd5a2a742c7338e6607ff4e689bc356","607d8cd0adda041284326a16e1579d29329d8a1d769859e99ea9dbf23b674539","f634e4c7d5cdba8e092d98098033b311c8ef304038d815c63ffdb9f78f3f7bb7","e4c7833531fd0a6b46a32d570cae6b89310884b4d836e209df7b78e53258969f","a168969b194c810bd6138b1579b6677816618fc9c317ba336dd5359abf9d0afa","b9f515dd1066637030af7e675144ac190e0b410812e66e37496344df056838b1","dba7efbdee28034f915a59aaede4757ec054c5e22ac5d05a35cc9b5bf5ea99f3","3c2233482d1dd2e8e0fb5f3d3679e929de511e5ba00372f2af9e14920c298e0d","cef53ca4c17f6bb85ec755445999ecf8131f65fb9a08d6ab77bbdd16222ceb23","6125f66958e9666a122dec70ef95a6c487be4b0a166117cfde34fc48125b87ae","8b1b89aaf9ce3cfa551f67ecc2ddbf888dea6f13a5e6a9d4cb7cb9cfbe9159a4","d6da4a68707fd50b8b033a11d9a4e56fede7fb611da3bbbcd024d7bb043e5a13","b65b777fcb3d6d9eedaa10bcc333c81a333586c2770ddd270efa87e54232dbbd","9f9722948f56168eedba5e323cfa9f5f72c913f485a080a435ba399debcf1511","bb60e3f14730addd0a1c4552397bf2463a8788571e17c7e27d4f7c5b97a947a9","ced63758336ec135cd82787ce589d00b3fe081226d2cd989da92627f3df48774","ec72140ff1c4533343fc3f42f353c70f4016b2731d1330a6c7100c874c3b8b40","588eeca7e191d06becc548480cb25ebe48ebae727837bdf6f7bcb6691cd83a0b","8a8e9e2412cf232d95d8999dec2fe2ca613a96d6839d14ba2fb2eecad53da730","7f5f299d5f57a95b7428652d97dab8db49990bb04f3740cf1ff693119da47dcf","a3582569a5a4dafb4d53c5d670879b9f33786deefc8535fb5c53137214fc518c","1df1b6fe0621ce05b4123e4ebec8e6c719400a91c6363ba1209f5075a59d6dba","c6a17102f358f82bd8920dd7da8254c70f6bc4faae3eb35c5860a45dc574c234","783afe5266ea760f59dd057bf45cc3e9e568b6b173dcdd8d03ec1a84dad2ccba","b65d766dbda435d2af678edeec7ccf112706ef685f6a20a180e1876dbd4f6b25","61b55647e947d0381055791bfbc75ac1d551da9308d67c03d448c1ecdf4e1141","d5aa318857dc9474f5d34b57903aec06904dcba1a5491f5b453490fd3b9abf1d","6e6f2b759dc3a5a38d20c766e7b820b2b3c263515e2faa0cd8584d701d17e183","c2f0d6f297a0340ea317e5b5d001505fd089db7f1aae226b3d4a868790643f05","ef0c035c127c91e6131ce002546ff1e166d665fd0403b3edf2cacda4e434d15a","428de2f733aac226862f3984ef67271139c12f0361613d8491fd82eb0a9be8ad","c0d72586228b49f84a0ddad39104b9ebfb99379d2f405f4f20942900a19dac9a","aa00c40656919f49a49e048a570f137a17a0c142c02396fedaf87e3690e7c381","9cf1457427c1f91bc91bf85fc05e4d4928869efd14316c43f97816677d82f77a","16b68528d65918e50058b621b5f7b43e16986bda36ee284f007540a91b0c2ce3","9854162d1c9f86702038a30132beee61410c279f3aec75a59372ca05faeb504e","fe4d850923b0082afa13a36e7ca0dfde105d510ec8a7b76167637c28fc793bb1","853b1081cc49b27b260b4956b96358acb673f49494b542f5ddf05d61fe67709c","48f7e457d23e6fa17669dd9ee30eb72a272a90a1496a2833994507fa5a0008d9","66db3b632a828b31bdb7e039ef82c9156dfbcd658c84a3e38711eb774662bce2","665317f83c665f0aff34a481789946ea6d47557103071d3f647b0efab2931586","fd88c9a4df3d86596b4235809bcb9ea5b202f2a462f8b850a7322de651f7f0d2","cf1433b30c168d8658072469d66873be539f8f2c8de4a26c0c2b96abd8467f60","faaffcab2cba111febe15e8fb7fd617f4dcb2a4a3166fdf9db046b5ce3075f0b","1bb98610e84a478ddc0d97514ba35892473f747b2010140e0477bce4f4a5c0f5","1f17fab3c3d156fca17d805a40951972254baed3fe88153b9ada8cb4a9b227ca","48c7c11bb2d7a0c5f11548247a4b7f95fbffb7afa53feacb79c2bebe818aa0cd","2e180800f96a2a1d13df042b61b4fc6bff37a20026b0baeb64c6db8e8a041eea","0f59c6ab0f07069c2a3f0d20f3970f64d3afdf37659f7d5e083fe2183dea037b","85227030647aae2cf29288f18bf987d5e941a9ddbd4bf589f564e1ba527674a1","5c28c6e964c47a0d8a92a6cba159fea53dd7ab25763d4d4c306b6c013ff32da5","1907f136ceda2e9ac6cad5adaf9736015fbe66ec914bcb5f400163a3e4c4dd7c","d3f2d715f57df3f04bf7b16dde01dec10366f64fce44503c92b8f78f614c1769","b78cd10245a90e27e62d0558564f5d9a16576294eee724a59ae21b91f9269e4a","17f0ae35f62a9586cade6c10e5a0d61362257b8e03e661c49ca417e4f3da857d","2f5747b1508ccf83fad0c251ba1e5da2f5a30b78b09ffa1cfaf633045160afed",{"version":"a45c25e77c911c1f2a04cade78f6f42b4d7d896a3882d4e226efd3a3fcd5f2c4","affectsGlobalScope":true},"b71c603a539078a5e3a039b20f2b0a0d1708967530cf97dec8850a9ca45baa2b","0e13570a7e86c6d83dd92e81758a930f63747483e2cd34ef36fcdb47d1f9726a","104c67f0da1bdf0d94865419247e20eded83ce7f9911a1aa75fc675c077ca66e","cc0d0b339f31ce0ab3b7a5b714d8e578ce698f1e13d7f8c60bfb766baeb1d35c","5c45abf1e13e4463eacfd5dedda06855da8748a6a6cb3334f582b52e219acc04","6f4e4e5a046171e70dfb4b1f3e6212de786bf2c1e2c4383ae0e61c4726fdd168","b688e6899b4ba2208e49bef019c759e0b70e9e5da188703e30400c833ba14cb5","3da82ff2c93f53ba71271eeb764af06f156fb63eed56b98c3944fd70a903a949","691b22259686f59c7abadb27fc268196e10a13f57cd1c00da816676ff724189a","6546c54580ed782ac5fa7ce46df2bca3de24859b73cbb005572f7943543a45df","6e29853e9c1183668a5caf27bcc935cd14c624b7d83211ce4629d588b83cb702","b393a5d180dcb9f91762f83f915a775c6acf6aaabf7f0ee3e49de28ae161488c","86eb8aa1e46f50cc53c190507f7c25865eb7692328bfa9d2327d5858b80a31c6","930529d90d690b4d6a430a78206a5abb753f2472f46e56cfb8a9655d7726caaf","8199ea9ad1619fbfba0e01650ab590388fa4e826bb3580c8fd07c902fdd2cc8c","158fb3ab521da0a909249ef6e01758625eab1f7068660fd48a1c61593d19cabf","e747aba72936abe601b70f88e42241ccb52f4ef8cd1dac881a7a99fb4b7bb758","ceebc193b7e71ea9caceb27b75be8ec51b375da9495b4b1bb54142583df679e1","6beab067d249104f7f4436b57ee9031ff9640a3933045f2132f68148779607cc","66f8b3cf8c4e6b43c126aef6e1e69dc40a8cddd34d82857610ba97cf5542c428","e81f88e96194e9c6908c0199b64fa7de53c67227044a9e72d95e1046d007d9a0","54124f504776e46fa2de0d4999f89765cb47975f949f84588b897cbe43865e48","2ad1a1cd994e62ddf71883bf11d644758769a3bfea49396f02027961d51df9e3","b8b1e6141f16b9b5449156e6d34d6bcf6386487239f14fa96ed2108c4f3f65db","a2c02b8d780bc5361bd49f34d47b761d54b8f8309b6ebb9d2f447b80434c61ff","bc16e48a012031f3867b93180b7c04324f437f36b9523fa6c33a5037da1b56f0","2b9442aad20827dfd6923ff5605d6a5ee545a99453f508caa9fccd33bb0eafdd","18bcbb347f6f8d81f4da0f9514fdb3871a20a19f6d0ddf4b8a9bcd204e6cbd79","d08afc34af0e5f4b5d901c40a63fa7277b71edd69414fb2125ef33e6e035dc16","9e959e6654e07ad994ead40643022b8b2edcb4779e29cb035b040cb7294f83e1","94545d314c1c9bf043379392cc9789c27ec772e4853c5624e9f2dd9d2f92804b","0c3b2048b6b3a0f21d6bcf829b43883907d82ba98bf6c07a5f8b19090546b766","22895d407bda0cd9f78435b5d563692d213282675f996dafcf2bbc77c17e7137","893ada0daab97665ca9e9ce67a5929b45acb40aac2be9991ea155785ccd14261","cbf3a941838a1dbd1f3152a256a37b853daa37b6781165ad192305266c8a6972","98ee6bfa7b9db269bb0b974ce0ef5988e3fb77aae6420fec62219ce9d8cf5678","ef72f96cf8df8c6221bab3adf720796a3f9de30ce2a0f7f5152da25b71144078","ce4fd380597a02446bff95c085d5b37951be987a4497300d1b5435633dcc02ad","39d1a0fb9424a8b37327e0dcf9bfbda6455d29c76ee8fab80dd717efaa44ec96","0c6abbd24529fd30358f410da8116260dcb63ca2aa64aeee22c7940fea19d7e0","9c173187aeb9596afb99b80358b8aac22984fbeeb17e00eaf5c73a6522b7b972","6a0b586fe6ec79de42b5c59c280ec05fd8e1ac2804aeb040fc515cfe04c9c025","a5a0aac719c8d3e92066fc90275171a6aefa35a84d03abc232e389dc754958fe","c763fbce96d4a76a0f8c59616559a450a072a7e4615a1bfd8a1c05037b7fc412","53fc83196a856f18cec4da0f6490b31d815d9f2a316b3f325536c52cce930180","56216147d5d5d529f5a400a9138f7b6b4bcb74ce633949a675a256c662729435","012e0f41dcc582d199f83e1062576946800dc966bce75bc2f6df657730586c20","70922b152a19035882114e28ec9c5eba175376e2de8fdfccf794dae02fa89b2f","52c77087613c016f491073114ec6cad393ae144ea240c3012d584c654599b6af","0b27f9a9b0cd4299644ef7aac6e280a96f8f4618277369db287ebb78f503adbe","d71087da3bea779fecaa8946dcb7c0c6b1944a7255113ad98a0d426297970b04","0e966055130d8c789f424e3a647fc2268e9265b8beaebc4bf28aeaec47070f03","935cddb4648a9cfd712e024e0523c105abad8a3672d820e3561c201a12a69ecc","7bb6551fe4a2359d973101729d5affe18297cebfe1447c03cad3b3360fed572e","74b9eebec9649be2c532be99a682c6434bc31d1be11b6e1fecfa5f4bc795ccb6","d3c53904e4258d97ae5b7cd6daad35af0eb46dedae6a10d5620bc51ada00d61d","cab77b3f756e05d96bbc7209af80659200105720385bcdf1bc9585c82afb3349","62899a76679f04094ab88add515bde051a628e7cec38d7554770a628f4508a76","f64487e06875cfbe0cc854328920403df337dc6c1925070995653ac71c266c0e","dfd06b48e69ff4ab95a33fd83ad7eca77567a7c230a9cbf4a47063c04246d858","f218fbb52c1192c386986d985d213cf8ffe29f3fc4b0b0580ad65df6381be48e","35c57738f7982fdfb51f37e6658f71c0994e1bb5857d2ea6f191a0a55aaa3cb4","5ad56a97f84ed672635f498bb0ffc56feb6d6fc02243f39262d849d77cd35bc5","8a087e0e03ba7d4ff15247fa73c1d7de19bac9883398d1fdef64aa567291eb4f","e7b59c0e6c6a541cb0d7b9e43b8c28fb28bed6002f17a00856469ff50dca96fe","18b5a4386e498b26f5dd52eedfd78ef960cceb04a97cfe590ca2a05e19fea5eb","aa9b70eac841498495c926289d5724f05c007826fe5a1b7cf1974faf21bd30cf","b62a829197b673f4904042812ae6e4bbe30a0e14947e7004518b3e22379cae95","89b350d42ac4fdbd15860690647dac82b2cfde1860b14db0dfee4b66ba5fd7b0","9da2ff90ff61041d5b495f13b3273c0b24bba4ef939d1b6718e294cc84ea55cd","799a2be8598de24deb59b1e87a0d592ae8d62c44d8c84e108844d278f650956c","d6b88ebeb395d9198c205fd8e029f2d8bfab8b72df36259344a5168be621b88f","967a4255cb456b4539954206628a147de6aa0a96f5f464d5b324820cfcb5279c","c53ca1d62787c075c05c74387f0c48314ab9dbd6dc586fbe3843b37181e491ac","0845ecf8f8667f9ef434855c1158206d1601ccbe9bf55aef316b804b297a869b","d6c3dda4bfee3d48972b85003b1b9cc025fc4606f51e767d74fa2cb7753999ff","8bbd5bc0b149b01bf9e5b20cc6f593277d90fa0260052441f50c83145e12535d","97e0fc5fb970657971e04cb0c694a4b2318ba30ed3dd7bbb282d2eef3fd26925","3858bf166bb1e2c9f61b90cc87f95e517b552e69319815751813c11eec56cbe4","3c44d055457889f193f78ac947653ec9a8c5660cbee59e26d50422000b76740f","c9f9ba089ac2ded87954c1e947fdc702d239a325b6a4f816f3394cec1f4b5af6","dd2b4ff5479bba121f7312f253bc7776b44dfd08b0905b41b3332192eb19331c","0c9f2c5c6eba7fe142f6c7987b4c4de44cf5671182ca8c424af83989a32706c5","fbca5ffaebf282ec3cdac47b0d1d4a138a8b0bb32105251a38acb235087d3318","c552ba4963c2bd77d84b6bfaf6b9eb0aed9f0dbd55fb4ce663552d05f2b95418","87f287f296f3ff07dbd14ea7853c2400d995dccd7bd83206196d6c0974774e96","55584873eae27c5607725f0a9b2123cdea9100fd47cd4bfd582b567a7c363877","2c8e55457aaf4902941dfdba4061935922e8ee6e120539c9801cd7b400fae050","5f02abbb1b17e3d1e68c5eea14adf4705696e6255e2982b010c0dc2a5417b606","670a76db379b27c8ff42f1ba927828a22862e2ab0b0908e38b671f0e912cc5ed","9e0cf651e8e2c5b9bebbabdff2f7c6f8cedd91b1d9afcc0a854cdff053a88f1b","069bebfee29864e3955378107e243508b163e77ab10de6a5ee03ae06939f0bb9","0504070e7eaba788f5d0d5926782ed177f1db01cee28363c488fae94950c0bbc","117ffeecf6c55e25b6446f449ad079029b5e7317399b0a693858faaaea5ca73e","0dc6940ff35d845686a118ee7384713a84024d60ef26f25a2f87992ec7ddbd64","6847334317c1bc1e6fc4b679b0095bbd2b6ee3b85fe3f26fc26bac462f68ef5e","2224f3072e3cc07906eeed5c71746779511fba2dd224addc5489bcdb489bdee5","3937b50a4de68f6d21614461e9d47af0d8421ca80fc2a72b667ca2151f492120","afe73051ff6a03a9565cbd8ebb0e956ee3df5e913ad5c1ded64218aabfa3dcb5","3f841292a135503a4cc1a9029af59dae135595810cfad5ca62ec1b2ad9846e8e","035a5df183489c2e22f3cf59fc1ed2b043d27f357eecc0eb8d8e840059d44245","a4809f4d92317535e6b22b01019437030077a76fec1d93b9881c9ed4738fcc54","5f53fa0bd22096d2a78533f94e02c899143b8f0f9891a46965294ee8b91a9434","763e521cf114b80e0dd0e21ca49b9f8ae62e8999555a5e7bade8ce36b33001c2","0d14fa22c41fdc7277e6f71473b20ebc07f40f00e38875142335d5b63cdfc9d2","3054ef91b855e005b9c4681399e9d64d2a7b07a22d539314d794f09e53b876a7","ffcc5500e77223169833fc6eb59b3a507944a1f89574e0a1276b0ea7fc22c4a4","22f13de9e2fe5f0f4724797abd3d34a1cdd6e47ef81fc4933fea3b8bf4ad524b","e3ba509d3dce019b3190ceb2f3fc88e2610ab717122dabd91a9efaa37804040d","cda0cb09b995489b7f4c57f168cd31b83dcbaa7aad49612734fb3c9c73f6e4f2","f72f8428f3c1caa22e9c247d046603b85b442c0dae7b77a7a0bc092c18867cb7",{"version":"195f63105abc03e72b6a176e3e34dfb5ac932b55db378fdc7874b1617e24b465","affectsGlobalScope":true},"f3d8c757e148ad968f0d98697987db363070abada5f503da3c06aefd9d4248c1","7e8d3f08435ad2cefe67f58182618bfc9a0a29db08cf2544b94cbcae754a9bd9","8cf9b9045a614f883b623c2f1a631ec6a93321747e933330b2eec0ee47164a34","cee62e64fc4bdfb3798ab8e21486fadd2027ce4128349989acc63905366f91c5","18730c5231e656317c093558b3467d2a3b357ffc45b4e56509c98fce5a775629","b0f9ef6423d6b29dde29fd60d83d215796b2c1b76bfca28ac374ae18702cfb8e","22293bd6fa12747929f8dfca3ec1684a3fe08638aa18023dd286ab337e88a592","429b6df7d7b94389bd42cfdf39bccea903acd3628498cec6172302801fbeac89","cf3d384d082b933d987c4e2fe7bfb8710adfd9dc8155190056ed6695a25a559e","9871b7ee672bc16c78833bdab3052615834b08375cb144e4d2cba74473f4a589","c863198dae89420f3c552b5a03da6ed6d0acfa3807a64772b895db624b0de707","8b03a5e327d7db67112ebbc93b4f744133eda2c1743dbb0a990c61a8007823ef","86c73f2ee1752bac8eeeece234fd05dfcf0637a4fbd8032e4f5f43102faa8eec","42fad1f540271e35ca37cecda12c4ce2eef27f0f5cf0f8dd761d723c744d3159","ff3743a5de32bee10906aff63d1de726f6a7fd6ee2da4b8229054dfa69de2c34","83acd370f7f84f203e71ebba33ba61b7f1291ca027d7f9a662c6307d74e4ac22","1445cec898f90bdd18b2949b9590b3c012f5b7e1804e6e329fb0fe053946d5ec","0e5318ec2275d8da858b541920d9306650ae6ac8012f0e872fe66eb50321a669","cf530297c3fb3a92ec9591dd4fa229d58b5981e45fe6702a0bd2bea53a5e59be","c1f6f7d08d42148ddfe164d36d7aba91f467dbcb3caa715966ff95f55048b3a4","f4e9bf9103191ef3b3612d3ec0044ca4044ca5be27711fe648ada06fad4bcc85","0c1ee27b8f6a00097c2d6d91a21ee4d096ab52c1e28350f6362542b55380059a","7677d5b0db9e020d3017720f853ba18f415219fb3a9597343b1b1012cfd699f7","bc1c6bc119c1784b1a2be6d9c47addec0d83ef0d52c8fbe1f14a51b4dfffc675","52cf2ce99c2a23de70225e252e9822a22b4e0adb82643ab0b710858810e00bf1","770625067bb27a20b9826255a8d47b6b5b0a2d3dfcbd21f89904c731f671ba77","d1ed6765f4d7906a05968fb5cd6d1db8afa14dbe512a4884e8ea5c0f5e142c80","799c0f1b07c092626cf1efd71d459997635911bb5f7fc1196efe449bba87e965","2a184e4462b9914a30b1b5c41cf80c6d3428f17b20d3afb711fff3f0644001fd","9eabde32a3aa5d80de34af2c2206cdc3ee094c6504a8d0c2d6d20c7c179503cc","397c8051b6cfcb48aa22656f0faca2553c5f56187262135162ee79d2b2f6c966","a8ead142e0c87dcd5dc130eba1f8eeed506b08952d905c47621dc2f583b1bff9","a02f10ea5f73130efca046429254a4e3c06b5475baecc8f7b99a0014731be8b3","c2576a4083232b0e2d9bd06875dd43d371dee2e090325a9eac0133fd5650c1cb","4c9a0564bb317349de6a24eb4efea8bb79898fa72ad63a1809165f5bd42970dd","f40ac11d8859092d20f953aae14ba967282c3bb056431a37fced1866ec7a2681","cc11e9e79d4746cc59e0e17473a59d6f104692fd0eeea1bdb2e206eabed83b03","b444a410d34fb5e98aa5ee2b381362044f4884652e8bc8a11c8fe14bbd85518e","c35808c1f5e16d2c571aa65067e3cb95afeff843b259ecfa2fc107a9519b5392","14d5dc055143e941c8743c6a21fa459f961cbc3deedf1bfe47b11587ca4b3ef5","a3ad4e1fc542751005267d50a6298e6765928c0c3a8dce1572f2ba6ca518661c","f237e7c97a3a89f4591afd49ecb3bd8d14f51a1c4adc8fcae3430febedff5eb6","3ffdfbec93b7aed71082af62b8c3e0cc71261cc68d796665faa1e91604fbae8f","662201f943ed45b1ad600d03a90dffe20841e725203ced8b708c91fcd7f9379a","c9ef74c64ed051ea5b958621e7fb853fe3b56e8787c1587aefc6ea988b3c7e79","2462ccfac5f3375794b861abaa81da380f1bbd9401de59ffa43119a0b644253d","34baf65cfee92f110d6653322e2120c2d368ee64b3c7981dff08ed105c4f19b0","7d8ddf0f021c53099e34ee831a06c394d50371816caa98684812f089b4c6b3d4","ab82804a14454734010dcdcd43f564ff7b0389bee4c5692eec76ff5b30d4cf66","e7bb49fac2aa46a13011b5eb5e4a8648f70a28aea1853fab2444dd4fcb4d4ec7","464e45d1a56dae066d7e1a2f32e55b8de4bfb072610c3483a4091d73c9924908","da318e126ac39362c899829547cc8ee24fa3e8328b52cdd27e34173cf19c7941","24bd01a91f187b22456c7171c07dbf44f3ad57ebd50735aab5c13fa23d7114b4","4738eefeaaba4d4288a08c1c226a76086095a4d5bcc7826d2564e7c29da47671","dbec715e9e82df297e49e3ed0029f6151aa40517ebfd6fcdba277a8a2e1d3a1b","08b6b541f10f76945355801526f76c376ae426054257af9b0d62058ca01e133e","8f75e211a2e83ff216eb66330790fb6412dcda2feb60c4f165c903cf375633ee","5adcc724bcfdac3c86ace088e93e1ee605cbe986be5e63ddf04d05b4afdeee71","a9155c6deffc2f6a69e69dc12f0950ba1b4db03b3d26ab7a523efc89149ce979","c99faf0d7cb755b0424a743ea0cbf195606bf6cd023b5d10082dba8d3714673c","21942c5a654cc18ffc2e1e063c8328aca3b127bbf259c4e97906d4696e3fa915","bae8d023ef6b23df7da26f51cea44321f95817c190342a36882e93b80d07a960","5d30d04a14ed8527ac5d654dc345a4db11b593334c11a65efb6e4facc5484a0e"],"options":{"alwaysStrict":false,"esModuleInterop":true,"module":199,"noImplicitAny":false,"noUnusedLocals":true,"outDir":"./","sourceMap":true,"strict":true,"target":6},"fileIdsList":[[267],[272,273,274,275],[97,106,139],[139,177,179],[97,98,139,177,183],[183],[89,97,138,147,177,179,183,269],[139,148,149,196,211],[139,148,149,156,179,209,218],[149,156,177,179],[148,149],[148,149,219,220,221,222,223],[148,149,174],[139,149,156,179,209],[148,149,210],[139,148,149,211,224,225],[148],[138,139,148,150],[97,146,177,179,235,236],[150],[139,146,150,184,206,238,241,242],[97,138,139,146,150,202,227,228,237,238,239,240,243],[138,146,227,237,240],[97,139],[139,177,179,203],[139,147,203,204],[139,146,149,150,173,205,226,227],[138,139,146,150,156,184,206,207,208,212,213,214,217,227,228,229,233,234,244],[139],[147,150,156,196,213],[138,139,146,150,174,196,215,216],[138,139,150,196,213],[171],[139,162,163],[139,148,164,165,170,171,172],[167,168,169],[139,143,144,145,146,147,150,151,152,186,200,201,202,205],[199],[139,146],[146,186],[139,146,147,150],[140,146,185],[141,149],[97,138],[139,148,156,177,179],[139,156,179,181],[97,106,135,136,137,139],[138,139,148],[97,106,135,138,139,141],[106,139,140,141,154,161,174,189,230,231,232],[139,250,251],[99,101,114,115,138,139,154,156,157],[101,125,138],[99,101,138,139,157,177,178],[114,138,160,196,197],[97,99,101,139,147,195,196],[139,160,198],[114,139,141,146,153,160,196,198],[139,141,146,147,153,160,179,196],[139,140,141,146,147,150,153,158,160,175,176,177,182,184],[125,139,141,154,156,161,173,174,175,176],[139,154,177,179,180,181],[140],[141],[138,154],[175],[159],[89],[155],[138,139,141,142,245,266],[134,138],[138,139,196],[139,146,156,208,233,253,255,259,261,262,263,264,265],[138,139,147,252],[105,139,177,179,196,249,259],[105,125,139,160,177,179,196,249,259],[139,160,196,198,249],[146,246,247,255,258],[139,160,249,253,259],[139,247,249,256,257],[139,160,199,249,253,254,255,259],[146,185,207,256],[196,260],[147,248],[278],[99,133],[278,279,280,281,282],[278,280],[99,133,194],[96,133],[99,133,194,196,287],[96,99,133,188,189,190],[189,191,193,195],[97,133],[292],[293],[299,302],[89,133],[306],[83,96,99,100,104,110,125,133,192,277,284,287,288,291,305],[47],[83],[84,89,117],[85,96,97,104,114,125],[85,86,96,104],[87,126],[88,89,97,105],[89,114,122],[90,92,96,104],[83,91],[92,93],[96],[94,96],[83,96],[96,97,98,114,125],[96,97,98,111,114,117],[81,130],[92,96,99,104,114,125],[96,97,99,100,104,114,122,125],[99,101,114,122,125],[47,48,82,83,84,85,86,87,88,89,90,91,92,93,94,95,96,97,98,99,100,101,102,103,104,105,106,107,108,109,110,111,112,113,114,115,116,117,118,119,120,121,122,123,124,125,126,127,128,129,130,131,132],[96,102],[103,125,130],[92,96,104,114],[105],[106],[83,107],[108,124,130],[109],[110],[96,111,112],[111,113,126,128],[84,96,114,115,116,117],[84,114,116],[114,115],[117],[118],[83,114],[96,120,121],[120,121],[89,104,114,122],[123],[104,124],[84,99,110,125],[89,126],[114,127],[103,128],[129],[84,89,96,98,107,114,125,128,130],[114,131],[312,351],[312,336,351],[351],[312],[312,337,351],[312,313,314,315,316,317,318,319,320,321,322,323,324,325,326,327,328,329,330,331,332,333,334,335,336,337,338,339,340,341,342,343,344,345,346,347,348,349,350],[337,351],[97,114,133,187],[99,133,188,192],[359],[286,309,353,355,360],[100,104,114,122,133],[84,97,99,100,101,104,114,309,354,355,356,357,358],[99,114,359],[84,97,354,355],[125,354],[360,361,362,363],[360,361,364],[360,361],[99,100,104,309,360],[365],[250,251],[125,133],[295,301],[159,196],[299],[296,300],[166],[298],[297],[58,62,125],[58,114,125],[53],[55,58,122,125],[104,122],[133],[53,133],[55,58,104,125],[50,51,54,57,84,96,114,125],[50,56],[54,58,84,117,125,133],[84,133],[74,84,133],[52,53,133],[58],[52,53,54,55,56,57,58,59,60,62,63,64,65,66,67,68,69,70,71,72,73,75,76,77,78,79,80],[58,65,66],[56,58,66,67],[57],[50,53,58],[58,62,66,67],[62],[56,58,61,125],[50,55,56,58,62,65],[84,114],[53,58,74,84,130,133]],"referencedMap":[[272,1],[276,2],[274,3],[202,4],[183,4],[184,5],[268,6],[270,7],[212,8],[219,9],[223,10],[221,11],[220,11],[224,12],[222,13],[210,14],[211,15],[226,16],[149,17],[227,18],[237,19],[242,20],[243,21],[244,22],[241,23],[240,24],[204,25],[205,26],[228,27],[245,28],[209,29],[214,30],[217,31],[234,32],[172,33],[164,34],[165,34],[173,35],[170,36],[206,37],[200,38],[152,39],[145,29],[201,40],[151,41],[143,29],[186,42],[235,17],[150,43],[239,44],[216,45],[215,46],[138,47],[174,48],[142,49],[233,50],[252,51],[158,52],[271,53],[179,54],[198,55],[178,29],[208,56],[199,57],[207,58],[229,59],[185,60],[177,61],[182,62],[141,63],[146,64],[231,65],[176,66],[160,67],[147,68],[218,29],[156,69],[267,70],[180,29],[139,71],[262,72],[266,73],[253,74],[264,75],[265,76],[263,77],[259,78],[257,79],[258,80],[247,29],[256,81],[255,82],[261,83],[249,84],[280,85],[277,86],[283,87],[279,85],[281,88],[282,85],[195,89],[134,90],[194,86],[288,91],[289,86],[191,92],[196,93],[290,94],[293,95],[294,96],[303,97],[269,98],[307,99],[305,99],[308,99],[306,100],[47,101],[48,101],[83,102],[84,103],[85,104],[86,105],[87,106],[88,107],[89,108],[90,109],[91,110],[92,111],[93,111],[95,112],[94,113],[96,114],[97,115],[98,116],[82,117],[99,118],[100,119],[101,120],[133,121],[102,122],[103,123],[104,124],[105,125],[106,126],[107,127],[108,128],[109,129],[110,130],[111,131],[112,131],[113,132],[114,133],[116,134],[115,135],[117,136],[118,137],[119,138],[120,139],[121,140],[122,141],[123,142],[124,143],[125,144],[126,145],[127,146],[128,147],[129,148],[130,149],[131,150],[336,151],[337,152],[312,153],[315,153],[334,151],[335,151],[325,151],[324,154],[322,151],[317,151],[330,151],[328,151],[332,151],[316,151],[329,151],[333,151],[318,151],[319,151],[331,151],[313,151],[320,151],[321,151],[323,151],[327,151],[338,155],[326,151],[314,151],[351,156],[345,155],[347,157],[346,155],[339,155],[340,155],[342,155],[344,155],[348,157],[349,157],[341,157],[343,157],[188,158],[193,159],[360,160],[356,161],[358,162],[359,163],[354,164],[357,165],[355,166],[364,167],[362,168],[363,169],[361,170],[366,171],[251,172],[137,173],[302,174],[260,175],[300,176],[301,177],[197,90],[167,178],[299,179],[298,180],[65,181],[72,182],[64,181],[79,183],[56,184],[55,185],[78,186],[73,187],[76,188],[58,189],[57,190],[53,191],[52,192],[75,193],[54,194],[59,195],[63,195],[81,196],[80,195],[67,197],[68,198],[70,199],[66,200],[69,201],[74,186],[61,202],[62,203],[71,204],[51,205],[77,206]],"exportedModulesMap":[[272,1],[276,2],[274,3],[202,4],[183,4],[184,5],[268,6],[270,7],[212,8],[219,9],[223,10],[221,11],[220,11],[224,12],[222,13],[210,14],[211,15],[226,16],[149,17],[227,18],[237,19],[242,20],[243,21],[244,22],[241,23],[240,24],[204,25],[205,26],[228,27],[245,28],[209,29],[214,30],[217,31],[234,32],[172,33],[164,34],[165,34],[173,35],[170,36],[206,37],[200,38],[152,39],[145,29],[201,40],[151,41],[143,29],[186,42],[235,17],[150,43],[239,44],[216,45],[215,46],[138,47],[174,48],[142,49],[233,50],[252,51],[158,52],[271,53],[179,54],[198,55],[178,29],[208,56],[199,57],[207,58],[229,59],[185,60],[177,61],[182,62],[141,63],[146,64],[231,65],[176,66],[160,67],[147,68],[218,29],[156,69],[267,70],[180,29],[139,71],[262,72],[266,73],[253,74],[264,75],[265,76],[263,77],[259,78],[257,79],[258,80],[247,29],[256,81],[255,82],[261,83],[249,84],[280,85],[277,86],[283,87],[279,85],[281,88],[282,85],[195,89],[134,90],[194,86],[288,91],[289,86],[191,92],[196,93],[290,94],[293,95],[294,96],[303,97],[269,98],[307,99],[305,99],[308,99],[306,100],[47,101],[48,101],[83,102],[84,103],[85,104],[86,105],[87,106],[88,107],[89,108],[90,109],[91,110],[92,111],[93,111],[95,112],[94,113],[96,114],[97,115],[98,116],[82,117],[99,118],[100,119],[101,120],[133,121],[102,122],[103,123],[104,124],[105,125],[106,126],[107,127],[108,128],[109,129],[110,130],[111,131],[112,131],[113,132],[114,133],[116,134],[115,135],[117,136],[118,137],[119,138],[120,139],[121,140],[122,141],[123,142],[124,143],[125,144],[126,145],[127,146],[128,147],[129,148],[130,149],[131,150],[336,151],[337,152],[312,153],[315,153],[334,151],[335,151],[325,151],[324,154],[322,151],[317,151],[330,151],[328,151],[332,151],[316,151],[329,151],[333,151],[318,151],[319,151],[331,151],[313,151],[320,151],[321,151],[323,151],[327,151],[338,155],[326,151],[314,151],[351,156],[345,155],[347,157],[346,155],[339,155],[340,155],[342,155],[344,155],[348,157],[349,157],[341,157],[343,157],[188,158],[193,159],[360,160],[356,161],[358,162],[359,163],[354,164],[357,165],[355,166],[364,167],[362,168],[363,169],[361,170],[366,171],[251,172],[137,173],[302,174],[260,175],[300,176],[301,177],[197,90],[167,178],[299,179],[298,180],[65,181],[72,182],[64,181],[79,183],[56,184],[55,185],[78,186],[73,187],[76,188],[58,189],[57,190],[53,191],[52,192],[75,193],[54,194],[59,195],[63,195],[81,196],[80,195],[67,197],[68,198],[70,199],[66,200],[69,201],[74,186],[61,202],[62,203],[71,204],[51,205],[77,206]],"semanticDiagnosticsPerFile":[272,273,276,274,202,183,184,268,270,212,219,223,221,220,224,222,210,211,226,149,225,227,237,242,243,244,241,240,204,203,205,228,245,209,214,217,234,172,164,162,165,163,173,168,170,169,171,206,200,152,145,144,201,151,143,186,235,150,148,239,236,216,215,213,138,174,142,233,232,252,158,271,179,198,178,208,199,207,229,185,177,182,141,140,153,146,231,176,175,181,160,154,238,147,161,218,156,267,180,139,262,266,253,264,265,263,259,257,258,247,256,255,246,248,261,254,249,280,278,295,166,277,283,279,281,282,195,134,194,284,285,286,288,289,191,196,157,290,291,192,292,293,294,303,304,269,287,307,305,308,306,309,187,275,47,48,83,84,85,86,87,88,89,90,91,92,93,95,94,96,97,98,82,132,99,100,101,133,102,103,104,105,106,107,108,109,110,111,112,113,114,116,115,117,118,119,120,121,122,123,124,125,126,127,128,129,130,131,310,311,189,190,336,337,312,315,334,335,325,324,322,317,330,328,332,316,329,333,318,319,331,313,320,321,323,327,338,326,314,351,350,345,347,346,339,340,342,344,348,349,341,343,188,193,352,360,353,356,358,359,354,357,355,364,362,363,361,365,366,251,250,49,135,296,137,302,260,300,301,197,167,230,299,298,297,159,136,8,9,13,12,2,14,15,16,17,18,19,20,21,3,4,25,22,23,24,26,27,28,5,29,30,31,32,6,46,36,33,34,35,37,7,38,43,44,39,40,41,42,1,45,11,10,65,72,64,79,56,55,78,73,76,58,57,53,52,75,54,59,60,63,50,81,80,67,68,70,66,69,74,61,62,71,51,77,155]},"version":"4.9.5"}
|
|
1
|
+
{"program":{"fileNames":["../node_modules/typescript/lib/lib.es5.d.ts","../node_modules/typescript/lib/lib.es2015.d.ts","../node_modules/typescript/lib/lib.es2016.d.ts","../node_modules/typescript/lib/lib.es2017.d.ts","../node_modules/typescript/lib/lib.es2018.d.ts","../node_modules/typescript/lib/lib.es2019.d.ts","../node_modules/typescript/lib/lib.es2020.d.ts","../node_modules/typescript/lib/lib.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.es2019.intl.d.ts","../node_modules/typescript/lib/lib.es2020.bigint.d.ts","../node_modules/typescript/lib/lib.es2020.date.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.es2020.number.d.ts","../node_modules/typescript/lib/lib.esnext.intl.d.ts","../node_modules/typescript/lib/lib.es2019.full.d.ts","../node_modules/@types/node/assert.d.ts","../node_modules/@types/node/assert/strict.d.ts","../node_modules/buffer/index.d.ts","../node_modules/undici-types/header.d.ts","../node_modules/undici-types/readable.d.ts","../node_modules/undici-types/file.d.ts","../node_modules/undici-types/fetch.d.ts","../node_modules/undici-types/formdata.d.ts","../node_modules/undici-types/connector.d.ts","../node_modules/undici-types/client.d.ts","../node_modules/undici-types/errors.d.ts","../node_modules/undici-types/dispatcher.d.ts","../node_modules/undici-types/global-dispatcher.d.ts","../node_modules/undici-types/global-origin.d.ts","../node_modules/undici-types/pool-stats.d.ts","../node_modules/undici-types/pool.d.ts","../node_modules/undici-types/handlers.d.ts","../node_modules/undici-types/balanced-pool.d.ts","../node_modules/undici-types/agent.d.ts","../node_modules/undici-types/mock-interceptor.d.ts","../node_modules/undici-types/mock-agent.d.ts","../node_modules/undici-types/mock-client.d.ts","../node_modules/undici-types/mock-pool.d.ts","../node_modules/undici-types/mock-errors.d.ts","../node_modules/undici-types/proxy-agent.d.ts","../node_modules/undici-types/api.d.ts","../node_modules/undici-types/cookies.d.ts","../node_modules/undici-types/patch.d.ts","../node_modules/undici-types/filereader.d.ts","../node_modules/undici-types/diagnostics-channel.d.ts","../node_modules/undici-types/websocket.d.ts","../node_modules/undici-types/content-type.d.ts","../node_modules/undici-types/cache.d.ts","../node_modules/undici-types/interceptors.d.ts","../node_modules/undici-types/index.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/dom-events.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/readline/promises.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/test.d.ts","../node_modules/@types/node/timers.d.ts","../node_modules/@types/node/timers/promises.d.ts","../node_modules/@types/node/tls.d.ts","../node_modules/@types/node/trace_events.d.ts","../node_modules/@types/node/tty.d.ts","../node_modules/@types/node/url.d.ts","../node_modules/@types/node/util.d.ts","../node_modules/@types/node/v8.d.ts","../node_modules/@types/node/vm.d.ts","../node_modules/@types/node/wasi.d.ts","../node_modules/@types/node/worker_threads.d.ts","../node_modules/@types/node/zlib.d.ts","../node_modules/@types/node/globals.global.d.ts","../node_modules/@types/node/index.d.ts","../node_modules/@types/bunyan/index.d.ts","../node_modules/camelcase/index.d.ts","../node_modules/snyk-config/dist/index.d.ts","../node_modules/dotenv/lib/main.d.ts","../lib/common/config/config.ts","../lib/logs/logger.ts","../lib/common/types/http.ts","../lib/common/types/filter.ts","../lib/common/filter/filter-rules-loading.ts","../lib/client/socketHandlers/reconnectHandler.ts","../lib/client/socketHandlers/identifyHandler.ts","../lib/client/socketHandlers/errorHandler.ts","../lib/common/types/options.ts","../lib/common/utils/token.ts","../lib/client/types/config.ts","../lib/client/checks/types.ts","../lib/client/types/client.ts","../lib/client/socketHandlers/openHandler.ts","../lib/client/socketHandlers/closeHandler.ts","../lib/common/types/log.ts","../lib/common/utils/replace-vars.ts","../package.json","../lib/common/utils/version.ts","../node_modules/@types/global-agent/index.d.ts","../lib/common/http/downstream-post-stream-to-server.ts","../node_modules/prom-client/index.d.ts","../lib/common/utils/metrics.ts","../lib/common/utils/try-json-parse.ts","../lib/client/scm/github/errors.ts","../lib/client/scm/github/types.ts","../lib/client/scm/github/commit.ts","../lib/client/scm/github/tree.ts","../node_modules/@openpgp/web-stream-tools/types/index.v4.9.d.ts","../node_modules/openpgp/openpgp.d.ts","../lib/client/scm/pgp/errors.ts","../lib/client/scm/pgp/types.ts","../lib/client/scm/pgp/sign.ts","../lib/client/scm/types.ts","../lib/client/scm/github/commit-signing-filter-rules.ts","../lib/client/scm/index.ts","../lib/common/config/pluginsConfig.ts","../lib/common/config/universal.ts","../lib/common/utils/headers-value-constants.ts","../lib/common/utils/content-length.ts","../lib/common/relay/prepareRequest.ts","../lib/common/http/utils.ts","../lib/common/http/request.ts","../lib/logs/log.ts","../lib/common/utils/json.ts","../lib/common/relay/requestsHelper.ts","../lib/client/brokerClientPlugins/abstractBrokerPlugin.ts","../lib/client/brokerClientPlugins/pluginManager.ts","../lib/common/relay/forwardWebsocketRequest.ts","../lib/client/socketHandlers/requestHandler.ts","../node_modules/@types/mime/index.d.ts","../node_modules/@types/send/index.d.ts","../node_modules/@types/qs/index.d.ts","../node_modules/@types/range-parser/index.d.ts","../node_modules/@types/express-serve-static-core/index.d.ts","../node_modules/@types/http-errors/index.d.ts","../node_modules/@types/serve-static/index.d.ts","../node_modules/@types/connect/index.d.ts","../node_modules/@types/body-parser/index.d.ts","../node_modules/@types/express/index.d.ts","../node_modules/node-cache/index.d.ts","../lib/common/http/server-post-stream-handler.ts","../lib/common/relay/LegacyStreamResponseHandler.ts","../lib/client/socketHandlers/chunkHandler.ts","../lib/client/socketHandlers/init.ts","../lib/client/auth/oauth.ts","../lib/client/dispatcher/dispatcher-service.ts","../lib/client/dispatcher/client/api.ts","../lib/client/dispatcher/index.ts","../lib/client/socket.ts","../lib/common/relay/forwardHttpRequest.ts","../lib/common/http/webserver.ts","../lib/client/retry/exponential-backoff.ts","../lib/client/checks/http/http-executor.ts","../lib/client/checks/http/index.ts","../lib/client/checks/api/checks-handler.ts","../lib/client/utils/socketHelpers.ts","../lib/client/routesHandler/healthcheckHandler.ts","../lib/client/utils/credentials.ts","../lib/client/utils/connectionValidation.ts","../lib/client/routesHandler/systemCheckHandler.ts","../lib/common/utils/urlValidator.ts","../lib/client/checks/config/brokerClientUrlCheck.ts","../lib/client/checks/config/customAcceptFile.ts","../lib/client/checks/config/codeAgentDeprecation.ts","../lib/client/checks/config/universalConnectionConfigCheck.ts","../lib/client/checks/config/brokerClientVersionCheck.ts","../lib/client/checks/config/index.ts","../lib/client/checks/utils.ts","../lib/client/checks/index.ts","../lib/client/config/configHelpers.ts","../lib/client/hooks/startup/processHooks.ts","../lib/common/relay/forwardHttpRequestOverHttp.ts","../node_modules/path-to-regexp/index.d.ts","../lib/common/utils/auth-header.ts","../lib/common/filter/utils.ts","../lib/common/filter/filtersAsync.ts","../lib/client/routesHandler/websocketConnectionMiddlewares.ts","../lib/client/types/api.ts","../lib/client/utils/configurations.ts","../lib/client/config/remoteConfig.ts","../lib/common/utils/signals.ts","../lib/client/utils/cleanup.ts","../lib/client/connectionsManager/validator.ts","../lib/client/connectionsManager/remoteConnectionSync.ts","../lib/client/connectionsManager/connectionHelpers.ts","../lib/client/connectionsManager/mainWatcher.ts","../lib/client/connectionsManager/manager.ts","../lib/client/index.ts","../lib/server/types/socket.ts","../lib/server/socketHandlers/errorHandler.ts","../lib/server/types/token.ts","../lib/server/utils/token.ts","../node_modules/axios/index.d.ts","../node_modules/axios-retry/index.d.ts","../lib/common/http/axios.ts","../lib/server/infra/dispatcher.ts","../lib/server/utils/socket.ts","../lib/server/socketHandlers/initHandlers.ts","../lib/server/socketHandlers/identifyHandler.ts","../lib/server/socketHandlers/closeHandler.ts","../lib/server/socketHandlers/connectionHandler.ts","../lib/server/socket.ts","../node_modules/express-prom-bundle/types/index.d.ts","../lib/server/utils/prometheus-middleware.ts","../lib/server/broker-middleware.ts","../lib/server/routesHandlers/postResponseHandler.ts","../lib/server/routesHandlers/connectionStatusHandler.ts","../lib/server/routesHandlers/httpRequestHandler.ts","../lib/server/index.ts","../lib/index.ts","../lib/client/brokerClientPlugins/plugins/containerRegistryCredentialsFormatting.ts","../node_modules/@types/jsonwebtoken/index.d.ts","../lib/client/brokerClientPlugins/plugins/githubServerAppAuth.ts","../lib/common/http/patch-https-request-for-proxying.ts","../cli/exec.ts","../cli/help.ts","../cli/init.ts","../node_modules/@types/minimist/index.d.ts","../cli/index.ts","../node_modules/@types/accepts/index.d.ts","../node_modules/@babel/types/lib/index.d.ts","../node_modules/@types/babel__generator/index.d.ts","../node_modules/@babel/parser/typings/babel-parser.d.ts","../node_modules/@types/babel__template/index.d.ts","../node_modules/@types/babel__traverse/index.d.ts","../node_modules/@types/babel__core/index.d.ts","../node_modules/@types/content-disposition/index.d.ts","../node_modules/@types/cookie/index.d.ts","../node_modules/@types/cookiejar/index.d.ts","../node_modules/@types/keygrip/index.d.ts","../node_modules/@types/cookies/index.d.ts","../node_modules/@types/cors/index.d.ts","../node_modules/@types/graceful-fs/index.d.ts","../node_modules/@types/http-assert/index.d.ts","../node_modules/@types/istanbul-lib-coverage/index.d.ts","../node_modules/@types/istanbul-lib-report/index.d.ts","../node_modules/@types/istanbul-reports/index.d.ts","../node_modules/@jest/expect-utils/build/index.d.ts","../node_modules/chalk/index.d.ts","../node_modules/pretty-format/node_modules/@sinclair/typebox/typebox.d.ts","../node_modules/pretty-format/node_modules/@jest/schemas/build/index.d.ts","../node_modules/pretty-format/build/index.d.ts","../node_modules/jest-diff/build/index.d.ts","../node_modules/jest-matcher-utils/build/index.d.ts","../node_modules/expect/build/index.d.ts","../node_modules/@types/jest/index.d.ts","../node_modules/@types/json-schema/index.d.ts","../node_modules/@types/koa-compose/index.d.ts","../node_modules/@types/koa/index.d.ts","../node_modules/@types/koa-bodyparser/index.d.ts","../node_modules/@types/koa-router/index.d.ts","../node_modules/@types/methods/index.d.ts","../node_modules/@types/normalize-package-data/index.d.ts","../node_modules/@types/prettier/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/stack-utils/index.d.ts","../node_modules/@types/superagent/lib/agent-base.d.ts","../node_modules/@types/superagent/lib/node/response.d.ts","../node_modules/@types/superagent/types.d.ts","../node_modules/@types/superagent/lib/node/agent.d.ts","../node_modules/@types/superagent/lib/request-base.d.ts","../node_modules/@types/superagent/lib/node/http2wrapper.d.ts","../node_modules/@types/superagent/lib/node/index.d.ts","../node_modules/@types/superagent/index.d.ts","../node_modules/@types/supertest/types.d.ts","../node_modules/@types/supertest/lib/agent.d.ts","../node_modules/@types/supertest/lib/test.d.ts","../node_modules/@types/supertest/index.d.ts","../node_modules/@types/yargs-parser/index.d.ts","../node_modules/@types/yargs/index.d.ts"],"fileInfos":[{"version":"8730f4bf322026ff5229336391a18bcaa1f94d4f82416c8b2f3954e2ccaae2ba","affectsGlobalScope":true},"dc47c4fa66b9b9890cf076304de2a9c5201e94b740cffdf09f87296d877d71f6","7a387c58583dfca701b6c85e0adaf43fb17d590fb16d5b2dc0a2fbd89f35c467","8a12173c586e95f4433e0c6dc446bc88346be73ffe9ca6eec7aa63c8f3dca7f9","5f4e733ced4e129482ae2186aae29fde948ab7182844c3a5a51dd346182c7b06","4b421cbfb3a38a27c279dec1e9112c3d1da296f77a1a85ddadf7e7a425d45d18","1fc5ab7a764205c68fa10d381b08417795fc73111d6dd16b5b1ed36badb743d9",{"version":"3aafcb693fe5b5c3bd277bd4c3a617b53db474fe498fc5df067c5603b1eebde7","affectsGlobalScope":true},{"version":"f3d4da15233e593eacb3965cde7960f3fddf5878528d882bcedd5cbaba0193c7","affectsGlobalScope":true},{"version":"7fac8cb5fc820bc2a59ae11ef1c5b38d3832c6d0dfaec5acdb5569137d09a481","affectsGlobalScope":true},{"version":"097a57355ded99c68e6df1b738990448e0bf170e606707df5a7c0481ff2427cd","affectsGlobalScope":true},{"version":"adb996790133eb33b33aadb9c09f15c2c575e71fb57a62de8bf74dbf59ec7dfb","affectsGlobalScope":true},{"version":"8cc8c5a3bac513368b0157f3d8b31cfdcfe78b56d3724f30f80ed9715e404af8","affectsGlobalScope":true},{"version":"cdccba9a388c2ee3fd6ad4018c640a471a6c060e96f1232062223063b0a5ac6a","affectsGlobalScope":true},{"version":"c5c05907c02476e4bde6b7e76a79ffcd948aedd14b6a8f56e4674221b0417398","affectsGlobalScope":true},{"version":"5f406584aef28a331c36523df688ca3650288d14f39c5d2e555c95f0d2ff8f6f","affectsGlobalScope":true},{"version":"22f230e544b35349cfb3bd9110b6ef37b41c6d6c43c3314a31bd0d9652fcec72","affectsGlobalScope":true},{"version":"7ea0b55f6b315cf9ac2ad622b0a7813315bb6e97bf4bb3fbf8f8affbca7dc695","affectsGlobalScope":true},{"version":"3013574108c36fd3aaca79764002b3717da09725a36a6fc02eac386593110f93","affectsGlobalScope":true},{"version":"eb26de841c52236d8222f87e9e6a235332e0788af8c87a71e9e210314300410a","affectsGlobalScope":true},{"version":"3be5a1453daa63e031d266bf342f3943603873d890ab8b9ada95e22389389006","affectsGlobalScope":true},{"version":"17bb1fc99591b00515502d264fa55dc8370c45c5298f4a5c2083557dccba5a2a","affectsGlobalScope":true},{"version":"7ce9f0bde3307ca1f944119f6365f2d776d281a393b576a18a2f2893a2d75c98","affectsGlobalScope":true},{"version":"6a6b173e739a6a99629a8594bfb294cc7329bfb7b227f12e1f7c11bc163b8577","affectsGlobalScope":true},{"version":"81cac4cbc92c0c839c70f8ffb94eb61e2d32dc1c3cf6d95844ca099463cf37ea","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":"5e5e095c4470c8bab227dbbc61374878ecead104c74ab9960d3adcccfee23205","affectsGlobalScope":true},{"version":"09aa50414b80c023553090e2f53827f007a301bc34b0495bfb2c3c08ab9ad1eb","affectsGlobalScope":true},{"version":"d7f680a43f8cd12a6b6122c07c54ba40952b0c8aa140dcfcf32eb9e6cb028596","affectsGlobalScope":true},{"version":"3787b83e297de7c315d55d4a7c546ae28e5f6c0a361b7a1dcec1f1f50a54ef11","affectsGlobalScope":true},{"version":"e7e8e1d368290e9295ef18ca23f405cf40d5456fa9f20db6373a61ca45f75f40","affectsGlobalScope":true},{"version":"faf0221ae0465363c842ce6aa8a0cbda5d9296940a8e26c86e04cc4081eea21e","affectsGlobalScope":true},{"version":"06393d13ea207a1bfe08ec8d7be562549c5e2da8983f2ee074e00002629d1871","affectsGlobalScope":true},{"version":"2768ef564cfc0689a1b76106c421a2909bdff0acbe87da010785adab80efdd5c","affectsGlobalScope":true},{"version":"b248e32ca52e8f5571390a4142558ae4f203ae2f94d5bac38a3084d529ef4e58","affectsGlobalScope":true},{"version":"52d1bb7ab7a3306fd0375c8bff560feed26ed676a5b0457fa8027b563aecb9a4","affectsGlobalScope":true},"1f03b495671c3a1bd24510f38b8947f0991dfd6bf0278c68eca14af15b306e1f","0b4bc32128fda7bb0752cf284730dd3a817aae04a3d7f92e3b2d54bd61362fe1","7394959e5a741b185456e1ef5d64599c36c60a323207450991e7a42e08911419","8e9c23ba78aabc2e0a27033f18737a6df754067731e69dc5f52823957d60a4b6","5929864ce17fba74232584d90cb721a89b7ad277220627cc97054ba15a98ea8f","7180c03fd3cb6e22f911ce9ba0f8a7008b1a6ddbe88ccf16a9c8140ef9ac1686","25c8056edf4314820382a5fdb4bb7816999acdcb929c8f75e3f39473b87e85bc","54cb85a47d760da1c13c00add10d26b5118280d44d58e6908d8e89abbd9d7725","3e4825171442666d31c845aeb47fcd34b62e14041bb353ae2b874285d78482aa","c6fd2c5a395f2432786c9cb8deb870b9b0e8ff7e22c029954fabdd692bff6195","a967bfe3ad4e62243eb604bf956101e4c740f5921277c60debaf325c1320bf88","e9775e97ac4877aebf963a0289c81abe76d1ec9a2a7778dbe637e5151f25c5f3","471e1da5a78350bc55ef8cef24eb3aca6174143c281b8b214ca2beda51f5e04a","cadc8aced301244057c4e7e73fbcae534b0f5b12a37b150d80e5a45aa4bebcbd","385aab901643aa54e1c36f5ef3107913b10d1b5bb8cbcd933d4263b80a0d7f20","9670d44354bab9d9982eca21945686b5c24a3f893db73c0dae0fd74217a4c219","db3435f3525cd785bf21ec6769bf8da7e8a776be1a99e2e7efb5f244a2ef5fee","c3b170c45fc031db31f782e612adf7314b167e60439d304b49e704010e7bafe5","40383ebef22b943d503c6ce2cb2e060282936b952a01bea5f9f493d5fb487cc7","4893a895ea92c85345017a04ed427cbd6a1710453338df26881a6019432febdd","3a84b7cb891141824bd00ef8a50b6a44596aded4075da937f180c90e362fe5f6","13f6f39e12b1518c6650bbb220c8985999020fe0f21d818e28f512b7771d00f9","9b5369969f6e7175740bf51223112ff209f94ba43ecd3bb09eefff9fd675624a","4fe9e626e7164748e8769bbf74b538e09607f07ed17c2f20af8d680ee49fc1da","24515859bc0b836719105bb6cc3d68255042a9f02a6022b3187948b204946bd2","33203609eba548914dc83ddf6cadbc0bcb6e8ef89f6d648ca0908ae887f9fcc5","0db18c6e78ea846316c012478888f33c11ffadab9efd1cc8bcc12daded7a60b6","89167d696a849fce5ca508032aabfe901c0868f833a8625d5a9c6e861ef935d2","e53a3c2a9f624d90f24bf4588aacd223e7bec1b9d0d479b68d2f4a9e6011147f","339dc5265ee5ed92e536a93a04c4ebbc2128f45eeec6ed29f379e0085283542c","9f0a92164925aa37d4a5d9dd3e0134cff8177208dba55fd2310cd74beea40ee2","8bfdb79bf1a9d435ec48d9372dc93291161f152c0865b81fc0b2694aedb4578d","2e85db9e6fd73cfa3d7f28e0ab6b55417ea18931423bd47b409a96e4a169e8e6","c46e079fe54c76f95c67fb89081b3e399da2c7d109e7dca8e4b58d83e332e605","d32275be3546f252e3ad33976caf8c5e842c09cb87d468cb40d5f4cf092d1acc","4a0c3504813a3289f7fb1115db13967c8e004aa8e4f8a9021b95285502221bd1",{"version":"49026435d21e3d7559d723af3ae48f73ec28f9cba651b41bd2ac991012836122","affectsGlobalScope":true},"39b1a50d543770780b0409a4caacb87f3ff1d510aedfeb7dc06ed44188256f89",{"version":"49c89f8fa09d21c161e6a367448639e032f42d77cc2ec8ab54ecb8fa9a3ad59f","affectsGlobalScope":true},"a5165a41576f42964e810eb02da0be686ae61f3783779d1e5db8faf3da4ad2fb","304504c854c47a55ab4a89111a27a2daf8a3614740bd787cc1f2c51e5574239c",{"version":"95f9129a37dcace36e17b061a8484952586ecfe928c9c8ce526de1a2f4aaefa7","affectsGlobalScope":true},"a40826e8476694e90da94aa008283a7de50d1dafd37beada623863f1901cb7fb","0f9061846236850a872cb44097d071631e93c8749a8b16c191fe3c2a48faede4","e46fa644658c2d6e5c85e954ea76b92c97d63f0851d3ccdab8c2a80d5962aaa9","1c611ff373ce1958aafc40b328048ac2540ba5c7f373cf2897e0d9aeaabe90a0","fd7a7fc2bb1f38ba0cded7bd8088c99033365859e03ba974f7de072e9d989fde","6cf42fc3765241c59339047a45855c506a2f94ee5e734bbded94ddcafc66e4c5","09d6cebdced6aa1181ac1523c8f22a133f5ed80589678b64051f0602f0518374",{"version":"ee1ee365d88c4c6c0c0a5a5701d66ebc27ccd0bcfcfaa482c6e2e7fe7b98edf7","affectsGlobalScope":true},{"version":"7c35691dc3972ff1507d8dd279d833f540973d0917bde22e191cf7a8feaac29f","affectsGlobalScope":true},"62662d7a886e5cfa870685720fd27b763743ca4d2cf29326f75d76606a64eadd","b8c670688bd228d3cc9c169690b09b687188c50ff263a94df63b207701105ad9","d8e16905907111390d5a943816306ae997dfe56476f14142166f8b13ee322eea","8068c911a1c40bc6c5ffc58c625b21d807778f6aa6d63a73e6f04f88bcac5b79","a1dbce56ad5f3a37caafb9033c9d190a199217d673f5fa099c8968d471a2fdaa","c6f77efcc19f51c8759779b6b6ee0d88046c15c15dadac8ffed729a6620daf39",{"version":"089867511b37a534ae71f3d9bc97acc0b925b7f5dbec113f98c4b49224c694eb","affectsGlobalScope":true},"269d0ea3202820c29a32c1f2a357837a4f1918426844f7e7c90af15ec40d1dc1","66432f885e30cf471573de22a5af5eca9ab46b37b122aec98beadf77e9b7df24","323506ce173f7f865f42f493885ee3dacd18db6359ea1141d57676d3781ce10c",{"version":"034e635df3c014df1d6b1110b724ca0c4d2d324b45a84974c7d6931f9cf95ea7","affectsGlobalScope":true},{"version":"87f9456115554cb0f78f098ddbd585096871c19d2d05274c1b1b4ade3151da78","affectsGlobalScope":true},"ea3ab3727cd6c222d94003ecafa30e8550c61eadcdabbf59514aee76e86211a5","d3cdd41693c5ed6bec4f1a1c399d9501372b14bd341bc46eedacf2854c5df5a7","2de7a21c92226fb8abbeed7a0a9bd8aa6d37e4c68a8c7ff7938c644267e9fcc1","6d6070c5c81ba0bfe58988c69e3ba3149fc86421fd383f253aeb071cbf29cd41","da618f0ea09d95c3b51514de43bf97dab008c85bede58aa57cf95e4984c7c957","48a35b181ecf47dbbc0a7ab4b5ba778d91eaa838ba42bf4aaaead42be77ef39a","269929a24b2816343a178008ac9ae9248304d92a8ba8e233055e0ed6dbe6ef71","93452d394fdd1dc551ec62f5042366f011a00d342d36d50793b3529bfc9bd633","5195aeb0de306d1c5ca8033457fbcab5987657112fa6d4971cfeb7644493a369","c5dbf0003bc9f0f643e54cd00a3868d1afe85497fecb56be6f2373dc85102924",{"version":"b446ae935d08a57c3ba4188e82d9fb2c251528ed805ec1f41c20e691c3db6325","affectsGlobalScope":true},{"version":"300f8e9de0b0c3482be3e749462b6ebc3dab8a316801f1da0def94aed0cd2018","affectsGlobalScope":true},"4e228e78c1e9b0a75c70588d59288f63a6258e8b1fe4a67b0c53fe03461421d9","962f105729d5b888c8b70e193f6020ee92c6c8144c827de40f80d65dd188ad7f","ac74e2b754fba690036f8221d978f6debb867462b87af254f24e924b677395d0","80858f6de9af22e53aff221fe3590215ea544c2aeb2cc60cf8e08a9c785c8fef",{"version":"068b8ee5c2cd90d7a50f2efadbbe353cb10196a41189a48bf4b2a867363012b4","affectsGlobalScope":true},{"version":"340659b96782f5813aad6c1f89ea1b83b2f3fa993115c7b30366375d9bae5a4e","affectsGlobalScope":true},"6f44a190351ab5e1811abebe007cf60518044772ccc08244f9f241706afa767f","fecdf44bec4ee9c5188e5f2f58c292c9689c02520900dceaaa6e76594de6da90","cf45d0510b661f1da461479851ff902f188edb111777c37055eff12fa986a23a",{"version":"6a4a80787c57c10b3ea8314c80d9cc6e1deb99d20adca16106a337825f582420","affectsGlobalScope":true},"f2b9440f98d6f94c8105883a2b65aee2fce0248f71f41beafd0a80636f3a565d",{"version":"ab9b9a36e5284fd8d3bf2f7d5fcbc60052f25f27e4d20954782099282c60d23e","affectsGlobalScope":true},"b510d0a18e3db42ac9765d26711083ec1e8b4e21caaca6dc4d25ae6e8623f447","5fb46bf84a85cf5e924e30465b7f919c777a1a03af44ae8c273d2ca229dcfd44","b8e7261f41dd775524077306a69c01796bd5a2a742c7338e6607ff4e689bc356","607d8cd0adda041284326a16e1579d29329d8a1d769859e99ea9dbf23b674539","f634e4c7d5cdba8e092d98098033b311c8ef304038d815c63ffdb9f78f3f7bb7","e4c7833531fd0a6b46a32d570cae6b89310884b4d836e209df7b78e53258969f","a168969b194c810bd6138b1579b6677816618fc9c317ba336dd5359abf9d0afa","b9f515dd1066637030af7e675144ac190e0b410812e66e37496344df056838b1","dba7efbdee28034f915a59aaede4757ec054c5e22ac5d05a35cc9b5bf5ea99f3","43348343fa093bcc4534eef92f77f4766b547c6f8bf89b52a149ffeb0d51e293","cef53ca4c17f6bb85ec755445999ecf8131f65fb9a08d6ab77bbdd16222ceb23","6125f66958e9666a122dec70ef95a6c487be4b0a166117cfde34fc48125b87ae","8b1b89aaf9ce3cfa551f67ecc2ddbf888dea6f13a5e6a9d4cb7cb9cfbe9159a4","d6da4a68707fd50b8b033a11d9a4e56fede7fb611da3bbbcd024d7bb043e5a13","b65b777fcb3d6d9eedaa10bcc333c81a333586c2770ddd270efa87e54232dbbd","9f9722948f56168eedba5e323cfa9f5f72c913f485a080a435ba399debcf1511","bb60e3f14730addd0a1c4552397bf2463a8788571e17c7e27d4f7c5b97a947a9","ced63758336ec135cd82787ce589d00b3fe081226d2cd989da92627f3df48774","ec72140ff1c4533343fc3f42f353c70f4016b2731d1330a6c7100c874c3b8b40","588eeca7e191d06becc548480cb25ebe48ebae727837bdf6f7bcb6691cd83a0b","8a8e9e2412cf232d95d8999dec2fe2ca613a96d6839d14ba2fb2eecad53da730","7f5f299d5f57a95b7428652d97dab8db49990bb04f3740cf1ff693119da47dcf","4aaa4c14dea1284ee1c97168990afb2729c6cf34414ef0c2b745b6c20fa58684","1df1b6fe0621ce05b4123e4ebec8e6c719400a91c6363ba1209f5075a59d6dba","c6a17102f358f82bd8920dd7da8254c70f6bc4faae3eb35c5860a45dc574c234","783afe5266ea760f59dd057bf45cc3e9e568b6b173dcdd8d03ec1a84dad2ccba","b65d766dbda435d2af678edeec7ccf112706ef685f6a20a180e1876dbd4f6b25","61b55647e947d0381055791bfbc75ac1d551da9308d67c03d448c1ecdf4e1141","d5aa318857dc9474f5d34b57903aec06904dcba1a5491f5b453490fd3b9abf1d","6e6f2b759dc3a5a38d20c766e7b820b2b3c263515e2faa0cd8584d701d17e183","c2f0d6f297a0340ea317e5b5d001505fd089db7f1aae226b3d4a868790643f05","ef0c035c127c91e6131ce002546ff1e166d665fd0403b3edf2cacda4e434d15a","428de2f733aac226862f3984ef67271139c12f0361613d8491fd82eb0a9be8ad","c0d72586228b49f84a0ddad39104b9ebfb99379d2f405f4f20942900a19dac9a","aa00c40656919f49a49e048a570f137a17a0c142c02396fedaf87e3690e7c381","9cf1457427c1f91bc91bf85fc05e4d4928869efd14316c43f97816677d82f77a","16b68528d65918e50058b621b5f7b43e16986bda36ee284f007540a91b0c2ce3","9854162d1c9f86702038a30132beee61410c279f3aec75a59372ca05faeb504e","fe4d850923b0082afa13a36e7ca0dfde105d510ec8a7b76167637c28fc793bb1","853b1081cc49b27b260b4956b96358acb673f49494b542f5ddf05d61fe67709c","48f7e457d23e6fa17669dd9ee30eb72a272a90a1496a2833994507fa5a0008d9","baecc749c6dd0a92286d1d89bc1768da71ea6c1c4e5e8b2275b0b2462fe2e025","304b96a7d8071ac065a6ff76da3ef0f2ded585d641049403887d39b411656157","665317f83c665f0aff34a481789946ea6d47557103071d3f647b0efab2931586","fd88c9a4df3d86596b4235809bcb9ea5b202f2a462f8b850a7322de651f7f0d2","cf1433b30c168d8658072469d66873be539f8f2c8de4a26c0c2b96abd8467f60","faaffcab2cba111febe15e8fb7fd617f4dcb2a4a3166fdf9db046b5ce3075f0b","1bb98610e84a478ddc0d97514ba35892473f747b2010140e0477bce4f4a5c0f5","1f17fab3c3d156fca17d805a40951972254baed3fe88153b9ada8cb4a9b227ca","48c7c11bb2d7a0c5f11548247a4b7f95fbffb7afa53feacb79c2bebe818aa0cd","2e180800f96a2a1d13df042b61b4fc6bff37a20026b0baeb64c6db8e8a041eea","de7420f45bbedc8189f867f5b10d936ecc4200db0cb9b38f9dc6003f46f87af0","37f1b8087b8680b11ab1fa1bbad3bdbea0989beafe53dd92e0b68d36587b6bb0","5c28c6e964c47a0d8a92a6cba159fea53dd7ab25763d4d4c306b6c013ff32da5","1907f136ceda2e9ac6cad5adaf9736015fbe66ec914bcb5f400163a3e4c4dd7c","d3f2d715f57df3f04bf7b16dde01dec10366f64fce44503c92b8f78f614c1769","b78cd10245a90e27e62d0558564f5d9a16576294eee724a59ae21b91f9269e4a","17f0ae35f62a9586cade6c10e5a0d61362257b8e03e661c49ca417e4f3da857d","2f5747b1508ccf83fad0c251ba1e5da2f5a30b78b09ffa1cfaf633045160afed",{"version":"a45c25e77c911c1f2a04cade78f6f42b4d7d896a3882d4e226efd3a3fcd5f2c4","affectsGlobalScope":true},"b71c603a539078a5e3a039b20f2b0a0d1708967530cf97dec8850a9ca45baa2b","0e13570a7e86c6d83dd92e81758a930f63747483e2cd34ef36fcdb47d1f9726a","104c67f0da1bdf0d94865419247e20eded83ce7f9911a1aa75fc675c077ca66e","cc0d0b339f31ce0ab3b7a5b714d8e578ce698f1e13d7f8c60bfb766baeb1d35c","5c45abf1e13e4463eacfd5dedda06855da8748a6a6cb3334f582b52e219acc04","6f4e4e5a046171e70dfb4b1f3e6212de786bf2c1e2c4383ae0e61c4726fdd168","b688e6899b4ba2208e49bef019c759e0b70e9e5da188703e30400c833ba14cb5","3da82ff2c93f53ba71271eeb764af06f156fb63eed56b98c3944fd70a903a949","691b22259686f59c7abadb27fc268196e10a13f57cd1c00da816676ff724189a","6546c54580ed782ac5fa7ce46df2bca3de24859b73cbb005572f7943543a45df","6e29853e9c1183668a5caf27bcc935cd14c624b7d83211ce4629d588b83cb702","b393a5d180dcb9f91762f83f915a775c6acf6aaabf7f0ee3e49de28ae161488c","86eb8aa1e46f50cc53c190507f7c25865eb7692328bfa9d2327d5858b80a31c6","930529d90d690b4d6a430a78206a5abb753f2472f46e56cfb8a9655d7726caaf","8199ea9ad1619fbfba0e01650ab590388fa4e826bb3580c8fd07c902fdd2cc8c","158fb3ab521da0a909249ef6e01758625eab1f7068660fd48a1c61593d19cabf","e747aba72936abe601b70f88e42241ccb52f4ef8cd1dac881a7a99fb4b7bb758","ceebc193b7e71ea9caceb27b75be8ec51b375da9495b4b1bb54142583df679e1","6beab067d249104f7f4436b57ee9031ff9640a3933045f2132f68148779607cc","66f8b3cf8c4e6b43c126aef6e1e69dc40a8cddd34d82857610ba97cf5542c428","e81f88e96194e9c6908c0199b64fa7de53c67227044a9e72d95e1046d007d9a0","54124f504776e46fa2de0d4999f89765cb47975f949f84588b897cbe43865e48","2ad1a1cd994e62ddf71883bf11d644758769a3bfea49396f02027961d51df9e3","b8b1e6141f16b9b5449156e6d34d6bcf6386487239f14fa96ed2108c4f3f65db","a2c02b8d780bc5361bd49f34d47b761d54b8f8309b6ebb9d2f447b80434c61ff","d796cc7b0b27501fbb35cf3d3758fc2682642b2a62f4d61ca423d47ae8f815b4","2b9442aad20827dfd6923ff5605d6a5ee545a99453f508caa9fccd33bb0eafdd","18bcbb347f6f8d81f4da0f9514fdb3871a20a19f6d0ddf4b8a9bcd204e6cbd79","d08afc34af0e5f4b5d901c40a63fa7277b71edd69414fb2125ef33e6e035dc16","9e959e6654e07ad994ead40643022b8b2edcb4779e29cb035b040cb7294f83e1","94545d314c1c9bf043379392cc9789c27ec772e4853c5624e9f2dd9d2f92804b","0c3b2048b6b3a0f21d6bcf829b43883907d82ba98bf6c07a5f8b19090546b766","22895d407bda0cd9f78435b5d563692d213282675f996dafcf2bbc77c17e7137","893ada0daab97665ca9e9ce67a5929b45acb40aac2be9991ea155785ccd14261","cbf3a941838a1dbd1f3152a256a37b853daa37b6781165ad192305266c8a6972","98ee6bfa7b9db269bb0b974ce0ef5988e3fb77aae6420fec62219ce9d8cf5678","ef72f96cf8df8c6221bab3adf720796a3f9de30ce2a0f7f5152da25b71144078","ce4fd380597a02446bff95c085d5b37951be987a4497300d1b5435633dcc02ad","39d1a0fb9424a8b37327e0dcf9bfbda6455d29c76ee8fab80dd717efaa44ec96","0c6abbd24529fd30358f410da8116260dcb63ca2aa64aeee22c7940fea19d7e0","9c173187aeb9596afb99b80358b8aac22984fbeeb17e00eaf5c73a6522b7b972","6a0b586fe6ec79de42b5c59c280ec05fd8e1ac2804aeb040fc515cfe04c9c025","a5a0aac719c8d3e92066fc90275171a6aefa35a84d03abc232e389dc754958fe","c763fbce96d4a76a0f8c59616559a450a072a7e4615a1bfd8a1c05037b7fc412","53fc83196a856f18cec4da0f6490b31d815d9f2a316b3f325536c52cce930180","56216147d5d5d529f5a400a9138f7b6b4bcb74ce633949a675a256c662729435","012e0f41dcc582d199f83e1062576946800dc966bce75bc2f6df657730586c20","70922b152a19035882114e28ec9c5eba175376e2de8fdfccf794dae02fa89b2f","52c77087613c016f491073114ec6cad393ae144ea240c3012d584c654599b6af","0b27f9a9b0cd4299644ef7aac6e280a96f8f4618277369db287ebb78f503adbe","d71087da3bea779fecaa8946dcb7c0c6b1944a7255113ad98a0d426297970b04","0e966055130d8c789f424e3a647fc2268e9265b8beaebc4bf28aeaec47070f03","935cddb4648a9cfd712e024e0523c105abad8a3672d820e3561c201a12a69ecc","7bb6551fe4a2359d973101729d5affe18297cebfe1447c03cad3b3360fed572e","74b9eebec9649be2c532be99a682c6434bc31d1be11b6e1fecfa5f4bc795ccb6","d3c53904e4258d97ae5b7cd6daad35af0eb46dedae6a10d5620bc51ada00d61d","cab77b3f756e05d96bbc7209af80659200105720385bcdf1bc9585c82afb3349","62899a76679f04094ab88add515bde051a628e7cec38d7554770a628f4508a76","01ba761ce6d75a4142858a053f45d64d255e057049ab1cc4d9a93e76b8b5c444","dfd06b48e69ff4ab95a33fd83ad7eca77567a7c230a9cbf4a47063c04246d858","f218fbb52c1192c386986d985d213cf8ffe29f3fc4b0b0580ad65df6381be48e","35c57738f7982fdfb51f37e6658f71c0994e1bb5857d2ea6f191a0a55aaa3cb4","5ad56a97f84ed672635f498bb0ffc56feb6d6fc02243f39262d849d77cd35bc5","8a087e0e03ba7d4ff15247fa73c1d7de19bac9883398d1fdef64aa567291eb4f","e7b59c0e6c6a541cb0d7b9e43b8c28fb28bed6002f17a00856469ff50dca96fe","18b5a4386e498b26f5dd52eedfd78ef960cceb04a97cfe590ca2a05e19fea5eb","aa9b70eac841498495c926289d5724f05c007826fe5a1b7cf1974faf21bd30cf","b62a829197b673f4904042812ae6e4bbe30a0e14947e7004518b3e22379cae95","89b350d42ac4fdbd15860690647dac82b2cfde1860b14db0dfee4b66ba5fd7b0","9da2ff90ff61041d5b495f13b3273c0b24bba4ef939d1b6718e294cc84ea55cd","799a2be8598de24deb59b1e87a0d592ae8d62c44d8c84e108844d278f650956c","d6b88ebeb395d9198c205fd8e029f2d8bfab8b72df36259344a5168be621b88f","967a4255cb456b4539954206628a147de6aa0a96f5f464d5b324820cfcb5279c","c53ca1d62787c075c05c74387f0c48314ab9dbd6dc586fbe3843b37181e491ac","0845ecf8f8667f9ef434855c1158206d1601ccbe9bf55aef316b804b297a869b","d6c3dda4bfee3d48972b85003b1b9cc025fc4606f51e767d74fa2cb7753999ff","8bbd5bc0b149b01bf9e5b20cc6f593277d90fa0260052441f50c83145e12535d","97e0fc5fb970657971e04cb0c694a4b2318ba30ed3dd7bbb282d2eef3fd26925","3dbac2afb11186084b360ad5d1eea17dccfa8c0ca82c5143725e2cf15c53662e","3c44d055457889f193f78ac947653ec9a8c5660cbee59e26d50422000b76740f","c9f9ba089ac2ded87954c1e947fdc702d239a325b6a4f816f3394cec1f4b5af6","dd2b4ff5479bba121f7312f253bc7776b44dfd08b0905b41b3332192eb19331c","0c9f2c5c6eba7fe142f6c7987b4c4de44cf5671182ca8c424af83989a32706c5","fbca5ffaebf282ec3cdac47b0d1d4a138a8b0bb32105251a38acb235087d3318","c552ba4963c2bd77d84b6bfaf6b9eb0aed9f0dbd55fb4ce663552d05f2b95418","87f287f296f3ff07dbd14ea7853c2400d995dccd7bd83206196d6c0974774e96","55584873eae27c5607725f0a9b2123cdea9100fd47cd4bfd582b567a7c363877","2c8e55457aaf4902941dfdba4061935922e8ee6e120539c9801cd7b400fae050","5f02abbb1b17e3d1e68c5eea14adf4705696e6255e2982b010c0dc2a5417b606","670a76db379b27c8ff42f1ba927828a22862e2ab0b0908e38b671f0e912cc5ed","9e0cf651e8e2c5b9bebbabdff2f7c6f8cedd91b1d9afcc0a854cdff053a88f1b","069bebfee29864e3955378107e243508b163e77ab10de6a5ee03ae06939f0bb9","0504070e7eaba788f5d0d5926782ed177f1db01cee28363c488fae94950c0bbc","117ffeecf6c55e25b6446f449ad079029b5e7317399b0a693858faaaea5ca73e","0dc6940ff35d845686a118ee7384713a84024d60ef26f25a2f87992ec7ddbd64","6847334317c1bc1e6fc4b679b0095bbd2b6ee3b85fe3f26fc26bac462f68ef5e","2224f3072e3cc07906eeed5c71746779511fba2dd224addc5489bcdb489bdee5","3937b50a4de68f6d21614461e9d47af0d8421ca80fc2a72b667ca2151f492120","afe73051ff6a03a9565cbd8ebb0e956ee3df5e913ad5c1ded64218aabfa3dcb5","3f841292a135503a4cc1a9029af59dae135595810cfad5ca62ec1b2ad9846e8e","035a5df183489c2e22f3cf59fc1ed2b043d27f357eecc0eb8d8e840059d44245","a4809f4d92317535e6b22b01019437030077a76fec1d93b9881c9ed4738fcc54","5f53fa0bd22096d2a78533f94e02c899143b8f0f9891a46965294ee8b91a9434","763e521cf114b80e0dd0e21ca49b9f8ae62e8999555a5e7bade8ce36b33001c2","0d14fa22c41fdc7277e6f71473b20ebc07f40f00e38875142335d5b63cdfc9d2","3054ef91b855e005b9c4681399e9d64d2a7b07a22d539314d794f09e53b876a7","ffcc5500e77223169833fc6eb59b3a507944a1f89574e0a1276b0ea7fc22c4a4","22f13de9e2fe5f0f4724797abd3d34a1cdd6e47ef81fc4933fea3b8bf4ad524b","e3ba509d3dce019b3190ceb2f3fc88e2610ab717122dabd91a9efaa37804040d","cda0cb09b995489b7f4c57f168cd31b83dcbaa7aad49612734fb3c9c73f6e4f2","f72f8428f3c1caa22e9c247d046603b85b442c0dae7b77a7a0bc092c18867cb7",{"version":"195f63105abc03e72b6a176e3e34dfb5ac932b55db378fdc7874b1617e24b465","affectsGlobalScope":true},"f3d8c757e148ad968f0d98697987db363070abada5f503da3c06aefd9d4248c1","7e8d3f08435ad2cefe67f58182618bfc9a0a29db08cf2544b94cbcae754a9bd9","8cf9b9045a614f883b623c2f1a631ec6a93321747e933330b2eec0ee47164a34","cee62e64fc4bdfb3798ab8e21486fadd2027ce4128349989acc63905366f91c5","18730c5231e656317c093558b3467d2a3b357ffc45b4e56509c98fce5a775629","b0f9ef6423d6b29dde29fd60d83d215796b2c1b76bfca28ac374ae18702cfb8e","22293bd6fa12747929f8dfca3ec1684a3fe08638aa18023dd286ab337e88a592","429b6df7d7b94389bd42cfdf39bccea903acd3628498cec6172302801fbeac89","cf3d384d082b933d987c4e2fe7bfb8710adfd9dc8155190056ed6695a25a559e","9871b7ee672bc16c78833bdab3052615834b08375cb144e4d2cba74473f4a589","c863198dae89420f3c552b5a03da6ed6d0acfa3807a64772b895db624b0de707","8b03a5e327d7db67112ebbc93b4f744133eda2c1743dbb0a990c61a8007823ef","86c73f2ee1752bac8eeeece234fd05dfcf0637a4fbd8032e4f5f43102faa8eec","42fad1f540271e35ca37cecda12c4ce2eef27f0f5cf0f8dd761d723c744d3159","ff3743a5de32bee10906aff63d1de726f6a7fd6ee2da4b8229054dfa69de2c34","83acd370f7f84f203e71ebba33ba61b7f1291ca027d7f9a662c6307d74e4ac22","1445cec898f90bdd18b2949b9590b3c012f5b7e1804e6e329fb0fe053946d5ec","0e5318ec2275d8da858b541920d9306650ae6ac8012f0e872fe66eb50321a669","cf530297c3fb3a92ec9591dd4fa229d58b5981e45fe6702a0bd2bea53a5e59be","c1f6f7d08d42148ddfe164d36d7aba91f467dbcb3caa715966ff95f55048b3a4","f4e9bf9103191ef3b3612d3ec0044ca4044ca5be27711fe648ada06fad4bcc85","0c1ee27b8f6a00097c2d6d91a21ee4d096ab52c1e28350f6362542b55380059a","7677d5b0db9e020d3017720f853ba18f415219fb3a9597343b1b1012cfd699f7","bc1c6bc119c1784b1a2be6d9c47addec0d83ef0d52c8fbe1f14a51b4dfffc675","52cf2ce99c2a23de70225e252e9822a22b4e0adb82643ab0b710858810e00bf1","770625067bb27a20b9826255a8d47b6b5b0a2d3dfcbd21f89904c731f671ba77","d1ed6765f4d7906a05968fb5cd6d1db8afa14dbe512a4884e8ea5c0f5e142c80","799c0f1b07c092626cf1efd71d459997635911bb5f7fc1196efe449bba87e965","2a184e4462b9914a30b1b5c41cf80c6d3428f17b20d3afb711fff3f0644001fd","9eabde32a3aa5d80de34af2c2206cdc3ee094c6504a8d0c2d6d20c7c179503cc","397c8051b6cfcb48aa22656f0faca2553c5f56187262135162ee79d2b2f6c966","a8ead142e0c87dcd5dc130eba1f8eeed506b08952d905c47621dc2f583b1bff9","a02f10ea5f73130efca046429254a4e3c06b5475baecc8f7b99a0014731be8b3","c2576a4083232b0e2d9bd06875dd43d371dee2e090325a9eac0133fd5650c1cb","4c9a0564bb317349de6a24eb4efea8bb79898fa72ad63a1809165f5bd42970dd","f40ac11d8859092d20f953aae14ba967282c3bb056431a37fced1866ec7a2681","cc11e9e79d4746cc59e0e17473a59d6f104692fd0eeea1bdb2e206eabed83b03","b444a410d34fb5e98aa5ee2b381362044f4884652e8bc8a11c8fe14bbd85518e","c35808c1f5e16d2c571aa65067e3cb95afeff843b259ecfa2fc107a9519b5392","14d5dc055143e941c8743c6a21fa459f961cbc3deedf1bfe47b11587ca4b3ef5","a3ad4e1fc542751005267d50a6298e6765928c0c3a8dce1572f2ba6ca518661c","f237e7c97a3a89f4591afd49ecb3bd8d14f51a1c4adc8fcae3430febedff5eb6","3ffdfbec93b7aed71082af62b8c3e0cc71261cc68d796665faa1e91604fbae8f","662201f943ed45b1ad600d03a90dffe20841e725203ced8b708c91fcd7f9379a","c9ef74c64ed051ea5b958621e7fb853fe3b56e8787c1587aefc6ea988b3c7e79","2462ccfac5f3375794b861abaa81da380f1bbd9401de59ffa43119a0b644253d","34baf65cfee92f110d6653322e2120c2d368ee64b3c7981dff08ed105c4f19b0","7d8ddf0f021c53099e34ee831a06c394d50371816caa98684812f089b4c6b3d4","ab82804a14454734010dcdcd43f564ff7b0389bee4c5692eec76ff5b30d4cf66","e7bb49fac2aa46a13011b5eb5e4a8648f70a28aea1853fab2444dd4fcb4d4ec7","464e45d1a56dae066d7e1a2f32e55b8de4bfb072610c3483a4091d73c9924908","da318e126ac39362c899829547cc8ee24fa3e8328b52cdd27e34173cf19c7941","24bd01a91f187b22456c7171c07dbf44f3ad57ebd50735aab5c13fa23d7114b4","4738eefeaaba4d4288a08c1c226a76086095a4d5bcc7826d2564e7c29da47671","dbec715e9e82df297e49e3ed0029f6151aa40517ebfd6fcdba277a8a2e1d3a1b","08b6b541f10f76945355801526f76c376ae426054257af9b0d62058ca01e133e","8f75e211a2e83ff216eb66330790fb6412dcda2feb60c4f165c903cf375633ee","5adcc724bcfdac3c86ace088e93e1ee605cbe986be5e63ddf04d05b4afdeee71","a9155c6deffc2f6a69e69dc12f0950ba1b4db03b3d26ab7a523efc89149ce979","c99faf0d7cb755b0424a743ea0cbf195606bf6cd023b5d10082dba8d3714673c","21942c5a654cc18ffc2e1e063c8328aca3b127bbf259c4e97906d4696e3fa915","bae8d023ef6b23df7da26f51cea44321f95817c190342a36882e93b80d07a960","5d30d04a14ed8527ac5d654dc345a4db11b593334c11a65efb6e4facc5484a0e"],"options":{"alwaysStrict":false,"esModuleInterop":true,"module":199,"noImplicitAny":false,"noUnusedLocals":true,"outDir":"./","sourceMap":true,"strict":true,"target":6},"fileIdsList":[[268],[273,274,275,276],[97,106,139],[139,178,180],[139,174,178,180],[97,98,139,174,178,184],[184],[89,97,147,154,174,178,180,184,270],[139,148,149,197,212],[139,148,149,156,180,210,219],[149,156,178,180],[148,149],[148,149,220,221,222,223,224],[148,149,175],[139,149,156,180,210],[148,149,211],[139,148,149,212,225,226],[148],[138,139,148,150],[97,146,178,180,236,237],[150],[139,146,150,185,207,239,242,243],[97,138,139,146,150,203,228,229,238,239,240,241,244],[138,146,228,238,241],[97,139],[139,178,180,204],[139,147,204,205],[139,146,149,150,173,206,227,228],[138,139,146,150,156,185,207,208,209,213,214,215,218,228,229,230,234,235,245],[139],[147,150,156,197,214],[138,139,146,150,175,197,216,217],[138,139,150,197,214],[171],[139,162,163],[139,148,164,165,170,171,172],[167,168,169],[139,143,144,145,146,147,150,151,152,187,201,202,203,206],[200],[139,146],[146,187],[139,146,147,150],[140,146,186],[141,149],[97,138],[139,148,156,178,180],[139,156,180,182],[97,106,135,136,137,139],[138,139,148,174],[97,106,135,138,139,141],[106,139,140,141,154,161,175,190,231,232,233],[139,251,252],[99,101,114,115,138,139,154,156,157],[101,125,138],[99,101,138,139,157,178,179],[114,138,160,197,198],[97,99,101,139,147,196,197],[139,160,199],[114,139,141,146,153,160,197,199],[139,141,146,147,153,160,180,197],[139,140,141,146,147,150,153,158,160,176,177,178,183,185],[125,139,141,154,156,161,173,175,176,177],[139,154,178,180,181,182],[140],[141],[138,154],[176],[159],[89],[155],[138,139,141,142,246,267],[134,138],[138,139,197],[139,146,156,209,234,254,256,260,262,263,264,265,266],[138,139,147,253],[105,139,178,180,197,250,260],[105,125,139,160,178,180,197,250,260],[139,160,197,199,250],[146,247,248,256,259],[139,160,250,254,260],[139,248,250,257,258],[139,160,200,250,254,255,256,260],[146,186,208,257],[197,261],[147,249],[279],[99,133],[279,280,281,282,283],[279,281],[99,133,195],[96,133],[99,133,195,197,288],[96,99,133,189,190,191],[190,192,194,196],[97,133],[293],[294],[300,303],[89,133],[307],[83,96,99,100,104,110,125,133,193,278,285,288,289,292,306],[47],[83],[84,89,117],[85,96,97,104,114,125],[85,86,96,104],[87,126],[88,89,97,105],[89,114,122],[90,92,96,104],[83,91],[92,93],[96],[94,96],[83,96],[96,97,98,114,125],[96,97,98,111,114,117],[81,130],[92,96,99,104,114,125],[96,97,99,100,104,114,122,125],[99,101,114,122,125],[47,48,82,83,84,85,86,87,88,89,90,91,92,93,94,95,96,97,98,99,100,101,102,103,104,105,106,107,108,109,110,111,112,113,114,115,116,117,118,119,120,121,122,123,124,125,126,127,128,129,130,131,132],[96,102],[103,125,130],[92,96,104,114],[105],[106],[83,107],[108,124,130],[109],[110],[96,111,112],[111,113,126,128],[84,96,114,115,116,117],[84,114,116],[114,115],[117],[118],[83,114],[96,120,121],[120,121],[89,104,114,122],[123],[104,124],[84,99,110,125],[89,126],[114,127],[103,128],[129],[84,89,96,98,107,114,125,128,130],[114,131],[313,352],[313,337,352],[352],[313],[313,338,352],[313,314,315,316,317,318,319,320,321,322,323,324,325,326,327,328,329,330,331,332,333,334,335,336,337,338,339,340,341,342,343,344,345,346,347,348,349,350,351],[338,352],[97,114,133,188],[99,133,189,193],[360],[287,310,354,356,361],[100,104,114,122,133],[84,97,99,100,101,104,114,310,355,356,357,358,359],[99,114,360],[84,97,355,356],[125,355],[361,362,363,364],[361,362,365],[361,362],[99,100,104,310,361],[366],[251,252],[125,133],[296,302],[159,197],[300],[297,301],[166],[299],[298],[58,62,125],[58,114,125],[53],[55,58,122,125],[104,122],[133],[53,133],[55,58,104,125],[50,51,54,57,84,96,114,125],[50,56],[54,58,84,117,125,133],[84,133],[74,84,133],[52,53,133],[58],[52,53,54,55,56,57,58,59,60,62,63,64,65,66,67,68,69,70,71,72,73,75,76,77,78,79,80],[58,65,66],[56,58,66,67],[57],[50,53,58],[58,62,66,67],[62],[56,58,61,125],[50,55,56,58,62,65],[84,114],[53,58,74,84,130,133]],"referencedMap":[[273,1],[277,2],[275,3],[203,4],[184,5],[185,6],[269,7],[271,8],[213,9],[220,10],[224,11],[222,12],[221,12],[225,13],[223,14],[211,15],[212,16],[227,17],[149,18],[228,19],[238,20],[243,21],[244,22],[245,23],[242,24],[241,25],[205,26],[206,27],[229,28],[246,29],[210,30],[215,31],[218,32],[235,33],[172,34],[164,35],[165,35],[173,36],[170,37],[207,38],[201,39],[152,40],[145,30],[202,41],[151,42],[143,30],[187,43],[236,18],[150,44],[240,45],[217,46],[216,47],[138,48],[175,49],[142,50],[234,51],[253,52],[158,53],[272,54],[180,55],[199,56],[179,30],[209,57],[200,58],[208,59],[230,60],[186,61],[178,62],[183,63],[141,64],[146,65],[232,66],[177,67],[160,68],[147,69],[219,30],[156,70],[268,71],[181,30],[139,72],[263,73],[267,74],[254,75],[265,76],[266,77],[264,78],[260,79],[258,80],[259,81],[248,30],[257,82],[256,83],[262,84],[250,85],[281,86],[278,87],[284,88],[280,86],[282,89],[283,86],[196,90],[134,91],[195,87],[289,92],[290,87],[192,93],[197,94],[291,95],[294,96],[295,97],[304,98],[270,99],[308,100],[306,100],[309,100],[307,101],[47,102],[48,102],[83,103],[84,104],[85,105],[86,106],[87,107],[88,108],[89,109],[90,110],[91,111],[92,112],[93,112],[95,113],[94,114],[96,115],[97,116],[98,117],[82,118],[99,119],[100,120],[101,121],[133,122],[102,123],[103,124],[104,125],[105,126],[106,127],[107,128],[108,129],[109,130],[110,131],[111,132],[112,132],[113,133],[114,134],[116,135],[115,136],[117,137],[118,138],[119,139],[120,140],[121,141],[122,142],[123,143],[124,144],[125,145],[126,146],[127,147],[128,148],[129,149],[130,150],[131,151],[337,152],[338,153],[313,154],[316,154],[335,152],[336,152],[326,152],[325,155],[323,152],[318,152],[331,152],[329,152],[333,152],[317,152],[330,152],[334,152],[319,152],[320,152],[332,152],[314,152],[321,152],[322,152],[324,152],[328,152],[339,156],[327,152],[315,152],[352,157],[346,156],[348,158],[347,156],[340,156],[341,156],[343,156],[345,156],[349,158],[350,158],[342,158],[344,158],[189,159],[194,160],[361,161],[357,162],[359,163],[360,164],[355,165],[358,166],[356,167],[365,168],[363,169],[364,170],[362,171],[367,172],[252,173],[137,174],[303,175],[261,176],[301,177],[302,178],[198,91],[167,179],[300,180],[299,181],[65,182],[72,183],[64,182],[79,184],[56,185],[55,186],[78,187],[73,188],[76,189],[58,190],[57,191],[53,192],[52,193],[75,194],[54,195],[59,196],[63,196],[81,197],[80,196],[67,198],[68,199],[70,200],[66,201],[69,202],[74,187],[61,203],[62,204],[71,205],[51,206],[77,207]],"exportedModulesMap":[[273,1],[277,2],[275,3],[203,4],[184,5],[185,6],[269,7],[271,8],[213,9],[220,10],[224,11],[222,12],[221,12],[225,13],[223,14],[211,15],[212,16],[227,17],[149,18],[228,19],[238,20],[243,21],[244,22],[245,23],[242,24],[241,25],[205,26],[206,27],[229,28],[246,29],[210,30],[215,31],[218,32],[235,33],[172,34],[164,35],[165,35],[173,36],[170,37],[207,38],[201,39],[152,40],[145,30],[202,41],[151,42],[143,30],[187,43],[236,18],[150,44],[240,45],[217,46],[216,47],[138,48],[175,49],[142,50],[234,51],[253,52],[158,53],[272,54],[180,55],[199,56],[179,30],[209,57],[200,58],[208,59],[230,60],[186,61],[178,62],[183,63],[141,64],[146,65],[232,66],[177,67],[160,68],[147,69],[219,30],[156,70],[268,71],[181,30],[139,72],[263,73],[267,74],[254,75],[265,76],[266,77],[264,78],[260,79],[258,80],[259,81],[248,30],[257,82],[256,83],[262,84],[250,85],[281,86],[278,87],[284,88],[280,86],[282,89],[283,86],[196,90],[134,91],[195,87],[289,92],[290,87],[192,93],[197,94],[291,95],[294,96],[295,97],[304,98],[270,99],[308,100],[306,100],[309,100],[307,101],[47,102],[48,102],[83,103],[84,104],[85,105],[86,106],[87,107],[88,108],[89,109],[90,110],[91,111],[92,112],[93,112],[95,113],[94,114],[96,115],[97,116],[98,117],[82,118],[99,119],[100,120],[101,121],[133,122],[102,123],[103,124],[104,125],[105,126],[106,127],[107,128],[108,129],[109,130],[110,131],[111,132],[112,132],[113,133],[114,134],[116,135],[115,136],[117,137],[118,138],[119,139],[120,140],[121,141],[122,142],[123,143],[124,144],[125,145],[126,146],[127,147],[128,148],[129,149],[130,150],[131,151],[337,152],[338,153],[313,154],[316,154],[335,152],[336,152],[326,152],[325,155],[323,152],[318,152],[331,152],[329,152],[333,152],[317,152],[330,152],[334,152],[319,152],[320,152],[332,152],[314,152],[321,152],[322,152],[324,152],[328,152],[339,156],[327,152],[315,152],[352,157],[346,156],[348,158],[347,156],[340,156],[341,156],[343,156],[345,156],[349,158],[350,158],[342,158],[344,158],[189,159],[194,160],[361,161],[357,162],[359,163],[360,164],[355,165],[358,166],[356,167],[365,168],[363,169],[364,170],[362,171],[367,172],[252,173],[137,174],[303,175],[261,176],[301,177],[302,178],[198,91],[167,179],[300,180],[299,181],[65,182],[72,183],[64,182],[79,184],[56,185],[55,186],[78,187],[73,188],[76,189],[58,190],[57,191],[53,192],[52,193],[75,194],[54,195],[59,196],[63,196],[81,197],[80,196],[67,198],[68,199],[70,200],[66,201],[69,202],[74,187],[61,203],[62,204],[71,205],[51,206],[77,207]],"semanticDiagnosticsPerFile":[273,274,277,275,203,184,185,269,271,213,220,224,222,221,225,223,211,212,227,149,226,228,238,243,244,245,242,241,205,204,206,229,246,210,215,218,235,172,164,162,165,163,173,168,170,169,171,207,201,152,145,144,202,151,143,187,236,150,148,240,237,217,216,214,138,174,175,142,234,233,253,158,272,180,199,179,209,200,208,230,186,178,183,141,140,153,146,232,177,176,182,160,154,239,147,161,219,156,268,181,139,263,267,254,265,266,264,260,258,259,248,257,256,247,249,262,255,250,281,279,296,166,278,284,280,282,283,196,134,195,285,286,287,289,290,192,197,157,291,292,193,293,294,295,304,305,270,288,308,306,309,307,310,188,276,47,48,83,84,85,86,87,88,89,90,91,92,93,95,94,96,97,98,82,132,99,100,101,133,102,103,104,105,106,107,108,109,110,111,112,113,114,116,115,117,118,119,120,121,122,123,124,125,126,127,128,129,130,131,311,312,190,191,337,338,313,316,335,336,326,325,323,318,331,329,333,317,330,334,319,320,332,314,321,322,324,328,339,327,315,352,351,346,348,347,340,341,343,345,349,350,342,344,189,194,353,361,354,357,359,360,355,358,356,365,363,364,362,366,367,252,251,49,135,297,137,303,261,301,302,198,167,231,300,299,298,159,136,8,9,13,12,2,14,15,16,17,18,19,20,21,3,4,25,22,23,24,26,27,28,5,29,30,31,32,6,46,36,33,34,35,37,7,38,43,44,39,40,41,42,1,45,11,10,65,72,64,79,56,55,78,73,76,58,57,53,52,75,54,59,60,63,50,81,80,67,68,70,66,69,74,61,62,71,51,77,155]},"version":"4.9.5"}
|
package/package.json
CHANGED
|
@@ -62,7 +62,7 @@
|
|
|
62
62
|
"typescript": "^4.9.3"
|
|
63
63
|
},
|
|
64
64
|
"dependencies": {
|
|
65
|
-
"axios": "1.
|
|
65
|
+
"axios": "1.7.4",
|
|
66
66
|
"axios-retry": "^3.9.1",
|
|
67
67
|
"body-parser": "^1.19.0",
|
|
68
68
|
"bunyan": "^1.8.12",
|
|
@@ -123,5 +123,5 @@
|
|
|
123
123
|
"volta": {
|
|
124
124
|
"node": "20.11.0"
|
|
125
125
|
},
|
|
126
|
-
"version": "4.193.
|
|
126
|
+
"version": "4.193.5"
|
|
127
127
|
}
|