@apollo/federation-internals 2.0.0-alpha.0 → 2.0.0-alpha.4

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.
Files changed (86) hide show
  1. package/CHANGELOG.md +18 -0
  2. package/dist/buildSchema.d.ts.map +1 -1
  3. package/dist/buildSchema.js +3 -3
  4. package/dist/buildSchema.js.map +1 -1
  5. package/dist/coreSpec.d.ts +1 -1
  6. package/dist/coreSpec.d.ts.map +1 -1
  7. package/dist/coreSpec.js +2 -0
  8. package/dist/coreSpec.js.map +1 -1
  9. package/dist/debug.d.ts.map +1 -1
  10. package/dist/debug.js +7 -23
  11. package/dist/debug.js.map +1 -1
  12. package/dist/definitions.d.ts +28 -13
  13. package/dist/definitions.d.ts.map +1 -1
  14. package/dist/definitions.js +132 -71
  15. package/dist/definitions.js.map +1 -1
  16. package/dist/error.d.ts +87 -3
  17. package/dist/error.d.ts.map +1 -1
  18. package/dist/error.js +143 -5
  19. package/dist/error.js.map +1 -1
  20. package/dist/extractSubgraphsFromSupergraph.d.ts.map +1 -1
  21. package/dist/extractSubgraphsFromSupergraph.js +60 -8
  22. package/dist/extractSubgraphsFromSupergraph.js.map +1 -1
  23. package/dist/federation.d.ts +7 -6
  24. package/dist/federation.d.ts.map +1 -1
  25. package/dist/federation.js +227 -81
  26. package/dist/federation.js.map +1 -1
  27. package/dist/genErrorCodeDoc.d.ts +2 -0
  28. package/dist/genErrorCodeDoc.d.ts.map +1 -0
  29. package/dist/genErrorCodeDoc.js +55 -0
  30. package/dist/genErrorCodeDoc.js.map +1 -0
  31. package/dist/inaccessibleSpec.d.ts +1 -1
  32. package/dist/inaccessibleSpec.d.ts.map +1 -1
  33. package/dist/inaccessibleSpec.js +5 -5
  34. package/dist/inaccessibleSpec.js.map +1 -1
  35. package/dist/joinSpec.d.ts.map +1 -1
  36. package/dist/joinSpec.js +6 -5
  37. package/dist/joinSpec.js.map +1 -1
  38. package/dist/operations.d.ts.map +1 -1
  39. package/dist/operations.js +16 -16
  40. package/dist/operations.js.map +1 -1
  41. package/dist/print.d.ts +1 -1
  42. package/dist/print.d.ts.map +1 -1
  43. package/dist/print.js +4 -4
  44. package/dist/print.js.map +1 -1
  45. package/dist/suggestions.js +1 -1
  46. package/dist/suggestions.js.map +1 -1
  47. package/dist/tagSpec.d.ts +2 -2
  48. package/dist/tagSpec.d.ts.map +1 -1
  49. package/dist/tagSpec.js +10 -2
  50. package/dist/tagSpec.js.map +1 -1
  51. package/dist/utils.d.ts +16 -0
  52. package/dist/utils.d.ts.map +1 -1
  53. package/dist/utils.js +82 -1
  54. package/dist/utils.js.map +1 -1
  55. package/dist/validate.js.map +1 -1
  56. package/dist/values.d.ts +2 -1
  57. package/dist/values.d.ts.map +1 -1
  58. package/dist/values.js +29 -4
  59. package/dist/values.js.map +1 -1
  60. package/package.json +5 -6
  61. package/src/__tests__/definitions.test.ts +3 -3
  62. package/src/__tests__/extractSubgraphsFromSupergraph.test.ts +432 -0
  63. package/src/__tests__/matchers/toMatchString.ts +2 -2
  64. package/src/__tests__/removeInaccessibleElements.test.ts +8 -8
  65. package/src/__tests__/subgraphValidation.test.ts +452 -0
  66. package/src/__tests__/utils.test.ts +92 -0
  67. package/src/buildSchema.ts +12 -11
  68. package/src/coreSpec.ts +12 -10
  69. package/src/debug.ts +8 -25
  70. package/src/definitions.ts +249 -115
  71. package/src/error.ts +334 -7
  72. package/src/extractSubgraphsFromSupergraph.ts +80 -19
  73. package/src/federation.ts +299 -138
  74. package/src/genErrorCodeDoc.ts +69 -0
  75. package/src/inaccessibleSpec.ts +13 -8
  76. package/src/joinSpec.ts +11 -8
  77. package/src/operations.ts +40 -38
  78. package/src/print.ts +8 -8
  79. package/src/suggestions.ts +1 -1
  80. package/src/tagSpec.ts +12 -7
  81. package/src/types.ts +1 -1
  82. package/src/utils.ts +109 -0
  83. package/src/validate.ts +4 -4
  84. package/src/values.ts +51 -9
  85. package/tsconfig.test.tsbuildinfo +1 -1
  86. package/tsconfig.tsbuildinfo +1 -1
package/src/utils.ts CHANGED
@@ -29,6 +29,88 @@ export class MultiMap<K, V> extends Map<K, V[]> {
29
29
  }
30
30
  }
31
31
 
32
+ /**
33
+ * Generic OrderedMap class that can sort keys based on an arbitrary sorting function
34
+ * Insert time is O(log(N))
35
+ * Remove is not implemented, but the trivial implementation would be O(N)
36
+ * Uses '<' '>' sorting by default
37
+ * Collisions are fine, it will just overwrite the old value
38
+ */
39
+ export class OrderedMap<K,V> {
40
+ private _keys: K[] = [];
41
+ private _values: Map<K,V> = new Map<K,V>();
42
+ private _compareFn: (a: K, b: K) => number;
43
+
44
+ private static defaultCompareFn<K>(a: K, b: K) {
45
+ if (a < b) {
46
+ return -1;
47
+ } else if (b < a) {
48
+ return 1;
49
+ }
50
+ return 0;
51
+ }
52
+
53
+ constructor(compareFn: (a: K, b: K) => number = OrderedMap.defaultCompareFn) {
54
+ this._compareFn = compareFn;
55
+ }
56
+
57
+ add(key: K, value: V) {
58
+ if (!this._values.has(key)) {
59
+ this.insertKeyInOrder(key);
60
+ }
61
+ this._values.set(key, value);
62
+ }
63
+
64
+ get(key: K): V | undefined {
65
+ return this._values.get(key);
66
+ }
67
+
68
+ has(key: K): boolean {
69
+ return this._values.has(key);
70
+ }
71
+
72
+ get size() {
73
+ return this._keys.length;
74
+ }
75
+
76
+ keys(): K[] {
77
+ return this._keys;
78
+ }
79
+
80
+ values(): V[] {
81
+ return this._keys.map(key => {
82
+ const v = this._values.get(key);
83
+ assert(v, 'value for known key not found in OrderedMap');
84
+ return v;
85
+ });
86
+ }
87
+
88
+ // O(log(N)) - find location via middle finding
89
+ private insertKeyInOrder(key: K) {
90
+ let lower = 0;
91
+ let upper = this._keys.length - 1;
92
+ while (lower <= upper) {
93
+ const middle = Math.floor((upper + lower) / 2);
94
+ if (this._compareFn(this._keys[middle], key) < 0) {
95
+ lower = middle + 1;
96
+ } else {
97
+ upper = middle - 1;
98
+ }
99
+ }
100
+ this._keys = this._keys.slice(0, lower).concat(key).concat(this._keys.slice(lower));
101
+ }
102
+
103
+ // remove(key: K): void - not implemented
104
+
105
+ *[Symbol.iterator]() {
106
+ for (let i = 0; i < this._keys.length; i += 1) {
107
+ const v = this._values.get(this._keys[i]);
108
+ assert(v, 'value for known key not found in OrderedMap');
109
+ yield v;
110
+ }
111
+ }
112
+ }
113
+
32
114
  /**
33
115
  * Tests if the provided arrays have the same elements (using '===' equality or the provided
34
116
  * equality function).
@@ -160,3 +242,30 @@ export function copyWitNewLength<T>(arr: T[], newLength: number): T[] {
160
242
  }
161
243
  return copy;
162
244
  }
245
+
246
+ /**
247
+ * Checks whether the provided string value is defined and represents a "boolean-ish"
248
+ * value, returning that boolean value.
249
+ *
250
+ * @param str - the string to check.
251
+ * @return the boolean value contains in `str` if `str` represents a boolean-ish value,
252
+ * where "boolean-ish" is one of "true"/"false", "yes"/"no" or "0"/"1" (where the check
253
+ * is case-insensitive). Otherwise, `undefined` is returned.
254
+ */
255
+ export function validateStringContainsBoolean(str?: string) : boolean | undefined {
256
+ if (!str) {
257
+ return false;
258
+ }
259
+ switch (str.toLocaleLowerCase()) {
260
+ case "true":
261
+ case "yes":
262
+ case "1":
263
+ return true;
264
+ case "false":
265
+ case "no":
266
+ case "0":
267
+ return false;
268
+ default:
269
+ return undefined;
270
+ }
271
+ }
package/src/validate.ts CHANGED
@@ -21,7 +21,7 @@ import { isValidValue } from "./values";
21
21
  import { isIntrospectionName } from "./introspection";
22
22
  import { isSubtype, sameType } from "./types";
23
23
 
24
- // Note really meant to be called manually as it is part of `Schema.validate`, but separated for core-organisation reasons.
24
+ // Note really meant to be called manually as it is part of `Schema.validate`, but separated for core-organization reasons.
25
25
  // This mostly apply the validations that graphQL-js does in `validateSchema` which we don't reuse because it applies to
26
26
  // a `GraphQLSchema` (but note that the bulk of the validation is done by `validateSDL` which we _do_ reuse in `Schema.validate`).
27
27
  export function validateSchema(schema: Schema): GraphQLError[] {
@@ -175,7 +175,7 @@ class Validator {
175
175
  const field = type.field(itfField.name);
176
176
  if (!field) {
177
177
  this.errors.push(new GraphQLError(
178
- `Interface field ${itfField.coordinate} expected but ${type} does not provide it.`,
178
+ `Interface field ${itfField.coordinate} expected but ${type} does not provide it.`,
179
179
  sourceASTs(itfField, type)
180
180
  ));
181
181
  continue;
@@ -202,7 +202,7 @@ class Validator {
202
202
  }
203
203
  // Same as above for the field
204
204
  this.validateHasType(itfArg);
205
- // Note that we could use contra-variance but as graphQL-js currently doesn't allow it, we mimick that.
205
+ // Note that we could use contra-variance but as graphQL-js currently doesn't allow it, we mimic that.
206
206
  if (!sameType(itfArg.type!, arg.type!)) {
207
207
  this.errors.push(new GraphQLError(
208
208
  `Interface field argument ${itfArg.coordinate} expects type ${itfArg.type} but ${arg.coordinate} is type ${arg.type}.`,
@@ -300,7 +300,7 @@ class Validator {
300
300
  continue;
301
301
  }
302
302
  if (!isValidValue(value, argument, this.emptyVariables)) {
303
- const parent = application.parent!;
303
+ const parent = application.parent;
304
304
  // The only non-named SchemaElement is the `schema` definition.
305
305
  const parentDesc = parent instanceof NamedSchemaElement
306
306
  ? parent.coordinate
package/src/values.ts CHANGED
@@ -17,13 +17,22 @@ import {
17
17
  Variable,
18
18
  VariableDefinition,
19
19
  VariableDefinitions,
20
- Variables
20
+ Variables,
21
21
  } from './definitions';
22
- import { ArgumentNode, GraphQLError, Kind, print, ValueNode } from 'graphql';
22
+ import {
23
+ ArgumentNode,
24
+ GraphQLError,
25
+ Kind,
26
+ print,
27
+ ValueNode,
28
+ ObjectFieldNode,
29
+ ConstValueNode,
30
+ ConstObjectFieldNode,
31
+ } from 'graphql';
23
32
  import { didYouMean, suggestionList } from './suggestions';
24
33
  import { inspect } from 'util';
25
34
  import { sameType } from './types';
26
- import { assert } from './utils';
35
+ import { assert, assertUnreachable } from './utils';
27
36
 
28
37
  // Per-GraphQL spec, max and value for an Int type.
29
38
  const MAX_INT = 2147483647;
@@ -66,7 +75,7 @@ export function valueToString(v: any, expectedType?: InputType): string {
66
75
  throw buildError(`Invalid object value for non-input-object type ${expectedType} (isCustomScalar? ${isCustomScalarType(expectedType)})`);
67
76
  }
68
77
  return '{' + Object.keys(v).map(k => {
69
- let valueType = expectedType ? (expectedType as InputObjectType).field(k)?.type : undefined;
78
+ const valueType = expectedType ? (expectedType as InputObjectType).field(k)?.type : undefined;
70
79
  return `${k}: ${valueToString(v[k], valueType)}`;
71
80
  }).join(', ') + '}';
72
81
  }
@@ -76,7 +85,7 @@ export function valueToString(v: any, expectedType?: InputType): string {
76
85
  if (isEnumType(expectedType)) {
77
86
  return v;
78
87
  }
79
- if (expectedType === expectedType.schema()!.idType() && integerStringRegExp.test(v)) {
88
+ if (expectedType === expectedType.schema().idType() && integerStringRegExp.test(v)) {
80
89
  return v;
81
90
  }
82
91
  }
@@ -219,6 +228,39 @@ export function withDefaultValues(value: any, argument: ArgumentDefinition<any>)
219
228
 
220
229
  const integerStringRegExp = /^-?(?:0|[1-9][0-9]*)$/;
221
230
 
231
+ function objectFieldNodeToConst(field: ObjectFieldNode): ConstObjectFieldNode {
232
+ return { ...field, value: valueNodeToConstValueNode(field.value) };
233
+ }
234
+
235
+ /**
236
+ * Transforms a ValueNode to a ConstValueNode. This should only be invoked when we know that the value node can be const
237
+ * as it will result in an exception if it contains a VariableNode
238
+ */
239
+ export function valueNodeToConstValueNode(value: ValueNode): ConstValueNode {
240
+ if (value.kind === Kind.NULL
241
+ || value.kind === Kind.INT
242
+ || value.kind === Kind.FLOAT
243
+ || value.kind === Kind.STRING
244
+ || value.kind === Kind.BOOLEAN
245
+ || value.kind === Kind.ENUM
246
+ ) {
247
+ return value;
248
+ }
249
+ if (value.kind === Kind.LIST) {
250
+ const constValues = value.values.map(v => valueNodeToConstValueNode(v));
251
+ return { ...value, values: constValues };
252
+ }
253
+ if (value.kind === Kind.OBJECT) {
254
+ const constFields = value.fields.map(f => objectFieldNodeToConst(f));
255
+ return { ...value, fields: constFields };
256
+ }
257
+ if (value.kind === Kind.VARIABLE) {
258
+ // VarableNode does not exist in ConstValueNode
259
+ throw new Error('Unexpected VariableNode in const AST');
260
+ }
261
+ assertUnreachable(value);
262
+ }
263
+
222
264
  // Adapted from the `astFromValue` function in graphQL-js
223
265
  export function valueToAST(value: any, type: InputType): ValueNode | undefined {
224
266
  if (value === undefined) {
@@ -270,7 +312,7 @@ export function valueToAST(value: any, type: InputType): ValueNode | undefined {
270
312
  if (typeof value !== 'object') {
271
313
  throw buildError(`Invalid non-objet value for input type ${type}, cannot be converted to AST: ${inspect(value, true, 10, true)}`);
272
314
  }
273
- const fieldNodes = [];
315
+ const fieldNodes: ObjectFieldNode[] = [];
274
316
  for (const field of type.fields()) {
275
317
  if (!field.type) {
276
318
  throw buildError(`Cannot convert value ${valueToString(value)} as field ${field} has no type set`);
@@ -308,7 +350,7 @@ export function valueToAST(value: any, type: InputType): ValueNode | undefined {
308
350
  }
309
351
 
310
352
  // ID types can use Int literals.
311
- if (type === type.schema()?.idType() && integerStringRegExp.test(value)) {
353
+ if (type === type.schema().idType() && integerStringRegExp.test(value)) {
312
354
  return { kind: Kind.INT, value: value };
313
355
  }
314
356
 
@@ -348,7 +390,7 @@ function valueToASTUntyped(value: any): ValueNode | undefined {
348
390
  }
349
391
 
350
392
  if (typeof value === 'object') {
351
- const fieldNodes = [];
393
+ const fieldNodes: ObjectFieldNode[] = [];
352
394
  for (const key of Object.keys(value)) {
353
395
  const fieldValue = valueToASTUntyped(value[key]);
354
396
  if (fieldValue) {
@@ -459,7 +501,7 @@ function isValidValueApplication(value: any, locationType: InputType, locationDe
459
501
 
460
502
  // TODO: we may have to handle some coercions (not sure it matters in our use case
461
503
  // though).
462
- const schema = locationType.schema()!;
504
+ const schema = locationType.schema();
463
505
 
464
506
  if (typeof value === 'boolean') {
465
507
  return locationType === schema.booleanType();
@@ -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.dom.d.ts","../node_modules/typescript/lib/lib.es2015.core.d.ts","../node_modules/typescript/lib/lib.es2015.collection.d.ts","../node_modules/typescript/lib/lib.es2015.generator.d.ts","../node_modules/typescript/lib/lib.es2015.iterable.d.ts","../node_modules/typescript/lib/lib.es2015.promise.d.ts","../node_modules/typescript/lib/lib.es2015.proxy.d.ts","../node_modules/typescript/lib/lib.es2015.reflect.d.ts","../node_modules/typescript/lib/lib.es2015.symbol.d.ts","../node_modules/typescript/lib/lib.es2015.symbol.wellknown.d.ts","../node_modules/typescript/lib/lib.es2016.array.include.d.ts","../node_modules/typescript/lib/lib.es2017.object.d.ts","../node_modules/typescript/lib/lib.es2017.sharedmemory.d.ts","../node_modules/typescript/lib/lib.es2017.string.d.ts","../node_modules/typescript/lib/lib.es2017.intl.d.ts","../node_modules/typescript/lib/lib.es2017.typedarrays.d.ts","../node_modules/typescript/lib/lib.es2018.asyncgenerator.d.ts","../node_modules/typescript/lib/lib.es2018.asynciterable.d.ts","../node_modules/typescript/lib/lib.es2018.intl.d.ts","../node_modules/typescript/lib/lib.es2018.promise.d.ts","../node_modules/typescript/lib/lib.es2018.regexp.d.ts","../node_modules/typescript/lib/lib.es2019.array.d.ts","../node_modules/typescript/lib/lib.es2019.object.d.ts","../node_modules/typescript/lib/lib.es2019.string.d.ts","../node_modules/typescript/lib/lib.es2019.symbol.d.ts","../node_modules/typescript/lib/lib.es2020.bigint.d.ts","../node_modules/typescript/lib/lib.esnext.intl.d.ts","../node_modules/graphql/version.d.ts","../node_modules/graphql/jsutils/Maybe.d.ts","../node_modules/graphql/language/source.d.ts","../node_modules/graphql/language/tokenKind.d.ts","../node_modules/graphql/language/ast.d.ts","../node_modules/graphql/language/directiveLocation.d.ts","../node_modules/graphql/jsutils/PromiseOrValue.d.ts","../node_modules/graphql/jsutils/Path.d.ts","../node_modules/graphql/type/definition.d.ts","../node_modules/graphql/type/directives.d.ts","../node_modules/graphql/type/schema.d.ts","../node_modules/graphql/language/location.d.ts","../node_modules/graphql/error/GraphQLError.d.ts","../node_modules/graphql/error/formatError.d.ts","../node_modules/graphql/execution/execute.d.ts","../node_modules/graphql/graphql.d.ts","../node_modules/graphql/type/scalars.d.ts","../node_modules/graphql/type/introspection.d.ts","../node_modules/graphql/type/validate.d.ts","../node_modules/graphql/type/index.d.ts","../node_modules/graphql/language/printLocation.d.ts","../node_modules/graphql/language/kinds.d.ts","../node_modules/graphql/language/lexer.d.ts","../node_modules/graphql/language/parser.d.ts","../node_modules/graphql/language/printer.d.ts","../node_modules/graphql/language/visitor.d.ts","../node_modules/graphql/language/predicates.d.ts","../node_modules/graphql/language/index.d.ts","../node_modules/graphql/execution/values.d.ts","../node_modules/graphql/execution/index.d.ts","../node_modules/graphql/subscription/subscribe.d.ts","../node_modules/graphql/subscription/index.d.ts","../node_modules/graphql/utilities/TypeInfo.d.ts","../node_modules/graphql/validation/ValidationContext.d.ts","../node_modules/graphql/validation/validate.d.ts","../node_modules/graphql/validation/specifiedRules.d.ts","../node_modules/graphql/validation/rules/ExecutableDefinitionsRule.d.ts","../node_modules/graphql/validation/rules/FieldsOnCorrectTypeRule.d.ts","../node_modules/graphql/validation/rules/FragmentsOnCompositeTypesRule.d.ts","../node_modules/graphql/validation/rules/KnownArgumentNamesRule.d.ts","../node_modules/graphql/validation/rules/KnownDirectivesRule.d.ts","../node_modules/graphql/validation/rules/KnownFragmentNamesRule.d.ts","../node_modules/graphql/validation/rules/KnownTypeNamesRule.d.ts","../node_modules/graphql/validation/rules/LoneAnonymousOperationRule.d.ts","../node_modules/graphql/validation/rules/NoFragmentCyclesRule.d.ts","../node_modules/graphql/validation/rules/NoUndefinedVariablesRule.d.ts","../node_modules/graphql/validation/rules/NoUnusedFragmentsRule.d.ts","../node_modules/graphql/validation/rules/NoUnusedVariablesRule.d.ts","../node_modules/graphql/validation/rules/OverlappingFieldsCanBeMergedRule.d.ts","../node_modules/graphql/validation/rules/PossibleFragmentSpreadsRule.d.ts","../node_modules/graphql/validation/rules/ProvidedRequiredArgumentsRule.d.ts","../node_modules/graphql/validation/rules/ScalarLeafsRule.d.ts","../node_modules/graphql/validation/rules/SingleFieldSubscriptionsRule.d.ts","../node_modules/graphql/validation/rules/UniqueArgumentNamesRule.d.ts","../node_modules/graphql/validation/rules/UniqueDirectivesPerLocationRule.d.ts","../node_modules/graphql/validation/rules/UniqueFragmentNamesRule.d.ts","../node_modules/graphql/validation/rules/UniqueInputFieldNamesRule.d.ts","../node_modules/graphql/validation/rules/UniqueOperationNamesRule.d.ts","../node_modules/graphql/validation/rules/UniqueVariableNamesRule.d.ts","../node_modules/graphql/validation/rules/ValuesOfCorrectTypeRule.d.ts","../node_modules/graphql/validation/rules/VariablesAreInputTypesRule.d.ts","../node_modules/graphql/validation/rules/VariablesInAllowedPositionRule.d.ts","../node_modules/graphql/validation/rules/LoneSchemaDefinitionRule.d.ts","../node_modules/graphql/validation/rules/UniqueOperationTypesRule.d.ts","../node_modules/graphql/validation/rules/UniqueTypeNamesRule.d.ts","../node_modules/graphql/validation/rules/UniqueEnumValueNamesRule.d.ts","../node_modules/graphql/validation/rules/UniqueFieldDefinitionNamesRule.d.ts","../node_modules/graphql/validation/rules/UniqueDirectiveNamesRule.d.ts","../node_modules/graphql/validation/rules/PossibleTypeExtensionsRule.d.ts","../node_modules/graphql/validation/rules/custom/NoDeprecatedCustomRule.d.ts","../node_modules/graphql/validation/rules/custom/NoSchemaIntrospectionCustomRule.d.ts","../node_modules/graphql/validation/index.d.ts","../node_modules/graphql/error/syntaxError.d.ts","../node_modules/graphql/error/locatedError.d.ts","../node_modules/graphql/error/index.d.ts","../node_modules/graphql/utilities/getIntrospectionQuery.d.ts","../node_modules/graphql/utilities/getOperationAST.d.ts","../node_modules/graphql/utilities/getOperationRootType.d.ts","../node_modules/graphql/utilities/introspectionFromSchema.d.ts","../node_modules/graphql/utilities/buildClientSchema.d.ts","../node_modules/graphql/utilities/buildASTSchema.d.ts","../node_modules/graphql/utilities/extendSchema.d.ts","../node_modules/graphql/utilities/lexicographicSortSchema.d.ts","../node_modules/graphql/utilities/printSchema.d.ts","../node_modules/graphql/utilities/typeFromAST.d.ts","../node_modules/graphql/utilities/valueFromAST.d.ts","../node_modules/graphql/utilities/valueFromASTUntyped.d.ts","../node_modules/graphql/utilities/astFromValue.d.ts","../node_modules/graphql/utilities/coerceInputValue.d.ts","../node_modules/graphql/utilities/concatAST.d.ts","../node_modules/graphql/utilities/separateOperations.d.ts","../node_modules/graphql/utilities/stripIgnoredCharacters.d.ts","../node_modules/graphql/utilities/typeComparators.d.ts","../node_modules/graphql/utilities/assertValidName.d.ts","../node_modules/graphql/utilities/findBreakingChanges.d.ts","../node_modules/graphql/utilities/typedQueryDocumentNode.d.ts","../node_modules/graphql/utilities/findDeprecatedUsages.d.ts","../node_modules/graphql/utilities/index.d.ts","../node_modules/graphql/index.d.ts","../node_modules/@apollo/core-schema/dist/error.d.ts","./dist/coreSpec.d.ts","./dist/utils.d.ts","./dist/definitions.d.ts","./dist/print.d.ts","./dist/buildSchema.d.ts","./dist/operations.d.ts","./dist/federation.d.ts","./src/__tests__/matchers/toMatchString.ts","./src/__tests__/matchers/index.ts","./src/__tests__/definitions.test.ts","./src/__tests__/operations.test.ts","./dist/inaccessibleSpec.d.ts","./src/__tests__/removeInaccessibleElements.test.ts","./src/__tests__/toAPISchema.test.ts","./src/__tests__/values.test.ts","../node_modules/@types/node/assert.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/dns.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/http.d.ts","../node_modules/@types/node/http2.d.ts","../node_modules/@types/node/https.d.ts","../node_modules/@types/node/inspector.d.ts","../node_modules/@types/node/module.d.ts","../node_modules/@types/node/net.d.ts","../node_modules/@types/node/os.d.ts","../node_modules/@types/node/path.d.ts","../node_modules/@types/node/perf_hooks.d.ts","../node_modules/@types/node/process.d.ts","../node_modules/@types/node/punycode.d.ts","../node_modules/@types/node/querystring.d.ts","../node_modules/@types/node/readline.d.ts","../node_modules/@types/node/repl.d.ts","../node_modules/@types/node/stream.d.ts","../node_modules/@types/node/string_decoder.d.ts","../node_modules/@types/node/timers.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/jest-diff/build/cleanupSemantic.d.ts","../node_modules/jest-diff/build/types.d.ts","../node_modules/jest-diff/build/diffLines.d.ts","../node_modules/jest-diff/build/printDiffs.d.ts","../node_modules/jest-diff/build/index.d.ts","../node_modules/pretty-format/build/types.d.ts","../node_modules/pretty-format/build/index.d.ts","../node_modules/@types/jest/index.d.ts"],"fileInfos":[{"version":"aa9fb4c70f369237c2f45f9d969c9a59e0eae9a192962eb48581fe864aa609db","affectsGlobalScope":true},"dc47c4fa66b9b9890cf076304de2a9c5201e94b740cffdf09f87296d877d71f6","7a387c58583dfca701b6c85e0adaf43fb17d590fb16d5b2dc0a2fbd89f35c467","8a12173c586e95f4433e0c6dc446bc88346be73ffe9ca6eec7aa63c8f3dca7f9","5f4e733ced4e129482ae2186aae29fde948ab7182844c3a5a51dd346182c7b06","e6b724280c694a9f588847f754198fb96c43d805f065c3a5b28bbc9594541c84",{"version":"e54c8715a4954cfdc66cd69489f2b725c09ebf37492dbd91cff0a1688b1159e8","affectsGlobalScope":true},{"version":"51b8b27c21c066bf877646e320bf6a722b80d1ade65e686923cd9d4494aef1ca","affectsGlobalScope":true},{"version":"43fb1d932e4966a39a41b464a12a81899d9ae5f2c829063f5571b6b87e6d2f9c","affectsGlobalScope":true},{"version":"cdccba9a388c2ee3fd6ad4018c640a471a6c060e96f1232062223063b0a5ac6a","affectsGlobalScope":true},{"version":"2c8c5ee58f30e7c944e04ab1fb5506fdbb4dd507c9efa6972cf4b91cec90c503","affectsGlobalScope":true},{"version":"2bb4b3927299434052b37851a47bf5c39764f2ba88a888a107b32262e9292b7c","affectsGlobalScope":true},{"version":"810627a82ac06fb5166da5ada4159c4ec11978dfbb0805fe804c86406dab8357","affectsGlobalScope":true},{"version":"62d80405c46c3f4c527ee657ae9d43fda65a0bf582292429aea1e69144a522a6","affectsGlobalScope":true},{"version":"3013574108c36fd3aaca79764002b3717da09725a36a6fc02eac386593110f93","affectsGlobalScope":true},{"version":"75ec0bdd727d887f1b79ed6619412ea72ba3c81d92d0787ccb64bab18d261f14","affectsGlobalScope":true},{"version":"3be5a1453daa63e031d266bf342f3943603873d890ab8b9ada95e22389389006","affectsGlobalScope":true},{"version":"17bb1fc99591b00515502d264fa55dc8370c45c5298f4a5c2083557dccba5a2a","affectsGlobalScope":true},{"version":"7ce9f0bde3307ca1f944119f6365f2d776d281a393b576a18a2f2893a2d75c98","affectsGlobalScope":true},{"version":"6a6b173e739a6a99629a8594bfb294cc7329bfb7b227f12e1f7c11bc163b8577","affectsGlobalScope":true},{"version":"12a310447c5d23c7d0d5ca2af606e3bd08afda69100166730ab92c62999ebb9d","affectsGlobalScope":true},{"version":"b0124885ef82641903d232172577f2ceb5d3e60aed4da1153bab4221e1f6dd4e","affectsGlobalScope":true},{"version":"0eb85d6c590b0d577919a79e0084fa1744c1beba6fd0d4e951432fa1ede5510a","affectsGlobalScope":true},{"version":"da233fc1c8a377ba9e0bed690a73c290d843c2c3d23a7bd7ec5cd3d7d73ba1e0","affectsGlobalScope":true},{"version":"df9c8a72ca8b0ed62f5470b41208a0587f0f73f0a7db28e5a1272cf92537518e","affectsGlobalScope":true},{"version":"bb2d3fb05a1d2ffbca947cc7cbc95d23e1d053d6595391bd325deb265a18d36c","affectsGlobalScope":true},{"version":"c80df75850fea5caa2afe43b9949338ce4e2de086f91713e9af1a06f973872b8","affectsGlobalScope":true},{"version":"9d57b2b5d15838ed094aa9ff1299eecef40b190722eb619bac4616657a05f951","affectsGlobalScope":true},{"version":"6c51b5dd26a2c31dbf37f00cfc32b2aa6a92e19c995aefb5b97a3a64f1ac99de","affectsGlobalScope":true},{"version":"93544ca2f26a48716c1b6c5091842cad63129daac422dfa4bc52460465f22bb1","affectsGlobalScope":true},{"version":"2ad234885a4240522efccd77de6c7d99eecf9b4de0914adb9a35c0c22433f993","affectsGlobalScope":true},{"version":"1b3fe904465430e030c93239a348f05e1be80640d91f2f004c3512c2c2c89f34","affectsGlobalScope":true},{"version":"4632665b87204bb1caa8b44d165bce0c50dfab177df5b561b345a567cabacf9a","affectsGlobalScope":true},"fd179d7b68260caf075aaabe202dfd39622403405beec3c7a697dec1df338cb2","d086d18c6de38fff9261952724c77cfb8915e09d8e927133565f368ae3f80f6d","115d60d2b07ac7d513543b5e86e13bbf9a9524faf8bdf4985bd7a08815b46406","4a1545bdbccec0209a67da02f760fad629deedbe7d8ac9f55c93c82f95ff5449","7b52c21bd6397ca26df3b7863fa2d5014aa4bbf5621377769726bbd59956e6bc","6b93d6b362ef33a455a7852f7891a6023a8a2bbb03a81cf84bb0f2b627673148","641b9da0622e0225740b5a55f47af9f23f01bf8f4dcbfb81128c16b585900717","5534c99590ae8b633509d9e4d2e1a7bf6511cb7fd1710c36d7723c2f9486aeba","58d4731b1b9da2133f15c139c5a39154549e227b7fd7051d6933372de89b3b00","3ace48f46b43fec335799729ecba491fba8478ef911bbaba4e64ae91ac284082","0da6adbb172817b7101eb1fc5a93310d5b140ac7c3678e3f8891d6177d1f2ce8","95210bf2a09475e9e19fe532fdc2562dced3536fc50f92aad88466950ff11160","4fe16f53f63c3fe82903afe4db25c276097b092592c36d4a37b33f04007da5d1","032aa0bbc88640270f29cfee50f0857ebd903dee14626eb9ec52043d75765173","d24cd8c79f8eb91b85d4a61e75188504f0d2dcd6ab8ebb87ac22a8ba0ec200b2","70055bc7cbe14541919f4b9e4c488b31cc901fa8defa32827ca3ba955a409762","155dc0abafc201d20cb2c4c54d631e13cf286f5a757fff975dc2dd7e196380fe","256eb1263ff0eae669dd39371245c70e082437ebd01dac855dda8ef5bc5a1330","b56adcca0e4ea4e2ff1a527006c90a7eecf5c0637f10b7232d5a6ffb40e1a47e","9792450af532e4607ef025ab4f224ec396907c1587866251fd529214abb94768","3084564f4782aacb5f60dee152f260a73b7ec7093432626814d019d2f871b1e9","67aaa92c35872e8ac9ca6092e0010db368656740e28e4486c2cf8064e536d057","04b00c8e04b88f9dd0aefaec6b8c42fa4d1ffdfd9a73131cb6d96b185978d536","17eab666f34227a634a3e24041ea06a7f52cd0216411de7dea6bccaef7ab62ac","1d8dc736a80d377b4ce3b78568038c796485e604cb9c5c664ac5718a5fb63c41","9df9a424cba33791a9f05592ce73c61a6ea6cd0e8d02b5d634601d169e28229c","1a1cfc77cc8eb4bf26f01d2da8059920873646a67cb359e41d5b0842cd423271","4d33127708c239d63baa8c5bdf6f23e50e4a40527bce36e5511bf6d655c873f3","2626836cf152b2231a1d800779a594695b029c19bd49a150e5e994f788a8d9e1","8315d8694e8042084de91475cdb9cc307e50c3b4154776294c899eb7e47bbd09","9fce90d4533619eb5754806401668fa487fbdf0efeeb30c43299aef5a0b5c552","a0aba12f2b210e2151aa6ff772c4c0e1115d437306e1942d7b71f0b45c48ccf3","3b59126bda683d0720973054280a28f57af77498b081985b15779fe85dc96f77","fadd926f5d4644bf9e3161c69104c9f5246e5a5cffbf9076399c3b086ee7f0d3","da2266dd4ecebf71026539d95e36674563a06f869a53ae8e837d512161013dee","e4b3c4ec3ccd3fbe8ed62f6eb3b39c9f0ad574a35eafd1a31077c1e8dd29e93d","4dbbbf7f7b59aa88c2dda60aed5a06c5a57f29b6f931f70ac53bf6cc8aac1cef","8da32928f6184ecfa071cb9aac8e886a640ec68000d72b1fc47a85b5778bdbba","c737d79aaa58f7b5225de26005f12cbfeb60d6e1c0799df85c372a5b3498b313","ccb092565dcf7e8e9eb07dabe8f77a257bb18d10745b78f09501a2826f0b9f7e","50001c90059bbb2d06aabb16ad94b44a9a3dbd0b76a7ad1fbceef53c67ed67ff","103cc813c979b72c032d57fd398bb8a7de019c009a0cd8968f90f149a21c7b09","85aeedbb5aaee4ebb373587871ef070586a3b76eedd345db9dfba6b76bb3d7c0","9fa580d16a5b066442f16778c2846ee169e7ba421f45cd841bcf6d44495b9b13","9cec7eef215c0e9a903104033b96bd6c14fb71dc8b6084c81c869c39acb84101","d204930d40cace62928e7318026791c1e0cef281a06eabde7a98ddddf57154dc","f96b8ea264d72de393165690a473893934773a21cbc29ebadf22a2bbb2e64df2","d2bb51b12f0a2f927774a9a9affed26f0cd925f440f2352c833c55f695b65890","239689e40d3935cd4f340798982febacca88f44ca353b503f654ccb4233370fb","19d4b8c121977c1ea5ad800579d5a4a69007796faa9a547add76a6e94ab91ab4","c70f356c83e8167cd33cc119e908d1d32a9736e8b9f130f8d88fd0d9d498831a","eb9d456c9ba78783d6044925a34d2edcc4ab519bc366e5b42f82fa714eb3d6ae","434ac011dacc3b2659595fbc0555800dd725e626b29cc83292abdb6517262e32","520da364d225aa51b0e7b7adb8fd1a7489a6f680f4bb37ca573024147de84100","aca1a7376ae8f37e0c2b9447633196e3e1671371193451bae8c1ff09e58bad1a","c1c25d86e86ac79472059cf4249b20e04e36f06ead16296a78df76561c9ab59d","c766a7f306fa53af2dacface548cb9590202209e19cd8677febbd66261837a7a","8c403008299cb52d4fb675e9a4cd732a52f1c4c39dba4b2d33a197192c343ea5","c37bf53cf0701fedc43913d79405dcab26450c5aa8afe8bd1b2b4a049da748ae","ebb6dcacb4caa1f40b085fda697f84860fcb74cf3bbb15d5a4f5e0dc27edc6c8","5191da1f2d2e5d8aa799ec10e571e434dc544e9a3e600eeb7dce881f88c3146a","ecf8bb458fd8aa581d044827f214f4c108bd93a32140bd2ed29ca6f2af1bf72f","544e42686ffda36f20b22830f1c1ae966ab1ba4b1f1e6bc68dc6c51d2ace867b","19e18f2211b420eef79412c0bc407119617a7e7699af24d3c70d7d88ee14b2c2","57eb3245f592f2382e2f79b5bdcd3684ba5a21bc0b411de82ef8101284aeb213","74e6286c0c9e2336ac18e6103a82e90a781985604418ff37a695bf9e91148577","53b7b0ad34feb6667b7aa137afb2f87316e8eb2c15d6327355353224fe47b55b","5b581648b2a40a6f970cd938b57270e5e2febf41bfb2813d3176a4ccd9e8fcd5","e74d4b1989725bbdd6ba672055b4e769d3eb90f294d99a683997d1fa6dd3cad5","04017eca924a3c90094ebc57fdc0d60d1c37a8592c988af07926e341fe91fc0b","08b1e0a48d64af7ea99e7911db1a540ebcfef468b4a62c589c40e2de630d786e","f473e9a749dd87ab056d387c4454faba9d21c921b744afbcf9b989043273d44f","cd674d3401bf5b290da4a5e31890305ba67a378b2c01aa8da6ac73feb0685f50","01a1038d946f7820cfb6136f103dc282e3d2cbe8ad2ea244bbe1c15a94727cfb","5f115c795a0a8e5ad69d9bdbce5ecf46d53e324f593d545700c86278f7de72a0","19f96045ebaef51fbea86ab5d00f98fd18381eaf54aefe4a6d4d1cd02b866e7d","9ef452a63549b5d29f8c0a8ad8af73e33d23f388b9f34992b8ea9b8c80e2e219","44faba923fbff252b227ab2222946cc55ab7a8d2c941e56afa7d5f4dc38bebbc","005605697e492ea72f9fc309fa31ee8587e0478bbfc9bb72676559dab2f39339","a1c1195f9dd70a8de22947a275074d1c30571c61f762518291e748a7e644ac9e","f2949ec3b920d10267dff3f4803b3db920f81401182af62740a41e76cc26d8f6","23cfdfc12051eef1bddaff6d95cbda090174b36fb105c7d263acdadb76da1577","ffee2f0960a86ceada047cffc3404363bf9e7783e30848199c4d90cb210123dd","e004995dfdf9fd1a97f47cdc6b74ba0f1da186736eac03c6856412661ac6a6d4","36a29c4843b36ccf4b6f0ed12763414a3516f0176563747b99c016ab3a570922","8ce2616be99a635b1346deef302d68969006b044fc82d6992abb432a4956dc6a","ad73903fb76951a5cd4c4e91d9eed60fb9b0114b1477c2da5c55691dd78cdfe6","9db5c31039049a999fe86ec606d07f9fe0074cf9289400c8f7a5f7ffb5719e9f","ccd23805724c86c86eccc2a73e9f1438c7b0a6e08647c0f54f6c2b3f505026a5","101c66c0a04753be2f1604483f98e1f072d1a95418345d3a7593de7ddfd92fc9","ec007e489e7403a1b46f85392a94fef09533a2bb12f9b98e9d433871aac66b5a","8b26b547fc41921b66353c05c2dbdbdb1dc8d0b60a9ea60f912787818bb9c42c","dbce3e1a32c2696ee8f056b92d2442fc0370f7e3d8d95dddc88cdc8d3ca03454","15ac98e72a64754e1a2c673e630f0c3e6dc163ec18ebf326f7f88f45bb80f526","e4188659bc53e80d6c46cf76e5bdc2968a137166f1e5a853088fc6a0aed4f52b","ea3882010173f50840078eb0e7b013a8a1d9d2b23dbe1725fb0e8350c9abd856","85968e53cc97754877d8b409ca3815b1c0f1c4317d41d47b7975a31e8f3a5bf4","b318a3e94029ffc01f1a3eb1797647bf7487a2a179d4da963043c42fdaf0b4f5","f22f802b1f4effdf8ecda40f15c42f5024d172a44666c43c2e5f65a759cd19b4","83513c8e6f3fc0f4eee317de805b6576632f3073f032e85474a5bddce97c1141","37e2dc34f0f73f046a9a65732a8422a88db920f2419b8792ffaa9309c3419d47","1497368c4f3c40389011552b82735915664234121edb66225ab9b3e5942efcb3","a48523226715e39a7f45a18c5c87a0f926e5c501385aca9e303a10fb8d2ee7be","a995c6991828a06844c7b1c0680ec2a674974489e79713dd0f76ca79c79ea301","88f94a8900946fa2176a4fb11c2bb4c23f70905c0155df827a8c4ce3d9a486fb","5eceb32bd042e20e00f6218144c50c7243c0c6a2e554d5f5dd0c4dd922a96f5f","7af1d42461460eb0d4bbaf1ea9eda111990ecbfaf00dcc23060630f68fdf769a",{"version":"7af5da936c061432e534f3c5b16d67214c968df356b11f1f84f035d9563a2f33","affectsGlobalScope":true},"ebb11e1c3b8d4a1c4300aa9b6f89990943de2e6d05589986a6b8ace43dbb4002",{"version":"82f878197f4f90bbce6ad9b4dd97d25baa743ee13d2cf2a6234674825c67cb07","affectsGlobalScope":true},"e99426376c54a0a1c48031f5d8b8797fc32bc1938b5a990dd4e6fb322ec0f149","ec76b77ed7afe4019837ee454e6a32273296e23202a9c13366a72c907d161c4e","f72d17aee64a8e0dc6170dece4cb36cea901e35f57b20ed7b6526ed816f0c558","8c9d95d7978a39434e5ffbb773b0d09a4f37763acb47de693027852438aef873","f8b22870b5d6ba0e95df5699c9ef32e7d39a9e585bbbcd10c231598ded5ddc07","0ce65cf5b36034006f2b315f379179f07bd5a6027f6538c7aed4ac5be6742fc7",{"version":"21197c184a961ba77cca22c79a291a1c5392ed9b000dd65d8b4117f769f72c74","affectsGlobalScope":true},"0721418a90edc5fca466672f266ab6de12cb50a9db29998fc58765481a3c82ef","97b39f33e966bcf9762bccdaca76c94825199f3fef153ebea9bdfd3fcd2413b6","bf0ae001d0797ccbb74b3a91d88d28022e809f47f97e1b2b44b3e343b114cc95","c41eff6b8e1f91104ae974ccd2bc37c723a462b30ca1df942b2c5b0158ef1df3","2e341737e0711c12040e83047487240b1693a6774253b8142d1a0500a805b7a1","e08e97c2865750e880fea09b150a702ccfa84163382daa0221f5597185a554bf","7ec6b45fc1f5f012ac226b44d0eeaf5a0e90947431ad7c6d1f244ba080b2870d","4a1a19573176829708dc03efea508e7c364f6fa30098a5100bd9d93fc9cd38ee","8296198bc72e7ef2221b0e140738ce56004e8d1323cd08b0ac1a15295fe911b5","baeda1fadac9fd31920480b85340ab9c4266a25ad08403dee8e15fd0751101fb","12c4e8e811f4310b0dcaa3d1f843a35dc985f78941886cad4950453ad6753959","efb97c6be93069e5ac68fe78cab605188d21a05cc8e9680843de806c86da331e","64879fb86594f54077671388ff9ea86929303128d75a39b86dc46b568afd2f13","318e46e7f7893360bf389abd8e33259a81a424038163a11493c4f2771e5645fe","a3586135924c800f21f739a1da43acace1acfdba124deb0871cbd6d04d7dfd1b","f74c1fae7233cd08c72bb2dc09cb0673c53fb4c3c7903ccf0094404e3f2ba6d4","4ec74fe565d13fd219884cfacf903c89477cc54148887e51c5bead4dae7dc4fd","64bac41b1ecd4578543db0c244addd3fa59ada4cedd6e761cdae0e2fc2e340f2","a46d8aa9e561fb135d253e1657a0cd0f6c18377676305eb0ca28e418358b229c","5a168a15e7a423011b10da472ee3b6d92b27227c192cdaf1e09b30f58806856d","ad107fa472d28e615af522b31653e75caad12b834b257c1a83f6c4acff2de9bf",{"version":"07cfc938dfbb5a7b5ba3c363366db93d5728b0fcad1aa08a12052a1b3b72817a","affectsGlobalScope":true},"7f77304372efe3c9967e5f9ea2061f1b4bf41dc3cda3c83cdd676f2e5af6b7e6","67cf04da598e6407427a17d828e9e02d8f5ae5a8466dc73d1585073b8dc29160","fa960168e0650a987d5738376a22a1969b5dff2112b9653f9f1efddf8ba7d5bb","140b05c89cbd5fc75c4e9c1780d85dfb4ea73a2b11dd345f8f944afd002ad74f","5019dc3aca34da91b66286bf0e906d229f02d835e68cd99e282cb70aba1b2f97","5b0df2143d96172bf207ed187627e8c58b15a1a8f97bdbc2ede942b36b39fc98","75409a3abea76ea586c6fb7f2e9f1a7dc007140e2d4ee26ab127735c4f9154e4","e4cd1b0962728076cb75389e6afe280342da5258347210ae04665ba9095dc6c4","7df562288f949945cf69c21cd912100c2afedeeb7cdb219085f7f4b46cb7dde4","9d16690485ff1eb4f6fc57aebe237728fd8e03130c460919da3a35f4d9bd97f5","807bf667365224f909aed5111ac8527e8e148f37fc73c61f70c762b920fb62c7","3d87bdaed72f86b91f99401e6e04729afbb5916064778cf324b3d9b51c3a6d91","8ca837d16a31d6d01b13328ca9e6a39e424b4bf294d3b73349dccacea51be730","a9d40247ec6c68a47effbb1d8acd8df288bcee7b6bf29c17cf4161e5ef609a0c","caf38c850b924a0af08a893d06f68fcae3d5a41780b50cc6df9481beeca8e9a3","7152c46a63e7f9ac7db6cd8d4dbf85d90f051a0db60e650573fae576580cbf9a","496370c58ed054e51a68517846c28a695bf84df2873556cca7fe51e297b32420",{"version":"2708349d5a11a5c2e5f3a0765259ebe7ee00cdcc8161cb9990cb4910328442a1","affectsGlobalScope":true},"263da3252e029b3b62580b7a0c5e7bab07325a31c8af436ff60143cfda73b629","d8aab31ba8e618cc3eea10b0945de81cb93b7e8150a013a482332263b9305322","69da61a7b5093dac77fa3bec8be95dcf9a74c95a0e9161edb98bb24e30e439d2","561eca7a381b96d6ccac6e4061e6d2ae53f5bc44203f3fd9f5b26864c32ae6e9","62ea38627e3ebab429f7616812a9394d327c2bc271003dfba985de9b4137369f","b4439890c168d646357928431100daac5cbdee1d345a34e6bf6eca9f3abe22bc","5d72971a459517c44c1379dab9ed248e87a61ba0a1e0f25c9d67e1e640cd9a09","02d734976af36f4273d930bea88b3e62adf6b078cf120c1c63d49aa8d8427c5c",{"version":"516a426e3960379f310107635b8f3a7e8c307c6c665080b128039d9299ec4087","affectsGlobalScope":true}],"options":{"composite":true,"declaration":true,"declarationMap":true,"esModuleInterop":true,"module":1,"noFallthroughCasesInSwitch":true,"noImplicitAny":true,"noImplicitReturns":true,"noUnusedLocals":true,"noUnusedParameters":true,"removeComments":true,"sourceMap":true,"strict":true,"target":6,"useUnknownInCatchVariables":false},"fileIdsList":[[132,136],[132,133,136],[67,132,133,134,135],[67,132,136,139],[134,136],[136],[132,136,137,138,140,142],[141],[136,138,139,142],[136,138,145],[136,138,162,170],[136,138,139],[35,132],[196,198],[161,168,177],[153,161,168],[177],[159,161,168],[161],[161,177,183],[168,177,183],[161,162,163,168,177,180,183],[163,177,180,183],[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,175,176,177,178,179,180,181,182,183,184,185,186,187,188,189,190],[159,161,177],[151],[182],[175,184,186],[168],[174],[161,162,177,186],[35,36,38,45],[45,46],[46,47,106,107],[35,38,46],[36,46],[35,38,40,41,42,44,46,47],[41,48,62],[35,38,42,43,44,46],[35,36,42,44,48],[34,49,53,61,63,65,105,108,131],[36,37],[36,37,38,39,45,54,55,56,57,58,59,60],[36,37,38],[36],[35,36,37,38,56,132],[38],[36,38,45],[35,38],[64],[35,38,42,44,48],[35,38,40,41,44],[35,38,39,42],[41,42,43,44,50,51,52],[42],[35,38,42,43],[44,46],[35,38,42,43,44,59],[46],[35,38,42],[36,38,44,57],[44,109],[42,46],[35,38,44],[44],[38,44,46],[35,39],[38,42,44],[66,109,110,111,112,113,114,115,116,117,118,119,120,121,122,123,124,125,126,127,128,129,130],[42,44],[35,38,42,43,44,46,59,66],[67,68,69,70,71,72,73,74,75,76,77,78,79,80,81,82,83,84,85,86,87,88,89,90,91,92,93,94,95,96,97,98,99,100,101,102,103,104],[59,67],[67],[35,38,44,46,66,67],[192,193],[192,193,194,195],[197]],"referencedMap":[[138,1],[134,2],[136,3],[140,4],[145,5],[139,1],[137,6],[143,7],[142,8],[144,9],[146,10],[147,11],[148,12],[133,13],[199,14],[153,15],[154,16],[157,17],[158,18],[160,19],[161,19],[162,20],[163,21],[164,22],[165,23],[191,24],[166,19],[168,25],[171,26],[172,27],[175,19],[176,28],[177,19],[180,29],[182,29],[183,30],[185,17],[188,31],[189,17],[46,32],[47,33],[108,34],[107,35],[106,36],[48,37],[63,38],[62,39],[49,40],[132,41],[38,42],[61,43],[56,44],[45,45],[57,46],[60,47],[54,48],[58,47],[59,49],[65,50],[64,51],[42,52],[43,53],[53,54],[51,55],[50,55],[44,56],[52,57],[66,58],[127,59],[121,60],[114,61],[113,62],[122,63],[123,47],[115,64],[128,65],[130,66],[109,67],[110,49],[111,68],[131,69],[112,62],[116,65],[117,70],[124,47],[125,45],[126,70],[118,68],[129,47],[119,60],[120,49],[67,71],[105,72],[70,73],[71,73],[72,73],[73,73],[74,73],[75,73],[76,73],[77,73],[96,73],[78,73],[79,73],[80,73],[81,73],[82,73],[83,73],[102,73],[84,73],[85,73],[86,73],[87,73],[101,73],[88,73],[99,73],[100,73],[89,73],[90,73],[91,73],[97,73],[98,73],[92,73],[93,73],[94,73],[95,73],[103,73],[104,73],[69,74],[68,75],[194,76],[196,77],[195,76],[198,78]],"exportedModulesMap":[[138,1],[134,2],[136,3],[140,4],[145,5],[139,1],[137,6],[143,7],[142,8],[144,9],[146,10],[147,11],[148,12],[133,13],[199,14],[153,15],[154,16],[157,17],[158,18],[160,19],[161,19],[162,20],[163,21],[164,22],[165,23],[191,24],[166,19],[168,25],[171,26],[172,27],[175,19],[176,28],[177,19],[180,29],[182,29],[183,30],[185,17],[188,31],[189,17],[46,32],[47,33],[108,34],[107,35],[106,36],[48,37],[63,38],[62,39],[49,40],[132,41],[38,42],[61,43],[56,44],[45,45],[57,46],[60,47],[54,48],[58,47],[59,49],[65,50],[64,51],[42,52],[43,53],[53,54],[51,55],[50,55],[44,56],[52,57],[66,58],[127,59],[121,60],[114,61],[113,62],[122,63],[123,47],[115,64],[128,65],[130,66],[109,67],[110,49],[111,68],[131,69],[112,62],[116,65],[117,70],[124,47],[125,45],[126,70],[118,68],[129,47],[119,60],[120,49],[67,71],[105,72],[70,73],[71,73],[72,73],[73,73],[74,73],[75,73],[76,73],[77,73],[96,73],[78,73],[79,73],[80,73],[81,73],[82,73],[83,73],[102,73],[84,73],[85,73],[86,73],[87,73],[101,73],[88,73],[99,73],[100,73],[89,73],[90,73],[91,73],[97,73],[98,73],[92,73],[93,73],[94,73],[95,73],[103,73],[104,73],[69,74],[68,75],[194,76],[196,77],[195,76],[198,78]],"semanticDiagnosticsPerFile":[138,134,136,140,145,139,137,135,143,142,141,144,146,147,148,133,199,149,151,152,153,154,155,156,157,158,159,160,161,162,150,190,163,164,165,191,166,167,168,169,170,171,172,173,174,175,176,177,178,179,180,181,182,183,184,185,186,187,188,189,46,47,108,107,106,48,63,62,49,132,35,41,40,38,39,61,55,56,45,57,60,54,58,36,37,59,65,64,42,43,53,51,50,44,52,66,127,121,114,113,122,123,115,128,130,109,110,111,131,112,116,117,124,125,126,118,129,119,120,67,105,70,71,72,73,74,75,76,77,96,78,79,80,81,82,83,102,84,85,86,87,101,88,99,100,89,90,91,97,98,92,93,94,95,103,104,69,68,34,192,194,196,195,193,198,197,7,9,8,2,10,11,12,13,14,15,16,17,3,4,21,18,19,20,22,23,24,5,25,26,27,28,6,29,30,31,32,1,33],"affectedFilesPendingEmit":[[138,1],[134,1],[136,1],[140,1],[145,1],[139,1],[137,1],[135,1],[143,1],[142,1],[141,1],[144,1],[146,1],[147,1],[148,1],[133,1],[199,1],[149,1],[151,1],[152,1],[153,1],[154,1],[155,1],[156,1],[157,1],[158,1],[159,1],[160,1],[161,1],[162,1],[150,1],[190,1],[163,1],[164,1],[165,1],[191,1],[166,1],[167,1],[168,1],[169,1],[170,1],[171,1],[172,1],[173,1],[174,1],[175,1],[176,1],[177,1],[178,1],[179,1],[180,1],[181,1],[182,1],[183,1],[184,1],[185,1],[186,1],[187,1],[188,1],[189,1],[46,1],[47,1],[108,1],[107,1],[106,1],[48,1],[63,1],[62,1],[49,1],[132,1],[35,1],[41,1],[40,1],[38,1],[39,1],[61,1],[55,1],[56,1],[45,1],[57,1],[60,1],[54,1],[58,1],[36,1],[37,1],[59,1],[65,1],[64,1],[42,1],[43,1],[53,1],[51,1],[50,1],[44,1],[52,1],[66,1],[127,1],[121,1],[114,1],[113,1],[122,1],[123,1],[115,1],[128,1],[130,1],[109,1],[110,1],[111,1],[131,1],[112,1],[116,1],[117,1],[124,1],[125,1],[126,1],[118,1],[129,1],[119,1],[120,1],[67,1],[105,1],[70,1],[71,1],[72,1],[73,1],[74,1],[75,1],[76,1],[77,1],[96,1],[78,1],[79,1],[80,1],[81,1],[82,1],[83,1],[102,1],[84,1],[85,1],[86,1],[87,1],[101,1],[88,1],[99,1],[100,1],[89,1],[90,1],[91,1],[97,1],[98,1],[92,1],[93,1],[94,1],[95,1],[103,1],[104,1],[69,1],[68,1],[34,1],[192,1],[194,1],[196,1],[195,1],[193,1],[198,1],[197,1],[2,1],[3,1],[4,1],[5,1],[6,1]]},"version":"4.4.2"}
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.dom.d.ts","../node_modules/typescript/lib/lib.es2015.core.d.ts","../node_modules/typescript/lib/lib.es2015.collection.d.ts","../node_modules/typescript/lib/lib.es2015.generator.d.ts","../node_modules/typescript/lib/lib.es2015.iterable.d.ts","../node_modules/typescript/lib/lib.es2015.promise.d.ts","../node_modules/typescript/lib/lib.es2015.proxy.d.ts","../node_modules/typescript/lib/lib.es2015.reflect.d.ts","../node_modules/typescript/lib/lib.es2015.symbol.d.ts","../node_modules/typescript/lib/lib.es2015.symbol.wellknown.d.ts","../node_modules/typescript/lib/lib.es2016.array.include.d.ts","../node_modules/typescript/lib/lib.es2017.object.d.ts","../node_modules/typescript/lib/lib.es2017.sharedmemory.d.ts","../node_modules/typescript/lib/lib.es2017.string.d.ts","../node_modules/typescript/lib/lib.es2017.intl.d.ts","../node_modules/typescript/lib/lib.es2017.typedarrays.d.ts","../node_modules/typescript/lib/lib.es2018.asyncgenerator.d.ts","../node_modules/typescript/lib/lib.es2018.asynciterable.d.ts","../node_modules/typescript/lib/lib.es2018.intl.d.ts","../node_modules/typescript/lib/lib.es2018.promise.d.ts","../node_modules/typescript/lib/lib.es2018.regexp.d.ts","../node_modules/typescript/lib/lib.es2019.array.d.ts","../node_modules/typescript/lib/lib.es2019.object.d.ts","../node_modules/typescript/lib/lib.es2019.string.d.ts","../node_modules/typescript/lib/lib.es2019.symbol.d.ts","../node_modules/typescript/lib/lib.es2020.bigint.d.ts","../node_modules/typescript/lib/lib.esnext.intl.d.ts","../node_modules/graphql/version.d.ts","../node_modules/graphql/jsutils/Maybe.d.ts","../node_modules/graphql/language/source.d.ts","../node_modules/graphql/jsutils/Path.d.ts","../node_modules/graphql/jsutils/PromiseOrValue.d.ts","../node_modules/graphql/jsutils/ObjMap.d.ts","../node_modules/graphql/language/kinds.d.ts","../node_modules/graphql/language/tokenKind.d.ts","../node_modules/graphql/language/ast.d.ts","../node_modules/graphql/language/location.d.ts","../node_modules/graphql/error/GraphQLError.d.ts","../node_modules/graphql/language/directiveLocation.d.ts","../node_modules/graphql/type/directives.d.ts","../node_modules/graphql/type/schema.d.ts","../node_modules/graphql/type/definition.d.ts","../node_modules/graphql/execution/execute.d.ts","../node_modules/graphql/graphql.d.ts","../node_modules/graphql/type/scalars.d.ts","../node_modules/graphql/type/introspection.d.ts","../node_modules/graphql/type/validate.d.ts","../node_modules/graphql/type/assertName.d.ts","../node_modules/graphql/type/index.d.ts","../node_modules/graphql/language/printLocation.d.ts","../node_modules/graphql/language/lexer.d.ts","../node_modules/graphql/language/parser.d.ts","../node_modules/graphql/language/printer.d.ts","../node_modules/graphql/language/visitor.d.ts","../node_modules/graphql/language/predicates.d.ts","../node_modules/graphql/language/index.d.ts","../node_modules/graphql/execution/subscribe.d.ts","../node_modules/graphql/execution/values.d.ts","../node_modules/graphql/execution/index.d.ts","../node_modules/graphql/subscription/index.d.ts","../node_modules/graphql/utilities/TypeInfo.d.ts","../node_modules/graphql/validation/ValidationContext.d.ts","../node_modules/graphql/validation/validate.d.ts","../node_modules/graphql/validation/specifiedRules.d.ts","../node_modules/graphql/validation/rules/ExecutableDefinitionsRule.d.ts","../node_modules/graphql/validation/rules/FieldsOnCorrectTypeRule.d.ts","../node_modules/graphql/validation/rules/FragmentsOnCompositeTypesRule.d.ts","../node_modules/graphql/validation/rules/KnownArgumentNamesRule.d.ts","../node_modules/graphql/validation/rules/KnownDirectivesRule.d.ts","../node_modules/graphql/validation/rules/KnownFragmentNamesRule.d.ts","../node_modules/graphql/validation/rules/KnownTypeNamesRule.d.ts","../node_modules/graphql/validation/rules/LoneAnonymousOperationRule.d.ts","../node_modules/graphql/validation/rules/NoFragmentCyclesRule.d.ts","../node_modules/graphql/validation/rules/NoUndefinedVariablesRule.d.ts","../node_modules/graphql/validation/rules/NoUnusedFragmentsRule.d.ts","../node_modules/graphql/validation/rules/NoUnusedVariablesRule.d.ts","../node_modules/graphql/validation/rules/OverlappingFieldsCanBeMergedRule.d.ts","../node_modules/graphql/validation/rules/PossibleFragmentSpreadsRule.d.ts","../node_modules/graphql/validation/rules/ProvidedRequiredArgumentsRule.d.ts","../node_modules/graphql/validation/rules/ScalarLeafsRule.d.ts","../node_modules/graphql/validation/rules/SingleFieldSubscriptionsRule.d.ts","../node_modules/graphql/validation/rules/UniqueArgumentNamesRule.d.ts","../node_modules/graphql/validation/rules/UniqueDirectivesPerLocationRule.d.ts","../node_modules/graphql/validation/rules/UniqueFragmentNamesRule.d.ts","../node_modules/graphql/validation/rules/UniqueInputFieldNamesRule.d.ts","../node_modules/graphql/validation/rules/UniqueOperationNamesRule.d.ts","../node_modules/graphql/validation/rules/UniqueVariableNamesRule.d.ts","../node_modules/graphql/validation/rules/ValuesOfCorrectTypeRule.d.ts","../node_modules/graphql/validation/rules/VariablesAreInputTypesRule.d.ts","../node_modules/graphql/validation/rules/VariablesInAllowedPositionRule.d.ts","../node_modules/graphql/validation/rules/LoneSchemaDefinitionRule.d.ts","../node_modules/graphql/validation/rules/UniqueOperationTypesRule.d.ts","../node_modules/graphql/validation/rules/UniqueTypeNamesRule.d.ts","../node_modules/graphql/validation/rules/UniqueEnumValueNamesRule.d.ts","../node_modules/graphql/validation/rules/UniqueFieldDefinitionNamesRule.d.ts","../node_modules/graphql/validation/rules/UniqueArgumentDefinitionNamesRule.d.ts","../node_modules/graphql/validation/rules/UniqueDirectiveNamesRule.d.ts","../node_modules/graphql/validation/rules/PossibleTypeExtensionsRule.d.ts","../node_modules/graphql/validation/rules/custom/NoDeprecatedCustomRule.d.ts","../node_modules/graphql/validation/rules/custom/NoSchemaIntrospectionCustomRule.d.ts","../node_modules/graphql/validation/index.d.ts","../node_modules/graphql/error/syntaxError.d.ts","../node_modules/graphql/error/locatedError.d.ts","../node_modules/graphql/error/index.d.ts","../node_modules/graphql/utilities/getIntrospectionQuery.d.ts","../node_modules/graphql/utilities/getOperationAST.d.ts","../node_modules/graphql/utilities/getOperationRootType.d.ts","../node_modules/graphql/utilities/introspectionFromSchema.d.ts","../node_modules/graphql/utilities/buildClientSchema.d.ts","../node_modules/graphql/utilities/buildASTSchema.d.ts","../node_modules/graphql/utilities/extendSchema.d.ts","../node_modules/graphql/utilities/lexicographicSortSchema.d.ts","../node_modules/graphql/utilities/printSchema.d.ts","../node_modules/graphql/utilities/typeFromAST.d.ts","../node_modules/graphql/utilities/valueFromAST.d.ts","../node_modules/graphql/utilities/valueFromASTUntyped.d.ts","../node_modules/graphql/utilities/astFromValue.d.ts","../node_modules/graphql/utilities/coerceInputValue.d.ts","../node_modules/graphql/utilities/concatAST.d.ts","../node_modules/graphql/utilities/separateOperations.d.ts","../node_modules/graphql/utilities/stripIgnoredCharacters.d.ts","../node_modules/graphql/utilities/typeComparators.d.ts","../node_modules/graphql/utilities/assertValidName.d.ts","../node_modules/graphql/utilities/findBreakingChanges.d.ts","../node_modules/graphql/utilities/typedQueryDocumentNode.d.ts","../node_modules/graphql/utilities/index.d.ts","../node_modules/graphql/index.d.ts","../node_modules/@apollo/core-schema/dist/error.d.ts","./dist/coreSpec.d.ts","./dist/utils.d.ts","./dist/definitions.d.ts","./dist/print.d.ts","./dist/buildSchema.d.ts","./dist/operations.d.ts","./dist/error.d.ts","./dist/federation.d.ts","./src/__tests__/matchers/toMatchString.ts","./src/__tests__/matchers/index.ts","./src/__tests__/definitions.test.ts","./dist/values.d.ts","./dist/types.d.ts","./dist/debug.d.ts","./dist/joinSpec.d.ts","./dist/tagSpec.d.ts","./dist/supergraphs.d.ts","./dist/extractSubgraphsFromSupergraph.d.ts","./dist/index.d.ts","./src/__tests__/extractSubgraphsFromSupergraph.test.ts","./src/__tests__/operations.test.ts","./dist/inaccessibleSpec.d.ts","./src/__tests__/removeInaccessibleElements.test.ts","../node_modules/graphql-tag/lib/index.d.ts","./src/__tests__/subgraphValidation.test.ts","./src/__tests__/toAPISchema.test.ts","./src/__tests__/utils.test.ts","./src/__tests__/values.test.ts","../node_modules/@types/node/assert.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/dns.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/http.d.ts","../node_modules/@types/node/http2.d.ts","../node_modules/@types/node/https.d.ts","../node_modules/@types/node/inspector.d.ts","../node_modules/@types/node/module.d.ts","../node_modules/@types/node/net.d.ts","../node_modules/@types/node/os.d.ts","../node_modules/@types/node/path.d.ts","../node_modules/@types/node/perf_hooks.d.ts","../node_modules/@types/node/process.d.ts","../node_modules/@types/node/punycode.d.ts","../node_modules/@types/node/querystring.d.ts","../node_modules/@types/node/readline.d.ts","../node_modules/@types/node/repl.d.ts","../node_modules/@types/node/stream.d.ts","../node_modules/@types/node/string_decoder.d.ts","../node_modules/@types/node/timers.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/jest-diff/build/cleanupSemantic.d.ts","../node_modules/pretty-format/build/types.d.ts","../node_modules/pretty-format/build/index.d.ts","../node_modules/jest-diff/build/types.d.ts","../node_modules/jest-diff/build/diffLines.d.ts","../node_modules/jest-diff/build/printDiffs.d.ts","../node_modules/jest-diff/build/index.d.ts","../node_modules/@types/jest/index.d.ts"],"fileInfos":[{"version":"89f78430e422a0f06d13019d60d5a45b37ec2d28e67eb647f73b1b0d19a46b72","affectsGlobalScope":true},"dc47c4fa66b9b9890cf076304de2a9c5201e94b740cffdf09f87296d877d71f6","7a387c58583dfca701b6c85e0adaf43fb17d590fb16d5b2dc0a2fbd89f35c467","8a12173c586e95f4433e0c6dc446bc88346be73ffe9ca6eec7aa63c8f3dca7f9","5f4e733ced4e129482ae2186aae29fde948ab7182844c3a5a51dd346182c7b06","e6b724280c694a9f588847f754198fb96c43d805f065c3a5b28bbc9594541c84",{"version":"abba1071bfd89e55e88a054b0c851ea3e8a494c340d0f3fab19eb18f6afb0c9e","affectsGlobalScope":true},{"version":"d8996609230d17e90484a2dd58f22668f9a05a3bfe00bfb1d6271171e54a31fb","affectsGlobalScope":true},{"version":"43fb1d932e4966a39a41b464a12a81899d9ae5f2c829063f5571b6b87e6d2f9c","affectsGlobalScope":true},{"version":"cdccba9a388c2ee3fd6ad4018c640a471a6c060e96f1232062223063b0a5ac6a","affectsGlobalScope":true},{"version":"4378fc8122ec9d1a685b01eb66c46f62aba6b239ca7228bb6483bcf8259ee493","affectsGlobalScope":true},{"version":"0d5f52b3174bee6edb81260ebcd792692c32c81fd55499d69531496f3f2b25e7","affectsGlobalScope":true},{"version":"810627a82ac06fb5166da5ada4159c4ec11978dfbb0805fe804c86406dab8357","affectsGlobalScope":true},{"version":"62d80405c46c3f4c527ee657ae9d43fda65a0bf582292429aea1e69144a522a6","affectsGlobalScope":true},{"version":"3013574108c36fd3aaca79764002b3717da09725a36a6fc02eac386593110f93","affectsGlobalScope":true},{"version":"75ec0bdd727d887f1b79ed6619412ea72ba3c81d92d0787ccb64bab18d261f14","affectsGlobalScope":true},{"version":"3be5a1453daa63e031d266bf342f3943603873d890ab8b9ada95e22389389006","affectsGlobalScope":true},{"version":"17bb1fc99591b00515502d264fa55dc8370c45c5298f4a5c2083557dccba5a2a","affectsGlobalScope":true},{"version":"7ce9f0bde3307ca1f944119f6365f2d776d281a393b576a18a2f2893a2d75c98","affectsGlobalScope":true},{"version":"6a6b173e739a6a99629a8594bfb294cc7329bfb7b227f12e1f7c11bc163b8577","affectsGlobalScope":true},{"version":"12a310447c5d23c7d0d5ca2af606e3bd08afda69100166730ab92c62999ebb9d","affectsGlobalScope":true},{"version":"b0124885ef82641903d232172577f2ceb5d3e60aed4da1153bab4221e1f6dd4e","affectsGlobalScope":true},{"version":"0eb85d6c590b0d577919a79e0084fa1744c1beba6fd0d4e951432fa1ede5510a","affectsGlobalScope":true},{"version":"da233fc1c8a377ba9e0bed690a73c290d843c2c3d23a7bd7ec5cd3d7d73ba1e0","affectsGlobalScope":true},{"version":"d154ea5bb7f7f9001ed9153e876b2d5b8f5c2bb9ec02b3ae0d239ec769f1f2ae","affectsGlobalScope":true},{"version":"bb2d3fb05a1d2ffbca947cc7cbc95d23e1d053d6595391bd325deb265a18d36c","affectsGlobalScope":true},{"version":"c80df75850fea5caa2afe43b9949338ce4e2de086f91713e9af1a06f973872b8","affectsGlobalScope":true},{"version":"9d57b2b5d15838ed094aa9ff1299eecef40b190722eb619bac4616657a05f951","affectsGlobalScope":true},{"version":"6c51b5dd26a2c31dbf37f00cfc32b2aa6a92e19c995aefb5b97a3a64f1ac99de","affectsGlobalScope":true},{"version":"6e7997ef61de3132e4d4b2250e75343f487903ddf5370e7ce33cf1b9db9a63ed","affectsGlobalScope":true},{"version":"2ad234885a4240522efccd77de6c7d99eecf9b4de0914adb9a35c0c22433f993","affectsGlobalScope":true},{"version":"1b3fe904465430e030c93239a348f05e1be80640d91f2f004c3512c2c2c89f34","affectsGlobalScope":true},{"version":"10bbdc1981b8d9310ee75bfac28ee0477bb2353e8529da8cff7cb26c409cb5e8","affectsGlobalScope":true},"78647004e18e4c16b8a2e8345fca9267573d1c5a29e11ddfee71858fd077ef6e","0804044cd0488cb7212ddbc1d0f8e1a5bd32970335dbfc613052304a1b0318f9","b725acb041d2a18fde8f46c48a1408418489c4aa222f559b1ef47bf267cb4be0","898ec2410fae172e0a9416448b0838bed286322a5c0c8959e8e39400cd4c5697","692345a43bac37c507fa7065c554258435ab821bbe4fb44b513a70063e932b45","85084ae98c1d319e38ef99b1216d3372a9afd7a368022c01c3351b339d52cb58","f473be7c909dbd10c40f013e70da40f24648b2abb01025436fe0a0eecd0e83be","c98583f02275727ead0256c97298c15fb77a1c1e473b03c3b61291c63c66d385","9a7904e39add402d71343ac8de5303e990d9abb1fc703c64991c655b718267a5","522edc786ed48304671b935cf7d3ed63acc6636ab9888c6e130b97a6aea92b46","f671901909a26ae633328d6d899992193ca9ea718e6315f2c3d46f39c437f02c","7920b8aa27a7b6a90bf9f5dc21eedac7f38ca8717ebe70495ab616eb52b3247b","a53039ba614075aeb702271701981babbd0d4f4dcbf319ddee4c08fb8196cc7a","96e93e65b83e66c454621151580ba211624a5630e526401a3e872012d1a3c0cb","044ccbc6dcf082d294ad4b0233a61cfb1f7135ee71e4934ddd2d6f763a6f66cf","ba43a84b8ad820c622fc4d05ca1aef6e570a9ed1e8a13ad8bc4ef86db68c85e1","bdf7abbd7df4f29b3e0728684c790e80590b69d92ed8d3bf8e66d4bd713941fe","8decb32fc5d44b403b46c3bb4741188df4fbc3c66d6c65669000c5c9cd506523","3c8c852d93800512dc47f4554efe94789bd81733947e2066a916ba70fe6992fd","c26dd198f2793bbdcc55103823a2767d6223a7fdb92486c18b86deaf63208354","93551b302a808f226f0846ad8012354f2d53d6dedc33b540d6ca69836781a574","29421c95ddd2555b879699a9bfd8dc53c7faebf6db383e8e217fb5a55372a93d","d60984fcae46158649bf553c1a649428ced1dfaa789086a7fb79a819536b0023","ff90925b7aef60c568d491966f90f37cfe4eb126a590e68a33c017b9be483f84","cbd12dce7f4a3542b0f00690efcf1211e50ad87bd78cedbf7beb60acb27d20a0","be8f369f8d7e887eab87a3e4e41f1afcf61bf06056801383152aa83bda1f6a72","352bfb5f3a9d8a9c2464ad2dc0b2dc56a8212650a541fb550739c286dd341de1","6b6fdab709d30fbedb090e783a610662e60b4922843f42ef801e3073a23392ee","65b2a90560049039460015abe63b8fa7f205bb78796a8de48a3661cfe7e07e28","b7e7cf447fd529696ae56050825df194c76a4752976ffaa108b8e9d1f9d6ce1a","2b4b6a59d7d1020b65f9c878850b1aa2ae8eceb26025224d6bee2c5d7883d815","42c2b73b78922854abbd3b289a2d03ae4a5c573dd6d2444544f8ba40b8fee20a","70441eda704feffd132be0c1541f2c7f6bbaafce25cb9b54b181e26af3068e79","7ef6d45ce6f0ee16a0441063ca89cebfbe4c00647132f5fe31bbe5420e20843b","11c2481df1d73d5d667ce282d1ec9fbcedee39f0a0382fd591cf6434b21f05d0","ea4b5d319625203a5a96897b057fddf6017d0f9a902c16060466fe69cc007243","ac7eec65e925055052e4c3d88a303457150e7ddf8f02256a674315335b95af70","ab01d8fcb89fae8eda22075153053fefac69f7d9571a389632099e7a53f1922d","bac0ec1f4c61abc7c54ccebb0f739acb0cdbc22b1b19c91854dc142019492961","566b0806f9016fa067b7fecf3951fcc295c30127e5141223393bde16ad04aa4a","1b3a76621e54583d0f1a9fcde6b7aa7642283412b103744f7b2a5c3c19108959","6f0f5830c13abe710e1e7e97bed1ae039f3a9fc8b5ce2a076141eaf0c854fee6","a3727a926e697919fb59407938bd8573964b3bf543413b685996a47df5645863","3307e5b71a5eea118476097fde4580e60c20b187e945f42d7eb69a8dbbe7e09a","dce7d69c17a438554c11bbf930dec2bee5b62184c0494d74da336daee088ab69","1e8f2cda9735002728017933c54ccea7ebee94b9c68a59a4aac1c9a58aa7da7d","e327a2b222cf9e5c93d7c1ed6468ece2e7b9d738e5da04897f1a99f49d42cca1","65165246b59654ec4e1501dd87927a0ef95d57359709e00e95d1154ad8443bc7","f1bacba19e2fa2eb26c499e36b5ab93d6764f2dba44be3816f12d2bc9ac9a35b","bce38da5fd851520d0cb4d1e6c3c04968cec2faa674ed321c118e97e59872edc","3398f46037f21fb6c33560ceca257259bd6d2ea03737179b61ea9e17cbe07455","0a08db8f792dd2b329dfb09bb2c7805298d03888608acd9eb554a8ad820e1079","12b9bcf8395d33837f301a8e6d545a24dfff80db9e32f8e8e6cf4b11671bb442","04295cc38689e32a4ea194c954ea6604e6afb6f1c102104f74737cb8cf744422","7418f434c136734b23f634e711cf44613ca4c74e63a5ae7429acaee46c7024c8","27d40290b7caba1c04468f2b53cf7112f247f8acdd7c20589cd7decf9f762ad0","2608b8b83639baf3f07316df29202eead703102f1a7e32f74a1b18cf1eee54b5","c93657567a39bd589effe89e863aaadbc339675fca6805ae4d97eafbcce0a05d","909d5db5b3b19f03dfb4a8f1d00cf41d2f679857c28775faf1f10794cbbe9db9","e4504bffce13574bab83ab900b843590d85a0fd38faab7eff83d84ec55de4aff","8ab707f3c833fc1e8a51106b8746c8bc0ce125083ea6200ad881625ae35ce11e","730ddc2386276ac66312edbcc60853fedbb1608a99cb0b1ff82ebf26911dba1f","c1b3fa201aa037110c43c05ea97800eb66fea3f2ecc5f07c6fd47f2b6b5b21d2","636b44188dc6eb326fd566085e6c1c6035b71f839d62c343c299a35888c6f0a9","3b2105bf9823b53c269cabb38011c5a71360c8daabc618fec03102c9514d230c","f96e63eb56e736304c3aef6c745b9fe93db235ddd1fec10b45319c479de1a432","acb4f3cee79f38ceba975e7ee3114eb5cd96ccc02742b0a4c7478b4619f87cd6","cfc85d17c1493b6217bad9052a8edc332d1fde81a919228edab33c14aa762939","eebda441c4486c26de7a8a7343ebbc361d2b0109abff34c2471e45e34a93020a","727b4b8eb62dd98fa4e3a0937172c1a0041eb715b9071c3de96dad597deddcab","708e2a347a1b9868ccdb48f3e43647c6eccec47b8591b220afcafc9e7eeb3784","6bb598e2d45a170f302f113a5b68e518c8d7661ae3b59baf076be9120afa4813","c28e058db8fed2c81d324546f53d2a7aaefff380cbe70f924276dbad89acd7d1","246d5ebd3dc2ba73a0fd5baf02d9db5b9ac7d62ac1c5a66c07e9680871fdc3d1","826a98cb79deab45ccc4e5a8b90fa64510b2169781a7cbb83c4a0a8867f4cc58","618189f94a473b7fdc5cb5ba8b94d146a0d58834cd77cd24d56995f41643ccd5","da129261494c4094bf55c761ba5f0ae4d5426d83ed5e312bc7f8600727bb8a05","cd2f8f7d90d8d283bb4b91b57406bf793df731d39bc2c119e3fa514a057d21f8","91b0965538a5eaafa8c09cf9f62b46d6125aa1b3c0e0629dce871f5f41413f90","1930700210612b5324055fd9d335f4f2a7bb3f1b1433e1adadd7bdc5ee50272f","b998db2d97135f8958613fd1d795fc58a17b8fcc452288eaec13e8c8d870d1ac","608dbaf8c8bb64f4024013e73d7107c16dba4664999a8c6e58f3e71545e48f66","57aea5315b9cf969abe5851e4e81a0c5e32fbe58c7cce2bafc852ae90ee3da93","e0974f3d3ef9014791df90ebda1c832fddbe38f9f3794d1d666045f3f789ff80","d6ce98a960f1b99a72de771fb0ba773cb202c656b8483f22d47d01d68f59ea86","806f43175b88c9a2ef89448cef56bc95c4df32a27be99748c517e5ca076919e8","5832c4ed86047766c1d4cfe2aa5780e3ab5d8d842d12664d0f71faf78c80dd7e","a43d21378510cf4ed5aad29f64f3d0fc6e0a30bb2bb81af0ea776b239a77d068","60c4cb259d73efe80ca3854715efdf93710a8b11a560a7f9741d6638280b4a80","9e3e3932fe16b9288ec8c948048aef4edf1295b09a5412630d63f4a42265370e","8bdba132259883bac06056f7bacd29a4dcf07e3f14ce89edb022fe9b78dcf9b3","5a5406107d9949d83e1225273bcee1f559bb5588942907d923165d83251a0e37","ca0ca4ca5ad4772161ee2a99741d616fea780d777549ba9f05f4a24493ab44e1","e7ee7be996db0d7cce41a85e4cae3a5fc86cf26501ad94e0a20f8b6c1c55b2d4","faa402775a4c220279f9c26074a0010f10a7f0293c506ffd0857ea45e8ba7733","b498375d015f01585269588b6221008aae6f0c0dc53ead8796ace64bdfcf62ea","08b603e3737ff32a685eefca3e7f21324b8b868f3322416cef759f8a54d234ef","34534c0ead52cc753bdfdd486430ef67f615ace54a4c0e5a3652b4116af84d6d","14d8af44e19148423a5a0817544a229e3ba324e1cd814c1d7b4ca2690baf434c","4af151ad89f73b4111666b1b3484b186227a3b5e9b5b58a89dce50e19e77407c","c06c51bb30d3440a88d2ac22fb6b44ceb96666a1bccb80db228fb13496dcf4ab","13eab2284cfa03609966dc667c201af5583067c4997f89626d3b6edce4b076a1","2df7b1d3cf08e94b7ef0515e73d9edbf5f0420d3c540808d44591115c50fb284","45de3a2d2b3810dcbb49e6d4019bf0b355c86bd675fd417247f645085d408eac","2c414bea390b189cc967e1817ecf19cbcb52baa99b4e7ee7e366a283ea94bbe0","88f94a8900946fa2176a4fb11c2bb4c23f70905c0155df827a8c4ce3d9a486fb","5eceb32bd042e20e00f6218144c50c7243c0c6a2e554d5f5dd0c4dd922a96f5f","7ffdc890e042483bb23aa2d4b7ccf78ce787eb51bdc4116554d5be4619ab42a7","ec1290d267dcefe0cb4538580eec2e6f79b3191f2d448d0b680db4722b7504e3",{"version":"f0e9582ccedc02ec2e1f1a67180ad0e1eba5229952c5e28373ed591069833beb","affectsGlobalScope":true},"ebb11e1c3b8d4a1c4300aa9b6f89990943de2e6d05589986a6b8ace43dbb4002",{"version":"aebe236025dcf017b5d9f3210c1d4414e7dd8cbd7ddc65ca383629f4b7016edc","affectsGlobalScope":true},"c1345e9955a1d7ccaed144b1cd383c9c24a1992fa97a68d5b158b0395727cc0f","88c96ac3783f83241e91e38c87b8bb5a85e22499ddf69aefdd3b5f5e9bc4a82d","012603f603e5521eae205501e1954aa94d32ca9d56879e540d586f00ca61a060","5431fea3bad6d5fc29ae7f182b87c791a3ce79371f2e2c5254459ac69395cd55","25b9a7a4d45cb70cc6fd4b0c7099fcb1b2edd161b9863151dc254f3a666ff234","c7903cf37d5658d3638de373b2d609fd900c000b83ce08365e58151a864f5a21","a89dcecfc252440d43023ff12ed08eb644b2ebac4e4cb90c933f687032787d82","b53bc9d9326b06627daf7d122094d273148d01f24a4bcfef33633686cc15ab1b","3edb9b2da9bad7c0c9a165025aa5dfa60d861dd843ae375453553bf4b2c3e8cb","e99426376c54a0a1c48031f5d8b8797fc32bc1938b5a990dd4e6fb322ec0f149","df34ff1cda313566fa3c1bab5d0fba8620b31aa53713e9dfddb39fdec5ec0461","61bc9cc16fa4bd8d7653976feb5e8dce184d300bf1b093581aa3450daeb618ca","5dcd41aeb5f7119177adab46147589a1618f2b35bd976e6c3a20ec328f58d1bd","c37a9170e6ed1a5ed36b4f2e689d552d3d08bca15c54aee90e68ce32ee0c9bdf","8c9d95d7978a39434e5ffbb773b0d09a4f37763acb47de693027852438aef873","0097e331e71cc93d99356c0643f867bfe9c626cfdc54740473e377da248940e8","f8b22870b5d6ba0e95df5699c9ef32e7d39a9e585bbbcd10c231598ded5ddc07","0ce65cf5b36034006f2b315f379179f07bd5a6027f6538c7aed4ac5be6742fc7",{"version":"dd83f0d6c94825b05a6dd1013ee54379ce6029711509876b969f872f815ef7ef","affectsGlobalScope":true},"0721418a90edc5fca466672f266ab6de12cb50a9db29998fc58765481a3c82ef","97b39f33e966bcf9762bccdaca76c94825199f3fef153ebea9bdfd3fcd2413b6","bf0ae001d0797ccbb74b3a91d88d28022e809f47f97e1b2b44b3e343b114cc95","c41eff6b8e1f91104ae974ccd2bc37c723a462b30ca1df942b2c5b0158ef1df3","2e341737e0711c12040e83047487240b1693a6774253b8142d1a0500a805b7a1","e08e97c2865750e880fea09b150a702ccfa84163382daa0221f5597185a554bf","7ec6b45fc1f5f012ac226b44d0eeaf5a0e90947431ad7c6d1f244ba080b2870d","4a1a19573176829708dc03efea508e7c364f6fa30098a5100bd9d93fc9cd38ee","8296198bc72e7ef2221b0e140738ce56004e8d1323cd08b0ac1a15295fe911b5","baeda1fadac9fd31920480b85340ab9c4266a25ad08403dee8e15fd0751101fb","12c4e8e811f4310b0dcaa3d1f843a35dc985f78941886cad4950453ad6753959","6bdede4dc73ad9816d0beeca7413ab29523f99a98441cc9fa6c614fd97fac49d","f8cf3768524d5f6fea2c7387848801e717eb911c0e63a72eabb960adc749cf09","b3e4f2772da66bac2144ca8cd63f70d211d2f970c93fcb789d03e8a046d47c93","a3586135924c800f21f739a1da43acace1acfdba124deb0871cbd6d04d7dfd1b","f74c1fae7233cd08c72bb2dc09cb0673c53fb4c3c7903ccf0094404e3f2ba6d4","4ec74fe565d13fd219884cfacf903c89477cc54148887e51c5bead4dae7dc4fd","f50f52f8fc2a5f8dfa594ff59a6273876b1734fe612e9f331ca9078fede3b304","a46d8aa9e561fb135d253e1657a0cd0f6c18377676305eb0ca28e418358b229c","5a168a15e7a423011b10da472ee3b6d92b27227c192cdaf1e09b30f58806856d","ad107fa472d28e615af522b31653e75caad12b834b257c1a83f6c4acff2de9bf",{"version":"07cfc938dfbb5a7b5ba3c363366db93d5728b0fcad1aa08a12052a1b3b72817a","affectsGlobalScope":true},"7f77304372efe3c9967e5f9ea2061f1b4bf41dc3cda3c83cdd676f2e5af6b7e6","67cf04da598e6407427a17d828e9e02d8f5ae5a8466dc73d1585073b8dc29160","fa960168e0650a987d5738376a22a1969b5dff2112b9653f9f1efddf8ba7d5bb","140b05c89cbd5fc75c4e9c1780d85dfb4ea73a2b11dd345f8f944afd002ad74f","ece46d0e5702e9c269aa71b42d02c934c10d4d24545b1d8594a8115f23a9011f","5b0df2143d96172bf207ed187627e8c58b15a1a8f97bdbc2ede942b36b39fc98","75409a3abea76ea586c6fb7f2e9f1a7dc007140e2d4ee26ab127735c4f9154e4","8e721f0a95eb26a30228d571659d2db062213bfe066a97fff7967a0c8e1d56e4","7df562288f949945cf69c21cd912100c2afedeeb7cdb219085f7f4b46cb7dde4","9d16690485ff1eb4f6fc57aebe237728fd8e03130c460919da3a35f4d9bd97f5","807bf667365224f909aed5111ac8527e8e148f37fc73c61f70c762b920fb62c7","3d87bdaed72f86b91f99401e6e04729afbb5916064778cf324b3d9b51c3a6d91","8ca837d16a31d6d01b13328ca9e6a39e424b4bf294d3b73349dccacea51be730","a9d40247ec6c68a47effbb1d8acd8df288bcee7b6bf29c17cf4161e5ef609a0c","caf38c850b924a0af08a893d06f68fcae3d5a41780b50cc6df9481beeca8e9a3","7152c46a63e7f9ac7db6cd8d4dbf85d90f051a0db60e650573fae576580cbf9a","496370c58ed054e51a68517846c28a695bf84df2873556cca7fe51e297b32420",{"version":"2708349d5a11a5c2e5f3a0765259ebe7ee00cdcc8161cb9990cb4910328442a1","affectsGlobalScope":true},"263da3252e029b3b62580b7a0c5e7bab07325a31c8af436ff60143cfda73b629","d8aab31ba8e618cc3eea10b0945de81cb93b7e8150a013a482332263b9305322","462bccdf75fcafc1ae8c30400c9425e1a4681db5d605d1a0edb4f990a54d8094","5923d8facbac6ecf7c84739a5c701a57af94a6f6648d6229a6c768cf28f0f8cb","7adecb2c3238794c378d336a8182d4c3dd2c4fa6fa1785e2797a3db550edea62","dc12dc0e5aa06f4e1a7692149b78f89116af823b9e1f1e4eae140cd3e0e674e6","1bfc6565b90c8771615cd8cfcf9b36efc0275e5e83ac7d9181307e96eb495161","8a8a96898906f065f296665e411f51010b51372fa260d5373bf9f64356703190",{"version":"6ff2ca51e2c9d88d6d904c481879b12ec0cad2a69b88e220859a52207444773b","affectsGlobalScope":true}],"options":{"composite":true,"declaration":true,"declarationMap":true,"esModuleInterop":true,"module":1,"noFallthroughCasesInSwitch":true,"noImplicitAny":true,"noImplicitReturns":true,"noUnusedLocals":true,"noUnusedParameters":true,"removeComments":true,"sourceMap":true,"strict":true,"target":6,"useUnknownInCatchVariables":false},"fileIdsList":[[133,137],[133,134,137],[68,133,134,135,136],[137,142],[68,133,137,140,141],[135,137],[135,136,137,138,139,140,141,142,146,147,148,149,150,151,152],[135,137,142],[137],[133,137,149],[133,135,137],[133,137,138,139,142,144],[153],[143],[137,139,140,144],[137,139,156],[133,142,153,158],[137,139,176,184],[136],[137,139,140],[35,133],[208,212],[175,182,191],[167,175,182],[191],[173,175,182],[175],[175,191,197],[182,191,197],[175,176,177,182,191,194,197],[177,191,194,197],[163,164,165,166,167,168,169,170,171,172,173,174,175,176,177,178,179,180,181,182,183,184,185,186,187,188,189,190,191,192,193,194,195,196,197,198,199,200,201,202,203,204],[173,175,191],[165],[196],[189,198,200],[182,191],[182],[188],[175,176,191,200],[42,158],[35,36,42,43],[44,108,109],[35,42,44],[36,44],[35,37,38,39,42,44,47,48],[37,49,63,64],[35,42,47,48,49],[35,39,42,44,46,47,48],[35,36,47,48,49],[34,50,55,62,65,66,107,110,132],[35],[36,40,41],[36,40,41,42,43,45,56,57,58,59,60,61],[36,41,42],[36],[35,36,41,42,44,57],[42],[36,42,43],[40,42],[49,63],[35,37,38,39,42,47],[35,42,45,48],[37,46,47,48,51,52,53,54],[48],[35,39,42,44,46,48],[44,47],[35,42,46,47,48,60],[44],[35,42,48],[36,42,47,58],[47,111],[44,48],[42,47],[47],[35,45],[35,42],[42,47,48],[67,111,112,113,114,115,116,117,118,119,120,121,122,123,124,125,126,127,128,129,130,131],[47,48],[39,42],[35,39,42,48],[35,39,42],[35,42,44,46,47,48,60,67],[68,69,70,71,72,73,74,75,76,77,78,79,80,81,82,83,84,85,86,87,88,89,90,91,92,93,94,95,96,97,98,99,100,101,102,103,104,105,106],[60,68],[68],[35,42,44,47,67,68],[206,209],[206,209,210,211],[208],[207]],"referencedMap":[[139,1],[135,2],[137,3],[141,1],[152,4],[142,5],[156,6],[153,7],[149,8],[140,1],[138,9],[151,10],[150,11],[147,9],[146,1],[145,12],[154,13],[144,14],[155,15],[157,16],[159,17],[160,18],[161,19],[162,20],[134,21],[213,22],[167,23],[168,24],[171,25],[172,26],[174,27],[175,27],[176,28],[177,29],[178,30],[179,31],[205,32],[180,27],[182,33],[185,34],[186,35],[189,27],[190,36],[191,27],[194,37],[196,38],[197,39],[199,25],[202,40],[203,25],[158,41],[44,42],[110,43],[109,44],[108,45],[49,46],[65,47],[63,48],[64,49],[50,50],[133,51],[37,52],[42,53],[62,54],[57,55],[43,56],[58,57],[61,58],[56,59],[59,58],[60,60],[66,61],[48,62],[46,63],[55,64],[52,65],[51,65],[47,66],[53,67],[67,68],[129,69],[123,70],[116,71],[115,72],[124,73],[125,58],[117,74],[130,75],[111,76],[112,77],[113,78],[132,79],[114,72],[118,75],[119,80],[126,81],[127,56],[128,80],[120,78],[131,58],[121,82],[122,83],[68,84],[107,85],[71,86],[72,86],[73,86],[74,86],[75,86],[76,86],[77,86],[78,86],[97,86],[79,86],[80,86],[81,86],[82,86],[83,86],[84,86],[104,86],[85,86],[86,86],[87,86],[102,86],[88,86],[103,86],[89,86],[100,86],[101,86],[90,86],[91,86],[92,86],[98,86],[99,86],[93,86],[94,86],[95,86],[96,86],[105,86],[106,86],[70,87],[69,88],[210,89],[212,90],[211,89],[209,91],[208,92]],"exportedModulesMap":[[139,1],[135,2],[137,3],[141,1],[152,4],[142,5],[156,6],[153,7],[149,8],[140,1],[138,9],[151,10],[150,11],[147,9],[146,1],[145,12],[154,13],[144,14],[155,15],[157,16],[159,17],[160,18],[161,19],[162,20],[134,21],[213,22],[167,23],[168,24],[171,25],[172,26],[174,27],[175,27],[176,28],[177,29],[178,30],[179,31],[205,32],[180,27],[182,33],[185,34],[186,35],[189,27],[190,36],[191,27],[194,37],[196,38],[197,39],[199,25],[202,40],[203,25],[158,41],[44,42],[110,43],[109,44],[108,45],[49,46],[65,47],[63,48],[64,49],[50,50],[133,51],[37,52],[42,53],[62,54],[57,55],[43,56],[58,57],[61,58],[56,59],[59,58],[60,60],[66,61],[48,62],[46,63],[55,64],[52,65],[51,65],[47,66],[53,67],[67,68],[129,69],[123,70],[116,71],[115,72],[124,73],[125,58],[117,74],[130,75],[111,76],[112,77],[113,78],[132,79],[114,72],[118,75],[119,80],[126,81],[127,56],[128,80],[120,78],[131,58],[121,82],[122,83],[68,84],[107,85],[71,86],[72,86],[73,86],[74,86],[75,86],[76,86],[77,86],[78,86],[97,86],[79,86],[80,86],[81,86],[82,86],[83,86],[84,86],[104,86],[85,86],[86,86],[87,86],[102,86],[88,86],[103,86],[89,86],[100,86],[101,86],[90,86],[91,86],[92,86],[98,86],[99,86],[93,86],[94,86],[95,86],[96,86],[105,86],[106,86],[70,87],[69,88],[210,89],[212,90],[211,89],[209,91],[208,92]],"semanticDiagnosticsPerFile":[139,135,148,137,141,152,142,156,153,149,140,138,151,150,147,136,146,145,154,144,143,155,157,159,160,161,162,134,213,163,165,166,167,168,169,170,171,172,173,174,175,176,164,204,177,178,179,205,180,181,182,183,184,185,186,187,188,189,190,191,192,193,194,195,196,197,198,199,200,201,202,203,158,44,110,109,108,49,65,63,64,50,133,35,39,37,38,42,45,62,40,57,43,58,61,56,59,36,41,60,66,54,48,46,55,52,51,47,53,67,129,123,116,115,124,125,117,130,111,112,113,132,114,118,119,126,127,128,120,131,121,122,68,107,71,72,73,74,75,76,77,78,97,79,80,81,82,83,84,104,85,86,87,102,88,103,89,100,101,90,91,92,98,99,93,94,95,96,105,106,70,69,34,206,210,212,211,209,208,207,7,9,8,2,10,11,12,13,14,15,16,17,3,4,21,18,19,20,22,23,24,5,25,26,27,28,6,29,30,31,32,1,33],"affectedFilesPendingEmit":[[139,1],[135,1],[148,1],[137,1],[141,1],[152,1],[142,1],[156,1],[153,1],[149,1],[140,1],[138,1],[151,1],[150,1],[147,1],[136,1],[146,1],[145,1],[154,1],[144,1],[143,1],[155,1],[157,1],[159,1],[160,1],[161,1],[162,1],[134,1],[213,1],[163,1],[165,1],[166,1],[167,1],[168,1],[169,1],[170,1],[171,1],[172,1],[173,1],[174,1],[175,1],[176,1],[164,1],[204,1],[177,1],[178,1],[179,1],[205,1],[180,1],[181,1],[182,1],[183,1],[184,1],[185,1],[186,1],[187,1],[188,1],[189,1],[190,1],[191,1],[192,1],[193,1],[194,1],[195,1],[196,1],[197,1],[198,1],[199,1],[200,1],[201,1],[202,1],[203,1],[158,1],[44,1],[110,1],[109,1],[108,1],[49,1],[65,1],[63,1],[64,1],[50,1],[133,1],[35,1],[39,1],[37,1],[38,1],[42,1],[45,1],[62,1],[40,1],[57,1],[43,1],[58,1],[61,1],[56,1],[59,1],[36,1],[41,1],[60,1],[66,1],[54,1],[48,1],[46,1],[55,1],[52,1],[51,1],[47,1],[53,1],[67,1],[129,1],[123,1],[116,1],[115,1],[124,1],[125,1],[117,1],[130,1],[111,1],[112,1],[113,1],[132,1],[114,1],[118,1],[119,1],[126,1],[127,1],[128,1],[120,1],[131,1],[121,1],[122,1],[68,1],[107,1],[71,1],[72,1],[73,1],[74,1],[75,1],[76,1],[77,1],[78,1],[97,1],[79,1],[80,1],[81,1],[82,1],[83,1],[84,1],[104,1],[85,1],[86,1],[87,1],[102,1],[88,1],[103,1],[89,1],[100,1],[101,1],[90,1],[91,1],[92,1],[98,1],[99,1],[93,1],[94,1],[95,1],[96,1],[105,1],[106,1],[70,1],[69,1],[34,1],[206,1],[210,1],[212,1],[211,1],[209,1],[208,1],[207,1],[2,1],[3,1],[4,1],[5,1],[6,1]]},"version":"4.5.4"}