snyk-broker 4.182.1 → 4.183.0
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- package/dist/lib/client/config/configHelpers.js.map +1 -0
- package/dist/lib/client/config/remoteConfig.js +48 -0
- package/dist/lib/client/config/remoteConfig.js.map +1 -0
- package/dist/lib/client/hooks/startup/processHooks.js +25 -24
- package/dist/lib/client/hooks/startup/processHooks.js.map +1 -1
- package/dist/lib/client/index.js +33 -19
- package/dist/lib/client/index.js.map +1 -1
- package/dist/lib/client/types/api.js +3 -0
- package/dist/lib/client/types/api.js.map +1 -0
- package/dist/lib/client/utils/cleanup.js +12 -0
- package/dist/lib/client/utils/cleanup.js.map +1 -0
- package/dist/lib/common/config/config.js +2 -1
- package/dist/lib/common/config/config.js.map +1 -1
- package/dist/lib/common/utils/signals.js +15 -0
- package/dist/lib/common/utils/signals.js.map +1 -0
- package/dist/lib/index.js +1 -1
- package/dist/lib/index.js.map +1 -1
- package/dist/package.json +1 -1
- package/dist/tsconfig.tsbuildinfo +1 -1
- package/package.json +1 -1
- package/dist/lib/client/utils/configHelpers.js.map +0 -1
- /package/dist/lib/client/{utils → config}/configHelpers.js +0 -0
|
@@ -0,0 +1 @@
|
|
|
1
|
+
{"version":3,"file":"configHelpers.js","sourceRoot":"","sources":["../../../../lib/client/config/configHelpers.ts"],"names":[],"mappings":";;;AAEA,8CAAkD;AAE3C,MAAM,uBAAuB,GAAG,CACrC,YAAiC,EACjB,EAAE;IAClB,MAAM,cAAc,GAAmB;QACrC,MAAM,EAAE,2BAA2B,CAAC,YAAY,CAAC;QACjD,SAAS,EAAE,YAAY,CAAC,QAAQ,KAAK,OAAO,CAAC,CAAC,CAAC,IAAI,CAAC,CAAC,CAAC,KAAK;QAC3D,WAAW,EAAE,YAAY,CAAC,aAAa,CAAC,CAAC,CAAC,IAAI,CAAC,CAAC,CAAC,KAAK;QACtD,WAAW,EAAE,iBAAiB,CAAC,YAAY,CAAC;QAC5C,SAAS,EAAE,YAAY,CAAC,eAAe,CAAC,CAAC,CAAC,IAAI,CAAC,CAAC,CAAC,KAAK;QACtD,SAAS,EACP,QAAQ,CAAC,YAAY,CAAC,yBAAyB,CAAC,KAAK,CAAC,CAAC,CAAC,CAAC,IAAI,CAAC,CAAC,CAAC,KAAK;QACvE,KAAK,EAAE,YAAY,CAAC,SAAS,IAAI,YAAY,CAAC,UAAU,CAAC,CAAC,CAAC,IAAI,CAAC,CAAC,CAAC,KAAK;QACvE,YAAY,EAAE,YAAY,CAAC,MAAM,CAAC,CAAC,CAAC,IAAI,CAAC,CAAC,CAAC,KAAK;QAChD,kBAAkB,EAAE,YAAY,CAAC,kBAAkB,CAAC,CAAC,CAAC,IAAI,CAAC,CAAC,CAAC,KAAK;QAClE,eAAe,EAAE,YAAY,CAAC,sBAAsB,CAAC,CAAC,CAAC,IAAI,CAAC,CAAC,CAAC,KAAK;KACpE,CAAC;IACF,OAAO,cAAc,CAAC;AACxB,CAAC,CAAC;AAjBW,QAAA,uBAAuB,2BAiBlC;AAEF,MAAM,iBAAiB,GAAG,CAAC,MAA2B,EAAW,EAAE;IACjE,KAAK,MAAM,GAAG,IAAI,MAAM,EAAE;QACxB,IAAI,MAAM,CAAC,cAAc,CAAC,GAAG,CAAC,IAAI,GAAG,CAAC,QAAQ,CAAC,OAAO,CAAC,EAAE;YACvD,OAAO,IAAI,CAAC,CAAC,iCAAiC;SAC/C;KACF;IACD,OAAO,KAAK,CAAC;AACf,CAAC,CAAC;AAEF,SAAgB,2BAA2B,CAAC,MAAW;IACrD,iDAAiD;IACjD,IAAI,2BAA2B,GAAG,KAAK,CAAC;IACxC,MAAM,gCAAgC,GAAI,MAAiB;SACxD,sBAAsB,CAAC;IAE1B,IAAI,OAAO,gCAAgC,KAAK,WAAW,EAAE;QAC3D,2BAA2B;YACzB,gCAAgC,CAAC,WAAW,EAAE,KAAK,MAAM;gBACzD,gCAAgC,CAAC,WAAW,EAAE,KAAK,KAAK,CAAC;KAC5D;IAED,YAAM,CAAC,IAAI,CAAC,EAAE,OAAO,EAAE,2BAA2B,EAAE,EAAE,sBAAsB,CAAC,CAAC;IAE9E,OAAO,2BAA2B,CAAC;AACrC,CAAC;AAfD,kEAeC"}
|
|
@@ -0,0 +1,48 @@
|
|
|
1
|
+
"use strict";
|
|
2
|
+
Object.defineProperty(exports, "__esModule", { value: true });
|
|
3
|
+
exports.retrieveConnectionsForDeployment = void 0;
|
|
4
|
+
const fs_1 = require("fs");
|
|
5
|
+
const request_1 = require("../../common/http/request");
|
|
6
|
+
const retrieveConnectionsForDeployment = async (clientOpts, universalFilePath) => {
|
|
7
|
+
var _a, _b;
|
|
8
|
+
try {
|
|
9
|
+
const tenantId = clientOpts.config.tenantId;
|
|
10
|
+
const installId = clientOpts.config.installId;
|
|
11
|
+
const deploymentId = clientOpts.config.deploymentId;
|
|
12
|
+
const apiVersion = clientOpts.config.apiVersion;
|
|
13
|
+
const request = {
|
|
14
|
+
url: `${clientOpts.config.API_BASE_URL}/rest/tenants/${tenantId}/brokers/installs/${installId}/deployments/${deploymentId}/connections?version=${apiVersion}`,
|
|
15
|
+
headers: {
|
|
16
|
+
'Content-Type': 'application/vnd.api+json',
|
|
17
|
+
Authorization: `${(_a = clientOpts.accessToken) === null || _a === void 0 ? void 0 : _a.authHeader}`,
|
|
18
|
+
},
|
|
19
|
+
method: 'GET',
|
|
20
|
+
};
|
|
21
|
+
const connectionsResponse = await (0, request_1.makeRequestToDownstream)(request);
|
|
22
|
+
if (connectionsResponse.statusCode != 200) {
|
|
23
|
+
const errorBody = JSON.parse(connectionsResponse.body);
|
|
24
|
+
throw new Error(`${connectionsResponse.statusCode}-${errorBody.error}:${errorBody.error_description}`);
|
|
25
|
+
}
|
|
26
|
+
const connections = JSON.parse(connectionsResponse.body)
|
|
27
|
+
.data;
|
|
28
|
+
const connectionsObjectForFile = { CONNECTIONS: {} };
|
|
29
|
+
for (let i = 0; i < connections.length; i++) {
|
|
30
|
+
connectionsObjectForFile.CONNECTIONS[`${connections[i].attributes.name}`] = {
|
|
31
|
+
...connections[i].attributes.configuration.default,
|
|
32
|
+
...connections[i].attributes.configuration.required,
|
|
33
|
+
};
|
|
34
|
+
connectionsObjectForFile.CONNECTIONS[`${connections[i].attributes.name}`].type = connections[i].attributes.type;
|
|
35
|
+
connectionsObjectForFile.CONNECTIONS[`${connections[i].attributes.name}`].identifier = connections[i].id;
|
|
36
|
+
}
|
|
37
|
+
const universalConfigFileBuffer = (0, fs_1.readFileSync)(universalFilePath);
|
|
38
|
+
const universalConfigFile = JSON.parse((_b = universalConfigFileBuffer.toString()) !== null && _b !== void 0 ? _b : { CONNECTIONS: {} });
|
|
39
|
+
universalConfigFile['CONNECTIONS'] = connectionsObjectForFile.CONNECTIONS;
|
|
40
|
+
(0, fs_1.writeFileSync)(universalFilePath, JSON.stringify(universalConfigFile));
|
|
41
|
+
return;
|
|
42
|
+
}
|
|
43
|
+
catch (err) {
|
|
44
|
+
throw new Error(`${err} - Error retrieving and loading connections from Deployment ID`);
|
|
45
|
+
}
|
|
46
|
+
};
|
|
47
|
+
exports.retrieveConnectionsForDeployment = retrieveConnectionsForDeployment;
|
|
48
|
+
//# sourceMappingURL=remoteConfig.js.map
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
{"version":3,"file":"remoteConfig.js","sourceRoot":"","sources":["../../../../lib/client/config/remoteConfig.ts"],"names":[],"mappings":";;;AAAA,2BAAiD;AACjD,uDAAoE;AAK7D,MAAM,gCAAgC,GAAG,KAAK,EACnD,UAAsB,EACtB,iBAAyB,EACzB,EAAE;;IACF,IAAI;QACF,MAAM,QAAQ,GAAG,UAAU,CAAC,MAAM,CAAC,QAAQ,CAAC;QAC5C,MAAM,SAAS,GAAG,UAAU,CAAC,MAAM,CAAC,SAAS,CAAC;QAC9C,MAAM,YAAY,GAAG,UAAU,CAAC,MAAM,CAAC,YAAY,CAAC;QACpD,MAAM,UAAU,GAAG,UAAU,CAAC,MAAM,CAAC,UAAU,CAAC;QAChD,MAAM,OAAO,GAA8B;YACzC,GAAG,EAAE,GAAG,UAAU,CAAC,MAAM,CAAC,YAAY,iBAAiB,QAAQ,qBAAqB,SAAS,gBAAgB,YAAY,wBAAwB,UAAU,EAAE;YAC7J,OAAO,EAAE;gBACP,cAAc,EAAE,0BAA0B;gBAC1C,aAAa,EAAE,GAAG,MAAA,UAAU,CAAC,WAAW,0CAAE,UAAU,EAAE;aACvD;YACD,MAAM,EAAE,KAAK;SACd,CAAC;QACF,MAAM,mBAAmB,GAAG,MAAM,IAAA,iCAAuB,EAAC,OAAO,CAAC,CAAC;QACnE,IAAI,mBAAmB,CAAC,UAAU,IAAI,GAAG,EAAE;YACzC,MAAM,SAAS,GAAG,IAAI,CAAC,KAAK,CAAC,mBAAmB,CAAC,IAAI,CAAC,CAAC;YACvD,MAAM,IAAI,KAAK,CACb,GAAG,mBAAmB,CAAC,UAAU,IAAI,SAAS,CAAC,KAAK,IAAI,SAAS,CAAC,iBAAiB,EAAE,CACtF,CAAC;SACH;QACD,MAAM,WAAW,GAAG,IAAI,CAAC,KAAK,CAAC,mBAAmB,CAAC,IAAI,CAAC;aACrD,IAAqC,CAAC;QACzC,MAAM,wBAAwB,GAAG,EAAE,WAAW,EAAE,EAAE,EAAE,CAAC;QACrD,KAAK,IAAI,CAAC,GAAG,CAAC,EAAE,CAAC,GAAG,WAAW,CAAC,MAAM,EAAE,CAAC,EAAE,EAAE;YAC3C,wBAAwB,CAAC,WAAW,CAClC,GAAG,WAAW,CAAC,CAAC,CAAC,CAAC,UAAU,CAAC,IAAI,EAAE,CACpC,GAAG;gBACF,GAAG,WAAW,CAAC,CAAC,CAAC,CAAC,UAAU,CAAC,aAAa,CAAC,OAAO;gBAClD,GAAG,WAAW,CAAC,CAAC,CAAC,CAAC,UAAU,CAAC,aAAa,CAAC,QAAQ;aACpD,CAAC;YACF,wBAAwB,CAAC,WAAW,CAClC,GAAG,WAAW,CAAC,CAAC,CAAC,CAAC,UAAU,CAAC,IAAI,EAAE,CACpC,CAAC,IAAI,GAAG,WAAW,CAAC,CAAC,CAAC,CAAC,UAAU,CAAC,IAAI,CAAC;YACxC,wBAAwB,CAAC,WAAW,CAClC,GAAG,WAAW,CAAC,CAAC,CAAC,CAAC,UAAU,CAAC,IAAI,EAAE,CACpC,CAAC,UAAU,GAAG,WAAW,CAAC,CAAC,CAAC,CAAC,EAAE,CAAC;SAClC;QACD,MAAM,yBAAyB,GAAG,IAAA,iBAAY,EAAC,iBAAiB,CAAC,CAAC;QAClE,MAAM,mBAAmB,GAAG,IAAI,CAAC,KAAK,CACpC,MAAA,yBAAyB,CAAC,QAAQ,EAAE,mCAAI,EAAE,WAAW,EAAE,EAAE,EAAE,CAC5D,CAAC;QACF,mBAAmB,CAAC,aAAa,CAAC,GAAG,wBAAwB,CAAC,WAAW,CAAC;QAC1E,IAAA,kBAAa,EAAC,iBAAiB,EAAE,IAAI,CAAC,SAAS,CAAC,mBAAmB,CAAC,CAAC,CAAC;QACtE,OAAO;KACR;IAAC,OAAO,GAAG,EAAE;QACZ,MAAM,IAAI,KAAK,CACb,GAAG,GAAG,gEAAgE,CACvE,CAAC;KACH;AACH,CAAC,CAAC;AArDW,QAAA,gCAAgC,oCAqD3C"}
|
|
@@ -1,33 +1,34 @@
|
|
|
1
1
|
"use strict";
|
|
2
2
|
Object.defineProperty(exports, "__esModule", { value: true });
|
|
3
|
-
exports.processStartUpHooks = void 0;
|
|
3
|
+
exports.processStartUpHooks = exports.validateMinimalConfig = void 0;
|
|
4
4
|
const dispatcher_1 = require("../../dispatcher");
|
|
5
5
|
const logger_1 = require("../../../logs/logger");
|
|
6
6
|
const checks_1 = require("../../checks");
|
|
7
7
|
const scm_1 = require("../../scm");
|
|
8
|
-
const configHelpers_1 = require("../../
|
|
8
|
+
const configHelpers_1 = require("../../config/configHelpers");
|
|
9
|
+
const validateMinimalConfig = async (clientOpts) => {
|
|
10
|
+
if (!clientOpts.config.brokerToken &&
|
|
11
|
+
!clientOpts.config.universalBrokerEnabled) {
|
|
12
|
+
const brokerToken = clientOpts.config.brokerToken;
|
|
13
|
+
// null, undefined, empty, etc.
|
|
14
|
+
logger_1.log.error({ brokerToken }, '[MISSING_BROKER_TOKEN] BROKER_TOKEN is required to successfully identify itself to the server');
|
|
15
|
+
const error = new ReferenceError('BROKER_TOKEN is required to successfully identify itself to the server');
|
|
16
|
+
error['code'] = 'MISSING_BROKER_TOKEN';
|
|
17
|
+
throw error;
|
|
18
|
+
}
|
|
19
|
+
if (!clientOpts.config.brokerServerUrl) {
|
|
20
|
+
const brokerServerUrl = clientOpts.config.brokerServerUrl;
|
|
21
|
+
// null, undefined, empty, etc.
|
|
22
|
+
logger_1.log.error({ brokerServerUrl }, '[MISSING_BROKER_SERVER_URL] BROKER_SERVER_URL is required to connect to the broker server');
|
|
23
|
+
const error = new ReferenceError('BROKER_SERVER_URL is required to connect to the broker server');
|
|
24
|
+
error['code'] = 'MISSING_BROKER_SERVER_URL';
|
|
25
|
+
throw error;
|
|
26
|
+
}
|
|
27
|
+
};
|
|
28
|
+
exports.validateMinimalConfig = validateMinimalConfig;
|
|
9
29
|
const processStartUpHooks = async (clientOpts, brokerClientId) => {
|
|
10
|
-
var _a, _b
|
|
30
|
+
var _a, _b;
|
|
11
31
|
try {
|
|
12
|
-
clientOpts.config.API_BASE_URL =
|
|
13
|
-
(_d = (_b = (_a = clientOpts.config.API_BASE_URL) !== null && _a !== void 0 ? _a : clientOpts.config.BROKER_DISPATCHER_BASE_URL) !== null && _b !== void 0 ? _b : (_c = clientOpts.config.BROKER_SERVER_URL) === null || _c === void 0 ? void 0 : _c.replace('//broker.', '//api.').replace('//broker2.', '//api.')) !== null && _d !== void 0 ? _d : 'https://api.snyk.io';
|
|
14
|
-
if (!clientOpts.config.brokerToken &&
|
|
15
|
-
!clientOpts.config.universalBrokerEnabled) {
|
|
16
|
-
const brokerToken = clientOpts.config.brokerToken;
|
|
17
|
-
// null, undefined, empty, etc.
|
|
18
|
-
logger_1.log.error({ brokerToken }, '[MISSING_BROKER_TOKEN] BROKER_TOKEN is required to successfully identify itself to the server');
|
|
19
|
-
const error = new ReferenceError('BROKER_TOKEN is required to successfully identify itself to the server');
|
|
20
|
-
error['code'] = 'MISSING_BROKER_TOKEN';
|
|
21
|
-
throw error;
|
|
22
|
-
}
|
|
23
|
-
if (!clientOpts.config.brokerServerUrl) {
|
|
24
|
-
const brokerServerUrl = clientOpts.config.brokerServerUrl;
|
|
25
|
-
// null, undefined, empty, etc.
|
|
26
|
-
logger_1.log.error({ brokerServerUrl }, '[MISSING_BROKER_SERVER_URL] BROKER_SERVER_URL is required to connect to the broker server');
|
|
27
|
-
const error = new ReferenceError('BROKER_SERVER_URL is required to connect to the broker server');
|
|
28
|
-
error['code'] = 'MISSING_BROKER_SERVER_URL';
|
|
29
|
-
throw error;
|
|
30
|
-
}
|
|
31
32
|
// if (!clientOpts.config.BROKER_CLIENT_URL) {
|
|
32
33
|
// const proto =
|
|
33
34
|
// !clientOpts.config.key && !clientOpts.config.cert ? 'http' : 'https';
|
|
@@ -74,8 +75,8 @@ const processStartUpHooks = async (clientOpts, brokerClientId) => {
|
|
|
74
75
|
if ((0, scm_1.commitSigningEnabled)(clientOpts.config)) {
|
|
75
76
|
const commitSigningRules = (0, scm_1.commitSigningFilterRules)();
|
|
76
77
|
if (clientOpts['universalBrokerEnabled']) {
|
|
77
|
-
(
|
|
78
|
-
(
|
|
78
|
+
(_a = clientOpts.filters['github'].private) === null || _a === void 0 ? void 0 : _a.push(...commitSigningRules);
|
|
79
|
+
(_b = clientOpts.filters['github-enterprise'].github.private) === null || _b === void 0 ? void 0 : _b.push(...commitSigningRules);
|
|
79
80
|
}
|
|
80
81
|
else {
|
|
81
82
|
if (clientOpts.filters instanceof Map) {
|
|
@@ -1 +1 @@
|
|
|
1
|
-
{"version":3,"file":"processHooks.js","sourceRoot":"","sources":["../../../../../lib/client/hooks/startup/processHooks.ts"],"names":[],"mappings":";;;AAAA,iDAA+C;AAC/C,iDAAqD;AACrD,yCAA8E;AAC9E,mCAA2E;AAI3E,
|
|
1
|
+
{"version":3,"file":"processHooks.js","sourceRoot":"","sources":["../../../../../lib/client/hooks/startup/processHooks.ts"],"names":[],"mappings":"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"}
|
package/dist/lib/client/index.js
CHANGED
|
@@ -19,8 +19,12 @@ const forwardHttpRequestOverHttp_1 = require("../common/relay/forwardHttpRequest
|
|
|
19
19
|
const socketHelpers_1 = require("./utils/socketHelpers");
|
|
20
20
|
const filtersAsync_1 = require("../common/filter/filtersAsync");
|
|
21
21
|
const websocketConnectionMiddlewares_1 = require("./routesHandler/websocketConnectionMiddlewares");
|
|
22
|
-
const configHelpers_1 = require("./
|
|
22
|
+
const configHelpers_1 = require("./config/configHelpers");
|
|
23
23
|
const oauth_1 = require("./auth/oauth");
|
|
24
|
+
const config_1 = require("../common/config/config");
|
|
25
|
+
const remoteConfig_1 = require("./config/remoteConfig");
|
|
26
|
+
const signals_1 = require("../common/utils/signals");
|
|
27
|
+
const cleanup_1 = require("./utils/cleanup");
|
|
24
28
|
process.on('uncaughtException', (error) => {
|
|
25
29
|
if (error.message == 'read ECONNRESET') {
|
|
26
30
|
logger_1.log.error({ msg: error.message, stackTrace: error.stack }, 'ECONNRESETs Catch all:', error.message);
|
|
@@ -31,12 +35,23 @@ process.on('uncaughtException', (error) => {
|
|
|
31
35
|
}
|
|
32
36
|
});
|
|
33
37
|
const main = async (clientOpts) => {
|
|
34
|
-
var _a, _b;
|
|
38
|
+
var _a, _b, _c, _d, _e, _f;
|
|
35
39
|
try {
|
|
36
40
|
logger_1.log.info({ version: version_1.default }, 'Broker starting in client mode');
|
|
37
|
-
|
|
38
|
-
|
|
39
|
-
|
|
41
|
+
clientOpts.config.API_BASE_URL =
|
|
42
|
+
(_d = (_b = (_a = clientOpts.config.API_BASE_URL) !== null && _a !== void 0 ? _a : clientOpts.config.BROKER_DISPATCHER_BASE_URL) !== null && _b !== void 0 ? _b : (_c = clientOpts.config.BROKER_SERVER_URL) === null || _c === void 0 ? void 0 : _c.replace('//broker.', '//api.').replace('//broker2.', '//api.')) !== null && _d !== void 0 ? _d : 'https://api.snyk.io';
|
|
43
|
+
await (0, processHooks_1.validateMinimalConfig)(clientOpts);
|
|
44
|
+
if (((_e = clientOpts.config.brokerClientConfiguration.common.oauth) === null || _e === void 0 ? void 0 : _e.clientId) &&
|
|
45
|
+
((_f = clientOpts.config.brokerClientConfiguration.common.oauth) === null || _f === void 0 ? void 0 : _f.clientSecret) &&
|
|
46
|
+
!process.env.SKIP_REMOTE_CONFIG) {
|
|
47
|
+
clientOpts.accessToken = await (0, oauth_1.fetchJwt)(clientOpts.config.API_BASE_URL, clientOpts.config.brokerClientConfiguration.common.oauth.clientId, clientOpts.config.brokerClientConfiguration.common.oauth.clientSecret);
|
|
48
|
+
await (0, remoteConfig_1.retrieveConnectionsForDeployment)(clientOpts, `${__dirname}/../../../../config.universal.json`);
|
|
49
|
+
// Reload config with connection
|
|
50
|
+
await (0, config_1.loadBrokerConfig)();
|
|
51
|
+
const globalConfig = { config: (0, config_1.getConfig)() };
|
|
52
|
+
clientOpts.config = Object.assign({}, clientOpts.config, globalConfig.config);
|
|
53
|
+
(0, signals_1.handleTerminationSignal)(cleanup_1.cleanUpUniversalFile);
|
|
54
|
+
}
|
|
40
55
|
const loadedClientOpts = {
|
|
41
56
|
loadedFilters: (0, filtersAsync_1.loadAllFilters)(clientOpts.filters, clientOpts.config),
|
|
42
57
|
...clientOpts,
|
|
@@ -45,23 +60,22 @@ const main = async (clientOpts) => {
|
|
|
45
60
|
logger_1.log.error({ clientOpts }, 'Unable to load filters');
|
|
46
61
|
throw new Error('Unable to load filters');
|
|
47
62
|
}
|
|
48
|
-
|
|
49
|
-
|
|
50
|
-
|
|
51
|
-
}
|
|
63
|
+
const brokerClientId = (0, uuid_1.v4)();
|
|
64
|
+
logger_1.log.info({ brokerClientId }, 'generated broker client id');
|
|
65
|
+
const hookResults = await (0, processHooks_1.processStartUpHooks)(clientOpts, brokerClientId);
|
|
52
66
|
const globalIdentifyingMetadata = {
|
|
53
67
|
capabilities: ['post-streams'],
|
|
54
68
|
clientId: brokerClientId,
|
|
55
|
-
filters:
|
|
69
|
+
filters: loadedClientOpts.filters,
|
|
56
70
|
preflightChecks: hookResults.preflightCheckResults,
|
|
57
71
|
version: version_1.default,
|
|
58
72
|
clientConfig: (0, configHelpers_1.getClientConfigMetadata)(clientOpts.config),
|
|
59
73
|
role: client_1.Role.primary,
|
|
60
74
|
};
|
|
61
75
|
let websocketConnections = [];
|
|
62
|
-
if (
|
|
63
|
-
const integrationsKeys =
|
|
64
|
-
? Object.keys(
|
|
76
|
+
if (loadedClientOpts.config.universalBrokerEnabled) {
|
|
77
|
+
const integrationsKeys = loadedClientOpts.config.connections
|
|
78
|
+
? Object.keys(loadedClientOpts.config.connections)
|
|
65
79
|
: [];
|
|
66
80
|
if (integrationsKeys.length < 1) {
|
|
67
81
|
logger_1.log.error({}, `No connection found. Please add connections to config.${process.env.SERVICE_ENV}.json.`);
|
|
@@ -75,20 +89,20 @@ const main = async (clientOpts) => {
|
|
|
75
89
|
websocketConnections.push((0, socket_1.createWebSocket)(loadedClientOpts, globalIdentifyingMetadata, client_1.Role.secondary));
|
|
76
90
|
}
|
|
77
91
|
// start the local webserver to listen for relay requests
|
|
78
|
-
const { app, server } = (0, webserver_1.webserver)(
|
|
92
|
+
const { app, server } = (0, webserver_1.webserver)(loadedClientOpts.config, loadedClientOpts.port);
|
|
79
93
|
const httpToWsForwarder = (0, forwardHttpRequest_1.forwardHttpRequest)(loadedClientOpts);
|
|
80
|
-
const httpToAPIForwarder = (0, forwardHttpRequestOverHttp_1.forwardHttpRequestOverHttp)(loadedClientOpts,
|
|
94
|
+
const httpToAPIForwarder = (0, forwardHttpRequestOverHttp_1.forwardHttpRequestOverHttp)(loadedClientOpts, loadedClientOpts.config);
|
|
81
95
|
// IMPORTANT: defined before relay (`app.all('/*', ...`)
|
|
82
|
-
app.get('/health/checks', (0, checks_handler_1.handleChecksRoute)(
|
|
83
|
-
app.get('/health/checks/:checkId', (0, checks_handler_1.handleCheckIdsRoutes)(
|
|
84
|
-
app.get(
|
|
96
|
+
app.get('/health/checks', (0, checks_handler_1.handleChecksRoute)(loadedClientOpts.config));
|
|
97
|
+
app.get('/health/checks/:checkId', (0, checks_handler_1.handleCheckIdsRoutes)(loadedClientOpts.config));
|
|
98
|
+
app.get(loadedClientOpts.config.brokerHealthcheckPath || '/healthcheck', (req, res, next) => {
|
|
85
99
|
res.locals.websocketConnections = websocketConnections;
|
|
86
100
|
next();
|
|
87
101
|
}, healthcheckHandler_1.healthCheckHandler);
|
|
88
102
|
app.get('/filters', (req, res) => {
|
|
89
103
|
res.send(loadedClientOpts.filters);
|
|
90
104
|
});
|
|
91
|
-
app.get(
|
|
105
|
+
app.get(loadedClientOpts.config.brokerSystemcheckPath || '/systemcheck', (req, res, next) => {
|
|
92
106
|
res.locals.clientOpts = loadedClientOpts;
|
|
93
107
|
next();
|
|
94
108
|
}, systemCheckHandler_1.systemCheckHandler);
|
|
@@ -1 +1 @@
|
|
|
1
|
-
{"version":3,"file":"index.js","sourceRoot":"","sources":["../../../lib/client/index.ts"],"names":[],"mappings":";;;;;;AAAA,+BAAoC;AACpC,qCAA6D;AAC7D,2CAA+C;AAC/C,2EAAwE;AACxE,wDAAqD;AACrD,sEAA8C;AAC9C,gEAGqC;AACrC,2EAAwE;AACxE,2EAAwE;AACxE,2CAAgF;AAChF,+
|
|
1
|
+
{"version":3,"file":"index.js","sourceRoot":"","sources":["../../../lib/client/index.ts"],"names":[],"mappings":"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"}
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
{"version":3,"file":"api.js","sourceRoot":"","sources":["../../../../lib/client/types/api.ts"],"names":[],"mappings":""}
|
|
@@ -0,0 +1,12 @@
|
|
|
1
|
+
"use strict";
|
|
2
|
+
Object.defineProperty(exports, "__esModule", { value: true });
|
|
3
|
+
exports.cleanUpUniversalFile = void 0;
|
|
4
|
+
const node_fs_1 = require("node:fs");
|
|
5
|
+
const cleanUpUniversalFile = (universalCfgFilePath = `${__dirname}/../../../../config.universal.json`) => {
|
|
6
|
+
const fileToCleanUpBuffer = (0, node_fs_1.readFileSync)(universalCfgFilePath);
|
|
7
|
+
const fileToCleanUp = JSON.parse(fileToCleanUpBuffer.toString());
|
|
8
|
+
delete fileToCleanUp['CONNECTIONS'];
|
|
9
|
+
(0, node_fs_1.writeFileSync)(universalCfgFilePath, JSON.stringify(fileToCleanUp));
|
|
10
|
+
};
|
|
11
|
+
exports.cleanUpUniversalFile = cleanUpUniversalFile;
|
|
12
|
+
//# sourceMappingURL=cleanup.js.map
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
{"version":3,"file":"cleanup.js","sourceRoot":"","sources":["../../../../lib/client/utils/cleanup.ts"],"names":[],"mappings":";;;AAAA,qCAAsD;AAE/C,MAAM,oBAAoB,GAAG,CAClC,oBAAoB,GAAG,GAAG,SAAS,oCAAoC,EACvE,EAAE;IACF,MAAM,mBAAmB,GAAG,IAAA,sBAAY,EAAC,oBAAoB,CAAC,CAAC;IAC/D,MAAM,aAAa,GAAG,IAAI,CAAC,KAAK,CAAC,mBAAmB,CAAC,QAAQ,EAAE,CAAC,CAAC;IACjE,OAAO,aAAa,CAAC,aAAa,CAAC,CAAC;IACpC,IAAA,uBAAa,EAAC,oBAAoB,EAAE,IAAI,CAAC,SAAS,CAAC,aAAa,CAAC,CAAC,CAAC;AACrE,CAAC,CAAC;AAPW,QAAA,oBAAoB,wBAO/B"}
|
|
@@ -27,7 +27,7 @@ const findProjectRoot = (startDir) => {
|
|
|
27
27
|
return null;
|
|
28
28
|
};
|
|
29
29
|
exports.findProjectRoot = findProjectRoot;
|
|
30
|
-
const loadBrokerConfig = (localConfigForTest) => {
|
|
30
|
+
const loadBrokerConfig = async (localConfigForTest) => {
|
|
31
31
|
var _a;
|
|
32
32
|
dotenv_1.default.config({
|
|
33
33
|
path: path_1.default.join(process.cwd(), '.env'),
|
|
@@ -60,6 +60,7 @@ const loadBrokerConfig = (localConfigForTest) => {
|
|
|
60
60
|
config[key] = value.split(',').map((s) => s.trim());
|
|
61
61
|
}
|
|
62
62
|
}
|
|
63
|
+
return;
|
|
63
64
|
};
|
|
64
65
|
exports.loadBrokerConfig = loadBrokerConfig;
|
|
65
66
|
const getConsolidatedConfigForUniversalBroker = (configToConsolidate) => {
|
|
@@ -1 +1 @@
|
|
|
1
|
-
{"version":3,"file":"config.js","sourceRoot":"","sources":["../../../../lib/common/config/config.ts"],"names":[],"mappings":";;;;;;AAAA,4CAAoB;AACpB,gDAAwB;AACxB,0DAAkC;AAClC,6CAAyC;AACzC,oDAA4B;AAC5B,8CAAkD;AAElD,IAAI,MAAM,GAAwB,EAAE,CAAC;AAQ9B,MAAM,SAAS,GAAG,GAAG,EAAE;IAC5B,OAAO,MAAM,CAAC;AAChB,CAAC,CAAC;AAFW,QAAA,SAAS,aAEpB;AAGK,MAAM,eAAe,GAAG,CAAC,QAAgB,EAAiB,EAAE;IACjE,IAAI,UAAU,GAAG,QAAQ,CAAC;IAE1B,OAAO,UAAU,KAAK,GAAG,EAAE;QACzB,MAAM,cAAc,GAAG,cAAI,CAAC,IAAI,CAAC,UAAU,EAAE,qBAAqB,CAAC,CAAC;QAEpE,IAAI,YAAE,CAAC,UAAU,CAAC,cAAc,CAAC,EAAE;YACjC,OAAO,UAAU,CAAC;SACnB;QAED,UAAU,GAAG,cAAI,CAAC,OAAO,CAAC,UAAU,CAAC,CAAC;KACvC;IAED,OAAO,IAAI,CAAC;AACd,CAAC,CAAC;AAdW,QAAA,eAAe,mBAc1B;AAEK,MAAM,gBAAgB,GAAG,
|
|
1
|
+
{"version":3,"file":"config.js","sourceRoot":"","sources":["../../../../lib/common/config/config.ts"],"names":[],"mappings":"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"}
|
|
@@ -0,0 +1,15 @@
|
|
|
1
|
+
"use strict";
|
|
2
|
+
Object.defineProperty(exports, "__esModule", { value: true });
|
|
3
|
+
exports.handleTerminationSignal = void 0;
|
|
4
|
+
const handleTerminationSignal = (callback) => {
|
|
5
|
+
process.on('SIGINT', () => {
|
|
6
|
+
callback();
|
|
7
|
+
process.exit(0);
|
|
8
|
+
});
|
|
9
|
+
process.on('SIGTERM', () => {
|
|
10
|
+
callback();
|
|
11
|
+
process.exit(0);
|
|
12
|
+
});
|
|
13
|
+
};
|
|
14
|
+
exports.handleTerminationSignal = handleTerminationSignal;
|
|
15
|
+
//# sourceMappingURL=signals.js.map
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
{"version":3,"file":"signals.js","sourceRoot":"","sources":["../../../../lib/common/utils/signals.ts"],"names":[],"mappings":";;;AAAO,MAAM,uBAAuB,GAAG,CAAC,QAAoB,EAAE,EAAE;IAC9D,OAAO,CAAC,EAAE,CAAC,QAAQ,EAAE,GAAG,EAAE;QACxB,QAAQ,EAAE,CAAC;QACX,OAAO,CAAC,IAAI,CAAC,CAAC,CAAC,CAAC;IAClB,CAAC,CAAC,CAAC;IAEH,OAAO,CAAC,EAAE,CAAC,SAAS,EAAE,GAAG,EAAE;QACzB,QAAQ,EAAE,CAAC;QACX,OAAO,CAAC,IAAI,CAAC,CAAC,CAAC,CAAC;IAClB,CAAC,CAAC,CAAC;AACL,CAAC,CAAC;AAVW,QAAA,uBAAuB,2BAUlC"}
|
package/dist/lib/index.js
CHANGED
|
@@ -47,7 +47,7 @@ const app = async ({ port = 7341, client = false, config }) => {
|
|
|
47
47
|
process.env.SERVICE_ENV = process.env.SERVICE_ENV || 'universal';
|
|
48
48
|
}
|
|
49
49
|
// loading it "manually" simplifies lot testing
|
|
50
|
-
(0, config_1.loadBrokerConfig)();
|
|
50
|
+
await (0, config_1.loadBrokerConfig)();
|
|
51
51
|
const globalConfig = (0, config_1.getConfig)();
|
|
52
52
|
const localConfig = Object.assign({}, globalConfig, config);
|
|
53
53
|
localConfig.brokerType = method;
|
package/dist/lib/index.js.map
CHANGED
|
@@ -1 +1 @@
|
|
|
1
|
-
{"version":3,"file":"index.js","sourceRoot":"","sources":["../../lib/index.ts"],"names":[],"mappings":";;;;;;;;;;;;;;;;;;;;;;;;;;AAAA,mBAAiB,CAAC,wBAAwB;AAE1C,6FAE8C;AAC9C,0CAA8C;AAC9C,mDAIgC;AAIhC,OAAO,CAAC,EAAE,CAAC,0BAA0B,EAAE,CAAC,KAAK,EAAE,MAAM,EAAE,EAAE;IACvD,YAAM,CAAC,KAAK,CAAC,EAAE,KAAK,EAAE,MAAM,EAAE,EAAE,2BAA2B,CAAC,CAAC;AAC/D,CAAC,CAAC,CAAC;AAEH,OAAO,CAAC,EAAE,CAAC,oBAAoB,EAAE,CAAC,MAAW,EAAE,EAAE;IAC/C,YAAM,CAAC,KAAK,CACV;QACE,MAAM,EAAE,MAAM,CAAC,KAAK;KACrB,EACD,2BAA2B,CAC5B,CAAC;AACJ,CAAC,CAAC,CAAC;AAEI,MAAM,GAAG,GAAG,KAAK,EAAE,EAAE,IAAI,GAAG,IAAI,EAAE,MAAM,GAAG,KAAK,EAAE,MAAM,EAAE,EAAE,EAAE;IACnE,+EAA+E;IAC/E,IAAI,OAAO,CAAC,GAAG,CAAC,cAAc,EAAE;QAC9B,OAAO,OAAO,CAAC,KAAK,CAAC,OAAO,CAAC,OAAO,CAAC,wBAAwB,CAAC,CAAC,CAAC;KACjE;IAED,MAAM,MAAM,GAAG,MAAM,CAAC,CAAC,CAAC,QAAQ,CAAC,CAAC,CAAC,QAAQ,CAAC;IAC5C,IAAI,OAAO,CAAC,GAAG,CAAC,wBAAwB,EAAE;QACxC,yEAAyE;QACzE,OAAO,CAAC,GAAG,CAAC,WAAW,GAAG,OAAO,CAAC,GAAG,CAAC,WAAW,IAAI,WAAW,CAAC;KAClE;IAED,+CAA+C;IAC/C,IAAA,yBAAgB,GAAE,CAAC;
|
|
1
|
+
{"version":3,"file":"index.js","sourceRoot":"","sources":["../../lib/index.ts"],"names":[],"mappings":"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"}
|
package/dist/package.json
CHANGED
|
@@ -1 +1 @@
|
|
|
1
|
-
{"program":{"fileNames":["../node_modules/typescript/lib/lib.es5.d.ts","../node_modules/typescript/lib/lib.es2015.d.ts","../node_modules/typescript/lib/lib.es2016.d.ts","../node_modules/typescript/lib/lib.es2017.d.ts","../node_modules/typescript/lib/lib.es2018.d.ts","../node_modules/typescript/lib/lib.es2019.d.ts","../node_modules/typescript/lib/lib.es2020.d.ts","../node_modules/typescript/lib/lib.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/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/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/utils/integrations.ts","../lib/client/auth/oauth.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/client/dispatcher/dispatcher-service.ts","../lib/client/dispatcher/client/api.ts","../lib/client/dispatcher/index.ts","../lib/common/utils/urlValidator.ts","../lib/client/checks/config/brokerClientUrlCheck.ts","../lib/client/checks/config/universalConnectionConfigCheck.ts","../lib/client/checks/config/index.ts","../lib/client/checks/utils.ts","../lib/client/checks/index.ts","../lib/client/utils/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/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/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/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/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/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","3846d0dcf468a1d1a07e6d00eaa37ec542956fb5fe0357590a6407af20d2ff90","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":"b6a4a51bc749ad882c33d98563ff5a94716ca884bfde949a8c97bad530e4ee2c","affectsGlobalScope":true},"16b872cf5432818bdbf405428b4a1d77bb2a7ab908e8bd6609f9a541cea92f81","fe39ceafa361b6d339b518936275eff89a77e7dfe92f2efa5fb97abf9a95ca49",{"version":"4009dd21843fe4a62d1d97b584a2937ca9f045df6fbd65c8b264d8dd04b656fd","affectsGlobalScope":true},"a40826e8476694e90da94aa008283a7de50d1dafd37beada623863f1901cb7fb","5f74757c479da70bc82930f50c6a5cfea4ff9f2979fd965d4ff91de0f6291a22","278fe296432b9840660d6e0d1778b4b4897a591d4b910a5f7ac8db0b476a8af7","1c611ff373ce1958aafc40b328048ac2540ba5c7f373cf2897e0d9aeaabe90a0","bea5c9fc0843a6961411ab4a04df856a8372448bc0d180da0c3a054ff31044b8","715873cecbfcebb49f293f0521bd0955d6298486e2eeb9c7bbf5e9f20a6ed152","c6cf9428f45f3d78b07df7d7aab1569994c177d36549e3a962f952d89f026bc4",{"version":"2c71199d1fc83bf17636ad5bf63a945633406b7b94887612bba4ef027c662b3e","affectsGlobalScope":true},{"version":"6c7b9d2139abd8f2e83ed8fa018c3799ab3187755a6665621feb6e93d3429ac3","affectsGlobalScope":true},"5a2f6de23113659e83dc8c5edb9f3c5bcd6136f74dcc1785b3df4eef1271e1f3","021ca24be8eb8c46f99b4e03ebf872931f590c9b07b88d715c68bd30495b6c44","5899ab1898582115c432cccef063298f75477bf2cebe5473360043fddd67bcc6","6b97f4106d72ae6b4ebf4e46d2fe90f4d04dd04b3dbff6e294572440a428209d","e3baa0c5780c2c805ec33a999722a2f740b572eb3746fd0a5f93a0a5c3dbf7f6","48fedd2f8549a2ae7e62f30fdb015779c2a7b536760730c5269406cd3d17cab2",{"version":"089867511b37a534ae71f3d9bc97acc0b925b7f5dbec113f98c4b49224c694eb","affectsGlobalScope":true},"e0cc19f50900706e7aae038565e825f2014ac5325b99b3daabf8ecd5d3d09f1a","f5ce35485541e817c2d4105d3eb78e3e538bbb009515ed014694363fa3e94ceb","323506ce173f7f865f42f493885ee3dacd18db6359ea1141d57676d3781ce10c",{"version":"bd88055918cf8bf30ad7c9269177f7ebeafd4c5f0d28919edccd1c1d24f7e73c","affectsGlobalScope":true},{"version":"645baafeaed6855c8796fcbae4e813021c65f36eaa3f6178535457a2366f6849","affectsGlobalScope":true},"ea3ab3727cd6c222d94003ecafa30e8550c61eadcdabbf59514aee76e86211a5","d3cdd41693c5ed6bec4f1a1c399d9501372b14bd341bc46eedacf2854c5df5a7","2de7a21c92226fb8abbeed7a0a9bd8aa6d37e4c68a8c7ff7938c644267e9fcc1","6d6070c5c81ba0bfe58988c69e3ba3149fc86421fd383f253aeb071cbf29cd41","48dab0d6e633b8052e7eaa0efb0bb3d58a733777b248765eafcb0b0349439834","d3e22aaa84d935196f465fff6645f88bb41352736c3130285eea0f2489c5f183","269929a24b2816343a178008ac9ae9248304d92a8ba8e233055e0ed6dbe6ef71","93452d394fdd1dc551ec62f5042366f011a00d342d36d50793b3529bfc9bd633","5195aeb0de306d1c5ca8033457fbcab5987657112fa6d4971cfeb7644493a369","c5dbf0003bc9f0f643e54cd00a3868d1afe85497fecb56be6f2373dc85102924",{"version":"6fa61015444e843013443f2e5ca6bee5f033cbf361f953fd932abb0c029b73b2","affectsGlobalScope":true},{"version":"300f8e9de0b0c3482be3e749462b6ebc3dab8a316801f1da0def94aed0cd2018","affectsGlobalScope":true},"4e228e78c1e9b0a75c70588d59288f63a6258e8b1fe4a67b0c53fe03461421d9","3df5b34f3449733bc4831b8d670f958a045e7a3f5d7b0e21991ef95408dbec13","76a89af04f2ba1807309320dab5169c0d1243b80738b4a2005989e40a136733e","c045b664abf3fc2a4750fa96117ab2735e4ed45ddd571b2a6a91b9917e231a02",{"version":"068b8ee5c2cd90d7a50f2efadbbe353cb10196a41189a48bf4b2a867363012b4","affectsGlobalScope":true},{"version":"0c312a7c5dec6c616f754d3a4b16318ce8d1cb912dfb3dfa0e808f45e66cbb21","affectsGlobalScope":true},"6f44a190351ab5e1811abebe007cf60518044772ccc08244f9f241706afa767f","fecdf44bec4ee9c5188e5f2f58c292c9689c02520900dceaaa6e76594de6da90","2641e5e19268b6f5038ad48a6e2598965301df8a77c48c99d8df760a6a154204",{"version":"6a4a80787c57c10b3ea8314c80d9cc6e1deb99d20adca16106a337825f582420","affectsGlobalScope":true},"f2b9440f98d6f94c8105883a2b65aee2fce0248f71f41beafd0a80636f3a565d",{"version":"ab9b9a36e5284fd8d3bf2f7d5fcbc60052f25f27e4d20954782099282c60d23e","affectsGlobalScope":true},"b510d0a18e3db42ac9765d26711083ec1e8b4e21caaca6dc4d25ae6e8623f447","5fb46bf84a85cf5e924e30465b7f919c777a1a03af44ae8c273d2ca229dcfd44","b8e7261f41dd775524077306a69c01796bd5a2a742c7338e6607ff4e689bc356","607d8cd0adda041284326a16e1579d29329d8a1d769859e99ea9dbf23b674539","f634e4c7d5cdba8e092d98098033b311c8ef304038d815c63ffdb9f78f3f7bb7","f6099bac6a55fc3b1e2b78874e92a0249bef1d4756e31618bf8cb17c3809709a","a168969b194c810bd6138b1579b6677816618fc9c317ba336dd5359abf9d0afa","b9f515dd1066637030af7e675144ac190e0b410812e66e37496344df056838b1","dba7efbdee28034f915a59aaede4757ec054c5e22ac5d05a35cc9b5bf5ea99f3","028eab144f41d0bffb3079b52181b70a50d7989e4b425be54c930027d194c0fd","cef53ca4c17f6bb85ec755445999ecf8131f65fb9a08d6ab77bbdd16222ceb23","6125f66958e9666a122dec70ef95a6c487be4b0a166117cfde34fc48125b87ae","8b1b89aaf9ce3cfa551f67ecc2ddbf888dea6f13a5e6a9d4cb7cb9cfbe9159a4","234315dd1f8236a42604c6c74667d1416e83f30cffc4e1240c412a0caffb472e","2735a111b9c2ea67e9f10630ecbee81e232b3c98eab6a5dcef4942c88aba4be5","9f9722948f56168eedba5e323cfa9f5f72c913f485a080a435ba399debcf1511","bb60e3f14730addd0a1c4552397bf2463a8788571e17c7e27d4f7c5b97a947a9","fa8a1e929c71f9d61d28ce59f2142f085d9b6119884eaff58478972da61c1890","f764042c6f1a9e30c0b671284e1ec55358b946065f2a0ed57bb595b4783c799a","588eeca7e191d06becc548480cb25ebe48ebae727837bdf6f7bcb6691cd83a0b","8a8e9e2412cf232d95d8999dec2fe2ca613a96d6839d14ba2fb2eecad53da730","7f5f299d5f57a95b7428652d97dab8db49990bb04f3740cf1ff693119da47dcf","1fdfa1d0e312c80d8cce5595547889f5dfa0a2a35d43376a0b47da77cc70dcb6","1df1b6fe0621ce05b4123e4ebec8e6c719400a91c6363ba1209f5075a59d6dba","c6a17102f358f82bd8920dd7da8254c70f6bc4faae3eb35c5860a45dc574c234","783afe5266ea760f59dd057bf45cc3e9e568b6b173dcdd8d03ec1a84dad2ccba","b65d766dbda435d2af678edeec7ccf112706ef685f6a20a180e1876dbd4f6b25","61b55647e947d0381055791bfbc75ac1d551da9308d67c03d448c1ecdf4e1141","d5aa318857dc9474f5d34b57903aec06904dcba1a5491f5b453490fd3b9abf1d","6e6f2b759dc3a5a38d20c766e7b820b2b3c263515e2faa0cd8584d701d17e183","c2f0d6f297a0340ea317e5b5d001505fd089db7f1aae226b3d4a868790643f05","ef0c035c127c91e6131ce002546ff1e166d665fd0403b3edf2cacda4e434d15a","428de2f733aac226862f3984ef67271139c12f0361613d8491fd82eb0a9be8ad","c0d72586228b49f84a0ddad39104b9ebfb99379d2f405f4f20942900a19dac9a","aa00c40656919f49a49e048a570f137a17a0c142c02396fedaf87e3690e7c381","9cf1457427c1f91bc91bf85fc05e4d4928869efd14316c43f97816677d82f77a","16b68528d65918e50058b621b5f7b43e16986bda36ee284f007540a91b0c2ce3","9854162d1c9f86702038a30132beee61410c279f3aec75a59372ca05faeb504e","fe4d850923b0082afa13a36e7ca0dfde105d510ec8a7b76167637c28fc793bb1","853b1081cc49b27b260b4956b96358acb673f49494b542f5ddf05d61fe67709c","48f7e457d23e6fa17669dd9ee30eb72a272a90a1496a2833994507fa5a0008d9","66db3b632a828b31bdb7e039ef82c9156dfbcd658c84a3e38711eb774662bce2","4bea15e35b4659222d01e0af6c78adff12689a79665d868a58fb37b7a529d23d","faaffcab2cba111febe15e8fb7fd617f4dcb2a4a3166fdf9db046b5ce3075f0b","1bb98610e84a478ddc0d97514ba35892473f747b2010140e0477bce4f4a5c0f5","1f17fab3c3d156fca17d805a40951972254baed3fe88153b9ada8cb4a9b227ca","48c7c11bb2d7a0c5f11548247a4b7f95fbffb7afa53feacb79c2bebe818aa0cd","2e180800f96a2a1d13df042b61b4fc6bff37a20026b0baeb64c6db8e8a041eea","4eebe6fdc2dcde8d57d6f19b9ff46864ae9778408ce00c4138fe62310a5aa1ef","1907f136ceda2e9ac6cad5adaf9736015fbe66ec914bcb5f400163a3e4c4dd7c","d3f2d715f57df3f04bf7b16dde01dec10366f64fce44503c92b8f78f614c1769","b78cd10245a90e27e62d0558564f5d9a16576294eee724a59ae21b91f9269e4a","dcc9081d68c2ade5c51ac7bf5f37cce630359408e713999269b77f611a30d871","2f5747b1508ccf83fad0c251ba1e5da2f5a30b78b09ffa1cfaf633045160afed",{"version":"a5562ab0448c81180ef220ff104441a4d67187a2259e6008397e7531a821f0e7","affectsGlobalScope":true},"b71c603a539078a5e3a039b20f2b0a0d1708967530cf97dec8850a9ca45baa2b","34118be360cdd3381bbebbfd4b093c394460c8fc5df40688d58f45d86ab1448b","104c67f0da1bdf0d94865419247e20eded83ce7f9911a1aa75fc675c077ca66e","cc0d0b339f31ce0ab3b7a5b714d8e578ce698f1e13d7f8c60bfb766baeb1d35c","5c45abf1e13e4463eacfd5dedda06855da8748a6a6cb3334f582b52e219acc04","6f4e4e5a046171e70dfb4b1f3e6212de786bf2c1e2c4383ae0e61c4726fdd168","b688e6899b4ba2208e49bef019c759e0b70e9e5da188703e30400c833ba14cb5","3da82ff2c93f53ba71271eeb764af06f156fb63eed56b98c3944fd70a903a949","691b22259686f59c7abadb27fc268196e10a13f57cd1c00da816676ff724189a","6546c54580ed782ac5fa7ce46df2bca3de24859b73cbb005572f7943543a45df","d295a90c9f5b1f746488edea8985af006d60cdb28639b61e72f27732418c4a34","6e29853e9c1183668a5caf27bcc935cd14c624b7d83211ce4629d588b83cb702","013f27f1d9df0814748a33b7a9c74bbdc94432f54ac58842be85b645da5bbc26","158fb3ab521da0a909249ef6e01758625eab1f7068660fd48a1c61593d19cabf","db26eef90552b690d2cd81b1116e08e7d54de2fbaf750191c17230627eaaaa09","ceebc193b7e71ea9caceb27b75be8ec51b375da9495b4b1bb54142583df679e1","6beab067d249104f7f4436b57ee9031ff9640a3933045f2132f68148779607cc","66f8b3cf8c4e6b43c126aef6e1e69dc40a8cddd34d82857610ba97cf5542c428","e81f88e96194e9c6908c0199b64fa7de53c67227044a9e72d95e1046d007d9a0","54124f504776e46fa2de0d4999f89765cb47975f949f84588b897cbe43865e48","2ad1a1cd994e62ddf71883bf11d644758769a3bfea49396f02027961d51df9e3","b8b1e6141f16b9b5449156e6d34d6bcf6386487239f14fa96ed2108c4f3f65db","a2c02b8d780bc5361bd49f34d47b761d54b8f8309b6ebb9d2f447b80434c61ff","bc16e48a012031f3867b93180b7c04324f437f36b9523fa6c33a5037da1b56f0","b393a5d180dcb9f91762f83f915a775c6acf6aaabf7f0ee3e49de28ae161488c","86eb8aa1e46f50cc53c190507f7c25865eb7692328bfa9d2327d5858b80a31c6","930529d90d690b4d6a430a78206a5abb753f2472f46e56cfb8a9655d7726caaf","2b9442aad20827dfd6923ff5605d6a5ee545a99453f508caa9fccd33bb0eafdd","18bcbb347f6f8d81f4da0f9514fdb3871a20a19f6d0ddf4b8a9bcd204e6cbd79","94545d314c1c9bf043379392cc9789c27ec772e4853c5624e9f2dd9d2f92804b","6dd8b6b51f331cd8a3384e8de32d4fa2bef4c8d006495633792f6f6214bcb23e","893ada0daab97665ca9e9ce67a5929b45acb40aac2be9991ea155785ccd14261","cbf3a941838a1dbd1f3152a256a37b853daa37b6781165ad192305266c8a6972","dd67745a114582281423faf89a9176b70f4ae81d53b005a7c9c4a6ec71f98bf2","8879697de10c6c15caede095ddd80b8dd35ad78a66c7ff25391037b933944b5e","ce4fd380597a02446bff95c085d5b37951be987a4497300d1b5435633dcc02ad","39d1a0fb9424a8b37327e0dcf9bfbda6455d29c76ee8fab80dd717efaa44ec96","0c6abbd24529fd30358f410da8116260dcb63ca2aa64aeee22c7940fea19d7e0","9c173187aeb9596afb99b80358b8aac22984fbeeb17e00eaf5c73a6522b7b972","6a0b586fe6ec79de42b5c59c280ec05fd8e1ac2804aeb040fc515cfe04c9c025","27609e731512c92c7ffefdeee9bd4b04988ef31a7570c886775183bebc8b237c","03344b8ded33718317ae2d8f46e67cdd3843f7ff06cb1e176b77aad7c8488e4e","74b9eebec9649be2c532be99a682c6434bc31d1be11b6e1fecfa5f4bc795ccb6","d3c53904e4258d97ae5b7cd6daad35af0eb46dedae6a10d5620bc51ada00d61d","cab77b3f756e05d96bbc7209af80659200105720385bcdf1bc9585c82afb3349","62899a76679f04094ab88add515bde051a628e7cec38d7554770a628f4508a76","f64487e06875cfbe0cc854328920403df337dc6c1925070995653ac71c266c0e","dfd06b48e69ff4ab95a33fd83ad7eca77567a7c230a9cbf4a47063c04246d858","f218fbb52c1192c386986d985d213cf8ffe29f3fc4b0b0580ad65df6381be48e","35c57738f7982fdfb51f37e6658f71c0994e1bb5857d2ea6f191a0a55aaa3cb4","5ad56a97f84ed672635f498bb0ffc56feb6d6fc02243f39262d849d77cd35bc5","8a087e0e03ba7d4ff15247fa73c1d7de19bac9883398d1fdef64aa567291eb4f","e7b59c0e6c6a541cb0d7b9e43b8c28fb28bed6002f17a00856469ff50dca96fe","18b5a4386e498b26f5dd52eedfd78ef960cceb04a97cfe590ca2a05e19fea5eb","aa9b70eac841498495c926289d5724f05c007826fe5a1b7cf1974faf21bd30cf","f2e7822da8260294a3bf4df5cc08db1267938ae2a933ff88db8cce8e95dcb41a","89b350d42ac4fdbd15860690647dac82b2cfde1860b14db0dfee4b66ba5fd7b0","9da2ff90ff61041d5b495f13b3273c0b24bba4ef939d1b6718e294cc84ea55cd","799a2be8598de24deb59b1e87a0d592ae8d62c44d8c84e108844d278f650956c","d6b88ebeb395d9198c205fd8e029f2d8bfab8b72df36259344a5168be621b88f","c067dc605f8ddd973fa11cdb9946cab9340f67cbf961b1e5fc4b5f3acd0af8cd","e5da27785a9d3fe74a40251b436d77d65684a995bb338f5e7ba96316c9393fb0","0845ecf8f8667f9ef434855c1158206d1601ccbe9bf55aef316b804b297a869b","fe249c3f41465a2e4abaa92aca4fbd9e613b51ed6313676850f712de132ab98e","3c44d055457889f193f78ac947653ec9a8c5660cbee59e26d50422000b76740f","c9f9ba089ac2ded87954c1e947fdc702d239a325b6a4f816f3394cec1f4b5af6","dd2b4ff5479bba121f7312f253bc7776b44dfd08b0905b41b3332192eb19331c","0c9f2c5c6eba7fe142f6c7987b4c4de44cf5671182ca8c424af83989a32706c5","fbca5ffaebf282ec3cdac47b0d1d4a138a8b0bb32105251a38acb235087d3318","c552ba4963c2bd77d84b6bfaf6b9eb0aed9f0dbd55fb4ce663552d05f2b95418","87f287f296f3ff07dbd14ea7853c2400d995dccd7bd83206196d6c0974774e96","ddb0b9fcd2670bce028e60ca5768719c5d21508b00dc83acf6af25cbe1fcc5ec","2c8e55457aaf4902941dfdba4061935922e8ee6e120539c9801cd7b400fae050","8041cfce439ff29d339742389de04c136e3029d6b1817f07b2d7fcbfb7534990","670a76db379b27c8ff42f1ba927828a22862e2ab0b0908e38b671f0e912cc5ed","9d38964b57191567a14b396422c87488cecd48f405c642daa734159875ee81d9","069bebfee29864e3955378107e243508b163e77ab10de6a5ee03ae06939f0bb9","0504070e7eaba788f5d0d5926782ed177f1db01cee28363c488fae94950c0bbc","117ffeecf6c55e25b6446f449ad079029b5e7317399b0a693858faaaea5ca73e","6847334317c1bc1e6fc4b679b0095bbd2b6ee3b85fe3f26fc26bac462f68ef5e","2224f3072e3cc07906eeed5c71746779511fba2dd224addc5489bcdb489bdee5","3937b50a4de68f6d21614461e9d47af0d8421ca80fc2a72b667ca2151f492120","afe73051ff6a03a9565cbd8ebb0e956ee3df5e913ad5c1ded64218aabfa3dcb5","3f841292a135503a4cc1a9029af59dae135595810cfad5ca62ec1b2ad9846e8e","035a5df183489c2e22f3cf59fc1ed2b043d27f357eecc0eb8d8e840059d44245","a4809f4d92317535e6b22b01019437030077a76fec1d93b9881c9ed4738fcc54","5f53fa0bd22096d2a78533f94e02c899143b8f0f9891a46965294ee8b91a9434","763e521cf114b80e0dd0e21ca49b9f8ae62e8999555a5e7bade8ce36b33001c2","0d14fa22c41fdc7277e6f71473b20ebc07f40f00e38875142335d5b63cdfc9d2","3054ef91b855e005b9c4681399e9d64d2a7b07a22d539314d794f09e53b876a7","ffcc5500e77223169833fc6eb59b3a507944a1f89574e0a1276b0ea7fc22c4a4","22f13de9e2fe5f0f4724797abd3d34a1cdd6e47ef81fc4933fea3b8bf4ad524b","e3ba509d3dce019b3190ceb2f3fc88e2610ab717122dabd91a9efaa37804040d","cda0cb09b995489b7f4c57f168cd31b83dcbaa7aad49612734fb3c9c73f6e4f2","f72f8428f3c1caa22e9c247d046603b85b442c0dae7b77a7a0bc092c18867cb7",{"version":"195f63105abc03e72b6a176e3e34dfb5ac932b55db378fdc7874b1617e24b465","affectsGlobalScope":true},"f3d8c757e148ad968f0d98697987db363070abada5f503da3c06aefd9d4248c1","7e8d3f08435ad2cefe67f58182618bfc9a0a29db08cf2544b94cbcae754a9bd9","aa3bbe7b99354f3c6cc6794961655bec801bb6a720f121d4a2cfe963681e426d","cee62e64fc4bdfb3798ab8e21486fadd2027ce4128349989acc63905366f91c5","18730c5231e656317c093558b3467d2a3b357ffc45b4e56509c98fce5a775629","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","85f8ebd7f245e8bf29da270e8b53dcdd17528826ffd27176c5fc7e426213ef5a","ab82804a14454734010dcdcd43f564ff7b0389bee4c5692eec76ff5b30d4cf66","bae8d023ef6b23df7da26f51cea44321f95817c190342a36882e93b80d07a960","5d30d04a14ed8527ac5d654dc345a4db11b593334c11a65efb6e4facc5484a0e"],"options":{"alwaysStrict":false,"esModuleInterop":true,"module":199,"noImplicitAny":false,"noUnusedLocals":true,"outDir":"./","sourceMap":true,"strict":true,"target":6},"fileIdsList":[[251],[253,254,255,256],[97,106,139],[139,175,177],[139,148,149,192,205],[139,148,149,156,177,203,215],[148,149,216,217],[148,149,174],[139,149,156,177,203],[148,149,204],[139,148,149,205,218,219],[148],[139,175,177,212],[139,147,212,213],[139,146,149,150,173,214,220,221],[139,146,150,156,199,200,201,202,206,207,208,211,221,222,223,227,228],[139],[147,150,156,192,207],[138,139,146,150,174,192,209,210],[138,139,150,192,207],[171],[139,162,163],[139,148,164,165,170,171,172],[167,168,169],[139,143,144,145,146,147,150,151,152,182,196,197,198,199],[195],[139,146],[146,182],[139,146,147,150],[140,146,181],[141,149],[139,148,150],[139,148,156,175,177],[139,156,177,179],[138],[97,106,135,136,137,139],[138,139,148],[97,106,135,138,139,141],[106,139,140,141,154,161,174,185,224,225,226],[139,234,235],[99,101,114,115,138,139,154,156,157],[101,125,138],[99,101,138,139,157,175,176],[114,138,160,192,193],[97,99,101,139,147,191,192],[139,160,194],[114,139,141,146,153,160,192,194],[139,141,146,147,153,160,177,192],[139,140,141,146,147,150,153,158,160,175,180],[125,139,141,154,156,161,173,174],[139,154,175,177,178,179],[140],[141],[138,154],[159],[89],[155],[138,139,141,142,229,250],[134,138],[138,139,192],[139,146,156,202,227,237,239,243,245,246,247,248,249],[138,139,147,236],[139,192,233,243],[139,160,192,233,243],[139,160,192,194,233],[139,146,147,230,231,239,242],[139,160,233,237,243],[139,231,233,240,241],[139,160,195,233,237,238,239,243],[146,181,201,240],[192,244],[147,232],[259],[99,133],[259,260,261,262,263],[259,261],[99,133,190],[96,133],[99,133,190,192,267],[96,99,133,184,185,186],[185,187,189,191],[97,133],[272],[273],[279,282],[286],[83,96,99,100,104,110,125,133,188,258,265,267,268,271,285],[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],[291,330],[291,315,330],[330],[291],[291,316,330],[291,292,293,294,295,296,297,298,299,300,301,302,303,304,305,306,307,308,309,310,311,312,313,314,315,316,317,318,319,320,321,322,323,324,325,326,327,328,329],[316,330],[97,114,133,183],[99,133,183,188],[332],[234,235],[125,133],[275,281],[159,192],[279],[276,280],[166],[278],[277],[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":[[253,1],[257,2],[255,3],[199,4],[206,5],[216,6],[218,7],[217,8],[204,9],[205,10],[220,11],[149,12],[213,13],[214,14],[222,15],[229,16],[203,17],[208,18],[211,19],[228,20],[172,21],[164,22],[165,22],[173,23],[170,24],[200,25],[196,26],[152,27],[145,17],[197,28],[151,29],[143,17],[182,30],[150,31],[221,32],[210,33],[209,34],[198,35],[138,36],[174,37],[142,38],[227,39],[236,40],[158,41],[252,42],[177,43],[194,44],[176,17],[202,45],[195,46],[201,47],[223,48],[181,49],[175,50],[180,51],[141,52],[146,53],[225,54],[160,55],[147,56],[215,17],[156,57],[251,58],[178,17],[139,59],[246,60],[250,61],[237,62],[248,63],[249,64],[247,65],[243,66],[241,67],[242,68],[231,17],[240,69],[239,70],[245,71],[233,72],[261,73],[258,74],[264,75],[260,73],[262,76],[263,73],[191,77],[134,78],[190,74],[268,79],[269,74],[187,80],[192,81],[270,82],[273,83],[274,84],[283,85],[287,86],[285,86],[288,86],[286,87],[47,88],[48,88],[83,89],[84,90],[85,91],[86,92],[87,93],[88,94],[89,95],[90,96],[91,97],[92,98],[93,98],[95,99],[94,100],[96,101],[97,102],[98,103],[82,104],[99,105],[100,106],[101,107],[133,108],[102,109],[103,110],[104,111],[105,112],[106,113],[107,114],[108,115],[109,116],[110,117],[111,118],[112,118],[113,119],[114,120],[116,121],[115,122],[117,123],[118,124],[119,125],[120,126],[121,127],[122,128],[123,129],[124,130],[125,131],[126,132],[127,133],[128,134],[129,135],[130,136],[131,137],[315,138],[316,139],[291,140],[294,140],[313,138],[314,138],[304,138],[303,141],[301,138],[296,138],[309,138],[307,138],[311,138],[295,138],[308,138],[312,138],[297,138],[298,138],[310,138],[292,138],[299,138],[300,138],[302,138],[306,138],[317,142],[305,138],[293,138],[330,143],[324,142],[326,144],[325,142],[318,142],[319,142],[321,142],[323,142],[327,144],[328,144],[320,144],[322,144],[184,145],[189,146],[333,147],[235,148],[137,149],[282,150],[244,151],[280,152],[281,153],[193,78],[167,154],[279,155],[278,156],[65,157],[72,158],[64,157],[79,159],[56,160],[55,161],[78,162],[73,163],[76,164],[58,165],[57,166],[53,167],[52,168],[75,169],[54,170],[59,171],[63,171],[81,172],[80,171],[67,173],[68,174],[70,175],[66,176],[69,177],[74,162],[61,178],[62,179],[71,180],[51,181],[77,182]],"exportedModulesMap":[[253,1],[257,2],[255,3],[199,4],[206,5],[216,6],[218,7],[217,8],[204,9],[205,10],[220,11],[149,12],[213,13],[214,14],[222,15],[229,16],[203,17],[208,18],[211,19],[228,20],[172,21],[164,22],[165,22],[173,23],[170,24],[200,25],[196,26],[152,27],[145,17],[197,28],[151,29],[143,17],[182,30],[150,31],[221,32],[210,33],[209,34],[198,35],[138,36],[174,37],[142,38],[227,39],[236,40],[158,41],[252,42],[177,43],[194,44],[176,17],[202,45],[195,46],[201,47],[223,48],[181,49],[175,50],[180,51],[141,52],[146,53],[225,54],[160,55],[147,56],[215,17],[156,57],[251,58],[178,17],[139,59],[246,60],[250,61],[237,62],[248,63],[249,64],[247,65],[243,66],[241,67],[242,68],[231,17],[240,69],[239,70],[245,71],[233,72],[261,73],[258,74],[264,75],[260,73],[262,76],[263,73],[191,77],[134,78],[190,74],[268,79],[269,74],[187,80],[192,81],[270,82],[273,83],[274,84],[283,85],[287,86],[285,86],[288,86],[286,87],[47,88],[48,88],[83,89],[84,90],[85,91],[86,92],[87,93],[88,94],[89,95],[90,96],[91,97],[92,98],[93,98],[95,99],[94,100],[96,101],[97,102],[98,103],[82,104],[99,105],[100,106],[101,107],[133,108],[102,109],[103,110],[104,111],[105,112],[106,113],[107,114],[108,115],[109,116],[110,117],[111,118],[112,118],[113,119],[114,120],[116,121],[115,122],[117,123],[118,124],[119,125],[120,126],[121,127],[122,128],[123,129],[124,130],[125,131],[126,132],[127,133],[128,134],[129,135],[130,136],[131,137],[315,138],[316,139],[291,140],[294,140],[313,138],[314,138],[304,138],[303,141],[301,138],[296,138],[309,138],[307,138],[311,138],[295,138],[308,138],[312,138],[297,138],[298,138],[310,138],[292,138],[299,138],[300,138],[302,138],[306,138],[317,142],[305,138],[293,138],[330,143],[324,142],[326,144],[325,142],[318,142],[319,142],[321,142],[323,142],[327,144],[328,144],[320,144],[322,144],[184,145],[189,146],[333,147],[235,148],[137,149],[282,150],[244,151],[280,152],[281,153],[193,78],[167,154],[279,155],[278,156],[65,157],[72,158],[64,157],[79,159],[56,160],[55,161],[78,162],[73,163],[76,164],[58,165],[57,166],[53,167],[52,168],[75,169],[54,170],[59,171],[63,171],[81,172],[80,171],[67,173],[68,174],[70,175],[66,176],[69,177],[74,162],[61,178],[62,179],[71,180],[51,181],[77,182]],"semanticDiagnosticsPerFile":[253,254,257,255,199,206,216,218,217,204,205,220,149,219,213,212,214,222,229,203,208,211,228,172,164,162,165,163,173,168,170,169,171,200,196,152,145,144,197,151,143,182,150,148,221,210,209,198,207,138,174,142,227,226,236,158,252,177,194,176,202,195,201,223,181,175,180,141,140,153,146,225,179,160,154,147,161,215,156,251,178,139,246,250,237,248,249,247,243,241,242,231,240,239,230,232,245,238,233,261,259,275,166,258,264,260,262,263,191,134,190,265,266,268,269,187,192,157,270,271,188,272,273,274,283,284,267,287,285,288,286,183,256,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,289,290,185,186,315,316,291,294,313,314,304,303,301,296,309,307,311,295,308,312,297,298,310,292,299,300,302,306,317,305,293,330,329,324,326,325,318,319,321,323,327,328,320,322,184,189,331,332,333,235,234,49,135,276,137,282,244,280,281,193,167,224,279,278,277,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/universal.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/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/utils/integrations.ts","../lib/client/auth/oauth.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/client/dispatcher/dispatcher-service.ts","../lib/client/dispatcher/client/api.ts","../lib/client/dispatcher/index.ts","../lib/common/utils/urlValidator.ts","../lib/client/checks/config/brokerClientUrlCheck.ts","../lib/client/checks/config/universalConnectionConfigCheck.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/config/remoteConfig.ts","../lib/common/utils/signals.ts","../lib/client/utils/cleanup.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/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/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/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/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","3846d0dcf468a1d1a07e6d00eaa37ec542956fb5fe0357590a6407af20d2ff90","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":"b6a4a51bc749ad882c33d98563ff5a94716ca884bfde949a8c97bad530e4ee2c","affectsGlobalScope":true},"16b872cf5432818bdbf405428b4a1d77bb2a7ab908e8bd6609f9a541cea92f81","fe39ceafa361b6d339b518936275eff89a77e7dfe92f2efa5fb97abf9a95ca49",{"version":"4009dd21843fe4a62d1d97b584a2937ca9f045df6fbd65c8b264d8dd04b656fd","affectsGlobalScope":true},"a40826e8476694e90da94aa008283a7de50d1dafd37beada623863f1901cb7fb","5f74757c479da70bc82930f50c6a5cfea4ff9f2979fd965d4ff91de0f6291a22","278fe296432b9840660d6e0d1778b4b4897a591d4b910a5f7ac8db0b476a8af7","1c611ff373ce1958aafc40b328048ac2540ba5c7f373cf2897e0d9aeaabe90a0","bea5c9fc0843a6961411ab4a04df856a8372448bc0d180da0c3a054ff31044b8","715873cecbfcebb49f293f0521bd0955d6298486e2eeb9c7bbf5e9f20a6ed152","c6cf9428f45f3d78b07df7d7aab1569994c177d36549e3a962f952d89f026bc4",{"version":"2c71199d1fc83bf17636ad5bf63a945633406b7b94887612bba4ef027c662b3e","affectsGlobalScope":true},{"version":"6c7b9d2139abd8f2e83ed8fa018c3799ab3187755a6665621feb6e93d3429ac3","affectsGlobalScope":true},"5a2f6de23113659e83dc8c5edb9f3c5bcd6136f74dcc1785b3df4eef1271e1f3","021ca24be8eb8c46f99b4e03ebf872931f590c9b07b88d715c68bd30495b6c44","5899ab1898582115c432cccef063298f75477bf2cebe5473360043fddd67bcc6","6b97f4106d72ae6b4ebf4e46d2fe90f4d04dd04b3dbff6e294572440a428209d","e3baa0c5780c2c805ec33a999722a2f740b572eb3746fd0a5f93a0a5c3dbf7f6","48fedd2f8549a2ae7e62f30fdb015779c2a7b536760730c5269406cd3d17cab2",{"version":"089867511b37a534ae71f3d9bc97acc0b925b7f5dbec113f98c4b49224c694eb","affectsGlobalScope":true},"e0cc19f50900706e7aae038565e825f2014ac5325b99b3daabf8ecd5d3d09f1a","f5ce35485541e817c2d4105d3eb78e3e538bbb009515ed014694363fa3e94ceb","323506ce173f7f865f42f493885ee3dacd18db6359ea1141d57676d3781ce10c",{"version":"bd88055918cf8bf30ad7c9269177f7ebeafd4c5f0d28919edccd1c1d24f7e73c","affectsGlobalScope":true},{"version":"645baafeaed6855c8796fcbae4e813021c65f36eaa3f6178535457a2366f6849","affectsGlobalScope":true},"ea3ab3727cd6c222d94003ecafa30e8550c61eadcdabbf59514aee76e86211a5","d3cdd41693c5ed6bec4f1a1c399d9501372b14bd341bc46eedacf2854c5df5a7","2de7a21c92226fb8abbeed7a0a9bd8aa6d37e4c68a8c7ff7938c644267e9fcc1","6d6070c5c81ba0bfe58988c69e3ba3149fc86421fd383f253aeb071cbf29cd41","48dab0d6e633b8052e7eaa0efb0bb3d58a733777b248765eafcb0b0349439834","d3e22aaa84d935196f465fff6645f88bb41352736c3130285eea0f2489c5f183","269929a24b2816343a178008ac9ae9248304d92a8ba8e233055e0ed6dbe6ef71","93452d394fdd1dc551ec62f5042366f011a00d342d36d50793b3529bfc9bd633","5195aeb0de306d1c5ca8033457fbcab5987657112fa6d4971cfeb7644493a369","c5dbf0003bc9f0f643e54cd00a3868d1afe85497fecb56be6f2373dc85102924",{"version":"6fa61015444e843013443f2e5ca6bee5f033cbf361f953fd932abb0c029b73b2","affectsGlobalScope":true},{"version":"300f8e9de0b0c3482be3e749462b6ebc3dab8a316801f1da0def94aed0cd2018","affectsGlobalScope":true},"4e228e78c1e9b0a75c70588d59288f63a6258e8b1fe4a67b0c53fe03461421d9","3df5b34f3449733bc4831b8d670f958a045e7a3f5d7b0e21991ef95408dbec13","76a89af04f2ba1807309320dab5169c0d1243b80738b4a2005989e40a136733e","c045b664abf3fc2a4750fa96117ab2735e4ed45ddd571b2a6a91b9917e231a02",{"version":"068b8ee5c2cd90d7a50f2efadbbe353cb10196a41189a48bf4b2a867363012b4","affectsGlobalScope":true},{"version":"0c312a7c5dec6c616f754d3a4b16318ce8d1cb912dfb3dfa0e808f45e66cbb21","affectsGlobalScope":true},"6f44a190351ab5e1811abebe007cf60518044772ccc08244f9f241706afa767f","fecdf44bec4ee9c5188e5f2f58c292c9689c02520900dceaaa6e76594de6da90","2641e5e19268b6f5038ad48a6e2598965301df8a77c48c99d8df760a6a154204",{"version":"6a4a80787c57c10b3ea8314c80d9cc6e1deb99d20adca16106a337825f582420","affectsGlobalScope":true},"f2b9440f98d6f94c8105883a2b65aee2fce0248f71f41beafd0a80636f3a565d",{"version":"ab9b9a36e5284fd8d3bf2f7d5fcbc60052f25f27e4d20954782099282c60d23e","affectsGlobalScope":true},"b510d0a18e3db42ac9765d26711083ec1e8b4e21caaca6dc4d25ae6e8623f447","5fb46bf84a85cf5e924e30465b7f919c777a1a03af44ae8c273d2ca229dcfd44","b8e7261f41dd775524077306a69c01796bd5a2a742c7338e6607ff4e689bc356","607d8cd0adda041284326a16e1579d29329d8a1d769859e99ea9dbf23b674539","f634e4c7d5cdba8e092d98098033b311c8ef304038d815c63ffdb9f78f3f7bb7","de298c21a8e846215a372121bc45bb90aaeab37cd14dce1cf6a34497662b1469","a168969b194c810bd6138b1579b6677816618fc9c317ba336dd5359abf9d0afa","b9f515dd1066637030af7e675144ac190e0b410812e66e37496344df056838b1","dba7efbdee28034f915a59aaede4757ec054c5e22ac5d05a35cc9b5bf5ea99f3","028eab144f41d0bffb3079b52181b70a50d7989e4b425be54c930027d194c0fd","cef53ca4c17f6bb85ec755445999ecf8131f65fb9a08d6ab77bbdd16222ceb23","6125f66958e9666a122dec70ef95a6c487be4b0a166117cfde34fc48125b87ae","8b1b89aaf9ce3cfa551f67ecc2ddbf888dea6f13a5e6a9d4cb7cb9cfbe9159a4","234315dd1f8236a42604c6c74667d1416e83f30cffc4e1240c412a0caffb472e","2735a111b9c2ea67e9f10630ecbee81e232b3c98eab6a5dcef4942c88aba4be5","9f9722948f56168eedba5e323cfa9f5f72c913f485a080a435ba399debcf1511","bb60e3f14730addd0a1c4552397bf2463a8788571e17c7e27d4f7c5b97a947a9","fa8a1e929c71f9d61d28ce59f2142f085d9b6119884eaff58478972da61c1890","f764042c6f1a9e30c0b671284e1ec55358b946065f2a0ed57bb595b4783c799a","588eeca7e191d06becc548480cb25ebe48ebae727837bdf6f7bcb6691cd83a0b","8a8e9e2412cf232d95d8999dec2fe2ca613a96d6839d14ba2fb2eecad53da730","7f5f299d5f57a95b7428652d97dab8db49990bb04f3740cf1ff693119da47dcf","e3d7ccdf5932d4cb5ef263a14c341aade9e66c7da5d01ec50f1a11b4a814168d","1df1b6fe0621ce05b4123e4ebec8e6c719400a91c6363ba1209f5075a59d6dba","c6a17102f358f82bd8920dd7da8254c70f6bc4faae3eb35c5860a45dc574c234","783afe5266ea760f59dd057bf45cc3e9e568b6b173dcdd8d03ec1a84dad2ccba","b65d766dbda435d2af678edeec7ccf112706ef685f6a20a180e1876dbd4f6b25","61b55647e947d0381055791bfbc75ac1d551da9308d67c03d448c1ecdf4e1141","d5aa318857dc9474f5d34b57903aec06904dcba1a5491f5b453490fd3b9abf1d","6e6f2b759dc3a5a38d20c766e7b820b2b3c263515e2faa0cd8584d701d17e183","c2f0d6f297a0340ea317e5b5d001505fd089db7f1aae226b3d4a868790643f05","ef0c035c127c91e6131ce002546ff1e166d665fd0403b3edf2cacda4e434d15a","428de2f733aac226862f3984ef67271139c12f0361613d8491fd82eb0a9be8ad","c0d72586228b49f84a0ddad39104b9ebfb99379d2f405f4f20942900a19dac9a","aa00c40656919f49a49e048a570f137a17a0c142c02396fedaf87e3690e7c381","9cf1457427c1f91bc91bf85fc05e4d4928869efd14316c43f97816677d82f77a","16b68528d65918e50058b621b5f7b43e16986bda36ee284f007540a91b0c2ce3","9854162d1c9f86702038a30132beee61410c279f3aec75a59372ca05faeb504e","fe4d850923b0082afa13a36e7ca0dfde105d510ec8a7b76167637c28fc793bb1","853b1081cc49b27b260b4956b96358acb673f49494b542f5ddf05d61fe67709c","48f7e457d23e6fa17669dd9ee30eb72a272a90a1496a2833994507fa5a0008d9","66db3b632a828b31bdb7e039ef82c9156dfbcd658c84a3e38711eb774662bce2","4bea15e35b4659222d01e0af6c78adff12689a79665d868a58fb37b7a529d23d","faaffcab2cba111febe15e8fb7fd617f4dcb2a4a3166fdf9db046b5ce3075f0b","1bb98610e84a478ddc0d97514ba35892473f747b2010140e0477bce4f4a5c0f5","1f17fab3c3d156fca17d805a40951972254baed3fe88153b9ada8cb4a9b227ca","48c7c11bb2d7a0c5f11548247a4b7f95fbffb7afa53feacb79c2bebe818aa0cd","2e180800f96a2a1d13df042b61b4fc6bff37a20026b0baeb64c6db8e8a041eea","4eebe6fdc2dcde8d57d6f19b9ff46864ae9778408ce00c4138fe62310a5aa1ef","1907f136ceda2e9ac6cad5adaf9736015fbe66ec914bcb5f400163a3e4c4dd7c","d3f2d715f57df3f04bf7b16dde01dec10366f64fce44503c92b8f78f614c1769","b78cd10245a90e27e62d0558564f5d9a16576294eee724a59ae21b91f9269e4a","dcc9081d68c2ade5c51ac7bf5f37cce630359408e713999269b77f611a30d871","2f5747b1508ccf83fad0c251ba1e5da2f5a30b78b09ffa1cfaf633045160afed",{"version":"a5562ab0448c81180ef220ff104441a4d67187a2259e6008397e7531a821f0e7","affectsGlobalScope":true},"b71c603a539078a5e3a039b20f2b0a0d1708967530cf97dec8850a9ca45baa2b","34118be360cdd3381bbebbfd4b093c394460c8fc5df40688d58f45d86ab1448b","104c67f0da1bdf0d94865419247e20eded83ce7f9911a1aa75fc675c077ca66e","cc0d0b339f31ce0ab3b7a5b714d8e578ce698f1e13d7f8c60bfb766baeb1d35c","5c45abf1e13e4463eacfd5dedda06855da8748a6a6cb3334f582b52e219acc04","6f4e4e5a046171e70dfb4b1f3e6212de786bf2c1e2c4383ae0e61c4726fdd168","b688e6899b4ba2208e49bef019c759e0b70e9e5da188703e30400c833ba14cb5","3da82ff2c93f53ba71271eeb764af06f156fb63eed56b98c3944fd70a903a949","691b22259686f59c7abadb27fc268196e10a13f57cd1c00da816676ff724189a","6546c54580ed782ac5fa7ce46df2bca3de24859b73cbb005572f7943543a45df","d295a90c9f5b1f746488edea8985af006d60cdb28639b61e72f27732418c4a34","6e29853e9c1183668a5caf27bcc935cd14c624b7d83211ce4629d588b83cb702","013f27f1d9df0814748a33b7a9c74bbdc94432f54ac58842be85b645da5bbc26","158fb3ab521da0a909249ef6e01758625eab1f7068660fd48a1c61593d19cabf","db26eef90552b690d2cd81b1116e08e7d54de2fbaf750191c17230627eaaaa09","ceebc193b7e71ea9caceb27b75be8ec51b375da9495b4b1bb54142583df679e1","6beab067d249104f7f4436b57ee9031ff9640a3933045f2132f68148779607cc","66f8b3cf8c4e6b43c126aef6e1e69dc40a8cddd34d82857610ba97cf5542c428","e81f88e96194e9c6908c0199b64fa7de53c67227044a9e72d95e1046d007d9a0","54124f504776e46fa2de0d4999f89765cb47975f949f84588b897cbe43865e48","2ad1a1cd994e62ddf71883bf11d644758769a3bfea49396f02027961d51df9e3","b8b1e6141f16b9b5449156e6d34d6bcf6386487239f14fa96ed2108c4f3f65db","a2c02b8d780bc5361bd49f34d47b761d54b8f8309b6ebb9d2f447b80434c61ff","bc16e48a012031f3867b93180b7c04324f437f36b9523fa6c33a5037da1b56f0","b393a5d180dcb9f91762f83f915a775c6acf6aaabf7f0ee3e49de28ae161488c","86eb8aa1e46f50cc53c190507f7c25865eb7692328bfa9d2327d5858b80a31c6","930529d90d690b4d6a430a78206a5abb753f2472f46e56cfb8a9655d7726caaf","2b9442aad20827dfd6923ff5605d6a5ee545a99453f508caa9fccd33bb0eafdd","18bcbb347f6f8d81f4da0f9514fdb3871a20a19f6d0ddf4b8a9bcd204e6cbd79","94545d314c1c9bf043379392cc9789c27ec772e4853c5624e9f2dd9d2f92804b","6dd8b6b51f331cd8a3384e8de32d4fa2bef4c8d006495633792f6f6214bcb23e","893ada0daab97665ca9e9ce67a5929b45acb40aac2be9991ea155785ccd14261","cbf3a941838a1dbd1f3152a256a37b853daa37b6781165ad192305266c8a6972","dd67745a114582281423faf89a9176b70f4ae81d53b005a7c9c4a6ec71f98bf2","6656fc69763c68c2d13a03c5da93e6fff0cc3d38e59b900ae911b5085ce2c8fe","ce4fd380597a02446bff95c085d5b37951be987a4497300d1b5435633dcc02ad","39d1a0fb9424a8b37327e0dcf9bfbda6455d29c76ee8fab80dd717efaa44ec96","0c6abbd24529fd30358f410da8116260dcb63ca2aa64aeee22c7940fea19d7e0","9c173187aeb9596afb99b80358b8aac22984fbeeb17e00eaf5c73a6522b7b972","6a0b586fe6ec79de42b5c59c280ec05fd8e1ac2804aeb040fc515cfe04c9c025","27609e731512c92c7ffefdeee9bd4b04988ef31a7570c886775183bebc8b237c","b01aac375ab16fbb0c1c88cb412110e1b1b1d528192de1082ca2a7d0434a92ee","9415347ea5052551e0af3b9aad1ad0042a6d29473cadb8fae8f4658100201762","b4d7fbbca8a7210544ea079ae228d42c672e28141eedfe495ea4ce78deb6358f","d88a11b20ace6cee4288d77c71e1d7ce0c8eef3eae7b70860a7892c6e3649868","c549ceb82dfc0302828c86a62e5f8d2380ff640586a61a530adac70046fe1bda","74b9eebec9649be2c532be99a682c6434bc31d1be11b6e1fecfa5f4bc795ccb6","d3c53904e4258d97ae5b7cd6daad35af0eb46dedae6a10d5620bc51ada00d61d","cab77b3f756e05d96bbc7209af80659200105720385bcdf1bc9585c82afb3349","62899a76679f04094ab88add515bde051a628e7cec38d7554770a628f4508a76","f64487e06875cfbe0cc854328920403df337dc6c1925070995653ac71c266c0e","dfd06b48e69ff4ab95a33fd83ad7eca77567a7c230a9cbf4a47063c04246d858","f218fbb52c1192c386986d985d213cf8ffe29f3fc4b0b0580ad65df6381be48e","35c57738f7982fdfb51f37e6658f71c0994e1bb5857d2ea6f191a0a55aaa3cb4","5ad56a97f84ed672635f498bb0ffc56feb6d6fc02243f39262d849d77cd35bc5","8a087e0e03ba7d4ff15247fa73c1d7de19bac9883398d1fdef64aa567291eb4f","e7b59c0e6c6a541cb0d7b9e43b8c28fb28bed6002f17a00856469ff50dca96fe","18b5a4386e498b26f5dd52eedfd78ef960cceb04a97cfe590ca2a05e19fea5eb","aa9b70eac841498495c926289d5724f05c007826fe5a1b7cf1974faf21bd30cf","f2e7822da8260294a3bf4df5cc08db1267938ae2a933ff88db8cce8e95dcb41a","89b350d42ac4fdbd15860690647dac82b2cfde1860b14db0dfee4b66ba5fd7b0","9da2ff90ff61041d5b495f13b3273c0b24bba4ef939d1b6718e294cc84ea55cd","799a2be8598de24deb59b1e87a0d592ae8d62c44d8c84e108844d278f650956c","d6b88ebeb395d9198c205fd8e029f2d8bfab8b72df36259344a5168be621b88f","c067dc605f8ddd973fa11cdb9946cab9340f67cbf961b1e5fc4b5f3acd0af8cd","e5da27785a9d3fe74a40251b436d77d65684a995bb338f5e7ba96316c9393fb0","0845ecf8f8667f9ef434855c1158206d1601ccbe9bf55aef316b804b297a869b","125c7fa994ded20a8454c18e71adaa7a5055ae05440c302394805784fc06a1b0","3c44d055457889f193f78ac947653ec9a8c5660cbee59e26d50422000b76740f","c9f9ba089ac2ded87954c1e947fdc702d239a325b6a4f816f3394cec1f4b5af6","dd2b4ff5479bba121f7312f253bc7776b44dfd08b0905b41b3332192eb19331c","0c9f2c5c6eba7fe142f6c7987b4c4de44cf5671182ca8c424af83989a32706c5","fbca5ffaebf282ec3cdac47b0d1d4a138a8b0bb32105251a38acb235087d3318","c552ba4963c2bd77d84b6bfaf6b9eb0aed9f0dbd55fb4ce663552d05f2b95418","87f287f296f3ff07dbd14ea7853c2400d995dccd7bd83206196d6c0974774e96","ddb0b9fcd2670bce028e60ca5768719c5d21508b00dc83acf6af25cbe1fcc5ec","2c8e55457aaf4902941dfdba4061935922e8ee6e120539c9801cd7b400fae050","8041cfce439ff29d339742389de04c136e3029d6b1817f07b2d7fcbfb7534990","670a76db379b27c8ff42f1ba927828a22862e2ab0b0908e38b671f0e912cc5ed","9d38964b57191567a14b396422c87488cecd48f405c642daa734159875ee81d9","069bebfee29864e3955378107e243508b163e77ab10de6a5ee03ae06939f0bb9","0504070e7eaba788f5d0d5926782ed177f1db01cee28363c488fae94950c0bbc","117ffeecf6c55e25b6446f449ad079029b5e7317399b0a693858faaaea5ca73e","6847334317c1bc1e6fc4b679b0095bbd2b6ee3b85fe3f26fc26bac462f68ef5e","2224f3072e3cc07906eeed5c71746779511fba2dd224addc5489bcdb489bdee5","3937b50a4de68f6d21614461e9d47af0d8421ca80fc2a72b667ca2151f492120","afe73051ff6a03a9565cbd8ebb0e956ee3df5e913ad5c1ded64218aabfa3dcb5","3f841292a135503a4cc1a9029af59dae135595810cfad5ca62ec1b2ad9846e8e","035a5df183489c2e22f3cf59fc1ed2b043d27f357eecc0eb8d8e840059d44245","a4809f4d92317535e6b22b01019437030077a76fec1d93b9881c9ed4738fcc54","5f53fa0bd22096d2a78533f94e02c899143b8f0f9891a46965294ee8b91a9434","763e521cf114b80e0dd0e21ca49b9f8ae62e8999555a5e7bade8ce36b33001c2","0d14fa22c41fdc7277e6f71473b20ebc07f40f00e38875142335d5b63cdfc9d2","3054ef91b855e005b9c4681399e9d64d2a7b07a22d539314d794f09e53b876a7","ffcc5500e77223169833fc6eb59b3a507944a1f89574e0a1276b0ea7fc22c4a4","22f13de9e2fe5f0f4724797abd3d34a1cdd6e47ef81fc4933fea3b8bf4ad524b","e3ba509d3dce019b3190ceb2f3fc88e2610ab717122dabd91a9efaa37804040d","cda0cb09b995489b7f4c57f168cd31b83dcbaa7aad49612734fb3c9c73f6e4f2","f72f8428f3c1caa22e9c247d046603b85b442c0dae7b77a7a0bc092c18867cb7",{"version":"195f63105abc03e72b6a176e3e34dfb5ac932b55db378fdc7874b1617e24b465","affectsGlobalScope":true},"f3d8c757e148ad968f0d98697987db363070abada5f503da3c06aefd9d4248c1","7e8d3f08435ad2cefe67f58182618bfc9a0a29db08cf2544b94cbcae754a9bd9","aa3bbe7b99354f3c6cc6794961655bec801bb6a720f121d4a2cfe963681e426d","cee62e64fc4bdfb3798ab8e21486fadd2027ce4128349989acc63905366f91c5","18730c5231e656317c093558b3467d2a3b357ffc45b4e56509c98fce5a775629","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","85f8ebd7f245e8bf29da270e8b53dcdd17528826ffd27176c5fc7e426213ef5a","ab82804a14454734010dcdcd43f564ff7b0389bee4c5692eec76ff5b30d4cf66","bae8d023ef6b23df7da26f51cea44321f95817c190342a36882e93b80d07a960","5d30d04a14ed8527ac5d654dc345a4db11b593334c11a65efb6e4facc5484a0e"],"options":{"alwaysStrict":false,"esModuleInterop":true,"module":199,"noImplicitAny":false,"noUnusedLocals":true,"outDir":"./","sourceMap":true,"strict":true,"target":6},"fileIdsList":[[255],[257,258,259,260],[97,106,139],[139,175,177],[139,148,149,192,205],[139,148,149,156,177,203,215],[148,149,216,217],[148,149,174],[139,149,156,177,203],[148,149,204],[139,148,149,205,218,219],[148],[139,148,150],[97,146,175,177,229],[139,175,177,212],[139,147,212,213],[139,146,149,150,173,214,220,221],[138,139,146,150,156,199,200,201,202,206,207,208,211,221,222,223,227,228,230,231,232],[139],[147,150,156,192,207],[138,139,146,150,174,192,209,210],[138,139,150,192,207],[171],[139,162,163],[139,148,164,165,170,171,172],[167,168,169],[139,143,144,145,146,147,150,151,152,182,196,197,198,199],[195],[139,146],[146,182],[139,146,147,150],[140,146,181],[141,149],[97],[139,148,156,175,177],[139,156,177,179],[138],[97,106,135,136,137,139],[138,139,148],[97,106,135,138,139,141],[106,139,140,141,154,161,174,185,224,225,226],[139,238,239],[99,101,114,115,138,139,154,156,157],[101,125,138],[99,101,138,139,157,175,176],[114,138,160,192,193],[97,99,101,139,147,191,192],[139,160,194],[114,139,141,146,153,160,192,194],[139,141,146,147,153,160,177,192],[139,140,141,146,147,150,153,158,160,175,180],[125,139,141,154,156,161,173,174],[139,154,175,177,178,179],[140],[141],[138,154],[159],[89],[155],[138,139,141,142,233,254],[134,138],[138,139,192],[139,146,156,202,227,241,243,247,249,250,251,252,253],[138,139,147,240],[139,192,237,247],[139,160,192,237,247],[139,160,192,194,237],[139,146,147,234,235,243,246],[139,160,237,241,247],[139,235,237,244,245],[139,160,195,237,241,242,243,247],[146,181,201,244],[192,248],[147,236],[263],[99,133],[263,264,265,266,267],[263,265],[99,133,190],[96,133],[99,133,190,192,271],[96,99,133,184,185,186],[185,187,189,191],[97,133],[276],[277],[283,286],[290],[83,96,99,100,104,110,125,133,188,262,269,271,272,275,289],[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],[295,334],[295,319,334],[334],[295],[295,320,334],[295,296,297,298,299,300,301,302,303,304,305,306,307,308,309,310,311,312,313,314,315,316,317,318,319,320,321,322,323,324,325,326,327,328,329,330,331,332,333],[320,334],[97,114,133,183],[99,133,183,188],[336],[238,239],[125,133],[279,285],[159,192],[283],[280,284],[166],[282],[281],[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":[[257,1],[261,2],[259,3],[199,4],[206,5],[216,6],[218,7],[217,8],[204,9],[205,10],[220,11],[149,12],[221,13],[230,14],[213,15],[214,16],[222,17],[233,18],[203,19],[208,20],[211,21],[228,22],[172,23],[164,24],[165,24],[173,25],[170,26],[200,27],[196,28],[152,29],[145,19],[197,30],[151,31],[143,19],[182,32],[229,12],[150,33],[232,34],[210,35],[209,36],[198,37],[138,38],[174,39],[142,40],[227,41],[240,42],[158,43],[256,44],[177,45],[194,46],[176,19],[202,47],[195,48],[201,49],[223,50],[181,51],[175,52],[180,53],[141,54],[146,55],[225,56],[160,57],[147,58],[215,19],[156,59],[255,60],[178,19],[139,61],[250,62],[254,63],[241,64],[252,65],[253,66],[251,67],[247,68],[245,69],[246,70],[235,19],[244,71],[243,72],[249,73],[237,74],[265,75],[262,76],[268,77],[264,75],[266,78],[267,75],[191,79],[134,80],[190,76],[272,81],[273,76],[187,82],[192,83],[274,84],[277,85],[278,86],[287,87],[291,88],[289,88],[292,88],[290,89],[47,90],[48,90],[83,91],[84,92],[85,93],[86,94],[87,95],[88,96],[89,97],[90,98],[91,99],[92,100],[93,100],[95,101],[94,102],[96,103],[97,104],[98,105],[82,106],[99,107],[100,108],[101,109],[133,110],[102,111],[103,112],[104,113],[105,114],[106,115],[107,116],[108,117],[109,118],[110,119],[111,120],[112,120],[113,121],[114,122],[116,123],[115,124],[117,125],[118,126],[119,127],[120,128],[121,129],[122,130],[123,131],[124,132],[125,133],[126,134],[127,135],[128,136],[129,137],[130,138],[131,139],[319,140],[320,141],[295,142],[298,142],[317,140],[318,140],[308,140],[307,143],[305,140],[300,140],[313,140],[311,140],[315,140],[299,140],[312,140],[316,140],[301,140],[302,140],[314,140],[296,140],[303,140],[304,140],[306,140],[310,140],[321,144],[309,140],[297,140],[334,145],[328,144],[330,146],[329,144],[322,144],[323,144],[325,144],[327,144],[331,146],[332,146],[324,146],[326,146],[184,147],[189,148],[337,149],[239,150],[137,151],[286,152],[248,153],[284,154],[285,155],[193,80],[167,156],[283,157],[282,158],[65,159],[72,160],[64,159],[79,161],[56,162],[55,163],[78,164],[73,165],[76,166],[58,167],[57,168],[53,169],[52,170],[75,171],[54,172],[59,173],[63,173],[81,174],[80,173],[67,175],[68,176],[70,177],[66,178],[69,179],[74,164],[61,180],[62,181],[71,182],[51,183],[77,184]],"exportedModulesMap":[[257,1],[261,2],[259,3],[199,4],[206,5],[216,6],[218,7],[217,8],[204,9],[205,10],[220,11],[149,12],[221,13],[230,14],[213,15],[214,16],[222,17],[233,18],[203,19],[208,20],[211,21],[228,22],[172,23],[164,24],[165,24],[173,25],[170,26],[200,27],[196,28],[152,29],[145,19],[197,30],[151,31],[143,19],[182,32],[229,12],[150,33],[232,34],[210,35],[209,36],[198,37],[138,38],[174,39],[142,40],[227,41],[240,42],[158,43],[256,44],[177,45],[194,46],[176,19],[202,47],[195,48],[201,49],[223,50],[181,51],[175,52],[180,53],[141,54],[146,55],[225,56],[160,57],[147,58],[215,19],[156,59],[255,60],[178,19],[139,61],[250,62],[254,63],[241,64],[252,65],[253,66],[251,67],[247,68],[245,69],[246,70],[235,19],[244,71],[243,72],[249,73],[237,74],[265,75],[262,76],[268,77],[264,75],[266,78],[267,75],[191,79],[134,80],[190,76],[272,81],[273,76],[187,82],[192,83],[274,84],[277,85],[278,86],[287,87],[291,88],[289,88],[292,88],[290,89],[47,90],[48,90],[83,91],[84,92],[85,93],[86,94],[87,95],[88,96],[89,97],[90,98],[91,99],[92,100],[93,100],[95,101],[94,102],[96,103],[97,104],[98,105],[82,106],[99,107],[100,108],[101,109],[133,110],[102,111],[103,112],[104,113],[105,114],[106,115],[107,116],[108,117],[109,118],[110,119],[111,120],[112,120],[113,121],[114,122],[116,123],[115,124],[117,125],[118,126],[119,127],[120,128],[121,129],[122,130],[123,131],[124,132],[125,133],[126,134],[127,135],[128,136],[129,137],[130,138],[131,139],[319,140],[320,141],[295,142],[298,142],[317,140],[318,140],[308,140],[307,143],[305,140],[300,140],[313,140],[311,140],[315,140],[299,140],[312,140],[316,140],[301,140],[302,140],[314,140],[296,140],[303,140],[304,140],[306,140],[310,140],[321,144],[309,140],[297,140],[334,145],[328,144],[330,146],[329,144],[322,144],[323,144],[325,144],[327,144],[331,146],[332,146],[324,146],[326,146],[184,147],[189,148],[337,149],[239,150],[137,151],[286,152],[248,153],[284,154],[285,155],[193,80],[167,156],[283,157],[282,158],[65,159],[72,160],[64,159],[79,161],[56,162],[55,163],[78,164],[73,165],[76,166],[58,167],[57,168],[53,169],[52,170],[75,171],[54,172],[59,173],[63,173],[81,174],[80,173],[67,175],[68,176],[70,177],[66,178],[69,179],[74,164],[61,180],[62,181],[71,182],[51,183],[77,184]],"semanticDiagnosticsPerFile":[257,258,261,259,199,206,216,218,217,204,205,220,149,219,221,230,213,212,214,222,233,203,208,211,228,172,164,162,165,163,173,168,170,169,171,200,196,152,145,144,197,151,143,182,229,150,148,232,210,209,198,207,138,174,142,227,226,240,158,256,177,194,176,202,195,201,223,181,175,180,141,140,153,146,225,179,160,154,231,147,161,215,156,255,178,139,250,254,241,252,253,251,247,245,246,235,244,243,234,236,249,242,237,265,263,279,166,262,268,264,266,267,191,134,190,269,270,272,273,187,192,157,274,275,188,276,277,278,287,288,271,291,289,292,290,183,260,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,293,294,185,186,319,320,295,298,317,318,308,307,305,300,313,311,315,299,312,316,301,302,314,296,303,304,306,310,321,309,297,334,333,328,330,329,322,323,325,327,331,332,324,326,184,189,335,336,337,239,238,49,135,280,137,286,248,284,285,193,167,224,283,282,281,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
|
@@ -1 +0,0 @@
|
|
|
1
|
-
{"version":3,"file":"configHelpers.js","sourceRoot":"","sources":["../../../../lib/client/utils/configHelpers.ts"],"names":[],"mappings":";;;AAEA,8CAAkD;AAE3C,MAAM,uBAAuB,GAAG,CACrC,YAAiC,EACjB,EAAE;IAClB,MAAM,cAAc,GAAmB;QACrC,MAAM,EAAE,2BAA2B,CAAC,YAAY,CAAC;QACjD,SAAS,EAAE,YAAY,CAAC,QAAQ,KAAK,OAAO,CAAC,CAAC,CAAC,IAAI,CAAC,CAAC,CAAC,KAAK;QAC3D,WAAW,EAAE,YAAY,CAAC,aAAa,CAAC,CAAC,CAAC,IAAI,CAAC,CAAC,CAAC,KAAK;QACtD,WAAW,EAAE,iBAAiB,CAAC,YAAY,CAAC;QAC5C,SAAS,EAAE,YAAY,CAAC,eAAe,CAAC,CAAC,CAAC,IAAI,CAAC,CAAC,CAAC,KAAK;QACtD,SAAS,EACP,QAAQ,CAAC,YAAY,CAAC,yBAAyB,CAAC,KAAK,CAAC,CAAC,CAAC,CAAC,IAAI,CAAC,CAAC,CAAC,KAAK;QACvE,KAAK,EAAE,YAAY,CAAC,SAAS,IAAI,YAAY,CAAC,UAAU,CAAC,CAAC,CAAC,IAAI,CAAC,CAAC,CAAC,KAAK;QACvE,YAAY,EAAE,YAAY,CAAC,MAAM,CAAC,CAAC,CAAC,IAAI,CAAC,CAAC,CAAC,KAAK;QAChD,kBAAkB,EAAE,YAAY,CAAC,kBAAkB,CAAC,CAAC,CAAC,IAAI,CAAC,CAAC,CAAC,KAAK;QAClE,eAAe,EAAE,YAAY,CAAC,sBAAsB,CAAC,CAAC,CAAC,IAAI,CAAC,CAAC,CAAC,KAAK;KACpE,CAAC;IACF,OAAO,cAAc,CAAC;AACxB,CAAC,CAAC;AAjBW,QAAA,uBAAuB,2BAiBlC;AAEF,MAAM,iBAAiB,GAAG,CAAC,MAA2B,EAAW,EAAE;IACjE,KAAK,MAAM,GAAG,IAAI,MAAM,EAAE;QACxB,IAAI,MAAM,CAAC,cAAc,CAAC,GAAG,CAAC,IAAI,GAAG,CAAC,QAAQ,CAAC,OAAO,CAAC,EAAE;YACvD,OAAO,IAAI,CAAC,CAAC,iCAAiC;SAC/C;KACF;IACD,OAAO,KAAK,CAAC;AACf,CAAC,CAAC;AAEF,SAAgB,2BAA2B,CAAC,MAAW;IACrD,iDAAiD;IACjD,IAAI,2BAA2B,GAAG,KAAK,CAAC;IACxC,MAAM,gCAAgC,GAAI,MAAiB;SACxD,sBAAsB,CAAC;IAE1B,IAAI,OAAO,gCAAgC,KAAK,WAAW,EAAE;QAC3D,2BAA2B;YACzB,gCAAgC,CAAC,WAAW,EAAE,KAAK,MAAM;gBACzD,gCAAgC,CAAC,WAAW,EAAE,KAAK,KAAK,CAAC;KAC5D;IAED,YAAM,CAAC,IAAI,CAAC,EAAE,OAAO,EAAE,2BAA2B,EAAE,EAAE,sBAAsB,CAAC,CAAC;IAE9E,OAAO,2BAA2B,CAAC;AACrC,CAAC;AAfD,kEAeC"}
|
|
File without changes
|