From f4129ab8395366e7da549e3fcbac0a2380789868 Mon Sep 17 00:00:00 2001 From: Andrew Branch Date: Wed, 21 Jun 2023 22:44:58 -0700 Subject: [PATCH 1/6] Only issue UnexpectedModuleSyntax in node16 --- .../src/checks/resolutionBasedFileProblems.ts | 60 ++++++++++--------- 1 file changed, 32 insertions(+), 28 deletions(-) diff --git a/packages/core/src/checks/resolutionBasedFileProblems.ts b/packages/core/src/checks/resolutionBasedFileProblems.ts index 9c9e20f..9526b6c 100644 --- a/packages/core/src/checks/resolutionBasedFileProblems.ts +++ b/packages/core/src/checks/resolutionBasedFileProblems.ts @@ -62,34 +62,38 @@ export function getResolutionBasedFileProblems( // try to do a ts->js extension substitution and assume that's a // visible JS file if it exists. // - // TODO: this should maybe only be issued in node16 - if (ts.hasJSFileExtension(fileName)) { - const expectedModuleKind = host.getModuleKindForFile(fileName, resolutionOption); - const syntaxImpliedModuleKind = sourceFile.externalModuleIndicator - ? ts.ModuleKind.ESNext - : sourceFile.commonJsModuleIndicator - ? ts.ModuleKind.CommonJS - : undefined; - if ( - expectedModuleKind !== undefined && - syntaxImpliedModuleKind !== undefined && - expectedModuleKind.detectedKind !== syntaxImpliedModuleKind - ) { - const syntax = sourceFile.externalModuleIndicator ?? sourceFile.commonJsModuleIndicator; - result.push({ - kind: "UnexpectedModuleSyntax", - resolutionOption, - syntax: syntaxImpliedModuleKind, - fileName, - range: - typeof syntax === "object" - ? { - pos: syntax.getStart(sourceFile), - end: syntax.end, - } - : undefined, - moduleKind: expectedModuleKind, - }); + // Actually, we probably want to check the relative directory relationship + // between an entrypoint resolution and implementationResolution as the basis + // for looking for a JS file. + if (resolutionOption === "node16") { + if (ts.hasJSFileExtension(fileName)) { + const expectedModuleKind = host.getModuleKindForFile(fileName, resolutionOption); + const syntaxImpliedModuleKind = sourceFile.externalModuleIndicator + ? ts.ModuleKind.ESNext + : sourceFile.commonJsModuleIndicator + ? ts.ModuleKind.CommonJS + : undefined; + if ( + expectedModuleKind !== undefined && + syntaxImpliedModuleKind !== undefined && + expectedModuleKind.detectedKind !== syntaxImpliedModuleKind + ) { + const syntax = sourceFile.externalModuleIndicator ?? sourceFile.commonJsModuleIndicator; + result.push({ + kind: "UnexpectedModuleSyntax", + resolutionOption, + syntax: syntaxImpliedModuleKind, + fileName, + range: + typeof syntax === "object" + ? { + pos: syntax.getStart(sourceFile), + end: syntax.end, + } + : undefined, + moduleKind: expectedModuleKind, + }); + } } } } From 8b759adc5240e9e37ce5868bb0f91449675bcfad Mon Sep 17 00:00:00 2001 From: Andrew Branch Date: Wed, 21 Jun 2023 23:12:05 -0700 Subject: [PATCH 2/6] Fix trace loading --- package-lock.json | 55 +- package.json | 2 +- packages/core/package.json | 4 +- packages/core/src/multiCompilerHost.ts | 26 +- .../@reduxjs__toolkit@2.0.0-beta.0.tgz.md | 788 +++++++++++++++++- packages/core/test/snapshots/vue@3.3.4.tgz.md | 10 +- 6 files changed, 810 insertions(+), 75 deletions(-) diff --git a/package-lock.json b/package-lock.json index d8ccf23..2ab1d35 100644 --- a/package-lock.json +++ b/package-lock.json @@ -13,7 +13,7 @@ "@changesets/cli": "^2.26.1", "@types/node": "^18.11.18", "prettier": "^2.8.3", - "typescript": "^5.0.0-dev.20230207" + "typescript": "^5.1.3" } }, "node_modules/@andrewbranch/json-view": { @@ -1256,9 +1256,9 @@ }, "node_modules/@types/ts-expose-internals": { "name": "ts-expose-internals", - "version": "4.9.4", - "resolved": "https://registry.npmjs.org/ts-expose-internals/-/ts-expose-internals-4.9.4.tgz", - "integrity": "sha512-qHR+gMYDv45VSikUwg7CG8NXXXED2EspZ/WnZN1eQJEIlyzUHw3YIrzrKv47NQCaXKGvp01kZFlQ3y8BCGTahw==", + "version": "5.1.3", + "resolved": "https://registry.npmjs.org/ts-expose-internals/-/ts-expose-internals-5.1.3.tgz", + "integrity": "sha512-tVuLmVan5CYgpZt22j5ziuxQoVEjuwUGG2d9vtEtl1YlNLr4jnblrU2S87vk7vA6MV/k43/voVBbq/4BStx2mQ==", "dev": true }, "node_modules/@types/validate-npm-package-name": { @@ -3984,15 +3984,15 @@ } }, "node_modules/typescript": { - "version": "5.0.4", - "resolved": "https://registry.npmjs.org/typescript/-/typescript-5.0.4.tgz", - "integrity": "sha512-cW9T5W9xY37cc+jfEnaUvX91foxtHkza3Nw3wkoF4sSlKn0MONdkdEndig/qPBWXNkmplh3NzayQzCiHM4/hqw==", + "version": "5.1.3", + "resolved": "https://registry.npmjs.org/typescript/-/typescript-5.1.3.tgz", + "integrity": "sha512-XH627E9vkeqhlZFQuL+UsyAXEnibT0kWR2FWONlr4sTjvxyJYnyefgrkyECLzM5NenmKzRAy2rR/OlYLA1HkZw==", "bin": { "tsc": "bin/tsc", "tsserver": "bin/tsserver" }, "engines": { - "node": ">=12.20" + "node": ">=14.17" } }, "node_modules/unbox-primitive": { @@ -4680,19 +4680,6 @@ "integrity": "sha512-JJulVEQXmiY9Px5axXHeYGLSjhkZEnD+MDPDGbCbIAbMslkKwmygtZFy1X6s/075Yo94sf8GuSlFfPzysQrWZQ==", "dev": true }, - "packages/cli/node_modules/typescript": { - "version": "5.0.0-dev.20230207", - "resolved": "https://registry.npmjs.org/typescript/-/typescript-5.0.0-dev.20230207.tgz", - "integrity": "sha512-MBas9Ly9cx5yODCQZFKjteVtRa8//VshqSThNpX8D3XxPQEG+yBhtizEUPwrc2kLx33xnr7qGABEifZeepuKwg==", - "dev": true, - "bin": { - "tsc": "bin/tsc", - "tsserver": "bin/tsserver" - }, - "engines": { - "node": ">=4.2.0" - } - }, "packages/core": { "name": "@arethetypeswrong/core", "version": "0.2.0", @@ -4701,12 +4688,12 @@ "@andrewbranch/untar.js": "^1.0.0", "fetch-ponyfill": "^7.1.0", "fflate": "^0.7.4", - "typescript": "^5.0.0-dev.20230207", + "typescript": "^5.1.3", "validate-npm-package-name": "^5.0.0" }, "devDependencies": { "@types/node": "^18.15.11", - "@types/ts-expose-internals": "npm:ts-expose-internals@4.9.4", + "@types/ts-expose-internals": "npm:ts-expose-internals@5.1.3", "@types/validate-npm-package-name": "^4.0.0" } }, @@ -4761,12 +4748,6 @@ "resolved": "https://registry.npmjs.org/@types/node/-/node-20.2.5.tgz", "integrity": "sha512-JJulVEQXmiY9Px5axXHeYGLSjhkZEnD+MDPDGbCbIAbMslkKwmygtZFy1X6s/075Yo94sf8GuSlFfPzysQrWZQ==", "dev": true - }, - "typescript": { - "version": "5.0.0-dev.20230207", - "resolved": "https://registry.npmjs.org/typescript/-/typescript-5.0.0-dev.20230207.tgz", - "integrity": "sha512-MBas9Ly9cx5yODCQZFKjteVtRa8//VshqSThNpX8D3XxPQEG+yBhtizEUPwrc2kLx33xnr7qGABEifZeepuKwg==", - "dev": true } } }, @@ -4775,11 +4756,11 @@ "requires": { "@andrewbranch/untar.js": "^1.0.0", "@types/node": "^18.15.11", - "@types/ts-expose-internals": "npm:ts-expose-internals@4.9.4", + "@types/ts-expose-internals": "npm:ts-expose-internals@5.1.3", "@types/validate-npm-package-name": "^4.0.0", "fetch-ponyfill": "^7.1.0", "fflate": "^0.7.4", - "typescript": "^5.0.0-dev.20230207", + "typescript": "^5.1.3", "validate-npm-package-name": "^5.0.0" } }, @@ -5719,9 +5700,9 @@ "dev": true }, "@types/ts-expose-internals": { - "version": "npm:ts-expose-internals@4.9.4", - "resolved": "https://registry.npmjs.org/ts-expose-internals/-/ts-expose-internals-4.9.4.tgz", - "integrity": "sha512-qHR+gMYDv45VSikUwg7CG8NXXXED2EspZ/WnZN1eQJEIlyzUHw3YIrzrKv47NQCaXKGvp01kZFlQ3y8BCGTahw==", + "version": "npm:ts-expose-internals@5.1.3", + "resolved": "https://registry.npmjs.org/ts-expose-internals/-/ts-expose-internals-5.1.3.tgz", + "integrity": "sha512-tVuLmVan5CYgpZt22j5ziuxQoVEjuwUGG2d9vtEtl1YlNLr4jnblrU2S87vk7vA6MV/k43/voVBbq/4BStx2mQ==", "dev": true }, "@types/validate-npm-package-name": { @@ -7709,9 +7690,9 @@ } }, "typescript": { - "version": "5.0.4", - "resolved": "https://registry.npmjs.org/typescript/-/typescript-5.0.4.tgz", - "integrity": "sha512-cW9T5W9xY37cc+jfEnaUvX91foxtHkza3Nw3wkoF4sSlKn0MONdkdEndig/qPBWXNkmplh3NzayQzCiHM4/hqw==" + "version": "5.1.3", + "resolved": "https://registry.npmjs.org/typescript/-/typescript-5.1.3.tgz", + "integrity": "sha512-XH627E9vkeqhlZFQuL+UsyAXEnibT0kWR2FWONlr4sTjvxyJYnyefgrkyECLzM5NenmKzRAy2rR/OlYLA1HkZw==" }, "unbox-primitive": { "version": "1.0.2", diff --git a/package.json b/package.json index 819b577..d1894a7 100644 --- a/package.json +++ b/package.json @@ -21,7 +21,7 @@ "@changesets/cli": "^2.26.1", "@types/node": "^18.11.18", "prettier": "^2.8.3", - "typescript": "^5.0.0-dev.20230207" + "typescript": "^5.1.3" }, "volta": { "node": "19.8.1" diff --git a/packages/core/package.json b/packages/core/package.json index 2a90abe..50900e5 100644 --- a/packages/core/package.json +++ b/packages/core/package.json @@ -52,12 +52,12 @@ "@andrewbranch/untar.js": "^1.0.0", "fetch-ponyfill": "^7.1.0", "fflate": "^0.7.4", - "typescript": "^5.0.0-dev.20230207", + "typescript": "^5.1.3", "validate-npm-package-name": "^5.0.0" }, "devDependencies": { "@types/node": "^18.15.11", - "@types/ts-expose-internals": "npm:ts-expose-internals@4.9.4", + "@types/ts-expose-internals": "npm:ts-expose-internals@5.1.3", "@types/validate-npm-package-name": "^4.0.0" }, "volta": { diff --git a/packages/core/src/multiCompilerHost.ts b/packages/core/src/multiCompilerHost.ts index a7b9450..f0bd8f7 100644 --- a/packages/core/src/multiCompilerHost.ts +++ b/packages/core/src/multiCompilerHost.ts @@ -59,7 +59,6 @@ export function createMultiCompilerHost(fs: FS): MultiCompilerHost { traceResolution: true, }, bundler: { - // @ts-expect-error moduleResolution: ts.ModuleResolutionKind.Bundler, module: ts.ModuleKind.ESNext, target: ts.ScriptTarget.Latest, @@ -182,15 +181,22 @@ export function createMultiCompilerHost(fs: FS): MultiCompilerHost { ); const trace = traceCollector.read(); const moduleKey = `${resolutionMode ?? 1}:${moduleName}`; - (traceCache[moduleResolution][containingFile] ??= {})[moduleKey] = trace; + if (!traceCache[moduleResolution][containingFile]?.[moduleKey]) { + (traceCache[moduleResolution][containingFile] ??= {})[moduleKey] = trace; + } return { resolution, trace, }; } - function getTrace(moduleResolution: ResolutionOption, fromFileName: string, key: string): string[] | undefined { - return traceCache[moduleResolution][fromFileName]?.[key]; + function getTrace( + moduleResolution: ResolutionOption, + fromFileName: string, + moduleSpecifier: string, + resolutionMode: ts.ModuleKind.ESNext | ts.ModuleKind.CommonJS + ): string[] | undefined { + return traceCache[moduleResolution][fromFileName]?.[`${resolutionMode ?? 1}:${moduleSpecifier}`]; } function createProgram(moduleResolution: ResolutionOption, rootNames: string[]): ts.Program { @@ -231,6 +237,18 @@ export function createMultiCompilerHost(fs: FS): MultiCompilerHost { useCaseSensitiveFileNames, getNewLine, trace: traceCollector.trace, + resolveModuleNameLiterals(moduleLiterals, containingFile, _redirectedReference, options, containingSourceFile) { + return moduleLiterals.map( + (literal) => + resolveModuleName( + literal.text, + containingFile, + moduleResolution, + ts.getModeForUsageLocation(containingSourceFile, literal), + options.noDtsResolution + ).resolution + ); + }, }; } diff --git a/packages/core/test/snapshots/@reduxjs__toolkit@2.0.0-beta.0.tgz.md b/packages/core/test/snapshots/@reduxjs__toolkit@2.0.0-beta.0.tgz.md index 7ed9712..88d0157 100644 --- a/packages/core/test/snapshots/@reduxjs__toolkit@2.0.0-beta.0.tgz.md +++ b/packages/core/test/snapshots/@reduxjs__toolkit@2.0.0-beta.0.tgz.md @@ -32,7 +32,40 @@ "moduleSpecifier": "@reduxjs/toolkit/dist/tsHelpers", "pos": 153, "end": 187, - "resolutionMode": 1 + "resolutionMode": 1, + "trace": [ + "======== Resolving module '@reduxjs/toolkit/dist/tsHelpers' from '/node_modules/@reduxjs/toolkit/dist/dynamicMiddleware/react/index.d.ts'. ========", + "Explicitly specified module resolution kind: 'Node16'.", + "Resolving in CJS mode with conditions 'require', 'types', 'node'.", + "File '/node_modules/@reduxjs/toolkit/dist/dynamicMiddleware/react/package.json' does not exist according to earlier cached lookups.", + "File '/node_modules/@reduxjs/toolkit/dist/package.json' does not exist according to earlier cached lookups.", + "File '/node_modules/@reduxjs/toolkit/package.json' exists according to earlier cached lookups.", + "Export specifier './dist/tsHelpers' does not exist in package.json scope at path '/node_modules/@reduxjs/toolkit'.", + "Export specifier './dist/tsHelpers' does not exist in package.json scope at path '/node_modules/@reduxjs/toolkit'.", + "Loading module '@reduxjs/toolkit/dist/tsHelpers' from 'node_modules' folder, target file types: TypeScript, JavaScript, Declaration, JSON.", + "Directory '/node_modules/@reduxjs/toolkit/dist/dynamicMiddleware/react/node_modules' does not exist, skipping all lookups in it.", + "Scoped package detected, looking in 'reduxjs__toolkit/dist/tsHelpers'", + "Directory '/node_modules/@reduxjs/toolkit/dist/dynamicMiddleware/node_modules' does not exist, skipping all lookups in it.", + "Scoped package detected, looking in 'reduxjs__toolkit/dist/tsHelpers'", + "Directory '/node_modules/@reduxjs/toolkit/dist/node_modules' does not exist, skipping all lookups in it.", + "Scoped package detected, looking in 'reduxjs__toolkit/dist/tsHelpers'", + "Directory '/node_modules/@reduxjs/toolkit/node_modules' does not exist, skipping all lookups in it.", + "Scoped package detected, looking in 'reduxjs__toolkit/dist/tsHelpers'", + "Directory '/node_modules/@reduxjs/node_modules' does not exist, skipping all lookups in it.", + "Scoped package detected, looking in 'reduxjs__toolkit/dist/tsHelpers'", + "File '/node_modules/@reduxjs/toolkit/package.json' exists according to earlier cached lookups.", + "Export specifier './dist/tsHelpers' does not exist in package.json scope at path '/node_modules/@reduxjs/toolkit'.", + "Directory '/node_modules/@types' does not exist, skipping all lookups in it.", + "Scoped package detected, looking in 'reduxjs__toolkit/dist/tsHelpers'", + "Directory '/node_modules/@reduxjs/toolkit/dist/dynamicMiddleware/react/node_modules' does not exist, skipping all lookups in it.", + "Directory '/node_modules/@reduxjs/toolkit/dist/dynamicMiddleware/node_modules' does not exist, skipping all lookups in it.", + "Directory '/node_modules/@reduxjs/toolkit/dist/node_modules' does not exist, skipping all lookups in it.", + "Directory '/node_modules/@reduxjs/toolkit/node_modules' does not exist, skipping all lookups in it.", + "Directory '/node_modules/@reduxjs/node_modules' does not exist, skipping all lookups in it.", + "File '/node_modules/@reduxjs/toolkit/package.json' exists according to earlier cached lookups.", + "Export specifier './dist/tsHelpers' does not exist in package.json scope at path '/node_modules/@reduxjs/toolkit'.", + "======== Module name '@reduxjs/toolkit/dist/tsHelpers' was not resolved. ========" + ] } }, { @@ -43,7 +76,40 @@ "moduleSpecifier": "@reduxjs/toolkit/dist/dynamicMiddleware/types", "pos": 379, "end": 427, - "resolutionMode": 1 + "resolutionMode": 1, + "trace": [ + "======== Resolving module '@reduxjs/toolkit/dist/dynamicMiddleware/types' from '/node_modules/@reduxjs/toolkit/dist/dynamicMiddleware/react/index.d.ts'. ========", + "Explicitly specified module resolution kind: 'Node16'.", + "Resolving in CJS mode with conditions 'require', 'types', 'node'.", + "File '/node_modules/@reduxjs/toolkit/dist/dynamicMiddleware/react/package.json' does not exist according to earlier cached lookups.", + "File '/node_modules/@reduxjs/toolkit/dist/package.json' does not exist according to earlier cached lookups.", + "File '/node_modules/@reduxjs/toolkit/package.json' exists according to earlier cached lookups.", + "Export specifier './dist/dynamicMiddleware/types' does not exist in package.json scope at path '/node_modules/@reduxjs/toolkit'.", + "Export specifier './dist/dynamicMiddleware/types' does not exist in package.json scope at path '/node_modules/@reduxjs/toolkit'.", + "Loading module '@reduxjs/toolkit/dist/dynamicMiddleware/types' from 'node_modules' folder, target file types: TypeScript, JavaScript, Declaration, JSON.", + "Directory '/node_modules/@reduxjs/toolkit/dist/dynamicMiddleware/react/node_modules' does not exist, skipping all lookups in it.", + "Scoped package detected, looking in 'reduxjs__toolkit/dist/dynamicMiddleware/types'", + "Directory '/node_modules/@reduxjs/toolkit/dist/dynamicMiddleware/node_modules' does not exist, skipping all lookups in it.", + "Scoped package detected, looking in 'reduxjs__toolkit/dist/dynamicMiddleware/types'", + "Directory '/node_modules/@reduxjs/toolkit/dist/node_modules' does not exist, skipping all lookups in it.", + "Scoped package detected, looking in 'reduxjs__toolkit/dist/dynamicMiddleware/types'", + "Directory '/node_modules/@reduxjs/toolkit/node_modules' does not exist, skipping all lookups in it.", + "Scoped package detected, looking in 'reduxjs__toolkit/dist/dynamicMiddleware/types'", + "Directory '/node_modules/@reduxjs/node_modules' does not exist, skipping all lookups in it.", + "Scoped package detected, looking in 'reduxjs__toolkit/dist/dynamicMiddleware/types'", + "File '/node_modules/@reduxjs/toolkit/package.json' exists according to earlier cached lookups.", + "Export specifier './dist/dynamicMiddleware/types' does not exist in package.json scope at path '/node_modules/@reduxjs/toolkit'.", + "Directory '/node_modules/@types' does not exist, skipping all lookups in it.", + "Scoped package detected, looking in 'reduxjs__toolkit/dist/dynamicMiddleware/types'", + "Directory '/node_modules/@reduxjs/toolkit/dist/dynamicMiddleware/react/node_modules' does not exist, skipping all lookups in it.", + "Directory '/node_modules/@reduxjs/toolkit/dist/dynamicMiddleware/node_modules' does not exist, skipping all lookups in it.", + "Directory '/node_modules/@reduxjs/toolkit/dist/node_modules' does not exist, skipping all lookups in it.", + "Directory '/node_modules/@reduxjs/toolkit/node_modules' does not exist, skipping all lookups in it.", + "Directory '/node_modules/@reduxjs/node_modules' does not exist, skipping all lookups in it.", + "File '/node_modules/@reduxjs/toolkit/package.json' exists according to earlier cached lookups.", + "Export specifier './dist/dynamicMiddleware/types' does not exist in package.json scope at path '/node_modules/@reduxjs/toolkit'.", + "======== Module name '@reduxjs/toolkit/dist/dynamicMiddleware/types' was not resolved. ========" + ] } }, { @@ -54,7 +120,41 @@ "moduleSpecifier": "@reduxjs/toolkit/dist/query/core/apiState", "pos": 157, "end": 201, - "resolutionMode": 1 + "resolutionMode": 1, + "trace": [ + "======== Resolving module '@reduxjs/toolkit/dist/query/core/apiState' from '/node_modules/@reduxjs/toolkit/dist/query/react/buildHooks.d.ts'. ========", + "Explicitly specified module resolution kind: 'Node16'.", + "Resolving in CJS mode with conditions 'require', 'types', 'node'.", + "File '/node_modules/@reduxjs/toolkit/dist/query/react/package.json' does not exist according to earlier cached lookups.", + "File '/node_modules/@reduxjs/toolkit/dist/query/package.json' does not exist according to earlier cached lookups.", + "File '/node_modules/@reduxjs/toolkit/dist/package.json' does not exist according to earlier cached lookups.", + "File '/node_modules/@reduxjs/toolkit/package.json' exists according to earlier cached lookups.", + "Export specifier './dist/query/core/apiState' does not exist in package.json scope at path '/node_modules/@reduxjs/toolkit'.", + "Export specifier './dist/query/core/apiState' does not exist in package.json scope at path '/node_modules/@reduxjs/toolkit'.", + "Loading module '@reduxjs/toolkit/dist/query/core/apiState' from 'node_modules' folder, target file types: TypeScript, JavaScript, Declaration, JSON.", + "Directory '/node_modules/@reduxjs/toolkit/dist/query/react/node_modules' does not exist, skipping all lookups in it.", + "Scoped package detected, looking in 'reduxjs__toolkit/dist/query/core/apiState'", + "Directory '/node_modules/@reduxjs/toolkit/dist/query/node_modules' does not exist, skipping all lookups in it.", + "Scoped package detected, looking in 'reduxjs__toolkit/dist/query/core/apiState'", + "Directory '/node_modules/@reduxjs/toolkit/dist/node_modules' does not exist, skipping all lookups in it.", + "Scoped package detected, looking in 'reduxjs__toolkit/dist/query/core/apiState'", + "Directory '/node_modules/@reduxjs/toolkit/node_modules' does not exist, skipping all lookups in it.", + "Scoped package detected, looking in 'reduxjs__toolkit/dist/query/core/apiState'", + "Directory '/node_modules/@reduxjs/node_modules' does not exist, skipping all lookups in it.", + "Scoped package detected, looking in 'reduxjs__toolkit/dist/query/core/apiState'", + "File '/node_modules/@reduxjs/toolkit/package.json' exists according to earlier cached lookups.", + "Export specifier './dist/query/core/apiState' does not exist in package.json scope at path '/node_modules/@reduxjs/toolkit'.", + "Directory '/node_modules/@types' does not exist, skipping all lookups in it.", + "Scoped package detected, looking in 'reduxjs__toolkit/dist/query/core/apiState'", + "Directory '/node_modules/@reduxjs/toolkit/dist/query/react/node_modules' does not exist, skipping all lookups in it.", + "Directory '/node_modules/@reduxjs/toolkit/dist/query/node_modules' does not exist, skipping all lookups in it.", + "Directory '/node_modules/@reduxjs/toolkit/dist/node_modules' does not exist, skipping all lookups in it.", + "Directory '/node_modules/@reduxjs/toolkit/node_modules' does not exist, skipping all lookups in it.", + "Directory '/node_modules/@reduxjs/node_modules' does not exist, skipping all lookups in it.", + "File '/node_modules/@reduxjs/toolkit/package.json' exists according to earlier cached lookups.", + "Export specifier './dist/query/core/apiState' does not exist in package.json scope at path '/node_modules/@reduxjs/toolkit'.", + "======== Module name '@reduxjs/toolkit/dist/query/core/apiState' was not resolved. ========" + ] } }, { @@ -65,7 +165,12 @@ "moduleSpecifier": "@reduxjs/toolkit/dist/query/endpointDefinitions", "pos": 311, "end": 361, - "resolutionMode": 1 + "resolutionMode": 1, + "trace": [ + "======== Resolving module '@reduxjs/toolkit/dist/query/endpointDefinitions' from '/node_modules/@reduxjs/toolkit/dist/query/react/buildHooks.d.ts'. ========", + "Resolution for module '@reduxjs/toolkit/dist/query/endpointDefinitions' was found in cache from location '/node_modules/@reduxjs/toolkit/dist/query/react'.", + "======== Module name '@reduxjs/toolkit/dist/query/endpointDefinitions' was not resolved. ========" + ] } }, { @@ -76,7 +181,41 @@ "moduleSpecifier": "@reduxjs/toolkit/dist/query/core/buildSelectors", "pos": 424, "end": 474, - "resolutionMode": 1 + "resolutionMode": 1, + "trace": [ + "======== Resolving module '@reduxjs/toolkit/dist/query/core/buildSelectors' from '/node_modules/@reduxjs/toolkit/dist/query/react/buildHooks.d.ts'. ========", + "Explicitly specified module resolution kind: 'Node16'.", + "Resolving in CJS mode with conditions 'require', 'types', 'node'.", + "File '/node_modules/@reduxjs/toolkit/dist/query/react/package.json' does not exist according to earlier cached lookups.", + "File '/node_modules/@reduxjs/toolkit/dist/query/package.json' does not exist according to earlier cached lookups.", + "File '/node_modules/@reduxjs/toolkit/dist/package.json' does not exist according to earlier cached lookups.", + "File '/node_modules/@reduxjs/toolkit/package.json' exists according to earlier cached lookups.", + "Export specifier './dist/query/core/buildSelectors' does not exist in package.json scope at path '/node_modules/@reduxjs/toolkit'.", + "Export specifier './dist/query/core/buildSelectors' does not exist in package.json scope at path '/node_modules/@reduxjs/toolkit'.", + "Loading module '@reduxjs/toolkit/dist/query/core/buildSelectors' from 'node_modules' folder, target file types: TypeScript, JavaScript, Declaration, JSON.", + "Directory '/node_modules/@reduxjs/toolkit/dist/query/react/node_modules' does not exist, skipping all lookups in it.", + "Scoped package detected, looking in 'reduxjs__toolkit/dist/query/core/buildSelectors'", + "Directory '/node_modules/@reduxjs/toolkit/dist/query/node_modules' does not exist, skipping all lookups in it.", + "Scoped package detected, looking in 'reduxjs__toolkit/dist/query/core/buildSelectors'", + "Directory '/node_modules/@reduxjs/toolkit/dist/node_modules' does not exist, skipping all lookups in it.", + "Scoped package detected, looking in 'reduxjs__toolkit/dist/query/core/buildSelectors'", + "Directory '/node_modules/@reduxjs/toolkit/node_modules' does not exist, skipping all lookups in it.", + "Scoped package detected, looking in 'reduxjs__toolkit/dist/query/core/buildSelectors'", + "Directory '/node_modules/@reduxjs/node_modules' does not exist, skipping all lookups in it.", + "Scoped package detected, looking in 'reduxjs__toolkit/dist/query/core/buildSelectors'", + "File '/node_modules/@reduxjs/toolkit/package.json' exists according to earlier cached lookups.", + "Export specifier './dist/query/core/buildSelectors' does not exist in package.json scope at path '/node_modules/@reduxjs/toolkit'.", + "Directory '/node_modules/@types' does not exist, skipping all lookups in it.", + "Scoped package detected, looking in 'reduxjs__toolkit/dist/query/core/buildSelectors'", + "Directory '/node_modules/@reduxjs/toolkit/dist/query/react/node_modules' does not exist, skipping all lookups in it.", + "Directory '/node_modules/@reduxjs/toolkit/dist/query/node_modules' does not exist, skipping all lookups in it.", + "Directory '/node_modules/@reduxjs/toolkit/dist/node_modules' does not exist, skipping all lookups in it.", + "Directory '/node_modules/@reduxjs/toolkit/node_modules' does not exist, skipping all lookups in it.", + "Directory '/node_modules/@reduxjs/node_modules' does not exist, skipping all lookups in it.", + "File '/node_modules/@reduxjs/toolkit/package.json' exists according to earlier cached lookups.", + "Export specifier './dist/query/core/buildSelectors' does not exist in package.json scope at path '/node_modules/@reduxjs/toolkit'.", + "======== Module name '@reduxjs/toolkit/dist/query/core/buildSelectors' was not resolved. ========" + ] } }, { @@ -87,7 +226,41 @@ "moduleSpecifier": "@reduxjs/toolkit/dist/query/core/buildInitiate", "pos": 551, "end": 600, - "resolutionMode": 1 + "resolutionMode": 1, + "trace": [ + "======== Resolving module '@reduxjs/toolkit/dist/query/core/buildInitiate' from '/node_modules/@reduxjs/toolkit/dist/query/react/buildHooks.d.ts'. ========", + "Explicitly specified module resolution kind: 'Node16'.", + "Resolving in CJS mode with conditions 'require', 'types', 'node'.", + "File '/node_modules/@reduxjs/toolkit/dist/query/react/package.json' does not exist according to earlier cached lookups.", + "File '/node_modules/@reduxjs/toolkit/dist/query/package.json' does not exist according to earlier cached lookups.", + "File '/node_modules/@reduxjs/toolkit/dist/package.json' does not exist according to earlier cached lookups.", + "File '/node_modules/@reduxjs/toolkit/package.json' exists according to earlier cached lookups.", + "Export specifier './dist/query/core/buildInitiate' does not exist in package.json scope at path '/node_modules/@reduxjs/toolkit'.", + "Export specifier './dist/query/core/buildInitiate' does not exist in package.json scope at path '/node_modules/@reduxjs/toolkit'.", + "Loading module '@reduxjs/toolkit/dist/query/core/buildInitiate' from 'node_modules' folder, target file types: TypeScript, JavaScript, Declaration, JSON.", + "Directory '/node_modules/@reduxjs/toolkit/dist/query/react/node_modules' does not exist, skipping all lookups in it.", + "Scoped package detected, looking in 'reduxjs__toolkit/dist/query/core/buildInitiate'", + "Directory '/node_modules/@reduxjs/toolkit/dist/query/node_modules' does not exist, skipping all lookups in it.", + "Scoped package detected, looking in 'reduxjs__toolkit/dist/query/core/buildInitiate'", + "Directory '/node_modules/@reduxjs/toolkit/dist/node_modules' does not exist, skipping all lookups in it.", + "Scoped package detected, looking in 'reduxjs__toolkit/dist/query/core/buildInitiate'", + "Directory '/node_modules/@reduxjs/toolkit/node_modules' does not exist, skipping all lookups in it.", + "Scoped package detected, looking in 'reduxjs__toolkit/dist/query/core/buildInitiate'", + "Directory '/node_modules/@reduxjs/node_modules' does not exist, skipping all lookups in it.", + "Scoped package detected, looking in 'reduxjs__toolkit/dist/query/core/buildInitiate'", + "File '/node_modules/@reduxjs/toolkit/package.json' exists according to earlier cached lookups.", + "Export specifier './dist/query/core/buildInitiate' does not exist in package.json scope at path '/node_modules/@reduxjs/toolkit'.", + "Directory '/node_modules/@types' does not exist, skipping all lookups in it.", + "Scoped package detected, looking in 'reduxjs__toolkit/dist/query/core/buildInitiate'", + "Directory '/node_modules/@reduxjs/toolkit/dist/query/react/node_modules' does not exist, skipping all lookups in it.", + "Directory '/node_modules/@reduxjs/toolkit/dist/query/node_modules' does not exist, skipping all lookups in it.", + "Directory '/node_modules/@reduxjs/toolkit/dist/node_modules' does not exist, skipping all lookups in it.", + "Directory '/node_modules/@reduxjs/toolkit/node_modules' does not exist, skipping all lookups in it.", + "Directory '/node_modules/@reduxjs/node_modules' does not exist, skipping all lookups in it.", + "File '/node_modules/@reduxjs/toolkit/package.json' exists according to earlier cached lookups.", + "Export specifier './dist/query/core/buildInitiate' does not exist in package.json scope at path '/node_modules/@reduxjs/toolkit'.", + "======== Module name '@reduxjs/toolkit/dist/query/core/buildInitiate' was not resolved. ========" + ] } }, { @@ -98,7 +271,41 @@ "moduleSpecifier": "@reduxjs/toolkit/dist/query/defaultSerializeQueryArgs", "pos": 642, "end": 698, - "resolutionMode": 1 + "resolutionMode": 1, + "trace": [ + "======== Resolving module '@reduxjs/toolkit/dist/query/defaultSerializeQueryArgs' from '/node_modules/@reduxjs/toolkit/dist/query/react/buildHooks.d.ts'. ========", + "Explicitly specified module resolution kind: 'Node16'.", + "Resolving in CJS mode with conditions 'require', 'types', 'node'.", + "File '/node_modules/@reduxjs/toolkit/dist/query/react/package.json' does not exist according to earlier cached lookups.", + "File '/node_modules/@reduxjs/toolkit/dist/query/package.json' does not exist according to earlier cached lookups.", + "File '/node_modules/@reduxjs/toolkit/dist/package.json' does not exist according to earlier cached lookups.", + "File '/node_modules/@reduxjs/toolkit/package.json' exists according to earlier cached lookups.", + "Export specifier './dist/query/defaultSerializeQueryArgs' does not exist in package.json scope at path '/node_modules/@reduxjs/toolkit'.", + "Export specifier './dist/query/defaultSerializeQueryArgs' does not exist in package.json scope at path '/node_modules/@reduxjs/toolkit'.", + "Loading module '@reduxjs/toolkit/dist/query/defaultSerializeQueryArgs' from 'node_modules' folder, target file types: TypeScript, JavaScript, Declaration, JSON.", + "Directory '/node_modules/@reduxjs/toolkit/dist/query/react/node_modules' does not exist, skipping all lookups in it.", + "Scoped package detected, looking in 'reduxjs__toolkit/dist/query/defaultSerializeQueryArgs'", + "Directory '/node_modules/@reduxjs/toolkit/dist/query/node_modules' does not exist, skipping all lookups in it.", + "Scoped package detected, looking in 'reduxjs__toolkit/dist/query/defaultSerializeQueryArgs'", + "Directory '/node_modules/@reduxjs/toolkit/dist/node_modules' does not exist, skipping all lookups in it.", + "Scoped package detected, looking in 'reduxjs__toolkit/dist/query/defaultSerializeQueryArgs'", + "Directory '/node_modules/@reduxjs/toolkit/node_modules' does not exist, skipping all lookups in it.", + "Scoped package detected, looking in 'reduxjs__toolkit/dist/query/defaultSerializeQueryArgs'", + "Directory '/node_modules/@reduxjs/node_modules' does not exist, skipping all lookups in it.", + "Scoped package detected, looking in 'reduxjs__toolkit/dist/query/defaultSerializeQueryArgs'", + "File '/node_modules/@reduxjs/toolkit/package.json' exists according to earlier cached lookups.", + "Export specifier './dist/query/defaultSerializeQueryArgs' does not exist in package.json scope at path '/node_modules/@reduxjs/toolkit'.", + "Directory '/node_modules/@types' does not exist, skipping all lookups in it.", + "Scoped package detected, looking in 'reduxjs__toolkit/dist/query/defaultSerializeQueryArgs'", + "Directory '/node_modules/@reduxjs/toolkit/dist/query/react/node_modules' does not exist, skipping all lookups in it.", + "Directory '/node_modules/@reduxjs/toolkit/dist/query/node_modules' does not exist, skipping all lookups in it.", + "Directory '/node_modules/@reduxjs/toolkit/dist/node_modules' does not exist, skipping all lookups in it.", + "Directory '/node_modules/@reduxjs/toolkit/node_modules' does not exist, skipping all lookups in it.", + "Directory '/node_modules/@reduxjs/node_modules' does not exist, skipping all lookups in it.", + "File '/node_modules/@reduxjs/toolkit/package.json' exists according to earlier cached lookups.", + "Export specifier './dist/query/defaultSerializeQueryArgs' does not exist in package.json scope at path '/node_modules/@reduxjs/toolkit'.", + "======== Module name '@reduxjs/toolkit/dist/query/defaultSerializeQueryArgs' was not resolved. ========" + ] } }, { @@ -109,7 +316,12 @@ "moduleSpecifier": "@reduxjs/toolkit/dist/query/apiTypes", "pos": 737, "end": 776, - "resolutionMode": 1 + "resolutionMode": 1, + "trace": [ + "======== Resolving module '@reduxjs/toolkit/dist/query/apiTypes' from '/node_modules/@reduxjs/toolkit/dist/query/react/buildHooks.d.ts'. ========", + "Resolution for module '@reduxjs/toolkit/dist/query/apiTypes' was found in cache from location '/node_modules/@reduxjs/toolkit/dist/query/react'.", + "======== Module name '@reduxjs/toolkit/dist/query/apiTypes' was not resolved. ========" + ] } }, { @@ -120,7 +332,41 @@ "moduleSpecifier": "@reduxjs/toolkit/dist/query/tsHelpers", "pos": 821, "end": 861, - "resolutionMode": 1 + "resolutionMode": 1, + "trace": [ + "======== Resolving module '@reduxjs/toolkit/dist/query/tsHelpers' from '/node_modules/@reduxjs/toolkit/dist/query/react/buildHooks.d.ts'. ========", + "Explicitly specified module resolution kind: 'Node16'.", + "Resolving in CJS mode with conditions 'require', 'types', 'node'.", + "File '/node_modules/@reduxjs/toolkit/dist/query/react/package.json' does not exist according to earlier cached lookups.", + "File '/node_modules/@reduxjs/toolkit/dist/query/package.json' does not exist according to earlier cached lookups.", + "File '/node_modules/@reduxjs/toolkit/dist/package.json' does not exist according to earlier cached lookups.", + "File '/node_modules/@reduxjs/toolkit/package.json' exists according to earlier cached lookups.", + "Export specifier './dist/query/tsHelpers' does not exist in package.json scope at path '/node_modules/@reduxjs/toolkit'.", + "Export specifier './dist/query/tsHelpers' does not exist in package.json scope at path '/node_modules/@reduxjs/toolkit'.", + "Loading module '@reduxjs/toolkit/dist/query/tsHelpers' from 'node_modules' folder, target file types: TypeScript, JavaScript, Declaration, JSON.", + "Directory '/node_modules/@reduxjs/toolkit/dist/query/react/node_modules' does not exist, skipping all lookups in it.", + "Scoped package detected, looking in 'reduxjs__toolkit/dist/query/tsHelpers'", + "Directory '/node_modules/@reduxjs/toolkit/dist/query/node_modules' does not exist, skipping all lookups in it.", + "Scoped package detected, looking in 'reduxjs__toolkit/dist/query/tsHelpers'", + "Directory '/node_modules/@reduxjs/toolkit/dist/node_modules' does not exist, skipping all lookups in it.", + "Scoped package detected, looking in 'reduxjs__toolkit/dist/query/tsHelpers'", + "Directory '/node_modules/@reduxjs/toolkit/node_modules' does not exist, skipping all lookups in it.", + "Scoped package detected, looking in 'reduxjs__toolkit/dist/query/tsHelpers'", + "Directory '/node_modules/@reduxjs/node_modules' does not exist, skipping all lookups in it.", + "Scoped package detected, looking in 'reduxjs__toolkit/dist/query/tsHelpers'", + "File '/node_modules/@reduxjs/toolkit/package.json' exists according to earlier cached lookups.", + "Export specifier './dist/query/tsHelpers' does not exist in package.json scope at path '/node_modules/@reduxjs/toolkit'.", + "Directory '/node_modules/@types' does not exist, skipping all lookups in it.", + "Scoped package detected, looking in 'reduxjs__toolkit/dist/query/tsHelpers'", + "Directory '/node_modules/@reduxjs/toolkit/dist/query/react/node_modules' does not exist, skipping all lookups in it.", + "Directory '/node_modules/@reduxjs/toolkit/dist/query/node_modules' does not exist, skipping all lookups in it.", + "Directory '/node_modules/@reduxjs/toolkit/dist/node_modules' does not exist, skipping all lookups in it.", + "Directory '/node_modules/@reduxjs/toolkit/node_modules' does not exist, skipping all lookups in it.", + "Directory '/node_modules/@reduxjs/node_modules' does not exist, skipping all lookups in it.", + "File '/node_modules/@reduxjs/toolkit/package.json' exists according to earlier cached lookups.", + "Export specifier './dist/query/tsHelpers' does not exist in package.json scope at path '/node_modules/@reduxjs/toolkit'.", + "======== Module name '@reduxjs/toolkit/dist/query/tsHelpers' was not resolved. ========" + ] } }, { @@ -131,7 +377,12 @@ "moduleSpecifier": "@reduxjs/toolkit/dist/query/core/module", "pos": 912, "end": 954, - "resolutionMode": 1 + "resolutionMode": 1, + "trace": [ + "======== Resolving module '@reduxjs/toolkit/dist/query/core/module' from '/node_modules/@reduxjs/toolkit/dist/query/react/buildHooks.d.ts'. ========", + "Resolution for module '@reduxjs/toolkit/dist/query/core/module' was found in cache from location '/node_modules/@reduxjs/toolkit/dist/query/react'.", + "======== Module name '@reduxjs/toolkit/dist/query/core/module' was not resolved. ========" + ] } }, { @@ -142,7 +393,12 @@ "moduleSpecifier": "@reduxjs/toolkit/dist/query/endpointDefinitions", "pos": 167, "end": 217, - "resolutionMode": 1 + "resolutionMode": 1, + "trace": [ + "======== Resolving module '@reduxjs/toolkit/dist/query/endpointDefinitions' from '/node_modules/@reduxjs/toolkit/dist/query/react/namedHooks.d.ts'. ========", + "Resolution for module '@reduxjs/toolkit/dist/query/endpointDefinitions' was found in cache from location '/node_modules/@reduxjs/toolkit/dist/query/react'.", + "======== Module name '@reduxjs/toolkit/dist/query/endpointDefinitions' was not resolved. ========" + ] } }, { @@ -153,7 +409,41 @@ "moduleSpecifier": "@reduxjs/toolkit/dist/query/endpointDefinitions", "pos": 155, "end": 205, - "resolutionMode": 1 + "resolutionMode": 1, + "trace": [ + "======== Resolving module '@reduxjs/toolkit/dist/query/endpointDefinitions' from '/node_modules/@reduxjs/toolkit/dist/query/react/module.d.ts'. ========", + "Explicitly specified module resolution kind: 'Node16'.", + "Resolving in CJS mode with conditions 'require', 'types', 'node'.", + "File '/node_modules/@reduxjs/toolkit/dist/query/react/package.json' does not exist according to earlier cached lookups.", + "File '/node_modules/@reduxjs/toolkit/dist/query/package.json' does not exist according to earlier cached lookups.", + "File '/node_modules/@reduxjs/toolkit/dist/package.json' does not exist according to earlier cached lookups.", + "File '/node_modules/@reduxjs/toolkit/package.json' exists according to earlier cached lookups.", + "Export specifier './dist/query/endpointDefinitions' does not exist in package.json scope at path '/node_modules/@reduxjs/toolkit'.", + "Export specifier './dist/query/endpointDefinitions' does not exist in package.json scope at path '/node_modules/@reduxjs/toolkit'.", + "Loading module '@reduxjs/toolkit/dist/query/endpointDefinitions' from 'node_modules' folder, target file types: TypeScript, JavaScript, Declaration, JSON.", + "Directory '/node_modules/@reduxjs/toolkit/dist/query/react/node_modules' does not exist, skipping all lookups in it.", + "Scoped package detected, looking in 'reduxjs__toolkit/dist/query/endpointDefinitions'", + "Directory '/node_modules/@reduxjs/toolkit/dist/query/node_modules' does not exist, skipping all lookups in it.", + "Scoped package detected, looking in 'reduxjs__toolkit/dist/query/endpointDefinitions'", + "Directory '/node_modules/@reduxjs/toolkit/dist/node_modules' does not exist, skipping all lookups in it.", + "Scoped package detected, looking in 'reduxjs__toolkit/dist/query/endpointDefinitions'", + "Directory '/node_modules/@reduxjs/toolkit/node_modules' does not exist, skipping all lookups in it.", + "Scoped package detected, looking in 'reduxjs__toolkit/dist/query/endpointDefinitions'", + "Directory '/node_modules/@reduxjs/node_modules' does not exist, skipping all lookups in it.", + "Scoped package detected, looking in 'reduxjs__toolkit/dist/query/endpointDefinitions'", + "File '/node_modules/@reduxjs/toolkit/package.json' exists according to earlier cached lookups.", + "Export specifier './dist/query/endpointDefinitions' does not exist in package.json scope at path '/node_modules/@reduxjs/toolkit'.", + "Directory '/node_modules/@types' does not exist, skipping all lookups in it.", + "Scoped package detected, looking in 'reduxjs__toolkit/dist/query/endpointDefinitions'", + "Directory '/node_modules/@reduxjs/toolkit/dist/query/react/node_modules' does not exist, skipping all lookups in it.", + "Directory '/node_modules/@reduxjs/toolkit/dist/query/node_modules' does not exist, skipping all lookups in it.", + "Directory '/node_modules/@reduxjs/toolkit/dist/node_modules' does not exist, skipping all lookups in it.", + "Directory '/node_modules/@reduxjs/toolkit/node_modules' does not exist, skipping all lookups in it.", + "Directory '/node_modules/@reduxjs/node_modules' does not exist, skipping all lookups in it.", + "File '/node_modules/@reduxjs/toolkit/package.json' exists according to earlier cached lookups.", + "Export specifier './dist/query/endpointDefinitions' does not exist in package.json scope at path '/node_modules/@reduxjs/toolkit'.", + "======== Module name '@reduxjs/toolkit/dist/query/endpointDefinitions' was not resolved. ========" + ] } }, { @@ -164,7 +454,41 @@ "moduleSpecifier": "@reduxjs/toolkit/dist/query/baseQueryTypes", "pos": 284, "end": 329, - "resolutionMode": 1 + "resolutionMode": 1, + "trace": [ + "======== Resolving module '@reduxjs/toolkit/dist/query/baseQueryTypes' from '/node_modules/@reduxjs/toolkit/dist/query/react/module.d.ts'. ========", + "Explicitly specified module resolution kind: 'Node16'.", + "Resolving in CJS mode with conditions 'require', 'types', 'node'.", + "File '/node_modules/@reduxjs/toolkit/dist/query/react/package.json' does not exist according to earlier cached lookups.", + "File '/node_modules/@reduxjs/toolkit/dist/query/package.json' does not exist according to earlier cached lookups.", + "File '/node_modules/@reduxjs/toolkit/dist/package.json' does not exist according to earlier cached lookups.", + "File '/node_modules/@reduxjs/toolkit/package.json' exists according to earlier cached lookups.", + "Export specifier './dist/query/baseQueryTypes' does not exist in package.json scope at path '/node_modules/@reduxjs/toolkit'.", + "Export specifier './dist/query/baseQueryTypes' does not exist in package.json scope at path '/node_modules/@reduxjs/toolkit'.", + "Loading module '@reduxjs/toolkit/dist/query/baseQueryTypes' from 'node_modules' folder, target file types: TypeScript, JavaScript, Declaration, JSON.", + "Directory '/node_modules/@reduxjs/toolkit/dist/query/react/node_modules' does not exist, skipping all lookups in it.", + "Scoped package detected, looking in 'reduxjs__toolkit/dist/query/baseQueryTypes'", + "Directory '/node_modules/@reduxjs/toolkit/dist/query/node_modules' does not exist, skipping all lookups in it.", + "Scoped package detected, looking in 'reduxjs__toolkit/dist/query/baseQueryTypes'", + "Directory '/node_modules/@reduxjs/toolkit/dist/node_modules' does not exist, skipping all lookups in it.", + "Scoped package detected, looking in 'reduxjs__toolkit/dist/query/baseQueryTypes'", + "Directory '/node_modules/@reduxjs/toolkit/node_modules' does not exist, skipping all lookups in it.", + "Scoped package detected, looking in 'reduxjs__toolkit/dist/query/baseQueryTypes'", + "Directory '/node_modules/@reduxjs/node_modules' does not exist, skipping all lookups in it.", + "Scoped package detected, looking in 'reduxjs__toolkit/dist/query/baseQueryTypes'", + "File '/node_modules/@reduxjs/toolkit/package.json' exists according to earlier cached lookups.", + "Export specifier './dist/query/baseQueryTypes' does not exist in package.json scope at path '/node_modules/@reduxjs/toolkit'.", + "Directory '/node_modules/@types' does not exist, skipping all lookups in it.", + "Scoped package detected, looking in 'reduxjs__toolkit/dist/query/baseQueryTypes'", + "Directory '/node_modules/@reduxjs/toolkit/dist/query/react/node_modules' does not exist, skipping all lookups in it.", + "Directory '/node_modules/@reduxjs/toolkit/dist/query/node_modules' does not exist, skipping all lookups in it.", + "Directory '/node_modules/@reduxjs/toolkit/dist/node_modules' does not exist, skipping all lookups in it.", + "Directory '/node_modules/@reduxjs/toolkit/node_modules' does not exist, skipping all lookups in it.", + "Directory '/node_modules/@reduxjs/node_modules' does not exist, skipping all lookups in it.", + "File '/node_modules/@reduxjs/toolkit/package.json' exists according to earlier cached lookups.", + "Export specifier './dist/query/baseQueryTypes' does not exist in package.json scope at path '/node_modules/@reduxjs/toolkit'.", + "======== Module name '@reduxjs/toolkit/dist/query/baseQueryTypes' was not resolved. ========" + ] } }, { @@ -175,7 +499,12 @@ "moduleSpecifier": "@reduxjs/toolkit/dist/query/apiTypes", "pos": 181, "end": 220, - "resolutionMode": 1 + "resolutionMode": 1, + "trace": [ + "======== Resolving module '@reduxjs/toolkit/dist/query/apiTypes' from '/node_modules/@reduxjs/toolkit/dist/query/react/ApiProvider.d.ts'. ========", + "Resolution for module '@reduxjs/toolkit/dist/query/apiTypes' was found in cache from location '/node_modules/@reduxjs/toolkit/dist/query/react'.", + "======== Module name '@reduxjs/toolkit/dist/query/apiTypes' was not resolved. ========" + ] } }, { @@ -186,7 +515,41 @@ "moduleSpecifier": "@reduxjs/toolkit/dist/query/core/module", "pos": 257, "end": 298, - "resolutionMode": 1 + "resolutionMode": 1, + "trace": [ + "======== Resolving module '@reduxjs/toolkit/dist/query/core/module' from '/node_modules/@reduxjs/toolkit/dist/query/react/index.d.ts'. ========", + "Explicitly specified module resolution kind: 'Node16'.", + "Resolving in CJS mode with conditions 'require', 'types', 'node'.", + "File '/node_modules/@reduxjs/toolkit/dist/query/react/package.json' does not exist according to earlier cached lookups.", + "File '/node_modules/@reduxjs/toolkit/dist/query/package.json' does not exist according to earlier cached lookups.", + "File '/node_modules/@reduxjs/toolkit/dist/package.json' does not exist according to earlier cached lookups.", + "File '/node_modules/@reduxjs/toolkit/package.json' exists according to earlier cached lookups.", + "Export specifier './dist/query/core/module' does not exist in package.json scope at path '/node_modules/@reduxjs/toolkit'.", + "Export specifier './dist/query/core/module' does not exist in package.json scope at path '/node_modules/@reduxjs/toolkit'.", + "Loading module '@reduxjs/toolkit/dist/query/core/module' from 'node_modules' folder, target file types: TypeScript, JavaScript, Declaration, JSON.", + "Directory '/node_modules/@reduxjs/toolkit/dist/query/react/node_modules' does not exist, skipping all lookups in it.", + "Scoped package detected, looking in 'reduxjs__toolkit/dist/query/core/module'", + "Directory '/node_modules/@reduxjs/toolkit/dist/query/node_modules' does not exist, skipping all lookups in it.", + "Scoped package detected, looking in 'reduxjs__toolkit/dist/query/core/module'", + "Directory '/node_modules/@reduxjs/toolkit/dist/node_modules' does not exist, skipping all lookups in it.", + "Scoped package detected, looking in 'reduxjs__toolkit/dist/query/core/module'", + "Directory '/node_modules/@reduxjs/toolkit/node_modules' does not exist, skipping all lookups in it.", + "Scoped package detected, looking in 'reduxjs__toolkit/dist/query/core/module'", + "Directory '/node_modules/@reduxjs/node_modules' does not exist, skipping all lookups in it.", + "Scoped package detected, looking in 'reduxjs__toolkit/dist/query/core/module'", + "File '/node_modules/@reduxjs/toolkit/package.json' exists according to earlier cached lookups.", + "Export specifier './dist/query/core/module' does not exist in package.json scope at path '/node_modules/@reduxjs/toolkit'.", + "Directory '/node_modules/@types' does not exist, skipping all lookups in it.", + "Scoped package detected, looking in 'reduxjs__toolkit/dist/query/core/module'", + "Directory '/node_modules/@reduxjs/toolkit/dist/query/react/node_modules' does not exist, skipping all lookups in it.", + "Directory '/node_modules/@reduxjs/toolkit/dist/query/node_modules' does not exist, skipping all lookups in it.", + "Directory '/node_modules/@reduxjs/toolkit/dist/node_modules' does not exist, skipping all lookups in it.", + "Directory '/node_modules/@reduxjs/toolkit/node_modules' does not exist, skipping all lookups in it.", + "Directory '/node_modules/@reduxjs/node_modules' does not exist, skipping all lookups in it.", + "File '/node_modules/@reduxjs/toolkit/package.json' exists according to earlier cached lookups.", + "Export specifier './dist/query/core/module' does not exist in package.json scope at path '/node_modules/@reduxjs/toolkit'.", + "======== Module name '@reduxjs/toolkit/dist/query/core/module' was not resolved. ========" + ] } }, { @@ -196,7 +559,41 @@ "error": { "moduleSpecifier": "@reduxjs/toolkit/dist/tsHelpers", "pos": 153, - "end": 187 + "end": 187, + "trace": [ + "======== Resolving module '@reduxjs/toolkit/dist/tsHelpers' from '/node_modules/@reduxjs/toolkit/dist/dynamicMiddleware/react/index.d.ts'. ========", + "Explicitly specified module resolution kind: 'Bundler'.", + "Resolving in CJS mode with conditions 'import', 'types'.", + "File '/node_modules/@reduxjs/toolkit/dist/dynamicMiddleware/react/package.json' does not exist according to earlier cached lookups.", + "File '/node_modules/@reduxjs/toolkit/dist/dynamicMiddleware/package.json' does not exist according to earlier cached lookups.", + "File '/node_modules/@reduxjs/toolkit/dist/package.json' does not exist according to earlier cached lookups.", + "File '/node_modules/@reduxjs/toolkit/package.json' exists according to earlier cached lookups.", + "Export specifier './dist/tsHelpers' does not exist in package.json scope at path '/node_modules/@reduxjs/toolkit'.", + "Export specifier './dist/tsHelpers' does not exist in package.json scope at path '/node_modules/@reduxjs/toolkit'.", + "Loading module '@reduxjs/toolkit/dist/tsHelpers' from 'node_modules' folder, target file types: TypeScript, JavaScript, Declaration, JSON.", + "Directory '/node_modules/@reduxjs/toolkit/dist/dynamicMiddleware/react/node_modules' does not exist, skipping all lookups in it.", + "Scoped package detected, looking in 'reduxjs__toolkit/dist/tsHelpers'", + "Directory '/node_modules/@reduxjs/toolkit/dist/dynamicMiddleware/node_modules' does not exist, skipping all lookups in it.", + "Scoped package detected, looking in 'reduxjs__toolkit/dist/tsHelpers'", + "Directory '/node_modules/@reduxjs/toolkit/dist/node_modules' does not exist, skipping all lookups in it.", + "Scoped package detected, looking in 'reduxjs__toolkit/dist/tsHelpers'", + "Directory '/node_modules/@reduxjs/toolkit/node_modules' does not exist, skipping all lookups in it.", + "Scoped package detected, looking in 'reduxjs__toolkit/dist/tsHelpers'", + "Directory '/node_modules/@reduxjs/node_modules' does not exist, skipping all lookups in it.", + "Scoped package detected, looking in 'reduxjs__toolkit/dist/tsHelpers'", + "File '/node_modules/@reduxjs/toolkit/package.json' exists according to earlier cached lookups.", + "Export specifier './dist/tsHelpers' does not exist in package.json scope at path '/node_modules/@reduxjs/toolkit'.", + "Directory '/node_modules/@types' does not exist, skipping all lookups in it.", + "Scoped package detected, looking in 'reduxjs__toolkit/dist/tsHelpers'", + "Directory '/node_modules/@reduxjs/toolkit/dist/dynamicMiddleware/react/node_modules' does not exist, skipping all lookups in it.", + "Directory '/node_modules/@reduxjs/toolkit/dist/dynamicMiddleware/node_modules' does not exist, skipping all lookups in it.", + "Directory '/node_modules/@reduxjs/toolkit/dist/node_modules' does not exist, skipping all lookups in it.", + "Directory '/node_modules/@reduxjs/toolkit/node_modules' does not exist, skipping all lookups in it.", + "Directory '/node_modules/@reduxjs/node_modules' does not exist, skipping all lookups in it.", + "File '/node_modules/@reduxjs/toolkit/package.json' exists according to earlier cached lookups.", + "Export specifier './dist/tsHelpers' does not exist in package.json scope at path '/node_modules/@reduxjs/toolkit'.", + "======== Module name '@reduxjs/toolkit/dist/tsHelpers' was not resolved. ========" + ] } }, { @@ -206,7 +603,41 @@ "error": { "moduleSpecifier": "@reduxjs/toolkit/dist/dynamicMiddleware/types", "pos": 379, - "end": 427 + "end": 427, + "trace": [ + "======== Resolving module '@reduxjs/toolkit/dist/dynamicMiddleware/types' from '/node_modules/@reduxjs/toolkit/dist/dynamicMiddleware/react/index.d.ts'. ========", + "Explicitly specified module resolution kind: 'Bundler'.", + "Resolving in CJS mode with conditions 'import', 'types'.", + "File '/node_modules/@reduxjs/toolkit/dist/dynamicMiddleware/react/package.json' does not exist according to earlier cached lookups.", + "File '/node_modules/@reduxjs/toolkit/dist/dynamicMiddleware/package.json' does not exist according to earlier cached lookups.", + "File '/node_modules/@reduxjs/toolkit/dist/package.json' does not exist according to earlier cached lookups.", + "File '/node_modules/@reduxjs/toolkit/package.json' exists according to earlier cached lookups.", + "Export specifier './dist/dynamicMiddleware/types' does not exist in package.json scope at path '/node_modules/@reduxjs/toolkit'.", + "Export specifier './dist/dynamicMiddleware/types' does not exist in package.json scope at path '/node_modules/@reduxjs/toolkit'.", + "Loading module '@reduxjs/toolkit/dist/dynamicMiddleware/types' from 'node_modules' folder, target file types: TypeScript, JavaScript, Declaration, JSON.", + "Directory '/node_modules/@reduxjs/toolkit/dist/dynamicMiddleware/react/node_modules' does not exist, skipping all lookups in it.", + "Scoped package detected, looking in 'reduxjs__toolkit/dist/dynamicMiddleware/types'", + "Directory '/node_modules/@reduxjs/toolkit/dist/dynamicMiddleware/node_modules' does not exist, skipping all lookups in it.", + "Scoped package detected, looking in 'reduxjs__toolkit/dist/dynamicMiddleware/types'", + "Directory '/node_modules/@reduxjs/toolkit/dist/node_modules' does not exist, skipping all lookups in it.", + "Scoped package detected, looking in 'reduxjs__toolkit/dist/dynamicMiddleware/types'", + "Directory '/node_modules/@reduxjs/toolkit/node_modules' does not exist, skipping all lookups in it.", + "Scoped package detected, looking in 'reduxjs__toolkit/dist/dynamicMiddleware/types'", + "Directory '/node_modules/@reduxjs/node_modules' does not exist, skipping all lookups in it.", + "Scoped package detected, looking in 'reduxjs__toolkit/dist/dynamicMiddleware/types'", + "File '/node_modules/@reduxjs/toolkit/package.json' exists according to earlier cached lookups.", + "Export specifier './dist/dynamicMiddleware/types' does not exist in package.json scope at path '/node_modules/@reduxjs/toolkit'.", + "Directory '/node_modules/@types' does not exist, skipping all lookups in it.", + "Scoped package detected, looking in 'reduxjs__toolkit/dist/dynamicMiddleware/types'", + "Directory '/node_modules/@reduxjs/toolkit/dist/dynamicMiddleware/react/node_modules' does not exist, skipping all lookups in it.", + "Directory '/node_modules/@reduxjs/toolkit/dist/dynamicMiddleware/node_modules' does not exist, skipping all lookups in it.", + "Directory '/node_modules/@reduxjs/toolkit/dist/node_modules' does not exist, skipping all lookups in it.", + "Directory '/node_modules/@reduxjs/toolkit/node_modules' does not exist, skipping all lookups in it.", + "Directory '/node_modules/@reduxjs/node_modules' does not exist, skipping all lookups in it.", + "File '/node_modules/@reduxjs/toolkit/package.json' exists according to earlier cached lookups.", + "Export specifier './dist/dynamicMiddleware/types' does not exist in package.json scope at path '/node_modules/@reduxjs/toolkit'.", + "======== Module name '@reduxjs/toolkit/dist/dynamicMiddleware/types' was not resolved. ========" + ] } }, { @@ -216,7 +647,41 @@ "error": { "moduleSpecifier": "@reduxjs/toolkit/dist/query/core/apiState", "pos": 157, - "end": 201 + "end": 201, + "trace": [ + "======== Resolving module '@reduxjs/toolkit/dist/query/core/apiState' from '/node_modules/@reduxjs/toolkit/dist/query/react/buildHooks.d.ts'. ========", + "Explicitly specified module resolution kind: 'Bundler'.", + "Resolving in CJS mode with conditions 'import', 'types'.", + "File '/node_modules/@reduxjs/toolkit/dist/query/react/package.json' does not exist according to earlier cached lookups.", + "File '/node_modules/@reduxjs/toolkit/dist/query/package.json' does not exist according to earlier cached lookups.", + "File '/node_modules/@reduxjs/toolkit/dist/package.json' does not exist according to earlier cached lookups.", + "File '/node_modules/@reduxjs/toolkit/package.json' exists according to earlier cached lookups.", + "Export specifier './dist/query/core/apiState' does not exist in package.json scope at path '/node_modules/@reduxjs/toolkit'.", + "Export specifier './dist/query/core/apiState' does not exist in package.json scope at path '/node_modules/@reduxjs/toolkit'.", + "Loading module '@reduxjs/toolkit/dist/query/core/apiState' from 'node_modules' folder, target file types: TypeScript, JavaScript, Declaration, JSON.", + "Directory '/node_modules/@reduxjs/toolkit/dist/query/react/node_modules' does not exist, skipping all lookups in it.", + "Scoped package detected, looking in 'reduxjs__toolkit/dist/query/core/apiState'", + "Directory '/node_modules/@reduxjs/toolkit/dist/query/node_modules' does not exist, skipping all lookups in it.", + "Scoped package detected, looking in 'reduxjs__toolkit/dist/query/core/apiState'", + "Directory '/node_modules/@reduxjs/toolkit/dist/node_modules' does not exist, skipping all lookups in it.", + "Scoped package detected, looking in 'reduxjs__toolkit/dist/query/core/apiState'", + "Directory '/node_modules/@reduxjs/toolkit/node_modules' does not exist, skipping all lookups in it.", + "Scoped package detected, looking in 'reduxjs__toolkit/dist/query/core/apiState'", + "Directory '/node_modules/@reduxjs/node_modules' does not exist, skipping all lookups in it.", + "Scoped package detected, looking in 'reduxjs__toolkit/dist/query/core/apiState'", + "File '/node_modules/@reduxjs/toolkit/package.json' exists according to earlier cached lookups.", + "Export specifier './dist/query/core/apiState' does not exist in package.json scope at path '/node_modules/@reduxjs/toolkit'.", + "Directory '/node_modules/@types' does not exist, skipping all lookups in it.", + "Scoped package detected, looking in 'reduxjs__toolkit/dist/query/core/apiState'", + "Directory '/node_modules/@reduxjs/toolkit/dist/query/react/node_modules' does not exist, skipping all lookups in it.", + "Directory '/node_modules/@reduxjs/toolkit/dist/query/node_modules' does not exist, skipping all lookups in it.", + "Directory '/node_modules/@reduxjs/toolkit/dist/node_modules' does not exist, skipping all lookups in it.", + "Directory '/node_modules/@reduxjs/toolkit/node_modules' does not exist, skipping all lookups in it.", + "Directory '/node_modules/@reduxjs/node_modules' does not exist, skipping all lookups in it.", + "File '/node_modules/@reduxjs/toolkit/package.json' exists according to earlier cached lookups.", + "Export specifier './dist/query/core/apiState' does not exist in package.json scope at path '/node_modules/@reduxjs/toolkit'.", + "======== Module name '@reduxjs/toolkit/dist/query/core/apiState' was not resolved. ========" + ] } }, { @@ -226,7 +691,12 @@ "error": { "moduleSpecifier": "@reduxjs/toolkit/dist/query/endpointDefinitions", "pos": 311, - "end": 361 + "end": 361, + "trace": [ + "======== Resolving module '@reduxjs/toolkit/dist/query/endpointDefinitions' from '/node_modules/@reduxjs/toolkit/dist/query/react/buildHooks.d.ts'. ========", + "Resolution for module '@reduxjs/toolkit/dist/query/endpointDefinitions' was found in cache from location '/node_modules/@reduxjs/toolkit/dist/query/react'.", + "======== Module name '@reduxjs/toolkit/dist/query/endpointDefinitions' was not resolved. ========" + ] } }, { @@ -236,7 +706,41 @@ "error": { "moduleSpecifier": "@reduxjs/toolkit/dist/query/core/buildSelectors", "pos": 424, - "end": 474 + "end": 474, + "trace": [ + "======== Resolving module '@reduxjs/toolkit/dist/query/core/buildSelectors' from '/node_modules/@reduxjs/toolkit/dist/query/react/buildHooks.d.ts'. ========", + "Explicitly specified module resolution kind: 'Bundler'.", + "Resolving in CJS mode with conditions 'import', 'types'.", + "File '/node_modules/@reduxjs/toolkit/dist/query/react/package.json' does not exist according to earlier cached lookups.", + "File '/node_modules/@reduxjs/toolkit/dist/query/package.json' does not exist according to earlier cached lookups.", + "File '/node_modules/@reduxjs/toolkit/dist/package.json' does not exist according to earlier cached lookups.", + "File '/node_modules/@reduxjs/toolkit/package.json' exists according to earlier cached lookups.", + "Export specifier './dist/query/core/buildSelectors' does not exist in package.json scope at path '/node_modules/@reduxjs/toolkit'.", + "Export specifier './dist/query/core/buildSelectors' does not exist in package.json scope at path '/node_modules/@reduxjs/toolkit'.", + "Loading module '@reduxjs/toolkit/dist/query/core/buildSelectors' from 'node_modules' folder, target file types: TypeScript, JavaScript, Declaration, JSON.", + "Directory '/node_modules/@reduxjs/toolkit/dist/query/react/node_modules' does not exist, skipping all lookups in it.", + "Scoped package detected, looking in 'reduxjs__toolkit/dist/query/core/buildSelectors'", + "Directory '/node_modules/@reduxjs/toolkit/dist/query/node_modules' does not exist, skipping all lookups in it.", + "Scoped package detected, looking in 'reduxjs__toolkit/dist/query/core/buildSelectors'", + "Directory '/node_modules/@reduxjs/toolkit/dist/node_modules' does not exist, skipping all lookups in it.", + "Scoped package detected, looking in 'reduxjs__toolkit/dist/query/core/buildSelectors'", + "Directory '/node_modules/@reduxjs/toolkit/node_modules' does not exist, skipping all lookups in it.", + "Scoped package detected, looking in 'reduxjs__toolkit/dist/query/core/buildSelectors'", + "Directory '/node_modules/@reduxjs/node_modules' does not exist, skipping all lookups in it.", + "Scoped package detected, looking in 'reduxjs__toolkit/dist/query/core/buildSelectors'", + "File '/node_modules/@reduxjs/toolkit/package.json' exists according to earlier cached lookups.", + "Export specifier './dist/query/core/buildSelectors' does not exist in package.json scope at path '/node_modules/@reduxjs/toolkit'.", + "Directory '/node_modules/@types' does not exist, skipping all lookups in it.", + "Scoped package detected, looking in 'reduxjs__toolkit/dist/query/core/buildSelectors'", + "Directory '/node_modules/@reduxjs/toolkit/dist/query/react/node_modules' does not exist, skipping all lookups in it.", + "Directory '/node_modules/@reduxjs/toolkit/dist/query/node_modules' does not exist, skipping all lookups in it.", + "Directory '/node_modules/@reduxjs/toolkit/dist/node_modules' does not exist, skipping all lookups in it.", + "Directory '/node_modules/@reduxjs/toolkit/node_modules' does not exist, skipping all lookups in it.", + "Directory '/node_modules/@reduxjs/node_modules' does not exist, skipping all lookups in it.", + "File '/node_modules/@reduxjs/toolkit/package.json' exists according to earlier cached lookups.", + "Export specifier './dist/query/core/buildSelectors' does not exist in package.json scope at path '/node_modules/@reduxjs/toolkit'.", + "======== Module name '@reduxjs/toolkit/dist/query/core/buildSelectors' was not resolved. ========" + ] } }, { @@ -246,7 +750,41 @@ "error": { "moduleSpecifier": "@reduxjs/toolkit/dist/query/core/buildInitiate", "pos": 551, - "end": 600 + "end": 600, + "trace": [ + "======== Resolving module '@reduxjs/toolkit/dist/query/core/buildInitiate' from '/node_modules/@reduxjs/toolkit/dist/query/react/buildHooks.d.ts'. ========", + "Explicitly specified module resolution kind: 'Bundler'.", + "Resolving in CJS mode with conditions 'import', 'types'.", + "File '/node_modules/@reduxjs/toolkit/dist/query/react/package.json' does not exist according to earlier cached lookups.", + "File '/node_modules/@reduxjs/toolkit/dist/query/package.json' does not exist according to earlier cached lookups.", + "File '/node_modules/@reduxjs/toolkit/dist/package.json' does not exist according to earlier cached lookups.", + "File '/node_modules/@reduxjs/toolkit/package.json' exists according to earlier cached lookups.", + "Export specifier './dist/query/core/buildInitiate' does not exist in package.json scope at path '/node_modules/@reduxjs/toolkit'.", + "Export specifier './dist/query/core/buildInitiate' does not exist in package.json scope at path '/node_modules/@reduxjs/toolkit'.", + "Loading module '@reduxjs/toolkit/dist/query/core/buildInitiate' from 'node_modules' folder, target file types: TypeScript, JavaScript, Declaration, JSON.", + "Directory '/node_modules/@reduxjs/toolkit/dist/query/react/node_modules' does not exist, skipping all lookups in it.", + "Scoped package detected, looking in 'reduxjs__toolkit/dist/query/core/buildInitiate'", + "Directory '/node_modules/@reduxjs/toolkit/dist/query/node_modules' does not exist, skipping all lookups in it.", + "Scoped package detected, looking in 'reduxjs__toolkit/dist/query/core/buildInitiate'", + "Directory '/node_modules/@reduxjs/toolkit/dist/node_modules' does not exist, skipping all lookups in it.", + "Scoped package detected, looking in 'reduxjs__toolkit/dist/query/core/buildInitiate'", + "Directory '/node_modules/@reduxjs/toolkit/node_modules' does not exist, skipping all lookups in it.", + "Scoped package detected, looking in 'reduxjs__toolkit/dist/query/core/buildInitiate'", + "Directory '/node_modules/@reduxjs/node_modules' does not exist, skipping all lookups in it.", + "Scoped package detected, looking in 'reduxjs__toolkit/dist/query/core/buildInitiate'", + "File '/node_modules/@reduxjs/toolkit/package.json' exists according to earlier cached lookups.", + "Export specifier './dist/query/core/buildInitiate' does not exist in package.json scope at path '/node_modules/@reduxjs/toolkit'.", + "Directory '/node_modules/@types' does not exist, skipping all lookups in it.", + "Scoped package detected, looking in 'reduxjs__toolkit/dist/query/core/buildInitiate'", + "Directory '/node_modules/@reduxjs/toolkit/dist/query/react/node_modules' does not exist, skipping all lookups in it.", + "Directory '/node_modules/@reduxjs/toolkit/dist/query/node_modules' does not exist, skipping all lookups in it.", + "Directory '/node_modules/@reduxjs/toolkit/dist/node_modules' does not exist, skipping all lookups in it.", + "Directory '/node_modules/@reduxjs/toolkit/node_modules' does not exist, skipping all lookups in it.", + "Directory '/node_modules/@reduxjs/node_modules' does not exist, skipping all lookups in it.", + "File '/node_modules/@reduxjs/toolkit/package.json' exists according to earlier cached lookups.", + "Export specifier './dist/query/core/buildInitiate' does not exist in package.json scope at path '/node_modules/@reduxjs/toolkit'.", + "======== Module name '@reduxjs/toolkit/dist/query/core/buildInitiate' was not resolved. ========" + ] } }, { @@ -256,7 +794,41 @@ "error": { "moduleSpecifier": "@reduxjs/toolkit/dist/query/defaultSerializeQueryArgs", "pos": 642, - "end": 698 + "end": 698, + "trace": [ + "======== Resolving module '@reduxjs/toolkit/dist/query/defaultSerializeQueryArgs' from '/node_modules/@reduxjs/toolkit/dist/query/react/buildHooks.d.ts'. ========", + "Explicitly specified module resolution kind: 'Bundler'.", + "Resolving in CJS mode with conditions 'import', 'types'.", + "File '/node_modules/@reduxjs/toolkit/dist/query/react/package.json' does not exist according to earlier cached lookups.", + "File '/node_modules/@reduxjs/toolkit/dist/query/package.json' does not exist according to earlier cached lookups.", + "File '/node_modules/@reduxjs/toolkit/dist/package.json' does not exist according to earlier cached lookups.", + "File '/node_modules/@reduxjs/toolkit/package.json' exists according to earlier cached lookups.", + "Export specifier './dist/query/defaultSerializeQueryArgs' does not exist in package.json scope at path '/node_modules/@reduxjs/toolkit'.", + "Export specifier './dist/query/defaultSerializeQueryArgs' does not exist in package.json scope at path '/node_modules/@reduxjs/toolkit'.", + "Loading module '@reduxjs/toolkit/dist/query/defaultSerializeQueryArgs' from 'node_modules' folder, target file types: TypeScript, JavaScript, Declaration, JSON.", + "Directory '/node_modules/@reduxjs/toolkit/dist/query/react/node_modules' does not exist, skipping all lookups in it.", + "Scoped package detected, looking in 'reduxjs__toolkit/dist/query/defaultSerializeQueryArgs'", + "Directory '/node_modules/@reduxjs/toolkit/dist/query/node_modules' does not exist, skipping all lookups in it.", + "Scoped package detected, looking in 'reduxjs__toolkit/dist/query/defaultSerializeQueryArgs'", + "Directory '/node_modules/@reduxjs/toolkit/dist/node_modules' does not exist, skipping all lookups in it.", + "Scoped package detected, looking in 'reduxjs__toolkit/dist/query/defaultSerializeQueryArgs'", + "Directory '/node_modules/@reduxjs/toolkit/node_modules' does not exist, skipping all lookups in it.", + "Scoped package detected, looking in 'reduxjs__toolkit/dist/query/defaultSerializeQueryArgs'", + "Directory '/node_modules/@reduxjs/node_modules' does not exist, skipping all lookups in it.", + "Scoped package detected, looking in 'reduxjs__toolkit/dist/query/defaultSerializeQueryArgs'", + "File '/node_modules/@reduxjs/toolkit/package.json' exists according to earlier cached lookups.", + "Export specifier './dist/query/defaultSerializeQueryArgs' does not exist in package.json scope at path '/node_modules/@reduxjs/toolkit'.", + "Directory '/node_modules/@types' does not exist, skipping all lookups in it.", + "Scoped package detected, looking in 'reduxjs__toolkit/dist/query/defaultSerializeQueryArgs'", + "Directory '/node_modules/@reduxjs/toolkit/dist/query/react/node_modules' does not exist, skipping all lookups in it.", + "Directory '/node_modules/@reduxjs/toolkit/dist/query/node_modules' does not exist, skipping all lookups in it.", + "Directory '/node_modules/@reduxjs/toolkit/dist/node_modules' does not exist, skipping all lookups in it.", + "Directory '/node_modules/@reduxjs/toolkit/node_modules' does not exist, skipping all lookups in it.", + "Directory '/node_modules/@reduxjs/node_modules' does not exist, skipping all lookups in it.", + "File '/node_modules/@reduxjs/toolkit/package.json' exists according to earlier cached lookups.", + "Export specifier './dist/query/defaultSerializeQueryArgs' does not exist in package.json scope at path '/node_modules/@reduxjs/toolkit'.", + "======== Module name '@reduxjs/toolkit/dist/query/defaultSerializeQueryArgs' was not resolved. ========" + ] } }, { @@ -266,7 +838,12 @@ "error": { "moduleSpecifier": "@reduxjs/toolkit/dist/query/apiTypes", "pos": 737, - "end": 776 + "end": 776, + "trace": [ + "======== Resolving module '@reduxjs/toolkit/dist/query/apiTypes' from '/node_modules/@reduxjs/toolkit/dist/query/react/buildHooks.d.ts'. ========", + "Resolution for module '@reduxjs/toolkit/dist/query/apiTypes' was found in cache from location '/node_modules/@reduxjs/toolkit/dist/query/react'.", + "======== Module name '@reduxjs/toolkit/dist/query/apiTypes' was not resolved. ========" + ] } }, { @@ -276,7 +853,41 @@ "error": { "moduleSpecifier": "@reduxjs/toolkit/dist/query/tsHelpers", "pos": 821, - "end": 861 + "end": 861, + "trace": [ + "======== Resolving module '@reduxjs/toolkit/dist/query/tsHelpers' from '/node_modules/@reduxjs/toolkit/dist/query/react/buildHooks.d.ts'. ========", + "Explicitly specified module resolution kind: 'Bundler'.", + "Resolving in CJS mode with conditions 'import', 'types'.", + "File '/node_modules/@reduxjs/toolkit/dist/query/react/package.json' does not exist according to earlier cached lookups.", + "File '/node_modules/@reduxjs/toolkit/dist/query/package.json' does not exist according to earlier cached lookups.", + "File '/node_modules/@reduxjs/toolkit/dist/package.json' does not exist according to earlier cached lookups.", + "File '/node_modules/@reduxjs/toolkit/package.json' exists according to earlier cached lookups.", + "Export specifier './dist/query/tsHelpers' does not exist in package.json scope at path '/node_modules/@reduxjs/toolkit'.", + "Export specifier './dist/query/tsHelpers' does not exist in package.json scope at path '/node_modules/@reduxjs/toolkit'.", + "Loading module '@reduxjs/toolkit/dist/query/tsHelpers' from 'node_modules' folder, target file types: TypeScript, JavaScript, Declaration, JSON.", + "Directory '/node_modules/@reduxjs/toolkit/dist/query/react/node_modules' does not exist, skipping all lookups in it.", + "Scoped package detected, looking in 'reduxjs__toolkit/dist/query/tsHelpers'", + "Directory '/node_modules/@reduxjs/toolkit/dist/query/node_modules' does not exist, skipping all lookups in it.", + "Scoped package detected, looking in 'reduxjs__toolkit/dist/query/tsHelpers'", + "Directory '/node_modules/@reduxjs/toolkit/dist/node_modules' does not exist, skipping all lookups in it.", + "Scoped package detected, looking in 'reduxjs__toolkit/dist/query/tsHelpers'", + "Directory '/node_modules/@reduxjs/toolkit/node_modules' does not exist, skipping all lookups in it.", + "Scoped package detected, looking in 'reduxjs__toolkit/dist/query/tsHelpers'", + "Directory '/node_modules/@reduxjs/node_modules' does not exist, skipping all lookups in it.", + "Scoped package detected, looking in 'reduxjs__toolkit/dist/query/tsHelpers'", + "File '/node_modules/@reduxjs/toolkit/package.json' exists according to earlier cached lookups.", + "Export specifier './dist/query/tsHelpers' does not exist in package.json scope at path '/node_modules/@reduxjs/toolkit'.", + "Directory '/node_modules/@types' does not exist, skipping all lookups in it.", + "Scoped package detected, looking in 'reduxjs__toolkit/dist/query/tsHelpers'", + "Directory '/node_modules/@reduxjs/toolkit/dist/query/react/node_modules' does not exist, skipping all lookups in it.", + "Directory '/node_modules/@reduxjs/toolkit/dist/query/node_modules' does not exist, skipping all lookups in it.", + "Directory '/node_modules/@reduxjs/toolkit/dist/node_modules' does not exist, skipping all lookups in it.", + "Directory '/node_modules/@reduxjs/toolkit/node_modules' does not exist, skipping all lookups in it.", + "Directory '/node_modules/@reduxjs/node_modules' does not exist, skipping all lookups in it.", + "File '/node_modules/@reduxjs/toolkit/package.json' exists according to earlier cached lookups.", + "Export specifier './dist/query/tsHelpers' does not exist in package.json scope at path '/node_modules/@reduxjs/toolkit'.", + "======== Module name '@reduxjs/toolkit/dist/query/tsHelpers' was not resolved. ========" + ] } }, { @@ -286,7 +897,12 @@ "error": { "moduleSpecifier": "@reduxjs/toolkit/dist/query/core/module", "pos": 912, - "end": 954 + "end": 954, + "trace": [ + "======== Resolving module '@reduxjs/toolkit/dist/query/core/module' from '/node_modules/@reduxjs/toolkit/dist/query/react/buildHooks.d.ts'. ========", + "Resolution for module '@reduxjs/toolkit/dist/query/core/module' was found in cache from location '/node_modules/@reduxjs/toolkit/dist/query/react'.", + "======== Module name '@reduxjs/toolkit/dist/query/core/module' was not resolved. ========" + ] } }, { @@ -296,7 +912,12 @@ "error": { "moduleSpecifier": "@reduxjs/toolkit/dist/query/endpointDefinitions", "pos": 167, - "end": 217 + "end": 217, + "trace": [ + "======== Resolving module '@reduxjs/toolkit/dist/query/endpointDefinitions' from '/node_modules/@reduxjs/toolkit/dist/query/react/namedHooks.d.ts'. ========", + "Resolution for module '@reduxjs/toolkit/dist/query/endpointDefinitions' was found in cache from location '/node_modules/@reduxjs/toolkit/dist/query/react'.", + "======== Module name '@reduxjs/toolkit/dist/query/endpointDefinitions' was not resolved. ========" + ] } }, { @@ -306,7 +927,41 @@ "error": { "moduleSpecifier": "@reduxjs/toolkit/dist/query/endpointDefinitions", "pos": 155, - "end": 205 + "end": 205, + "trace": [ + "======== Resolving module '@reduxjs/toolkit/dist/query/endpointDefinitions' from '/node_modules/@reduxjs/toolkit/dist/query/react/module.d.ts'. ========", + "Explicitly specified module resolution kind: 'Bundler'.", + "Resolving in CJS mode with conditions 'import', 'types'.", + "File '/node_modules/@reduxjs/toolkit/dist/query/react/package.json' does not exist according to earlier cached lookups.", + "File '/node_modules/@reduxjs/toolkit/dist/query/package.json' does not exist according to earlier cached lookups.", + "File '/node_modules/@reduxjs/toolkit/dist/package.json' does not exist according to earlier cached lookups.", + "File '/node_modules/@reduxjs/toolkit/package.json' exists according to earlier cached lookups.", + "Export specifier './dist/query/endpointDefinitions' does not exist in package.json scope at path '/node_modules/@reduxjs/toolkit'.", + "Export specifier './dist/query/endpointDefinitions' does not exist in package.json scope at path '/node_modules/@reduxjs/toolkit'.", + "Loading module '@reduxjs/toolkit/dist/query/endpointDefinitions' from 'node_modules' folder, target file types: TypeScript, JavaScript, Declaration, JSON.", + "Directory '/node_modules/@reduxjs/toolkit/dist/query/react/node_modules' does not exist, skipping all lookups in it.", + "Scoped package detected, looking in 'reduxjs__toolkit/dist/query/endpointDefinitions'", + "Directory '/node_modules/@reduxjs/toolkit/dist/query/node_modules' does not exist, skipping all lookups in it.", + "Scoped package detected, looking in 'reduxjs__toolkit/dist/query/endpointDefinitions'", + "Directory '/node_modules/@reduxjs/toolkit/dist/node_modules' does not exist, skipping all lookups in it.", + "Scoped package detected, looking in 'reduxjs__toolkit/dist/query/endpointDefinitions'", + "Directory '/node_modules/@reduxjs/toolkit/node_modules' does not exist, skipping all lookups in it.", + "Scoped package detected, looking in 'reduxjs__toolkit/dist/query/endpointDefinitions'", + "Directory '/node_modules/@reduxjs/node_modules' does not exist, skipping all lookups in it.", + "Scoped package detected, looking in 'reduxjs__toolkit/dist/query/endpointDefinitions'", + "File '/node_modules/@reduxjs/toolkit/package.json' exists according to earlier cached lookups.", + "Export specifier './dist/query/endpointDefinitions' does not exist in package.json scope at path '/node_modules/@reduxjs/toolkit'.", + "Directory '/node_modules/@types' does not exist, skipping all lookups in it.", + "Scoped package detected, looking in 'reduxjs__toolkit/dist/query/endpointDefinitions'", + "Directory '/node_modules/@reduxjs/toolkit/dist/query/react/node_modules' does not exist, skipping all lookups in it.", + "Directory '/node_modules/@reduxjs/toolkit/dist/query/node_modules' does not exist, skipping all lookups in it.", + "Directory '/node_modules/@reduxjs/toolkit/dist/node_modules' does not exist, skipping all lookups in it.", + "Directory '/node_modules/@reduxjs/toolkit/node_modules' does not exist, skipping all lookups in it.", + "Directory '/node_modules/@reduxjs/node_modules' does not exist, skipping all lookups in it.", + "File '/node_modules/@reduxjs/toolkit/package.json' exists according to earlier cached lookups.", + "Export specifier './dist/query/endpointDefinitions' does not exist in package.json scope at path '/node_modules/@reduxjs/toolkit'.", + "======== Module name '@reduxjs/toolkit/dist/query/endpointDefinitions' was not resolved. ========" + ] } }, { @@ -316,7 +971,41 @@ "error": { "moduleSpecifier": "@reduxjs/toolkit/dist/query/baseQueryTypes", "pos": 284, - "end": 329 + "end": 329, + "trace": [ + "======== Resolving module '@reduxjs/toolkit/dist/query/baseQueryTypes' from '/node_modules/@reduxjs/toolkit/dist/query/react/module.d.ts'. ========", + "Explicitly specified module resolution kind: 'Bundler'.", + "Resolving in CJS mode with conditions 'import', 'types'.", + "File '/node_modules/@reduxjs/toolkit/dist/query/react/package.json' does not exist according to earlier cached lookups.", + "File '/node_modules/@reduxjs/toolkit/dist/query/package.json' does not exist according to earlier cached lookups.", + "File '/node_modules/@reduxjs/toolkit/dist/package.json' does not exist according to earlier cached lookups.", + "File '/node_modules/@reduxjs/toolkit/package.json' exists according to earlier cached lookups.", + "Export specifier './dist/query/baseQueryTypes' does not exist in package.json scope at path '/node_modules/@reduxjs/toolkit'.", + "Export specifier './dist/query/baseQueryTypes' does not exist in package.json scope at path '/node_modules/@reduxjs/toolkit'.", + "Loading module '@reduxjs/toolkit/dist/query/baseQueryTypes' from 'node_modules' folder, target file types: TypeScript, JavaScript, Declaration, JSON.", + "Directory '/node_modules/@reduxjs/toolkit/dist/query/react/node_modules' does not exist, skipping all lookups in it.", + "Scoped package detected, looking in 'reduxjs__toolkit/dist/query/baseQueryTypes'", + "Directory '/node_modules/@reduxjs/toolkit/dist/query/node_modules' does not exist, skipping all lookups in it.", + "Scoped package detected, looking in 'reduxjs__toolkit/dist/query/baseQueryTypes'", + "Directory '/node_modules/@reduxjs/toolkit/dist/node_modules' does not exist, skipping all lookups in it.", + "Scoped package detected, looking in 'reduxjs__toolkit/dist/query/baseQueryTypes'", + "Directory '/node_modules/@reduxjs/toolkit/node_modules' does not exist, skipping all lookups in it.", + "Scoped package detected, looking in 'reduxjs__toolkit/dist/query/baseQueryTypes'", + "Directory '/node_modules/@reduxjs/node_modules' does not exist, skipping all lookups in it.", + "Scoped package detected, looking in 'reduxjs__toolkit/dist/query/baseQueryTypes'", + "File '/node_modules/@reduxjs/toolkit/package.json' exists according to earlier cached lookups.", + "Export specifier './dist/query/baseQueryTypes' does not exist in package.json scope at path '/node_modules/@reduxjs/toolkit'.", + "Directory '/node_modules/@types' does not exist, skipping all lookups in it.", + "Scoped package detected, looking in 'reduxjs__toolkit/dist/query/baseQueryTypes'", + "Directory '/node_modules/@reduxjs/toolkit/dist/query/react/node_modules' does not exist, skipping all lookups in it.", + "Directory '/node_modules/@reduxjs/toolkit/dist/query/node_modules' does not exist, skipping all lookups in it.", + "Directory '/node_modules/@reduxjs/toolkit/dist/node_modules' does not exist, skipping all lookups in it.", + "Directory '/node_modules/@reduxjs/toolkit/node_modules' does not exist, skipping all lookups in it.", + "Directory '/node_modules/@reduxjs/node_modules' does not exist, skipping all lookups in it.", + "File '/node_modules/@reduxjs/toolkit/package.json' exists according to earlier cached lookups.", + "Export specifier './dist/query/baseQueryTypes' does not exist in package.json scope at path '/node_modules/@reduxjs/toolkit'.", + "======== Module name '@reduxjs/toolkit/dist/query/baseQueryTypes' was not resolved. ========" + ] } }, { @@ -326,7 +1015,12 @@ "error": { "moduleSpecifier": "@reduxjs/toolkit/dist/query/apiTypes", "pos": 181, - "end": 220 + "end": 220, + "trace": [ + "======== Resolving module '@reduxjs/toolkit/dist/query/apiTypes' from '/node_modules/@reduxjs/toolkit/dist/query/react/ApiProvider.d.ts'. ========", + "Resolution for module '@reduxjs/toolkit/dist/query/apiTypes' was found in cache from location '/node_modules/@reduxjs/toolkit/dist/query/react'.", + "======== Module name '@reduxjs/toolkit/dist/query/apiTypes' was not resolved. ========" + ] } }, { @@ -336,7 +1030,41 @@ "error": { "moduleSpecifier": "@reduxjs/toolkit/dist/query/core/module", "pos": 257, - "end": 298 + "end": 298, + "trace": [ + "======== Resolving module '@reduxjs/toolkit/dist/query/core/module' from '/node_modules/@reduxjs/toolkit/dist/query/react/index.d.ts'. ========", + "Explicitly specified module resolution kind: 'Bundler'.", + "Resolving in CJS mode with conditions 'import', 'types'.", + "File '/node_modules/@reduxjs/toolkit/dist/query/react/package.json' does not exist according to earlier cached lookups.", + "File '/node_modules/@reduxjs/toolkit/dist/query/package.json' does not exist according to earlier cached lookups.", + "File '/node_modules/@reduxjs/toolkit/dist/package.json' does not exist according to earlier cached lookups.", + "File '/node_modules/@reduxjs/toolkit/package.json' exists according to earlier cached lookups.", + "Export specifier './dist/query/core/module' does not exist in package.json scope at path '/node_modules/@reduxjs/toolkit'.", + "Export specifier './dist/query/core/module' does not exist in package.json scope at path '/node_modules/@reduxjs/toolkit'.", + "Loading module '@reduxjs/toolkit/dist/query/core/module' from 'node_modules' folder, target file types: TypeScript, JavaScript, Declaration, JSON.", + "Directory '/node_modules/@reduxjs/toolkit/dist/query/react/node_modules' does not exist, skipping all lookups in it.", + "Scoped package detected, looking in 'reduxjs__toolkit/dist/query/core/module'", + "Directory '/node_modules/@reduxjs/toolkit/dist/query/node_modules' does not exist, skipping all lookups in it.", + "Scoped package detected, looking in 'reduxjs__toolkit/dist/query/core/module'", + "Directory '/node_modules/@reduxjs/toolkit/dist/node_modules' does not exist, skipping all lookups in it.", + "Scoped package detected, looking in 'reduxjs__toolkit/dist/query/core/module'", + "Directory '/node_modules/@reduxjs/toolkit/node_modules' does not exist, skipping all lookups in it.", + "Scoped package detected, looking in 'reduxjs__toolkit/dist/query/core/module'", + "Directory '/node_modules/@reduxjs/node_modules' does not exist, skipping all lookups in it.", + "Scoped package detected, looking in 'reduxjs__toolkit/dist/query/core/module'", + "File '/node_modules/@reduxjs/toolkit/package.json' exists according to earlier cached lookups.", + "Export specifier './dist/query/core/module' does not exist in package.json scope at path '/node_modules/@reduxjs/toolkit'.", + "Directory '/node_modules/@types' does not exist, skipping all lookups in it.", + "Scoped package detected, looking in 'reduxjs__toolkit/dist/query/core/module'", + "Directory '/node_modules/@reduxjs/toolkit/dist/query/react/node_modules' does not exist, skipping all lookups in it.", + "Directory '/node_modules/@reduxjs/toolkit/dist/query/node_modules' does not exist, skipping all lookups in it.", + "Directory '/node_modules/@reduxjs/toolkit/dist/node_modules' does not exist, skipping all lookups in it.", + "Directory '/node_modules/@reduxjs/toolkit/node_modules' does not exist, skipping all lookups in it.", + "Directory '/node_modules/@reduxjs/node_modules' does not exist, skipping all lookups in it.", + "File '/node_modules/@reduxjs/toolkit/package.json' exists according to earlier cached lookups.", + "Export specifier './dist/query/core/module' does not exist in package.json scope at path '/node_modules/@reduxjs/toolkit'.", + "======== Module name '@reduxjs/toolkit/dist/query/core/module' was not resolved. ========" + ] } } ] diff --git a/packages/core/test/snapshots/vue@3.3.4.tgz.md b/packages/core/test/snapshots/vue@3.3.4.tgz.md index 05c8d22..b978ac8 100644 --- a/packages/core/test/snapshots/vue@3.3.4.tgz.md +++ b/packages/core/test/snapshots/vue@3.3.4.tgz.md @@ -47,7 +47,15 @@ "moduleSpecifier": "../jsx", "pos": 454, "end": 463, - "resolutionMode": 99 + "resolutionMode": 99, + "trace": [ + "======== Resolving module '../jsx' from '/node_modules/vue/dist/vue.d.mts'. ========", + "Explicitly specified module resolution kind: 'Node16'.", + "Resolving in ESM mode with conditions 'import', 'types', 'node'.", + "Loading module as file / folder, candidate module location '/node_modules/vue/jsx', target file types: TypeScript, JavaScript, Declaration, JSON.", + "Directory '/node_modules/vue/jsx' does not exist, skipping all lookups in it.", + "======== Module name '../jsx' was not resolved. ========" + ] } } ] From 8c7954a7133c584c38278e88ab2f99896a99fb01 Mon Sep 17 00:00:00 2001 From: Andrew Branch Date: Fri, 23 Jun 2023 12:05:59 -0700 Subject: [PATCH 3/6] Dedupe files for ResolutionBasedFileProblems --- .../cli/test/snapshots/@ice__app@3.2.6.tgz.md | 30 + .../src/checks/resolutionBasedFileProblems.ts | 34 +- packages/core/src/types.ts | 14 +- .../core/test/fixtures/@ice__app@3.2.6.tgz | Bin 0 -> 76334 bytes .../test/snapshots/@ice__app@3.2.6.tgz.md | 61 + .../@reduxjs__toolkit@2.0.0-beta.0.tgz.md | 1726 ++++++++--------- packages/core/test/snapshots/vue@3.3.4.tgz.md | 26 +- 7 files changed, 958 insertions(+), 933 deletions(-) create mode 100644 packages/cli/test/snapshots/@ice__app@3.2.6.tgz.md create mode 100644 packages/core/test/fixtures/@ice__app@3.2.6.tgz create mode 100644 packages/core/test/snapshots/@ice__app@3.2.6.tgz.md diff --git a/packages/cli/test/snapshots/@ice__app@3.2.6.tgz.md b/packages/cli/test/snapshots/@ice__app@3.2.6.tgz.md new file mode 100644 index 0000000..394af10 --- /dev/null +++ b/packages/cli/test/snapshots/@ice__app@3.2.6.tgz.md @@ -0,0 +1,30 @@ +# @ice__app@3.2.6.tgz + +``` +$ attw @ice__app@3.2.6.tgz + + +⚠️ A require call resolved to an ESM JavaScript file, which is an error in Node and some bundlers. CommonJS consumers will need to use a dynamic import. https://github.com/arethetypeswrong/arethetypeswrong.github.io/blob/main/docs/problems/CJSResolvesToESM.md + +💀 Import failed to resolve to type declarations or JavaScript files. https://github.com/arethetypeswrong/arethetypeswrong.github.io/blob/main/docs/problems/NoResolution.md + +🥴 Import found in a type declaration file failed to resolve. Either this indicates that runtime resolution errors will occur, or (more likely) the types misrepresent the contents of the JavaScript files. https://github.com/arethetypeswrong/arethetypeswrong.github.io/blob/main/docs/problems/InternalResolutionError.md + + +┌────────────────────┬───────────────────────────────────┬───────────────────────────────────┬───────────────────────────────────┐ +│ │ "@ice/app" │ "@ice/app/types" │ "@ice/app/analyze" │ +├────────────────────┼───────────────────────────────────┼───────────────────────────────────┼───────────────────────────────────┤ +│ node10 │ 🟢 │ 🟢 │ 💀 Resolution failed │ +├────────────────────┼───────────────────────────────────┼───────────────────────────────────┼───────────────────────────────────┤ +│ node16 (from CJS) │ ⚠️ ESM (dynamic import only) │ ⚠️ ESM (dynamic import only) │ ⚠️ ESM (dynamic import only) │ +│ │ 🥴 Internal resolution error │ 🥴 Internal resolution error │ │ +├────────────────────┼───────────────────────────────────┼───────────────────────────────────┼───────────────────────────────────┤ +│ node16 (from ESM) │ 🥴 Internal resolution error │ 🥴 Internal resolution error │ 🟢 (ESM) │ +├────────────────────┼───────────────────────────────────┼───────────────────────────────────┼───────────────────────────────────┤ +│ bundler │ 🟢 │ 🟢 │ 🟢 │ +└────────────────────┴───────────────────────────────────┴───────────────────────────────────┴───────────────────────────────────┘ + + +``` + +Exit code: 1 \ No newline at end of file diff --git a/packages/core/src/checks/resolutionBasedFileProblems.ts b/packages/core/src/checks/resolutionBasedFileProblems.ts index 9526b6c..5357afc 100644 --- a/packages/core/src/checks/resolutionBasedFileProblems.ts +++ b/packages/core/src/checks/resolutionBasedFileProblems.ts @@ -10,16 +10,18 @@ export function getResolutionBasedFileProblems( ): ResolutionBasedFileProblem[] { const result: ResolutionBasedFileProblem[] = []; for (const resolutionOption of allResolutionOptions) { - const visibleFiles = Object.values(entrypointResolutions).flatMap((entrypoint) => { - const files = new Set(); - getResolutionKinds(resolutionOption).forEach((resolutionKind) => { - entrypoint.resolutions[resolutionKind].files?.forEach((file) => files.add(file)); - if (entrypoint.resolutions[resolutionKind].implementationResolution) { - files.add(entrypoint.resolutions[resolutionKind].implementationResolution!.fileName); - } - }); - return Array.from(files); - }); + const visibleFiles = new Set( + Object.values(entrypointResolutions).flatMap((entrypoint) => { + const files = new Set(); + getResolutionKinds(resolutionOption).forEach((resolutionKind) => { + entrypoint.resolutions[resolutionKind].files?.forEach((file) => files.add(file)); + if (entrypoint.resolutions[resolutionKind].implementationResolution) { + files.add(entrypoint.resolutions[resolutionKind].implementationResolution!.fileName); + } + }); + return Array.from(files); + }) + ); for (const fileName of visibleFiles) { const sourceFile = host.getSourceFile(fileName, resolutionOption)!; @@ -46,13 +48,11 @@ export function getResolutionBasedFileProblems( kind: "InternalResolutionError", resolutionOption, fileName, - error: { - moduleSpecifier: reference, - pos: moduleSpecifier.pos, - end: moduleSpecifier.end, - resolutionMode, - trace: host.getTrace(resolutionOption, fileName, moduleSpecifier.text, resolutionMode)!, - }, + moduleSpecifier: reference, + pos: moduleSpecifier.pos, + end: moduleSpecifier.end, + resolutionMode, + trace: host.getTrace(resolutionOption, fileName, moduleSpecifier.text, resolutionMode)!, }); } } diff --git a/packages/core/src/types.ts b/packages/core/src/types.ts index d1b8aaa..8d57681 100644 --- a/packages/core/src/types.ts +++ b/packages/core/src/types.ts @@ -61,14 +61,6 @@ export interface Resolution { trace: string[]; } -export interface InternalResolutionErrorDetails { - pos: number; - end: number; - moduleSpecifier: string; - resolutionMode: ts.ModuleKind.ESNext | ts.ModuleKind.CommonJS | undefined; - trace: string[]; -} - export type EntrypointResolutionProblemKind = | "NoResolution" | "UntypedResolution" @@ -89,7 +81,11 @@ export interface InternalResolutionProblem { kind: "InternalResolutionError"; resolutionOption: ResolutionOption; fileName: string; - error: InternalResolutionErrorDetails; + pos: number; + end: number; + moduleSpecifier: string; + resolutionMode: ts.ResolutionMode; + trace: string[]; } export interface UnexpectedModuleSyntaxProblem { diff --git a/packages/core/test/fixtures/@ice__app@3.2.6.tgz b/packages/core/test/fixtures/@ice__app@3.2.6.tgz new file mode 100644 index 0000000000000000000000000000000000000000..b86e71c2bff35b0b2c0098f5661aca384a7d939f GIT binary patch literal 76334 zcmV)6K*+xziwFP!000001MI!~dfUj6IC}o}Q^2!I2-*}V$+v_ajia&Uj1u3Dq?y_M zBt?QqNP`p8K-PPUI-PKjqb(zHdPw{Ee z%_hnC@`hDp)S(@FV%-N>`Dvhwut;{gAK$NhKZ$?BtL!OEj2Pghn~pFUlA z9IUK9S$*~dzTZsq&Cj$b;~cv3wQ$_Q{Z5|n!M&H+Q>4;NuqlX+V}2Fa#*8z zc@@BXohIdOeB2Ah)8WwbVGDY4*$b9e-ETjq<3V;&sdtuq$g|Tt9`%B6{+eZ{&^g`< z-`u;Gje~qT4xsw^y&x!(5{v)1{U#{0AT5(ou!>!#&+vVDIoKEuvx^{4{y9yG63{YX z&{+OB39?C_g#qwy7B_*jM-h|9$41UH2{$0@z4idmzt zpnlCp{pM&wTjp4o*cu1@7`C&G>WjDt##!m&`)Ay@SJ;6Q=t>ZegG54vzQV3hqntYr z-}Grw_PSkIKv2K?&96BpSR41YLZz4)UJai)GtDS})C*qb36!UuVd45XE6)r>$52({ z?;^<)AI@o$#S$27HGnbAhxd#g^Y$|qMWxGXrz#MFNTx{(!(EbXwr3?r!ZY(>O6du)7%LPI3H*lJ3Nma!i*Rc945M} zST8hsPBmC!7-}PhuPi%$0e`h`ns}-SdrezIj~dTHJ#x?XIEjZv zVtjxKaslJ#WjU{TGJ$oafc~ryWRhun!`P5kj3sP=+NCWd;9$q;uof+-N?w@e&xghm z6BmKMC+q-AZGZFG1u#S@<90f%;xtwHqS#$?+880J4lH^fYM9IhEOWT+u|E;a9 zt~&DHv!`p1?&QDQc+wHhc5ofwbibk54rYAHwf+JkTo+F4G94wY=l4X>2S}jdaFd0) z@VEYoV0h8I%*H3_sVEh7^@rs?eQDkM_76aMLf!BdfruDV(GISc|M153tJ4e1?R2ks?p1t9`39y(ZetAF)Deo5P{cFE{Y;|YCHGDc*C=} z*d(g4F`2xAQap8shp;kwxKtuNg&oz*?4DQv_nTM1ybAAkaJAm^&Zt_1BlXg^0&%_Q60lA>_w)=OJim8O4WlgU-~qk{}#diVlH6L`MfY*oM)9|H| zBl@J&+#Dt&zCg<3Q~XN_74W%VYI)%rnTD6N&VYIB1g8o9D`bb6;)0h0kVOO|@j-FG zy3uSj0;Z}XIF3TqjJh^YGFOZd_(;a_@i5uWrm!O<$1W=J0Qr+{g?@5oan>MB%qCYlz$%=(05?{fQ?nmE0>8CUe_%&hw!2OT=Tf9+>3~YmA{CNCDa!$ z0vwq74T1{1YPFCX1|E20fC?m-U_gwRcf3z1CPQG0`)AYfr-H7hKqMfRxdhhoA}tdB zhM%ZKoX<%%#_AX8a2Ozw3P>9LSX?ekz8ckggJgngr)-Q3j*^Qk{}dcg#{&?Q1ZH5E zFy3#!`?mYt^Zz7?gGZMqbml(izGX!!szR^6LrHE{T@xSjY$Bz+ zfcbI!!{z0#g}f=Znp8ydhU1^JjwuAYd*~0}nOmnL$qCkw>#0{=$YGm-o?Q(9TTlYm zpZG!Y4SpOYqb$GTid@2c6a4ZEE6-JVuY42Ki8UnsTKKh4q;P(H&s6}(oiBLmwxubk z&<9Z}P=dLZ(Glh_>%$;KN4Bl18Zh(}A^&aX{kw=KKRvk${dE`{Mnk@#Ms_ESiJloW z!zALNTvWK~Y0ruC;w4%P;M&zEPBco&IJ!uVaf|Skx{u>+59T&PnpROUkBoaE>d1i66nGHYL^GuNTUS!o4=IBa(X(34JCobMUj-n+jyLwB!%qvd778gc-Z5Q%OmkM z`dDOR-JfQ@QxxLgj_RFXN-d6Hk47I0HE%bgf}hXt-nSPBVCYpwwhZa`V**U0Txlbr z4ZUEy9b$1t!rV+wG4OoDE6L=E6~@YbOTQ}LIs9_&s$G4n^!dFn;VG z+{)(o9J`aN6|Oo)jEH(2tgo*Jt(~2}w%UT3o8(zPDS)`c&fj{udHC}E_U0iJ0B|k5 zjix(>S&$&-)L3KNu7SNw$1tRmxSxm(BsUDgkyD5o^B29~ILn4fJZ9X;-oEG=dlo-Q zWW4AJ>wxEEj)$8K;e7A=Oo&Bs(Rw>b3*5-Bo}?l&W96M4Ab8wazYX@HUIzXQDR{md>%qB#jb3cCNX0%xuK zcYagS-~9W(Cy!kH|I=sB?&QB)d5{NBPSSB=@^<8!kxkef7|8J?D~c3Y7c^6x0yC&s zzXw>-6rValQXEgyA!=p`svu{;^CiW&RR(71tJe(#$ zG3}qB+i{x zVO{Ylxf1piKmg3P(XawOA}hY`bW49aJbcd97QdgH)Q0{4^&4M2^X~tiK6~o=e?3{b zyZ^tHhqfPV4fucBJG4E3As8npsH68%g75hrXF5*dL?~br5s`ouBL(oZ*rC$`HixOa zW&QzQqwJ|vBeD*wj2r9l6*SZlysoVJj@dQYZsq&W$uWHvP5kkXRvT=d%`IFc$5rq@ zC&}f)^^?mgfQ@1LHXWyY`?Ls{c$hAapav_r9BAKPmC37k+)v)7{XAP7=rPnAU_Ag0 z75%W|bTHi+#d#@R$rgl-^_B~)C|umCu>U@d)19+yim3QJ=%1iw0W}FHweWvVUY^C} z=R?0p`cSVK_TO_j{l<%SmkL*b{NK~G|B2^|ZlInAu;JdJJ4Qc=J{Ek6kp>Jl6J41H z|HLY!^W+917pA$cjAaIVyl&hI{Yv1(HhYDVwlZoT&41F8X3*bD?Q&eUYL7eNu zJGo5yQ=}R|9tyhQ-AUl2AHq5O7oZ(7Z>_NkMwE`{o;H(Io-TO)OMqXfLlP| zei-gwJZ$fG!|+9KfADZWYCnX3+WYP3K@dF%(XHdBc$~EHvsaH9U~8GQ_X@pib~^N&MbuE@hm!y$SmTUQq? zLdVBfM!Iz6dPS6TN*F3}x;=4*q}(uqP-Dbawb|Ix>NTw{^?+ccZZ-h2N?73V>P&R` zL1oVW-An%NF`gRwPl{gqCi=^df_eJCmB+6A{|X)ncl7@j9*=sQmHZtFlF|v*eoxx0 zyXSMCdjB8WYUFEJ!MXc??XkQ6*B;&J|8C`>>o?PA2#)W6cc1Q_+k2YM|Kh7XfB2cV z{~uNSf1W;Gd3Lw|Z{uA>6wsYzwe0Lv}+y=sR~~ z_0;WuI|Rb78vkQ;ZS{$3|NU(B?*9K)9u+xbR2MVjW&&$`d036F4UzG=AvwM{pav^) zY)GRU3(8?>;0@d6Uo~8W)u>@)ea{)%4K?@g-VFZ>pBnm4y1HA_|37|Q(f>cblmBkz zQ7jURf4emAQV(BM@hf)*!3heXF)q-G3^_FOZ4F z16Ea6N-#ZRn#Fu)@W-Ilmb&Xdd?y@53{qa-jq91=Rzk&$3x#zLLcXnnfd-wLnpGA2 z?YHP&K>kYW%8mCP`>LXog7`?TmbIYBL72h$uQWtkM6Ev<*AMap;OU2E^#Xt&_9cW5 z?hV~i-aWt8Bk6xquT2(2CzS;u#WXIb{i@IO2$q@UM+X$3s^sb@G!(cv0GGP}j z@5!PEx-2q8_jS>>`e5RnED)_Kx<&+x3M9DheiVNErEC}BW&6ca*TREUNuqXrT@TbP zOrA^DJm~hGS4tkkGW=w}p53edW!Ou|r`x6A^gURmmskJl1+8w8jgsyl&0E2&!*7?I z*De6Dji991Iq+BOIe!yNZGc450P>qaj6w+o)ey_f*Pe}}Mszfwq>HD2PYbC|&`N+-N#>M{9ROY$GHk$$ciaE*j{)Nfm>=qH9in(~AM1buR7?K0s<|ful!WoK zCJxR?S!Whqe=Is>(fL?h!atX@qfTIc7R-`c$T&pgIdK}HM{y|I={P9tUkrMIH790o zJ2n=@g6UCwd;M+J-dhnZFR;uV4`(5uh#MqgGYTDROY~OqEx@tF!(lS)$ZFfkFvg4^ zTwSaplIL9qXN_m?1x4&IO*2Q^DG?%D{$7Ux4mF>#e|6Qby8NMM^Qur zI55A9t`2t4!GJPyz+Yk8EW-Q1TfmPlWK}CH85P%!ML@xH8ND))YKV+X>%vDHSbf-_ z@xTJx30l+gWcg23ZfF>fPvt6?dqXuOc%fCN#i59MCf||gFTp`G%d%)8nKEBowp;?k zAfRC^<|7f9sHV!|3`Hz9?=cEe&A32XMW-0WpGk8(sZtb=91#T$UG{rK`6DO`Vsa}` z6>dXDu8<2N)l|qOkeLxfnzh?eUj)a{k9~qNFy!3rQsxROcu5zDXhLsH8_EY@0aBQA zSkQt77r--4LSAg*)y^d8rzfcq#?F4EC9J4aQ_Ah)JEo9M6VbSOs)`u`9An%!BU72T zq>e+zE#M-8by!(Mb^StP`-;2b<6WDF!$tjS(*IB+rE2GOG z_KO$ciyrFZ+ArYm{p)aV|Kh=ZaXsrCJZSIF_KSzetieBft#1xsH26<q|ephU^_>l?wxtOVO59fd$WFur8i>a^PWCQ6N? zVU4*1xUXnx1k$?!qCK}dfl#%Pit5_U1DZ8_ud?O!ZJ?5Gw1xanHm`Ak+a8EQ( zc!ev}P`vE5Ro`sT;a=6Boj@Nf%$R;Iu4Gq@=9C*BF{qB%dx=6X7Qy2!xlD_)*g;;% z7#Z<+=9#J2%0eS&a%vvRM&++x3$u3UK$-cO<35f&2$Q^W&Iw)7F|a5nWa|?iVVI0j z`Y-M4cM_vQjze^bu>^+B=E&)T07+TRs7d>Cd6s7v0lfEf+4dn#N*r3Wm}~Gk{PVzK z(Y}@Jm9Rm85)U6%B#+9WCMz*7;sEVbT6t*xYMV!)=CPX2KrdIe(8LJ}@X-V>kgON|Z|D(MD+12X zS&pd_q3b<02CK|Po}vUq6JUR#W^fgzFTP36lOcR9VBw9+%6DWiQBl-FO%D_UVX-Bn`|37mlAzmFZdPf!Lq93> zVo5$YtNt$@^vg%A6#qxD%&H$}?dm&NOQ9GWiWhqaPMHH!h&4B;MdFTj00$Ju8VFTF z32>LL!^&O>mU$nwqcVG)UM7QZtvwqRy(8Kz^0>3Mc7g=i+}>4c-FnT$xy)!PgsNWh z`%$Z|(+t`pm1jAIWEi|MbS0ta-%RWNYfD*l1K+%Xa}_qOP`itb7#br69)5FNOmmJE zQy_PK3@1d9^3shB6m>0`ZQK0i>f{IzGvw8hR_PkOZi(Mu(v&BPC9* zp@!=AL`d0W;9%7hBgCV#9}9jT6&OBxsR}URl$T{TK;z7E*QmKdQI|~nlc5H*&dge> z|1`TsoAP?iJt2wv6kUW(%6}mvc18*q3Ciq5RnUiS;WTl`c`-dYijYTO1_Fad$g+P; zCk5}VMd&C#_AwyGdQdHB682qQ{F$}XzIuC~tZOj&;QHVak;ZKuW3HBZJ>M?2axaiT`M3YL z!3UROPpw0Lxmm6Lf~G+9%UhJ!1E8&?x$+@ zV;PTc?Cfmr9`63nhs_-_AQ$^A9l_#bcC9rTpNg}j^>LECP(M!76ZvOxuHL5oO#X=} zBIMukxhf6dN68?K`NL@P*eEa0#TJko`R8czNR^1s<)0_RxUYb#KT*e=!D%guXD26X zFJ!4ClV@V9ELGRD(&!g)i?S(oNK?mz%e{Ox87K(lCB9Yh%?YDBhufRt{zu+Q@9#(9 z(zStaVd?ryt37Ln`};4V2kjS2N6NB?t$#LX&kOS;vKB>)E6QHJ1?;O5&e^$&X)gzo zZ3(im%w$9K7XF-0Li%8y7R)eZ<85)Xdo5J;y`bxhe!tX3`;9QpPYaJSg_ND}i5)&j zd*2vJ-*^67;dk8!;r0U6g#Q#rEEGUS5f#+zvNMO~t2MXR{M*Ak^KGx2eF-TQAjZ zs`#U)K1X&~WMQ@7k?AET-lBC-d-yLf33}H7vW32{W_jKo+SNuVrY9%qWq<%*%x>eOT&C!JQc7?uiZUQjPhmOexJ{XRU z@pJS7N*r2gCZRykq1YjEg|jR z;1&=+(JaKAhuPA#u|6!D54nDfF8Nl?Jad(r+0a$Roxf`WAR#o>gF2$Paml(`TSGJ> zAscp<5{ht5tO9^(WdwHju;4+oM`FXD4)&nxL8UmaGr;vt&Y+GFKNEdfx@Pm9rE6o7 z@F#R?b~M*8usWHd-{?ZpgU%B#7Y(!Q6CBxkCTGtPg-;)MRJ&1`?J)LR{0Uf!#`YID z4~|$lsiIP?gP7=?5zt*|r;)19r|C0JGwt}3SDByZHS(C0iGE#i?A9Ms{zC`PcswY& zeD>Xv{I~jOrIP>a@zXp1zuS2hlK+~#I>-y+XHL@R^ZOI|`$QZeT~EAk^!5;CJYF6b zvOy}DYi9@P!{ik3_*RHMzfFn)Wl+DHg;U7!xY&C8;r;gR;oHsK4d4jhz1rN~-0oO! zcQ>~Gy1Cm4wtsxLyY+VSaQE$p!&h5SXlHZ#r_Jrd_do7__;HtC{k-|T>9#?KSv)SS zHj~k$yaEQw?X7%oBPq_u@5gvpaCVPPO2|2I>(&&rKuIo%60x`dtd94fozwhc@RRX9v8 z1~S)VSrqH$$tk)BS-v&wfwV3qguat~$B-7z<2*QwJHg>G{MU#72KN1V85d$-VQMl8 zb}kn+T2Q6qG5%p@8tdrXVjY#*r7&Kg&nTar@+F2t=D$ffYW(i7?p9@&gF3qVUY zGDsX32h@c2n{@%nV7Ucr=pG(nMTSi!I&PJ9c9HeXA#L79I1$TFac-nr*3Vw`Tsf$yQv{l;yz-v! ztg6an&f`OVT zT%bBySXzalaN>c3Ai*=(p-rf+kq}Im0l~Jx&X87hu!%W0r%%_$r)X8H;W2KMpYFrA zNHkq{Gt6D~*emJ+NX6#er{bf~wC?9WYb>RRbdhbC?ycu`6CXTQU>n!mf4cYb3n>cb zcADlRDzm>8**HXFzo9f7FuFr#25Kbu%eHK+c89FVCC|+jbv!AL9)Nhsgl(Th7v&n_ zb}gGH`H0!Y)ylWlZj&-J9R{cK`SAH>e<8dwPoimv!Bki;tE`3E8U0~aB#ZMSnDrs- zE5=b=6L^i!mAkXr(<5!{c9zXFjf5qsPQEyS=&=lZ5)vLf8pw zELoDLv*f&NqGBgJX1F~QI~DE{(@o>5fx}JOwTO!YWRx$?GMPc;tQ-vu(J`PzrWQ0a z|8Xz4k4w?fn%Y@6^@zj_^n5mA6J&Qu?HlW@xreGFcw4zqF}JTwNXF)z zMIh};3ynjAXOte4#v*ZoA{fgWg|SgG%JM79MFW!Iz}nmv9-P-zeCPs<$HKwmpbn3N zsH%;q##yKo2^~S)<%|iD27M83CQ>R7Tk#1hDOjH&PJ)){+Uw9}KgF$5X)o7W$KuxU z=r+OXI8%M|ygVVu1|%1u$UqG1sCe)U`29Sz!v8@yeGxr9B))54-cYd-P-9|ImuQv3no+ zG~fR`di?n5nsfj2Xl-rf?*8XC9yk7X^3Q3S>p)l{TCLKwgYZ_AFO$4%ytkoJ$zZt; z1wEHHP1i}oY(Nek4bZuWH}sc#+fW<(Di`Bix5pit`5p1vS%<%(Jo3bPa{KxVjxs$- z`vB&3mQxXhCRvJVi-?dimXpwtcF;1u!%2z_%?46`@y?E}BCLowsj->)&}AWNFW-S* z^66FaA#-}4_EFRmeWqe8i+FU6qAc~$BdgV4)vLceVzb%sI*;CKd)7DPG!4`?!4^ek zDyyWy>j~Rb-MFxFB;PZ`%m8|j4#*y>r)I$9XG)o6OiituDC!8 zREmEpU1pA8;XV(Hw%sKl`TSn6*FpiOWqQFi_k#14eHG>y#22AXwk}~TjJ!c|{y|yd z)b*Yf=e0O&b>|FB+xm2*n)r)GIWc-F0Y&n%hI22Ymm!Hgy6k5l1DI&e3Q>oN;|v7g zc>K$pRi!YAGT2O*vK=PyP&-5WOI;1_}QIRic;o4zj?A@_jmFWhas=FP|P@au@B zg7QTjH~L^e`b@$JqSTizL7w>L5o-DUOGapP(XR=Zv&-`A^6IN5h#-8~zTvh7gvGm@ z4X;kp;qXSbgar0w15iEDa26g08Vci|3ok8S_a%@TrwIMI&XAV@y%yz=8MQPv4KZ`9 za`O82L<5q4Hri+-b)E=kN=tGiM-`u^E7p+h|? zh7&3)cIyi-zDZV;{bKP`)tN#cnhkPDuxlj9Mp7s`r9do92n7wO8;^2`X{Lnkj;~oK z)nfhtxugt`SJ&jbjU2fs6Q(rA4*5MgwF5!F7O`d77-z`qVe++^>2HV}P&xJsWrGYL>NU zLyx^XO7sCkFd{J}#<&w)oS|jLAT7xBR+LFGUHkdm!8Ax(U%1Q$c{X_?!diS4TV?{P zbqE~d*TNgXpv=jybET>@qj(6tV72-MXo>ed2A$~zYt;`(b$Y?0>IXUqd%@#c{hTuf zRE5%5_RMj6T+77b6_s$h#?#R;a3c-wi4A9tyHZ<(iEE~L&47tFHetQsnD{wUjAlmWjY6$BH5e}p$TDsOBFxI#i zkSDav7ukK82h@={yTS}YFiCq$*B+b+v#Cz2Jv(s2dn~*sg|^>}B~`aI<2;YAJaQji z{#rZ`8$E@J9UGrV@7}-KJluTu6EDjF4j`MLZ3g<`5=R&Gf;}s&{eJgB*Nh3~Nx&-n$1NWx_QFYpqrhU)bsjY)Y z%r)3FmqPG&ti-j$8)T$mV(jLv?}%BqniM9-)Pf;PwFQ*=Y-v@OM_bRxfUFx&;Y z=$nArU03a@!TB-Vxhj=P7aGGwMp0xHu0KUo$(qw-kHE7?*nmATD1gF)W$|8Roi~vq9Be(Kv^CuEW&|j zd3u_Tvq$A5?y5Zr|ux@7v0loI!L<5agp|gSHOQ^ z^+MtOOO(p6RDZ5pdg=l_=(3Yo-jTel2vA`RGOB=PM%e_5{2T)$pIY}*3tjbU89ndP zy$L?p3)t%2jS;qfo)yJ=T1;rU`SqK{k#4-ZrP5|SOQ(VlSO=_lOP1xnBevRtb6fQp zhFHu)e3)ZawxC_b%!tg}AEwMD)LWBtoDKu3jJ<}kDBJ3Gq_}s`JdO+m=te+u>W}OM zF%2C-nHb~D&H*Swm*<}~I()oF^8(nH+0Cn-XgG_nk1X#uBW6z52|%5N9)9zr8IwA4 z3=)q9ojwXhRYZIgZ>0qyGFH4KnsGs=#24T~hreP&WCYW6ilX+03Mp?457kBdQ6X_- zlMGLmi}ZAy_%$OkVoX87CHGpC`2~NrJb5GJF^=EOgIih~=-5(~9$^ibQ2G~hkQfcs zoio&_XfiF%sQO&479U@rBgX>?H5=ZH+en+BC`TO@zNB_t>IVup0VnrR;X3M2^@-DR zS2M!OhVW|mwUr(APd=rq?%f=4_{Re9>{aAPKl)wyk7;OQu7a-SHdU|8x=UNTYgLt% zcf&SW>GS3^;Vw?)9KA%->7mXyaRUBmdQD+a3gzO=zBZPPq3P7D;$U-KEBv*SBAbEp zA2PF?$CnEkhDxuD{L$A|m+bg<>a_0Q414{c1%drfbc8nje`V}UHQXC&quKv=ZEfw* zN;UrL(>wp)+jtg?|Joe>l@j7~RBD`R+|CJJqZJtOnF>_He#$&w)vD-xWR)LW0qIKn zTcT@rY3rjW=<5ePL?_ZKC4;s5RSDYqa^vL>oA~G4IIYs3`px3uPo*W+F;m%cuPk4t8Nz`qFrM8y|B94AU_GX2n6o zsbra7Gcp9*CEEL#KsD{pV^ zynpl4<}1orQlF^~9}tQe6%9LYVa=M6`mwg-7I9IOWpUk_#NPd1ja1aHBVRAnM0i^@ zr)eIZ7Z5cxyn4#52-c#+N)jc1S1tP2fE%LT8W|N-$kf^d+2RF^Y8{r$yn~bSzYbch z;__Kr*Fi_anOEKRb70wIc<;dZ+;j#zWXx^I{PfE&7V<(q^EE3JdQ!-?OiNV|IFFXD z?JO{yM0*yEJ{Cvqwk58SQb??QI|x{n7coNXF21y`13{tHEx)iZ<$x@eS@4~i^#{US z>c0?wqsy4Gv#U#7UDr(|C~&= z9DNY80Ko8gR&+Es;Wxm8gUT>adl=pui{hg8Zr@lu>X0q-sSln2( z{z8Qs5RsGp)_u+{P%J`S=v=ub=kUoGwhr0Ocp@+$x3HCBl4Ap!1yHOo^A;LXkqi~J zZV75(3!0FrN{m#~PQ!MPS3YvwuIYhrdsu+Z5^r|y7MdJG5!t93ktXFn8Z@6~E0LAR zwO16F9X8W(vqwrLht3|Ai2WjrsvN3bNtIZvu+PY3kE0lZP%shhVdN-CcH4{)y~ErU z4NPS^APl4!QIow1LXAk|sjV+j+E2{D_8PnToyBOY`->XP`;H-IOj+D99 zIy~HZxq0~0=Jw9k`*(+jZdxs`U{TGE+@^m-*uvO1p;q4>X~qPtkw3f zqf@lk(gx4fkC$If>}bYP;qC6E4ILI&%`43cdepfSS~W};jR`@fuNW$^2@Fu=3EdLv z=$48>rP^;Dw5>SK_P{DIx!7o z`B2XWHqCSsQsyE?DvlbEGZ#U2mu40baRSl`EY_V1bjJ|9-umyin>|)u-nj4KuDXOv$3Mz6;5Q!(vrBaN5um!J|FBr#UQQ&E$4}0 z8;AY^NBq2DaEuZ>%v)`@Q9a+q%`{ydYHjn@QAu4EF<%a`2aBDLmD!%dnmFsCfkV;U zLC-%s3o#9I_=GPw%C%CjCWgtz@FKn{*yN8Jp$VnS9ge$jWUY@QsZ59MrIhR>uW?)t zmJX`|oB#B+2_<3PZw|Kri_k(njX!b6dWy3GNUg|d1O{^NRWw>{r zzh`_P?-t_iE<`6{y=F;^NzzYGuJGg5pqj^xD@mq+@HvXFm?=O>Y7kJAfBqsItu)4n znLjB^gENO9Rt(O>2!VzZ6Fcy-tRkc`-5rYX`5LUjB=5EKJsohtB7krtSY-`bG-}}@ zc!4eKS?|!RM|pwF9Q?Y0{};xw*tR!_wme+H8N;D`J`HN71R-Lp|VMae!UNXm{ zui-;izwDK&%(}mlXjNh58^lj4+azOEfh{6#)sMfj{(mJT_{E|IOy~+t=%@kv`6B2S zWIw5HMT5DKSEm-ktZ!6(g04p>n^n@S%P;@itn7ZfkCXpHS~A^e8_o8AE00&6x%PjL zo;-VeXa9E_PqY1>rAvCX`Fi8WH@kNi2lz7Rq2Ka>tK?S-)>VXEr)V{4 zFP1gaj0jhthI%qxuUnJz#8unWW{T!0-P`*XJB(BY_x+DsZ(eP^JKWrPd-!Ve!;W%d z;&dz`S8K0m+rTXH(Q5q zx87}SeE5Jx;$gasF#_=xr~>8X4;#Bw_`~-5ziw~5WthOkmsAJD=hHkMx%IyPpWV$@ z8}C4xe!KN@`@LxB_^M0>7_SVf_Vdis-uD|@uYNq-dAqT_YqWP9r-SKoF^coDroF%a zxUseK!}}lIo_?CfX>pcKoBAp+Ay%871p`YR4^>rFcTX;=b#Y!cKa);H`LDqL zOaHP9id#wq#`1ts+B|YVef$39-w$7Jz1ckcu(7+lx&6*a>!(XH07uQB91-0G9Ew=x zZR^q-BM-5WoV?Z{+e|C&IbOEoo)FE#XWa*_F%)p5s$b*5xLcypL+PH^4vhRU4I?Eg zy?LIn<>y`nDIKr3j(k41$L2FTkglKB&4nfsWJi$vvx92kPB5-|boX_r+wG*liCO1g zbe&99jSf2cTBDk)k(0AVMNAl!O0l5HGphS-aL;1Amgbq(5IpAQ>^32b*L$nVr`yFq zO~5EtzHrn0(XkSj4_dy3xYklAu=*VS`Id(wLNVi;hw!B#a*1-vMqKQr!E&(badbEO zlV=ky9o6UU;iBg;27MnSXrxEXFwfFn>T}8@FGDp zVSz;o+5CscPn_q~UC4D;eP3|DDD|U>w2TecR#w_Tx3Y04TCdmgYISWDICeCwy_Rs3 zfBOBs^=?)=-I?~|ZrH2>GObs!&(&8980smDk6NFuZv)x>z=Uy-`>4!NrWz(cP9{nI zGA@#kouxEbQPNKva%q|)&#cg>IHAY^*axqbBn_Iv%|^*((hqqVm9C*8ci1V?5GA=b z1VN28HxsuxRQ)r86v#ZNGt*69Z)DhM9v6MNccrHo-Xg*~85bUBWW{5krM4|MYTw#r;v@|fTKQGrd&0*G8E&FTquly@c_vibe0N6B5ggIP3Vgn?gEpBpcO1# zLkDI-%Q2H+0LrNSF={>QzQ06xP8mG~Utx zn3wzpD%9sUlQ7)ejvtzRhuaf={wmp(TOlxe278E?k1MjcNIDra4 zbYw{>&IlEXD&P$Suwz|D8|_Ib_HDHV!y`}4m8B?niz+R{x^(HaRgi;3R|?W=t00?S z{hS=D!oqJ1C&7a-vShBn#ka1|_p_F9ObO3;?Vz+s%FXe4Czwvqz+{{8Pj5)X$?@;M zvm{_Ag3nb^w+{k{2q*1St9-8nu%M|Ix9J$BsH1P?Um@3<(t)eH!}c;37}|o;=18GU zT!}Y^r9id1t0eE(*Jm>mWHnrcSfg4(N$kVn6CAUZrle!ot*TUPNQxhhnK1vAV6jq}- zQL<;|N2?a0^ldy&Ps~jzaAJO&A8BQ7pcRT#g|q$AUdvq1`D)dS2Ll<6(cOV! z;)&q(`Mg=T&!5n|DTRZoEz2Js4$@pCt0fJL_!(MfT%|hHXG1kdxg^-7(C`@-#7_Nz zLF0m%WK211hpAE_S}Ql-y1g00){x^|N;{$`vONb%v5HY^WnTBHVRlIUCW{qayLum} zrP?fJeFJU>qweNOrKVw;XN)w`A-P(}M~Z%jqq6vA^s)E_{(=APf5d;Xu}meQ?Xx+A z5F2I#OB_0Ov+@+?0_xB;6l~pY@QM;;W*~QfWT1vFy<-c^s+K250p?XWV%=eJWOy1H zL)T)9Yw*qY_N2&jDYDrWGgXuXjJ*QXR2oDTpE)631>7}))MsNy7^Uhr9IarE?y)i) zxoE8xDVqk`RtUkS#RL@Qq~)EJjSpLv`6Kj{>1Yp=gD92@FT^}rO9du^dIpCUwoX7o zOE5gKH-QlB2?uypE*{tnU(e+Lqj&GO-)_8_8%YL_Pe_cAuVSzmN)JSwbM+|7rEGje(kqb7D(gIeCXyhzzVjUSqsK2e1MAY!L z@cA)%uRnOoOX}{_k*{A!NXmR-MHH26 zrNh%Fm;I?!*3iZXt?)z@Cj?4xWAvrr0>CU5!Pr7mK>w0_3RX0sj)1?Z;#GM<3y};C zQ|CID$dT0gKM>kk7){vSVaE!NBXUP$W+{)?f{h5zO|xgE!z3qCv|~fnJ!62L3(bbm zUq;1B>@U0h#lkRPT64^~B7$$D&(07akFye(dKqUAK3YNcEC@C(H!l-hb#mQv$gxI@ zx|o!gJJfTrELc8)g@8u2Gh0S8w~W|Z#(f<6ZW>a{MRIKUUg{uhG(Z4vB1mpkifXQO zhM^q|j3Rn6%?K2eC?dds48iR<8m$Nj!6qyO5o)8bsgx;#M2d-(Wo6^lAO%V(BJvlT z?`+YtU&4G) zOd+byDbTwuReJUpa(tq!D{?wVPRHqBX`xjn;SjbBsxyVgU~AGz^xoQ_UFE|?ySz9xc+EFf8_+Q zKP#1s)2N}BteBC?eI%S^1N1fzj*}BSyz`{UhUb)WNcz5E24m44N$tFO#eMPZey|xG)(8`|8 zQ6O1CYsg2nNB^r{8uwJ|9yNVf3)b={^g19K%^5K@+y*Om08W!M-Qoc0>nYr8>B&bI z7ZuyTb)b$9k&plx=BfaeKxx14_s(=8Z-mTb3&e!V#mr}aT%>|IC4WzGR#L1!T*n|@ zoFqAF<1oLD)-9U4Q^bwRZm_4jb%1yMVR-HKqJvTb1^?@`P?>&=fiD2%Mu|~;b)2wVnsQLgDs{LvD-hdOUfSC%7bjqD?KLLzZcffl zFcDWKoq%&|^)ML*phaAJV+*=LvmyPqHfEg1fc4}wDs)aF4!3(9^e+ZIZCl&kTRCvU z3hF!Cb>|W{tTJtdmBFTZ`>MNRY` z-zu87MI!CIj9UokX&XTcjUWy-#tOUwxvwWFD&P%lbo-SxqcH7w-qJ|0wurQDtT!_r zx%0Xjm)vN`Oq08Kn0EGCYGbb}Xnl#ELczCa1gnG&tN$jg65>>fQ{Or=J0sdS!jKfn z7;6vcaHb>zXYo0v6A;lWI>;!k1VsIC0*3c*?;Cl;_$NbeL` zvlskr=l#2=kd1}aH7aEp)fis1cTJy>5fHBYipgZpv&tm|vz&plt3gh;6ZheaF)%!0 zW;{>+2Bb-DcHWvo=Wn8GlPHBvJds&OWs=^V8UajMq;PL1=2dqX`qjtcz2IgfFJqjU zALH|wtqD!6=#$hsy7X)FuHV=J_FKK;ZBbZ>(YTVujTLS}XFBy-Zu={`3l{UbxlF|i z5s(Z{Q5BbnG-|ZDq9ij$3R%GBLo)WL2)ckGf-)^%`?d@35 zphFWowAsSKu+`|*TCWI{)U5^)L_YMcincw^hH<>NIBy7%G!{7KcKr zc4U$Lj!bvh$)V%0=^jX$>u@!p?rm1cFkuzh{Dt%jHrro}E7@a+2fe^xS6_3#>iG|9 z)9_6fKnw;Ya2uQ3MFU=|RmbX(?tr$6vd0lhA!%_eZZ#~O4OZA8qgqx1zrqdCMj>Js z7O50c+zT%G-U=?D-vKZ1(Po^*0)n~-D|bpbm1|7VN|X}+*RUeE)0V9WeY`-Y@cS+A04hnE9oz6 zFFZIAZJYJbb2;^S)`QmBX4(ZBNJY+}=TqWa2-2^SCzo6n{%wFNFD2eAfgm>G=4)k! zLTK1_f=aqZ`C+V8&DV|&LQYXd$p~kEuO=`gVa6K`kRsAHlR)z^6iT??P)46~o#X|B zPgLN+8pfUAn0o6ih(ZK;T!0Wq{&St6IK%Wf#YGvmY&iIE{P`flzU>5aD> z9M3P+cr`C?TM%s_u7?Is-J12~KBktVwvfHO>dVzeI`kB*k9_DU?1b?5J@Nb^gXA0+ zQcpy&r$x25azFwaOh}%<=Itk8_aA%R{r!V3MHOv83LAj;Ec5XC;x4_$J^vOZ2JHD{k^{4$8=8opOq(1 z)*S!eC(l;y;{V*rBV4btJZ|)}h3}?|XLGzA>AHkgD;*g|hXS71ad!&k@&w=wcA4sF zv7iK?qn=E^2m5LOq~1_W7OZO=xJ9D0*xmgfqu?0$q4Rjy3)WUv^lM<;MHg+cp-}r6 zxgncT72lpW`|s;L^xKV?X6}EPV!U4z+Rya{+L*KdpFDk5+5b=0?&AO6%CnIF|1=-^ zJpNA#>0f(NEW@77W7GS4G!Y;1Ps7z%Ev`m_Gs%h)iY|+IwI2WSYmlM}Og_A$nTyMR<2V;&%3<5X$_5Ab%^^vK4|ew? z&SA6SYVP8??i%ZeQsfl{lT;xOK3q7zy{idOb6Cok^$5QM1pLOUCYtDw)w@)kzS zMh;eC$j&7yw%8#HqfW5q6X9GBDE<4uoy%MXCKU6}*bZ&1w;>b~piDyhtlL*`L zkd_m}jo^pXBCmyq>%kFEdZe5gf~9NU=x5K3a8z{pz)RR4_v|81QI1B28BJN>;EjYM zIDXin4?wSr>B&iY*~1XEW9lu5<|SI~u7-x}i`sIVIdzQNljkvqTvgj)&Hwr2H?o;Db-n|S`*2CDY*2e=Q24`42pxX~sr5%+STdjn~wIMb_ zN*S7aPw+MY-Mmq<>lHN>MQ4zCiUc3W&2LDH(30X6IB~3V5Xj(vA`aL0nuBoYQJ9y0 zZM~m-9mC_Tp=0=2Udz^W=0s4np1KBXY@Ss)xMVpA(9z3y+!BWfu>`~v2Cb!Q=;W*w z9kqQL9fvWjQ|g#P+0Dt5ru-*^X=#fA?$Osufpg@)r)!n`FHfI5Ub~b3ZsS=<{%aES zzAj4JwKvg8$CEatl5AE-OLBu+nSPCu>2%k$Ds~-g#}^#PfQYZ?Ys4F{sOY+geFf4DVU00cbX2*=w_iA=rA7X_?1A&$ z?2d2*l0Ti2%Gs3vaK2UsuwEIHNmhaA4X?t!CtsfHv0CY6xYzoWB*Iy#u#x~GH*S1G zPTES5s7p#0R_QS`5eV?P+6c#31F-L6z;4(0g{GMOxb%Uky&SOQ5fLu%EXzK@EC4!q zs@eFxj3=Sq2Ax3QRGR5mbIj_h3{bGW8^DQ{ILQ+}%But9L(^!hQUdnpDHM_0%k1Wd z?e{M?cXkdpc6K&*cMf-UH~zW_v;Zl9Ydt1)9EY8tArb~Yz=6IzOOP<3f4ZH}31<%F z_9EaUoz**cUTBgDumfWmJEtxKww*i51&-?mSvDg>sAk$4jTNqi6A#A-5f13u+22C~ zJaZ)<-m0WrdfKYLPvZ>WP%KSP+#D?CLsq&U07De1UJmG>z5+4pJx-omUuu}0zCpim zbdf>s48v!@-0q%XQr1+4RZxKl#ENB`d8iBX?6;_xHC;3o7k!_hqxl$HwZ8MS`cKlj zl~ff!0mnG6!M*C4cu+AHH;8eAX#qZf!y|L4ek_i#PleQG9Rq6%xb-8?+b4N?S9^ti zm^gC{U24G8Bu~C4j$-awL05SY*@mx@39|X)eu_$&IhBB$85g+7H^=AmTcE2ZDrwuO zyARo84=4@0k3dSP&M+Opy+fAUQd~ntjW6)O~W%fUs2W`48LrKBfiR z_ce~%cSlZ@F{f^0zz}@QBPAK7C7mQ;>toTi*PbwbRjgQuzjk3hUr~(iJZw$NljT3P z(AErJga#elTRDiNDBf<@bhm1%fR8d)Fw>^Ld;eXo=xvnDv$@?lLxgAY1x$`;#j-kv$C8Ny>1sP0i{Z_?jY+IU8}l%K}2Cf+)xHyH={Yx8caw^ zB+#|1sbXr50|$;99l)+HZp0Y80t_t2$&j zU^{NFJVh8DfgGL4UP%N<(4fpJe1n71E*@8;ZIPF2Z=FvefvhujcL5pKx5i)_AzLH& zbWG-&GV=9ck|X%Mh7?G>fVnbYc zYv2?g0LA4Y=2#(VS$~VDI>&l8mzRrzy`z6DUBd`wOV`}si=fpFqX%tvqMRLJwyC3~ zYX#XVxU?#ZnQAJzgq@~pjlw)9>%X6qsX70DqIqYMC;i7O{gacGKd(LM zKkBcp4gS<0oWxK5eDdV!<3A5zaj!jn`X@lE*l&fbjbUF@aI*h;^XT8i8z9!cj6HBc z-7yKLbv|uuU*PKb2v9Y|-kf8^A<$oZkW}se-OL_ePh;lM|3{Bq`v2tF+8zDBmB-2O zE6gwa8NT=?;DeSDqpp7CbqsJeqaBu4nOFp<4TWhKP3+B?7C)!sM{CF&3iX@{=0nu( z0>8F&+&1o}U|Mz0Tq7E!p8|B-J|^(e1kMBuTtdFm)Buac9PEjF0Sf*&9gB!A$$$)- zivC$LN`hhv<$y9Az3O!@FY*8R#2kGrj$GE4`uk%(RLLr(^@|>flNGmuDfLmpii#x8 zDS_qDd6E}^_VuM}Utocm*D}h&p$6(&5*b0GYP)5CLYu7@i*?81t(hV-AR8%l#L*#M z|9%GhH~#qiKa$a;yn4B_b5kiG=h6SCYtLNzzk28Ybvuu+52x^BXGs9FPPg9S@wCK% z=Je9AQEn^a!!iqKokUoDYaA3sPGR8&8JfV26HKwnbt5t@7na*%X=xvb&v1UA%IE@d zgRT$VI+qW;AQndLb@m0P*)SfT5}H(SuQQAlI~-;g81OBp+{1(xj1#8gQgQZK=)eeA zxgb7`({ZH%q^sTV#kco`Z%VtarxCf%Y9rM-j<)r8SiqK69Cc*E0c62BAaC6L}g66qzhSK z=G+AvOY@GgyP3zc|BHS+G2DZ`o({~}|BqnfyZYZp@ak^=-@*fI%xlcOLYv>C?-cf$ zbhPH_F*y#h83-#r&!0xmqE%93((-}T@?UQrtv*r7S%CxEp@77jw64(Gb}v}&MEm>Q z-tu4e_7C>=|8aD^{C^I*&&@iUmniV3=gAJ9@~CL*hX43wfB#|oMYzAex3TNhaNVmu7`XEFMrflO~Xj*9WK?VrRADreYW%W#8a@5t$xU9ea9<;58qafb5!w=z(! z2wqjWrc}K^Q+FZSGhmlKiSXsFIT=l5Dc{fU16xD7uFyl zb61R(C(Ban7^)U}u;MVZoEu_2INIM|x>mKdYGw5)dTjlOcZe_J0#zb`S4E>^?C8Ox zI&6QRVh~og+`Qq~{gTD}>LJg4fUK@+`s#_P9WlM@!eL&@7nK0$G9b-eEGv zIUAO&BW5r`)W9m;7^@Ajq^B1H=-|ZTrbUbYL80 zgF!H!j*g+**-3!re8mt5nat0lP$TdliHeVigHX1#(g~JU;lDLUJi}>NTE(mWrBxZw z?hnD5yH?S!w1jRJEOo~xWJN3J6M5WWOO$YEkkNQ-lS@IRmsX5LDx-T(Gyq*mx)4I& zIE-8H5IQgB*f!{34AiP7J$%(~fQj|$|AZO!E$RP&TX^E?|JGLT?Eh}%5%OQH>0erG ziq-HvCb>$-uab%OyJLyLSH`^Ym+Pr1@QL9AT`}SBh|8Rg`UKNHWb84T54R=hEDB%<*n|i=h{?ns}ssSNfJSs+v62w$?YaN-MpNra&6{? zVWDU~rxLcnChB!sZOuvi26&yjr}{MUfA2s>6-3~xSiyPv|7R8c@7bd#cl_V2Jj(tj zEsW___CKTH@T$Vci9%m?hbv$#kD;~YV}|q_V8gI1n7rTC2qWU0b<}|9dM>t^P+- z0&Pf(pHM!q=|PimZtx-yl|*V1l17VU(&k_)n5iV_$ub@>L$_XY+F8r>j(~jbQ@8(r z=6m0_nAZ06D+7Ty@Bh`+)r$W&@c(!AKezIT+qXPT#)IM24yE9tV1{qv;{?@iEq=%G zD|$*6NQ*b=r(}4wVN{_c$FyE5@_=|BkuCiDld!JAHmR49E;CHWLcv_g{aCHe`KIvV(sI6%Fx(0< zQ`7#qH8!1NN8^A|ZlB?vGg0{GBf(Zl`rS9Kmb7!0z60pPs{M%#-GjTDu)8s;Ilzj|B( z^}oibnx^Ctd~?UMW{zj^!(1Ewz``6LO&TW`SY0s^ybpz?%Xh&V-o4Sgz14#Vj*n5u zM^vlIPEd1bZPW=?-IGUc1PXhJ%2(ZUyct|qf0{Oj(SvpXTd@cKEyI6HXm*HJhxYy= zKI}Znk27EezG1HvJrUn1ri`MDaQbn|k|A8)BYW&HPHW7PHEg|g0QZ6xqhiI!_SoqV ztig<)+%F{8Amu`>~)g2G_cmkL@&azJ;soygEZ@*lQCzI|3IN$E- z%9E8ZAk=VN$K`$zhA-~RA-1FTgPx!ud;3NE;6b=Q{$;7n^w_|DTw=mC{I7S}yZZ9R zzm3P)_-d3*i|?G4L@P#tFQ(mtDH2+m2tmFZIBeQ_oq)&~rVq;LB8q-8^#Vb|+7^<^ zld(pt=_>%+V?fJ+Ivvd3Vyci4ns_2r5G3UDHiqCtE7;+-NE|mMZAU!>U@<9+YtE&h zZ8A5>r6Oj|h~>BBb}QC~s{6ALl4NZuG|j2661!XrX0YdWrxQp}Jx^;hE%S?9E~49L z1t0pUwQa!Vm$BLi2w3*^-(qd>)Ohl{`WSXua5s|MchzvVca+z zR@%nw^c2$zs>1wYkpME*+H^B)s04sAHa|tA?+CkmdNauS(-FLWKOVvd&IJSKE#4_!i{$gl}gBQV`Tj0RRRVUwR zeKZ@*(%AVW{9zn9#%C4G%8s~02(eCyx{TIhN)k?M#G1FP-=F3=@IvgQ#q)`b?$R{@ zo*fwqwn~<3CGGrtmW)Ll^#EPsmI=Fghn-dA48t$@T#kkzhtI)3+mV57T%mM2%86s- zB1A%MtJ^|sT2qJ7W?r+s0i}z#qkHi>`5@p*r9VZ?r07EErPc|?B3O@<-JipUZ-X)X z^YCHSKaH9y2eJt2UQu>x4{`9+TgFZX#lfikNHM+G`Q135Es|g42f%Z7Yz`5p*?c z9Ydm|5|jsxLRc86b&4Ca9ZjYMUv7J2;NfW0T-^9zn2B0+IJzHSGa9+Zeucp-IuO-` zFByl$;ks^mRM`lkXJkgi_Hkq!EC#h19cj^RSPdGn3C6`VPgGVt(GUGy56XsR8+kMH ztPp5y9>kiQ1Eh=;ZfuZQ5oMGfkAsh~5~9^>k!r2=pcPr%z9u(F47*4PkC=ciU1Mvr zBcO>#OV_HP;RW0cd%x@pORnxxt36Y7ym1vP>!Oi7@L++G*{3y*PNe9XgC;GGIjM7W zW**gn)?|7Nf;*ht5`MewIo(kF3-Pu=6q=FCBv4VBSJb_zTpC0~v7dT6R1TqWg61zV zFv~|i2~79TK!)m<2en^9;tk$okLlxqmyt0}0%s;<+8|iLmn1eD^5{R^n3a^YQTI%5 zPqpvFlI8|?Gv-Q^#{B|$0O&JyS$aE}@sZ4vo?$?jewsd){w9 z?7n?t2lyoS$Aw5o30v8KB+qd5#+d1jbpcqR zk@`IBiLt6rYRtMPYV4Yvdi4XY%y_34_`N(<{BKxOO8(DoE&$YA`_IP}`G4ivqdWQk zHXb2wqs`5$q(6)~CN|5Rq0a8^e3M6q^Lp=_ckj2~ZoK&hFORFO|&SxixRcSWA6V^Iv5NS;EI3>jI#bGjN#7yy1%CV=gJeH z0IvP#+S9xEPq*^S^Z&mN`08*w`R6pv6YUsA_s6;%-ask+AOA4)hcYd|NnDi6r^D=6 ze-n;j+sSE)Ms1BL2&5BPE(&+iiENH`G3u%~1*V=+DGO!0$lN)7(E+J=?CUlzgsDh0 zO3F9_j<~I~mt5_qjW=7bFg4;2?_cdGONACtJ;BShKD^)2fB&fde6{&zb9YmH*w}sf zgZ%Ns=Ef`e_xlgKTkqfPz|RAx-+%#dv5Ymk=m1T)N?C&3Z6bp*_8 zZZO~+0Rg9iYtSWMm<$t=&#B7NHT;Y?68Fy_46_fx3%o)lK6yq3lrmDL#OZ&cWPvDX zo<@|#wt@hYgYRDqdP<_z$`k6IWU=`Ml5`5+1s*Y!bOufWf$7*_&AUY%K@UHX6yEfzpH+q~=E+cNDuig8T=AxoJOjiHQr60C(1+5A z7Dgyhp!^uo$2|$l&~>5;6<>3I4Mnk~!`M@L}>UP2p7q zD*=gV&Y-5+Q-O1@EL>dNophKKh}dILh?6^scnZOBqNx;KT&VmmT)h)ubnDZs3|PUX z8>vjav3Xb@Sv55mXs*2Xhfo#`IeD$C8cy*>lZ()n=#7q9dBQ4lY$EJzZBUYU|L}iY5nU8y6r$2f9Ij%%oYV$_jB*h0eO~ zBe7a(V~Sdw)y1mQfaWS%J(#T3)fi0uoq+Ve{PEd;lz#;dJs$3qSHlGV{6JnCUmgQw zp8jXe&Hu2r0)O1ef4A{8F!%md5IWw!Ee!p8N=2i;aDoDro1oR8Fs@%@cQol1AMgI( zmX{J=r}vT1oc)j5-irO#%ANlAR-VP|zvd_Y5_x1`@dRkhPuE%m5a0doC!9`A%1%oN821wX&LNBP02__cIW<-eEYHQAQplrp6w@|@) zL3Ry{KNHC)EPpnVWhEZg5gr*6%7Q5@5zwmHmb>Rqi_sAU-kBC-3>wTlWEnOh$OMIDq?AP_NU)RTh)5ig2BDW}(tf?dB8|GhX9(utMkX!kajJhhi z{mMG1y<@G?h~G6C{9pU{>Hl<$PNm{%;n%1CmHb~%pWNO5-p;cS|9>59|M+fq>+R;@ z?%NNCueP?$>s2E6@!0nASU_U1I8JN9g%b*IS#;zDoEvbAKPxs)d0<`#IRirDMhtdx zU;Ne{-F%^VO(vWjS-gX`wPo7hwrbB&coPJVdfSb+UFm{+UbvyvB6&CJvuSl^pshOJ zZsR50_es$AWiPHq3Gb;qQbFkU3 zI0fd=|3~n+_CL?o?&3e*$}`XY$F~$T?UzxhY8H%ng6wQ=|FpS%`2NS;4?pfMbcU#f z$QIo49I;l%+Pm>;#VMpc!&ZUY{G*`icl!7Wg`yMJKS}?}8A3-iPQs!g>f< zOi9%vE;`KUuNcI@9_E(Y9#^xYI2vrdA(D=tmF)@nM@#{1h4hpmm5*B!! zpoQ;S2bGRvT8VK13kyfu!i^&OfyPqN2z|Anov2SvTTV+!8B^FAPp*z(cKRkcPliyp zz+8kSbOB?(VeTxNg+SQr&pD#=t)uPfs;tVzgaJ_GLh2Ye0sj(!!vw z8Dn0UiBZ_Qgfnr|iZ98_qzDps3NZZ{#d(o&Y$kakn(+b_@piHxrX?#PG-M}+FYGuQ zFMs4nIXKkKowqgz1}%I~Ey$P?dZnYdAHtr+Edu-3T}&5!*9!-qPf0S_B(@9|MR*_T zQPLLx(Zb0_k^Px~q)vWBJf?eBWVvgYKu zV=otc8u-5(3ji_i{{PvtivD-?F8=rJJd54`HP~+}&TjMF?)LxGGj$EOd|uwBPf5g# zPlh@1%d-R{0n_>vnZ!yFUJkFQ=!5X}mBzj;tMqkQTz1N$^Rc*u-pyJS%U_>UX_5EM zC~mP3@NLW6y%i%^@O{-2^YY5{5_4EIQBW2Dws{TR`#}L5^4E=B}Iwbe^)E9 zZ^Q*`?*4}#&i()6$9MKWxAKTx%#IDXK+=9{DVgXu=)f3vrr(!YVHM+Z`LK~=l&|ZV&p`g#xV0&$@lbgAPRF5bzYp^6 zu5krqR^(J`#-$nQ5RLmFz6_((2+6S%cFls@w1us$c@s>Ix&HzF&uB@%d5$UWZp{62 zUi|-+Cu?s0ugA|;?&3e)%Cn&UUpja*OTRTf$vWCngk*t~_P-A5B#c5Fg^u6oPgR<4 zfvTa2FbORC>?R|Wof8L=w~V8h!k9pCaEe042nr@U-53PTtADxGm^8g{V_DUCnhCeG zb*o<3y1@OmoZyB-lAvzmjeXdhFIRcHc7)>)$J!7>WljoRa^RoxvJ%N^82{^v=dex> zb!{kfdVvT>QHbCVO12xsWsE5}5fvTbIP#i8qDZ2T;GqW=F~u>8*3CG+U0}5K**<8$ z`(khZ;=yt+S~|d}#D+aRg>WInQ5=nG8UacGE59@0jRyntGzpy7)A2AJfAW3lpT*m zjucGc5m%$MsBSMD8FAs>vUKS}z4G14KiK^zCfrfl`gOqZ&6 zbMnzX>|9a>PGYgZ+TH?3AOT%Q2~eDN$0tA-#KEY5h377`8q|n^{yj-1I%*pabtDK3 z`LD6A>=?-2CsdFz`fhUQ%d)wMqsuOi1G^^HT3~_8$Bryl$gNnn0c#*t6G0Pf-?`=S zJ(EuqMQ*e8DXY)of+25ACRnl;+`n(^Sod?Q?FTjMc;~9qurDfXd!>L-E~3g^&sJ@5 zV=sKP`@fg^*`0B#{KjOBg?Ei*oca5GNMfm$Eohrc;fTUN9XCC%MXG z%$l%(hyH&G3XcBLUAm^~(vB}w%VBoZfS1}O`BL#})`~Q;f=fT&zERQ%W2!&l9fSTQ zll=YCYJb&2Za8wSP;Rd&AxJFF7`%U}$5sU6!C6aOF?m}1 zSlxzG#_izU$@(=Xt5BZpIfSfZN|v3<$=mU4%YzzYXhRIIzk;-NX1}wW$LjqbMo_*v z-5);l?0+Avy88deD|hkVZ|7M^|3_a>3Kavsst5Z47LC$^_4BJqnJspGxPYOs*p~l4 zd+*-XMsnF(;wjD+nan}j(hYc$jMuCA`GuKHAX(*P?MDkgAV&qs|t1ciyMfbiw;f2xM;OM_>IxB&A(G${QT_9A-W4z@vITqtsf)2!gw72fNL)K=1ah^hK*W*J-~!ZV z89^24nwUtOV^(~l^fkj(bAYzX@763{yeu`b(m~xqy#mzXi*y}pxj`k zR6qWVB=6IOufOV0JEh!SAadOW6pkl3SlT~XW2*V#W*jI z9nY-l-;Cw{t{%z%8UCzIC|9?2|FgOdV1FL}fBNLk|L;~F4ZAiPPBOOcRYwA%fP!J% z{9w+O6EQfk#^s}I;`UVu>a%ejKl&0qvS2rsFxMIt{(XooS1v?WXR)%VAbq(6_IX@# zq+o2EVobZth^`azCh54Pw180o`=L`Y$mmLnF2WO;?4Mggk8q-?fGYJdWQD?8%p8@p z%_01%3al#8j^Khs@Q@n|HXx2+_DZMPn_o3Uzvmf1U^k4na`+o~108%}E)x+Qaw*>yv6CeNk(faD${(mcvImeN1oh_TJ zJws0$8`*=HpVoYMXmX(?p(dtUBtd8<5nuUS#NERGtsW`=|2C`tv)2FWlRN#-tvq+@ z|G)c@>!1DV!K?GD@`45H|MBV*-~ac?qqRHyhg*5H{r6cq_@LFd@V8X){<8JGho>L) z*Byk#c~9S&;27qMOz z4fJ6 z*`TR@{Q%Cd>}c792ylwD``N|MlL1(_25SNyy)J-;o5&xS@XhLoA<%<-aj~O8>unWo zTGX$JCW70m+sLT7NQS1^qnVBw4oU1+mE1=_JdB^;)tA!v^+@Y(0_< zMq`NXrmaZQX{XE{LVLet!;9AD>vuoD+J3clwDtDyWeU8YCEfQ!^?D^y`HXx2*>pNC zI&Cly62<@WZuf6{I~$u@M?e3({c66VzN)E!z>e`$KfT-ApFgmNTuy(lkasK)dvNXaa{hi8vloMT2l_9YW3f9f+w&V(P3W7n<~Q?3 zpnw}!s^0Dd@c-;5@c;Y`lmLs*|33cnZ z^7njNUX1*Brv&)dJYoFLug?G$t^c)W!TMicU%y-bxA6p;IT=1PrnwsnaIa9UXMvyY z*7Lu`6WV{~LooT;2Jf$Q@KrEi7OemEXKTLx|LL=}yZ!%Go<;b7Cq-t=K3B4j(@AQ- zoeKwE5w?>x9BuKrO5Nuu`GPP6s4=R0Zp$WUdO3a{R*n`-q8a7on1J=$LyAB-NUzjK zjN3IWl62VDrV)cIJ>ifGqB<@Z!VtdDbszA*I*!^(vgUY)fX-z!H2%g6jV?H1QtfPiF;V!rcxw&%qyCC0N^>5a9ve}AEY>T=ey@(2U zVn|kaXA2U>+C#cCw1;sDyE%;;BD9pT*@AiMMIe5BZNY2|Er90e_`{R-~XHmw(P zL#_8#_AxJ}#U2wWztd}SJ^yzxuOs>tSb-+{4{F>M1jpq-pp(ztZK&36I&88SJ@egZ@Vkw6!rc`>0Y|o!BN=5enVvErg zzn|rUX+C_FjlWC+SS0^HedharJX^nu|8zT#*_OZmdHeON?YBppf89HJwY9U?G;g-{ z-r$>?W4pyjsou}VO@n<&$d@io6k0W6S~NgzwOW4L1jL#TqA59)D2M_NiK29;Vqj`A zUokq*>UH}jjtsB*giWyNVAEA^Wt{5ngKPVJ-tI2;Zzx%cU-RG;u74wreXS}Mt^X%a z9|!(lkM80>-p-@%|JBMH4N`3ZK)>(+ucVTMz~7pHl&eno$*ZmJfBx}kf8$5BYbl{g z32mbjdTFt7M@o*HB!m1I;COQ-wL-=&ChCHEP<_rP$;lu+MPOh=Y+*?c;>8z(d^la< z$m1(Rb?{h$yPTw_WX?e^EwXR)U7=}AGZ~K0j|NJh>s|E**%7%#&js9EHoS087+XUq zeq-2wMHThmYMbezZp^0(mpf%cFQo{CMk)G1VIm1Y!%%==YoHC7#{FJ8=@-ca!XxmA zrRo?`fZ(l$OJDDuDn>Fp29dpuL$>m3L4W+glp$JTYS;rLYDAJ^Xa1pRo9oOkzM#{z z4ibIvzGxnrIMKq{!mT8cg;TYXC8O7e``wo*)d-Qncaoitr&o;pQ#fhBbRr+lvX~%8 zt)hLwOo8gUTdR^4#{>1F-hThEeG1OZ4`0@NS=cS(VD*p&Yb9{752u_q908-y{fClK z-2z*R%2f;28uJI;r6U9e^tVh+(F&YB?>a2F8KY#d;Wuk<$t-jhs#O>s#8orjHr=j%&;F%^6X>_96{^nbf?_}%mZ+A@qJ^}9?{C;DczNH&rWc-+LvJV zGKa1hZ{Gnf^nKTq{^G&4<*E=2^I>fc+XBLhs&A1E0#c!nR-3=?!v1xUtEGg!QoGVL zRU%R32sO-tVklTp zwDh8K+8;q2drB_FZJ>-OVVEffyBbyMV?WoufG3EGqO-w8HkPVitjEPGu&TNi1Y+7x zPh}}f^7&FvEF=?v*7c$Lu^?QHB_C0dQSuE|Q^_YFyRvUcilrZkJj*^K$(DU22)~k# zNZMr|1^J^K5dOeN_nX1?RuD^>yF= z`{~-9|Hth-eEu7Z`T!>(ZgD6MO3`M^(0-eeNUshp1|r3PiUUPGN+;wvkDvrZcA;VZ zHDdO)y%^AOzNZKU;myCW)PKd(!;+>oONNGTn~DkwbU7$ zJD}6)fZ3*^g+_$}=&33+pf~3woGxTFcQygH{7C+<0k22HR~Z;+@90=XU$_S>;Q!Co z9)tu6d z^QWz);s;)H$S~03H#N}E4$=G89tZIQAUySb6JY!Zr`#AiY3j#&0JmT+Y`ZVgJ23Hl zBg=#K!X3mqmD7SKYpvO2U~RH{gS03T9V}ISma50etT$C#ofo>0cEh}A+3*^iLce+L zrb`ETT8LEm+e>5dUvw&diYU{x^&v=kS}7e*Fa_m7Ei?F{v7**kN$g~3*gpP^C*FJ50?1GJ=H z!jdOOzu-^;=&NqnC@As)B&`tEBRDLswO}a8TkB`(UP`8I2u7yNEp{o5=;*w&% zrSXSMX22tcg26pcE~&!+rv~ng$~xPW5f?e!BBbQcI)@7p523NjKyB5~XskWlX*lAS zE(g~&G#w**$)3ibN5jE)w+uTGTy4pWSOPJPMe8ks)++@vCIwEnr#3TPzZt^O34;zj zxYn(lcblN|DMuytm#xkiu2`Ch82vgVvJE3clOHGi=UzU+kz5Y-=@YL!eC={sm$FNk zfui&HmzG-icvWNCT%x-x$$o-?)WR`DrYn|OSgt-2TaF~6Sve9#1Yww0Q^(oQLtc%P z))7<}QQ6UM-EnsFFd1*w9cMF-C>43D?zo$IOlb#ubw}>xkxFTlJNl29VvtAI+l@Rb z7sOM!+o*EnPV+oQ2=;qy-lN_}ld9-LV= z)lCsu9?`{M7J?RN6>mE5+_>Xp?^F5QkqzQ3-(mH&A5u`SiM>#U9B$RZ3m3}ga(%6s zn!A#Tr>(M7EknzYEmyHR`C=|E#S& zUGx3Fo;+T=!+*P#M{R9Cj3$hw60tHmNqgDxX!LOzF%b6jZ7SPWh_vSa-`}#F)%n-LjeSjifZ*OkB-P?r&CyBC}eka}sQ;ld~Dk(jU}}egkLEcYFVHwE5HS zyEj{4oO?PNoem%liYhWQYOSLqHEI;jl(rH6S$BFDXt_*$!wnR2Kx@Pv04Hj!|EXhc zynXj}tCOtKw)6e&yI=OUc00)${odQ$-QL;nBmyA$#tl@M8k1)WhfQt1b>s#dFI3df2MWwe<> z$=M@-5gwjplU#>aHc^z%2!+@}`y-Qft}HPsB)o;#KdZ4*^GK~gG(rg>f%GQ=c9~@T zdTn2=NNT@9!|H>bEKf&tfhQ*@X)BSsqK>Y{kLg{dLopkTxf=a^s%ind59%TK!u6Gy z>|?Q1bjL@io;xGy*z^f9K`R^PZ#y)R^<(;plSQ;8xSl$#US_q4;#xz+(UbpaA`1iW zY|!)$Yi87X>0ofBbAj3qz2K5m?TaTT*#w5qRCEazc|$za0Y6i$P-oo4{eebiV>})( zF}G;v9)JhstWd>+4R|`#xzNoFA(YZ%@}C;3EiFIB9opEHquc?hQoQb03s|zu;%qb< z^!F!M?^KJh8TsrSIEZM5SS%2{2ux#%8}!r3Wj?GW-+pW6L)%Alrzzs6HjY+@Lj4}{ z+pSVW6c7 zy71I~q}`lnYcn0DlPgc-@208zsM!BSb%O6hB)Zz090Zrq$u!yOp9U3tKS?iCKI(!0 z@$b1}r2X7~t@|zB%Rnq(mJ2&t&mA5ht?jttQ znD_>YcwnFGe*lV>qE%9oG#>;(b4V^P$XL@s0(Q$C%YS?N0!Z&riVrKYQOg{hg%#=C zhbg#kg;2U-!(y6}ACAFYR?$`$(xbt$`b+&$C#R9i5pZ{aLgRr|W&JucF)@-{ow}5a z3LIF`f9oM(dR0~b=V)#Eay{*5DIk^P$KqU&2&z@5@jSk zb!v;5D8WbxD2h|6g9}ThO>%;}%t0Rk%_Mb#k?JJoUm)t2oE}IMFORy^_d>N928l8` zmv@SRIH#MA!_Rc6a>KEBz+T*kv(kN{sWDHYW(Qysst70>T)E6K?j_^2fDiDoY~f*u zyG|xD(c-jzAXZ*XYPKb^%xuf$s~ESaz|QpTNU>7rJx~%JCQ9#g#Qc`nKf3y{e~HpO z)c=l^00cm@!zo@0+=l)4`Vdn?aU@gI9BTEbMChjW_HKAf%vcQ*EaN>BsS z&yL7=uxOKkO&hT^sscUIy{@@v%=<2{j9Y_w_ma?n=)I)Ayv6HD?ga+)71lqhMu#o5 z6k{LODFyC#K}2A*D4UM2Y33!h;c12|DnhAw# z{E`ujj@fwTjaie1h2)_8DnFs^X)v#`hQdh_^xpN zxK21atjR6q$B0t}NTU2FML#K;$sjvTdspJiYkHxJ9~bk%sVt0&Zqj?f z(Z33Q7Z;)}+&B)fNvz{S>+fzRuy|DCQksdsJDGY#LE~7IWwR;V+KOH}mZR?tkN@2p zBnJqi(%-1cal57%}&S+@I!&ubzr8da_YsU##+%som)1^(0T^z z2Z#*%+Gr{{z_iQw?&M_k@UVR&<5d_Sh~8oqg`S?PXG{;RTdpx(MdYN=u$8SY6X92M za9C!^svUgHG(x-H@JrD?TfMl?yT>LfAF?akmqtVp>0Tu0Izw++(Xa(3wt8S1vChEB ziVtj@?+x3s>o0!(5^p8Hz(#2K59+@+b`T>DOF>9bv}rw$?t7-v)XaKaO3f)GVHbaKtOtGs9*ix4|uwXe&Q_2DUK5Q9x7T=Ra zwj6wH^o~UZiG;Ru2lVG5suOIJf--@9y{IxprgGR4*#XN<`+b}=nsP-ThRC20lhS$1 zU5$E?MLfsC{*)}|&o^|pRov9HJ?gCyHExd>!Qaf5-FC|Lk@Hu5)3QCq*9qpTldOAD z%szu#nhT&&%#L0FzTDiHo^WQU=n8ZCG6mc5LN5(5-A$g>3P+8_-WiVSjisd){#Vdh zdR+W6ntV`ac=RXIm#MwWeqG$R%cj};NbC_^_%-Edy#_F*jzOogH-XeAX>p;%oDRXU z+SmFbw?jJMnk+l*LkP3$1g-u$08#z1CY?QKoHmAvtE16m;Wy7Cai5TZzQ|M5&8C_T z0IS17mD%xVQnv+IkBrDCMk*Z+vE5F-UsdDoFX=pgLof0B(PkLm71!FwmCNgmI0N9X z*OnCB=`#smiFL#`!wwh-Jib&PadE@LVb9zx2j4mRh>+mPSIjK9I$4jvYz{p)MfreH znmXGlYJq!RywK&N8MJbRNUjyls&6B`lSDm!{HyDh5Oj=hTIkIc{`5wz)e1fD#71MC z?_x;EXu0Vh^t3rA<~y{;nudv)(X12@Jb}RBYw8tvFCRAjFH zyV65asaY!v^)gxcbJ7yO+Zo;Y;(Pr=G(2OO%XHu+H%J4GdI+65-MkAR1ZrzaI+VdQ zR3F*yvsR-;4B@^a{%p_(tAqQ*NcfFtjP~-~G8`UYA6>0Vo#(JgO>bb738`Jt3GhqJ zXhfXpvRg=Sdqi{IjI_nQL~@I8>|U2Wt~sPhXAC|Sf!eC-h!=<>kXvpf5-`EF-Ck4y z7mBur5a}1^z`qbPlKgl6r?RH1YOzi(v*EW1KSEq#-2ffS!>IAY`a`#rEOKU zA9(;E759^#Ui?4dN+e?cp%_*=0Y9Fvq5Fqt!TsOk$ASIFlSgZJ@!xLc`Mvn$rBirS zVN041d$VJROIPZN2*I)2Tqvq3!9W|DNlt%7LUz`Qt9*4wM|aI2YW}pw_Pvt~Pt52? zMv+3Bb^Qb)(L5ky#`pxeL(Njzmh zTi5|GEYZZ>Hi>nrl0Z^`5=gv`1UZ^v8W3kxe?iF7HP12rw9Y&4aI|TuxKVjqx=E^# zpiN3@s@0N?X||h_xAs^rXofBq#Fch!uH#a9f;|>A$xfc@Jza>YD#`R}N9}w6kNrHFt7XI1W&R-_XZ<{FjV7mU_|@K_d`Clyl>P_( z8#;5uH5`%B&ebWZ_O}1AwtCPy{Pd4U^v~L}b@gw3?cnLkpAJ8*AFRSZkJLYFhYd>b zCrGgN^pEPlZGy57`uyora8#BKt3U5;9qs)5y<+I9i6xF28+KrLSWIZ499bHMlAC~c zRggWPI`k8h3?OK7l~YLskS%N^TuYdSiaWM`UO?;))#&nO8nW^{8p7tt%L#2`==<)H zzNar!@{OknI$u66b`?2?!7yMw=m+$^66OjHUtV9E;RoF&sXYuD9R0{GT7+ie?&SXo z5`Og~<$unhK3>1Wf4!B51s|Mfjze1W=0B7_8K%@t z7J(|A=oIY#_GZ+_jT~Y$MgUB8YP`ARzkT4(pcqh_2QR%`aEH8`^-SrG(-8a@d>*gr zoM7VKtJ1sHnK~O3txF6hI~%s9>9}r3t(kD?*5_Il_ongt&^JzFFk#Rs@xuD4OigW5i#@w zFp#Gi?I*Q`U7MF}3n5GV57`<*{SVm$v66T{JBN$AFY^Lg#Q&eI`}j}K9zR*T=T{orhWq*TZB(MIC_3j4uC(QA3i$s1ii29*DZl z>Er%Gaw>Jn=3cDE9jiIGEU;17s{IYZAt;ISE$Kwp)M$E*Y>Lq-2iJ~7!*+{_M#G+D z=c9`(mO2Ld68MZp*HVdVMj4~N(at3K|9Rf;53);j{L#C>8}sH%Hh=~E|Izy6fd4mzij3KsGSm*1SOp&S+l@9_f2%ENufuC_bvql%>fsz$@v$k+Z)^he})p zU3{5kvS}J<3th`HwSoR0UY-LB{^;mEFVabJl={Y$w3)z$DC-7K*0%`igu_>F_}Nn3 z8BlkVRhjH!z0qj#@Vd;oUOz%(V4MBL3-n1vTyN(s1_WMBUg|$O_B(BXlZKNU3XWzw zN?Tw(&tPt#1P>yymXJ%`PEM5LbL4SN$S*?TuFI)5?GMq;VWr?Sh&5BExq<2YKh*j+ zO;tewd9epZZoS=%7(Nu$e&4G9T6{W(|E1$ka8LbdJUspM>lpr*oqjsaPd*hFr=POX z^wZ_&4 zd$RU8@c&+aeCPjpD-T=+4U4gw_I`4F6*G)b3%ZvL+Q1JKRgg7A53vKSJp_DgljEMg zL||fC0R^Ety@E{y3OM-?tUBQ$6TaXbowm${jYem0wOZORx&YG&jgJUOW$5uW?Db5> z3jmH74WSMMO@sd*CZkCo(G&6dZ!&<=wO5%cFr7}-QCFk;7O?B<;&k|9(1~!jsc5La zpI_wt8Nem6?~xD~2pW(+aK9uBW=AW(*&Gvy?7oVL-Oe3_T`I?%>S& zRs%ZA@J!mwPM_f!N4O0Zg9t&pver0QJuI>01I9v%XjcN~q1dr5e^PAGbEbP#I$b7H zO^@v$KW@Lyk0**&_4$~uG@9|m;F-_{0IGdFyDyt~sj}a~Md*MefwDAkMmW#^nWI_z0@}Al|2jpQ@olyM^SO3|h{Y!TI3;uP(aoMskYSlTYpFgm1{7=~c zz+K7`|2RpG36!3vXh(sy}bvr2r; zId`o=AegQ}HBq|~h*Zh$x}Zq4^qtmZEHv$bO`zS19Bo_sA6)8t==b|}y{>+Lg8BWV ziSLsklg9gY<7K-k`rF`f@DPioc2#!|{r7Cnxps|L)pi|ar#BB@oVkVS#2e;68%^6_ z&qoq$kl+1WUIZ8ltt=?VOH*DL+;2@w3gK@uvvDL*)MJQN7>A$bzp4U$p>jMH414j; z1TgNWS44bZ)~5cdyL_97@PN-PaG*u90)9a1Vfo1qB4?5|4uwBPrgo0ubfupca8h4^ z4OdOmFiTFAq>&C*xE!fA8TD&SaeIbvVnc2;U)s7qiO z0v54(@g~iOfk(SLoVzxVoHx3NF2;p=DsP$5g&gDbT$)Z381;GmXaT@?UG=b;EbN7` z1B9bllA_k-d^VWodi{UnQBbK~S{@_rPH(^KCvyMms1Lu!IdIYa?~^e8&t3fITY5ZQ zKFJN&=63;%L58Zho^6995k)M6BGHRwh8F_e&`najg5y=Lfs1v_64Fljx^6E3 zMXVxLJBLAfJ=|9}8=G=sL(+kgnG}BoPMd7(Y{MastYT_WRkMtr>y#>cQt0t#)$zjd zqGaA+{6J6*;b>T2GBcZX9fi{w!G>3&C5o!@D8b?a;TqSQ)H)rXcPn}=NuV{Jq5qx8 z6K%1`5^H$8@C7zOKBN4%-02+s9}d7*RsG>p&HvXPtv>eg-yW?$y|e$hm1jwv6IpSK zm2B@ewadQC@*Pw(B&?Nl{^nt-0k2>q2C>m-EW%VB`LF)z-W-SMXeHoiWq`t>!RUS~ zELDU>4kGmESN^u+9-n+}937K*EgYQ}&sR-#e3G9eUqh$($rrpdg8OOl zL4;gGuX?B1bhe|h0w4RRwGZalhBy%3J@bLeap+t(0zeOYuA{<`G@_U((WGGcur60a z_?bIDmqI*9iD-;uLi+Gsfl)&Pgf;24!6X!P1h!Vl(-6Q6#vrsIA)0m|>`9Te;7lcl z)jfLZd-&2d}U+qEA@8}Gh4LoyBEpYf+$wk z-$XJt-Is=ocxiobn4;q@DYi|}*XlKE6sKmjuB6N+qvRD48)R-DClFyd$a_xZ4$QKk zfCtw)2kSs^xca)Lzo`Mm%DS}&*Zgf>>zHf+_0a4#m=50$lcd&AqQ!IHIZwia$fdnt z1ca6I(j)LM=xo@}dC6r#AQ%o6op@W%ApPf+wxdTtGc-V4jqv8}bInx_4ui#ND?z=N zR}BQ5oAt6f_%B^B&xkIzYl?(7$%f>1+o80Kh7Rxm4H?#kOcV(zot9kFaLl=0 zvA%tXDS^!`a|iOIc63y0C^|-$=T6f73-P-4gKKy*??%x`$YT@`V@wp!#{2=|k~oN2 z;Hs$>8Q5=prpI1KL@bh$uM(XW{TCs!|9R&1qe|!XC^~5O6?Hr#HR^FW{ z$v*-6re@m1H(rVwovzL0X500toY+2eMWci9H73+XoPOyJct$qPmzZG<>65=+Ux*8k z`Zv$QxO`n=7A~C_)`3pkihI_YU02NMlBfo46h~Uq=&nZ=o+*_|=k$QKA!EQ4?BRAW zlo%QrkFI(hlqtqVENbU1O|N;S0r&jQDtU4X0L>^C#uh^{!8JarsrA-1%fW^CBJYzm z1Hm+qiJ|K#RFma&lK+Qvg{mI2K$7;Kn_k?xuEUsc%3M|zP7?Bc+!*1HpkLiw(5&~Z zmVHF1G&IrkTawuo=K%-tmxfcHs-$UJLQ06Wo=4u01>&SBmp*v~(v_RE zq!FXUYPZE=rmbI!npTFakR8R!GaCyhLW5-3WvI0+WK_WD@eknbwYKj$38J8yJx>7C zOW)wt4SR!GKP&2HJOh^*+pZHl4ak?gw_N&C$>{CgqAMBI0dHvC^w4 zFE);g(Et?LPPHI$yX|m9Z|BpzTUI4eE<0gIB~sM~GnDfq+%;kWUU@)ggFy(&X9%%r zDIrosE*a|q9#Bl{nx^Q(NKPV)uF>$xCX(C5dmF4XtJ_E}lsB6UY@UmAetU5)3(5;HUHyKhPC)t4wq!845)o?EY3I=un&phlGU}DFtyvU|?*l5)VMTEp+rp^&9nZ~>4uIGK< z-r*i)I!g=q=18w-g|nDBr4lXm;t4O5HD~M~WL9|Xh3t_pCI;iE2FGC1M^Vq9%l%!_*VQcs!NFmqg>K@UEpQY!?|mRF zcEqv^dqCEs{*1W9tyhpK(Vk_Xm*0MiMx$EO5|a(ZcehCRFs6IN(v1AwS0wUl-Fnt* z619{MfGx!(buc&|u3!P5_Z@;OEBS(G^06Ow4zi z+aX6XYXum&+}uKCk=f;hgdpGLUmZFsIoH$U*_1-Zq{m9$#dW7aSOM5p$=_fRF;Zi7 zJTPE=fCY)SEeV7%fcP2`vM->i0_}WtgPJDBoytf0GiQwP2AJj)1MSG8bvXWnjwv>_ z7>}okvPI^ln1S#Z*bB*Rwf**Xzx?b@+B~t4gS_snMb4X0>(w|Lols%m-%Tpbz{5M% zuZe{Gig(U*u&gv~KE0@*rC=Xr;~XS%Cjf#O5RWs4)o86?0{UWGco2~ap7@Fjh?6&F zOP`^$uULR4j?UF0j*FDL7_LC^+daq$umcrW)L424)PoTILe!V{57nT8=U>Kd31hsF zUP&HYkLTj;?f4*o<#aVti?W=*=GA1j8iBPt;ERS*!>>RR%w#G&kDcfXWF}`_g z_h5p;*kNJ=DCzJMy?oM}4b&W35@@P1*7H|y1UjfF>6UKuOKe=?u9HJS#cmapz}~`Z zoqCwp-Anv^^T^cC@dnF@`DQYNj;=0BS5$oDlCir3TqB%1Y!B(M02NTyw^4ZVe^NxK z2&)CHnr9tF_ll~6&Rf&Bc%Ux_9>Ktp0MS)wqaCg!htF%Q*v9*C84+Hw3wzv<<%lX4 zQH(2eiSdiyNBLG~bWQ+YVGs7b#cj5b_5hYUw(NAY6aSlkkAIy2CN~b8bK;E= z);S$v+zzP|aR`1g^~L~@9#hA8`L2O63F zwysg@jxOG`V$67@y`F^8<|XrMVYw>ssU4_7-z@k*8A{ITDBjyl6iIq?S+o$ zz&Uo#?pwEFCH9$!JNjN3zK_u4A0x01(WWoC&!2U&`^{L5N^+oijyx^k--?;(n(EBV zVsZ3tvUrzTxL%mLQ_+n0v68|{nd-}jIy7O7gD#;n@VOjwP)X-XQiT7i^x#XXR8 z?fe(#z4v_F?YPnZZ2CsfA4Q&I)n)y_p@k4e0fgPCU=yfCqZEjW21{TEtB16={=s8G zk_cbOUjj+t5BFLR+s&ka2^B^#+N8YUN=o1lQ3Dto&};P6F0Qs5B_VI^z2P`61)!`c zg6CBlESkP+sN9u>J!dif!L@W3;33gx;iftYH(vbt`r5f$x5Y!Da1k#nnm@P}ou9uS z&gVhi6KKxGc}txkw}%ijg|*Q29)c)_v6hJ%$_NIW|KFXQpisB6=7ks?4QA&<{dKi6 zR`C!l!gx54-`N2Pwa|`S&OVrqbVaaz-sMc7EaM}?E6r$MuyuN1TE{>-E&_aT?{bgq zV1|9R?#5uWsDHM?V2(QDP(SXUUSisORzUSV4UplX)vSq)IdABzq`?Eb#xiWwl`mCC5Hj>xDxpSMU3c3skB0>Bh{t@ zDE_d4@)7Ea)NHG7_oS{!{qA@JBvnh{mr%>(q@g-1+Y z5>TXrSX>`JegsWuT7&4v>IH;PR_{9aDm)C5DFj}B>2Ydu!*pPK8WwazTq@v*z8&S_ zyop?V?Oi>as% zTzFQS7s!K&y3|KEpCjuCvC~%v!KX+AgX{K=)D6Ps>Ft3I2gek_`H6Z8mlU3W5lEwo zLO><1^$i^>p`sWm+wX4EDB2z!Wrg-E3N~`lGrEN-5wD;kr&(?><$d>ybm7mP*^W!9 z&OF9dSh&g@0O0M@LFN5uQ`94~;Z=PmaEzIsBF3Cl75^NjnU}*~re-tsCG#(i~ zkCLogsuJQTE>&LOzwYOFiJ&X36C(p2r)D?SQe8JBakY*9-FR>l%v4b}b)JSBgCn40fu_IqF#$c(~%Qe7Cph@;4n%KQdL^0mfq<6T$Q>p zISs;woP){?^b#TsF#shBVm%M8Aj^W~#SKD`oU(opEIhSp2C z8YDe~1+^8`8qv|di$NX0V2?|~J=wgT{^+ET(Uf!{!C^*Hz`NNL zEcISEw8O1qw3~X!y2`q(rF`b8$~3g>7$c9c{kb-8y>n z?$s9Qb+U?7ueSbvwDWFv-zBD&m1y7|8O#HTH*4TIAo21-ci;WIzqJd}8HfS3it4v^ zci-(EegE#~x34yK|96=j+i$n`w>MrNz1rB{@X~Wri(-Pyu_#V)C8{OJI34JbiD9zT zPM7vc^{m$G=H70ryvDt~AE6>FqpD?ld%H57*;F}X`?wGHAZClhpf@(0kFh*AG%xjl zCSDLh)pE%7Ahr*RxL+wej{55cR%2lN^!;cy?57jg)l!VqL9JxkYlr^$&P{im9xpDK zC@)svJc>8JIhw#^!1Z|DJ0powVJShJIKLYC%IlK+BuUo!pch}Q47Ywuumrz-l3kR0 z)Jc)*_vKX=^Z(-J{zx9uqc8RZtCs&Btv^}|;y*uod?)|i%CpD~D;oM!e>>Hm(qg&- z*R=Lq_Nx{bGYQ@IS$V>JspsPof% zN^E$3cB~jHTQpJ=^~c?sQS&rP6rAFV3Z~eUwK&5gU<6SR!Ts_+-EA*m5Uy8d*n0b{cK?@bQ)LS>=S>5VS(C*w?!=fXUs(;lKQRk4-`bO97mH~8yN&*^tmGYjaMA20=V%g1CsLC(vWpZG? zA1cYB2*IapN$F&=&rNn4fE@u!W`*_AfiEw-#-u0@3@V= zwS2fVTx>B_U@$>qU^+>c(Z@t9x)xV~2rL3L2E(9dPg|_Su5}kQ4`vl%9!yzmYyzEL zq8YA|OpLaRAxztqBW`S!Ew?5si1FZNE;keS_RqW!- zyLhY)EnKoQ+<;}IgFG#WWBhyYisI`0cr*ZWDroY{r1l)qWttHP8QY}KAW5}|xdQyR zM$l%lb!4i6Wpo{`c1a3AavnKJQcspzbnq;q@e<RFP0TQp=8C8!uDCyjZuZi8f4I2CU?$@X6Wz;)Ut>}R=#)SQwj?jV`6t0A$0}dOYX=)`uj3#QL)AR8l>&Sw6 z_Jg?r*>7X!s}U23Dj2?&_9zeAmhIaih!Ct46q;ThBu4wvj9U3{X2ag*59b~I_u8Q&tkkM-d3$GB?*mOIZdtwA1n{Ilh}P!uWbBcSb7;8cM|F3@u_-}7 zw7)<~w7(7oz%?CiBARITNZ{3j=O3|^yiD9TP@ntekRx0z;KwoRz#DAp@MyC?(i76j zLz?jE7ZJ-nXfbltrB#FeE}>G(H=n_-G{(mgr8w>qmSF7U0vVQAL6se^FiU76C+~=> z=YGfNx5>-VCxl;i#w0 zn}}*UCUkh@guijHA~JG`;bS-ktzvYZ)$8aWU|lBYlX1<)ucdN5D{{ywxMrHzQ4*V& z-Wv7^Uecn9Z}Vbs_W)lKb_bOe*Lgf=;B0L(>kEHa>}j7-YnAXt+%qbwlz|b* zhy@|zru!DT=?I-plRxj_oO$T!;)^CtmonYFFP$7fpYr#iBbP`G3>mxCugxlpa{FNh ze&cv`^dfAUB?~GfG#a~S3y6%C8^X${zi)t01Yw&HQ<_af>l5=UvJ%-PTBNr>qOQ#B z7EPK+stB!>=tVt-qaf;VqPaJv+R{fDQluzIh5B)-rYW1C1*hD;OUw)H)M`I@biEj= z;empv-~&-A9;^>M?T{~SNRpM(hA78dF}gdORC{SZ%7;5xIl*wa3*a{$kmWMIxY2Si z@46i~x+cvD{j=3-rDzTj-LdbCG#P9fk8;Ma+Wxcj5W%1O#tsf z7bX~x)YxXow(1mcn!a~XJI<6ylEHC4J%PBZhqmQ9<;|LI%71XJ|5OVP+_tEyPgu_~ zT@v#PHW#{F3|OLv=1A1i#am>2A9nlRQe+hG>2mbv(`~FvJwsZd(5^*wEueqSGBBXv zoUnq>%^8)~r@OxC5c?aiZ1g1Kib|#JaKki)my9aV-1V{pm1%B)8N28l)y+_lY0e%z;@y@=cgUwr7(cg)QePjZ*29h%k1(lh(qTu8SCBNS-q4RTT460=R}VYE zke6lK`WVT!6>sRgoN1snm@Dm-(ql1I)7vx7B`2pXusWtu`(k~-u0Saym<*BAZNtJN zz9_}X=zFwAxl-LXb`@i^&$#sB8mdID_cCI1UwsNFC;Z59V%Ow{Y1hE`1oBF2nf^vY zBg1zhEi$S$7GBVPNzGJ_5IpH%lBNACC1qzrBRXgOs9X&V+QyIa{ANDapy?$Wh zfsk5~g5bIDkT7g#BDe0c(my9FYvpQ4Dn_@Zq=g5fyu*;1tYoQk0O$oudt&^TQ=uK` zEQgBwV%(}kTTEcs27lzCT^XAGqj|ngD;lzdj*I7;eOYZ}7qrR25io~|Dyof-7aUfW zpu@`ZOo{j#r6vlfu}qDX61NR!&MdO@wC1Xd>ZPSdR;zBcc1SP__8qCemRP4+gw{EA zXHn!}O8~`Ky@DP5S9KJ$`8$46Q6Sv%t3rb$F~LbEDH1Q%jEVOXjOI&AD2Ktvj*#gd zK5RdfVw|Q|UnrP{{C6rwyo3+C?Jt4icFTF0$loqJx1AT6C0vpV(ZBsFT`|G^+Hq&>5yFEwNxgfl9D0}=RXt8w12UIh*Ht?5ijYI8Bi;vis zvaT$**h{-3vj-j0U#SzasJJo&fZH@UDf`V=c585$yH6%4?7A5!)@g~eU-!u z%A`RmhC~h#yMDT63L{8`+QZb)kV$~NQNIn46atynh`(@9jvXwl$Q?m#uXd=D9%{cY zx4M6urxgETXEeA{^7Y^=fIuw3e^`6Aw(k4?Jz8D6^Z&bzM+8aRn~mY`tp7unPG=%! z8~W*8X2(D)E97%;qnl}?8Dnas*0-jeqJFAZ=*G^rI&NY%WE8AKnD1sa!i4nZo&RQ8_3347DRy{=GoDzmfL8yRNq7nB)@qJz~SRB z!jri@)&$uO=HG5P4)&L#K`=De)NKkt^a8j&N(bZ!c!Sx{Gf~zyDz+xUnW}a_!J$8Y z^OO8PD*!vC-!6LT@askYT*Uv^)}KCI^W%R$T7PuM|8L`23jb%>V4k1rEDl#JKacfy z^u2)}GDL zPKzR&7SeB=@z(*?#Q|WK?x(W}gj8X0BVK|D0oo(8;r{99bc%(ui7a@tAd(T=7^qdd zL)l&=^$^KKakPFmE*O5LH=6V@%TVoReAzDc)oV-(YB@B3GdA#cvpgM+Cel;cIZ@hs z{+}m!vo|Kok}5MFfJxl9AV{x(e=asFR+8ZY0s-?!T`VUOcxdcNHp8S%p@7?NyO zrP1-M)ZhrrYTrU$RK_s`F?OK(52r_n;Ybj-i4$gwB8fpvC~!j6#g!pr_e}IClQQNz zO6n}^1qZzo!S#IGbv4~^8JV({kQX=56C_jxFcpCg-D$R|L3Pyp4T4CHukJb5B|1UF z42w`qnvZd(R((03m5JuEz~qZ*Ajf3Lf|RG`MrWG0u753>)1vun@lpNrv3aikKL53t zcbkb!#<&t?iM@M1G1~fmN7o;-7Qy=-Pg}%Y3Ds(PW@6~Z^TxsIVT=TNCa$EWlx7kc zE*s4dzp!8e$lLIR(aC~ zK@(78k%i2q%r%>ts<@?;Dr*~}eOiq&0KbxEgsO>VQ>AiDp@c(NP&q9OTVPt~sYjje ziy)x=CKnht52A1JX(uGwNpL~q+|PG6(_zhWIvyz4G6)du!L@EkaP6+x#U4aA#e$Ol zC@Y|(^yDP#kryTJON{qa-Ueu6pvQ6CK5PeQNNc?5t-yA)0{f1T%GK!2#&!JecO5TQ zC?XpKJ#(XiV2;*kxXW=jF`T$c+z~s@yqT!?$QbFysRT(bX1hrB#@B8*v}o~mgErco z^Y+@RH@f}4Rab?48Ylw!RHX19_*qP^2Kb*@@o5Y%#-m~i|3X!b z2W_uqx6|L{dj+xt!>4!Os~$eM7Q!EU&3=NwDi6Ai-$z&MgtQ*Ep%ok(=Gq2?G}2Gt zXQdxt`@u^^CFjVASS$<@)cJ#Rq?hl)qdb3QZ$BMoQvHkRa}4s3_a*eX+RoMIdAkda zf1f@@@2fzI&8A2s>w4B-`T=fpkoQZ06Bfolh{xEJPt|1V=LXknp#bQLv+>JJySc}^ zg5yPUp$WU0XGJtE>c&cCJ(LmkF9)%{MUiXn<-zMJ*b1lDEDrFo$^=!m+bhv{(Mb;C zGWucE0oASR+HUJ;r7s1gx@bs6L7J>8FK6MQ9niGDGA*~NJW+&-^s|tTu>z#!?hYl<96tncXL_Sdl=rr9f6Yj#oro&^FhVd<{4b?&Z zh;%6s-Km77iMn$*G8Qb@k&K5eD6R@Hy&vSm4;0$6pIu~w(fB-O8Y!Q9RxM&j$F@*@ zB?Uma&$WK^TJi+t(iK$}hf+UFFDZD!pklFS;evvvf`H*!YGGkzH&|ToEW5xKv@yO~ zBA7MNZG*Ku3qzs9qqh)5|DBGKgh^;p}`~O?}%)Qm$5wt+{8Y5~u z(o{22E6RB+-)RGsf^1Qp8*K}#65O3x)m;hLKWpTFgFEgR{ww^OO*RRT^NZ167wP}k zpRGMv_3wWluifFl-paG2{$J~*=Mm`EFW3Kn2`cP00Z0?A(jqFF_-=2HfFfT50{(U% zY|^T4v^8|CT5V&Q%exWqzdOxQ2V1JOU|qb)tZ&zB3MZrH_hs4icPA6^=dvvH)omVL zLu}whMOij^jbR3Pb7S+Tt)o}lyUk>8YxnP4yGQSS-rxCoA705z6WsPwZ&1(>NzF%T z-}t+e$%GxH%ha;GUb1)*JNdYDl$=EF=oVW%=-)$3iG27f8~el%OXH&!?;$_Mi{S`V zvH1F>cUUyLuWxdb<-wbWxg6|rnG^OT8uLQlfkkfP#*^%OT+grY{)tmMZ{?*K-^9Ie zx>K*wuC&4&VFI?DCK3mP5o;#>{Nw~I06mmuCjbEL<{N}?1ddU~hYg0(5*KAZU@Eq< zL#d`Ebm#K!OX}1aH_6x~%D8d1BH?WZzyB6Q0MvNK=wz6fj0ZZoxEKH#EgB;{b#o*^ z#BUFg)Wh*$vCrZ+#;&A%ltFz*sE5Z9btY3cUx8h6B_pW%)&hs&T58P)*g5 zjE$4w&?SRb1Atg^nIVP|$j7Ebq+TD523b0U4^&)BR|}`PjtPLyjc9Qo^nBD#$9ek? zG=Krs*>P=D#heVr4Wn6E_bgise<-u>dFdy0zIG_sp04ex?j;roR^0bf5%WYt0+0m` zG6NFTgI;H^^Zgi@Z-4?k@Uw`yVEXL_2SRCn8nz z?Y9oSMs6-3WEu7W;To^p>mZ*<54uN3GT6z3YgNnq=%@>G+?zHb(+T#f-{HY1DG5Bct_crTDt5YEHU8kl>{)SPfj`alZI_C>h4 z0~@;U5EeVroyOdhwK+pcg&sIDK&!{^LU@NeQ3t80=doBSv}5i$=Qkg$jIb-4$*mA^bsQa6R&iWb#c|6N<5DJUI6M}b_ob7mjdxTnE?ny!k&QHPoP-=wSA){4 zY;muw#XXG!iUZ=TC-)E!5Lk2z)KdrE(K!gKed9uVZACOS$CtgPnX^|y%Zc=$O2b_n zF2Uh8yPvC_kP$fwjVwm-vWjMWy9LyZA#ifq$vG-iWPb;fT%u+3Vjgo3j8QZ^U@zlH znGo;UMM;Mws>8c1l68Pwsox8z3Wu-AlQi9@j^pF;``6Sk-lq-eFg z&TH=Of9#a$ku4npV^?rgsQZrmDLV;X=&r4|)>m7r-lbH8NgxgHe zU#;?p?AT-$q0N@v2`4ot*?p#H!xO3 zNNN?YLJH+$zotqIOy2XsAE z^FCc!TYIwpr$4Pd{nO)U`M<*LWwqzWdv^VJUweK-M~BEIZFu$ENz}TdQ@EQP&|Jgw zi@U;(i(f{Q59$z&kU&v3A7k-1WABDnhKyIWF~ZGSoP%&iBdpWCBdNzyI5$KkjJ$Ne zlO@PgT_^e$$r8yKfnrM%7~+nmQ0t6oo!Dr+O)*C5x3@5>#=MDPFoy3wcX9G4q9RY; zvDLlrVU7O%U&%D#AGl#%B+19`&F%-d8Vh^~~dfNtHe?p5_ zi1&vaRzDia*Sq1 zjitmTct9YeTgdq3CSDC7CU___3Y#yrm!G8|MS_J&GRRM|-c@gql}{gNu)q#Z3)s#N zMJDMV7gHK+#Unq;dNa zO(8OZ<@Iz@%xo-x67ob+IiQB2+7xxC=yF*bb(Z`2xpt6yrIt{=0SX3qDG|N+qPU+O z&ra*L1C}Qc@(~N+C5bmN;8fx%u4Q}Zc4J2o$h2rUPA8$$4?+%8UAvwqjQ)(~RUf?% z7@#~0E?KzeQ-q)5gQgZG`F+{Y>Bnh}J*`sa)+EEPy!&Ub1c;m0Qs`w~mVW z!ke?+sF=b$#b!NOv4k-{FMPKkRs$91uv)%Q(nX?o4`8+m#VP)}2c{Img6@Q&P9?Or z&Xs5k{`{?83D{d9tSer82}4rDh2}*MuHD82zEWgRFBIJc@d5El*}j2A^IKsiT$8E`FO_1k6G=Sc=z zELhy@!F3k9Dxj~n+&QN%vauRFgyt$mluQQ$w@=#7vi9(yb?%GQ5;f#Ew4`>Ytgnl- zb|H1Qx@KfpBc(d!nG0q47DkW!3Nf&Xi?;Smk0*I{Lg7zpthLm(dn9gR=As2m>HToa?g}^CKrr`%Yb;C=c~PXN zVN4i@A5v1q<9Z*K1!c!99r|a%=(wJZ?wuRrcaU3uvWXI_>ojn#g)USFqR|1fQ|vS7 zYv|yF<|2w8w$R(3?(w`U-vC-brN0v0Y2q-!rWRHP`CJ?Z;zw* zTsI&h%h9uM5AlQ>WBo| zba_eBldxta3J9T1@UebNVD}!jAJ^M}AN7;^*qL3d*3H4Bi<%qT|JULSIy}Y1= zif6|5WZFA0W!N`gkl54u_SzDAi};d4aIUWzCfTpho|$cyYDZxUb%5 zO-Flp)(C>*z!Qx<0z$`0J^|yD9MsyE8Oz;Cin=u1ilcX$XJGLCQRD+5Cm*WZa22Nn zZL%pZMoKoq>sc-r&B)TzG>;6ZrJ|`v*1?cZiMAv3>725f(FrPzXUqk+)OsJ*>*54j z5pLS#bQNEv>OQ~2e%@B}G+H$XaDce6qwGy0Fnb8mfd!_2Jgi7g(lnjFoZS-oZssrj^4a9IGPCmi@H?+LxWmERLiD!#|u*-Him)pih5opf)d zSU*%HJ8?@o#| zQzZ_wB8iT8kux1`8nh5$0sE4wBb}PnNUIP4BV}4%ydIB%_30fgg9enqX~anU-*fqX z@e{-Upy5$6(eP`ae=NlRP;1`T|2$oNa<~3(F= z9se=u$^g4)LKLCwzgZ(qB&@6~Ank0rz%JSJI2QFeoX`|t*417qOq*@dF+#z4k|BeC_YtOcbFFj^W%&0f%@;3R+pt_1qAQ;}EWxX`-XPqd|PVFrfX0 zDeE$HKpv{X!a1lH5v1~a>UAs7e$xoWEL#-)gV&A5m;mzc_l*&5aoN*yuFL@{0B?f< zwYdpUeP)6+DA{6)ie48s0vk#8a84+gUyF|`{p@0ee+P!4YT)XP)<`XUjE;!q6a|96 zw!nwFM&o;QqzXNvCLD2DM@QyH+WCA`zhBja`;F(duY&qeSs&|SNFp5d4fM`p_^6gQcN^WTrrtTI#19o^UPY# zD{Dy~b=i}^Imq?@#%uju6C29C&I;+C+Bb>3w3Nsso zqLNxE52w=jP}|Y>i4}3K^aJFGTQP&%nNvj4H6bOsU@YQBCJPBv2B+G_=$rkJ;6$Rg z8b}!|j%s02Z(bs|n%sPyMkC1Q5l`{TkOkZ2nAS3M!uE~A7C1w}z7rIzARd^YDRPwg zOGe*T1c`@-5i3Qw2&3l^J#(F8;#+oXZ1U28647x8BR?n(?+lKOFV_e0Jw`*-!?DDW zh-NuNh}-Q7BX~zBvby4BAk~EhHwXB$3yb+!*?98GiMNVzQ>9X-LIqSa3%gb_y%O&( zRER*MZC#6EC}_ZQ`qBJm`5Xf9-XFK+3*nrI$WX%nmM)8-8b9Rf zWC+U#>@HTu;2;Fol2qV|QM`a+rk@wne0Vy`i!)TtSfEyHRk_iI|3IA`cV~L3_=ar( zdMf%&s5sO44=qs$i{Y9!RXtTaT0Xp&EknrqG4XI5dc&9*5xVGG!VrE$wDBz0M0lJH zLskhJlKpt&0wt>t8jRRL6)fL>U@UbPZ!)0p7-^C;&I`Bw*i*ju`OmSE;Xf=_@Zv%j zrzj6pSoXL941Y*-_IJ~F52R&HFbXT(e%M&7>M*gzVkrg^eQ?dvDTew4&q7sf;2v1^ zOwT5xOE7#|oV4jXYiVI6QyVp4{&6rmPKt5XLnvK5r0S8?a&s8Ns7j9Z z1Hf)qhk&ivL6-~$Te?1O7#4Qvkg$<(ux^!lthSd84{NfQhKb!S!*+zHDqyUByuh*Y zfw{9yUi$1}vn+cm3ExzjUFQA8qRfqi5dUh;O#uoPb3j&S>!Rdf9J98CM;xdicMIk* z?v7y@{W9T`tN|ux%m10d0cg3{fE7m`!p-QHowMPoR06>L@KPE8c)s9-quW|3E!_B| z1FbJR=6DVMqN9#&+!vi&?EOeFJ2}ZeBHT|zp%GR~iduWn)+i3`_b=aHe)ph_FbrRC zXhLEiE<7^XX8gX6OfqiQ4FqzUg^sp;SL2ESQ0whF4r}8(FgE07Ba!6SmX>+*?a`xcs_t{bg!^C>GiY3n6)|vT*?<^?G zhV$i=)h{GIzRE5b0JO@jPCNL4uL0xW4)S9bJsrO& zZ5_EpX%YXtFAgovz2XgIDJRA2Wc$s|yWRbxH(UD~N4r~ZUv2Gf?KYja`y0DIZtXXd z-Jjp?Z@<|(+JCb{7{tG9ecw!8ZT+zE^XvVipWf~5+h34-VXW;--Cl;BF{!n8ua_Va zbDF#ShTv5T-=i*?$Pf6eq=!uL{2;UV6meACMT5vU#?##97T)LWiI*x;(3_EJ+Ja)v zRhl*@kC&x=AtvAJ+sQC|x0~RrMb}=&ozV$@?S#A*i0@KvCNSW{1O)ZMCtnMA$->84 zYl3j3vDMV7B`c6Z?d>SctDbJy@5YHlyZ{-Ll&$(DL|di5e^RXm!(f#~OQFrgJuQ?3 z7roYjIX6JvZ9R0@w}-@xjh$`G@4&~~K7)a+`l?nQr!ob)DZ^-|el0TnrDPl$$De;8 z@OJ&0<3t9)ETox2QzdE~M2tAgWNgW#KgtRKQ_VhtgC9eu>hwr7y+LlGmeRjbLP zDT3d5mC=gYKOdvDna^LHv>pLE-@K(8t;9yfi&=Lcg#7+62!YMR9G;U7VtYuKUmK1$ zDow-70uFi+w~27^v;j*-LUVb{;2Tl0UH9Jv^+i4ee88)N7d$mgwoA>Hl`Y)mG|Boi zb@T*y-3tPB#}x%XDSF&wqK%tnDNQ=`Xctp;zL#Gk5F~tWgN)Ur3s*phx$ZIpKWtnP z|Dc(x^HR@_=fM=t0X&*dd&^O>SwRer`qjH5at9zEUW`6uni_t=E75=PD2V3I1J7oE z!c6o0CV4xc-rY=f(M{0Xw<6H#5SLi}uV1lqSzaV|G1N!=q$&?Lv<}_~^kzETH({~Q z%lEmW08rF|E>LZ4!4_whGbYqM_ja~@Gfdt}R1C2XI~z(%w6Bp_*9+WWU1)8@`FkU9 zg)~^aJ1YmPhpoO{mCJ+2PiJFMI#mtEa2&%KBdo(N13%721zq%v%`pdF>kV{3@c6@v zd@>rMVX>Os9K37+O@G+8PFy1Nv#RUwSjTvhk0$x_ssj)QJtZ<@?01ys|18Ns{c^gl zezWi|1Bzo)UpPg%h0BwRoNFA_7h(5H+KkEF zHurAS=88~EP`1-%;%WAfTbBne0b*e4vM8IT3@FqxBN!IBuepTSN$TPp(oAF@mH~Yv zD=9n!jryL-jzmXT=6L}XgR+@Ir-O(H@4?~;HpV==bQQ_4|EUCVXboK(;zRH4dWK{X z1Pm%Is(JTI`?0b#2$uuS-@+SQ@v*bfY|!VDaG_qFjR3Svokb}!!UbHeXMPBF^g15( zX0U=Wp8JdB9uy4M$Ex5M3Z|W^GRRVRWTBxjXL}rTER9J}`jLSD4&M!viX9|uKzz@~ z(T;VRMKS+4{-WfZ9=Tg+wOYZ*#r%i89nAOR45%9p4dmn-X?8wT4WDj>|T` z3E!7(PBrZE3TlCTLpfPcF&^Yf)D$%}lhtO)fJFjFNiGK(h?1~nKzObW<3&`pA!EF# z!33M84sW8C9vs%_y$)HVO~4IYcEjcRqt`o2458cKWkMo_0>sPkT`8~a$VQ244Cm;f zD2~)CKJ%BJ+nXAsfRkX(aJRsM>J@uf)6e9HOKR_&j(Vd3MrLu6wGem$e39@E^g@Ea zYIg6MO$H#WvWb15x2n6m#frIPvDmK3hH#K_I5Sfz1P+WQ(K=rXIgY<8_sfW<--2^L z$A~*q1v?e0#uq3&7~NrA4@NL#D3XM4aetPh&;n_i{7~EIhbl*?0}cY>#k}2ZhTV3B zS&Q>c@`R^nt;@Sa?`%|dE{dLsU@)Yl;U9#8^OAE2bdUOdah?X;3}1y`_lD7gdeD70 z-^sCeQyb>`cc11UQ?DVk5+%2kU-SJX++I3WmFq8zsZ`G>Eo~3yfCA*53!~@Q&p#ZR zliw|qL@?zpRk(A09Xo249~(`?#ENsH_7Qn!(!MBh>o%ncv6{oU8D%TqOI&(dh4l1v zlAWpz5JFX|ayrTS>Z%{C`Z32v{uCv9#0|(jg)HT$D z$FZ=j{bJ7H1Y?Y^eSwaq12`UqEc7eFAYZlj!}r5l*t$|~LoCKKk3vRQVhO14+5d$$ z5c2+?!Byafus!`6z~B5Vu>X7XO#N{0|DUWqUcbBlzl~?9`~Pcm?EAl2KFQ3jBr#Z- z&cwru-)zhK%-{lB$IhcVUbuBKQUFGuYboKNq0`fSlnzlLPD6aqlA2ZLq7C#4X_5Dw zTeZ;%?7aBO5tDE&zgCQfY^AhTkli2DDhBU|S}{|vCs!zc^WSV+=ZLcuC6>_Y)PE=F zv`XjC3EYmn#@i8aRso)x_r$wHb1GpsvA+3c(DZCLQF159AugkuDHM5hc4$5Id8P(? zIx_fHSfYlZ`js(X#le;OOlWbSHW8;q+ZOlg#Op2jz1M8&nsf1>&lnfGf;%m$+|A~wJT+A$OUT84#}7SlV+(y_({rQ|D$y+e^6 zvY3wU*r^UI>BV;RZyIxOX04I2sDY>^5$$b zWlL7A2v?`L zm%a8GVJCKjK8+}*3tT;dei|08S`%r%4~DtwFGUPst?LBvb#;riNWHa=W@kncjwTBx zM6|UQxQcrP%EWEn&dDU#H@~gThPh%fMLJkf3q=*|E;7FnDs{U$ow#K##|917e>A^u zg6z7uJ9wv&g=bR^h)25@Eo$f4+1UKs(d&0V{!6v-~Z$B zll43K?^YfQ{te#Sp@~?PeHdvSLdz`v&?=^*alLFWjw&)7HAw6<1+6Sw6hyRl_T)Eu z{%x7peQR1 zWc?rrPHRkHkCBCjD}{p5R@Jp9?k0>EvXOc`*vUA)du``i0H*N)65kbT_NQdJlP1$C%Jmdx)y@m zEC2zDdx}}a?KtMqqA(h`)0ml{7Dl?mZEL@8)qgEM{aSqdG%eKse{4Kx6Re5jq3wvR zpfWZ!c;PZkDlcq?en9)pfh{~}VH^|l#R;kr06fW{8YMwA+zg0$gLU&o`Ra52^Z%JR z8>DLG_uqY2eoK9w1RvCast+{52IwG0t5p&t1I%zp&`dHoV)UEIuwyXF*y5X;bAZi= z09&E%y>2p*>BqRJ0vns=!&wALI0~EgPKVl9xbCB4qus@g&K!Q!`DO(C=Poqt2Y#?D zpefTshYm~^5zabm#NfQW1&L}F&tu&g|LH`;646ru^Pn>|E&dAFwL}5}gd?Y8aj3#$ z$RG2Hb5E3ImPvbojB+RVea=%U|8bbDFRf#N|KF3xkDmGR-}<9F|NmQgOoTrZ;Li$L zC6@vQ6n}rjnrCegR|Bz22^H$UO@476yy*pR)P75EKAKlkOfwa^f;Z>En<>=ND^z#Iw<2+1`XC^WU;uRFI`JIC`1Ucw{o6+S6f*PES`h|lDVfv^N?rD}?S9R)M zzC+Lh4(GBn8I7~a^a>IHGS^5YrWQHoAlYzso=w2^CQzZH1-FR7A!0v81w7yR<}5EF zdz0`7xmT~@z|=4TuIh&@xVkft%eQK&=t{ghs*s>BqCZ`b|2tq@llRaazYR3_ymtly z0O)2EM{53awTot$Ko7A$504-g|>ZwTCm8fB>k@MAJ+kaKCn?NNQV!RMT9 z1WrC9YdwODOoJ=-h%#0M$;%iFibt{Jy)iP#)i$)wp#)?EEX<~cFnp1;TMygi zAdSrMC?a|&r?XQ8+c-oLC_!@n-K%#U2pEFPWHw}QOxAa)54|&Dws1skCjj*Tu3C|L zDCZ_;jF}>5(xjoGL%Op(c%4ALPQo*7QmN^TMU8@9$)a>GZ(LZ^%9#4HtIwISvD0Cu zb=*H5xEn#X`tYVKOZSr3BXv?r2Kk39F)%5`Y3KMnw zyz`kYF~|9`vynd=G{;|D+d`<9h>>*A6grM3e@<3ot;f-7nJKJm2v%X#Re|&i51Wq{ zWT%<kn;3XjfiNxS|TkYEGM*w;Mezfy?l0KTM)d-s=xT9o$}A^O8FOV#zGQOi;5wL z%q6sLxgt?MR>y zEVOw5VuGnHPHnG!uwc;9Qo5+C)B6^r0hUy5gkW1>%h0wn+JL|`D>6Y0udPpY-bp3e zkL?qRCV>8_1sYWs$#4WM=#5T?fRowOb49ik+?|r>0)xPSNIrff-}qG8t{B-d>+iZO zObZq+R|dy8V#)M<;g(?miUk+erBrPd*S2lVKt)Yp$NYmd|Evs)6^H?r@wBx`K6ScD zi;^qpKOr_%u~un6N4Q$W-e`h!%K$h+{+3dL|2`BIL<+n#s6=ax?n9z+EdT|tJJK;m z5v$$?KYy2T2AuNW6w?---)2{dG_KVPd`08Ah$uJ{9_Vh?s|uuEpUjbdf|rtrq8~#_ zie2$kQWG}Ej?$v>#1q5}j)on?=Kf<143^YczMyE|!|{x?{hIkH@%T6&rjx5`=zij# zSEHFaSPiG}$3#olXDQw^P$^h;(NyQ_4-grEEH<-`88}ZSU9k%4jV{Hfs;<|e4~<3M z8q=;`SWI%WS2VfX70am_7uw9wXUUr;cXXB8-Yi)0rZHb6Ti$5p!}G6_D?g75*qp=( zoMr(-@Il`NTBuC~?v=~%km~WNrYYM>H9p)-`|jQird6;5m6ef9i%r@_F*I?>H+?XL zA&DMMOGnnPOe=QcQe4mvNoJ15*nC*9m<5G@_af=OA4cyAA6(m(vr4rpuEN3-l9l;74)2kj z*TE{5J)1;}U$)5TiOjYUZa3`s(AqK3QLVc6a}K8xOCO>v_qd zaH!$GVnzISJ#zh%5hYylyc=4SgDrwR_yT6IX#GEV=G%Wfd-~{Z{ol${3OMT^&3e13 zxu7ngmAd5`dc$XMMa@e9bIHM?X?a*tTsz)B0^k(dDD3V1m;e+G;z2PSM{<0n+tozV z1({e$E&1>w9pvZ*3GGa%p{-1|7pLZh%82LkZr;l@h~)XS z=;E2YWqlV*K<~?!)9-?t%Jpv$q5*kK;0xVen>yMuW{@+jU;=kO^BTc<}XQK~! zKh^g6`lmGrJI{OS3x+^r2XOP^bIkJ%8zE0`f?p}|JVKh3e%*<6{-ci?ovj2Y8q;iD zP}Dk|pe5fbeso~{t6z=qzythYHnu}UXP+7SR=4~L@Y*Ei8T{?HrVK_lu{{z9BM4%$ zJ zaN}l@;=CP3ZbxJ=(kTaScdVaF43ha;5Q+yBw`n@;fjVb5JKg#?=E&0UQAQc%@}r7g zYN6?+lYS}eLe?kgHaR*k)f`Ltc(zSdo84A5b=I%eyfU;SchV#bP}=YRVkWYa)Hy0> zWZL9>quGZ}8ufZ0mtLo6xLPbF2kfRs<#R~OqVgRy6JE#=+L=hp{G>YpsN#8Pvl&&+ z*40eb;@W{Af|X@IC8r>FNBmuE++XR5?*BoAh%c*Sq5b#jBj5h}$=coie=Cn0HH4hY zmWtf+m1C`ZrN|>U3BBUs(L|%EoMuyve@Baf{rJK-AhBdlQ5F@zFGG*0pTfz$t6}QO za(fA!%#rAPLH=lTuA7D=k&#dEyhFGTUi2IsY*Hx+FU@{-JW>*&8_C22?DG-ymhn?Z zC_#bJ=cD==AU^}>ZrtEYgO0=y+8sFe2>K8ONf``y0s_Q6C3JR08C?_N<8+oz6k%p2 zyhrviFQ!Gy>+-T;O#HYmPDH&j%y%yvfKxOPDhT7F^3L5%47Q2vUMn6Zg|2ojGGzBS zQwuz6LEvm``n;tC?XHxMT~tUp;O1o%SD*|{QAs&*s6=#;WD_C_bq`SSwsD3u7awZECda0PCN(zvb)RpP+~mcA z{kS!v5pYKjl{EJeuR6Qu-q@OPf78EU| zB4`kegpWI=pNJnw%woHOier>jNuj)YCfSO{?Tjp)lGPbojSE(oCo9$COb>Mx|9^Ym zn%y>%tU1563S4)eCgnp>qMqHfOKMr7%k0wYP;&X!@pa1(2}vk}1TO$eR=Ko>S;739 zMa+6;1G9yR$jD6O3nV4eR6UTVPFY00Uy+fK5nqh68YnV2;XOK*Kzs}gJ0%Sf7D-Sv*0cfBqf!`(&$#8=r{FHF z>IIQ!Gl-bdlHpRgQqzig4+V_T9TC=VY0_Orj}PhcU%y~MMOqz2_6EEhHqG@k?g!PX zCJ)Q|OtJDeMv9a<@P&+aTIV~JEd;(KalU*JGJtpbVgYHZVchbg72~Gx7QuBSC?dbc z1&2vNNmXO|r6<@zgj0a*E??VXY~m=W!~LRK+2{T>ywMQWKI)WbgwdA-Of{J~{y?rR z@=-$QU1$ABXs^^=YK!+Z#E*87H73;adp#yss=jycZdiK%wJe-|RR4=^w2M1cxYGQJ z2F<^sHS*%Jo4}HgYQhd-Xwx@LH4JGTk&TI(Y{pV58e293(-Qv=#UjZf297JS0>iAr ziCPSt6EGA57b7QrKe&yPPp!`a3PoNp>g1pgJ|Dnks9KR}D>d79A%+P@f_eFNfNdA~ zz!QP0bva)tV2RZGpdD-W-URNpfvLqck};wjo$ZqORZQ}02D=YP|5X1Z%hW^W;{sy{ z){{A&&#~B*iy$lO-S``eK&Y|P>f^3>TGzIM;rN{Hg?!wZ$Mp*DUB&HXT>#K=6WNM% za}M{t{~9P3d}F+=GdBe-?s9$F3RT2AwS4g}UW7zF^aZJy=J?a$-$wBxpv&nDUm`k; zE_V1bd6qW>8Uie8U`bjzQ&2pPp{miy)mf0c)%wR|EfrXDi_+m^kJK& zxHs`M(-7vh2~g1HjRyh^d0xL2DJb-YFT${2l!)EY!9KKff}JelU~(15P~k<)i;_U9n}2B@LDZ=4Ge5!*{7+x zt6Z@v33K>Xv)s{O=mj@#lc+tojEk=JP6w=PtnE)?mc}`Ob3|G)Oj$+Y)T(3QnA1@4 zyPV2|5n{=pIs_37abjFX{*}k(hNFGQX-4*}5nScEciku;fwI2&%_D=+Zi}JOU%K;? z(|W=+-UW)Dajl2VKhjg~qk?$M@1o2o*aoo$rGeL2m)eBN$6qz*S3CP01PUa8% z=GwBkfAwdGm&Fh7V#Gn6x zl|FyI{2U3A_?QL#Aroha5AiS<>|G~uKd9ru$Y(;tKCk!cnM}(k1l#d}25tZsuRs|% zR3gK+Z-3WVuQ&ctUlCac!#;gqtFORU*%N=1UB?MVVMqO5pLgXMD&7oIR@h*=7l*dY%VWf0W&kYz=M5RNxK}T>4^9L*){YV#XM@Z zo3%Qs<>HbO%QMGD$h)d4BVhKGdZXT075!zgOnA4{=K@Gf)PP05qNgE=K1TiTilYW<#74a#BWY>E>V`v>MgJQnWvkwhb@;uWjDptJW%CIoOUyS$ zuVVL>WZS#fe)NeKxsrE@Gk5`;(SQF#k3!DZ7lm!q*JMl*r|D8U^l#Y?{r47Rlab^? zc?mZtZ{}KFW-o?2#SMMmR4b#1CFnY|hQ*7L9U)VP$z zOX&UMGc|2fU0x2aAS@BApEWfVK~&{5&}dW|^l$ilZo$~gF64e_mN@IpOW&xk%5g(- z!$1EcU)p!52Drpt9jM?{tg(?(1z>Ua-J6bU%AYG=A`J~tN&2j0XOR|-(i2(R}p+)BG0QBy$QP_&xO#HywMxVf)!wNvdJ=r z6Ewb&{=R9&EWz9_kyMlq))vgFTp7b4NZd<9b^y+vzpJ~4deDpeT4Y}0=pqW!>pekX zd2v3wqcC;^6Lj+oIaTCIZ^g`JY1do2)o3XHEcYzjWSA;)6k!Y=mtK9Dm$5((;iz``1tW7RCc}aR}c78FZ9G^#ar6PIF@*X0u+`M@39No<)(kPB(FBbXO_4D ziQ{2q3@u@@D9#QOl)XhxFou2*eUL5PWf-QU8MZC11M6#K?tu6nJ7ba?lVGR--U( zfj5!WK>%d3e({03MO*MV)W4E|KEOcpXEWLJV;Fajbm_4h@(0N?|L_0$-~aFb{7<$} z;40xA(9NR0@YMU{j~WF1H?FTUtpn)c*2YGm{{PBqW8IYhtT!4Z{hvqp%YQ77(u7Sv zT*5qLauz1}1Y-9|X(R}L=TUS4;c@gs(eY0Mi84<&F;!z6FXQyk%$<&SF}{a++{#Xr zifZpDtKqCPmMCvSSu2>|Xf>}5FtSL1l0j}ti$j^|?I*ZTPcvh8M^2ttJ@kht| zt@GB=kEqI`45diQ6(u;y5j$3+HV(hoP3hKDwWCnqF`++(%z<2jVWkMB4=3t6Omd2r)zuM3g4Da)XrlX6!eotvCjucnSB(zJG zKxrjQg@S=9FYA7h@kx?Tbj<<531Ath2sj%2phPl1FQPt%Bx`$duyQC|JIj-6_@EaR zfzaonacIy(h;^oboua-;7uIwH|IZc8AWKlcs(ZM>;-w2eVdLn*k5_&oyxGDS1!UR%Y{49EX*Ai zUs#{mMH|uTs~{@H1DrpjLPmmE>0@uuV1tt-HYa>qDZ^B_lS(okh91T zgQcuHt1ABFAYnKiPb~}iGX^35D|ptLNgb2ke>T@m|KA(yE9LvoT!NH95u4Vb4KGDd zB>hrFcn&|2ZlT|TKys%Nztd~5BvVWt$F$SQ(#b;)b!0t>`1nacRL7T38l+Nu0fl~I zPaX7vfk@?~KOszoAZ?wurStaatbN!z|8e)Ay)Q&aNXNIoW6D0zYGIFomKci4j|az- zCp;UeVlI#CVjv1VdPwa0>`hB_Ti`L{>4ygvb0e%~7w&^Odr47f;J}fyjB=_KwN-|| zEthx=KV9keqL(?S|0&!TszyZ;-d`z0jPrMVe(MZJvC4mR;{a|dRj5eH$rfJ}o`drI zbIySC2>iIul!^3N5N(2$0q0#_Hv(X5r;?Tn#{REgoHfH4DfzfpawYNO30GJY6gB|4 zJT@ftF=v`I!;y?po7wgVZ-S00qz4H`gwas=Tb_(A{3oIGi0Xv1sAB^CUu~>!nDl>b zWv!(D^9Y=TqvjGE0uq{rXgSwR$|*fhwjT^nfzUCtEbXy^{70t{M~@XO{caTcc(v;U z-8kvJBp8C4NB?fCiQa|Tb*n$j?ut@-zmf<9a>+MyPh1}PP1a9v+eAA}{^-rYW@t@! zxT6B{8V+eLVjws^x7P8o5%7^UMzb>LM#yd}7a`&QF6=cu(MFcNX>?_=X|(-CVX1IH zaL?!L=|(A8IMH+0C95bdns=XyPYKvSGA1F-et};l}@%NuZo)1m62T-v#WOxkgLw3oqchvE+2JxOY3PXM9DX2TC zbOH-J%C%kyXHK*s7`y(kWxUv`ToX!jl`h*2d0*l6RX%LXT2KV^)I_cfg+V?41^p%) z*O?vv6Y<|S*G>DMjmFw$dH&BMxX%AqO!_y83D{+;M55H(tGJKie!>)@D;C9}3&!s0 zY3uC#?5C5~sY;-7GD&uN>;}h_5s1q9TD^FpXdjSJ>h;jQlTuL!n;u6VkYzWm%6|1Y z_KFd)STjkpBAqACd1A+3t zu3GxP>m~m8T*6GKxJuPHy_oXYa8bhoVyM$8b!SzJm@g)tyG$YaTD!W~D4njLp9IYjD+odOAw(o{XcJ+P=>*KvbS zmBZQPe+ZIKMs+BZQmNScO8&j_L4syC?X|$!Xq~`*!+vQpy?GArxIsh-50#`2q4-)M zhZl4uFncujh4IB&^~Rv)OI|M~U+#_!Vs}m62{3%;=J*l2ppPEc0yW2OZlhD&qxnz_ zd#A=})=g7mo6<)ZrslWZh2xgL(5?zN4w~LXe#SiYE*RH=eh94Do!)HvHlFwiw)bg! zW)#@uI)y^EPi~fS&V0-~GHo|rh&mRWIaSRnA26L?yDRM>{1$Y7+`we%9_o;pBuakf zgQ0G~ykmA7e?u!jNTYC&>D{7l4?OmNLw%CIo{iZOpMT4gD7_nG{^!?$p8+{FXuTfy z)V-L7Epv5n7=_v1^=R

|Gu)#nPJ_Lojv67;wpP5?+M^gc^q83>s?1|9N?vhc3@W zJiQFTe-zTQ<(Mm?ka?R|zJhj)8{vsXIaY+QIFXA;Bbu|WjZm{hRZuu^(9z{m8eT!? zD$0iP2X~tMiSsb#Fw2)?8XtoxRqpokF(v=D2;AtG{PE+9R)+32NzP-E2aPMxrA|#BjcYnSeEaD?0A%25{4^NoVm+&lxS@<~O(Vn9tKTSQYi^C+m@ySX>I3-G7xMC9LSCzXKQBX-H&4tv6E2UBDcLYox zsXpS85!xG8wK|&m3@s{$4R^&i{yj&&ce7ex029_%aS_eq6jx--XW9?Joi>viD@2WX zO{o#pyk#mpX;WuTm^>&aXN41STk2r#4u_gwL!p2b4np*WJ7FZOUMP=QRb|iY6g0)q zl*5*7yY#w<38M1V=0Ytl4F)3>-{7_r$FJIyu+{U-j3EF$#%h38{c=q z9a@ievnzi3Wof$y6N_Bbf@#Okm^JDJb7rNpp8mw=BKmK<{}Is0j9&mJo&RgArvBIZ z%37)aJ(u8If%~o3yKfK9&e4|~?DsY3P{CRiDc>BQV#;R>RJFeHtRT5C!Z)@?i@Pl7`2$pxLHyS-^}pI}@4r1i zJ>2b_DfM6YVQ;jQ_WdNAQ2!5aciX3Lj^CO+_%!mv^g13*(+56cd=*Zft7+4T?b-TI zT&bs0Y(l4KnA;ynVFObxax3~fr6z?XaeD^E)o&V{u=i!+jz}({)^qP}0!b*InymhA zf_nbe57XP*Q{djj4+e@ddu{PtM5r#$DJ%{pzLe5FErxKWl&+}4I)fM$ z<5y|0Ro;Em*-pz;Fc}R@v4HLWa=fB1V}c}S#RQ?M=C#PGy9ZgUTN>HY6jxPuEY$xl zDwY|$l3(bl5^=c-YAZW5mbF1IDf+hyD*Y#00zUNIqvWV4<*=($p{NG%H zz&d`I9nN^hjjx@mdS_EjsF^W`q>KLGuH4{H7F_nf-84NU)a%(Wfs^>Zm4=1?v9(^x zf9DdW#Q)%ry$nz(IPJ#6fU#4r#m4{6tEwt0s=B-Q!t|1rw+s6Xm}=KKyXEK4Jq8uu z&9DSQU#&^XgWgIImht&Azh$zNJ5AM}C>DWP+4CzyB@BDPAY)=EwV;ph8Gr(MG}&DL z@KKZ*#a%yYV-D=GajnI&nImN}5De#uhRLXu7bjv5%wmg2*J08ucc?UImRDqL6p6v) zM#LtMWfW3U;Xh$e=|8_@EaN-s0eeTKh4Hngz$E(L*fj0GH@CJ*`ahRoUF&ttA7Pl` zxWGR^TJR9HA`@u}$sSW%HPNOht8^>qWK2op#$3;a?oH}2JQi{Mvaf%nXFf~0W;coi zAys1}#41-Xu@!9$`)N|FnQRe(L25 zK+;@vMk=lXif;FJYFer2ErgnR-1cIz+`wFPRX1?LqA4;}N-tl49u*4q|BqodI|?vS z{aY3f4<;7XTE_@+zpF^N#d&)ql}@| z<3|*Cb8o4Oq(3moP#(^fQysIn2VR;cHT07}Zr#ulOXS5A%Z8j=tVAj09w*P%6PM&? zs$if0Y#8^$**yKTFlqmkpOZ z$*-pa6Z!uYOa8a9wp#B0d4$6KZ>)kUdj@9@=L$IxuM1Dzi!wYmIQjq2S&$6;XkPsP z`i8~-uWvNU{XdW3;{R(NgQypZI1WbuV^wy<@=>AS43H#&9jVsyzCvFs(yt2@qkC{+ zmgi2-F2>D)=l%-)7`=!;D3Ket|IxK4&QSK1Dj<{g|LTf~|FX5QRm%V85~jTWyEhkK z9Mj#-U3vbXo9cHIZ2tc;^0O=$v}fl4Wa9mQ)AIkbTFU?D6N>nMxe8PyrIO+Q!v)9w zXIvP*_RNd_Z>%;f{(r5s|C~#(%pLRTucB|_(=2gpf0Js+JSAoLorR+P&tcjRgB0Cr zf1M%Fr2W6PWuE_Ao2#Y#Z!W=5)Xw}YRUF z)=viT({xm--#VNNv*~V20g19wJ@xQEd9e4tFi>hCDCRu$e;SQ-)Bn?EV`HV<|MLj? z{_imOvBS6*)Fyb>`?h}VoDS^@9DX}ZARN%KP~vc8r|iYuQ6G{Y528CmO34~Q{-ESw zysxmYN#(=)3btQJD-$_#%$K$J!RwHIrBt+cY7iDA;zeP@go#e~;+}!6HNj_`GDd9o zc7haX-xsC-$fTj)@Fel?ay-;xC?1U(RL8gpS1K%Zv41~7)BiRss^%pBS=+Mjf2ID{ zoPvP^7z{>z)xztH5qCyEj*dHry9WqWI6z)1dRAkfb0kcTewh=KoEn*CdTRTm&qc2=dKV!X`(1C}w-(i}^wqEftJf!J#spf|qNx$rf?A5Q1 zw!d%;foKcley^{JT3+-AM)JIq}!jWzGfq#iWVaTSlHR+?LsAL5-cD zAKwJiRGP4qr`irtR(^4h_PA~-6zmVfBMoJuUa$KM)~k3-zSp*MT0AJwP559U!gKU< z#=@o+%3<+W6VsjI-hbBTT!jT^tv&IRG|;wlmG3}pQ;!Cp2J!7++qDN|9(yc+M@4va zt@uP)o6UlKFlM<)V{5VH#p#ebD9627hcZ)4rm|JmADE%krq5}Y{DKkgp1_YtW4 z&GG(Z)M$YLPw9~p1ctB>y83wUhx6C%gVy=U?%7$ZbA;*HVtf94`FZ`z&uJ}7@1Hpi zWQ2aze5dq->^ko0q;{xm8~SqXBa|7i7m~yI)y)u%y90}DU^-!_30zy%S4UH6>Te#4 z+9m(XzK`MyKRV6sq5%Iq!KdKl@j5`0_W#P(hKc{YzFOY@<`TxNdG{))mRbORq~P5D zOs>czg>$k0UEehI|27+?{r`M|F2p|y;1<-=Me@4zAETD~JT5m3ghk`|QA7f2b_(Oy ze-44k@6*SWeMo|Alnhd4>Nke;RlwT!Oy;ANc0?5EyqYV~#;yh#=?oi6$2% zcf%&2L@ZGA?HVGHiD=m`4SCccKvo@pyxndG_x`8(o)rl2#QT54-2YoEjq?1TOK|D` zyO9=EkVadct*#jHI+FQW*yS_SA)P#*#8aK?&kf!QJ(+v3FClT*$Y`P=y81L-IMl1pj#iI z5ae2Sc~${W>|C7>R}pd}k&V?AB2?Cvty`qQwIVOlw1)0|#Y!YC9jEme%lbkjXP=j4fN)lWAQf~6!L9p;&VdC@4^j!SEpaXEr|I12g|1p;^X8-5QpsMKk zI$gUhN8tsrcEE_~KITOFLg5hQFkI1<*iv%}>i&m0f9Gf2>()&$$Y$jG3B$zupN0Rl z(O510zs)6lja!dLi+}S~mR}7g+$X;mTIn)xr8zAA-BOOkT$Djlw@hDpzeQi@I2F_pM^>Lf8Fx`wYFC7 z|M>*d{{O#6aG9vVAL$UbWssAC&qLUb)4lSUx4tjj5s;Oxt2_a!W-@BAHM>zYFSn60 z%a#$(^VXnP({^6|+_(%z@zqtp-AF$5tjsT{`=9Gm;2nOZv|u9tzhTLLH`Yu0pSgsw z=YPGv?0o3gPwpWjeW-%7CYUuI7LChq@r)Bb0DeZAEGm`kvjVYfr|Jl>%O ztZ>qXUZ2j?3x=M*5l!`Q^wi_?M-R6AKOFoVbhGv#%tAk!i4NGr{l96-|F=r~zd40R zLGf9y1@@Y$j(e=E*$TFcO&!WYiuA0KOPVmt;Mo6ZOLx_<9}K^a0!-ZhtLFWGYkjTU z|8oiY{eObrpCV;3*OICBf?=*MO7OcoMIL_^6?KKD9+5v+u=hWggU;{*Fk$~U;6Ic9 z-&`sA|G5N9qbrRgzb5`Th_8+>@Bo&?pi2=3Z{OZ)K~jcrHpEB5?@Sw8mTE5v{46+N z>#M_n02sXFciu_Z{q$1SUAgo#KdN}Y0_j1taP}7>gtI?jd9r`Q!DY<;!1>GQuTi&) zZxr}9RMop3?nFr;`59Av_qD;n6C<)}_%{XbPS~>H>5?({8dl5;l@2K=|QSC=x8Xb6ISwQSYCd z1giUAXjI3*zxVw??<5IcjSxNWD`~)l{lB`hV&OkFHcI`ExrAx;zw~5cVZc2vJq$8m zM~qk=s_~{?z09n6C%9mrG#n@0p@Gacg=zQj)76m$_P`**$0LNJ9$R!1v<*;6u8U?u z_i}ZK9r5!0-f&!NVg1sp*BF%Ydy9pO{4|x|8i52JA12`qf?D(5ztBFij_RLy5A=_` z{rbl~pH2NMvsobjUg~GjQ~fJ-Q)>S~??&A$P82hPewe*9=M(sTK5d+T=TlMHUKAD; z87`+iY>H}-=3I>1!Y*IQW2}mrm~I_`x~42ehtjiZiBH*~0`iuo7cb3Vp*NR)l=1^krc+h^jlcNxQX57-Ncz#mWSpg{4+byyk3|Dcw*dn z@g;oCE6S1}s59(H-t11`_fnSeRp;nok&G|3zGrh5VuUgBA=1L8uoMmQGO^`P&eiLNE8J2k8$SZ2hm{*TTJ7Vf_AY ztZl4V`d^!C<^6vyLA}@uy(~qRN7t2fxl8a}z2)2ytS%Bbr#mpd9Q9Flw3}SPmF|)9 z#1XlMsgWbun#bL?@_Wq@b3YdT0%!C6quR>F8qVBSVgg!YPFKjXzV--|>>1%ENEq9i zx0?b{O$(|gd4aQ#Qxk+PSM{gk-%8-Z_S2rY?#&`pOB!=9HNQVKw|BLg?)j%?dFZKG zev4`@*F!bo|LA^#cB7+L%KPNl{s|94tQ5tTW~&yn;z#0J2f+c`LnGMHKvIt#@D zx_%U0z)EVupNjub1^BqA1RAv6Yv8HPmaqp}YnCd+mRGjT63GWx-l^$5eUZyIM3q4C z2;{B!y&e+?!N0&cus^%k{@{wlM593z4n8S=Vj5n|_hMWRfStu=d{Vu85unG8Ha=C` z?U{QHP@-pVr$keq;m_Kf*wocH7`h9804tH6wv#ZU-cXy^pZySa_8oue##dCvGl8~t1VEI2CQt$QLRLwa>b7)SC*2wAF}Xiu z+_J|^P19Yq+C(VM)RyAx@ zYjGNjR{<;f&U-I#qj6e=F}oyXustnDj-P6hR*m96QM~n%0L|OSLzY1VS2ArAgj0QSA=;lmrQ{{MR@Hj6g z-?BBP78Z;4TRaX;eEsIA#W4HO16&01S!6eNbfC_LjMtHcjj_%jSB!ycx<=ChcWj{r z>+g2Eml=z~A>t_v+KN1WlUV&1+_4+e#7b3Shx%VIXQ_0IDk9iXpntxX#Dx^XE=RDs zU+Hw`b(o;(8EcObi9@W8@RTz%n~9h-w2xk2q;anf>Cov4o)4fph5Nw`H3N?zUO+Fn zInmJb9ZqiF#PO#CIE%V>UFj5{a=|uMooVgW;UK9ri}ufC-;+0UN9$bmS*K~qQbxs&@86^ojK~#dQ)Q!RA+r-sC8ik(d zM@6m6T<5&|l(JcP>3(0yi~FFg7tN*Wa2Va;^aJ&MdB(V)K`-@y0go^BWwBk2#GkOa zY947=YDwOoSvQ2^!J`US?nV>pDe~XS_AAuubQI+{tStb2aei=qRUvRR+_37fCg=(O zpv|g+DyZ;*;`Z6hFQPBhSoMzCG%uYm>~iqdn-&$ul@TNZ=14`nqnS{>6zV17D2}gF z$^x3YXuy%`Ou892r3QK8z9BtmTJi+7Gx$yTLDniXeW3d5`H0)1{}KGmm+k@{ZTfVwcfr|M0v z>fpREDSOnz@Z9@nFMvB$7pAT!KApe`od)Q(!TV?x`VpV>&~`TQxFVWhEsMNcm25HEyyJ|xF+%9kl!G+o1^T+@BeAarT?j`?|t+4-}SW( z%m3eciT^&IAR)RQ^e7@8dnVWm&d*z*`OGjp?fRAL-r<<*c%A2rVp!bReYbvuSZAH4j({$H9rkp8sXqn2Vjd!j1TvTrz zQz+Nwh>p{#(MoMum-rShAsAh;b#C3sMS=<={#3xpyYcic7V_9d80T2FOZ3x&1GHZs>t|P2BgG|&%g?ne z#b(-896`C(Q;}A#DOa@=L@pfatY5h3SUz)@#>46hNG{~);gZ!8@;8tV+EUe%u#Y0e zczy38b#J$}w^>oXZ10uPay){(r2hLC>AN`j1m#+LQ5zajxA$woCWMHb^+&iiQ@Rk3 z43WdV=n2hElj+6@@i4ssHN9s{{`O2Cezg?ZN0>0}KNABHR+y-GJST@%3E1M zA`OXtPCq}>C3|dwb_cLqe7;)pwoO5b#MIjj|yB=MjV14^8PpRe>OKu{IB^0 z^NP;(EW|#^RVWGC;yUPlVzTlu=rN%>O3C`_2jk6OO5?a<7_Wh8s?nc6LT_c zH-yv|rfCc*Vh!6xtIc}+AP9QMEGk)5t3_FAGq1kpD75Jq9B#Sj<7=4cZjx)GNX)bQ zr{huV^Pg^+TxcpDP`-)=Ox*ts3;%0#tHl4AOBm~8t=P$$qWqdan!%?2qFm*ai_N|F zH}gV9&pwWOievRv6XmH+Rr)pF24(Z!SG1VQhZ-;VSeGt1C0|0jZE9a{J^AFP>9G|- z8ali9RCg0~|M$Zl-1Bc?J_HpwlwZDv08H5bjkQe^|7&Zj^#3)Vpr8Nwe48A=QZKk! zA~~cbZl{fQh_?Wj9m3bk^B?_kU_Dfh<^LypHW9f@oa2cos*mtE>3BFdyMtnFBT>bv zjaKyHp7*1v^p{h$xI02KS`?C73czy4cbdxdn{Na=F3}M$VXQC9V(bID{B;cKWV^6z zDr>nE0Tl<8{wKkIkHRFt$NRbBzc)5b`Oo_LRw@6POPJvQ5%svMmdg56Vp?2A>=smA z%s_rfsQUFPK8z;!PKV(iRBHBSD@Ssqg)chtY z`5E<_`59@oa*=-9l=H8h|1A6L9Y9XH|E;c=_#bNhr=aOH&&}H#aF|8}t6}pdQr$RAZ<)I~!8-BL5fV4p>8#CkE6=W3iZv(;y!= zBsIw&i&Hh6Wvfe$@Ck!U|F<(jC6&4P{{~`j;=jO`&657lBUp;8hs<(9Q#9?8oJZ3= zO($%_KBLTa$3AVgn`fU)6xul!Ri!q5y6sS|SBg!9o;<9V5(k zq=lZkk6ui*joiD41`u`h#&0EV2AShXOiXTr32TjBlrMPIF)($kENpO(yB62x0gXiA zOh7A9!NJrV``B43-==Sq$hAqGnH8nn-UH}|)MVwl=XbO33M-GMS1a{g7Q6F^a?|U0 z6!qFfe5ylD-IQ$s0~J#tRY8w<%Sm%9ga@!`a1EYd)+D=o4GH%ZXYp3zJ##tQIjn~X zT7JJ@7SnenUDH9&!(L@e@L5Te#mKlI zVhE-+jAv{}Q)rYehbTgZu_5H0-kL_k9tt|-7DPtV0rjBR;p9W((w=jmy2c3>{6lb; z>N3hPd0L-`(2bynlZKg!4(all^>-Is_kT;->)ZPOUE5l-{l9FL_y4&BgPQkx3e;hZ zV|HktAPM7>&@$izc%(qp$D_Z+zXaatgz6lR?x`l87BW;6VOk?gogD-Evqni+iy-JdfBQ^tx^F5@uUUUnO!p=`#zMRu>D6u)m_`}d}R5PB#NKA^6Y75e+;yqK$ z9S;uc$W-vgoa-;^@5^$N>Nh@RryGyX#!i)%1Vr~b!4>p{+GA!+6qKN`PMQ)8tSBvN zKyh8XF$_0pjCe#BjNrSsqDoz$S8ZU+#Hl2N9u=J(>&c&%|{&$YBEBVZya$&;8fEB zQzc4uYF!UEBq_ZApTyA}+?Jww`2Sot@Bf<{YbE~6T*A}nOBZSP!afn}F0D$24I1Lo zeU|a~w0{}+*(i~#R@VS9B1sj%^hA>G2REuQCK14=o}X_W)cvpFKcEN0&XBiNyZLcHl1U8~>xm|00h9HWa7$ps@s>b6^ZjUv+^~<39owuaUvvIgt)Y zD(G6xhJY{)Y$pruI88aqnIs31mR`~aDbRP@)q`}-o>JDFZxNi1VDmbC!DV&3MSCyq9o&2z0 zcGXiOu{`yLoO7_{f3^d_Z;k)7zGmS+Z)a}wEvw;cq(KT)6e3!1!m#;?!x?#FKt6a&>n=@6k>wOcm8gg zm@Xd2iWVl`_+3PjcS#rXdG}3qWCbK% zPx!|oB?!Gn%V8smEVL9A-8LK5I`^1Y*q#fm!a&*63I6Y0gZt}3@%^91Wfl;illZ?a zi~j@muk`;um+(y0iFoTc2cc&U% za9^J(wyCvZ>U;2S=rXJBe=g!qm$}!#IobchZa4S;Mq|C?|K<`bb`C9|YL8(A3z36o z#4(PyG%=FLiSO`Zw9Ge4ZyDm3!$B|j>|!t{%QIE)t~Jwy^qNXf6`_*V z`^s4Ec{Bd3_qm4#C;ykt3i*%13oQut; zOv{B>EW`ccbVW#Q6j4+mQzf9nv{8MwSa0=*+1>HQ&p|hvD$%yCdqZR}V|>?C^Y7CC zm5MZE0rt(`|4`Z2kpHZ#mG+-=35IBWKs=x+l^^l%wj)@l+tYjd2BZ5FRs}(wfLvn2 zZVRCbKT<$V7^)H)1ERhM6k&SYqy%+`>aDScr55hcY;cckeO&zz0&dl<95NrqDB0W3 zRrha{AsM^>Pr~8Xd48cV`TXCq{6ClYAM*)Q>i<8SOc*ZT^@p|G=dV$eI5&%Mk4Vjx zDS=+KJ`WXj{f~Iz{>ZRBKFS6B5k2vG3DY0&e6FqE_lL|l7_Rd`T24vb6!T^A+azLM zelH+O=>MaCD8vd2`Ze^jdl`Oa)Cg^u`vH{FOUEOHKn5~yJ@kiFs9PW$vD-`m(ZY?_ zRNc>OgE-D|Kr3Pjnj`iLVQ}wy(IF$)`-O2ecIRDT`mJh& zQ4agC^V|dc^YBWqRr5dZC?4XeXm@GBEQ=csW?9-*csaw;(wkYfE$qfKEDi6&Gc3-( zdGyH9`s)Md?YkHMaDBG@?$5Be_-d9@+#jyZva9~h3`@I={O&9l%%e-A^>P^xGB>%p zjW1`piLtoV8I~8s*$hj|vRU>uespOxDX_V`+c^0YB(CCjC`zw^zU}2Y4LOeSAh<>K z*mo=iRqsB|tTGCF$eZxDa1e!q;7MDOUc>L6Ye*>O-NfdcD(S{Gs-Qe|;$pZ(IOnWB z?9Fn4WuIrb_;*H0G{e#o|Mu~VUlb?rir!J&3;uN~{pT4b>nDWm*c#l(S#9sN&i9Tx zt@ESf{nmNw=*Om4=><1I6c5q$UB&y=s|*upF1yNAUYOYqA)5)>D1rHe3u>o7z3up88WPDPTp>Bx_wJMSaVqK~NI|8W2lL4Vx_!RL=G zA!X0opjJS5HmLca7cRa-C%aK7W<vF@b&Us zY6+uAOuSh<^)>CA1?Bz^qw#Gd0F&f@aQ8R;|1?%g`QKc^pL5lhK?GI)Z<$ccNB?JI zb<4E>-dHd3f94Z(!Tx^kkM1>>U)M;Tubl<`2l@RX`80y{O{qap^r+xg3=mHZ#af)4 z-5Xb2ffj?ntbIrN3-V()2>anLw$0M?I;_XQx7;RS7B~>rmK|>=ry4?t#@KSdE$E`a zbdDmP9$vxNXddYeJQU~*DflZ|oJmmz?EU4Pft7oQ&lDB33C9Z+vSznk&VS}_7v{LV zG#D{-++cW=X)}b86NG(DWb*=gzM+?&`~`?#9#Ff2K54H*Y~c4{6{7j5_nlYy*}w5= z39<%XXZ=VU^4CGuy_S|#oID;`*jDuPqd{9)7Y@ZxjY>0c=yp{9LH-3~#(pGm6sgl7 zu~4=9Cd}1vlxZdOcrOL)ujn=U{t2=|#2!B*5Go2vgHu+81x6zpGhlyEb5`Vr^GP2*&C@!BY z882}JbL%s_gc`+iim=mkkrPpPnsw8Z{3NN=>TjxNDfw8M!$iLqBkb5qJ0BLsGb*1- zau=vA7Q*mh(4&eMmwb7so=JBkVh{V>bR820W-Q;7S_JOyn^1&=9O|2r*)N-*!w`^_E#Do0+HAKy%Y!fh;ZX9Z0CD|Z$ z*`X}r>Bx2EtKrqzx*FI1p1uy-dy#Ppc7rmp2PbV;bX@IKH-bX|pJRL@1 zmO&pr!mdiQz!xbA)I7!Lz3b87Q)&*smK*182!|b;yc<})agtWdwS($X2h6lV8_i2P zHQ^gSKlxxn_E%bkNeo1eDSBZkRI3O!$h%H! zfO53nS6l`s$$wT?4Ew)T$WY>c%_TerT44-;bHU=Ns%9K{C4U-}<=<{_;lJGaK*C99 zZ6+e1iTa-_mi}jBt7G z0CTeJRl|^jtxyZ$gxfEf*D$5E5T!O=Nx&K?qr_FtP@8|C>w zmoPJ<`P>$&CXAiFt?3v~G68PjZ4#vqw%@k_0H(3%FNCae+4eh3`Yi%z>_d|XPH(WU z$)lw88vk9V4Gzb6~CK>Sa zG*cMy^OO%Tn#V6e~S2=|K9&wQ{sbfHDhjoF?PQ!MEJL3^)tblUnRbxffDaQ!pi z|KUg|>Hl29Vf)PEbHA{#7Z2}}@aj7As@+9zb*1t5rC}1J$hz%D;e~(Ud+kBDzOZl- zB(SPeBvN7O0Sgpd+<8}t4|J$k0}>Ym=o|z6`dtMzwBPdwciu2aQpgZrWPUgRBCy~C z2^-#FN_2GZrSWBkAfe0_$4}F^8=}<9>&4v>lelqn8aR`@YIYqgJUit%o-MLUdVwDy z-YA;qh$w041N{Kf!=E(60Sf=H4I(-U`ysCZv$IiP9)aQJT4U|3aqnF4Z@{|6UMkY- z+5$ejB;f@RmYSEc=Zj!~xu73#W&){*A}k?9_|r?Rbv15xv@pa0&G-R|^BP>Sy%J!6*wqnof|&fc`V)8p4??{+&a zuYKyBbdG;)@3;27XS=8H`&rF<*FJl5{PxU)6rJ6pv!A@<*WT{YPu>shqy5@K>pxFA zt31i#c~}(DIE`!@z%Y2(_){XzFqil@2q`%v;bqWcYJi#fuA+# zW#>$0eb+v1)x6zK`xFP{b>|q0$Kiw=$E*;@chsU%aHu_PMj#3PetX)=+p^! Date: Fri, 23 Jun 2023 12:12:28 -0700 Subject: [PATCH 4/6] Rename InternalResolutionError --- packages/core/src/types.ts | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/packages/core/src/types.ts b/packages/core/src/types.ts index 8d57681..666078a 100644 --- a/packages/core/src/types.ts +++ b/packages/core/src/types.ts @@ -77,7 +77,7 @@ export interface EntrypointResolutionProblem { resolutionKind: ResolutionKind; } -export interface InternalResolutionProblem { +export interface InternalResolutionErrorProblem { kind: "InternalResolutionError"; resolutionOption: ResolutionOption; fileName: string; @@ -103,7 +103,7 @@ export interface CJSOnlyExportsDefaultProblem { range: ts.TextRange; } -export type ResolutionBasedFileProblem = InternalResolutionProblem | UnexpectedModuleSyntaxProblem; +export type ResolutionBasedFileProblem = InternalResolutionErrorProblem | UnexpectedModuleSyntaxProblem; export type FileProblem = CJSOnlyExportsDefaultProblem; export type Problem = EntrypointResolutionProblem | ResolutionBasedFileProblem | FileProblem; export type ProblemKind = Problem["kind"]; From 9906a426ecebde915c2b5405317c9e6df65695a3 Mon Sep 17 00:00:00 2001 From: Andrew Branch Date: Fri, 23 Jun 2023 12:13:47 -0700 Subject: [PATCH 5/6] Add changesets --- .changeset/chilly-candles-approve.md | 5 +++++ .changeset/curvy-masks-learn.md | 5 +++++ .changeset/twelve-feet-leave.md | 5 +++++ 3 files changed, 15 insertions(+) create mode 100644 .changeset/chilly-candles-approve.md create mode 100644 .changeset/curvy-masks-learn.md create mode 100644 .changeset/twelve-feet-leave.md diff --git a/.changeset/chilly-candles-approve.md b/.changeset/chilly-candles-approve.md new file mode 100644 index 0000000..9917330 --- /dev/null +++ b/.changeset/chilly-candles-approve.md @@ -0,0 +1,5 @@ +--- +"@arethetypeswrong/core": patch +--- + +Fixed an issue where InternalResolutionError and UnexpectedModuleSyntax could be duplicated diff --git a/.changeset/curvy-masks-learn.md b/.changeset/curvy-masks-learn.md new file mode 100644 index 0000000..75f1599 --- /dev/null +++ b/.changeset/curvy-masks-learn.md @@ -0,0 +1,5 @@ +--- +"@arethetypeswrong/core": patch +--- + +Fixed an issue where InternalResolutionError was missing traces diff --git a/.changeset/twelve-feet-leave.md b/.changeset/twelve-feet-leave.md new file mode 100644 index 0000000..5f2a86c --- /dev/null +++ b/.changeset/twelve-feet-leave.md @@ -0,0 +1,5 @@ +--- +"@arethetypeswrong/core": minor +--- + +Inlined `InternalResolutionErrorDetails` into `InternalResolutionError` and renamed the interface to `InternalResolutionErrorProblem` to match other problem interfaces From d678cad503655c16e16455f37c487310e70f3e6e Mon Sep 17 00:00:00 2001 From: Andrew Branch Date: Fri, 23 Jun 2023 12:16:06 -0700 Subject: [PATCH 6/6] Update new snapshot --- .../snapshots/@apollo__client-3.7.16.tgz.md | 2534 +++++++++++------ 1 file changed, 1676 insertions(+), 858 deletions(-) diff --git a/packages/core/test/snapshots/@apollo__client-3.7.16.tgz.md b/packages/core/test/snapshots/@apollo__client-3.7.16.tgz.md index aa10ef5..5e42a84 100644 --- a/packages/core/test/snapshots/@apollo__client-3.7.16.tgz.md +++ b/packages/core/test/snapshots/@apollo__client-3.7.16.tgz.md @@ -413,1574 +413,2392 @@ "kind": "InternalResolutionError", "resolutionOption": "node16", "fileName": "/node_modules/@apollo/client/index.d.ts", - "error": { - "moduleSpecifier": "./core", - "pos": 13, - "end": 22, - "resolutionMode": 99 - } + "moduleSpecifier": "./core", + "pos": 13, + "end": 22, + "resolutionMode": 99, + "trace": [ + "======== Resolving module './core' from '/node_modules/@apollo/client/index.d.ts'. ========", + "Explicitly specified module resolution kind: 'Node16'.", + "Resolving in ESM mode with conditions 'import', 'types', 'node'.", + "Loading module as file / folder, candidate module location '/node_modules/@apollo/client/core', target file types: TypeScript, JavaScript, Declaration, JSON.", + "======== Module name './core' was not resolved. ========" + ] }, { "kind": "InternalResolutionError", "resolutionOption": "node16", "fileName": "/node_modules/@apollo/client/index.d.ts", - "error": { - "moduleSpecifier": "./react", - "pos": 37, - "end": 47, - "resolutionMode": 99 - } + "moduleSpecifier": "./react", + "pos": 37, + "end": 47, + "resolutionMode": 99, + "trace": [ + "======== Resolving module './react' from '/node_modules/@apollo/client/index.d.ts'. ========", + "Explicitly specified module resolution kind: 'Node16'.", + "Resolving in ESM mode with conditions 'import', 'types', 'node'.", + "Loading module as file / folder, candidate module location '/node_modules/@apollo/client/react', target file types: TypeScript, JavaScript, Declaration, JSON.", + "======== Module name './react' was not resolved. ========" + ] }, { "kind": "InternalResolutionError", "resolutionOption": "node16", "fileName": "/node_modules/@apollo/client/cache/index.d.ts", - "error": { - "moduleSpecifier": "../utilities/globals", - "pos": 6, - "end": 29, - "resolutionMode": 99 - } + "moduleSpecifier": "../utilities/globals", + "pos": 6, + "end": 29, + "resolutionMode": 99, + "trace": [ + "======== Resolving module '../utilities/globals' from '/node_modules/@apollo/client/cache/index.d.ts'. ========", + "Explicitly specified module resolution kind: 'Node16'.", + "Resolving in ESM mode with conditions 'import', 'types', 'node'.", + "Loading module as file / folder, candidate module location '/node_modules/@apollo/client/utilities/globals', target file types: TypeScript, JavaScript, Declaration, JSON.", + "======== Module name '../utilities/globals' was not resolved. ========" + ] }, { "kind": "InternalResolutionError", "resolutionOption": "node16", "fileName": "/node_modules/@apollo/client/cache/index.d.ts", - "error": { - "moduleSpecifier": "./core/cache", - "pos": 71, - "end": 86, - "resolutionMode": 99 - } + "moduleSpecifier": "./core/cache", + "pos": 71, + "end": 86, + "resolutionMode": 99, + "trace": [ + "======== Resolving module './core/cache' from '/node_modules/@apollo/client/cache/index.d.ts'. ========", + "Explicitly specified module resolution kind: 'Node16'.", + "Resolving in ESM mode with conditions 'import', 'types', 'node'.", + "Loading module as file / folder, candidate module location '/node_modules/@apollo/client/cache/core/cache', target file types: TypeScript, JavaScript, Declaration, JSON.", + "Directory '/node_modules/@apollo/client/cache/core/cache' does not exist, skipping all lookups in it.", + "======== Module name './core/cache' was not resolved. ========" + ] }, { "kind": "InternalResolutionError", "resolutionOption": "node16", "fileName": "/node_modules/@apollo/client/cache/index.d.ts", - "error": { - "moduleSpecifier": "./core/types/Cache", - "pos": 109, - "end": 130, - "resolutionMode": 99 - } + "moduleSpecifier": "./core/types/Cache", + "pos": 109, + "end": 130, + "resolutionMode": 99, + "trace": [ + "======== Resolving module './core/types/Cache' from '/node_modules/@apollo/client/cache/index.d.ts'. ========", + "Explicitly specified module resolution kind: 'Node16'.", + "Resolving in ESM mode with conditions 'import', 'types', 'node'.", + "Loading module as file / folder, candidate module location '/node_modules/@apollo/client/cache/core/types/Cache', target file types: TypeScript, JavaScript, Declaration, JSON.", + "Directory '/node_modules/@apollo/client/cache/core/types/Cache' does not exist, skipping all lookups in it.", + "======== Module name './core/types/Cache' was not resolved. ========" + ] }, { "kind": "InternalResolutionError", "resolutionOption": "node16", "fileName": "/node_modules/@apollo/client/cache/index.d.ts", - "error": { - "moduleSpecifier": "./core/types/DataProxy", - "pos": 157, - "end": 182, - "resolutionMode": 99 - } + "moduleSpecifier": "./core/types/DataProxy", + "pos": 157, + "end": 182, + "resolutionMode": 99, + "trace": [ + "======== Resolving module './core/types/DataProxy' from '/node_modules/@apollo/client/cache/index.d.ts'. ========", + "Explicitly specified module resolution kind: 'Node16'.", + "Resolving in ESM mode with conditions 'import', 'types', 'node'.", + "Loading module as file / folder, candidate module location '/node_modules/@apollo/client/cache/core/types/DataProxy', target file types: TypeScript, JavaScript, Declaration, JSON.", + "Directory '/node_modules/@apollo/client/cache/core/types/DataProxy' does not exist, skipping all lookups in it.", + "======== Module name './core/types/DataProxy' was not resolved. ========" + ] }, { "kind": "InternalResolutionError", "resolutionOption": "node16", "fileName": "/node_modules/@apollo/client/cache/index.d.ts", - "error": { - "moduleSpecifier": "./core/types/common", - "pos": 286, - "end": 308, - "resolutionMode": 99 - } + "moduleSpecifier": "./core/types/common", + "pos": 286, + "end": 308, + "resolutionMode": 99, + "trace": [ + "======== Resolving module './core/types/common' from '/node_modules/@apollo/client/cache/index.d.ts'. ========", + "Explicitly specified module resolution kind: 'Node16'.", + "Resolving in ESM mode with conditions 'import', 'types', 'node'.", + "Loading module as file / folder, candidate module location '/node_modules/@apollo/client/cache/core/types/common', target file types: TypeScript, JavaScript, Declaration, JSON.", + "Directory '/node_modules/@apollo/client/cache/core/types/common' does not exist, skipping all lookups in it.", + "======== Module name './core/types/common' was not resolved. ========" + ] }, { "kind": "InternalResolutionError", "resolutionOption": "node16", "fileName": "/node_modules/@apollo/client/cache/index.d.ts", - "error": { - "moduleSpecifier": "../utilities", - "pos": 364, - "end": 379, - "resolutionMode": 99 - } + "moduleSpecifier": "../utilities", + "pos": 364, + "end": 379, + "resolutionMode": 99, + "trace": [ + "======== Resolving module '../utilities' from '/node_modules/@apollo/client/cache/index.d.ts'. ========", + "Explicitly specified module resolution kind: 'Node16'.", + "Resolving in ESM mode with conditions 'import', 'types', 'node'.", + "Loading module as file / folder, candidate module location '/node_modules/@apollo/client/utilities', target file types: TypeScript, JavaScript, Declaration, JSON.", + "======== Module name '../utilities' was not resolved. ========" + ] }, { "kind": "InternalResolutionError", "resolutionOption": "node16", "fileName": "/node_modules/@apollo/client/cache/index.d.ts", - "error": { - "moduleSpecifier": "./inmemory/entityStore", - "pos": 408, - "end": 433, - "resolutionMode": 99 - } + "moduleSpecifier": "./inmemory/entityStore", + "pos": 408, + "end": 433, + "resolutionMode": 99, + "trace": [ + "======== Resolving module './inmemory/entityStore' from '/node_modules/@apollo/client/cache/index.d.ts'. ========", + "Explicitly specified module resolution kind: 'Node16'.", + "Resolving in ESM mode with conditions 'import', 'types', 'node'.", + "Loading module as file / folder, candidate module location '/node_modules/@apollo/client/cache/inmemory/entityStore', target file types: TypeScript, JavaScript, Declaration, JSON.", + "Directory '/node_modules/@apollo/client/cache/inmemory/entityStore' does not exist, skipping all lookups in it.", + "======== Module name './inmemory/entityStore' was not resolved. ========" + ] }, { "kind": "InternalResolutionError", "resolutionOption": "node16", "fileName": "/node_modules/@apollo/client/cache/index.d.ts", - "error": { - "moduleSpecifier": "./inmemory/helpers", - "pos": 499, - "end": 520, - "resolutionMode": 99 - } + "moduleSpecifier": "./inmemory/helpers", + "pos": 499, + "end": 520, + "resolutionMode": 99, + "trace": [ + "======== Resolving module './inmemory/helpers' from '/node_modules/@apollo/client/cache/index.d.ts'. ========", + "Explicitly specified module resolution kind: 'Node16'.", + "Resolving in ESM mode with conditions 'import', 'types', 'node'.", + "Loading module as file / folder, candidate module location '/node_modules/@apollo/client/cache/inmemory/helpers', target file types: TypeScript, JavaScript, Declaration, JSON.", + "Directory '/node_modules/@apollo/client/cache/inmemory/helpers' does not exist, skipping all lookups in it.", + "======== Module name './inmemory/helpers' was not resolved. ========" + ] }, { "kind": "InternalResolutionError", "resolutionOption": "node16", "fileName": "/node_modules/@apollo/client/cache/index.d.ts", - "error": { - "moduleSpecifier": "./inmemory/inMemoryCache", - "pos": 552, - "end": 579, - "resolutionMode": 99 - } + "moduleSpecifier": "./inmemory/inMemoryCache", + "pos": 552, + "end": 579, + "resolutionMode": 99, + "trace": [ + "======== Resolving module './inmemory/inMemoryCache' from '/node_modules/@apollo/client/cache/index.d.ts'. ========", + "Explicitly specified module resolution kind: 'Node16'.", + "Resolving in ESM mode with conditions 'import', 'types', 'node'.", + "Loading module as file / folder, candidate module location '/node_modules/@apollo/client/cache/inmemory/inMemoryCache', target file types: TypeScript, JavaScript, Declaration, JSON.", + "Directory '/node_modules/@apollo/client/cache/inmemory/inMemoryCache' does not exist, skipping all lookups in it.", + "======== Module name './inmemory/inMemoryCache' was not resolved. ========" + ] }, { "kind": "InternalResolutionError", "resolutionOption": "node16", "fileName": "/node_modules/@apollo/client/cache/index.d.ts", - "error": { - "moduleSpecifier": "./inmemory/reactiveVars", - "pos": 629, - "end": 655, - "resolutionMode": 99 - } + "moduleSpecifier": "./inmemory/reactiveVars", + "pos": 629, + "end": 655, + "resolutionMode": 99, + "trace": [ + "======== Resolving module './inmemory/reactiveVars' from '/node_modules/@apollo/client/cache/index.d.ts'. ========", + "Explicitly specified module resolution kind: 'Node16'.", + "Resolving in ESM mode with conditions 'import', 'types', 'node'.", + "Loading module as file / folder, candidate module location '/node_modules/@apollo/client/cache/inmemory/reactiveVars', target file types: TypeScript, JavaScript, Declaration, JSON.", + "Directory '/node_modules/@apollo/client/cache/inmemory/reactiveVars' does not exist, skipping all lookups in it.", + "======== Module name './inmemory/reactiveVars' was not resolved. ========" + ] }, { "kind": "InternalResolutionError", "resolutionOption": "node16", "fileName": "/node_modules/@apollo/client/cache/index.d.ts", - "error": { - "moduleSpecifier": "./inmemory/policies", - "pos": 800, - "end": 822, - "resolutionMode": 99 - } + "moduleSpecifier": "./inmemory/policies", + "pos": 800, + "end": 822, + "resolutionMode": 99, + "trace": [ + "======== Resolving module './inmemory/policies' from '/node_modules/@apollo/client/cache/index.d.ts'. ========", + "Explicitly specified module resolution kind: 'Node16'.", + "Resolving in ESM mode with conditions 'import', 'types', 'node'.", + "Loading module as file / folder, candidate module location '/node_modules/@apollo/client/cache/inmemory/policies', target file types: TypeScript, JavaScript, Declaration, JSON.", + "Directory '/node_modules/@apollo/client/cache/inmemory/policies' does not exist, skipping all lookups in it.", + "======== Module name './inmemory/policies' was not resolved. ========" + ] }, { "kind": "InternalResolutionError", "resolutionOption": "node16", "fileName": "/node_modules/@apollo/client/cache/index.d.ts", - "error": { - "moduleSpecifier": "./inmemory/object-canon", - "pos": 859, - "end": 885, - "resolutionMode": 99 - } + "moduleSpecifier": "./inmemory/object-canon", + "pos": 859, + "end": 885, + "resolutionMode": 99, + "trace": [ + "======== Resolving module './inmemory/object-canon' from '/node_modules/@apollo/client/cache/index.d.ts'. ========", + "Explicitly specified module resolution kind: 'Node16'.", + "Resolving in ESM mode with conditions 'import', 'types', 'node'.", + "Loading module as file / folder, candidate module location '/node_modules/@apollo/client/cache/inmemory/object-canon', target file types: TypeScript, JavaScript, Declaration, JSON.", + "Directory '/node_modules/@apollo/client/cache/inmemory/object-canon' does not exist, skipping all lookups in it.", + "======== Module name './inmemory/object-canon' was not resolved. ========" + ] }, { "kind": "InternalResolutionError", "resolutionOption": "node16", "fileName": "/node_modules/@apollo/client/cache/index.d.ts", - "error": { - "moduleSpecifier": "./inmemory/fragmentRegistry", - "pos": 947, - "end": 977, - "resolutionMode": 99 - } + "moduleSpecifier": "./inmemory/fragmentRegistry", + "pos": 947, + "end": 977, + "resolutionMode": 99, + "trace": [ + "======== Resolving module './inmemory/fragmentRegistry' from '/node_modules/@apollo/client/cache/index.d.ts'. ========", + "Explicitly specified module resolution kind: 'Node16'.", + "Resolving in ESM mode with conditions 'import', 'types', 'node'.", + "Loading module as file / folder, candidate module location '/node_modules/@apollo/client/cache/inmemory/fragmentRegistry', target file types: TypeScript, JavaScript, Declaration, JSON.", + "Directory '/node_modules/@apollo/client/cache/inmemory/fragmentRegistry' does not exist, skipping all lookups in it.", + "======== Module name './inmemory/fragmentRegistry' was not resolved. ========" + ] }, { "kind": "InternalResolutionError", "resolutionOption": "node16", "fileName": "/node_modules/@apollo/client/cache/index.d.ts", - "error": { - "moduleSpecifier": "./inmemory/types", - "pos": 992, - "end": 1011, - "resolutionMode": 99 - } + "moduleSpecifier": "./inmemory/types", + "pos": 992, + "end": 1011, + "resolutionMode": 99, + "trace": [ + "======== Resolving module './inmemory/types' from '/node_modules/@apollo/client/cache/index.d.ts'. ========", + "Explicitly specified module resolution kind: 'Node16'.", + "Resolving in ESM mode with conditions 'import', 'types', 'node'.", + "Loading module as file / folder, candidate module location '/node_modules/@apollo/client/cache/inmemory/types', target file types: TypeScript, JavaScript, Declaration, JSON.", + "Directory '/node_modules/@apollo/client/cache/inmemory/types' does not exist, skipping all lookups in it.", + "======== Module name './inmemory/types' was not resolved. ========" + ] }, { "kind": "InternalResolutionError", "resolutionOption": "node16", "fileName": "/node_modules/@apollo/client/core/index.d.ts", - "error": { - "moduleSpecifier": "./ApolloClient", - "pos": 80, - "end": 97, - "resolutionMode": 99 - } + "moduleSpecifier": "./ApolloClient", + "pos": 80, + "end": 97, + "resolutionMode": 99, + "trace": [ + "======== Resolving module './ApolloClient' from '/node_modules/@apollo/client/core/index.d.ts'. ========", + "Explicitly specified module resolution kind: 'Node16'.", + "Resolving in ESM mode with conditions 'import', 'types', 'node'.", + "Loading module as file / folder, candidate module location '/node_modules/@apollo/client/core/ApolloClient', target file types: TypeScript, JavaScript, Declaration, JSON.", + "Directory '/node_modules/@apollo/client/core/ApolloClient' does not exist, skipping all lookups in it.", + "======== Module name './ApolloClient' was not resolved. ========" + ] }, { "kind": "InternalResolutionError", "resolutionOption": "node16", "fileName": "/node_modules/@apollo/client/core/index.d.ts", - "error": { - "moduleSpecifier": "./ObservableQuery", - "pos": 169, - "end": 189, - "resolutionMode": 99 - } + "moduleSpecifier": "./ObservableQuery", + "pos": 169, + "end": 189, + "resolutionMode": 99, + "trace": [ + "======== Resolving module './ObservableQuery' from '/node_modules/@apollo/client/core/index.d.ts'. ========", + "Explicitly specified module resolution kind: 'Node16'.", + "Resolving in ESM mode with conditions 'import', 'types', 'node'.", + "Loading module as file / folder, candidate module location '/node_modules/@apollo/client/core/ObservableQuery', target file types: TypeScript, JavaScript, Declaration, JSON.", + "Directory '/node_modules/@apollo/client/core/ObservableQuery' does not exist, skipping all lookups in it.", + "======== Module name './ObservableQuery' was not resolved. ========" + ] }, { "kind": "InternalResolutionError", "resolutionOption": "node16", "fileName": "/node_modules/@apollo/client/core/index.d.ts", - "error": { - "moduleSpecifier": "./watchQueryOptions", - "pos": 373, - "end": 395, - "resolutionMode": 99 - } + "moduleSpecifier": "./watchQueryOptions", + "pos": 373, + "end": 395, + "resolutionMode": 99, + "trace": [ + "======== Resolving module './watchQueryOptions' from '/node_modules/@apollo/client/core/index.d.ts'. ========", + "Explicitly specified module resolution kind: 'Node16'.", + "Resolving in ESM mode with conditions 'import', 'types', 'node'.", + "Loading module as file / folder, candidate module location '/node_modules/@apollo/client/core/watchQueryOptions', target file types: TypeScript, JavaScript, Declaration, JSON.", + "Directory '/node_modules/@apollo/client/core/watchQueryOptions' does not exist, skipping all lookups in it.", + "======== Module name './watchQueryOptions' was not resolved. ========" + ] }, { "kind": "InternalResolutionError", "resolutionOption": "node16", "fileName": "/node_modules/@apollo/client/core/index.d.ts", - "error": { - "moduleSpecifier": "./networkStatus", - "pos": 426, - "end": 444, - "resolutionMode": 99 - } + "moduleSpecifier": "./networkStatus", + "pos": 426, + "end": 444, + "resolutionMode": 99, + "trace": [ + "======== Resolving module './networkStatus' from '/node_modules/@apollo/client/core/index.d.ts'. ========", + "Explicitly specified module resolution kind: 'Node16'.", + "Resolving in ESM mode with conditions 'import', 'types', 'node'.", + "Loading module as file / folder, candidate module location '/node_modules/@apollo/client/core/networkStatus', target file types: TypeScript, JavaScript, Declaration, JSON.", + "Directory '/node_modules/@apollo/client/core/networkStatus' does not exist, skipping all lookups in it.", + "======== Module name './networkStatus' was not resolved. ========" + ] }, { "kind": "InternalResolutionError", "resolutionOption": "node16", "fileName": "/node_modules/@apollo/client/core/index.d.ts", - "error": { - "moduleSpecifier": "./types", - "pos": 459, - "end": 469, - "resolutionMode": 99 - } + "moduleSpecifier": "./types", + "pos": 459, + "end": 469, + "resolutionMode": 99, + "trace": [ + "======== Resolving module './types' from '/node_modules/@apollo/client/core/index.d.ts'. ========", + "Explicitly specified module resolution kind: 'Node16'.", + "Resolving in ESM mode with conditions 'import', 'types', 'node'.", + "Loading module as file / folder, candidate module location '/node_modules/@apollo/client/core/types', target file types: TypeScript, JavaScript, Declaration, JSON.", + "Directory '/node_modules/@apollo/client/core/types' does not exist, skipping all lookups in it.", + "======== Module name './types' was not resolved. ========" + ] }, { "kind": "InternalResolutionError", "resolutionOption": "node16", "fileName": "/node_modules/@apollo/client/core/index.d.ts", - "error": { - "moduleSpecifier": "./LocalState", - "pos": 513, - "end": 528, - "resolutionMode": 99 - } + "moduleSpecifier": "./LocalState", + "pos": 513, + "end": 528, + "resolutionMode": 99, + "trace": [ + "======== Resolving module './LocalState' from '/node_modules/@apollo/client/core/index.d.ts'. ========", + "Explicitly specified module resolution kind: 'Node16'.", + "Resolving in ESM mode with conditions 'import', 'types', 'node'.", + "Loading module as file / folder, candidate module location '/node_modules/@apollo/client/core/LocalState', target file types: TypeScript, JavaScript, Declaration, JSON.", + "Directory '/node_modules/@apollo/client/core/LocalState' does not exist, skipping all lookups in it.", + "======== Module name './LocalState' was not resolved. ========" + ] }, { "kind": "InternalResolutionError", "resolutionOption": "node16", "fileName": "/node_modules/@apollo/client/core/index.d.ts", - "error": { - "moduleSpecifier": "../errors", - "pos": 572, - "end": 584, - "resolutionMode": 99 - } + "moduleSpecifier": "../errors", + "pos": 572, + "end": 584, + "resolutionMode": 99, + "trace": [ + "======== Resolving module '../errors' from '/node_modules/@apollo/client/core/index.d.ts'. ========", + "Explicitly specified module resolution kind: 'Node16'.", + "Resolving in ESM mode with conditions 'import', 'types', 'node'.", + "Loading module as file / folder, candidate module location '/node_modules/@apollo/client/errors', target file types: TypeScript, JavaScript, Declaration, JSON.", + "======== Module name '../errors' was not resolved. ========" + ] }, { "kind": "InternalResolutionError", "resolutionOption": "node16", "fileName": "/node_modules/@apollo/client/core/index.d.ts", - "error": { - "moduleSpecifier": "../cache", - "pos": 865, - "end": 876, - "resolutionMode": 99 - } + "moduleSpecifier": "../cache", + "pos": 865, + "end": 876, + "resolutionMode": 99, + "trace": [ + "======== Resolving module '../cache' from '/node_modules/@apollo/client/core/index.d.ts'. ========", + "Explicitly specified module resolution kind: 'Node16'.", + "Resolving in ESM mode with conditions 'import', 'types', 'node'.", + "Loading module as file / folder, candidate module location '/node_modules/@apollo/client/cache', target file types: TypeScript, JavaScript, Declaration, JSON.", + "======== Module name '../cache' was not resolved. ========" + ] }, { "kind": "InternalResolutionError", "resolutionOption": "node16", "fileName": "/node_modules/@apollo/client/core/index.d.ts", - "error": { - "moduleSpecifier": "../cache/inmemory/types", - "pos": 891, - "end": 917, - "resolutionMode": 99 - } + "moduleSpecifier": "../cache/inmemory/types", + "pos": 891, + "end": 917, + "resolutionMode": 99, + "trace": [ + "======== Resolving module '../cache/inmemory/types' from '/node_modules/@apollo/client/core/index.d.ts'. ========", + "Explicitly specified module resolution kind: 'Node16'.", + "Resolving in ESM mode with conditions 'import', 'types', 'node'.", + "Loading module as file / folder, candidate module location '/node_modules/@apollo/client/cache/inmemory/types', target file types: TypeScript, JavaScript, Declaration, JSON.", + "Directory '/node_modules/@apollo/client/cache/inmemory/types' does not exist, skipping all lookups in it.", + "======== Module name '../cache/inmemory/types' was not resolved. ========" + ] }, { "kind": "InternalResolutionError", "resolutionOption": "node16", "fileName": "/node_modules/@apollo/client/core/index.d.ts", - "error": { - "moduleSpecifier": "../link/core", - "pos": 932, - "end": 947, - "resolutionMode": 99 - } + "moduleSpecifier": "../link/core", + "pos": 932, + "end": 947, + "resolutionMode": 99, + "trace": [ + "======== Resolving module '../link/core' from '/node_modules/@apollo/client/core/index.d.ts'. ========", + "Explicitly specified module resolution kind: 'Node16'.", + "Resolving in ESM mode with conditions 'import', 'types', 'node'.", + "Loading module as file / folder, candidate module location '/node_modules/@apollo/client/link/core', target file types: TypeScript, JavaScript, Declaration, JSON.", + "======== Module name '../link/core' was not resolved. ========" + ] }, { "kind": "InternalResolutionError", "resolutionOption": "node16", "fileName": "/node_modules/@apollo/client/core/index.d.ts", - "error": { - "moduleSpecifier": "../link/http", - "pos": 962, - "end": 977, - "resolutionMode": 99 - } + "moduleSpecifier": "../link/http", + "pos": 962, + "end": 977, + "resolutionMode": 99, + "trace": [ + "======== Resolving module '../link/http' from '/node_modules/@apollo/client/core/index.d.ts'. ========", + "Explicitly specified module resolution kind: 'Node16'.", + "Resolving in ESM mode with conditions 'import', 'types', 'node'.", + "Loading module as file / folder, candidate module location '/node_modules/@apollo/client/link/http', target file types: TypeScript, JavaScript, Declaration, JSON.", + "======== Module name '../link/http' was not resolved. ========" + ] }, { "kind": "InternalResolutionError", "resolutionOption": "node16", "fileName": "/node_modules/@apollo/client/core/index.d.ts", - "error": { - "moduleSpecifier": "../link/utils", - "pos": 1060, - "end": 1076, - "resolutionMode": 99 - } + "moduleSpecifier": "../link/utils", + "pos": 1060, + "end": 1076, + "resolutionMode": 99, + "trace": [ + "======== Resolving module '../link/utils' from '/node_modules/@apollo/client/core/index.d.ts'. ========", + "Explicitly specified module resolution kind: 'Node16'.", + "Resolving in ESM mode with conditions 'import', 'types', 'node'.", + "Loading module as file / folder, candidate module location '/node_modules/@apollo/client/link/utils', target file types: TypeScript, JavaScript, Declaration, JSON.", + "======== Module name '../link/utils' was not resolved. ========" + ] }, { "kind": "InternalResolutionError", "resolutionOption": "node16", "fileName": "/node_modules/@apollo/client/core/index.d.ts", - "error": { - "moduleSpecifier": "../utilities", - "pos": 1191, - "end": 1206, - "resolutionMode": 99 - } + "moduleSpecifier": "../utilities", + "pos": 1191, + "end": 1206, + "resolutionMode": 99, + "trace": [ + "======== Resolving module '../utilities' from '/node_modules/@apollo/client/core/index.d.ts'. ========", + "Explicitly specified module resolution kind: 'Node16'.", + "Resolving in ESM mode with conditions 'import', 'types', 'node'.", + "Loading module as file / folder, candidate module location '/node_modules/@apollo/client/utilities', target file types: TypeScript, JavaScript, Declaration, JSON.", + "======== Module name '../utilities' was not resolved. ========" + ] }, { "kind": "InternalResolutionError", "resolutionOption": "node16", "fileName": "/node_modules/@apollo/client/errors/index.d.ts", - "error": { - "moduleSpecifier": "../utilities/globals", - "pos": 6, - "end": 29, - "resolutionMode": 99 - } + "moduleSpecifier": "../utilities/globals", + "pos": 6, + "end": 29, + "resolutionMode": 99, + "trace": [ + "======== Resolving module '../utilities/globals' from '/node_modules/@apollo/client/errors/index.d.ts'. ========", + "Explicitly specified module resolution kind: 'Node16'.", + "Resolving in ESM mode with conditions 'import', 'types', 'node'.", + "Loading module as file / folder, candidate module location '/node_modules/@apollo/client/utilities/globals', target file types: TypeScript, JavaScript, Declaration, JSON.", + "======== Module name '../utilities/globals' was not resolved. ========" + ] }, { "kind": "InternalResolutionError", "resolutionOption": "node16", "fileName": "/node_modules/@apollo/client/errors/index.d.ts", - "error": { - "moduleSpecifier": "../link/http", - "pos": 127, - "end": 142, - "resolutionMode": 99 - } + "moduleSpecifier": "../link/http", + "pos": 127, + "end": 142, + "resolutionMode": 99, + "trace": [ + "======== Resolving module '../link/http' from '/node_modules/@apollo/client/errors/index.d.ts'. ========", + "Explicitly specified module resolution kind: 'Node16'.", + "Resolving in ESM mode with conditions 'import', 'types', 'node'.", + "Loading module as file / folder, candidate module location '/node_modules/@apollo/client/link/http', target file types: TypeScript, JavaScript, Declaration, JSON.", + "======== Module name '../link/http' was not resolved. ========" + ] }, { "kind": "InternalResolutionError", "resolutionOption": "node16", "fileName": "/node_modules/@apollo/client/errors/index.d.ts", - "error": { - "moduleSpecifier": "../link/utils", - "pos": 171, - "end": 187, - "resolutionMode": 99 - } + "moduleSpecifier": "../link/utils", + "pos": 171, + "end": 187, + "resolutionMode": 99, + "trace": [ + "======== Resolving module '../link/utils' from '/node_modules/@apollo/client/errors/index.d.ts'. ========", + "Explicitly specified module resolution kind: 'Node16'.", + "Resolving in ESM mode with conditions 'import', 'types', 'node'.", + "Loading module as file / folder, candidate module location '/node_modules/@apollo/client/link/utils', target file types: TypeScript, JavaScript, Declaration, JSON.", + "======== Module name '../link/utils' was not resolved. ========" + ] }, { "kind": "InternalResolutionError", "resolutionOption": "node16", "fileName": "/node_modules/@apollo/client/errors/index.d.ts", - "error": { - "moduleSpecifier": "../link/core", - "pos": 216, - "end": 231, - "resolutionMode": 99 - } + "moduleSpecifier": "../link/core", + "pos": 216, + "end": 231, + "resolutionMode": 99, + "trace": [ + "======== Resolving module '../link/core' from '/node_modules/@apollo/client/errors/index.d.ts'. ========", + "Explicitly specified module resolution kind: 'Node16'.", + "Resolving in ESM mode with conditions 'import', 'types', 'node'.", + "Loading module as file / folder, candidate module location '/node_modules/@apollo/client/link/core', target file types: TypeScript, JavaScript, Declaration, JSON.", + "======== Module name '../link/core' was not resolved. ========" + ] }, { "kind": "InternalResolutionError", "resolutionOption": "node16", "fileName": "/node_modules/@apollo/client/link/batch-http/index.d.ts", - "error": { - "moduleSpecifier": "./batchHttpLink", - "pos": 13, - "end": 31, - "resolutionMode": 99 - } + "moduleSpecifier": "./batchHttpLink", + "pos": 13, + "end": 31, + "resolutionMode": 99, + "trace": [ + "======== Resolving module './batchHttpLink' from '/node_modules/@apollo/client/link/batch-http/index.d.ts'. ========", + "Explicitly specified module resolution kind: 'Node16'.", + "Resolving in ESM mode with conditions 'import', 'types', 'node'.", + "Loading module as file / folder, candidate module location '/node_modules/@apollo/client/link/batch-http/batchHttpLink', target file types: TypeScript, JavaScript, Declaration, JSON.", + "Directory '/node_modules/@apollo/client/link/batch-http/batchHttpLink' does not exist, skipping all lookups in it.", + "======== Module name './batchHttpLink' was not resolved. ========" + ] }, { "kind": "InternalResolutionError", "resolutionOption": "node16", "fileName": "/node_modules/@apollo/client/link/batch/index.d.ts", - "error": { - "moduleSpecifier": "./batchLink", - "pos": 13, - "end": 27, - "resolutionMode": 99 - } + "moduleSpecifier": "./batchLink", + "pos": 13, + "end": 27, + "resolutionMode": 99, + "trace": [ + "======== Resolving module './batchLink' from '/node_modules/@apollo/client/link/batch/index.d.ts'. ========", + "Explicitly specified module resolution kind: 'Node16'.", + "Resolving in ESM mode with conditions 'import', 'types', 'node'.", + "Loading module as file / folder, candidate module location '/node_modules/@apollo/client/link/batch/batchLink', target file types: TypeScript, JavaScript, Declaration, JSON.", + "Directory '/node_modules/@apollo/client/link/batch/batchLink' does not exist, skipping all lookups in it.", + "======== Module name './batchLink' was not resolved. ========" + ] }, { "kind": "InternalResolutionError", "resolutionOption": "node16", "fileName": "/node_modules/@apollo/client/link/context/index.d.ts", - "error": { - "moduleSpecifier": "../core", - "pos": 42, - "end": 52, - "resolutionMode": 99 - } + "moduleSpecifier": "../core", + "pos": 42, + "end": 52, + "resolutionMode": 99, + "trace": [ + "======== Resolving module '../core' from '/node_modules/@apollo/client/link/context/index.d.ts'. ========", + "Explicitly specified module resolution kind: 'Node16'.", + "Resolving in ESM mode with conditions 'import', 'types', 'node'.", + "Loading module as file / folder, candidate module location '/node_modules/@apollo/client/link/core', target file types: TypeScript, JavaScript, Declaration, JSON.", + "======== Module name '../core' was not resolved. ========" + ] }, { "kind": "InternalResolutionError", "resolutionOption": "node16", "fileName": "/node_modules/@apollo/client/link/context/index.d.ts", - "error": { - "moduleSpecifier": "../../core", - "pos": 84, - "end": 97, - "resolutionMode": 99 - } + "moduleSpecifier": "../../core", + "pos": 84, + "end": 97, + "resolutionMode": 99, + "trace": [ + "======== Resolving module '../../core' from '/node_modules/@apollo/client/link/context/index.d.ts'. ========", + "Explicitly specified module resolution kind: 'Node16'.", + "Resolving in ESM mode with conditions 'import', 'types', 'node'.", + "Loading module as file / folder, candidate module location '/node_modules/@apollo/client/core', target file types: TypeScript, JavaScript, Declaration, JSON.", + "======== Module name '../../core' was not resolved. ========" + ] }, { "kind": "InternalResolutionError", "resolutionOption": "node16", "fileName": "/node_modules/@apollo/client/link/core/index.d.ts", - "error": { - "moduleSpecifier": "../../utilities/globals", - "pos": 6, - "end": 32, - "resolutionMode": 99 - } + "moduleSpecifier": "../../utilities/globals", + "pos": 6, + "end": 32, + "resolutionMode": 99, + "trace": [ + "======== Resolving module '../../utilities/globals' from '/node_modules/@apollo/client/link/core/index.d.ts'. ========", + "Explicitly specified module resolution kind: 'Node16'.", + "Resolving in ESM mode with conditions 'import', 'types', 'node'.", + "Loading module as file / folder, candidate module location '/node_modules/@apollo/client/utilities/globals', target file types: TypeScript, JavaScript, Declaration, JSON.", + "======== Module name '../../utilities/globals' was not resolved. ========" + ] }, { "kind": "InternalResolutionError", "resolutionOption": "node16", "fileName": "/node_modules/@apollo/client/link/core/index.d.ts", - "error": { - "moduleSpecifier": "./empty", - "pos": 55, - "end": 65, - "resolutionMode": 99 - } + "moduleSpecifier": "./empty", + "pos": 55, + "end": 65, + "resolutionMode": 99, + "trace": [ + "======== Resolving module './empty' from '/node_modules/@apollo/client/link/core/index.d.ts'. ========", + "Explicitly specified module resolution kind: 'Node16'.", + "Resolving in ESM mode with conditions 'import', 'types', 'node'.", + "Loading module as file / folder, candidate module location '/node_modules/@apollo/client/link/core/empty', target file types: TypeScript, JavaScript, Declaration, JSON.", + "Directory '/node_modules/@apollo/client/link/core/empty' does not exist, skipping all lookups in it.", + "======== Module name './empty' was not resolved. ========" + ] }, { "kind": "InternalResolutionError", "resolutionOption": "node16", "fileName": "/node_modules/@apollo/client/link/core/index.d.ts", - "error": { - "moduleSpecifier": "./from", - "pos": 87, - "end": 96, - "resolutionMode": 99 - } + "moduleSpecifier": "./from", + "pos": 87, + "end": 96, + "resolutionMode": 99, + "trace": [ + "======== Resolving module './from' from '/node_modules/@apollo/client/link/core/index.d.ts'. ========", + "Explicitly specified module resolution kind: 'Node16'.", + "Resolving in ESM mode with conditions 'import', 'types', 'node'.", + "Loading module as file / folder, candidate module location '/node_modules/@apollo/client/link/core/from', target file types: TypeScript, JavaScript, Declaration, JSON.", + "Directory '/node_modules/@apollo/client/link/core/from' does not exist, skipping all lookups in it.", + "======== Module name './from' was not resolved. ========" + ] }, { "kind": "InternalResolutionError", "resolutionOption": "node16", "fileName": "/node_modules/@apollo/client/link/core/index.d.ts", - "error": { - "moduleSpecifier": "./split", - "pos": 119, - "end": 129, - "resolutionMode": 99 - } + "moduleSpecifier": "./split", + "pos": 119, + "end": 129, + "resolutionMode": 99, + "trace": [ + "======== Resolving module './split' from '/node_modules/@apollo/client/link/core/index.d.ts'. ========", + "Explicitly specified module resolution kind: 'Node16'.", + "Resolving in ESM mode with conditions 'import', 'types', 'node'.", + "Loading module as file / folder, candidate module location '/node_modules/@apollo/client/link/core/split', target file types: TypeScript, JavaScript, Declaration, JSON.", + "Directory '/node_modules/@apollo/client/link/core/split' does not exist, skipping all lookups in it.", + "======== Module name './split' was not resolved. ========" + ] }, { "kind": "InternalResolutionError", "resolutionOption": "node16", "fileName": "/node_modules/@apollo/client/link/core/index.d.ts", - "error": { - "moduleSpecifier": "./concat", - "pos": 153, - "end": 164, - "resolutionMode": 99 - } + "moduleSpecifier": "./concat", + "pos": 153, + "end": 164, + "resolutionMode": 99, + "trace": [ + "======== Resolving module './concat' from '/node_modules/@apollo/client/link/core/index.d.ts'. ========", + "Explicitly specified module resolution kind: 'Node16'.", + "Resolving in ESM mode with conditions 'import', 'types', 'node'.", + "Loading module as file / folder, candidate module location '/node_modules/@apollo/client/link/core/concat', target file types: TypeScript, JavaScript, Declaration, JSON.", + "Directory '/node_modules/@apollo/client/link/core/concat' does not exist, skipping all lookups in it.", + "======== Module name './concat' was not resolved. ========" + ] }, { "kind": "InternalResolutionError", "resolutionOption": "node16", "fileName": "/node_modules/@apollo/client/link/core/index.d.ts", - "error": { - "moduleSpecifier": "./execute", - "pos": 189, - "end": 201, - "resolutionMode": 99 - } + "moduleSpecifier": "./execute", + "pos": 189, + "end": 201, + "resolutionMode": 99, + "trace": [ + "======== Resolving module './execute' from '/node_modules/@apollo/client/link/core/index.d.ts'. ========", + "Explicitly specified module resolution kind: 'Node16'.", + "Resolving in ESM mode with conditions 'import', 'types', 'node'.", + "Loading module as file / folder, candidate module location '/node_modules/@apollo/client/link/core/execute', target file types: TypeScript, JavaScript, Declaration, JSON.", + "Directory '/node_modules/@apollo/client/link/core/execute' does not exist, skipping all lookups in it.", + "======== Module name './execute' was not resolved. ========" + ] }, { "kind": "InternalResolutionError", "resolutionOption": "node16", "fileName": "/node_modules/@apollo/client/link/core/index.d.ts", - "error": { - "moduleSpecifier": "./ApolloLink", - "pos": 229, - "end": 244, - "resolutionMode": 99 - } + "moduleSpecifier": "./ApolloLink", + "pos": 229, + "end": 244, + "resolutionMode": 99, + "trace": [ + "======== Resolving module './ApolloLink' from '/node_modules/@apollo/client/link/core/index.d.ts'. ========", + "Explicitly specified module resolution kind: 'Node16'.", + "Resolving in ESM mode with conditions 'import', 'types', 'node'.", + "Loading module as file / folder, candidate module location '/node_modules/@apollo/client/link/core/ApolloLink', target file types: TypeScript, JavaScript, Declaration, JSON.", + "Directory '/node_modules/@apollo/client/link/core/ApolloLink' does not exist, skipping all lookups in it.", + "======== Module name './ApolloLink' was not resolved. ========" + ] }, { "kind": "InternalResolutionError", "resolutionOption": "node16", "fileName": "/node_modules/@apollo/client/link/core/index.d.ts", - "error": { - "moduleSpecifier": "./types", - "pos": 259, - "end": 269, - "resolutionMode": 99 - } + "moduleSpecifier": "./types", + "pos": 259, + "end": 269, + "resolutionMode": 99, + "trace": [ + "======== Resolving module './types' from '/node_modules/@apollo/client/link/core/index.d.ts'. ========", + "Explicitly specified module resolution kind: 'Node16'.", + "Resolving in ESM mode with conditions 'import', 'types', 'node'.", + "Loading module as file / folder, candidate module location '/node_modules/@apollo/client/link/core/types', target file types: TypeScript, JavaScript, Declaration, JSON.", + "Directory '/node_modules/@apollo/client/link/core/types' does not exist, skipping all lookups in it.", + "======== Module name './types' was not resolved. ========" + ] }, { "kind": "InternalResolutionError", "resolutionOption": "node16", "fileName": "/node_modules/@apollo/client/link/error/index.d.ts", - "error": { - "moduleSpecifier": "../../errors", - "pos": 86, - "end": 101, - "resolutionMode": 99 - } + "moduleSpecifier": "../../errors", + "pos": 86, + "end": 101, + "resolutionMode": 99, + "trace": [ + "======== Resolving module '../../errors' from '/node_modules/@apollo/client/link/error/index.d.ts'. ========", + "Explicitly specified module resolution kind: 'Node16'.", + "Resolving in ESM mode with conditions 'import', 'types', 'node'.", + "Loading module as file / folder, candidate module location '/node_modules/@apollo/client/errors', target file types: TypeScript, JavaScript, Declaration, JSON.", + "======== Module name '../../errors' was not resolved. ========" + ] }, { "kind": "InternalResolutionError", "resolutionOption": "node16", "fileName": "/node_modules/@apollo/client/link/error/index.d.ts", - "error": { - "moduleSpecifier": "../../utilities", - "pos": 129, - "end": 147, - "resolutionMode": 99 - } + "moduleSpecifier": "../../utilities", + "pos": 129, + "end": 147, + "resolutionMode": 99, + "trace": [ + "======== Resolving module '../../utilities' from '/node_modules/@apollo/client/link/error/index.d.ts'. ========", + "Explicitly specified module resolution kind: 'Node16'.", + "Resolving in ESM mode with conditions 'import', 'types', 'node'.", + "Loading module as file / folder, candidate module location '/node_modules/@apollo/client/utilities', target file types: TypeScript, JavaScript, Declaration, JSON.", + "======== Module name '../../utilities' was not resolved. ========" + ] }, { "kind": "InternalResolutionError", "resolutionOption": "node16", "fileName": "/node_modules/@apollo/client/link/error/index.d.ts", - "error": { - "moduleSpecifier": "../core", - "pos": 209, - "end": 219, - "resolutionMode": 99 - } + "moduleSpecifier": "../core", + "pos": 209, + "end": 219, + "resolutionMode": 99, + "trace": [ + "======== Resolving module '../core' from '/node_modules/@apollo/client/link/error/index.d.ts'. ========", + "Explicitly specified module resolution kind: 'Node16'.", + "Resolving in ESM mode with conditions 'import', 'types', 'node'.", + "Loading module as file / folder, candidate module location '/node_modules/@apollo/client/link/core', target file types: TypeScript, JavaScript, Declaration, JSON.", + "======== Module name '../core' was not resolved. ========" + ] }, { "kind": "InternalResolutionError", "resolutionOption": "node16", "fileName": "/node_modules/@apollo/client/link/http/index.d.ts", - "error": { - "moduleSpecifier": "../../utilities/globals", - "pos": 6, - "end": 32, - "resolutionMode": 99 - } + "moduleSpecifier": "../../utilities/globals", + "pos": 6, + "end": 32, + "resolutionMode": 99, + "trace": [ + "======== Resolving module '../../utilities/globals' from '/node_modules/@apollo/client/link/http/index.d.ts'. ========", + "Explicitly specified module resolution kind: 'Node16'.", + "Resolving in ESM mode with conditions 'import', 'types', 'node'.", + "Loading module as file / folder, candidate module location '/node_modules/@apollo/client/utilities/globals', target file types: TypeScript, JavaScript, Declaration, JSON.", + "======== Module name '../../utilities/globals' was not resolved. ========" + ] }, { "kind": "InternalResolutionError", "resolutionOption": "node16", "fileName": "/node_modules/@apollo/client/link/http/index.d.ts", - "error": { - "moduleSpecifier": "./parseAndCheckHttpResponse", - "pos": 93, - "end": 123, - "resolutionMode": 99 - } + "moduleSpecifier": "./parseAndCheckHttpResponse", + "pos": 93, + "end": 123, + "resolutionMode": 99, + "trace": [ + "======== Resolving module './parseAndCheckHttpResponse' from '/node_modules/@apollo/client/link/http/index.d.ts'. ========", + "Explicitly specified module resolution kind: 'Node16'.", + "Resolving in ESM mode with conditions 'import', 'types', 'node'.", + "Loading module as file / folder, candidate module location '/node_modules/@apollo/client/link/http/parseAndCheckHttpResponse', target file types: TypeScript, JavaScript, Declaration, JSON.", + "Directory '/node_modules/@apollo/client/link/http/parseAndCheckHttpResponse' does not exist, skipping all lookups in it.", + "======== Module name './parseAndCheckHttpResponse' was not resolved. ========" + ] }, { "kind": "InternalResolutionError", "resolutionOption": "node16", "fileName": "/node_modules/@apollo/client/link/http/index.d.ts", - "error": { - "moduleSpecifier": "./serializeFetchParameter", - "pos": 182, - "end": 210, - "resolutionMode": 99 - } + "moduleSpecifier": "./serializeFetchParameter", + "pos": 182, + "end": 210, + "resolutionMode": 99, + "trace": [ + "======== Resolving module './serializeFetchParameter' from '/node_modules/@apollo/client/link/http/index.d.ts'. ========", + "Explicitly specified module resolution kind: 'Node16'.", + "Resolving in ESM mode with conditions 'import', 'types', 'node'.", + "Loading module as file / folder, candidate module location '/node_modules/@apollo/client/link/http/serializeFetchParameter', target file types: TypeScript, JavaScript, Declaration, JSON.", + "Directory '/node_modules/@apollo/client/link/http/serializeFetchParameter' does not exist, skipping all lookups in it.", + "======== Module name './serializeFetchParameter' was not resolved. ========" + ] }, { "kind": "InternalResolutionError", "resolutionOption": "node16", "fileName": "/node_modules/@apollo/client/link/http/index.d.ts", - "error": { - "moduleSpecifier": "./selectHttpOptionsAndBody", - "pos": 348, - "end": 377, - "resolutionMode": 99 - } + "moduleSpecifier": "./selectHttpOptionsAndBody", + "pos": 348, + "end": 377, + "resolutionMode": 99, + "trace": [ + "======== Resolving module './selectHttpOptionsAndBody' from '/node_modules/@apollo/client/link/http/index.d.ts'. ========", + "Explicitly specified module resolution kind: 'Node16'.", + "Resolving in ESM mode with conditions 'import', 'types', 'node'.", + "Loading module as file / folder, candidate module location '/node_modules/@apollo/client/link/http/selectHttpOptionsAndBody', target file types: TypeScript, JavaScript, Declaration, JSON.", + "Directory '/node_modules/@apollo/client/link/http/selectHttpOptionsAndBody' does not exist, skipping all lookups in it.", + "======== Module name './selectHttpOptionsAndBody' was not resolved. ========" + ] }, { "kind": "InternalResolutionError", "resolutionOption": "node16", "fileName": "/node_modules/@apollo/client/link/http/index.d.ts", - "error": { - "moduleSpecifier": "./checkFetcher", - "pos": 407, - "end": 424, - "resolutionMode": 99 - } + "moduleSpecifier": "./checkFetcher", + "pos": 407, + "end": 424, + "resolutionMode": 99, + "trace": [ + "======== Resolving module './checkFetcher' from '/node_modules/@apollo/client/link/http/index.d.ts'. ========", + "Explicitly specified module resolution kind: 'Node16'.", + "Resolving in ESM mode with conditions 'import', 'types', 'node'.", + "Loading module as file / folder, candidate module location '/node_modules/@apollo/client/link/http/checkFetcher', target file types: TypeScript, JavaScript, Declaration, JSON.", + "Directory '/node_modules/@apollo/client/link/http/checkFetcher' does not exist, skipping all lookups in it.", + "======== Module name './checkFetcher' was not resolved. ========" + ] }, { "kind": "InternalResolutionError", "resolutionOption": "node16", "fileName": "/node_modules/@apollo/client/link/http/index.d.ts", - "error": { - "moduleSpecifier": "./createSignalIfSupported", - "pos": 465, - "end": 493, - "resolutionMode": 99 - } + "moduleSpecifier": "./createSignalIfSupported", + "pos": 465, + "end": 493, + "resolutionMode": 99, + "trace": [ + "======== Resolving module './createSignalIfSupported' from '/node_modules/@apollo/client/link/http/index.d.ts'. ========", + "Explicitly specified module resolution kind: 'Node16'.", + "Resolving in ESM mode with conditions 'import', 'types', 'node'.", + "Loading module as file / folder, candidate module location '/node_modules/@apollo/client/link/http/createSignalIfSupported', target file types: TypeScript, JavaScript, Declaration, JSON.", + "Directory '/node_modules/@apollo/client/link/http/createSignalIfSupported' does not exist, skipping all lookups in it.", + "======== Module name './createSignalIfSupported' was not resolved. ========" + ] }, { "kind": "InternalResolutionError", "resolutionOption": "node16", "fileName": "/node_modules/@apollo/client/link/http/index.d.ts", - "error": { - "moduleSpecifier": "./selectURI", - "pos": 520, - "end": 534, - "resolutionMode": 99 - } + "moduleSpecifier": "./selectURI", + "pos": 520, + "end": 534, + "resolutionMode": 99, + "trace": [ + "======== Resolving module './selectURI' from '/node_modules/@apollo/client/link/http/index.d.ts'. ========", + "Explicitly specified module resolution kind: 'Node16'.", + "Resolving in ESM mode with conditions 'import', 'types', 'node'.", + "Loading module as file / folder, candidate module location '/node_modules/@apollo/client/link/http/selectURI', target file types: TypeScript, JavaScript, Declaration, JSON.", + "Directory '/node_modules/@apollo/client/link/http/selectURI' does not exist, skipping all lookups in it.", + "======== Module name './selectURI' was not resolved. ========" + ] }, { "kind": "InternalResolutionError", "resolutionOption": "node16", "fileName": "/node_modules/@apollo/client/link/http/index.d.ts", - "error": { - "moduleSpecifier": "./createHttpLink", - "pos": 566, - "end": 585, - "resolutionMode": 99 - } + "moduleSpecifier": "./createHttpLink", + "pos": 566, + "end": 585, + "resolutionMode": 99, + "trace": [ + "======== Resolving module './createHttpLink' from '/node_modules/@apollo/client/link/http/index.d.ts'. ========", + "Explicitly specified module resolution kind: 'Node16'.", + "Resolving in ESM mode with conditions 'import', 'types', 'node'.", + "Loading module as file / folder, candidate module location '/node_modules/@apollo/client/link/http/createHttpLink', target file types: TypeScript, JavaScript, Declaration, JSON.", + "Directory '/node_modules/@apollo/client/link/http/createHttpLink' does not exist, skipping all lookups in it.", + "======== Module name './createHttpLink' was not resolved. ========" + ] }, { "kind": "InternalResolutionError", "resolutionOption": "node16", "fileName": "/node_modules/@apollo/client/link/http/index.d.ts", - "error": { - "moduleSpecifier": "./HttpLink", - "pos": 611, - "end": 624, - "resolutionMode": 99 - } + "moduleSpecifier": "./HttpLink", + "pos": 611, + "end": 624, + "resolutionMode": 99, + "trace": [ + "======== Resolving module './HttpLink' from '/node_modules/@apollo/client/link/http/index.d.ts'. ========", + "Explicitly specified module resolution kind: 'Node16'.", + "Resolving in ESM mode with conditions 'import', 'types', 'node'.", + "Loading module as file / folder, candidate module location '/node_modules/@apollo/client/link/http/HttpLink', target file types: TypeScript, JavaScript, Declaration, JSON.", + "Directory '/node_modules/@apollo/client/link/http/HttpLink' does not exist, skipping all lookups in it.", + "======== Module name './HttpLink' was not resolved. ========" + ] }, { "kind": "InternalResolutionError", "resolutionOption": "node16", "fileName": "/node_modules/@apollo/client/link/http/index.d.ts", - "error": { - "moduleSpecifier": "./rewriteURIForGET", - "pos": 658, - "end": 679, - "resolutionMode": 99 - } + "moduleSpecifier": "./rewriteURIForGET", + "pos": 658, + "end": 679, + "resolutionMode": 99, + "trace": [ + "======== Resolving module './rewriteURIForGET' from '/node_modules/@apollo/client/link/http/index.d.ts'. ========", + "Explicitly specified module resolution kind: 'Node16'.", + "Resolving in ESM mode with conditions 'import', 'types', 'node'.", + "Loading module as file / folder, candidate module location '/node_modules/@apollo/client/link/http/rewriteURIForGET', target file types: TypeScript, JavaScript, Declaration, JSON.", + "Directory '/node_modules/@apollo/client/link/http/rewriteURIForGET' does not exist, skipping all lookups in it.", + "======== Module name './rewriteURIForGET' was not resolved. ========" + ] }, { "kind": "InternalResolutionError", "resolutionOption": "node16", "fileName": "/node_modules/@apollo/client/link/persisted-queries/index.d.ts", - "error": { - "moduleSpecifier": "../core", - "pos": 108, - "end": 118, - "resolutionMode": 99 - } + "moduleSpecifier": "../core", + "pos": 108, + "end": 118, + "resolutionMode": 99, + "trace": [ + "======== Resolving module '../core' from '/node_modules/@apollo/client/link/persisted-queries/index.d.ts'. ========", + "Explicitly specified module resolution kind: 'Node16'.", + "Resolving in ESM mode with conditions 'import', 'types', 'node'.", + "Loading module as file / folder, candidate module location '/node_modules/@apollo/client/link/core', target file types: TypeScript, JavaScript, Declaration, JSON.", + "======== Module name '../core' was not resolved. ========" + ] }, { "kind": "InternalResolutionError", "resolutionOption": "node16", "fileName": "/node_modules/@apollo/client/link/persisted-queries/index.d.ts", - "error": { - "moduleSpecifier": "../../errors", - "pos": 148, - "end": 163, - "resolutionMode": 99 - } + "moduleSpecifier": "../../errors", + "pos": 148, + "end": 163, + "resolutionMode": 99, + "trace": [ + "======== Resolving module '../../errors' from '/node_modules/@apollo/client/link/persisted-queries/index.d.ts'. ========", + "Explicitly specified module resolution kind: 'Node16'.", + "Resolving in ESM mode with conditions 'import', 'types', 'node'.", + "Loading module as file / folder, candidate module location '/node_modules/@apollo/client/errors', target file types: TypeScript, JavaScript, Declaration, JSON.", + "======== Module name '../../errors' was not resolved. ========" + ] }, { "kind": "InternalResolutionError", "resolutionOption": "node16", "fileName": "/node_modules/@apollo/client/link/retry/index.d.ts", - "error": { - "moduleSpecifier": "./retryLink", - "pos": 13, - "end": 27, - "resolutionMode": 99 - } + "moduleSpecifier": "./retryLink", + "pos": 13, + "end": 27, + "resolutionMode": 99, + "trace": [ + "======== Resolving module './retryLink' from '/node_modules/@apollo/client/link/retry/index.d.ts'. ========", + "Explicitly specified module resolution kind: 'Node16'.", + "Resolving in ESM mode with conditions 'import', 'types', 'node'.", + "Loading module as file / folder, candidate module location '/node_modules/@apollo/client/link/retry/retryLink', target file types: TypeScript, JavaScript, Declaration, JSON.", + "Directory '/node_modules/@apollo/client/link/retry/retryLink' does not exist, skipping all lookups in it.", + "======== Module name './retryLink' was not resolved. ========" + ] }, { "kind": "InternalResolutionError", "resolutionOption": "node16", "fileName": "/node_modules/@apollo/client/link/schema/index.d.ts", - "error": { - "moduleSpecifier": "../core", - "pos": 91, - "end": 101, - "resolutionMode": 99 - } + "moduleSpecifier": "../core", + "pos": 91, + "end": 101, + "resolutionMode": 99, + "trace": [ + "======== Resolving module '../core' from '/node_modules/@apollo/client/link/schema/index.d.ts'. ========", + "Explicitly specified module resolution kind: 'Node16'.", + "Resolving in ESM mode with conditions 'import', 'types', 'node'.", + "Loading module as file / folder, candidate module location '/node_modules/@apollo/client/link/core', target file types: TypeScript, JavaScript, Declaration, JSON.", + "======== Module name '../core' was not resolved. ========" + ] }, { "kind": "InternalResolutionError", "resolutionOption": "node16", "fileName": "/node_modules/@apollo/client/link/schema/index.d.ts", - "error": { - "moduleSpecifier": "../../utilities", - "pos": 129, - "end": 147, - "resolutionMode": 99 - } + "moduleSpecifier": "../../utilities", + "pos": 129, + "end": 147, + "resolutionMode": 99, + "trace": [ + "======== Resolving module '../../utilities' from '/node_modules/@apollo/client/link/schema/index.d.ts'. ========", + "Explicitly specified module resolution kind: 'Node16'.", + "Resolving in ESM mode with conditions 'import', 'types', 'node'.", + "Loading module as file / folder, candidate module location '/node_modules/@apollo/client/utilities', target file types: TypeScript, JavaScript, Declaration, JSON.", + "======== Module name '../../utilities' was not resolved. ========" + ] }, { "kind": "InternalResolutionError", "resolutionOption": "node16", "fileName": "/node_modules/@apollo/client/link/subscriptions/index.d.ts", - "error": { - "moduleSpecifier": "../core", - "pos": 92, - "end": 102, - "resolutionMode": 99 - } + "moduleSpecifier": "../core", + "pos": 92, + "end": 102, + "resolutionMode": 99, + "trace": [ + "======== Resolving module '../core' from '/node_modules/@apollo/client/link/subscriptions/index.d.ts'. ========", + "Explicitly specified module resolution kind: 'Node16'.", + "Resolving in ESM mode with conditions 'import', 'types', 'node'.", + "Loading module as file / folder, candidate module location '/node_modules/@apollo/client/link/core', target file types: TypeScript, JavaScript, Declaration, JSON.", + "======== Module name '../core' was not resolved. ========" + ] }, { "kind": "InternalResolutionError", "resolutionOption": "node16", "fileName": "/node_modules/@apollo/client/link/subscriptions/index.d.ts", - "error": { - "moduleSpecifier": "../../utilities", - "pos": 130, - "end": 148, - "resolutionMode": 99 - } + "moduleSpecifier": "../../utilities", + "pos": 130, + "end": 148, + "resolutionMode": 99, + "trace": [ + "======== Resolving module '../../utilities' from '/node_modules/@apollo/client/link/subscriptions/index.d.ts'. ========", + "Explicitly specified module resolution kind: 'Node16'.", + "Resolving in ESM mode with conditions 'import', 'types', 'node'.", + "Loading module as file / folder, candidate module location '/node_modules/@apollo/client/utilities', target file types: TypeScript, JavaScript, Declaration, JSON.", + "======== Module name '../../utilities' was not resolved. ========" + ] }, { "kind": "InternalResolutionError", "resolutionOption": "node16", "fileName": "/node_modules/@apollo/client/link/utils/index.d.ts", - "error": { - "moduleSpecifier": "../../utilities/globals", - "pos": 6, - "end": 32, - "resolutionMode": 99 - } + "moduleSpecifier": "../../utilities/globals", + "pos": 6, + "end": 32, + "resolutionMode": 99, + "trace": [ + "======== Resolving module '../../utilities/globals' from '/node_modules/@apollo/client/link/utils/index.d.ts'. ========", + "Explicitly specified module resolution kind: 'Node16'.", + "Resolving in ESM mode with conditions 'import', 'types', 'node'.", + "Loading module as file / folder, candidate module location '/node_modules/@apollo/client/utilities/globals', target file types: TypeScript, JavaScript, Declaration, JSON.", + "======== Module name '../../utilities/globals' was not resolved. ========" + ] }, { "kind": "InternalResolutionError", "resolutionOption": "node16", "fileName": "/node_modules/@apollo/client/link/utils/index.d.ts", - "error": { - "moduleSpecifier": "./fromError", - "pos": 59, - "end": 73, - "resolutionMode": 99 - } + "moduleSpecifier": "./fromError", + "pos": 59, + "end": 73, + "resolutionMode": 99, + "trace": [ + "======== Resolving module './fromError' from '/node_modules/@apollo/client/link/utils/index.d.ts'. ========", + "Explicitly specified module resolution kind: 'Node16'.", + "Resolving in ESM mode with conditions 'import', 'types', 'node'.", + "Loading module as file / folder, candidate module location '/node_modules/@apollo/client/link/utils/fromError', target file types: TypeScript, JavaScript, Declaration, JSON.", + "Directory '/node_modules/@apollo/client/link/utils/fromError' does not exist, skipping all lookups in it.", + "======== Module name './fromError' was not resolved. ========" + ] }, { "kind": "InternalResolutionError", "resolutionOption": "node16", "fileName": "/node_modules/@apollo/client/link/utils/index.d.ts", - "error": { - "moduleSpecifier": "./toPromise", - "pos": 100, - "end": 114, - "resolutionMode": 99 - } + "moduleSpecifier": "./toPromise", + "pos": 100, + "end": 114, + "resolutionMode": 99, + "trace": [ + "======== Resolving module './toPromise' from '/node_modules/@apollo/client/link/utils/index.d.ts'. ========", + "Explicitly specified module resolution kind: 'Node16'.", + "Resolving in ESM mode with conditions 'import', 'types', 'node'.", + "Loading module as file / folder, candidate module location '/node_modules/@apollo/client/link/utils/toPromise', target file types: TypeScript, JavaScript, Declaration, JSON.", + "Directory '/node_modules/@apollo/client/link/utils/toPromise' does not exist, skipping all lookups in it.", + "======== Module name './toPromise' was not resolved. ========" + ] }, { "kind": "InternalResolutionError", "resolutionOption": "node16", "fileName": "/node_modules/@apollo/client/link/utils/index.d.ts", - "error": { - "moduleSpecifier": "./fromPromise", - "pos": 143, - "end": 159, - "resolutionMode": 99 - } + "moduleSpecifier": "./fromPromise", + "pos": 143, + "end": 159, + "resolutionMode": 99, + "trace": [ + "======== Resolving module './fromPromise' from '/node_modules/@apollo/client/link/utils/index.d.ts'. ========", + "Explicitly specified module resolution kind: 'Node16'.", + "Resolving in ESM mode with conditions 'import', 'types', 'node'.", + "Loading module as file / folder, candidate module location '/node_modules/@apollo/client/link/utils/fromPromise', target file types: TypeScript, JavaScript, Declaration, JSON.", + "Directory '/node_modules/@apollo/client/link/utils/fromPromise' does not exist, skipping all lookups in it.", + "======== Module name './fromPromise' was not resolved. ========" + ] }, { "kind": "InternalResolutionError", "resolutionOption": "node16", "fileName": "/node_modules/@apollo/client/link/utils/index.d.ts", - "error": { - "moduleSpecifier": "./throwServerError", - "pos": 206, - "end": 227, - "resolutionMode": 99 - } + "moduleSpecifier": "./throwServerError", + "pos": 206, + "end": 227, + "resolutionMode": 99, + "trace": [ + "======== Resolving module './throwServerError' from '/node_modules/@apollo/client/link/utils/index.d.ts'. ========", + "Explicitly specified module resolution kind: 'Node16'.", + "Resolving in ESM mode with conditions 'import', 'types', 'node'.", + "Loading module as file / folder, candidate module location '/node_modules/@apollo/client/link/utils/throwServerError', target file types: TypeScript, JavaScript, Declaration, JSON.", + "Directory '/node_modules/@apollo/client/link/utils/throwServerError' does not exist, skipping all lookups in it.", + "======== Module name './throwServerError' was not resolved. ========" + ] }, { "kind": "InternalResolutionError", "resolutionOption": "node16", "fileName": "/node_modules/@apollo/client/link/utils/index.d.ts", - "error": { - "moduleSpecifier": "./validateOperation", - "pos": 262, - "end": 284, - "resolutionMode": 99 - } + "moduleSpecifier": "./validateOperation", + "pos": 262, + "end": 284, + "resolutionMode": 99, + "trace": [ + "======== Resolving module './validateOperation' from '/node_modules/@apollo/client/link/utils/index.d.ts'. ========", + "Explicitly specified module resolution kind: 'Node16'.", + "Resolving in ESM mode with conditions 'import', 'types', 'node'.", + "Loading module as file / folder, candidate module location '/node_modules/@apollo/client/link/utils/validateOperation', target file types: TypeScript, JavaScript, Declaration, JSON.", + "Directory '/node_modules/@apollo/client/link/utils/validateOperation' does not exist, skipping all lookups in it.", + "======== Module name './validateOperation' was not resolved. ========" + ] }, { "kind": "InternalResolutionError", "resolutionOption": "node16", "fileName": "/node_modules/@apollo/client/link/utils/index.d.ts", - "error": { - "moduleSpecifier": "./createOperation", - "pos": 317, - "end": 337, - "resolutionMode": 99 - } + "moduleSpecifier": "./createOperation", + "pos": 317, + "end": 337, + "resolutionMode": 99, + "trace": [ + "======== Resolving module './createOperation' from '/node_modules/@apollo/client/link/utils/index.d.ts'. ========", + "Explicitly specified module resolution kind: 'Node16'.", + "Resolving in ESM mode with conditions 'import', 'types', 'node'.", + "Loading module as file / folder, candidate module location '/node_modules/@apollo/client/link/utils/createOperation', target file types: TypeScript, JavaScript, Declaration, JSON.", + "Directory '/node_modules/@apollo/client/link/utils/createOperation' does not exist, skipping all lookups in it.", + "======== Module name './createOperation' was not resolved. ========" + ] }, { "kind": "InternalResolutionError", "resolutionOption": "node16", "fileName": "/node_modules/@apollo/client/link/utils/index.d.ts", - "error": { - "moduleSpecifier": "./transformOperation", - "pos": 373, - "end": 396, - "resolutionMode": 99 - } + "moduleSpecifier": "./transformOperation", + "pos": 373, + "end": 396, + "resolutionMode": 99, + "trace": [ + "======== Resolving module './transformOperation' from '/node_modules/@apollo/client/link/utils/index.d.ts'. ========", + "Explicitly specified module resolution kind: 'Node16'.", + "Resolving in ESM mode with conditions 'import', 'types', 'node'.", + "Loading module as file / folder, candidate module location '/node_modules/@apollo/client/link/utils/transformOperation', target file types: TypeScript, JavaScript, Declaration, JSON.", + "Directory '/node_modules/@apollo/client/link/utils/transformOperation' does not exist, skipping all lookups in it.", + "======== Module name './transformOperation' was not resolved. ========" + ] }, { "kind": "InternalResolutionError", "resolutionOption": "node16", "fileName": "/node_modules/@apollo/client/link/ws/index.d.ts", - "error": { - "moduleSpecifier": "../core", - "pos": 130, - "end": 140, - "resolutionMode": 99 - } + "moduleSpecifier": "../core", + "pos": 130, + "end": 140, + "resolutionMode": 99, + "trace": [ + "======== Resolving module '../core' from '/node_modules/@apollo/client/link/ws/index.d.ts'. ========", + "Explicitly specified module resolution kind: 'Node16'.", + "Resolving in ESM mode with conditions 'import', 'types', 'node'.", + "Loading module as file / folder, candidate module location '/node_modules/@apollo/client/link/core', target file types: TypeScript, JavaScript, Declaration, JSON.", + "======== Module name '../core' was not resolved. ========" + ] }, { "kind": "InternalResolutionError", "resolutionOption": "node16", "fileName": "/node_modules/@apollo/client/link/ws/index.d.ts", - "error": { - "moduleSpecifier": "../../utilities", - "pos": 168, - "end": 186, - "resolutionMode": 99 - } + "moduleSpecifier": "../../utilities", + "pos": 168, + "end": 186, + "resolutionMode": 99, + "trace": [ + "======== Resolving module '../../utilities' from '/node_modules/@apollo/client/link/ws/index.d.ts'. ========", + "Explicitly specified module resolution kind: 'Node16'.", + "Resolving in ESM mode with conditions 'import', 'types', 'node'.", + "Loading module as file / folder, candidate module location '/node_modules/@apollo/client/utilities', target file types: TypeScript, JavaScript, Declaration, JSON.", + "======== Module name '../../utilities' was not resolved. ========" + ] }, { "kind": "InternalResolutionError", "resolutionOption": "node16", "fileName": "/node_modules/@apollo/client/react/components/index.d.ts", - "error": { - "moduleSpecifier": "./Query", - "pos": 21, - "end": 31, - "resolutionMode": 99 - } + "moduleSpecifier": "./Query", + "pos": 21, + "end": 31, + "resolutionMode": 99, + "trace": [ + "======== Resolving module './Query' from '/node_modules/@apollo/client/react/components/index.d.ts'. ========", + "Explicitly specified module resolution kind: 'Node16'.", + "Resolving in ESM mode with conditions 'import', 'types', 'node'.", + "Loading module as file / folder, candidate module location '/node_modules/@apollo/client/react/components/Query', target file types: TypeScript, JavaScript, Declaration, JSON.", + "Directory '/node_modules/@apollo/client/react/components/Query' does not exist, skipping all lookups in it.", + "======== Module name './Query' was not resolved. ========" + ] }, { "kind": "InternalResolutionError", "resolutionOption": "node16", "fileName": "/node_modules/@apollo/client/react/components/index.d.ts", - "error": { - "moduleSpecifier": "./Mutation", - "pos": 57, - "end": 70, - "resolutionMode": 99 - } + "moduleSpecifier": "./Mutation", + "pos": 57, + "end": 70, + "resolutionMode": 99, + "trace": [ + "======== Resolving module './Mutation' from '/node_modules/@apollo/client/react/components/index.d.ts'. ========", + "Explicitly specified module resolution kind: 'Node16'.", + "Resolving in ESM mode with conditions 'import', 'types', 'node'.", + "Loading module as file / folder, candidate module location '/node_modules/@apollo/client/react/components/Mutation', target file types: TypeScript, JavaScript, Declaration, JSON.", + "Directory '/node_modules/@apollo/client/react/components/Mutation' does not exist, skipping all lookups in it.", + "======== Module name './Mutation' was not resolved. ========" + ] }, { "kind": "InternalResolutionError", "resolutionOption": "node16", "fileName": "/node_modules/@apollo/client/react/components/index.d.ts", - "error": { - "moduleSpecifier": "./Subscription", - "pos": 100, - "end": 117, - "resolutionMode": 99 - } + "moduleSpecifier": "./Subscription", + "pos": 100, + "end": 117, + "resolutionMode": 99, + "trace": [ + "======== Resolving module './Subscription' from '/node_modules/@apollo/client/react/components/index.d.ts'. ========", + "Explicitly specified module resolution kind: 'Node16'.", + "Resolving in ESM mode with conditions 'import', 'types', 'node'.", + "Loading module as file / folder, candidate module location '/node_modules/@apollo/client/react/components/Subscription', target file types: TypeScript, JavaScript, Declaration, JSON.", + "Directory '/node_modules/@apollo/client/react/components/Subscription' does not exist, skipping all lookups in it.", + "======== Module name './Subscription' was not resolved. ========" + ] }, { "kind": "InternalResolutionError", "resolutionOption": "node16", "fileName": "/node_modules/@apollo/client/react/components/index.d.ts", - "error": { - "moduleSpecifier": "./types", - "pos": 132, - "end": 142, - "resolutionMode": 99 - } + "moduleSpecifier": "./types", + "pos": 132, + "end": 142, + "resolutionMode": 99, + "trace": [ + "======== Resolving module './types' from '/node_modules/@apollo/client/react/components/index.d.ts'. ========", + "Explicitly specified module resolution kind: 'Node16'.", + "Resolving in ESM mode with conditions 'import', 'types', 'node'.", + "Loading module as file / folder, candidate module location '/node_modules/@apollo/client/react/components/types', target file types: TypeScript, JavaScript, Declaration, JSON.", + "Directory '/node_modules/@apollo/client/react/components/types' does not exist, skipping all lookups in it.", + "======== Module name './types' was not resolved. ========" + ] }, { "kind": "InternalResolutionError", "resolutionOption": "node16", "fileName": "/node_modules/@apollo/client/react/context/index.d.ts", - "error": { - "moduleSpecifier": "../../utilities/globals", - "pos": 6, - "end": 32, - "resolutionMode": 99 - } + "moduleSpecifier": "../../utilities/globals", + "pos": 6, + "end": 32, + "resolutionMode": 99, + "trace": [ + "======== Resolving module '../../utilities/globals' from '/node_modules/@apollo/client/react/context/index.d.ts'. ========", + "Explicitly specified module resolution kind: 'Node16'.", + "Resolving in ESM mode with conditions 'import', 'types', 'node'.", + "Loading module as file / folder, candidate module location '/node_modules/@apollo/client/utilities/globals', target file types: TypeScript, JavaScript, Declaration, JSON.", + "======== Module name '../../utilities/globals' was not resolved. ========" + ] }, { "kind": "InternalResolutionError", "resolutionOption": "node16", "fileName": "/node_modules/@apollo/client/react/context/index.d.ts", - "error": { - "moduleSpecifier": "./ApolloConsumer", - "pos": 85, - "end": 104, - "resolutionMode": 99 - } + "moduleSpecifier": "./ApolloConsumer", + "pos": 85, + "end": 104, + "resolutionMode": 99, + "trace": [ + "======== Resolving module './ApolloConsumer' from '/node_modules/@apollo/client/react/context/index.d.ts'. ========", + "Explicitly specified module resolution kind: 'Node16'.", + "Resolving in ESM mode with conditions 'import', 'types', 'node'.", + "Loading module as file / folder, candidate module location '/node_modules/@apollo/client/react/context/ApolloConsumer', target file types: TypeScript, JavaScript, Declaration, JSON.", + "Directory '/node_modules/@apollo/client/react/context/ApolloConsumer' does not exist, skipping all lookups in it.", + "======== Module name './ApolloConsumer' was not resolved. ========" + ] }, { "kind": "InternalResolutionError", "resolutionOption": "node16", "fileName": "/node_modules/@apollo/client/react/context/index.d.ts", - "error": { - "moduleSpecifier": "./ApolloContext", - "pos": 198, - "end": 216, - "resolutionMode": 99 - } + "moduleSpecifier": "./ApolloContext", + "pos": 198, + "end": 216, + "resolutionMode": 99, + "trace": [ + "======== Resolving module './ApolloContext' from '/node_modules/@apollo/client/react/context/index.d.ts'. ========", + "Explicitly specified module resolution kind: 'Node16'.", + "Resolving in ESM mode with conditions 'import', 'types', 'node'.", + "Loading module as file / folder, candidate module location '/node_modules/@apollo/client/react/context/ApolloContext', target file types: TypeScript, JavaScript, Declaration, JSON.", + "Directory '/node_modules/@apollo/client/react/context/ApolloContext' does not exist, skipping all lookups in it.", + "======== Module name './ApolloContext' was not resolved. ========" + ] }, { "kind": "InternalResolutionError", "resolutionOption": "node16", "fileName": "/node_modules/@apollo/client/react/context/index.d.ts", - "error": { - "moduleSpecifier": "./ApolloProvider", - "pos": 269, - "end": 288, - "resolutionMode": 99 - } + "moduleSpecifier": "./ApolloProvider", + "pos": 269, + "end": 288, + "resolutionMode": 99, + "trace": [ + "======== Resolving module './ApolloProvider' from '/node_modules/@apollo/client/react/context/index.d.ts'. ========", + "Explicitly specified module resolution kind: 'Node16'.", + "Resolving in ESM mode with conditions 'import', 'types', 'node'.", + "Loading module as file / folder, candidate module location '/node_modules/@apollo/client/react/context/ApolloProvider', target file types: TypeScript, JavaScript, Declaration, JSON.", + "Directory '/node_modules/@apollo/client/react/context/ApolloProvider' does not exist, skipping all lookups in it.", + "======== Module name './ApolloProvider' was not resolved. ========" + ] }, { "kind": "InternalResolutionError", "resolutionOption": "node16", "fileName": "/node_modules/@apollo/client/react/hoc/index.d.ts", - "error": { - "moduleSpecifier": "../../utilities/globals", - "pos": 6, - "end": 32, - "resolutionMode": 99 - } + "moduleSpecifier": "../../utilities/globals", + "pos": 6, + "end": 32, + "resolutionMode": 99, + "trace": [ + "======== Resolving module '../../utilities/globals' from '/node_modules/@apollo/client/react/hoc/index.d.ts'. ========", + "Explicitly specified module resolution kind: 'Node16'.", + "Resolving in ESM mode with conditions 'import', 'types', 'node'.", + "Loading module as file / folder, candidate module location '/node_modules/@apollo/client/utilities/globals', target file types: TypeScript, JavaScript, Declaration, JSON.", + "======== Module name '../../utilities/globals' was not resolved. ========" + ] }, { "kind": "InternalResolutionError", "resolutionOption": "node16", "fileName": "/node_modules/@apollo/client/react/hoc/index.d.ts", - "error": { - "moduleSpecifier": "./graphql", - "pos": 57, - "end": 69, - "resolutionMode": 99 - } + "moduleSpecifier": "./graphql", + "pos": 57, + "end": 69, + "resolutionMode": 99, + "trace": [ + "======== Resolving module './graphql' from '/node_modules/@apollo/client/react/hoc/index.d.ts'. ========", + "Explicitly specified module resolution kind: 'Node16'.", + "Resolving in ESM mode with conditions 'import', 'types', 'node'.", + "Loading module as file / folder, candidate module location '/node_modules/@apollo/client/react/hoc/graphql', target file types: TypeScript, JavaScript, Declaration, JSON.", + "Directory '/node_modules/@apollo/client/react/hoc/graphql' does not exist, skipping all lookups in it.", + "======== Module name './graphql' was not resolved. ========" + ] }, { "kind": "InternalResolutionError", "resolutionOption": "node16", "fileName": "/node_modules/@apollo/client/react/hoc/index.d.ts", - "error": { - "moduleSpecifier": "./query-hoc", - "pos": 96, - "end": 110, - "resolutionMode": 99 - } + "moduleSpecifier": "./query-hoc", + "pos": 96, + "end": 110, + "resolutionMode": 99, + "trace": [ + "======== Resolving module './query-hoc' from '/node_modules/@apollo/client/react/hoc/index.d.ts'. ========", + "Explicitly specified module resolution kind: 'Node16'.", + "Resolving in ESM mode with conditions 'import', 'types', 'node'.", + "Loading module as file / folder, candidate module location '/node_modules/@apollo/client/react/hoc/query-hoc', target file types: TypeScript, JavaScript, Declaration, JSON.", + "Directory '/node_modules/@apollo/client/react/hoc/query-hoc' does not exist, skipping all lookups in it.", + "======== Module name './query-hoc' was not resolved. ========" + ] }, { "kind": "InternalResolutionError", "resolutionOption": "node16", "fileName": "/node_modules/@apollo/client/react/hoc/index.d.ts", - "error": { - "moduleSpecifier": "./mutation-hoc", - "pos": 140, - "end": 157, - "resolutionMode": 99 - } + "moduleSpecifier": "./mutation-hoc", + "pos": 140, + "end": 157, + "resolutionMode": 99, + "trace": [ + "======== Resolving module './mutation-hoc' from '/node_modules/@apollo/client/react/hoc/index.d.ts'. ========", + "Explicitly specified module resolution kind: 'Node16'.", + "Resolving in ESM mode with conditions 'import', 'types', 'node'.", + "Loading module as file / folder, candidate module location '/node_modules/@apollo/client/react/hoc/mutation-hoc', target file types: TypeScript, JavaScript, Declaration, JSON.", + "Directory '/node_modules/@apollo/client/react/hoc/mutation-hoc' does not exist, skipping all lookups in it.", + "======== Module name './mutation-hoc' was not resolved. ========" + ] }, { "kind": "InternalResolutionError", "resolutionOption": "node16", "fileName": "/node_modules/@apollo/client/react/hoc/index.d.ts", - "error": { - "moduleSpecifier": "./subscription-hoc", - "pos": 191, - "end": 212, - "resolutionMode": 99 - } + "moduleSpecifier": "./subscription-hoc", + "pos": 191, + "end": 212, + "resolutionMode": 99, + "trace": [ + "======== Resolving module './subscription-hoc' from '/node_modules/@apollo/client/react/hoc/index.d.ts'. ========", + "Explicitly specified module resolution kind: 'Node16'.", + "Resolving in ESM mode with conditions 'import', 'types', 'node'.", + "Loading module as file / folder, candidate module location '/node_modules/@apollo/client/react/hoc/subscription-hoc', target file types: TypeScript, JavaScript, Declaration, JSON.", + "Directory '/node_modules/@apollo/client/react/hoc/subscription-hoc' does not exist, skipping all lookups in it.", + "======== Module name './subscription-hoc' was not resolved. ========" + ] }, { "kind": "InternalResolutionError", "resolutionOption": "node16", "fileName": "/node_modules/@apollo/client/react/hoc/index.d.ts", - "error": { - "moduleSpecifier": "./withApollo", - "pos": 240, - "end": 255, - "resolutionMode": 99 - } + "moduleSpecifier": "./withApollo", + "pos": 240, + "end": 255, + "resolutionMode": 99, + "trace": [ + "======== Resolving module './withApollo' from '/node_modules/@apollo/client/react/hoc/index.d.ts'. ========", + "Explicitly specified module resolution kind: 'Node16'.", + "Resolving in ESM mode with conditions 'import', 'types', 'node'.", + "Loading module as file / folder, candidate module location '/node_modules/@apollo/client/react/hoc/withApollo', target file types: TypeScript, JavaScript, Declaration, JSON.", + "Directory '/node_modules/@apollo/client/react/hoc/withApollo' does not exist, skipping all lookups in it.", + "======== Module name './withApollo' was not resolved. ========" + ] }, { "kind": "InternalResolutionError", "resolutionOption": "node16", "fileName": "/node_modules/@apollo/client/react/hoc/index.d.ts", - "error": { - "moduleSpecifier": "./types", - "pos": 270, - "end": 280, - "resolutionMode": 99 - } + "moduleSpecifier": "./types", + "pos": 270, + "end": 280, + "resolutionMode": 99, + "trace": [ + "======== Resolving module './types' from '/node_modules/@apollo/client/react/hoc/index.d.ts'. ========", + "Explicitly specified module resolution kind: 'Node16'.", + "Resolving in ESM mode with conditions 'import', 'types', 'node'.", + "Loading module as file / folder, candidate module location '/node_modules/@apollo/client/react/hoc/types', target file types: TypeScript, JavaScript, Declaration, JSON.", + "Directory '/node_modules/@apollo/client/react/hoc/types' does not exist, skipping all lookups in it.", + "======== Module name './types' was not resolved. ========" + ] }, { "kind": "InternalResolutionError", "resolutionOption": "node16", "fileName": "/node_modules/@apollo/client/react/hooks/index.d.ts", - "error": { - "moduleSpecifier": "../../utilities/globals", - "pos": 6, - "end": 32, - "resolutionMode": 99 - } + "moduleSpecifier": "../../utilities/globals", + "pos": 6, + "end": 32, + "resolutionMode": 99, + "trace": [ + "======== Resolving module '../../utilities/globals' from '/node_modules/@apollo/client/react/hooks/index.d.ts'. ========", + "Explicitly specified module resolution kind: 'Node16'.", + "Resolving in ESM mode with conditions 'import', 'types', 'node'.", + "Loading module as file / folder, candidate module location '/node_modules/@apollo/client/utilities/globals', target file types: TypeScript, JavaScript, Declaration, JSON.", + "======== Module name '../../utilities/globals' was not resolved. ========" + ] }, { "kind": "InternalResolutionError", "resolutionOption": "node16", "fileName": "/node_modules/@apollo/client/react/hooks/index.d.ts", - "error": { - "moduleSpecifier": "./useApolloClient", - "pos": 47, - "end": 67, - "resolutionMode": 99 - } + "moduleSpecifier": "./useApolloClient", + "pos": 47, + "end": 67, + "resolutionMode": 99, + "trace": [ + "======== Resolving module './useApolloClient' from '/node_modules/@apollo/client/react/hooks/index.d.ts'. ========", + "Explicitly specified module resolution kind: 'Node16'.", + "Resolving in ESM mode with conditions 'import', 'types', 'node'.", + "Loading module as file / folder, candidate module location '/node_modules/@apollo/client/react/hooks/useApolloClient', target file types: TypeScript, JavaScript, Declaration, JSON.", + "Directory '/node_modules/@apollo/client/react/hooks/useApolloClient' does not exist, skipping all lookups in it.", + "======== Module name './useApolloClient' was not resolved. ========" + ] }, { "kind": "InternalResolutionError", "resolutionOption": "node16", "fileName": "/node_modules/@apollo/client/react/hooks/index.d.ts", - "error": { - "moduleSpecifier": "./useLazyQuery", - "pos": 82, - "end": 99, - "resolutionMode": 99 - } + "moduleSpecifier": "./useLazyQuery", + "pos": 82, + "end": 99, + "resolutionMode": 99, + "trace": [ + "======== Resolving module './useLazyQuery' from '/node_modules/@apollo/client/react/hooks/index.d.ts'. ========", + "Explicitly specified module resolution kind: 'Node16'.", + "Resolving in ESM mode with conditions 'import', 'types', 'node'.", + "Loading module as file / folder, candidate module location '/node_modules/@apollo/client/react/hooks/useLazyQuery', target file types: TypeScript, JavaScript, Declaration, JSON.", + "Directory '/node_modules/@apollo/client/react/hooks/useLazyQuery' does not exist, skipping all lookups in it.", + "======== Module name './useLazyQuery' was not resolved. ========" + ] }, { "kind": "InternalResolutionError", "resolutionOption": "node16", "fileName": "/node_modules/@apollo/client/react/hooks/index.d.ts", - "error": { - "moduleSpecifier": "./useMutation", - "pos": 114, - "end": 130, - "resolutionMode": 99 - } + "moduleSpecifier": "./useMutation", + "pos": 114, + "end": 130, + "resolutionMode": 99, + "trace": [ + "======== Resolving module './useMutation' from '/node_modules/@apollo/client/react/hooks/index.d.ts'. ========", + "Explicitly specified module resolution kind: 'Node16'.", + "Resolving in ESM mode with conditions 'import', 'types', 'node'.", + "Loading module as file / folder, candidate module location '/node_modules/@apollo/client/react/hooks/useMutation', target file types: TypeScript, JavaScript, Declaration, JSON.", + "Directory '/node_modules/@apollo/client/react/hooks/useMutation' does not exist, skipping all lookups in it.", + "======== Module name './useMutation' was not resolved. ========" + ] }, { "kind": "InternalResolutionError", "resolutionOption": "node16", "fileName": "/node_modules/@apollo/client/react/hooks/index.d.ts", - "error": { - "moduleSpecifier": "./useQuery", - "pos": 156, - "end": 169, - "resolutionMode": 99 - } + "moduleSpecifier": "./useQuery", + "pos": 156, + "end": 169, + "resolutionMode": 99, + "trace": [ + "======== Resolving module './useQuery' from '/node_modules/@apollo/client/react/hooks/index.d.ts'. ========", + "Explicitly specified module resolution kind: 'Node16'.", + "Resolving in ESM mode with conditions 'import', 'types', 'node'.", + "Loading module as file / folder, candidate module location '/node_modules/@apollo/client/react/hooks/useQuery', target file types: TypeScript, JavaScript, Declaration, JSON.", + "Directory '/node_modules/@apollo/client/react/hooks/useQuery' does not exist, skipping all lookups in it.", + "======== Module name './useQuery' was not resolved. ========" + ] }, { "kind": "InternalResolutionError", "resolutionOption": "node16", "fileName": "/node_modules/@apollo/client/react/hooks/index.d.ts", - "error": { - "moduleSpecifier": "./useSubscription", - "pos": 184, - "end": 204, - "resolutionMode": 99 - } + "moduleSpecifier": "./useSubscription", + "pos": 184, + "end": 204, + "resolutionMode": 99, + "trace": [ + "======== Resolving module './useSubscription' from '/node_modules/@apollo/client/react/hooks/index.d.ts'. ========", + "Explicitly specified module resolution kind: 'Node16'.", + "Resolving in ESM mode with conditions 'import', 'types', 'node'.", + "Loading module as file / folder, candidate module location '/node_modules/@apollo/client/react/hooks/useSubscription', target file types: TypeScript, JavaScript, Declaration, JSON.", + "Directory '/node_modules/@apollo/client/react/hooks/useSubscription' does not exist, skipping all lookups in it.", + "======== Module name './useSubscription' was not resolved. ========" + ] }, { "kind": "InternalResolutionError", "resolutionOption": "node16", "fileName": "/node_modules/@apollo/client/react/hooks/index.d.ts", - "error": { - "moduleSpecifier": "./useReactiveVar", - "pos": 219, - "end": 238, - "resolutionMode": 99 - } + "moduleSpecifier": "./useReactiveVar", + "pos": 219, + "end": 238, + "resolutionMode": 99, + "trace": [ + "======== Resolving module './useReactiveVar' from '/node_modules/@apollo/client/react/hooks/index.d.ts'. ========", + "Explicitly specified module resolution kind: 'Node16'.", + "Resolving in ESM mode with conditions 'import', 'types', 'node'.", + "Loading module as file / folder, candidate module location '/node_modules/@apollo/client/react/hooks/useReactiveVar', target file types: TypeScript, JavaScript, Declaration, JSON.", + "Directory '/node_modules/@apollo/client/react/hooks/useReactiveVar' does not exist, skipping all lookups in it.", + "======== Module name './useReactiveVar' was not resolved. ========" + ] }, { "kind": "InternalResolutionError", "resolutionOption": "node16", "fileName": "/node_modules/@apollo/client/react/hooks/index.d.ts", - "error": { - "moduleSpecifier": "./useFragment", - "pos": 253, - "end": 269, - "resolutionMode": 99 - } + "moduleSpecifier": "./useFragment", + "pos": 253, + "end": 269, + "resolutionMode": 99, + "trace": [ + "======== Resolving module './useFragment' from '/node_modules/@apollo/client/react/hooks/index.d.ts'. ========", + "Explicitly specified module resolution kind: 'Node16'.", + "Resolving in ESM mode with conditions 'import', 'types', 'node'.", + "Loading module as file / folder, candidate module location '/node_modules/@apollo/client/react/hooks/useFragment', target file types: TypeScript, JavaScript, Declaration, JSON.", + "Directory '/node_modules/@apollo/client/react/hooks/useFragment' does not exist, skipping all lookups in it.", + "======== Module name './useFragment' was not resolved. ========" + ] }, { "kind": "InternalResolutionError", "resolutionOption": "node16", "fileName": "/node_modules/@apollo/client/react/index.d.ts", - "error": { - "moduleSpecifier": "../utilities/globals", - "pos": 6, - "end": 29, - "resolutionMode": 99 - } + "moduleSpecifier": "../utilities/globals", + "pos": 6, + "end": 29, + "resolutionMode": 99, + "trace": [ + "======== Resolving module '../utilities/globals' from '/node_modules/@apollo/client/react/index.d.ts'. ========", + "Explicitly specified module resolution kind: 'Node16'.", + "Resolving in ESM mode with conditions 'import', 'types', 'node'.", + "Loading module as file / folder, candidate module location '/node_modules/@apollo/client/utilities/globals', target file types: TypeScript, JavaScript, Declaration, JSON.", + "======== Module name '../utilities/globals' was not resolved. ========" + ] }, { "kind": "InternalResolutionError", "resolutionOption": "node16", "fileName": "/node_modules/@apollo/client/react/index.d.ts", - "error": { - "moduleSpecifier": "./context", - "pos": 135, - "end": 147, - "resolutionMode": 99 - } + "moduleSpecifier": "./context", + "pos": 135, + "end": 147, + "resolutionMode": 99, + "trace": [ + "======== Resolving module './context' from '/node_modules/@apollo/client/react/index.d.ts'. ========", + "Explicitly specified module resolution kind: 'Node16'.", + "Resolving in ESM mode with conditions 'import', 'types', 'node'.", + "Loading module as file / folder, candidate module location '/node_modules/@apollo/client/react/context', target file types: TypeScript, JavaScript, Declaration, JSON.", + "======== Module name './context' was not resolved. ========" + ] }, { "kind": "InternalResolutionError", "resolutionOption": "node16", "fileName": "/node_modules/@apollo/client/react/index.d.ts", - "error": { - "moduleSpecifier": "./hooks", - "pos": 162, - "end": 172, - "resolutionMode": 99 - } + "moduleSpecifier": "./hooks", + "pos": 162, + "end": 172, + "resolutionMode": 99, + "trace": [ + "======== Resolving module './hooks' from '/node_modules/@apollo/client/react/index.d.ts'. ========", + "Explicitly specified module resolution kind: 'Node16'.", + "Resolving in ESM mode with conditions 'import', 'types', 'node'.", + "Loading module as file / folder, candidate module location '/node_modules/@apollo/client/react/hooks', target file types: TypeScript, JavaScript, Declaration, JSON.", + "======== Module name './hooks' was not resolved. ========" + ] }, { "kind": "InternalResolutionError", "resolutionOption": "node16", "fileName": "/node_modules/@apollo/client/react/index.d.ts", - "error": { - "moduleSpecifier": "./parser", - "pos": 246, - "end": 257, - "resolutionMode": 99 - } + "moduleSpecifier": "./parser", + "pos": 246, + "end": 257, + "resolutionMode": 99, + "trace": [ + "======== Resolving module './parser' from '/node_modules/@apollo/client/react/index.d.ts'. ========", + "Explicitly specified module resolution kind: 'Node16'.", + "Resolving in ESM mode with conditions 'import', 'types', 'node'.", + "Loading module as file / folder, candidate module location '/node_modules/@apollo/client/react/parser', target file types: TypeScript, JavaScript, Declaration, JSON.", + "======== Module name './parser' was not resolved. ========" + ] }, { "kind": "InternalResolutionError", "resolutionOption": "node16", "fileName": "/node_modules/@apollo/client/react/index.d.ts", - "error": { - "moduleSpecifier": "./types/types", - "pos": 272, - "end": 288, - "resolutionMode": 99 - } + "moduleSpecifier": "./types/types", + "pos": 272, + "end": 288, + "resolutionMode": 99, + "trace": [ + "======== Resolving module './types/types' from '/node_modules/@apollo/client/react/index.d.ts'. ========", + "Explicitly specified module resolution kind: 'Node16'.", + "Resolving in ESM mode with conditions 'import', 'types', 'node'.", + "Loading module as file / folder, candidate module location '/node_modules/@apollo/client/react/types/types', target file types: TypeScript, JavaScript, Declaration, JSON.", + "Directory '/node_modules/@apollo/client/react/types/types' does not exist, skipping all lookups in it.", + "======== Module name './types/types' was not resolved. ========" + ] }, { "kind": "InternalResolutionError", "resolutionOption": "node16", "fileName": "/node_modules/@apollo/client/react/ssr/index.d.ts", - "error": { - "moduleSpecifier": "./getDataFromTree", - "pos": 50, - "end": 70, - "resolutionMode": 99 - } + "moduleSpecifier": "./getDataFromTree", + "pos": 50, + "end": 70, + "resolutionMode": 99, + "trace": [ + "======== Resolving module './getDataFromTree' from '/node_modules/@apollo/client/react/ssr/index.d.ts'. ========", + "Explicitly specified module resolution kind: 'Node16'.", + "Resolving in ESM mode with conditions 'import', 'types', 'node'.", + "Loading module as file / folder, candidate module location '/node_modules/@apollo/client/react/ssr/getDataFromTree', target file types: TypeScript, JavaScript, Declaration, JSON.", + "Directory '/node_modules/@apollo/client/react/ssr/getDataFromTree' does not exist, skipping all lookups in it.", + "======== Module name './getDataFromTree' was not resolved. ========" + ] }, { "kind": "InternalResolutionError", "resolutionOption": "node16", "fileName": "/node_modules/@apollo/client/react/ssr/index.d.ts", - "error": { - "moduleSpecifier": "./renderToStringWithData", - "pos": 110, - "end": 137, - "resolutionMode": 99 - } + "moduleSpecifier": "./renderToStringWithData", + "pos": 110, + "end": 137, + "resolutionMode": 99, + "trace": [ + "======== Resolving module './renderToStringWithData' from '/node_modules/@apollo/client/react/ssr/index.d.ts'. ========", + "Explicitly specified module resolution kind: 'Node16'.", + "Resolving in ESM mode with conditions 'import', 'types', 'node'.", + "Loading module as file / folder, candidate module location '/node_modules/@apollo/client/react/ssr/renderToStringWithData', target file types: TypeScript, JavaScript, Declaration, JSON.", + "Directory '/node_modules/@apollo/client/react/ssr/renderToStringWithData' does not exist, skipping all lookups in it.", + "======== Module name './renderToStringWithData' was not resolved. ========" + ] }, { "kind": "InternalResolutionError", "resolutionOption": "node16", "fileName": "/node_modules/@apollo/client/react/ssr/index.d.ts", - "error": { - "moduleSpecifier": "./RenderPromises", - "pos": 169, - "end": 188, - "resolutionMode": 99 - } + "moduleSpecifier": "./RenderPromises", + "pos": 169, + "end": 188, + "resolutionMode": 99, + "trace": [ + "======== Resolving module './RenderPromises' from '/node_modules/@apollo/client/react/ssr/index.d.ts'. ========", + "Explicitly specified module resolution kind: 'Node16'.", + "Resolving in ESM mode with conditions 'import', 'types', 'node'.", + "Loading module as file / folder, candidate module location '/node_modules/@apollo/client/react/ssr/RenderPromises', target file types: TypeScript, JavaScript, Declaration, JSON.", + "Directory '/node_modules/@apollo/client/react/ssr/RenderPromises' does not exist, skipping all lookups in it.", + "======== Module name './RenderPromises' was not resolved. ========" + ] }, { "kind": "InternalResolutionError", "resolutionOption": "node16", "fileName": "/node_modules/@apollo/client/testing/core/index.d.ts", - "error": { - "moduleSpecifier": "./mocking/mockLink", - "pos": 89, - "end": 110, - "resolutionMode": 99 - } + "moduleSpecifier": "./mocking/mockLink", + "pos": 89, + "end": 110, + "resolutionMode": 99, + "trace": [ + "======== Resolving module './mocking/mockLink' from '/node_modules/@apollo/client/testing/core/index.d.ts'. ========", + "Explicitly specified module resolution kind: 'Node16'.", + "Resolving in ESM mode with conditions 'import', 'types', 'node'.", + "Loading module as file / folder, candidate module location '/node_modules/@apollo/client/testing/core/mocking/mockLink', target file types: TypeScript, JavaScript, Declaration, JSON.", + "Directory '/node_modules/@apollo/client/testing/core/mocking/mockLink' does not exist, skipping all lookups in it.", + "======== Module name './mocking/mockLink' was not resolved. ========" + ] }, { "kind": "InternalResolutionError", "resolutionOption": "node16", "fileName": "/node_modules/@apollo/client/testing/core/index.d.ts", - "error": { - "moduleSpecifier": "./mocking/mockSubscriptionLink", - "pos": 168, - "end": 201, - "resolutionMode": 99 - } + "moduleSpecifier": "./mocking/mockSubscriptionLink", + "pos": 168, + "end": 201, + "resolutionMode": 99, + "trace": [ + "======== Resolving module './mocking/mockSubscriptionLink' from '/node_modules/@apollo/client/testing/core/index.d.ts'. ========", + "Explicitly specified module resolution kind: 'Node16'.", + "Resolving in ESM mode with conditions 'import', 'types', 'node'.", + "Loading module as file / folder, candidate module location '/node_modules/@apollo/client/testing/core/mocking/mockSubscriptionLink', target file types: TypeScript, JavaScript, Declaration, JSON.", + "Directory '/node_modules/@apollo/client/testing/core/mocking/mockSubscriptionLink' does not exist, skipping all lookups in it.", + "======== Module name './mocking/mockSubscriptionLink' was not resolved. ========" + ] }, { "kind": "InternalResolutionError", "resolutionOption": "node16", "fileName": "/node_modules/@apollo/client/testing/core/index.d.ts", - "error": { - "moduleSpecifier": "./mocking/mockClient", - "pos": 235, - "end": 258, - "resolutionMode": 99 - } + "moduleSpecifier": "./mocking/mockClient", + "pos": 235, + "end": 258, + "resolutionMode": 99, + "trace": [ + "======== Resolving module './mocking/mockClient' from '/node_modules/@apollo/client/testing/core/index.d.ts'. ========", + "Explicitly specified module resolution kind: 'Node16'.", + "Resolving in ESM mode with conditions 'import', 'types', 'node'.", + "Loading module as file / folder, candidate module location '/node_modules/@apollo/client/testing/core/mocking/mockClient', target file types: TypeScript, JavaScript, Declaration, JSON.", + "Directory '/node_modules/@apollo/client/testing/core/mocking/mockClient' does not exist, skipping all lookups in it.", + "======== Module name './mocking/mockClient' was not resolved. ========" + ] }, { "kind": "InternalResolutionError", "resolutionOption": "node16", "fileName": "/node_modules/@apollo/client/testing/core/index.d.ts", - "error": { - "moduleSpecifier": "./subscribeAndCount", - "pos": 304, - "end": 326, - "resolutionMode": 99 - } + "moduleSpecifier": "./subscribeAndCount", + "pos": 304, + "end": 326, + "resolutionMode": 99, + "trace": [ + "======== Resolving module './subscribeAndCount' from '/node_modules/@apollo/client/testing/core/index.d.ts'. ========", + "Explicitly specified module resolution kind: 'Node16'.", + "Resolving in ESM mode with conditions 'import', 'types', 'node'.", + "Loading module as file / folder, candidate module location '/node_modules/@apollo/client/testing/core/subscribeAndCount', target file types: TypeScript, JavaScript, Declaration, JSON.", + "Directory '/node_modules/@apollo/client/testing/core/subscribeAndCount' does not exist, skipping all lookups in it.", + "======== Module name './subscribeAndCount' was not resolved. ========" + ] }, { "kind": "InternalResolutionError", "resolutionOption": "node16", "fileName": "/node_modules/@apollo/client/testing/core/index.d.ts", - "error": { - "moduleSpecifier": "./itAsync", - "pos": 351, - "end": 363, - "resolutionMode": 99 - } + "moduleSpecifier": "./itAsync", + "pos": 351, + "end": 363, + "resolutionMode": 99, + "trace": [ + "======== Resolving module './itAsync' from '/node_modules/@apollo/client/testing/core/index.d.ts'. ========", + "Explicitly specified module resolution kind: 'Node16'.", + "Resolving in ESM mode with conditions 'import', 'types', 'node'.", + "Loading module as file / folder, candidate module location '/node_modules/@apollo/client/testing/core/itAsync', target file types: TypeScript, JavaScript, Declaration, JSON.", + "Directory '/node_modules/@apollo/client/testing/core/itAsync' does not exist, skipping all lookups in it.", + "======== Module name './itAsync' was not resolved. ========" + ] }, { "kind": "InternalResolutionError", "resolutionOption": "node16", "fileName": "/node_modules/@apollo/client/testing/core/index.d.ts", - "error": { - "moduleSpecifier": "./wait", - "pos": 391, - "end": 400, - "resolutionMode": 99 - } + "moduleSpecifier": "./wait", + "pos": 391, + "end": 400, + "resolutionMode": 99, + "trace": [ + "======== Resolving module './wait' from '/node_modules/@apollo/client/testing/core/index.d.ts'. ========", + "Explicitly specified module resolution kind: 'Node16'.", + "Resolving in ESM mode with conditions 'import', 'types', 'node'.", + "Loading module as file / folder, candidate module location '/node_modules/@apollo/client/testing/core/wait', target file types: TypeScript, JavaScript, Declaration, JSON.", + "Directory '/node_modules/@apollo/client/testing/core/wait' does not exist, skipping all lookups in it.", + "======== Module name './wait' was not resolved. ========" + ] }, { "kind": "InternalResolutionError", "resolutionOption": "node16", "fileName": "/node_modules/@apollo/client/testing/core/index.d.ts", - "error": { - "moduleSpecifier": "./withConsoleSpy", - "pos": 415, - "end": 434, - "resolutionMode": 99 - } + "moduleSpecifier": "./withConsoleSpy", + "pos": 415, + "end": 434, + "resolutionMode": 99, + "trace": [ + "======== Resolving module './withConsoleSpy' from '/node_modules/@apollo/client/testing/core/index.d.ts'. ========", + "Explicitly specified module resolution kind: 'Node16'.", + "Resolving in ESM mode with conditions 'import', 'types', 'node'.", + "Loading module as file / folder, candidate module location '/node_modules/@apollo/client/testing/core/withConsoleSpy', target file types: TypeScript, JavaScript, Declaration, JSON.", + "Directory '/node_modules/@apollo/client/testing/core/withConsoleSpy' does not exist, skipping all lookups in it.", + "======== Module name './withConsoleSpy' was not resolved. ========" + ] }, { "kind": "InternalResolutionError", "resolutionOption": "node16", "fileName": "/node_modules/@apollo/client/testing/index.d.ts", - "error": { - "moduleSpecifier": "../utilities/globals", - "pos": 6, - "end": 29, - "resolutionMode": 99 - } + "moduleSpecifier": "../utilities/globals", + "pos": 6, + "end": 29, + "resolutionMode": 99, + "trace": [ + "======== Resolving module '../utilities/globals' from '/node_modules/@apollo/client/testing/index.d.ts'. ========", + "Explicitly specified module resolution kind: 'Node16'.", + "Resolving in ESM mode with conditions 'import', 'types', 'node'.", + "Loading module as file / folder, candidate module location '/node_modules/@apollo/client/utilities/globals', target file types: TypeScript, JavaScript, Declaration, JSON.", + "======== Module name '../utilities/globals' was not resolved. ========" + ] }, { "kind": "InternalResolutionError", "resolutionOption": "node16", "fileName": "/node_modules/@apollo/client/testing/index.d.ts", - "error": { - "moduleSpecifier": "./react/MockedProvider", - "pos": 82, - "end": 107, - "resolutionMode": 99 - } + "moduleSpecifier": "./react/MockedProvider", + "pos": 82, + "end": 107, + "resolutionMode": 99, + "trace": [ + "======== Resolving module './react/MockedProvider' from '/node_modules/@apollo/client/testing/index.d.ts'. ========", + "Explicitly specified module resolution kind: 'Node16'.", + "Resolving in ESM mode with conditions 'import', 'types', 'node'.", + "Loading module as file / folder, candidate module location '/node_modules/@apollo/client/testing/react/MockedProvider', target file types: TypeScript, JavaScript, Declaration, JSON.", + "Directory '/node_modules/@apollo/client/testing/react/MockedProvider' does not exist, skipping all lookups in it.", + "======== Module name './react/MockedProvider' was not resolved. ========" + ] }, { "kind": "InternalResolutionError", "resolutionOption": "node16", "fileName": "/node_modules/@apollo/client/testing/index.d.ts", - "error": { - "moduleSpecifier": "./core", - "pos": 122, - "end": 131, - "resolutionMode": 99 - } + "moduleSpecifier": "./core", + "pos": 122, + "end": 131, + "resolutionMode": 99, + "trace": [ + "======== Resolving module './core' from '/node_modules/@apollo/client/testing/index.d.ts'. ========", + "Explicitly specified module resolution kind: 'Node16'.", + "Resolving in ESM mode with conditions 'import', 'types', 'node'.", + "Loading module as file / folder, candidate module location '/node_modules/@apollo/client/testing/core', target file types: TypeScript, JavaScript, Declaration, JSON.", + "======== Module name './core' was not resolved. ========" + ] }, { "kind": "InternalResolutionError", "resolutionOption": "node16", "fileName": "/node_modules/@apollo/client/utilities/globals/index.d.ts", - "error": { - "moduleSpecifier": "./DEV", - "pos": 73, - "end": 81, - "resolutionMode": 99 - } + "moduleSpecifier": "./DEV", + "pos": 73, + "end": 81, + "resolutionMode": 99, + "trace": [ + "======== Resolving module './DEV' from '/node_modules/@apollo/client/utilities/globals/index.d.ts'. ========", + "Explicitly specified module resolution kind: 'Node16'.", + "Resolving in ESM mode with conditions 'import', 'types', 'node'.", + "Loading module as file / folder, candidate module location '/node_modules/@apollo/client/utilities/globals/DEV', target file types: TypeScript, JavaScript, Declaration, JSON.", + "Directory '/node_modules/@apollo/client/utilities/globals/DEV' does not exist, skipping all lookups in it.", + "======== Module name './DEV' was not resolved. ========" + ] }, { "kind": "InternalResolutionError", "resolutionOption": "node16", "fileName": "/node_modules/@apollo/client/utilities/globals/index.d.ts", - "error": { - "moduleSpecifier": "./maybe", - "pos": 162, - "end": 172, - "resolutionMode": 99 - } + "moduleSpecifier": "./maybe", + "pos": 162, + "end": 172, + "resolutionMode": 99, + "trace": [ + "======== Resolving module './maybe' from '/node_modules/@apollo/client/utilities/globals/index.d.ts'. ========", + "Explicitly specified module resolution kind: 'Node16'.", + "Resolving in ESM mode with conditions 'import', 'types', 'node'.", + "Loading module as file / folder, candidate module location '/node_modules/@apollo/client/utilities/globals/maybe', target file types: TypeScript, JavaScript, Declaration, JSON.", + "Directory '/node_modules/@apollo/client/utilities/globals/maybe' does not exist, skipping all lookups in it.", + "======== Module name './maybe' was not resolved. ========" + ] }, { "kind": "InternalResolutionError", "resolutionOption": "node16", "fileName": "/node_modules/@apollo/client/utilities/globals/index.d.ts", - "error": { - "moduleSpecifier": "./global", - "pos": 207, - "end": 218, - "resolutionMode": 99 - } + "moduleSpecifier": "./global", + "pos": 207, + "end": 218, + "resolutionMode": 99, + "trace": [ + "======== Resolving module './global' from '/node_modules/@apollo/client/utilities/globals/index.d.ts'. ========", + "Explicitly specified module resolution kind: 'Node16'.", + "Resolving in ESM mode with conditions 'import', 'types', 'node'.", + "Loading module as file / folder, candidate module location '/node_modules/@apollo/client/utilities/globals/global', target file types: TypeScript, JavaScript, Declaration, JSON.", + "Directory '/node_modules/@apollo/client/utilities/globals/global' does not exist, skipping all lookups in it.", + "======== Module name './global' was not resolved. ========" + ] }, { "kind": "InternalResolutionError", "resolutionOption": "node16", "fileName": "/node_modules/@apollo/client/utilities/index.d.ts", - "error": { - "moduleSpecifier": "./globals", - "pos": 26, - "end": 38, - "resolutionMode": 99 - } + "moduleSpecifier": "./globals", + "pos": 26, + "end": 38, + "resolutionMode": 99, + "trace": [ + "======== Resolving module './globals' from '/node_modules/@apollo/client/utilities/index.d.ts'. ========", + "Explicitly specified module resolution kind: 'Node16'.", + "Resolving in ESM mode with conditions 'import', 'types', 'node'.", + "Loading module as file / folder, candidate module location '/node_modules/@apollo/client/utilities/globals', target file types: TypeScript, JavaScript, Declaration, JSON.", + "======== Module name './globals' was not resolved. ========" + ] }, { "kind": "InternalResolutionError", "resolutionOption": "node16", "fileName": "/node_modules/@apollo/client/utilities/index.d.ts", - "error": { - "moduleSpecifier": "./graphql/directives", - "pos": 218, - "end": 241, - "resolutionMode": 99 - } + "moduleSpecifier": "./graphql/directives", + "pos": 218, + "end": 241, + "resolutionMode": 99, + "trace": [ + "======== Resolving module './graphql/directives' from '/node_modules/@apollo/client/utilities/index.d.ts'. ========", + "Explicitly specified module resolution kind: 'Node16'.", + "Resolving in ESM mode with conditions 'import', 'types', 'node'.", + "Loading module as file / folder, candidate module location '/node_modules/@apollo/client/utilities/graphql/directives', target file types: TypeScript, JavaScript, Declaration, JSON.", + "Directory '/node_modules/@apollo/client/utilities/graphql/directives' does not exist, skipping all lookups in it.", + "======== Module name './graphql/directives' was not resolved. ========" + ] }, { "kind": "InternalResolutionError", "resolutionOption": "node16", "fileName": "/node_modules/@apollo/client/utilities/index.d.ts", - "error": { - "moduleSpecifier": "./graphql/fragments", - "pos": 363, - "end": 385, - "resolutionMode": 99 - } + "moduleSpecifier": "./graphql/fragments", + "pos": 363, + "end": 385, + "resolutionMode": 99, + "trace": [ + "======== Resolving module './graphql/fragments' from '/node_modules/@apollo/client/utilities/index.d.ts'. ========", + "Explicitly specified module resolution kind: 'Node16'.", + "Resolving in ESM mode with conditions 'import', 'types', 'node'.", + "Loading module as file / folder, candidate module location '/node_modules/@apollo/client/utilities/graphql/fragments', target file types: TypeScript, JavaScript, Declaration, JSON.", + "Directory '/node_modules/@apollo/client/utilities/graphql/fragments' does not exist, skipping all lookups in it.", + "======== Module name './graphql/fragments' was not resolved. ========" + ] }, { "kind": "InternalResolutionError", "resolutionOption": "node16", "fileName": "/node_modules/@apollo/client/utilities/index.d.ts", - "error": { - "moduleSpecifier": "./graphql/getFromAST", - "pos": 563, - "end": 586, - "resolutionMode": 99 - } + "moduleSpecifier": "./graphql/getFromAST", + "pos": 563, + "end": 586, + "resolutionMode": 99, + "trace": [ + "======== Resolving module './graphql/getFromAST' from '/node_modules/@apollo/client/utilities/index.d.ts'. ========", + "Explicitly specified module resolution kind: 'Node16'.", + "Resolving in ESM mode with conditions 'import', 'types', 'node'.", + "Loading module as file / folder, candidate module location '/node_modules/@apollo/client/utilities/graphql/getFromAST', target file types: TypeScript, JavaScript, Declaration, JSON.", + "Directory '/node_modules/@apollo/client/utilities/graphql/getFromAST' does not exist, skipping all lookups in it.", + "======== Module name './graphql/getFromAST' was not resolved. ========" + ] }, { "kind": "InternalResolutionError", "resolutionOption": "node16", "fileName": "/node_modules/@apollo/client/utilities/index.d.ts", - "error": { - "moduleSpecifier": "./graphql/storeUtils", - "pos": 879, - "end": 902, - "resolutionMode": 99 - } + "moduleSpecifier": "./graphql/storeUtils", + "pos": 879, + "end": 902, + "resolutionMode": 99, + "trace": [ + "======== Resolving module './graphql/storeUtils' from '/node_modules/@apollo/client/utilities/index.d.ts'. ========", + "Explicitly specified module resolution kind: 'Node16'.", + "Resolving in ESM mode with conditions 'import', 'types', 'node'.", + "Loading module as file / folder, candidate module location '/node_modules/@apollo/client/utilities/graphql/storeUtils', target file types: TypeScript, JavaScript, Declaration, JSON.", + "Directory '/node_modules/@apollo/client/utilities/graphql/storeUtils' does not exist, skipping all lookups in it.", + "======== Module name './graphql/storeUtils' was not resolved. ========" + ] }, { "kind": "InternalResolutionError", "resolutionOption": "node16", "fileName": "/node_modules/@apollo/client/utilities/index.d.ts", - "error": { - "moduleSpecifier": "./graphql/transform", - "pos": 1348, - "end": 1370, - "resolutionMode": 99 - } + "moduleSpecifier": "./graphql/transform", + "pos": 1348, + "end": 1370, + "resolutionMode": 99, + "trace": [ + "======== Resolving module './graphql/transform' from '/node_modules/@apollo/client/utilities/index.d.ts'. ========", + "Explicitly specified module resolution kind: 'Node16'.", + "Resolving in ESM mode with conditions 'import', 'types', 'node'.", + "Loading module as file / folder, candidate module location '/node_modules/@apollo/client/utilities/graphql/transform', target file types: TypeScript, JavaScript, Declaration, JSON.", + "Directory '/node_modules/@apollo/client/utilities/graphql/transform' does not exist, skipping all lookups in it.", + "======== Module name './graphql/transform' was not resolved. ========" + ] }, { "kind": "InternalResolutionError", "resolutionOption": "node16", "fileName": "/node_modules/@apollo/client/utilities/index.d.ts", - "error": { - "moduleSpecifier": "./policies/pagination", - "pos": 1450, - "end": 1474, - "resolutionMode": 99 - } + "moduleSpecifier": "./policies/pagination", + "pos": 1450, + "end": 1474, + "resolutionMode": 99, + "trace": [ + "======== Resolving module './policies/pagination' from '/node_modules/@apollo/client/utilities/index.d.ts'. ========", + "Explicitly specified module resolution kind: 'Node16'.", + "Resolving in ESM mode with conditions 'import', 'types', 'node'.", + "Loading module as file / folder, candidate module location '/node_modules/@apollo/client/utilities/policies/pagination', target file types: TypeScript, JavaScript, Declaration, JSON.", + "Directory '/node_modules/@apollo/client/utilities/policies/pagination' does not exist, skipping all lookups in it.", + "======== Module name './policies/pagination' was not resolved. ========" + ] }, { "kind": "InternalResolutionError", "resolutionOption": "node16", "fileName": "/node_modules/@apollo/client/utilities/index.d.ts", - "error": { - "moduleSpecifier": "./observables/Observable", - "pos": 1536, - "end": 1563, - "resolutionMode": 99 - } + "moduleSpecifier": "./observables/Observable", + "pos": 1536, + "end": 1563, + "resolutionMode": 99, + "trace": [ + "======== Resolving module './observables/Observable' from '/node_modules/@apollo/client/utilities/index.d.ts'. ========", + "Explicitly specified module resolution kind: 'Node16'.", + "Resolving in ESM mode with conditions 'import', 'types', 'node'.", + "Loading module as file / folder, candidate module location '/node_modules/@apollo/client/utilities/observables/Observable', target file types: TypeScript, JavaScript, Declaration, JSON.", + "Directory '/node_modules/@apollo/client/utilities/observables/Observable' does not exist, skipping all lookups in it.", + "======== Module name './observables/Observable' was not resolved. ========" + ] }, { "kind": "InternalResolutionError", "resolutionOption": "node16", "fileName": "/node_modules/@apollo/client/utilities/index.d.ts", - "error": { - "moduleSpecifier": "./common/mergeDeep", - "pos": 1578, - "end": 1599, - "resolutionMode": 99 - } + "moduleSpecifier": "./common/mergeDeep", + "pos": 1578, + "end": 1599, + "resolutionMode": 99, + "trace": [ + "======== Resolving module './common/mergeDeep' from '/node_modules/@apollo/client/utilities/index.d.ts'. ========", + "Explicitly specified module resolution kind: 'Node16'.", + "Resolving in ESM mode with conditions 'import', 'types', 'node'.", + "Loading module as file / folder, candidate module location '/node_modules/@apollo/client/utilities/common/mergeDeep', target file types: TypeScript, JavaScript, Declaration, JSON.", + "Directory '/node_modules/@apollo/client/utilities/common/mergeDeep' does not exist, skipping all lookups in it.", + "======== Module name './common/mergeDeep' was not resolved. ========" + ] }, { "kind": "InternalResolutionError", "resolutionOption": "node16", "fileName": "/node_modules/@apollo/client/utilities/index.d.ts", - "error": { - "moduleSpecifier": "./common/cloneDeep", - "pos": 1614, - "end": 1635, - "resolutionMode": 99 - } + "moduleSpecifier": "./common/cloneDeep", + "pos": 1614, + "end": 1635, + "resolutionMode": 99, + "trace": [ + "======== Resolving module './common/cloneDeep' from '/node_modules/@apollo/client/utilities/index.d.ts'. ========", + "Explicitly specified module resolution kind: 'Node16'.", + "Resolving in ESM mode with conditions 'import', 'types', 'node'.", + "Loading module as file / folder, candidate module location '/node_modules/@apollo/client/utilities/common/cloneDeep', target file types: TypeScript, JavaScript, Declaration, JSON.", + "Directory '/node_modules/@apollo/client/utilities/common/cloneDeep' does not exist, skipping all lookups in it.", + "======== Module name './common/cloneDeep' was not resolved. ========" + ] }, { "kind": "InternalResolutionError", "resolutionOption": "node16", "fileName": "/node_modules/@apollo/client/utilities/index.d.ts", - "error": { - "moduleSpecifier": "./common/maybeDeepFreeze", - "pos": 1650, - "end": 1677, - "resolutionMode": 99 - } + "moduleSpecifier": "./common/maybeDeepFreeze", + "pos": 1650, + "end": 1677, + "resolutionMode": 99, + "trace": [ + "======== Resolving module './common/maybeDeepFreeze' from '/node_modules/@apollo/client/utilities/index.d.ts'. ========", + "Explicitly specified module resolution kind: 'Node16'.", + "Resolving in ESM mode with conditions 'import', 'types', 'node'.", + "Loading module as file / folder, candidate module location '/node_modules/@apollo/client/utilities/common/maybeDeepFreeze', target file types: TypeScript, JavaScript, Declaration, JSON.", + "Directory '/node_modules/@apollo/client/utilities/common/maybeDeepFreeze' does not exist, skipping all lookups in it.", + "======== Module name './common/maybeDeepFreeze' was not resolved. ========" + ] }, { "kind": "InternalResolutionError", "resolutionOption": "node16", "fileName": "/node_modules/@apollo/client/utilities/index.d.ts", - "error": { - "moduleSpecifier": "./observables/iteration", - "pos": 1692, - "end": 1718, - "resolutionMode": 99 - } + "moduleSpecifier": "./observables/iteration", + "pos": 1692, + "end": 1718, + "resolutionMode": 99, + "trace": [ + "======== Resolving module './observables/iteration' from '/node_modules/@apollo/client/utilities/index.d.ts'. ========", + "Explicitly specified module resolution kind: 'Node16'.", + "Resolving in ESM mode with conditions 'import', 'types', 'node'.", + "Loading module as file / folder, candidate module location '/node_modules/@apollo/client/utilities/observables/iteration', target file types: TypeScript, JavaScript, Declaration, JSON.", + "Directory '/node_modules/@apollo/client/utilities/observables/iteration' does not exist, skipping all lookups in it.", + "======== Module name './observables/iteration' was not resolved. ========" + ] }, { "kind": "InternalResolutionError", "resolutionOption": "node16", "fileName": "/node_modules/@apollo/client/utilities/index.d.ts", - "error": { - "moduleSpecifier": "./observables/asyncMap", - "pos": 1733, - "end": 1758, - "resolutionMode": 99 - } + "moduleSpecifier": "./observables/asyncMap", + "pos": 1733, + "end": 1758, + "resolutionMode": 99, + "trace": [ + "======== Resolving module './observables/asyncMap' from '/node_modules/@apollo/client/utilities/index.d.ts'. ========", + "Explicitly specified module resolution kind: 'Node16'.", + "Resolving in ESM mode with conditions 'import', 'types', 'node'.", + "Loading module as file / folder, candidate module location '/node_modules/@apollo/client/utilities/observables/asyncMap', target file types: TypeScript, JavaScript, Declaration, JSON.", + "Directory '/node_modules/@apollo/client/utilities/observables/asyncMap' does not exist, skipping all lookups in it.", + "======== Module name './observables/asyncMap' was not resolved. ========" + ] }, { "kind": "InternalResolutionError", "resolutionOption": "node16", "fileName": "/node_modules/@apollo/client/utilities/index.d.ts", - "error": { - "moduleSpecifier": "./observables/Concast", - "pos": 1773, - "end": 1797, - "resolutionMode": 99 - } + "moduleSpecifier": "./observables/Concast", + "pos": 1773, + "end": 1797, + "resolutionMode": 99, + "trace": [ + "======== Resolving module './observables/Concast' from '/node_modules/@apollo/client/utilities/index.d.ts'. ========", + "Explicitly specified module resolution kind: 'Node16'.", + "Resolving in ESM mode with conditions 'import', 'types', 'node'.", + "Loading module as file / folder, candidate module location '/node_modules/@apollo/client/utilities/observables/Concast', target file types: TypeScript, JavaScript, Declaration, JSON.", + "Directory '/node_modules/@apollo/client/utilities/observables/Concast' does not exist, skipping all lookups in it.", + "======== Module name './observables/Concast' was not resolved. ========" + ] }, { "kind": "InternalResolutionError", "resolutionOption": "node16", "fileName": "/node_modules/@apollo/client/utilities/index.d.ts", - "error": { - "moduleSpecifier": "./observables/subclassing", - "pos": 1812, - "end": 1840, - "resolutionMode": 99 - } + "moduleSpecifier": "./observables/subclassing", + "pos": 1812, + "end": 1840, + "resolutionMode": 99, + "trace": [ + "======== Resolving module './observables/subclassing' from '/node_modules/@apollo/client/utilities/index.d.ts'. ========", + "Explicitly specified module resolution kind: 'Node16'.", + "Resolving in ESM mode with conditions 'import', 'types', 'node'.", + "Loading module as file / folder, candidate module location '/node_modules/@apollo/client/utilities/observables/subclassing', target file types: TypeScript, JavaScript, Declaration, JSON.", + "Directory '/node_modules/@apollo/client/utilities/observables/subclassing' does not exist, skipping all lookups in it.", + "======== Module name './observables/subclassing' was not resolved. ========" + ] }, { "kind": "InternalResolutionError", "resolutionOption": "node16", "fileName": "/node_modules/@apollo/client/utilities/index.d.ts", - "error": { - "moduleSpecifier": "./common/arrays", - "pos": 1855, - "end": 1873, - "resolutionMode": 99 - } + "moduleSpecifier": "./common/arrays", + "pos": 1855, + "end": 1873, + "resolutionMode": 99, + "trace": [ + "======== Resolving module './common/arrays' from '/node_modules/@apollo/client/utilities/index.d.ts'. ========", + "Explicitly specified module resolution kind: 'Node16'.", + "Resolving in ESM mode with conditions 'import', 'types', 'node'.", + "Loading module as file / folder, candidate module location '/node_modules/@apollo/client/utilities/common/arrays', target file types: TypeScript, JavaScript, Declaration, JSON.", + "Directory '/node_modules/@apollo/client/utilities/common/arrays' does not exist, skipping all lookups in it.", + "======== Module name './common/arrays' was not resolved. ========" + ] }, { "kind": "InternalResolutionError", "resolutionOption": "node16", "fileName": "/node_modules/@apollo/client/utilities/index.d.ts", - "error": { - "moduleSpecifier": "./common/objects", - "pos": 1888, - "end": 1907, - "resolutionMode": 99 - } + "moduleSpecifier": "./common/objects", + "pos": 1888, + "end": 1907, + "resolutionMode": 99, + "trace": [ + "======== Resolving module './common/objects' from '/node_modules/@apollo/client/utilities/index.d.ts'. ========", + "Explicitly specified module resolution kind: 'Node16'.", + "Resolving in ESM mode with conditions 'import', 'types', 'node'.", + "Loading module as file / folder, candidate module location '/node_modules/@apollo/client/utilities/common/objects', target file types: TypeScript, JavaScript, Declaration, JSON.", + "Directory '/node_modules/@apollo/client/utilities/common/objects' does not exist, skipping all lookups in it.", + "======== Module name './common/objects' was not resolved. ========" + ] }, { "kind": "InternalResolutionError", "resolutionOption": "node16", "fileName": "/node_modules/@apollo/client/utilities/index.d.ts", - "error": { - "moduleSpecifier": "./common/errorHandling", - "pos": 1922, - "end": 1947, - "resolutionMode": 99 - } + "moduleSpecifier": "./common/errorHandling", + "pos": 1922, + "end": 1947, + "resolutionMode": 99, + "trace": [ + "======== Resolving module './common/errorHandling' from '/node_modules/@apollo/client/utilities/index.d.ts'. ========", + "Explicitly specified module resolution kind: 'Node16'.", + "Resolving in ESM mode with conditions 'import', 'types', 'node'.", + "Loading module as file / folder, candidate module location '/node_modules/@apollo/client/utilities/common/errorHandling', target file types: TypeScript, JavaScript, Declaration, JSON.", + "Directory '/node_modules/@apollo/client/utilities/common/errorHandling' does not exist, skipping all lookups in it.", + "======== Module name './common/errorHandling' was not resolved. ========" + ] }, { "kind": "InternalResolutionError", "resolutionOption": "node16", "fileName": "/node_modules/@apollo/client/utilities/index.d.ts", - "error": { - "moduleSpecifier": "./common/canUse", - "pos": 1962, - "end": 1980, - "resolutionMode": 99 - } + "moduleSpecifier": "./common/canUse", + "pos": 1962, + "end": 1980, + "resolutionMode": 99, + "trace": [ + "======== Resolving module './common/canUse' from '/node_modules/@apollo/client/utilities/index.d.ts'. ========", + "Explicitly specified module resolution kind: 'Node16'.", + "Resolving in ESM mode with conditions 'import', 'types', 'node'.", + "Loading module as file / folder, candidate module location '/node_modules/@apollo/client/utilities/common/canUse', target file types: TypeScript, JavaScript, Declaration, JSON.", + "Directory '/node_modules/@apollo/client/utilities/common/canUse' does not exist, skipping all lookups in it.", + "======== Module name './common/canUse' was not resolved. ========" + ] }, { "kind": "InternalResolutionError", "resolutionOption": "node16", "fileName": "/node_modules/@apollo/client/utilities/index.d.ts", - "error": { - "moduleSpecifier": "./common/compact", - "pos": 1995, - "end": 2014, - "resolutionMode": 99 - } + "moduleSpecifier": "./common/compact", + "pos": 1995, + "end": 2014, + "resolutionMode": 99, + "trace": [ + "======== Resolving module './common/compact' from '/node_modules/@apollo/client/utilities/index.d.ts'. ========", + "Explicitly specified module resolution kind: 'Node16'.", + "Resolving in ESM mode with conditions 'import', 'types', 'node'.", + "Loading module as file / folder, candidate module location '/node_modules/@apollo/client/utilities/common/compact', target file types: TypeScript, JavaScript, Declaration, JSON.", + "Directory '/node_modules/@apollo/client/utilities/common/compact' does not exist, skipping all lookups in it.", + "======== Module name './common/compact' was not resolved. ========" + ] }, { "kind": "InternalResolutionError", "resolutionOption": "node16", "fileName": "/node_modules/@apollo/client/utilities/index.d.ts", - "error": { - "moduleSpecifier": "./common/makeUniqueId", - "pos": 2029, - "end": 2053, - "resolutionMode": 99 - } + "moduleSpecifier": "./common/makeUniqueId", + "pos": 2029, + "end": 2053, + "resolutionMode": 99, + "trace": [ + "======== Resolving module './common/makeUniqueId' from '/node_modules/@apollo/client/utilities/index.d.ts'. ========", + "Explicitly specified module resolution kind: 'Node16'.", + "Resolving in ESM mode with conditions 'import', 'types', 'node'.", + "Loading module as file / folder, candidate module location '/node_modules/@apollo/client/utilities/common/makeUniqueId', target file types: TypeScript, JavaScript, Declaration, JSON.", + "Directory '/node_modules/@apollo/client/utilities/common/makeUniqueId' does not exist, skipping all lookups in it.", + "======== Module name './common/makeUniqueId' was not resolved. ========" + ] }, { "kind": "InternalResolutionError", "resolutionOption": "node16", "fileName": "/node_modules/@apollo/client/utilities/index.d.ts", - "error": { - "moduleSpecifier": "./common/stringifyForDisplay", - "pos": 2068, - "end": 2099, - "resolutionMode": 99 - } + "moduleSpecifier": "./common/stringifyForDisplay", + "pos": 2068, + "end": 2099, + "resolutionMode": 99, + "trace": [ + "======== Resolving module './common/stringifyForDisplay' from '/node_modules/@apollo/client/utilities/index.d.ts'. ========", + "Explicitly specified module resolution kind: 'Node16'.", + "Resolving in ESM mode with conditions 'import', 'types', 'node'.", + "Loading module as file / folder, candidate module location '/node_modules/@apollo/client/utilities/common/stringifyForDisplay', target file types: TypeScript, JavaScript, Declaration, JSON.", + "Directory '/node_modules/@apollo/client/utilities/common/stringifyForDisplay' does not exist, skipping all lookups in it.", + "======== Module name './common/stringifyForDisplay' was not resolved. ========" + ] }, { "kind": "InternalResolutionError", "resolutionOption": "node16", "fileName": "/node_modules/@apollo/client/utilities/index.d.ts", - "error": { - "moduleSpecifier": "./common/mergeOptions", - "pos": 2114, - "end": 2138, - "resolutionMode": 99 - } + "moduleSpecifier": "./common/mergeOptions", + "pos": 2114, + "end": 2138, + "resolutionMode": 99, + "trace": [ + "======== Resolving module './common/mergeOptions' from '/node_modules/@apollo/client/utilities/index.d.ts'. ========", + "Explicitly specified module resolution kind: 'Node16'.", + "Resolving in ESM mode with conditions 'import', 'types', 'node'.", + "Loading module as file / folder, candidate module location '/node_modules/@apollo/client/utilities/common/mergeOptions', target file types: TypeScript, JavaScript, Declaration, JSON.", + "Directory '/node_modules/@apollo/client/utilities/common/mergeOptions' does not exist, skipping all lookups in it.", + "======== Module name './common/mergeOptions' was not resolved. ========" + ] }, { "kind": "InternalResolutionError", "resolutionOption": "node16", "fileName": "/node_modules/@apollo/client/utilities/index.d.ts", - "error": { - "moduleSpecifier": "./types/IsStrictlyAny", - "pos": 2153, - "end": 2177, - "resolutionMode": 99 - } + "moduleSpecifier": "./types/IsStrictlyAny", + "pos": 2153, + "end": 2177, + "resolutionMode": 99, + "trace": [ + "======== Resolving module './types/IsStrictlyAny' from '/node_modules/@apollo/client/utilities/index.d.ts'. ========", + "Explicitly specified module resolution kind: 'Node16'.", + "Resolving in ESM mode with conditions 'import', 'types', 'node'.", + "Loading module as file / folder, candidate module location '/node_modules/@apollo/client/utilities/types/IsStrictlyAny', target file types: TypeScript, JavaScript, Declaration, JSON.", + "Directory '/node_modules/@apollo/client/utilities/types/IsStrictlyAny' does not exist, skipping all lookups in it.", + "======== Module name './types/IsStrictlyAny' was not resolved. ========" + ] } ] ``` \ No newline at end of file