@maverick006/security-engine 1.0.2

This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
@@ -0,0 +1,4 @@
1
+ export * from './scanner';
2
+ export * from './orchestrator';
3
+ export * from './scoring';
4
+ //# sourceMappingURL=index.d.ts.map
@@ -0,0 +1 @@
1
+ {"version":3,"file":"index.d.ts","sourceRoot":"","sources":["../src/index.ts"],"names":[],"mappings":"AAAA,cAAc,WAAW,CAAC;AAC1B,cAAc,gBAAgB,CAAC;AAC/B,cAAc,WAAW,CAAC"}
package/dist/index.js ADDED
@@ -0,0 +1,20 @@
1
+ "use strict";
2
+ var __createBinding = (this && this.__createBinding) || (Object.create ? (function(o, m, k, k2) {
3
+ if (k2 === undefined) k2 = k;
4
+ var desc = Object.getOwnPropertyDescriptor(m, k);
5
+ if (!desc || ("get" in desc ? !m.__esModule : desc.writable || desc.configurable)) {
6
+ desc = { enumerable: true, get: function() { return m[k]; } };
7
+ }
8
+ Object.defineProperty(o, k2, desc);
9
+ }) : (function(o, m, k, k2) {
10
+ if (k2 === undefined) k2 = k;
11
+ o[k2] = m[k];
12
+ }));
13
+ var __exportStar = (this && this.__exportStar) || function(m, exports) {
14
+ for (var p in m) if (p !== "default" && !Object.prototype.hasOwnProperty.call(exports, p)) __createBinding(exports, m, p);
15
+ };
16
+ Object.defineProperty(exports, "__esModule", { value: true });
17
+ __exportStar(require("./scanner"), exports);
18
+ __exportStar(require("./orchestrator"), exports);
19
+ __exportStar(require("./scoring"), exports);
20
+ //# sourceMappingURL=index.js.map
@@ -0,0 +1 @@
1
+ {"version":3,"file":"index.js","sourceRoot":"","sources":["../src/index.ts"],"names":[],"mappings":";;;;;;;;;;;;;;;;AAAA,4CAA0B;AAC1B,iDAA+B;AAC/B,4CAA0B"}
@@ -0,0 +1,18 @@
1
+ import { ScanInput, ScannerResult } from '@maverick006/types';
2
+ import { SecurityScanner } from './scanner';
3
+ /**
4
+ * Orchestrates the execution of multiple security scanners and aggregates/deduplicates their findings.
5
+ */
6
+ export declare class Orchestrator {
7
+ private scanners;
8
+ constructor(scanners: SecurityScanner[]);
9
+ /**
10
+ * Executes all registered scanners against the given input.
11
+ */
12
+ runScan(input: ScanInput): Promise<ScannerResult>;
13
+ /**
14
+ * Deduplicates findings based on a fingerprint generated from ruleId, file, line, and column.
15
+ */
16
+ private deduplicateFindings;
17
+ }
18
+ //# sourceMappingURL=orchestrator.d.ts.map
@@ -0,0 +1 @@
1
+ {"version":3,"file":"orchestrator.d.ts","sourceRoot":"","sources":["../src/orchestrator.ts"],"names":[],"mappings":"AAAA,OAAO,EAAqB,SAAS,EAAE,aAAa,EAAE,MAAM,oBAAoB,CAAC;AACjF,OAAO,EAAE,eAAe,EAAE,MAAM,WAAW,CAAC;AAE5C;;GAEG;AACH,qBAAa,YAAY;IACvB,OAAO,CAAC,QAAQ,CAAyB;gBAE7B,QAAQ,EAAE,eAAe,EAAE;IAIvC;;OAEG;IACG,OAAO,CAAC,KAAK,EAAE,SAAS,GAAG,OAAO,CAAC,aAAa,CAAC;IAsCvD;;OAEG;IACH,OAAO,CAAC,mBAAmB;CAiB5B"}
@@ -0,0 +1,67 @@
1
+ "use strict";
2
+ Object.defineProperty(exports, "__esModule", { value: true });
3
+ exports.Orchestrator = void 0;
4
+ /**
5
+ * Orchestrates the execution of multiple security scanners and aggregates/deduplicates their findings.
6
+ */
7
+ class Orchestrator {
8
+ scanners = [];
9
+ constructor(scanners) {
10
+ this.scanners = scanners;
11
+ }
12
+ /**
13
+ * Executes all registered scanners against the given input.
14
+ */
15
+ async runScan(input) {
16
+ const startTime = new Date();
17
+ // Execute all scanners concurrently
18
+ const scanPromises = this.scanners.map(scanner => scanner.scan(input));
19
+ const results = await Promise.allSettled(scanPromises);
20
+ let allFindings = [];
21
+ const rawOutputs = {};
22
+ for (let i = 0; i < results.length; i++) {
23
+ const result = results[i];
24
+ const scannerName = this.scanners[i].name;
25
+ if (result.status === 'fulfilled') {
26
+ const data = result.value;
27
+ allFindings = allFindings.concat(data.findings);
28
+ if (data.rawOutput) {
29
+ rawOutputs[scannerName] = data.rawOutput;
30
+ }
31
+ }
32
+ else {
33
+ // Log scanner failure safely (in production this would use a proper logger)
34
+ console.error(`Scanner ${scannerName} failed:`, result.reason);
35
+ }
36
+ }
37
+ const deduplicatedFindings = this.deduplicateFindings(allFindings);
38
+ return {
39
+ scanner: 'VibeGuard_Orchestrator',
40
+ success: true,
41
+ findings: deduplicatedFindings,
42
+ rawOutput: JSON.stringify(rawOutputs), // Aggregate raw outputs
43
+ startTime,
44
+ endTime: new Date()
45
+ };
46
+ }
47
+ /**
48
+ * Deduplicates findings based on a fingerprint generated from ruleId, file, line, and column.
49
+ */
50
+ deduplicateFindings(findings) {
51
+ const unique = new Map();
52
+ for (const finding of findings) {
53
+ // Create a unique fingerprint for the finding
54
+ const fingerprint = `${finding.ruleId}-${finding.file}-${finding.line}-${finding.column}`;
55
+ if (!unique.has(fingerprint)) {
56
+ unique.set(fingerprint, finding);
57
+ }
58
+ else {
59
+ // If it already exists, we might want to merge information, but for now we keep the first one
60
+ // Optionally, if the new one has higher confidence, we could replace it.
61
+ }
62
+ }
63
+ return Array.from(unique.values());
64
+ }
65
+ }
66
+ exports.Orchestrator = Orchestrator;
67
+ //# sourceMappingURL=orchestrator.js.map
@@ -0,0 +1 @@
1
+ {"version":3,"file":"orchestrator.js","sourceRoot":"","sources":["../src/orchestrator.ts"],"names":[],"mappings":";;;AAGA;;GAEG;AACH,MAAa,YAAY;IACf,QAAQ,GAAsB,EAAE,CAAC;IAEzC,YAAY,QAA2B;QACrC,IAAI,CAAC,QAAQ,GAAG,QAAQ,CAAC;IAC3B,CAAC;IAED;;OAEG;IACH,KAAK,CAAC,OAAO,CAAC,KAAgB;QAC5B,MAAM,SAAS,GAAG,IAAI,IAAI,EAAE,CAAC;QAE7B,oCAAoC;QACpC,MAAM,YAAY,GAAG,IAAI,CAAC,QAAQ,CAAC,GAAG,CAAC,OAAO,CAAC,EAAE,CAAC,OAAO,CAAC,IAAI,CAAC,KAAK,CAAC,CAAC,CAAC;QACvE,MAAM,OAAO,GAAG,MAAM,OAAO,CAAC,UAAU,CAAC,YAAY,CAAC,CAAC;QAEvD,IAAI,WAAW,GAAwB,EAAE,CAAC;QAC1C,MAAM,UAAU,GAA2B,EAAE,CAAC;QAE9C,KAAK,IAAI,CAAC,GAAG,CAAC,EAAE,CAAC,GAAG,OAAO,CAAC,MAAM,EAAE,CAAC,EAAE,EAAE,CAAC;YACxC,MAAM,MAAM,GAAG,OAAO,CAAC,CAAC,CAAC,CAAC;YAC1B,MAAM,WAAW,GAAG,IAAI,CAAC,QAAQ,CAAC,CAAC,CAAC,CAAC,IAAI,CAAC;YAE1C,IAAI,MAAM,CAAC,MAAM,KAAK,WAAW,EAAE,CAAC;gBAClC,MAAM,IAAI,GAAG,MAAM,CAAC,KAAK,CAAC;gBAC1B,WAAW,GAAG,WAAW,CAAC,MAAM,CAAC,IAAI,CAAC,QAAQ,CAAC,CAAC;gBAChD,IAAI,IAAI,CAAC,SAAS,EAAE,CAAC;oBACnB,UAAU,CAAC,WAAW,CAAC,GAAG,IAAI,CAAC,SAAS,CAAC;gBAC3C,CAAC;YACH,CAAC;iBAAM,CAAC;gBACN,4EAA4E;gBAC5E,OAAO,CAAC,KAAK,CAAC,WAAW,WAAW,UAAU,EAAE,MAAM,CAAC,MAAM,CAAC,CAAC;YACjE,CAAC;QACH,CAAC;QAED,MAAM,oBAAoB,GAAG,IAAI,CAAC,mBAAmB,CAAC,WAAW,CAAC,CAAC;QAEnE,OAAO;YACL,OAAO,EAAE,wBAAwB;YACjC,OAAO,EAAE,IAAI;YACb,QAAQ,EAAE,oBAAoB;YAC9B,SAAS,EAAE,IAAI,CAAC,SAAS,CAAC,UAAU,CAAC,EAAE,wBAAwB;YAC/D,SAAS;YACT,OAAO,EAAE,IAAI,IAAI,EAAE;SACpB,CAAC;IACJ,CAAC;IAED;;OAEG;IACK,mBAAmB,CAAC,QAA6B;QACvD,MAAM,MAAM,GAAG,IAAI,GAAG,EAA6B,CAAC;QAEpD,KAAK,MAAM,OAAO,IAAI,QAAQ,EAAE,CAAC;YAC/B,8CAA8C;YAC9C,MAAM,WAAW,GAAG,GAAG,OAAO,CAAC,MAAM,IAAI,OAAO,CAAC,IAAI,IAAI,OAAO,CAAC,IAAI,IAAI,OAAO,CAAC,MAAM,EAAE,CAAC;YAE1F,IAAI,CAAC,MAAM,CAAC,GAAG,CAAC,WAAW,CAAC,EAAE,CAAC;gBAC7B,MAAM,CAAC,GAAG,CAAC,WAAW,EAAE,OAAO,CAAC,CAAC;YACnC,CAAC;iBAAM,CAAC;gBACN,8FAA8F;gBAC9F,yEAAyE;YAC3E,CAAC;QACH,CAAC;QAED,OAAO,KAAK,CAAC,IAAI,CAAC,MAAM,CAAC,MAAM,EAAE,CAAC,CAAC;IACrC,CAAC;CACF;AApED,oCAoEC"}
@@ -0,0 +1,24 @@
1
+ import { ScanInput, ScannerResult } from '@maverick006/types';
2
+ /**
3
+ * Base interface that all VibeGuard scanners must implement.
4
+ * This provides the core abstraction allowing new scanners to be added
5
+ * without rewriting the rest of the application.
6
+ */
7
+ export interface SecurityScanner {
8
+ /**
9
+ * The name of the scanner (e.g., 'Semgrep', 'Gitleaks')
10
+ */
11
+ name: string;
12
+ /**
13
+ * The version of the scanner, if known/applicable.
14
+ */
15
+ version?: string;
16
+ /**
17
+ * Executes the scanner against the given input.
18
+ *
19
+ * @param input The configuration and path for the scan.
20
+ * @returns A promise resolving to the normalized scanner results.
21
+ */
22
+ scan(input: ScanInput): Promise<ScannerResult>;
23
+ }
24
+ //# sourceMappingURL=scanner.d.ts.map
@@ -0,0 +1 @@
1
+ {"version":3,"file":"scanner.d.ts","sourceRoot":"","sources":["../src/scanner.ts"],"names":[],"mappings":"AAAA,OAAO,EAAE,SAAS,EAAE,aAAa,EAAE,MAAM,oBAAoB,CAAC;AAE9D;;;;GAIG;AACH,MAAM,WAAW,eAAe;IAC9B;;OAEG;IACH,IAAI,EAAE,MAAM,CAAC;IAEb;;OAEG;IACH,OAAO,CAAC,EAAE,MAAM,CAAC;IAEjB;;;;;OAKG;IACH,IAAI,CAAC,KAAK,EAAE,SAAS,GAAG,OAAO,CAAC,aAAa,CAAC,CAAC;CAChD"}
@@ -0,0 +1,3 @@
1
+ "use strict";
2
+ Object.defineProperty(exports, "__esModule", { value: true });
3
+ //# sourceMappingURL=scanner.js.map
@@ -0,0 +1 @@
1
+ {"version":3,"file":"scanner.js","sourceRoot":"","sources":["../src/scanner.ts"],"names":[],"mappings":""}
@@ -0,0 +1,24 @@
1
+ import { NormalizedFinding } from '@maverick006/types';
2
+ export interface ScoreResult {
3
+ score: number;
4
+ grade: 'A' | 'B' | 'C' | 'D' | 'F';
5
+ metrics: {
6
+ critical: number;
7
+ high: number;
8
+ medium: number;
9
+ low: number;
10
+ };
11
+ }
12
+ /**
13
+ * Calculates a deterministic security score and grade based on the volume and severity of findings.
14
+ * Weights: CRITICAL=100, HIGH=20, MEDIUM=5, LOW=1
15
+ *
16
+ * Grade thresholds:
17
+ * A: <= 10 (e.g., up to 2 mediums, or 10 lows)
18
+ * B: <= 30 (e.g., 1 high, or several mediums)
19
+ * C: <= 70 (e.g., 3 highs)
20
+ * D: <= 150 (e.g., many highs, but no criticals. Or 1 critical and nothing else = 100, wait, 1 critical is auto F)
21
+ * F: > 150 OR any CRITICAL finding.
22
+ */
23
+ export declare function calculateScore(findings: NormalizedFinding[]): ScoreResult;
24
+ //# sourceMappingURL=scoring.d.ts.map
@@ -0,0 +1 @@
1
+ {"version":3,"file":"scoring.d.ts","sourceRoot":"","sources":["../src/scoring.ts"],"names":[],"mappings":"AAAA,OAAO,EAAE,iBAAiB,EAAY,MAAM,oBAAoB,CAAC;AAEjE,MAAM,WAAW,WAAW;IAC1B,KAAK,EAAE,MAAM,CAAC;IACd,KAAK,EAAE,GAAG,GAAG,GAAG,GAAG,GAAG,GAAG,GAAG,GAAG,GAAG,CAAC;IACnC,OAAO,EAAE;QACP,QAAQ,EAAE,MAAM,CAAC;QACjB,IAAI,EAAE,MAAM,CAAC;QACb,MAAM,EAAE,MAAM,CAAC;QACf,GAAG,EAAE,MAAM,CAAC;KACb,CAAC;CACH;AAED;;;;;;;;;;GAUG;AACH,wBAAgB,cAAc,CAAC,QAAQ,EAAE,iBAAiB,EAAE,GAAG,WAAW,CAsDzE"}
@@ -0,0 +1,71 @@
1
+ "use strict";
2
+ Object.defineProperty(exports, "__esModule", { value: true });
3
+ exports.calculateScore = calculateScore;
4
+ const types_1 = require("@maverick006/types");
5
+ /**
6
+ * Calculates a deterministic security score and grade based on the volume and severity of findings.
7
+ * Weights: CRITICAL=100, HIGH=20, MEDIUM=5, LOW=1
8
+ *
9
+ * Grade thresholds:
10
+ * A: <= 10 (e.g., up to 2 mediums, or 10 lows)
11
+ * B: <= 30 (e.g., 1 high, or several mediums)
12
+ * C: <= 70 (e.g., 3 highs)
13
+ * D: <= 150 (e.g., many highs, but no criticals. Or 1 critical and nothing else = 100, wait, 1 critical is auto F)
14
+ * F: > 150 OR any CRITICAL finding.
15
+ */
16
+ function calculateScore(findings) {
17
+ let critical = 0;
18
+ let high = 0;
19
+ let medium = 0;
20
+ let low = 0;
21
+ let score = 0;
22
+ for (const finding of findings) {
23
+ switch (finding.severity) {
24
+ case types_1.Severity.CRITICAL:
25
+ critical++;
26
+ score += 100;
27
+ break;
28
+ case types_1.Severity.HIGH:
29
+ high++;
30
+ score += 20;
31
+ break;
32
+ case types_1.Severity.MEDIUM:
33
+ medium++;
34
+ score += 5;
35
+ break;
36
+ case types_1.Severity.LOW:
37
+ case types_1.Severity.INFO:
38
+ low++;
39
+ score += 1;
40
+ break;
41
+ }
42
+ }
43
+ let grade = 'A';
44
+ if (critical > 0) {
45
+ // A single CRITICAL vulnerability drops the grade to F immediately.
46
+ grade = 'F';
47
+ }
48
+ else if (score > 150) {
49
+ grade = 'F';
50
+ }
51
+ else if (score > 70) {
52
+ grade = 'D';
53
+ }
54
+ else if (score > 30) {
55
+ grade = 'C';
56
+ }
57
+ else if (score > 10) {
58
+ grade = 'B';
59
+ }
60
+ return {
61
+ score,
62
+ grade,
63
+ metrics: {
64
+ critical,
65
+ high,
66
+ medium,
67
+ low,
68
+ }
69
+ };
70
+ }
71
+ //# sourceMappingURL=scoring.js.map
@@ -0,0 +1 @@
1
+ {"version":3,"file":"scoring.js","sourceRoot":"","sources":["../src/scoring.ts"],"names":[],"mappings":";;AAwBA,wCAsDC;AA9ED,8CAAiE;AAajE;;;;;;;;;;GAUG;AACH,SAAgB,cAAc,CAAC,QAA6B;IAC1D,IAAI,QAAQ,GAAG,CAAC,CAAC;IACjB,IAAI,IAAI,GAAG,CAAC,CAAC;IACb,IAAI,MAAM,GAAG,CAAC,CAAC;IACf,IAAI,GAAG,GAAG,CAAC,CAAC;IACZ,IAAI,KAAK,GAAG,CAAC,CAAC;IAEd,KAAK,MAAM,OAAO,IAAI,QAAQ,EAAE,CAAC;QAC/B,QAAQ,OAAO,CAAC,QAAQ,EAAE,CAAC;YACzB,KAAK,gBAAQ,CAAC,QAAQ;gBACpB,QAAQ,EAAE,CAAC;gBACX,KAAK,IAAI,GAAG,CAAC;gBACb,MAAM;YACR,KAAK,gBAAQ,CAAC,IAAI;gBAChB,IAAI,EAAE,CAAC;gBACP,KAAK,IAAI,EAAE,CAAC;gBACZ,MAAM;YACR,KAAK,gBAAQ,CAAC,MAAM;gBAClB,MAAM,EAAE,CAAC;gBACT,KAAK,IAAI,CAAC,CAAC;gBACX,MAAM;YACR,KAAK,gBAAQ,CAAC,GAAG,CAAC;YAClB,KAAK,gBAAQ,CAAC,IAAI;gBAChB,GAAG,EAAE,CAAC;gBACN,KAAK,IAAI,CAAC,CAAC;gBACX,MAAM;QACV,CAAC;IACH,CAAC;IAED,IAAI,KAAK,GAAyB,GAAG,CAAC;IAEtC,IAAI,QAAQ,GAAG,CAAC,EAAE,CAAC;QACjB,oEAAoE;QACpE,KAAK,GAAG,GAAG,CAAC;IACd,CAAC;SAAM,IAAI,KAAK,GAAG,GAAG,EAAE,CAAC;QACvB,KAAK,GAAG,GAAG,CAAC;IACd,CAAC;SAAM,IAAI,KAAK,GAAG,EAAE,EAAE,CAAC;QACtB,KAAK,GAAG,GAAG,CAAC;IACd,CAAC;SAAM,IAAI,KAAK,GAAG,EAAE,EAAE,CAAC;QACtB,KAAK,GAAG,GAAG,CAAC;IACd,CAAC;SAAM,IAAI,KAAK,GAAG,EAAE,EAAE,CAAC;QACtB,KAAK,GAAG,GAAG,CAAC;IACd,CAAC;IAED,OAAO;QACL,KAAK;QACL,KAAK;QACL,OAAO,EAAE;YACP,QAAQ;YACR,IAAI;YACJ,MAAM;YACN,GAAG;SACJ;KACF,CAAC;AACJ,CAAC"}
package/jest.config.js ADDED
@@ -0,0 +1,5 @@
1
+ /** @type {import('ts-jest').JestConfigWithTsJest} */
2
+ module.exports = {
3
+ preset: 'ts-jest',
4
+ testEnvironment: 'node',
5
+ };
package/package.json ADDED
@@ -0,0 +1,21 @@
1
+ {
2
+ "name": "@maverick006/security-engine",
3
+ "version": "1.0.2",
4
+ "main": "dist/index.js",
5
+ "types": "dist/index.d.ts",
6
+ "scripts": {
7
+ "build": "tsc",
8
+ "clean": "rm -rf dist",
9
+ "test": "jest",
10
+ "typecheck": "tsc --noEmit"
11
+ },
12
+ "dependencies": {
13
+ "@maverick006/types": "*"
14
+ },
15
+ "devDependencies": {
16
+ "typescript": "^5.0.0",
17
+ "jest": "^29.5.0",
18
+ "@types/jest": "^29.5.0",
19
+ "ts-jest": "^29.1.0"
20
+ }
21
+ }
package/src/index.ts ADDED
@@ -0,0 +1,3 @@
1
+ export * from './scanner';
2
+ export * from './orchestrator';
3
+ export * from './scoring';
@@ -0,0 +1,75 @@
1
+ import { NormalizedFinding, ScanInput, ScannerResult } from '@maverick006/types';
2
+ import { SecurityScanner } from './scanner';
3
+
4
+ /**
5
+ * Orchestrates the execution of multiple security scanners and aggregates/deduplicates their findings.
6
+ */
7
+ export class Orchestrator {
8
+ private scanners: SecurityScanner[] = [];
9
+
10
+ constructor(scanners: SecurityScanner[]) {
11
+ this.scanners = scanners;
12
+ }
13
+
14
+ /**
15
+ * Executes all registered scanners against the given input.
16
+ */
17
+ async runScan(input: ScanInput): Promise<ScannerResult> {
18
+ const startTime = new Date();
19
+
20
+ // Execute all scanners concurrently
21
+ const scanPromises = this.scanners.map(scanner => scanner.scan(input));
22
+ const results = await Promise.allSettled(scanPromises);
23
+
24
+ let allFindings: NormalizedFinding[] = [];
25
+ const rawOutputs: Record<string, string> = {};
26
+
27
+ for (let i = 0; i < results.length; i++) {
28
+ const result = results[i];
29
+ const scannerName = this.scanners[i].name;
30
+
31
+ if (result.status === 'fulfilled') {
32
+ const data = result.value;
33
+ allFindings = allFindings.concat(data.findings);
34
+ if (data.rawOutput) {
35
+ rawOutputs[scannerName] = data.rawOutput;
36
+ }
37
+ } else {
38
+ // Log scanner failure safely (in production this would use a proper logger)
39
+ console.error(`Scanner ${scannerName} failed:`, result.reason);
40
+ }
41
+ }
42
+
43
+ const deduplicatedFindings = this.deduplicateFindings(allFindings);
44
+
45
+ return {
46
+ scanner: 'VibeGuard_Orchestrator',
47
+ success: true,
48
+ findings: deduplicatedFindings,
49
+ rawOutput: JSON.stringify(rawOutputs), // Aggregate raw outputs
50
+ startTime,
51
+ endTime: new Date()
52
+ };
53
+ }
54
+
55
+ /**
56
+ * Deduplicates findings based on a fingerprint generated from ruleId, file, line, and column.
57
+ */
58
+ private deduplicateFindings(findings: NormalizedFinding[]): NormalizedFinding[] {
59
+ const unique = new Map<string, NormalizedFinding>();
60
+
61
+ for (const finding of findings) {
62
+ // Create a unique fingerprint for the finding
63
+ const fingerprint = `${finding.ruleId}-${finding.file}-${finding.line}-${finding.column}`;
64
+
65
+ if (!unique.has(fingerprint)) {
66
+ unique.set(fingerprint, finding);
67
+ } else {
68
+ // If it already exists, we might want to merge information, but for now we keep the first one
69
+ // Optionally, if the new one has higher confidence, we could replace it.
70
+ }
71
+ }
72
+
73
+ return Array.from(unique.values());
74
+ }
75
+ }
package/src/scanner.ts ADDED
@@ -0,0 +1,26 @@
1
+ import { ScanInput, ScannerResult } from '@maverick006/types';
2
+
3
+ /**
4
+ * Base interface that all VibeGuard scanners must implement.
5
+ * This provides the core abstraction allowing new scanners to be added
6
+ * without rewriting the rest of the application.
7
+ */
8
+ export interface SecurityScanner {
9
+ /**
10
+ * The name of the scanner (e.g., 'Semgrep', 'Gitleaks')
11
+ */
12
+ name: string;
13
+
14
+ /**
15
+ * The version of the scanner, if known/applicable.
16
+ */
17
+ version?: string;
18
+
19
+ /**
20
+ * Executes the scanner against the given input.
21
+ *
22
+ * @param input The configuration and path for the scan.
23
+ * @returns A promise resolving to the normalized scanner results.
24
+ */
25
+ scan(input: ScanInput): Promise<ScannerResult>;
26
+ }
package/src/scoring.ts ADDED
@@ -0,0 +1,79 @@
1
+ import { NormalizedFinding, Severity } from '@maverick006/types';
2
+
3
+ export interface ScoreResult {
4
+ score: number;
5
+ grade: 'A' | 'B' | 'C' | 'D' | 'F';
6
+ metrics: {
7
+ critical: number;
8
+ high: number;
9
+ medium: number;
10
+ low: number;
11
+ };
12
+ }
13
+
14
+ /**
15
+ * Calculates a deterministic security score and grade based on the volume and severity of findings.
16
+ * Weights: CRITICAL=100, HIGH=20, MEDIUM=5, LOW=1
17
+ *
18
+ * Grade thresholds:
19
+ * A: <= 10 (e.g., up to 2 mediums, or 10 lows)
20
+ * B: <= 30 (e.g., 1 high, or several mediums)
21
+ * C: <= 70 (e.g., 3 highs)
22
+ * D: <= 150 (e.g., many highs, but no criticals. Or 1 critical and nothing else = 100, wait, 1 critical is auto F)
23
+ * F: > 150 OR any CRITICAL finding.
24
+ */
25
+ export function calculateScore(findings: NormalizedFinding[]): ScoreResult {
26
+ let critical = 0;
27
+ let high = 0;
28
+ let medium = 0;
29
+ let low = 0;
30
+ let score = 0;
31
+
32
+ for (const finding of findings) {
33
+ switch (finding.severity) {
34
+ case Severity.CRITICAL:
35
+ critical++;
36
+ score += 100;
37
+ break;
38
+ case Severity.HIGH:
39
+ high++;
40
+ score += 20;
41
+ break;
42
+ case Severity.MEDIUM:
43
+ medium++;
44
+ score += 5;
45
+ break;
46
+ case Severity.LOW:
47
+ case Severity.INFO:
48
+ low++;
49
+ score += 1;
50
+ break;
51
+ }
52
+ }
53
+
54
+ let grade: ScoreResult['grade'] = 'A';
55
+
56
+ if (critical > 0) {
57
+ // A single CRITICAL vulnerability drops the grade to F immediately.
58
+ grade = 'F';
59
+ } else if (score > 150) {
60
+ grade = 'F';
61
+ } else if (score > 70) {
62
+ grade = 'D';
63
+ } else if (score > 30) {
64
+ grade = 'C';
65
+ } else if (score > 10) {
66
+ grade = 'B';
67
+ }
68
+
69
+ return {
70
+ score,
71
+ grade,
72
+ metrics: {
73
+ critical,
74
+ high,
75
+ medium,
76
+ low,
77
+ }
78
+ };
79
+ }
@@ -0,0 +1,96 @@
1
+ import { Orchestrator } from '../src/orchestrator';
2
+ import { SecurityScanner } from '../src/scanner';
3
+ import { ScanInput, ScannerResult, Severity, NormalizedFinding } from '@maverick006/types';
4
+
5
+ class MockScanner implements SecurityScanner {
6
+ public name: string;
7
+ public version = '1.0.0';
8
+ private findings: NormalizedFinding[];
9
+
10
+ constructor(name: string, findings: NormalizedFinding[]) {
11
+ this.name = name;
12
+ this.findings = findings;
13
+ }
14
+
15
+ async scan(input: ScanInput): Promise<ScannerResult> {
16
+ return {
17
+ scanner: this.name,
18
+ success: true,
19
+ findings: this.findings,
20
+ startTime: new Date(),
21
+ endTime: new Date(),
22
+ };
23
+ }
24
+ }
25
+
26
+ describe('Orchestrator', () => {
27
+ it('should aggregate findings from multiple scanners', async () => {
28
+ const finding1: NormalizedFinding = {
29
+ scanner: 'Mock1',
30
+ title: 'Finding 1',
31
+ description: 'Desc 1',
32
+ severity: Severity.HIGH,
33
+ ruleId: 'rule-1',
34
+ file: 'test.js',
35
+ line: 10,
36
+ };
37
+
38
+ const finding2: NormalizedFinding = {
39
+ scanner: 'Mock2',
40
+ title: 'Finding 2',
41
+ description: 'Desc 2',
42
+ severity: Severity.MEDIUM,
43
+ ruleId: 'rule-2',
44
+ file: 'test2.js',
45
+ line: 20,
46
+ };
47
+
48
+ const scanner1 = new MockScanner('Mock1', [finding1]);
49
+ const scanner2 = new MockScanner('Mock2', [finding2]);
50
+
51
+ const orchestrator = new Orchestrator([scanner1, scanner2]);
52
+
53
+ const result = await orchestrator.runScan({
54
+ scanId: 'scan-1',
55
+ repositoryPath: '/fake/path'
56
+ });
57
+
58
+ expect(result.findings.length).toBe(2);
59
+ expect(result.findings).toEqual(expect.arrayContaining([finding1, finding2]));
60
+ });
61
+
62
+ it('should deduplicate findings with the same fingerprint', async () => {
63
+ const finding1: NormalizedFinding = {
64
+ scanner: 'Mock1',
65
+ title: 'Finding 1',
66
+ description: 'Desc 1',
67
+ severity: Severity.HIGH,
68
+ ruleId: 'rule-1',
69
+ file: 'test.js',
70
+ line: 10,
71
+ };
72
+
73
+ const finding2: NormalizedFinding = {
74
+ scanner: 'Mock2',
75
+ title: 'Finding 1 duplicate',
76
+ description: 'Desc 1 duplicate',
77
+ severity: Severity.HIGH,
78
+ ruleId: 'rule-1', // Same rule
79
+ file: 'test.js', // Same file
80
+ line: 10, // Same line
81
+ };
82
+
83
+ const scanner1 = new MockScanner('Mock1', [finding1]);
84
+ const scanner2 = new MockScanner('Mock2', [finding2]);
85
+
86
+ const orchestrator = new Orchestrator([scanner1, scanner2]);
87
+
88
+ const result = await orchestrator.runScan({
89
+ scanId: 'scan-2',
90
+ repositoryPath: '/fake/path'
91
+ });
92
+
93
+ expect(result.findings.length).toBe(1);
94
+ expect(result.findings[0]).toEqual(finding1); // Should keep the first one
95
+ });
96
+ });
@@ -0,0 +1,62 @@
1
+ import { calculateScore } from '../src/scoring';
2
+ import { NormalizedFinding, Severity } from '@maverick006/types';
3
+
4
+ describe('Deterministic Scoring Engine', () => {
5
+
6
+ const createFinding = (severity: Severity): NormalizedFinding => ({
7
+ scanner: 'test',
8
+ ruleId: 'test-rule',
9
+ title: 'test finding',
10
+ description: 'test desc',
11
+ severity,
12
+ file: 'test.ts',
13
+ line: 1
14
+ });
15
+
16
+ it('should return grade A for perfect score (0 findings)', () => {
17
+ const result = calculateScore([]);
18
+ expect(result.score).toBe(0);
19
+ expect(result.grade).toBe('A');
20
+ });
21
+
22
+ it('should return grade A for score <= 10 (e.g. 2 mediums)', () => {
23
+ const findings = [
24
+ createFinding(Severity.MEDIUM), // 5
25
+ createFinding(Severity.MEDIUM), // 5
26
+ ];
27
+ const result = calculateScore(findings);
28
+ expect(result.score).toBe(10);
29
+ expect(result.grade).toBe('A');
30
+ });
31
+
32
+ it('should return grade B for score <= 30 (e.g. 1 high, 2 lows)', () => {
33
+ const findings = [
34
+ createFinding(Severity.HIGH), // 20
35
+ createFinding(Severity.LOW), // 1
36
+ createFinding(Severity.LOW), // 1
37
+ ];
38
+ const result = calculateScore(findings);
39
+ expect(result.score).toBe(22);
40
+ expect(result.grade).toBe('B');
41
+ });
42
+
43
+ it('should immediately return grade F if any CRITICAL finding exists', () => {
44
+ const findings = [
45
+ createFinding(Severity.CRITICAL), // 100
46
+ createFinding(Severity.LOW), // 1
47
+ ];
48
+ const result = calculateScore(findings);
49
+ // Score is 101, which is normally D, but CRITICAL forces F
50
+ expect(result.score).toBe(101);
51
+ expect(result.grade).toBe('F');
52
+ });
53
+
54
+ it('should return grade F if score > 150 without criticals', () => {
55
+ // 8 HIGHs = 160 score
56
+ const findings = Array(8).fill(createFinding(Severity.HIGH));
57
+ const result = calculateScore(findings);
58
+ expect(result.score).toBe(160);
59
+ expect(result.grade).toBe('F');
60
+ });
61
+
62
+ });
package/tsconfig.json ADDED
@@ -0,0 +1,15 @@
1
+ {
2
+ "extends": "../../tsconfig.json",
3
+ "compilerOptions": {
4
+ "composite": true,
5
+ "outDir": "./dist",
6
+ "rootDir": "./src",
7
+ "declaration": true,
8
+ "declarationMap": true,
9
+ "sourceMap": true
10
+ },
11
+ "references": [
12
+ { "path": "../types" }
13
+ ],
14
+ "include": ["src/**/*"]
15
+ }
@@ -0,0 +1 @@
1
+ {"fileNames":["../../node_modules/typescript/lib/lib.es5.d.ts","../../node_modules/typescript/lib/lib.es2015.d.ts","../../node_modules/typescript/lib/lib.es2016.d.ts","../../node_modules/typescript/lib/lib.es2017.d.ts","../../node_modules/typescript/lib/lib.es2018.d.ts","../../node_modules/typescript/lib/lib.es2019.d.ts","../../node_modules/typescript/lib/lib.es2020.d.ts","../../node_modules/typescript/lib/lib.es2021.d.ts","../../node_modules/typescript/lib/lib.es2022.d.ts","../../node_modules/typescript/lib/lib.dom.d.ts","../../node_modules/typescript/lib/lib.dom.iterable.d.ts","../../node_modules/typescript/lib/lib.dom.asynciterable.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.es2016.intl.d.ts","../../node_modules/typescript/lib/lib.es2017.arraybuffer.d.ts","../../node_modules/typescript/lib/lib.es2017.date.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.es2021.promise.d.ts","../../node_modules/typescript/lib/lib.es2021.string.d.ts","../../node_modules/typescript/lib/lib.es2021.weakref.d.ts","../../node_modules/typescript/lib/lib.es2021.intl.d.ts","../../node_modules/typescript/lib/lib.es2022.array.d.ts","../../node_modules/typescript/lib/lib.es2022.error.d.ts","../../node_modules/typescript/lib/lib.es2022.intl.d.ts","../../node_modules/typescript/lib/lib.es2022.object.d.ts","../../node_modules/typescript/lib/lib.es2022.string.d.ts","../../node_modules/typescript/lib/lib.es2022.regexp.d.ts","../../node_modules/typescript/lib/lib.decorators.d.ts","../../node_modules/typescript/lib/lib.decorators.legacy.d.ts","../../node_modules/typescript/lib/lib.es2022.full.d.ts","../types/dist/index.d.ts","./src/scanner.ts","./src/orchestrator.ts","./src/scoring.ts","./src/index.ts","../../node_modules/@babel/types/lib/index.d.ts","../../node_modules/@types/babel__generator/index.d.ts","../../node_modules/@babel/parser/typings/babel-parser.d.ts","../../node_modules/@types/babel__template/index.d.ts","../../node_modules/@types/babel__traverse/index.d.ts","../../node_modules/@types/babel__core/index.d.ts","../../node_modules/@types/node/compatibility/disposable.d.ts","../../node_modules/@types/node/compatibility/indexable.d.ts","../../node_modules/@types/node/compatibility/iterators.d.ts","../../node_modules/@types/node/compatibility/index.d.ts","../../node_modules/@types/node/globals.typedarray.d.ts","../../node_modules/@types/node/buffer.buffer.d.ts","../../node_modules/@types/node/globals.d.ts","../../node_modules/@types/node/web-globals/abortcontroller.d.ts","../../node_modules/@types/node/web-globals/domexception.d.ts","../../node_modules/@types/node/web-globals/events.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/env-http-proxy-agent.d.ts","../../node_modules/undici-types/retry-handler.d.ts","../../node_modules/undici-types/retry-agent.d.ts","../../node_modules/undici-types/api.d.ts","../../node_modules/undici-types/interceptors.d.ts","../../node_modules/undici-types/util.d.ts","../../node_modules/undici-types/cookies.d.ts","../../node_modules/undici-types/patch.d.ts","../../node_modules/undici-types/websocket.d.ts","../../node_modules/undici-types/eventsource.d.ts","../../node_modules/undici-types/filereader.d.ts","../../node_modules/undici-types/diagnostics-channel.d.ts","../../node_modules/undici-types/content-type.d.ts","../../node_modules/undici-types/cache.d.ts","../../node_modules/undici-types/index.d.ts","../../node_modules/@types/node/web-globals/fetch.d.ts","../../node_modules/@types/node/assert.d.ts","../../node_modules/@types/node/assert/strict.d.ts","../../node_modules/@types/node/async_hooks.d.ts","../../node_modules/@types/node/buffer.d.ts","../../node_modules/@types/node/child_process.d.ts","../../node_modules/@types/node/cluster.d.ts","../../node_modules/@types/node/console.d.ts","../../node_modules/@types/node/constants.d.ts","../../node_modules/@types/node/crypto.d.ts","../../node_modules/@types/node/dgram.d.ts","../../node_modules/@types/node/diagnostics_channel.d.ts","../../node_modules/@types/node/dns.d.ts","../../node_modules/@types/node/dns/promises.d.ts","../../node_modules/@types/node/domain.d.ts","../../node_modules/@types/node/events.d.ts","../../node_modules/@types/node/fs.d.ts","../../node_modules/@types/node/fs/promises.d.ts","../../node_modules/@types/node/http.d.ts","../../node_modules/@types/node/http2.d.ts","../../node_modules/@types/node/https.d.ts","../../node_modules/@types/node/inspector.generated.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/sea.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/index.d.ts","../../node_modules/@types/connect/index.d.ts","../../node_modules/@types/body-parser/index.d.ts","../../node_modules/@types/cors/index.d.ts","../../node_modules/@types/d3-array/index.d.ts","../../node_modules/@types/d3-color/index.d.ts","../../node_modules/@types/d3-ease/index.d.ts","../../node_modules/@types/d3-interpolate/index.d.ts","../../node_modules/@types/d3-path/index.d.ts","../../node_modules/@types/d3-time/index.d.ts","../../node_modules/@types/d3-scale/index.d.ts","../../node_modules/@types/d3-shape/index.d.ts","../../node_modules/@types/d3-timer/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/mime/index.d.ts","../../node_modules/@types/serve-static/node_modules/@types/send/index.d.ts","../../node_modules/@types/serve-static/index.d.ts","../../node_modules/@types/express/index.d.ts","../../node_modules/@types/graceful-fs/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/@sinclair/typebox/typebox.d.ts","../../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/react/global.d.ts","../../node_modules/csstype/index.d.ts","../../node_modules/@types/react/index.d.ts","../../node_modules/@types/react-dom/index.d.ts","../../node_modules/@types/stack-utils/index.d.ts","../../node_modules/@types/strip-bom/index.d.ts","../../node_modules/@types/strip-json-comments/index.d.ts","../../node_modules/@types/use-sync-external-store/index.d.ts","../../node_modules/@types/yargs-parser/index.d.ts","../../node_modules/@types/yargs/index.d.ts"],"fileIdsList":[[69,80,127],[80,127],[80,127,203],[69,70,71,72,73,80,127],[69,71,80,127],[80,127,141,175,176],[80,127,141,175],[80,127,180],[80,127,184],[80,127,183],[80,127,138,141,175,188,189,190],[80,127,177,189,191,195],[80,127,139,175],[80,127,198],[80,127,199],[80,127,205,208],[80,124,127],[80,126,127],[127],[80,127,132,160],[80,127,128,133,138,146,157,168],[80,127,128,129,138,146],[75,76,77,80,127],[80,127,130,169],[80,127,131,132,139,147],[80,127,132,157,165],[80,127,133,135,138,146],[80,126,127,134],[80,127,135,136],[80,127,137,138],[80,126,127,138],[80,127,138,139,140,157,168],[80,127,138,139,140,153,157,160],[80,127,135,138,141,146,157,168],[80,127,138,139,141,142,146,157,165,168],[80,127,141,143,157,165,168],[78,79,80,81,82,83,84,123,124,125,126,127,128,129,130,131,132,133,134,135,136,137,138,139,140,141,142,143,144,145,146,147,148,149,150,151,152,153,154,155,156,157,158,159,160,161,162,163,164,165,166,167,168,169,170,171,172,173,174],[80,127,138,144],[80,127,145,168,173],[80,127,135,138,146,157],[80,127,147],[80,127,148],[80,126,127,149],[80,124,125,126,127,128,129,130,131,132,133,134,135,136,137,138,139,140,141,142,143,144,145,146,147,148,149,150,151,152,153,154,155,156,157,158,159,160,161,162,163,164,165,166,167,168,169,170,171,172,173,174],[80,127,151],[80,127,152],[80,127,138,153,154],[80,127,153,155,169,171],[80,127,138,157,158,160],[80,127,159,160],[80,127,157,158],[80,127,160],[80,127,161],[80,124,127,157,162],[80,127,138,163,164],[80,127,163,164],[80,127,132,146,157,165],[80,127,166],[80,127,146,167],[80,127,141,152,168],[80,127,132,169],[80,127,157,170],[80,127,145,171],[80,127,172],[80,122,127],[80,122,127,138,140,149,157,160,168,171,173],[80,127,157,174],[80,127,212],[80,127,210,211],[80,127,139,157,175],[80,127,141,175,192,194],[80,127,139,157,175,193],[80,127,218],[80,127,201,207],[80,127,205],[80,127,202,206],[80,127,204],[80,94,98,127,168],[80,94,127,157,168],[80,89,127],[80,91,94,127,165,168],[80,127,146,165],[80,127,175],[80,89,127,175],[80,91,94,127,146,168],[80,86,87,90,93,127,138,157,168],[80,94,101,127],[80,86,92,127],[80,94,115,116,127],[80,90,94,127,160,168,175],[80,115,127,175],[80,88,89,127,175],[80,94,127],[80,88,89,90,91,92,93,94,95,96,98,99,100,101,102,103,104,105,106,107,108,109,110,111,112,113,114,116,117,118,119,120,121,127],[80,94,109,127],[80,94,101,102,127],[80,92,94,102,103,127],[80,93,127],[80,86,89,94,127],[80,94,98,102,103,127],[80,98,127],[80,92,94,97,127,168],[80,86,91,94,101,127],[80,127,157],[80,89,94,115,127,173,175],[65,66,67,80,127],[64,65,80,127],[64,80,127]],"fileInfos":[{"version":"c430d44666289dae81f30fa7b2edebf186ecc91a2d4c71266ea6ae76388792e1","affectsGlobalScope":true,"impliedFormat":1},{"version":"45b7ab580deca34ae9729e97c13cfd999df04416a79116c3bfb483804f85ded4","impliedFormat":1},{"version":"3facaf05f0c5fc569c5649dd359892c98a85557e3e0c847964caeb67076f4d75","impliedFormat":1},{"version":"e44bb8bbac7f10ecc786703fe0a6a4b952189f908707980ba8f3c8975a760962","impliedFormat":1},{"version":"5e1c4c362065a6b95ff952c0eab010f04dcd2c3494e813b493ecfd4fcb9fc0d8","impliedFormat":1},{"version":"68d73b4a11549f9c0b7d352d10e91e5dca8faa3322bfb77b661839c42b1ddec7","impliedFormat":1},{"version":"5efce4fc3c29ea84e8928f97adec086e3dc876365e0982cc8479a07954a3efd4","impliedFormat":1},{"version":"feecb1be483ed332fad555aff858affd90a48ab19ba7272ee084704eb7167569","impliedFormat":1},{"version":"ee7bad0c15b58988daa84371e0b89d313b762ab83cb5b31b8a2d1162e8eb41c2","impliedFormat":1},{"version":"080941d9f9ff9307f7e27a83bcd888b7c8270716c39af943532438932ec1d0b9","affectsGlobalScope":true,"impliedFormat":1},{"version":"2e80ee7a49e8ac312cc11b77f1475804bee36b3b2bc896bead8b6e1266befb43","affectsGlobalScope":true,"impliedFormat":1},{"version":"d7a3c8b952931daebdfc7a2897c53c0a1c73624593fa070e46bd537e64dcd20a","affectsGlobalScope":true,"impliedFormat":1},{"version":"80e18897e5884b6723488d4f5652167e7bb5024f946743134ecc4aa4ee731f89","affectsGlobalScope":true,"impliedFormat":1},{"version":"cd034f499c6cdca722b60c04b5b1b78e058487a7085a8e0d6fb50809947ee573","affectsGlobalScope":true,"impliedFormat":1},{"version":"c57796738e7f83dbc4b8e65132f11a377649c00dd3eee333f672b8f0a6bea671","affectsGlobalScope":true,"impliedFormat":1},{"version":"dc2df20b1bcdc8c2d34af4926e2c3ab15ffe1160a63e58b7e09833f616efff44","affectsGlobalScope":true,"impliedFormat":1},{"version":"515d0b7b9bea2e31ea4ec968e9edd2c39d3eebf4a2d5cbd04e88639819ae3b71","affectsGlobalScope":true,"impliedFormat":1},{"version":"0559b1f683ac7505ae451f9a96ce4c3c92bdc71411651ca6ddb0e88baaaad6a3","affectsGlobalScope":true,"impliedFormat":1},{"version":"0dc1e7ceda9b8b9b455c3a2d67b0412feab00bd2f66656cd8850e8831b08b537","affectsGlobalScope":true,"impliedFormat":1},{"version":"ce691fb9e5c64efb9547083e4a34091bcbe5bdb41027e310ebba8f7d96a98671","affectsGlobalScope":true,"impliedFormat":1},{"version":"8d697a2a929a5fcb38b7a65594020fcef05ec1630804a33748829c5ff53640d0","affectsGlobalScope":true,"impliedFormat":1},{"version":"4ff2a353abf8a80ee399af572debb8faab2d33ad38c4b4474cff7f26e7653b8d","affectsGlobalScope":true,"impliedFormat":1},{"version":"fb0f136d372979348d59b3f5020b4cdb81b5504192b1cacff5d1fbba29378aa1","affectsGlobalScope":true,"impliedFormat":1},{"version":"d15bea3d62cbbdb9797079416b8ac375ae99162a7fba5de2c6c505446486ac0a","affectsGlobalScope":true,"impliedFormat":1},{"version":"68d18b664c9d32a7336a70235958b8997ebc1c3b8505f4f1ae2b7e7753b87618","affectsGlobalScope":true,"impliedFormat":1},{"version":"eb3d66c8327153d8fa7dd03f9c58d351107fe824c79e9b56b462935176cdf12a","affectsGlobalScope":true,"impliedFormat":1},{"version":"38f0219c9e23c915ef9790ab1d680440d95419ad264816fa15009a8851e79119","affectsGlobalScope":true,"impliedFormat":1},{"version":"69ab18c3b76cd9b1be3d188eaf8bba06112ebbe2f47f6c322b5105a6fbc45a2e","affectsGlobalScope":true,"impliedFormat":1},{"version":"a680117f487a4d2f30ea46f1b4b7f58bef1480456e18ba53ee85c2746eeca012","affectsGlobalScope":true,"impliedFormat":1},{"version":"2f11ff796926e0832f9ae148008138ad583bd181899ab7dd768a2666700b1893","affectsGlobalScope":true,"impliedFormat":1},{"version":"4de680d5bb41c17f7f68e0419412ca23c98d5749dcaaea1896172f06435891fc","affectsGlobalScope":true,"impliedFormat":1},{"version":"954296b30da6d508a104a3a0b5d96b76495c709785c1d11610908e63481ee667","affectsGlobalScope":true,"impliedFormat":1},{"version":"ac9538681b19688c8eae65811b329d3744af679e0bdfa5d842d0e32524c73e1c","affectsGlobalScope":true,"impliedFormat":1},{"version":"0a969edff4bd52585473d24995c5ef223f6652d6ef46193309b3921d65dd4376","affectsGlobalScope":true,"impliedFormat":1},{"version":"9e9fbd7030c440b33d021da145d3232984c8bb7916f277e8ffd3dc2e3eae2bdb","affectsGlobalScope":true,"impliedFormat":1},{"version":"811ec78f7fefcabbda4bfa93b3eb67d9ae166ef95f9bff989d964061cbf81a0c","affectsGlobalScope":true,"impliedFormat":1},{"version":"717937616a17072082152a2ef351cb51f98802fb4b2fdabd32399843875974ca","affectsGlobalScope":true,"impliedFormat":1},{"version":"d7e7d9b7b50e5f22c915b525acc5a49a7a6584cf8f62d0569e557c5cfc4b2ac2","affectsGlobalScope":true,"impliedFormat":1},{"version":"71c37f4c9543f31dfced6c7840e068c5a5aacb7b89111a4364b1d5276b852557","affectsGlobalScope":true,"impliedFormat":1},{"version":"576711e016cf4f1804676043e6a0a5414252560eb57de9faceee34d79798c850","affectsGlobalScope":true,"impliedFormat":1},{"version":"89c1b1281ba7b8a96efc676b11b264de7a8374c5ea1e6617f11880a13fc56dc6","affectsGlobalScope":true,"impliedFormat":1},{"version":"74f7fa2d027d5b33eb0471c8e82a6c87216223181ec31247c357a3e8e2fddc5b","affectsGlobalScope":true,"impliedFormat":1},{"version":"d6d7ae4d1f1f3772e2a3cde568ed08991a8ae34a080ff1151af28b7f798e22ca","affectsGlobalScope":true,"impliedFormat":1},{"version":"063600664504610fe3e99b717a1223f8b1900087fab0b4cad1496a114744f8df","affectsGlobalScope":true,"impliedFormat":1},{"version":"934019d7e3c81950f9a8426d093458b65d5aff2c7c1511233c0fd5b941e608ab","affectsGlobalScope":true,"impliedFormat":1},{"version":"52ada8e0b6e0482b728070b7639ee42e83a9b1c22d205992756fe020fd9f4a47","affectsGlobalScope":true,"impliedFormat":1},{"version":"3bdefe1bfd4d6dee0e26f928f93ccc128f1b64d5d501ff4a8cf3c6371200e5e6","affectsGlobalScope":true,"impliedFormat":1},{"version":"59fb2c069260b4ba00b5643b907ef5d5341b167e7d1dbf58dfd895658bda2867","affectsGlobalScope":true,"impliedFormat":1},{"version":"639e512c0dfc3fad96a84caad71b8834d66329a1f28dc95e3946c9b58176c73a","affectsGlobalScope":true,"impliedFormat":1},{"version":"368af93f74c9c932edd84c58883e736c9e3d53cec1fe24c0b0ff451f529ceab1","affectsGlobalScope":true,"impliedFormat":1},{"version":"af3dd424cf267428f30ccfc376f47a2c0114546b55c44d8c0f1d57d841e28d74","affectsGlobalScope":true,"impliedFormat":1},{"version":"995c005ab91a498455ea8dfb63aa9f83fa2ea793c3d8aa344be4a1678d06d399","affectsGlobalScope":true,"impliedFormat":1},{"version":"959d36cddf5e7d572a65045b876f2956c973a586da58e5d26cde519184fd9b8a","affectsGlobalScope":true,"impliedFormat":1},{"version":"965f36eae237dd74e6cca203a43e9ca801ce38824ead814728a2807b1910117d","affectsGlobalScope":true,"impliedFormat":1},{"version":"3925a6c820dcb1a06506c90b1577db1fdbf7705d65b62b99dce4be75c637e26b","affectsGlobalScope":true,"impliedFormat":1},{"version":"0a3d63ef2b853447ec4f749d3f368ce642264246e02911fcb1590d8c161b8005","affectsGlobalScope":true,"impliedFormat":1},{"version":"8cdf8847677ac7d20486e54dd3fcf09eda95812ac8ace44b4418da1bbbab6eb8","affectsGlobalScope":true,"impliedFormat":1},{"version":"8444af78980e3b20b49324f4a16ba35024fef3ee069a0eb67616ea6ca821c47a","affectsGlobalScope":true,"impliedFormat":1},{"version":"3287d9d085fbd618c3971944b65b4be57859f5415f495b33a6adc994edd2f004","affectsGlobalScope":true,"impliedFormat":1},{"version":"b4b67b1a91182421f5df999988c690f14d813b9850b40acd06ed44691f6727ad","affectsGlobalScope":true,"impliedFormat":1},{"version":"8e7f8264d0fb4c5339605a15daadb037bf238c10b654bb3eee14208f860a32ea","affectsGlobalScope":true,"impliedFormat":1},{"version":"782dec38049b92d4e85c1585fbea5474a219c6984a35b004963b00beb1aab538","affectsGlobalScope":true,"impliedFormat":1},{"version":"3cbad9a1ba4453443026ed38e4b8be018abb26565fa7c944376463ad9df07c41","impliedFormat":1},"b5b2e86a8b4b94dc703047f5161558f26aa585d77b02c68dde8d059c078c3121",{"version":"22788631645216f4dd1242898347cdc151fc9b59248e294d6a93fff3abcf98d6","signature":"57aaf23fa1a149c95c7a43686830041f7483f1f53fdb709300b3dbb2ba7c7091"},{"version":"ee087f05fa938db8772ded4ebf3ae08e92419ee5d36699c0ac33c96720a74194","signature":"9ed136d7ef2fb47f58ae580cf074b3339e3cba4d7a957872d65f278cae66d4af"},{"version":"9323c85cd75b31a52790ed871f65be26fc6d2ac1e79a70fe59e8ed0429309d48","signature":"db2466e2ff3db83434eb9dca48c9096bd1a1aab9d14fbd63cacacd041e2a2c17"},{"version":"bda6cf59ec256568b0c8faf170af71594f0d487ae83882656f46ce73a909a31c","signature":"fdc66e5b688bab06361f99e9806094974117896a7c362de1d4d2710094855362"},{"version":"69d4b61c408556b97b796782a1110f7e01a03ed80f31741f2c59b722185830ed","impliedFormat":1},{"version":"b6d03c9cfe2cf0ba4c673c209fcd7c46c815b2619fd2aad59fc4229aaef2ed43","impliedFormat":1},{"version":"e6ca59368dce5a594dcde9bbb6ae640d668fa6c28c31639dd2a75b731bb036a2","impliedFormat":1},{"version":"670a76db379b27c8ff42f1ba927828a22862e2ab0b0908e38b671f0e912cc5ed","impliedFormat":1},{"version":"13b77ab19ef7aadd86a1e54f2f08ea23a6d74e102909e3c00d31f231ed040f62","impliedFormat":1},{"version":"069bebfee29864e3955378107e243508b163e77ab10de6a5ee03ae06939f0bb9","impliedFormat":1},{"version":"70521b6ab0dcba37539e5303104f29b721bfb2940b2776da4cc818c07e1fefc1","affectsGlobalScope":true,"impliedFormat":1},{"version":"ab41ef1f2cdafb8df48be20cd969d875602483859dc194e9c97c8a576892c052","affectsGlobalScope":true,"impliedFormat":1},{"version":"d153a11543fd884b596587ccd97aebbeed950b26933ee000f94009f1ab142848","affectsGlobalScope":true,"impliedFormat":1},{"version":"21d819c173c0cf7cc3ce57c3276e77fd9a8a01d35a06ad87158781515c9a438a","impliedFormat":1},{"version":"98cffbf06d6bab333473c70a893770dbe990783904002c4f1a960447b4b53dca","affectsGlobalScope":true,"impliedFormat":1},{"version":"ba481bca06f37d3f2c137ce343c7d5937029b2468f8e26111f3c9d9963d6568d","affectsGlobalScope":true,"impliedFormat":1},{"version":"6d9ef24f9a22a88e3e9b3b3d8c40ab1ddb0853f1bfbd5c843c37800138437b61","affectsGlobalScope":true,"impliedFormat":1},{"version":"1db0b7dca579049ca4193d034d835f6bfe73096c73663e5ef9a0b5779939f3d0","affectsGlobalScope":true,"impliedFormat":1},{"version":"9798340ffb0d067d69b1ae5b32faa17ab31b82466a3fc00d8f2f2df0c8554aaa","affectsGlobalScope":true,"impliedFormat":1},{"version":"f26b11d8d8e4b8028f1c7d618b22274c892e4b0ef5b3678a8ccbad85419aef43","affectsGlobalScope":true,"impliedFormat":1},{"version":"8e9c23ba78aabc2e0a27033f18737a6df754067731e69dc5f52823957d60a4b6","impliedFormat":1},{"version":"5929864ce17fba74232584d90cb721a89b7ad277220627cc97054ba15a98ea8f","impliedFormat":1},{"version":"763fe0f42b3d79b440a9b6e51e9ba3f3f91352469c1e4b3b67bfa4ff6352f3f4","impliedFormat":1},{"version":"25c8056edf4314820382a5fdb4bb7816999acdcb929c8f75e3f39473b87e85bc","impliedFormat":1},{"version":"c464d66b20788266e5353b48dc4aa6bc0dc4a707276df1e7152ab0c9ae21fad8","impliedFormat":1},{"version":"78d0d27c130d35c60b5e5566c9f1e5be77caf39804636bc1a40133919a949f21","impliedFormat":1},{"version":"c6fd2c5a395f2432786c9cb8deb870b9b0e8ff7e22c029954fabdd692bff6195","impliedFormat":1},{"version":"1d6e127068ea8e104a912e42fc0a110e2aa5a66a356a917a163e8cf9a65e4a75","impliedFormat":1},{"version":"5ded6427296cdf3b9542de4471d2aa8d3983671d4cac0f4bf9c637208d1ced43","impliedFormat":1},{"version":"7f182617db458e98fc18dfb272d40aa2fff3a353c44a89b2c0ccb3937709bfb5","impliedFormat":1},{"version":"cadc8aced301244057c4e7e73fbcae534b0f5b12a37b150d80e5a45aa4bebcbd","impliedFormat":1},{"version":"385aab901643aa54e1c36f5ef3107913b10d1b5bb8cbcd933d4263b80a0d7f20","impliedFormat":1},{"version":"9670d44354bab9d9982eca21945686b5c24a3f893db73c0dae0fd74217a4c219","impliedFormat":1},{"version":"0b8a9268adaf4da35e7fa830c8981cfa22adbbe5b3f6f5ab91f6658899e657a7","impliedFormat":1},{"version":"11396ed8a44c02ab9798b7dca436009f866e8dae3c9c25e8c1fbc396880bf1bb","impliedFormat":1},{"version":"ba7bc87d01492633cb5a0e5da8a4a42a1c86270e7b3d2dea5d156828a84e4882","impliedFormat":1},{"version":"4893a895ea92c85345017a04ed427cbd6a1710453338df26881a6019432febdd","impliedFormat":1},{"version":"c21dc52e277bcfc75fac0436ccb75c204f9e1b3fa5e12729670910639f27343e","impliedFormat":1},{"version":"13f6f39e12b1518c6650bbb220c8985999020fe0f21d818e28f512b7771d00f9","impliedFormat":1},{"version":"9b5369969f6e7175740bf51223112ff209f94ba43ecd3bb09eefff9fd675624a","impliedFormat":1},{"version":"4fe9e626e7164748e8769bbf74b538e09607f07ed17c2f20af8d680ee49fc1da","impliedFormat":1},{"version":"24515859bc0b836719105bb6cc3d68255042a9f02a6022b3187948b204946bd2","impliedFormat":1},{"version":"ea0148f897b45a76544ae179784c95af1bd6721b8610af9ffa467a518a086a43","impliedFormat":1},{"version":"24c6a117721e606c9984335f71711877293a9651e44f59f3d21c1ea0856f9cc9","impliedFormat":1},{"version":"dd3273ead9fbde62a72949c97dbec2247ea08e0c6952e701a483d74ef92d6a17","impliedFormat":1},{"version":"405822be75ad3e4d162e07439bac80c6bcc6dbae1929e179cf467ec0b9ee4e2e","impliedFormat":1},{"version":"0db18c6e78ea846316c012478888f33c11ffadab9efd1cc8bcc12daded7a60b6","impliedFormat":1},{"version":"e61be3f894b41b7baa1fbd6a66893f2579bfad01d208b4ff61daef21493ef0a8","impliedFormat":1},{"version":"bd0532fd6556073727d28da0edfd1736417a3f9f394877b6d5ef6ad88fba1d1a","impliedFormat":1},{"version":"89167d696a849fce5ca508032aabfe901c0868f833a8625d5a9c6e861ef935d2","impliedFormat":1},{"version":"615ba88d0128ed16bf83ef8ccbb6aff05c3ee2db1cc0f89ab50a4939bfc1943f","impliedFormat":1},{"version":"a4d551dbf8746780194d550c88f26cf937caf8d56f102969a110cfaed4b06656","impliedFormat":1},{"version":"8bd86b8e8f6a6aa6c49b71e14c4ffe1211a0e97c80f08d2c8cc98838006e4b88","impliedFormat":1},{"version":"317e63deeb21ac07f3992f5b50cdca8338f10acd4fbb7257ebf56735bf52ab00","impliedFormat":1},{"version":"4732aec92b20fb28c5fe9ad99521fb59974289ed1e45aecb282616202184064f","impliedFormat":1},{"version":"2e85db9e6fd73cfa3d7f28e0ab6b55417ea18931423bd47b409a96e4a169e8e6","impliedFormat":1},{"version":"c46e079fe54c76f95c67fb89081b3e399da2c7d109e7dca8e4b58d83e332e605","impliedFormat":1},{"version":"bf67d53d168abc1298888693338cb82854bdb2e69ef83f8a0092093c2d562107","impliedFormat":1},{"version":"b52476feb4a0cbcb25e5931b930fc73cb6643fb1a5060bf8a3dda0eeae5b4b68","affectsGlobalScope":true,"impliedFormat":1},{"version":"e2677634fe27e87348825bb041651e22d50a613e2fdf6a4a3ade971d71bac37e","impliedFormat":1},{"version":"7394959e5a741b185456e1ef5d64599c36c60a323207450991e7a42e08911419","impliedFormat":1},{"version":"8c0bcd6c6b67b4b503c11e91a1fb91522ed585900eab2ab1f61bba7d7caa9d6f","impliedFormat":1},{"version":"8cd19276b6590b3ebbeeb030ac271871b9ed0afc3074ac88a94ed2449174b776","affectsGlobalScope":true,"impliedFormat":1},{"version":"696eb8d28f5949b87d894b26dc97318ef944c794a9a4e4f62360cd1d1958014b","impliedFormat":1},{"version":"3f8fa3061bd7402970b399300880d55257953ee6d3cd408722cb9ac20126460c","impliedFormat":1},{"version":"35ec8b6760fd7138bbf5809b84551e31028fb2ba7b6dc91d95d098bf212ca8b4","affectsGlobalScope":true,"impliedFormat":1},{"version":"5524481e56c48ff486f42926778c0a3cce1cc85dc46683b92b1271865bcf015a","impliedFormat":1},{"version":"68bd56c92c2bd7d2339457eb84d63e7de3bd56a69b25f3576e1568d21a162398","affectsGlobalScope":true,"impliedFormat":1},{"version":"3e93b123f7c2944969d291b35fed2af79a6e9e27fdd5faa99748a51c07c02d28","impliedFormat":1},{"version":"9d19808c8c291a9010a6c788e8532a2da70f811adb431c97520803e0ec649991","impliedFormat":1},{"version":"87aad3dd9752067dc875cfaa466fc44246451c0c560b820796bdd528e29bef40","impliedFormat":1},{"version":"4aacb0dd020eeaef65426153686cc639a78ec2885dc72ad220be1d25f1a439df","impliedFormat":1},{"version":"f0bd7e6d931657b59605c44112eaf8b980ba7f957a5051ed21cb93d978cf2f45","impliedFormat":1},{"version":"8db0ae9cb14d9955b14c214f34dae1b9ef2baee2fe4ce794a4cd3ac2531e3255","affectsGlobalScope":true,"impliedFormat":1},{"version":"15fc6f7512c86810273af28f224251a5a879e4261b4d4c7e532abfbfc3983134","impliedFormat":1},{"version":"58adba1a8ab2d10b54dc1dced4e41f4e7c9772cbbac40939c0dc8ce2cdb1d442","impliedFormat":1},{"version":"641942a78f9063caa5d6b777c99304b7d1dc7328076038c6d94d8a0b81fc95c1","impliedFormat":1},{"version":"1123a83f35cf56c97de746f0a7250012153c61a167e4a61668bf50e558162d14","impliedFormat":1},{"version":"855cd5f7eb396f5f1ab1bc0f8580339bff77b68a770f84c6b254e319bbfd1ac7","impliedFormat":1},{"version":"5650cf3dace09e7c25d384e3e6b818b938f68f4e8de96f52d9c5a1b3db068e86","impliedFormat":1},{"version":"1354ca5c38bd3fd3836a68e0f7c9f91f172582ba30ab15bb8c075891b91502b7","affectsGlobalScope":true,"impliedFormat":1},{"version":"7e20d899c28ca26a2a7afc98beaa69e63ff7fba0a8bc47b4e3bf3ede5e09e424","impliedFormat":1},{"version":"2d2fcaab481b31a5882065c7951255703ddbe1c0e507af56ea42d79ac3911201","impliedFormat":1},{"version":"a192fe8ec33f75edbc8d8f3ed79f768dfae11ff5735e7fe52bfa69956e46d78d","impliedFormat":1},{"version":"ca867399f7db82df981d6915bcbb2d81131d7d1ef683bc782b59f71dda59bc85","affectsGlobalScope":true,"impliedFormat":1},{"version":"372413016d17d804e1d139418aca0c68e47a83fb6669490857f4b318de8cccb3","affectsGlobalScope":true,"impliedFormat":1},{"version":"9e043a1bc8fbf2a255bccf9bf27e0f1caf916c3b0518ea34aa72357c0afd42ec","impliedFormat":1},{"version":"b4f70ec656a11d570e1a9edce07d118cd58d9760239e2ece99306ee9dfe61d02","impliedFormat":1},{"version":"3bc2f1e2c95c04048212c569ed38e338873f6a8593930cf5a7ef24ffb38fc3b6","impliedFormat":1},{"version":"6e70e9570e98aae2b825b533aa6292b6abd542e8d9f6e9475e88e1d7ba17c866","impliedFormat":1},{"version":"f9d9d753d430ed050dc1bf2667a1bab711ccbb1c1507183d794cc195a5b085cc","impliedFormat":1},{"version":"9eece5e586312581ccd106d4853e861aaaa1a39f8e3ea672b8c3847eedd12f6e","impliedFormat":1},{"version":"085f552d005479e2e6a7311cdbbe5d8c55c497b4d19274285df161ee9684cd9c","impliedFormat":1},{"version":"37ba7b45141a45ce6e80e66f2a96c8a5ab1bcef0fc2d0f56bb58df96ec67e972","impliedFormat":1},{"version":"45650f47bfb376c8a8ed39d4bcda5902ab899a3150029684ee4c10676d9fbaee","impliedFormat":1},{"version":"007faacc9268357caa21d24169f3f3f2497af3e9241308df2d89f6e6d9bb3f2e","affectsGlobalScope":true,"impliedFormat":1},{"version":"74cf591a0f63db318651e0e04cb55f8791385f86e987a67fd4d2eaab8191f730","impliedFormat":1},{"version":"5eab9b3dc9b34f185417342436ec3f106898da5f4801992d8ff38ab3aff346b5","impliedFormat":1},{"version":"12ed4559eba17cd977aa0db658d25c4047067444b51acfdcbf38470630642b23","affectsGlobalScope":true,"impliedFormat":1},{"version":"f3ffabc95802521e1e4bcba4c88d8615176dc6e09111d920c7a213bdda6e1d65","impliedFormat":1},{"version":"809821b8a065e3234a55b3a9d7846231ed18d66dd749f2494c66288d890daf7f","impliedFormat":1},{"version":"ae56f65caf3be91108707bd8dfbccc2a57a91feb5daabf7165a06a945545ed26","impliedFormat":1},{"version":"a136d5de521da20f31631a0a96bf712370779d1c05b7015d7019a9b2a0446ca9","impliedFormat":1},{"version":"c3b41e74b9a84b88b1dca61ec39eee25c0dbc8e7d519ba11bb070918cfacf656","affectsGlobalScope":true,"impliedFormat":1},{"version":"4737a9dc24d0e68b734e6cfbcea0c15a2cfafeb493485e27905f7856988c6b29","affectsGlobalScope":true,"impliedFormat":1},{"version":"36d8d3e7506b631c9582c251a2c0b8a28855af3f76719b12b534c6edf952748d","impliedFormat":1},{"version":"1ca69210cc42729e7ca97d3a9ad48f2e9cb0042bada4075b588ae5387debd318","impliedFormat":1},{"version":"f5ebe66baaf7c552cfa59d75f2bfba679f329204847db3cec385acda245e574e","impliedFormat":1},{"version":"ed59add13139f84da271cafd32e2171876b0a0af2f798d0c663e8eeb867732cf","affectsGlobalScope":true,"impliedFormat":1},{"version":"b7c5e2ea4a9749097c347454805e933844ed207b6eefec6b7cfd418b5f5f7b28","impliedFormat":1},{"version":"b1810689b76fd473bd12cc9ee219f8e62f54a7d08019a235d07424afbf074d25","impliedFormat":1},{"version":"104c67f0da1bdf0d94865419247e20eded83ce7f9911a1aa75fc675c077ca66e","impliedFormat":1},{"version":"cc0d0b339f31ce0ab3b7a5b714d8e578ce698f1e13d7f8c60bfb766baeb1d35c","impliedFormat":1},{"version":"25be1eb939c9c63242c7a45446edb20c40541da967f43f1aa6a00ed53c0552db","impliedFormat":1},{"version":"b1538a92b9bae8d230267210c5db38c2eb6bdb352128a3ce3aa8c6acf9fc9622","impliedFormat":1},{"version":"6fc1a4f64372593767a9b7b774e9b3b92bf04e8785c3f9ea98973aa9f4bbe490","impliedFormat":1},{"version":"ff09b6fbdcf74d8af4e131b8866925c5e18d225540b9b19ce9485ca93e574d84","impliedFormat":1},{"version":"d5895252efa27a50f134a9b580aa61f7def5ab73d0a8071f9b5bf9a317c01c2d","impliedFormat":1},{"version":"2c378d9368abcd2eba8c29b294d40909845f68557bc0b38117e4f04fc56e5f9c","impliedFormat":1},{"version":"56208c500dcb5f42be7e18e8cb578f257a1a89b94b3280c506818fed06391805","impliedFormat":1},{"version":"0c94c2e497e1b9bcfda66aea239d5d36cd980d12a6d9d59e66f4be1fa3da5d5a","impliedFormat":1},{"version":"a843946c6e71a80d5940bd48c6bd0d5e08eb64d70206d774d4ffec4206775113","affectsGlobalScope":true,"impliedFormat":1},{"version":"1f366bde16e0513fa7b64f87f86689c4d36efd85afce7eb24753e9c99b91c319","impliedFormat":1},{"version":"d34aa8df2d0b18fb56b1d772ff9b3c7aea7256cf0d692f969be6e1d27b74d660","impliedFormat":1},{"version":"93a3b8e57c68e348fc4054b245bd7cf4893225f56c991028844b693c2fa8c03c","impliedFormat":1},{"version":"2f5747b1508ccf83fad0c251ba1e5da2f5a30b78b09ffa1cfaf633045160afed","impliedFormat":1},{"version":"7850260a82d3d1d797b4a7d4da1f29383ddc847146a11ae9aa0b7c4c2accf49f","affectsGlobalScope":true,"impliedFormat":1},{"version":"b71c603a539078a5e3a039b20f2b0a0d1708967530cf97dec8850a9ca45baa2b","impliedFormat":1},{"version":"d3f2d715f57df3f04bf7b16dde01dec10366f64fce44503c92b8f78f614c1769","impliedFormat":1},{"version":"cb90077223cc1365fa21ef0911a1f9b8f2f878943523d97350dc557973ca3823","impliedFormat":1},{"version":"18f1541b81b80d806120a3489af683edfb811deb91aeca19735d9bb2613e6311","impliedFormat":1},{"version":"232f118ae64ab84dcd26ddb60eaed5a6e44302d36249abf05e9e3fc2cbb701a2","impliedFormat":1},{"version":"afe73051ff6a03a9565cbd8ebb0e956ee3df5e913ad5c1ded64218aabfa3dcb5","impliedFormat":1},{"version":"035a5df183489c2e22f3cf59fc1ed2b043d27f357eecc0eb8d8e840059d44245","impliedFormat":1},{"version":"a4809f4d92317535e6b22b01019437030077a76fec1d93b9881c9ed4738fcc54","impliedFormat":1},{"version":"5f53fa0bd22096d2a78533f94e02c899143b8f0f9891a46965294ee8b91a9434","impliedFormat":1},{"version":"cdcc132f207d097d7d3aa75615ab9a2e71d6a478162dde8b67f88ea19f3e54de","impliedFormat":1},{"version":"0d14fa22c41fdc7277e6f71473b20ebc07f40f00e38875142335d5b63cdfc9d2","impliedFormat":1},{"version":"e1028394c1cf96d5d057ecc647e31e457b919092f882ed0c7092152b077fed9d","impliedFormat":1},{"version":"f315e1e65a1f80992f0509e84e4ae2df15ecd9ef73df975f7c98813b71e4c8da","impliedFormat":1},{"version":"5b9586e9b0b6322e5bfbd2c29bd3b8e21ab9d871f82346cb71020e3d84bae73e","impliedFormat":1},{"version":"3e70a7e67c2cb16f8cd49097360c0309fe9d1e3210ff9222e9dac1f8df9d4fb6","impliedFormat":1},{"version":"ab68d2a3e3e8767c3fba8f80de099a1cfc18c0de79e42cb02ae66e22dfe14a66","impliedFormat":1},{"version":"d96cc6598148bf1a98fb2e8dcf01c63a4b3558bdaec6ef35e087fd0562eb40ec","impliedFormat":1},{"version":"f8db4fea512ab759b2223b90ecbbe7dae919c02f8ce95ec03f7fb1cf757cfbeb","affectsGlobalScope":true,"impliedFormat":1},{"version":"7e29f41b158de217f94cb9676bf9cbd0cd9b5a46e1985141ed36e075c52bf6ad","affectsGlobalScope":true,"impliedFormat":1},{"version":"ac51dd7d31333793807a6abaa5ae168512b6131bd41d9c5b98477fc3b7800f9f","impliedFormat":1},{"version":"814d5c7384f3ca276e9dc4bcfde5545801a3ea0bfae09916b3336774e662fd1b","impliedFormat":1},{"version":"be1cc4d94ea60cbe567bc29ed479d42587bf1e6cba490f123d329976b0fe4ee5","impliedFormat":1},{"version":"ab82804a14454734010dcdcd43f564ff7b0389bee4c5692eec76ff5b30d4cf66","impliedFormat":1},{"version":"4006c872e38a2c4e09c593bc0cdd32b7b4f5c4843910bea0def631c483fff6c5","impliedFormat":1},{"version":"ab6aa3a65d473871ee093e3b7b71ed0f9c69e07d1d4295f45c9efd91a771241d","impliedFormat":1},{"version":"7fa8d75d229eeaee235a801758d9c694e94405013fe77d5d1dd8e3201fc414f1","impliedFormat":1},{"version":"bae8d023ef6b23df7da26f51cea44321f95817c190342a36882e93b80d07a960","impliedFormat":1},{"version":"26a770cec4bd2e7dbba95c6e536390fffe83c6268b78974a93727903b515c4e7","impliedFormat":1}],"root":[[65,68]],"options":{"composite":true,"declaration":true,"declarationMap":true,"esModuleInterop":true,"module":1,"outDir":"./dist","rootDir":"./src","skipLibCheck":true,"sourceMap":true,"strict":true,"target":9},"referencedMap":[[71,1],[69,2],[201,2],[204,3],[203,2],[74,4],[70,1],[72,5],[73,1],[177,6],[176,7],[178,7],[179,2],[180,2],[181,2],[182,8],[183,2],[185,9],[186,10],[184,2],[187,2],[191,11],[196,12],[197,13],[192,2],[198,2],[199,14],[200,15],[209,16],[193,2],[124,17],[125,17],[126,18],[80,19],[127,20],[128,21],[129,22],[75,2],[78,23],[76,2],[77,2],[130,24],[131,25],[132,26],[133,27],[134,28],[135,29],[136,29],[137,30],[138,31],[139,32],[140,33],[81,2],[79,2],[141,34],[142,35],[143,36],[175,37],[144,38],[145,39],[146,40],[147,41],[148,42],[149,43],[150,44],[151,45],[152,46],[153,47],[154,47],[155,48],[156,2],[157,49],[159,50],[158,51],[160,52],[161,53],[162,54],[163,55],[164,56],[165,57],[166,58],[167,59],[168,60],[169,61],[170,62],[171,63],[172,64],[82,2],[83,2],[84,2],[123,65],[173,66],[174,67],[189,2],[190,2],[213,68],[210,2],[212,69],[188,70],[195,71],[194,72],[214,2],[215,2],[216,2],[217,2],[218,2],[219,73],[85,2],[202,2],[211,2],[208,74],[206,75],[207,76],[205,77],[61,2],[62,2],[12,2],[10,2],[11,2],[16,2],[15,2],[2,2],[17,2],[18,2],[19,2],[20,2],[21,2],[22,2],[23,2],[24,2],[3,2],[25,2],[26,2],[4,2],[27,2],[31,2],[28,2],[29,2],[30,2],[32,2],[33,2],[34,2],[5,2],[35,2],[36,2],[37,2],[38,2],[6,2],[42,2],[39,2],[40,2],[41,2],[43,2],[7,2],[44,2],[49,2],[50,2],[45,2],[46,2],[47,2],[48,2],[8,2],[54,2],[51,2],[52,2],[53,2],[55,2],[9,2],[56,2],[63,2],[57,2],[58,2],[60,2],[59,2],[1,2],[14,2],[13,2],[101,78],[111,79],[100,78],[121,80],[92,81],[91,82],[120,83],[114,84],[119,85],[94,86],[108,87],[93,88],[117,89],[89,90],[88,83],[118,91],[90,92],[95,93],[96,2],[99,93],[86,2],[122,94],[112,95],[103,96],[104,97],[106,98],[102,99],[105,100],[115,83],[97,101],[98,102],[107,103],[87,104],[110,95],[109,93],[113,2],[116,105],[68,106],[66,107],[65,108],[67,108],[64,2]],"latestChangedDtsFile":"./dist/scanner.d.ts","version":"5.9.3"}