testeranto 0.189.0 → 0.197.0
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- package/ALL_LICENSES.txt +11246 -0
- package/LICENSE +21 -0
- package/default-project.json +44 -0
- package/design-editor/DesignEditor.tsx +247 -0
- package/design-editor/index.ts +2 -0
- package/design-editor/server.ts +121 -0
- package/design-editor/types.ts +16 -0
- package/designs/default-project.json +210 -0
- package/dist/common/design-editor/DesignEditor.js +239 -0
- package/dist/common/design-editor/index.js +18 -0
- package/dist/common/design-editor/server.js +98 -0
- package/dist/common/design-editor/types.js +2 -0
- package/dist/common/src/App.js +11 -1
- package/dist/common/src/PM/PM_WithEslintAndTsc.js +8 -1
- package/dist/common/src/PM/base.js +1 -0
- package/dist/common/src/PM/main.js +370 -4
- package/dist/common/src/PM/node.js +4 -2
- package/dist/common/src/PM/pure.js +15 -57
- package/dist/common/src/PM/web.js +5 -3
- package/dist/common/src/Pure.test.js +46 -78
- package/dist/common/src/ReportServer.js +8 -2
- package/dist/common/src/build.js +1 -1
- package/dist/common/src/components/DesignEditorPage.js +169 -0
- package/dist/common/src/components/pure/AppFrame.js +62 -13
- package/dist/common/src/components/pure/ModalContent.test/implementation.js +13 -11
- package/dist/common/src/components/pure/ModalContent.test/index.js +48 -2
- package/dist/common/src/components/pure/ModalContent.test/specification.js +2 -2
- package/dist/common/src/components/pure/NavBar.js +9 -10
- package/dist/common/src/components/pure/ProcessManager.js +112 -0
- package/dist/common/src/components/pure/ProcessManagerView.js +237 -0
- package/dist/common/src/components/pure/ProjectPageView.test/implementation.js +134 -106
- package/dist/common/src/components/pure/ProjectsPageView.js +18 -12
- package/dist/common/src/components/pure/SettingsButton.js +4 -74
- package/dist/common/src/components/pure/SingleProcessView.js +214 -0
- package/dist/common/src/components/pure/TestPageView.js +457 -78
- package/dist/common/src/components/pure/TestPageView.test/implementation.js +90 -135
- package/dist/common/src/components/stateful/FeaturesReporter.js +1 -1
- package/dist/common/src/components/stateful/FileTree.js +40 -0
- package/dist/common/src/components/stateful/ProcessManagerPage.js +112 -0
- package/dist/common/src/components/stateful/ProjectPage.js +6 -5
- package/dist/common/src/components/stateful/ProjectsPage.js +32 -6
- package/dist/common/src/components/stateful/SettingsPage.js +72 -0
- package/dist/common/src/components/stateful/SingleProcessPage.js +147 -0
- package/dist/common/src/components/stateful/TestPage.js +104 -8
- package/dist/common/src/components/stateful/TextEditorPage.js +154 -0
- package/dist/common/src/esbuildConfigs/inputFilesPlugin.js +3 -4
- package/dist/common/src/lib/BaseSuite.js +6 -3
- package/dist/common/src/lib/BaseSuite.test/mock.js +17 -30
- package/dist/common/src/lib/BaseSuite.test/test.js +33 -31
- package/dist/common/src/lib/abstractBase.js +28 -8
- package/dist/common/src/lib/baseBuilder.test/baseBuilder.test.adapter.js +12 -6
- package/dist/common/src/lib/baseBuilder.test/baseBuilder.test.implementation.js +12 -12
- package/dist/common/src/lib/basebuilder.js +1 -9
- package/dist/common/src/lib/classBuilder.js +3 -3
- package/dist/common/src/lib/core.js +3 -5
- package/dist/common/src/lib/index.js +11 -14
- package/dist/common/src/lib/pmProxy.js +37 -14
- package/dist/common/src/lib/pmProxy.test/adapter.js +12 -2
- package/dist/common/src/lib/pmProxy.test/implementation.js +73 -43
- package/dist/common/src/lib/pmProxy.test/specification.js +3 -0
- package/dist/common/src/utils/api.js +44 -33
- package/dist/common/src/utils/logFiles.js +48 -22
- package/dist/common/src/utils/makePrompt.js +5 -4
- package/dist/common/testeranto.config.js +15 -13
- package/dist/common/tsconfig.common.tsbuildinfo +1 -1
- package/dist/module/design-editor/DesignEditor.js +203 -0
- package/dist/module/design-editor/index.js +2 -0
- package/dist/module/design-editor/server.js +92 -0
- package/dist/module/src/App.js +11 -1
- package/dist/module/src/PM/PM_WithEslintAndTsc.js +8 -1
- package/dist/module/src/PM/base.js +1 -0
- package/dist/module/src/PM/main.js +370 -4
- package/dist/module/src/PM/node.js +4 -2
- package/dist/module/src/PM/pure.js +15 -57
- package/dist/module/src/PM/web.js +5 -3
- package/dist/module/src/Pure.test.js +46 -78
- package/dist/module/src/ReportServer.js +8 -2
- package/dist/module/src/build.js +1 -1
- package/dist/module/src/components/DesignEditorPage.js +132 -0
- package/dist/module/src/components/pure/AppFrame.js +30 -11
- package/dist/module/src/components/pure/ModalContent.test/implementation.js +13 -11
- package/dist/module/src/components/pure/ModalContent.test/index.js +48 -2
- package/dist/module/src/components/pure/ModalContent.test/specification.js +2 -2
- package/dist/module/src/components/pure/NavBar.js +10 -11
- package/dist/module/src/components/pure/ProcessManager.js +75 -0
- package/dist/module/src/components/pure/ProcessManagerView.js +200 -0
- package/dist/module/src/components/pure/ProjectPageView.test/implementation.js +134 -106
- package/dist/module/src/components/pure/ProjectsPageView.js +20 -14
- package/dist/module/src/components/pure/SettingsButton.js +5 -42
- package/dist/module/src/components/pure/SingleProcessView.js +214 -0
- package/dist/module/src/components/pure/TestPageView.js +425 -76
- package/dist/module/src/components/pure/TestPageView.test/implementation.js +90 -135
- package/dist/module/src/components/stateful/FeaturesReporter.js +1 -1
- package/dist/module/src/components/stateful/FileTree.js +33 -0
- package/dist/module/src/components/stateful/ProcessManagerPage.js +75 -0
- package/dist/module/src/components/stateful/ProjectPage.js +6 -5
- package/dist/module/src/components/stateful/ProjectsPage.js +32 -6
- package/dist/module/src/components/stateful/SettingsPage.js +35 -0
- package/dist/module/src/components/stateful/SingleProcessPage.js +110 -0
- package/dist/module/src/components/stateful/TestPage.js +104 -8
- package/dist/module/src/components/stateful/TextEditorPage.js +117 -0
- package/dist/module/src/esbuildConfigs/inputFilesPlugin.js +3 -4
- package/dist/module/src/lib/BaseSuite.js +6 -3
- package/dist/module/src/lib/BaseSuite.test/mock.js +17 -30
- package/dist/module/src/lib/BaseSuite.test/test.js +33 -31
- package/dist/module/src/lib/abstractBase.js +28 -8
- package/dist/module/src/lib/baseBuilder.test/baseBuilder.test.adapter.js +12 -6
- package/dist/module/src/lib/baseBuilder.test/baseBuilder.test.implementation.js +12 -12
- package/dist/module/src/lib/basebuilder.js +1 -9
- package/dist/module/src/lib/classBuilder.js +3 -3
- package/dist/module/src/lib/core.js +3 -5
- package/dist/module/src/lib/index.js +11 -14
- package/dist/module/src/lib/pmProxy.js +37 -14
- package/dist/module/src/lib/pmProxy.test/adapter.js +12 -2
- package/dist/module/src/lib/pmProxy.test/implementation.js +73 -43
- package/dist/module/src/lib/pmProxy.test/specification.js +3 -0
- package/dist/module/src/utils/api.js +45 -34
- package/dist/module/src/utils/logFiles.js +45 -20
- package/dist/module/src/utils/makePrompt.js +5 -4
- package/dist/module/testeranto.config.js +15 -13
- package/dist/module/tsconfig.module.tsbuildinfo +1 -1
- package/dist/prebuild/App.css +54 -513
- package/dist/prebuild/App.js +13296 -2438
- package/dist/prebuild/ReportServer.mjs +104 -6
- package/dist/prebuild/build.mjs +8 -5
- package/dist/prebuild/run.mjs +389 -37
- package/dist/types/design-editor/DesignEditor.d.ts +18 -0
- package/dist/types/design-editor/server.d.ts +1 -0
- package/dist/types/{PM → src/PM}/index.d.ts +1 -1
- package/dist/types/{PM → src/PM}/main.d.ts +19 -0
- package/dist/types/{PM → src/PM}/pure.d.ts +7 -7
- package/dist/types/{Pure.test.d.ts → src/Pure.test.d.ts} +13 -1
- package/dist/types/src/components/DesignEditorPage.d.ts +1 -0
- package/dist/types/{components → src/components}/pure/AppFrame.d.ts +3 -1
- package/dist/types/{components/pure/ProjectPageView.test → src/components/pure/ModalContent.test}/index.d.ts +2 -1
- package/dist/types/{components → src/components}/pure/NavBar.d.ts +4 -0
- package/dist/types/src/components/pure/ProcessManager.d.ts +8 -0
- package/dist/types/src/components/pure/ProcessManagerView.d.ts +20 -0
- package/dist/types/{components → src/components}/pure/ProjectsPageView.d.ts +1 -1
- package/dist/types/src/components/pure/SettingsButton.d.ts +2 -0
- package/dist/types/{components → src/components}/pure/TestPageView.test/implementation.d.ts +3 -2
- package/dist/types/src/components/pure/TestPageView.test/index.d.ts +3 -0
- package/dist/types/src/components/stateful/FileTree.d.ts +8 -0
- package/dist/types/src/components/stateful/ProcessManagerPage.d.ts +2 -0
- package/dist/types/src/components/stateful/SettingsPage.d.ts +2 -0
- package/dist/types/src/components/stateful/SingleProcessPage.d.ts +2 -0
- package/dist/types/src/components/stateful/TextEditorPage.d.ts +1 -0
- package/dist/types/{lib → src/lib}/BaseSuite.test/mock.d.ts +3 -3
- package/dist/types/{lib → src/lib}/basebuilder.d.ts +1 -1
- package/dist/types/{lib → src/lib}/index.d.ts +1 -1
- package/dist/types/{lib → src/lib}/pmProxy.test/mockPMBase.d.ts +1 -1
- package/dist/types/src/run.d.ts +1 -0
- package/dist/types/src/utils/logFiles.d.ts +71 -0
- package/dist/types/tsconfig.types.tsbuildinfo +1 -1
- package/docs/test-page-components.md +91 -0
- package/package.json +27 -8
- package/src/App.tsx +11 -0
- package/src/PM/PM_WithEslintAndTsc.ts +9 -4
- package/src/PM/base.ts +1 -0
- package/src/PM/index.ts +1 -1
- package/src/PM/main.ts +424 -8
- package/src/PM/node.ts +5 -2
- package/src/PM/pure.ts +23 -61
- package/src/PM/web.ts +7 -3
- package/src/Pure.test.ts +63 -99
- package/src/README.md +20 -1
- package/src/ReportServer.ts +10 -3
- package/src/app.scss +169 -0
- package/src/build.ts +5 -1
- package/src/components/DesignEditorPage.tsx +169 -0
- package/src/components/pure/AppFrame.tsx +121 -16
- package/src/components/pure/ModalContent.test/implementation.tsx +14 -12
- package/src/components/pure/ModalContent.test/index.tsx +58 -6
- package/src/components/pure/ModalContent.test/specification.ts +2 -2
- package/src/components/pure/NavBar.tsx +31 -15
- package/src/components/pure/ProcessManager.tsx +117 -0
- package/src/components/pure/ProcessManagerView.tsx +414 -0
- package/src/components/pure/ProjectPageView.test/implementation.tsx +136 -106
- package/src/components/pure/ProjectPageView.test/index.tsx +0 -2
- package/src/components/pure/ProjectsPageView.tsx +41 -31
- package/src/components/pure/SettingsButton.tsx +7 -62
- package/src/components/pure/SingleProcessView.tsx +235 -0
- package/src/components/pure/TestPageView.test/implementation.ts +115 -147
- package/src/components/pure/TestPageView.test/specification.ts +0 -1
- package/src/components/pure/TestPageView.tsx +821 -100
- package/src/components/stateful/FeaturesReporter.tsx +1 -1
- package/src/components/stateful/FileTree.tsx +66 -0
- package/src/components/stateful/ProcessManagerPage.tsx +108 -0
- package/src/components/stateful/ProjectPage.tsx +6 -5
- package/src/components/stateful/ProjectsPage.tsx +36 -7
- package/src/components/stateful/SettingsPage.tsx +82 -0
- package/src/components/stateful/SingleProcessPage.tsx +155 -0
- package/src/components/stateful/TestPage.tsx +128 -20
- package/src/components/stateful/TextEditorPage.tsx +170 -0
- package/src/esbuildConfigs/inputFilesPlugin.ts +3 -4
- package/src/lib/BaseSuite.test/mock.ts +20 -41
- package/src/lib/BaseSuite.test/test.ts +38 -42
- package/src/lib/BaseSuite.ts +6 -3
- package/src/lib/abstractBase.ts +33 -14
- package/src/lib/baseBuilder.test/baseBuilder.test.adapter.ts +14 -7
- package/src/lib/baseBuilder.test/baseBuilder.test.implementation.ts +15 -14
- package/src/lib/basebuilder.ts +4 -9
- package/src/lib/classBuilder.ts +8 -10
- package/src/lib/core.ts +3 -19
- package/src/lib/index.ts +19 -19
- package/src/lib/pmProxy.test/adapter.ts +10 -2
- package/src/lib/pmProxy.test/implementation.ts +108 -57
- package/src/lib/pmProxy.test/mockPMBase.ts +1 -1
- package/src/lib/pmProxy.test/specification.ts +11 -0
- package/src/lib/pmProxy.ts +40 -15
- package/src/style.scss +3 -502
- package/src/templates/frontpage.html +317 -40
- package/src/templates/frontpage.md +79 -0
- package/src/themes.scss +40 -8
- package/src/utils/api.ts +47 -44
- package/src/utils/logFiles.ts +57 -23
- package/src/utils/makePrompt.ts +5 -4
- package/stargazers.txt +15 -0
- package/stargzers.js +68 -0
- package/testeranto/App.css +54 -513
- package/testeranto/App.js +13296 -2438
- package/testeranto/bundles/node/core/{chunk-L67RWZ4W.mjs → chunk-4CSH4UJE.mjs} +89 -116
- package/testeranto/bundles/node/core/{chunk-JBB5E3XJ.mjs → chunk-4JTDLQVA.mjs} +4 -9
- package/testeranto/bundles/node/core/chunk-C3APFDUV.mjs +70 -0
- package/testeranto/bundles/node/core/src/lib/BaseSuite.test/node.test.mjs +30 -42
- package/testeranto/bundles/node/core/src/lib/baseBuilder.test/baseBuilder.test.node.mjs +27 -31
- package/testeranto/bundles/node/core/src/lib/classBuilder.test/classBuilder.test.mjs +4 -16
- package/testeranto/bundles/node/core/src/lib/core.test/core.test.mjs +16 -27
- package/testeranto/bundles/node/core/src/lib/pmProxy.test/index.mjs +468 -517
- package/testeranto/bundles/pure/core/{chunk-KHJ35R7C.mjs → chunk-62UVCSQC.mjs} +97 -72
- package/testeranto/bundles/pure/core/src/Pure.test.mjs +56 -74
- package/testeranto/bundles/pure/core/src/lib/BaseSuite.test/pure.test.mjs +39 -66
- package/testeranto/bundles/pure/core/src/lib/baseBuilder.test/baseBuilder.test.pure.mjs +25 -19
- package/testeranto/metafiles/node/core.json +2906 -0
- package/testeranto/{bundles/pure/core/metafile.json → metafiles/pure/core.json} +66 -81
- package/testeranto/metafiles/web/core.json +546 -0
- package/testeranto/reports/core/config.json +0 -24
- package/testeranto/reports/core/src/Pure.test/pure/prompt.txt +1 -1
- package/testeranto/reports/core/src/Pure.test/pure/type_errors.txt +59 -94
- package/testeranto/reports/core/src/components/pure/FeaturesReporterView.test/index/web/error.log +2 -55
- package/testeranto/reports/core/src/components/pure/FeaturesReporterView.test/index/web/info.log +0 -2
- package/testeranto/reports/core/src/components/pure/ProjectPageView.test/index/web/error.log +3 -33
- package/testeranto/reports/core/src/components/pure/ProjectPageView.test/index/web/info.log +0 -4
- package/testeranto/reports/core/src/components/pure/TestPageView.test/index/web/error.log +3 -0
- package/testeranto/reports/core/src/components/pure/TestPageView.test/index/web/info.log +0 -2
- package/testeranto/reports/core/src/lib/BaseSuite.test/node.test/node/prompt.txt +2 -2
- package/testeranto/reports/core/src/lib/BaseSuite.test/node.test/node/type_errors.txt +38 -90
- package/testeranto/reports/core/src/lib/BaseSuite.test/pure.test/pure/prompt.txt +1 -1
- package/testeranto/reports/core/src/lib/BaseSuite.test/pure.test/pure/type_errors.txt +38 -90
- package/testeranto/reports/core/src/lib/BaseSuite.test/web.test/web/error.log +2 -0
- package/testeranto/reports/core/src/lib/baseBuilder.test/baseBuilder.test.node/node/lint_errors.txt +10 -0
- package/testeranto/reports/core/src/lib/baseBuilder.test/baseBuilder.test.node/node/prompt.txt +3 -3
- package/testeranto/reports/core/src/lib/baseBuilder.test/baseBuilder.test.node/node/stdout.log +6 -2
- package/testeranto/reports/core/src/lib/baseBuilder.test/baseBuilder.test.node/node/tests.json +4 -4
- package/testeranto/reports/core/src/lib/baseBuilder.test/baseBuilder.test.node/node/type_errors.txt +22 -45
- package/testeranto/reports/core/src/lib/baseBuilder.test/baseBuilder.test.pure/pure/lint_errors.txt +10 -0
- package/testeranto/reports/core/src/lib/baseBuilder.test/baseBuilder.test.pure/pure/prompt.txt +1 -1
- package/testeranto/reports/core/src/lib/baseBuilder.test/baseBuilder.test.pure/pure/type_errors.txt +22 -45
- package/testeranto/reports/core/src/lib/baseBuilder.test/baseBuilder.test.web/web/error.log +2 -0
- package/testeranto/reports/core/src/lib/classBuilder.test/classBuilder.test/node/prompt.txt +4 -4
- package/testeranto/reports/core/src/lib/classBuilder.test/classBuilder.test/node/tests.json +10 -10
- package/testeranto/reports/core/src/lib/classBuilder.test/classBuilder.test/node/type_errors.txt +38 -90
- package/testeranto/reports/core/src/lib/core.test/core.test/node/prompt.txt +4 -4
- package/testeranto/reports/core/src/lib/core.test/core.test/node/type_errors.txt +5 -24
- package/testeranto/reports/core/src/lib/pmProxy.test/index/node/lint_errors.txt +6 -14
- package/testeranto/reports/core/src/lib/pmProxy.test/index/node/prompt.txt +3 -3
- package/testeranto/reports/core/src/lib/pmProxy.test/index/node/stderr.log +88 -0
- package/testeranto/reports/core/src/lib/pmProxy.test/index/node/stdout.log +10 -0
- package/testeranto/reports/core/src/lib/pmProxy.test/index/node/tests.json +33 -43
- package/testeranto/reports/core/src/lib/pmProxy.test/index/node/type_errors.txt +17 -43
- package/testeranto/reports/core/summary.json +15 -51
- package/testeranto/reportsweb_build_errors +546 -0
- package/testeranto.config.ts +16 -13
- package/tsc.log +37 -16
- package/tsconfig.json +3 -2
- package/CNAME +0 -1
- package/README.html +0 -302
- package/dist/common/src/PM/layers/base/PM_Base.js +0 -1
- package/dist/common/src/PM/layers/base/components/PageOperations.js +0 -1
- package/dist/common/src/PM/layers/base/components/PageOperations.testeranto.js +0 -1
- package/dist/common/src/PM/layers/linting/components/Linter.js +0 -1
- package/dist/common/src/PM/layers/linting/components/TypeChecker.js +0 -1
- package/dist/common/src/PM/layers/main/components/SidecarManager.js +0 -1
- package/dist/common/src/PM/layers/main/components/TestRunner.js +0 -1
- package/dist/module/src/PM/layers/base/PM_Base.js +0 -1
- package/dist/module/src/PM/layers/base/components/PageOperations.js +0 -1
- package/dist/module/src/PM/layers/base/components/PageOperations.testeranto.js +0 -1
- package/dist/module/src/PM/layers/linting/components/Linter.js +0 -1
- package/dist/module/src/PM/layers/linting/components/TypeChecker.js +0 -1
- package/dist/module/src/PM/layers/main/components/SidecarManager.js +0 -1
- package/dist/module/src/PM/layers/main/components/TestRunner.js +0 -1
- package/dist/tsconfig.tsbuildinfo +0 -1
- package/dist/types/PM/layers/base/components/PageOperations.d.ts +0 -0
- package/dist/types/PM/layers/base/components/PageOperations.testeranto.d.ts +0 -0
- package/dist/types/PM/layers/linting/components/Linter.d.ts +0 -0
- package/dist/types/PM/layers/linting/components/TypeChecker.d.ts +0 -0
- package/dist/types/PM/layers/main/components/SidecarManager.d.ts +0 -0
- package/dist/types/PM/layers/main/components/TestRunner.d.ts +0 -0
- package/dist/types/components/pure/SettingsButton.d.ts +0 -3
- package/dist/types/components/pure/TestPageView.test/index.d.ts +0 -32
- package/dist/types/utils/logFiles.d.ts +0 -7
- package/docs.html +0 -590
- package/example.css +0 -351
- package/index.html +0 -138
- package/scripts/compile-docs.js +0 -150
- package/smil30/SMIL-anim.mod.xsd +0 -163
- package/smil30/SMIL-control.mod.xsd +0 -73
- package/smil30/SMIL-layout.mod.xsd +0 -149
- package/smil30/SMIL-link.mod.xsd +0 -145
- package/smil30/SMIL-media.mod.xsd +0 -1646
- package/smil30/SMIL-metainformation.mod.xsd +0 -45
- package/smil30/SMIL-smiltext.mod.xsd +0 -353
- package/smil30/SMIL-state.mod.xsd +0 -133
- package/smil30/SMIL-struct.mod.xsd +0 -70
- package/smil30/SMIL-timing.mod.xsd +0 -105
- package/smil30/SMIL-transition.mod.xsd +0 -229
- package/smil30/SMIL.xsd +0 -63
- package/smil30/its.xsd +0 -42
- package/smil30/smil-attribs-1.mod.xsd +0 -610
- package/smil30/smil-datatypes-1.mod.xsd +0 -72
- package/smil30/smil-framework-1.mod.xsd +0 -45
- package/smil30/xml.xsd +0 -16
- package/src/App.scss +0 -123
- package/src/PM/layers/base/PM_Base.ts +0 -0
- package/src/PM/layers/base/components/PageOperations.testeranto.ts +0 -0
- package/src/PM/layers/base/components/PageOperations.ts +0 -0
- package/src/PM/layers/linting/components/Linter.ts +0 -0
- package/src/PM/layers/linting/components/TypeChecker.ts +0 -0
- package/src/PM/layers/main/components/SidecarManager.ts +0 -0
- package/src/PM/layers/main/components/TestRunner.ts +0 -0
- package/src/fonts.scss +0 -55
- package/style.css +0 -12175
- package/testeranto/bundles/node/core/chunk-ZQRRQYS4.mjs +0 -92
- package/testeranto/bundles/node/core/metafile.json +0 -5735
- package/testeranto/bundles/node/core/src/mothership/test.mjs +0 -24588
- package/testeranto/bundles/web/core/MPLUSRounded1c-Black-O75GP5JI.ttf +0 -0
- package/testeranto/bundles/web/core/MPLUSRounded1c-Bold-R524Q5BH.ttf +0 -0
- package/testeranto/bundles/web/core/MPLUSRounded1c-ExtraBold-C6GRMYVT.ttf +0 -0
- package/testeranto/bundles/web/core/MPLUSRounded1c-Light-WKN65Y2C.ttf +0 -0
- package/testeranto/bundles/web/core/MPLUSRounded1c-Medium-ZC4DWL7C.ttf +0 -0
- package/testeranto/bundles/web/core/MPLUSRounded1c-Regular-DT6EKZ3S.ttf +0 -0
- package/testeranto/bundles/web/core/MPLUSRounded1c-Thin-YWDNVG6M.ttf +0 -0
- package/testeranto/bundles/web/core/chunk-BADF3AZF.mjs +0 -108
- package/testeranto/bundles/web/core/chunk-BXV27S2S.mjs +0 -6252
- package/testeranto/bundles/web/core/chunk-EIYZKF2C.mjs +0 -223
- package/testeranto/bundles/web/core/chunk-FNXFUNA7.mjs +0 -28528
- package/testeranto/bundles/web/core/chunk-LU364HVS.mjs +0 -3311
- package/testeranto/bundles/web/core/chunk-QWII7WIM.mjs +0 -2281
- package/testeranto/bundles/web/core/chunk-VAYOSMXI.mjs +0 -21775
- package/testeranto/bundles/web/core/metafile.json +0 -18227
- package/testeranto/bundles/web/core/src/components/pure/AppFrame.test/index.css +0 -12105
- package/testeranto/bundles/web/core/src/components/pure/AppFrame.test/index.html +0 -15
- package/testeranto/bundles/web/core/src/components/pure/AppFrame.test/index.mjs +0 -517
- package/testeranto/bundles/web/core/src/components/pure/FeaturesReporterView.test/index.mjs +0 -166
- package/testeranto/bundles/web/core/src/components/pure/ModalContent.test/index.css +0 -12105
- package/testeranto/bundles/web/core/src/components/pure/ModalContent.test/index.html +0 -15
- package/testeranto/bundles/web/core/src/components/pure/ModalContent.test/index.mjs +0 -93
- package/testeranto/bundles/web/core/src/components/pure/ProjectPageView.test/index.css +0 -12105
- package/testeranto/bundles/web/core/src/components/pure/ProjectPageView.test/index.mjs +0 -343
- package/testeranto/bundles/web/core/src/components/pure/TestPageView.test/index.css +0 -12105
- package/testeranto/bundles/web/core/src/components/pure/TestPageView.test/index.mjs +0 -483
- package/testeranto/bundles/web/core/src/lib/BaseSuite.test/web.test.mjs +0 -394
- package/testeranto/bundles/web/core/src/lib/baseBuilder.test/baseBuilder.test.web.mjs +0 -256
- package/testeranto/reports/core/src/components/pure/AppFrame.test/index/web/debug.log +0 -0
- package/testeranto/reports/core/src/components/pure/AppFrame.test/index/web/error.log +0 -22
- package/testeranto/reports/core/src/components/pure/AppFrame.test/index/web/exit.log +0 -1
- package/testeranto/reports/core/src/components/pure/AppFrame.test/index/web/info.log +0 -4
- package/testeranto/reports/core/src/components/pure/AppFrame.test/index/web/lint_errors.txt +0 -2
- package/testeranto/reports/core/src/components/pure/AppFrame.test/index/web/message.txt +0 -17
- package/testeranto/reports/core/src/components/pure/AppFrame.test/index/web/prompt.txt +0 -18
- package/testeranto/reports/core/src/components/pure/AppFrame.test/index/web/tests.json +0 -57
- package/testeranto/reports/core/src/components/pure/AppFrame.test/index/web/type_errors.txt +0 -55
- package/testeranto/reports/core/src/components/pure/AppFrame.test/index/web/warn.log +0 -0
- package/testeranto/reports/core/src/components/pure/FeaturesReporterView.test/index/web/lint_errors.txt +0 -0
- package/testeranto/reports/core/src/components/pure/FeaturesReporterView.test/index/web/message.txt +0 -17
- package/testeranto/reports/core/src/components/pure/FeaturesReporterView.test/index/web/prompt.txt +0 -16
- package/testeranto/reports/core/src/components/pure/FeaturesReporterView.test/index/web/suite-0/given-basicRender/then-4/butThen/features-reporter.png +0 -0
- package/testeranto/reports/core/src/components/pure/FeaturesReporterView.test/index/web/tests.json +0 -76
- package/testeranto/reports/core/src/components/pure/FeaturesReporterView.test/index/web/type_errors.txt +0 -80
- package/testeranto/reports/core/src/components/pure/ModalContent.test/index/web/debug.log +0 -0
- package/testeranto/reports/core/src/components/pure/ModalContent.test/index/web/error.log +0 -0
- package/testeranto/reports/core/src/components/pure/ModalContent.test/index/web/exit.log +0 -0
- package/testeranto/reports/core/src/components/pure/ModalContent.test/index/web/info.log +0 -4
- package/testeranto/reports/core/src/components/pure/ModalContent.test/index/web/lint_errors.txt +0 -0
- package/testeranto/reports/core/src/components/pure/ModalContent.test/index/web/message.txt +0 -17
- package/testeranto/reports/core/src/components/pure/ModalContent.test/index/web/prompt.txt +0 -15
- package/testeranto/reports/core/src/components/pure/ModalContent.test/index/web/suite-0/given-basicRender/then-2/butThen/modal-content.png +0 -0
- package/testeranto/reports/core/src/components/pure/ModalContent.test/index/web/tests.json +0 -42
- package/testeranto/reports/core/src/components/pure/ModalContent.test/index/web/type_errors.txt +0 -65
- package/testeranto/reports/core/src/components/pure/ModalContent.test/index/web/warn.log +0 -0
- package/testeranto/reports/core/src/components/pure/ProjectPageView.test/index/web/lint_errors.txt +0 -2
- package/testeranto/reports/core/src/components/pure/ProjectPageView.test/index/web/message.txt +0 -17
- package/testeranto/reports/core/src/components/pure/ProjectPageView.test/index/web/prompt.txt +0 -16
- package/testeranto/reports/core/src/components/pure/ProjectPageView.test/index/web/suite-0/given-basicRender/then-6/butThen/happy-state.png +0 -0
- package/testeranto/reports/core/src/components/pure/ProjectPageView.test/index/web/suite-0/given-errorHandling/then-1/butThen/error-state.png +0 -0
- package/testeranto/reports/core/src/components/pure/ProjectPageView.test/index/web/tests.json +0 -99
- package/testeranto/reports/core/src/components/pure/ProjectPageView.test/index/web/type_errors.txt +0 -91
- package/testeranto/reports/core/src/components/pure/TestPageView.test/index/web/lint_errors.txt +0 -0
- package/testeranto/reports/core/src/components/pure/TestPageView.test/index/web/message.txt +0 -17
- package/testeranto/reports/core/src/components/pure/TestPageView.test/index/web/prompt.txt +0 -18
- package/testeranto/reports/core/src/components/pure/TestPageView.test/index/web/tests.json +0 -69
- package/testeranto/reports/core/src/components/pure/TestPageView.test/index/web/type_errors.txt +0 -111
- package/testeranto/reports/core/src/lib/BaseSuite.test/web.test/web/lint_errors.txt +0 -0
- package/testeranto/reports/core/src/lib/BaseSuite.test/web.test/web/message.txt +0 -17
- package/testeranto/reports/core/src/lib/BaseSuite.test/web.test/web/prompt.txt +0 -15
- package/testeranto/reports/core/src/lib/BaseSuite.test/web.test/web/tests.json +0 -31
- package/testeranto/reports/core/src/lib/BaseSuite.test/web.test/web/type_errors.txt +0 -113
- package/testeranto/reports/core/src/lib/baseBuilder.test/baseBuilder.test.web/web/lint_errors.txt +0 -0
- package/testeranto/reports/core/src/lib/baseBuilder.test/baseBuilder.test.web/web/message.txt +0 -17
- package/testeranto/reports/core/src/lib/baseBuilder.test/baseBuilder.test.web/web/prompt.txt +0 -17
- package/testeranto/reports/core/src/lib/baseBuilder.test/baseBuilder.test.web/web/suite-0/given-testInitialization/then-0/butThen/hello.txt +0 -1
- package/testeranto/reports/core/src/lib/baseBuilder.test/baseBuilder.test.web/web/suite-0/given-testInitialization/then-1/butThen/artifact_test.txt +0 -1
- package/testeranto/reports/core/src/lib/baseBuilder.test/baseBuilder.test.web/web/tests.json +0 -71
- package/testeranto/reports/core/src/lib/baseBuilder.test/baseBuilder.test.web/web/type_errors.txt +0 -65
- package/testeranto/reports/core/src/mothership/test/node/exit.log +0 -1
- package/testeranto/reports/core/src/mothership/test/node/lint_errors.txt +0 -0
- package/testeranto/reports/core/src/mothership/test/node/message.txt +0 -17
- package/testeranto/reports/core/src/mothership/test/node/prompt.txt +0 -14
- package/testeranto/reports/core/src/mothership/test/node/stderr.log +0 -27
- package/testeranto/reports/core/src/mothership/test/node/stdout.log +0 -8
- package/testeranto/reports/core/src/mothership/test/node/tests.json +0 -36
- package/testeranto/reports/core/src/mothership/test/node/type_errors.txt +0 -38
- package/videos/download-smil-xsd.sh +0 -29
- package/videos/project0/index.md +0 -72
- package/videos/project0/narration.json +0 -7
- package/videos/project0/narration.ssml +0 -58
- package/videos/project0/package.json +0 -21
- package/videos/project0/presentation.smil +0 -25
- package/videos/project0/smil30/SMIL-anim.mod.xsd +0 -163
- package/videos/project0/smil30/SMIL-anim.mod.xsd.1 +0 -163
- package/videos/project0/smil30/SMIL-anim.mod.xsd.2 +0 -163
- package/videos/project0/smil30/SMIL-control.mod.xsd +0 -73
- package/videos/project0/smil30/SMIL-control.mod.xsd.1 +0 -73
- package/videos/project0/smil30/SMIL-control.mod.xsd.2 +0 -73
- package/videos/project0/smil30/SMIL-layout.mod.xsd +0 -149
- package/videos/project0/smil30/SMIL-layout.mod.xsd.1 +0 -149
- package/videos/project0/smil30/SMIL-layout.mod.xsd.2 +0 -149
- package/videos/project0/smil30/SMIL-link.mod.xsd +0 -145
- package/videos/project0/smil30/SMIL-link.mod.xsd.1 +0 -145
- package/videos/project0/smil30/SMIL-link.mod.xsd.2 +0 -145
- package/videos/project0/smil30/SMIL-media.mod.xsd +0 -1646
- package/videos/project0/smil30/SMIL-media.mod.xsd.1 +0 -1646
- package/videos/project0/smil30/SMIL-media.mod.xsd.2 +0 -1646
- package/videos/project0/smil30/SMIL-metainformation.mod.xsd +0 -45
- package/videos/project0/smil30/SMIL-metainformation.mod.xsd.1 +0 -45
- package/videos/project0/smil30/SMIL-metainformation.mod.xsd.2 +0 -45
- package/videos/project0/smil30/SMIL-smiltext.mod.xsd +0 -353
- package/videos/project0/smil30/SMIL-smiltext.mod.xsd.1 +0 -353
- package/videos/project0/smil30/SMIL-smiltext.mod.xsd.2 +0 -353
- package/videos/project0/smil30/SMIL-state.mod.xsd +0 -133
- package/videos/project0/smil30/SMIL-state.mod.xsd.1 +0 -133
- package/videos/project0/smil30/SMIL-state.mod.xsd.2 +0 -133
- package/videos/project0/smil30/SMIL-struct.mod.xsd +0 -70
- package/videos/project0/smil30/SMIL-struct.mod.xsd.1 +0 -70
- package/videos/project0/smil30/SMIL-struct.mod.xsd.2 +0 -70
- package/videos/project0/smil30/SMIL-timing.mod.xsd +0 -105
- package/videos/project0/smil30/SMIL-timing.mod.xsd.1 +0 -105
- package/videos/project0/smil30/SMIL-timing.mod.xsd.2 +0 -105
- package/videos/project0/smil30/SMIL-transition.mod.xsd +0 -229
- package/videos/project0/smil30/SMIL-transition.mod.xsd.1 +0 -229
- package/videos/project0/smil30/SMIL-transition.mod.xsd.2 +0 -229
- package/videos/project0/smil30/SMIL.xsd +0 -63
- package/videos/project0/smil30/SMIL.xsd.1 +0 -63
- package/videos/project0/smil30/SMIL.xsd.2 +0 -63
- package/videos/project0/smil30/its.xsd +0 -42
- package/videos/project0/smil30/its.xsd.1 +0 -42
- package/videos/project0/smil30/its.xsd.2 +0 -42
- package/videos/project0/smil30/smil-attribs-1.mod.xsd +0 -610
- package/videos/project0/smil30/smil-attribs-1.mod.xsd.1 +0 -610
- package/videos/project0/smil30/smil-attribs-1.mod.xsd.2 +0 -610
- package/videos/project0/smil30/smil-datatypes-1.mod.xsd +0 -72
- package/videos/project0/smil30/smil-datatypes-1.mod.xsd.1 +0 -72
- package/videos/project0/smil30/smil-datatypes-1.mod.xsd.2 +0 -72
- package/videos/project0/smil30/smil-framework-1.mod.xsd +0 -45
- package/videos/project0/smil30/smil-framework-1.mod.xsd.1 +0 -45
- package/videos/project0/smil30/smil-framework-1.mod.xsd.2 +0 -45
- package/videos/project0/smil30/smil-profile-model-1.mod.xsd +0 -1331
- package/videos/project0/smil30/smil-profile-model-1.mod.xsd.1 +0 -1331
- package/videos/project0/smil30/smil-qname-1.mod.xsd +0 -121
- package/videos/project0/smil30/smil-qname-1.mod.xsd.1 +0 -121
- package/videos/project0/smil30/xml.xsd +0 -16
- package/videos/project0/smil30/xml.xsd.1 +0 -16
- package/videos/project0/smil30/xml.xsd.2 +0 -16
- package/videos/project0/smil30.xsd +0 -137
- package/videos/project0/src/audio/metadata.json +0 -5
- package/videos/project0/src/audio/narration.mp3 +0 -0
- package/videos/project0/src/motion-canvas.d.ts +0 -1
- package/videos/project0/src/project.meta +0 -31
- package/videos/project0/src/project.ts +0 -13
- package/videos/project0/src/scenes/example.meta +0 -5
- package/videos/project0/src/scenes/scene1.meta +0 -3
- package/videos/project0/src/scenes/scene1.tsx +0 -129
- package/videos/project0/src/scenes/scene2.tsx +0 -132
- package/videos/project0/src/scenes/scene3.meta +0 -26
- package/videos/project0/src/scenes/scene3.tsx +0 -188
- package/videos/project0/tsconfig.json +0 -4
- package/videos/project0/vite.config.ts +0 -10
- package/videos/trash/output/project.mp4 +0 -0
- package/videos/trash/text.mp4 +0 -0
- package/videos/trash/video/project.tsx +0 -549
- package/videos/trash/video/render.ts +0 -15
- package/videos/trash/vite.config.ts +0 -10
- package/videos/tts.js +0 -109
- /package/dist/{types/ReportServer.d.ts → module/design-editor/types.js} +0 -0
- /package/dist/types/{App.d.ts → src/App.d.ts} +0 -0
- /package/dist/types/{CoreTypes.d.ts → src/CoreTypes.d.ts} +0 -0
- /package/dist/types/{Init.d.ts → src/Init.d.ts} +0 -0
- /package/dist/types/{Node.d.ts → src/Node.d.ts} +0 -0
- /package/dist/types/{NodeSidecar.d.ts → src/NodeSidecar.d.ts} +0 -0
- /package/dist/types/{PM → src/PM}/PM_WithEslintAndTsc.d.ts +0 -0
- /package/dist/types/{PM → src/PM}/__tests__/nodeSidecar.testeranto.d.ts +0 -0
- /package/dist/types/{PM → src/PM}/__tests__/pureSidecar.testeranto.d.ts +0 -0
- /package/dist/types/{PM → src/PM}/__tests__/webSidecar.testeranto.d.ts +0 -0
- /package/dist/types/{PM → src/PM}/base.d.ts +0 -0
- /package/dist/types/{PM → src/PM}/node.d.ts +0 -0
- /package/dist/types/{PM → src/PM}/nodeSidecar.d.ts +0 -0
- /package/dist/types/{PM → src/PM}/pureSidecar.d.ts +0 -0
- /package/dist/types/{PM → src/PM}/sidecar.d.ts +0 -0
- /package/dist/types/{PM → src/PM}/types.d.ts +0 -0
- /package/dist/types/{PM → src/PM}/web.d.ts +0 -0
- /package/dist/types/{PM → src/PM}/webSidecar.d.ts +0 -0
- /package/dist/types/{Pure.d.ts → src/Pure.d.ts} +0 -0
- /package/dist/types/{PureSidecar.d.ts → src/PureSidecar.d.ts} +0 -0
- /package/dist/types/{build.d.ts → src/ReportServer.d.ts} +0 -0
- /package/dist/types/{ReportServer.test.ts → src/ReportServer.test.ts}/index.d.ts +0 -0
- /package/dist/types/{ReportServerLib.d.ts → src/ReportServerLib.d.ts} +0 -0
- /package/dist/types/{Types.d.ts → src/Types.d.ts} +0 -0
- /package/dist/types/{Web.d.ts → src/Web.d.ts} +0 -0
- /package/dist/types/{WebSidecar.d.ts → src/WebSidecar.d.ts} +0 -0
- /package/dist/types/{init-docs.d.ts → src/build.d.ts} +0 -0
- /package/dist/types/{components → src/components}/SunriseAnimation.d.ts +0 -0
- /package/dist/types/{components → src/components}/SunriseAnimation.test/implementation.d.ts +0 -0
- /package/dist/types/{components → src/components}/SunriseAnimation.test/index.d.ts +0 -0
- /package/dist/types/{components → src/components}/SunriseAnimation.test/interface.d.ts +0 -0
- /package/dist/types/{components → src/components}/SunriseAnimation.test/specification.d.ts +0 -0
- /package/dist/types/{components → src/components}/SunriseAnimation.test/types.d.ts +0 -0
- /package/dist/types/{components → src/components}/TestStatusBadge.d.ts +0 -0
- /package/dist/types/{components → src/components}/pure/AppFrame.test/implementation.d.ts +0 -0
- /package/dist/types/{components → src/components}/pure/AppFrame.test/index.d.ts +0 -0
- /package/dist/types/{components → src/components}/pure/AppFrame.test/specification.d.ts +0 -0
- /package/dist/types/{components → src/components}/pure/AppFrame.test/types.d.ts +0 -0
- /package/dist/types/{components → src/components}/pure/FeaturesReporterView.d.ts +0 -0
- /package/dist/types/{components → src/components}/pure/FeaturesReporterView.test/implementation.d.ts +0 -0
- /package/dist/types/{components → src/components}/pure/FeaturesReporterView.test/index.d.ts +0 -0
- /package/dist/types/{components → src/components}/pure/FeaturesReporterView.test/specification.d.ts +0 -0
- /package/dist/types/{components → src/components}/pure/FeaturesReporterView.test/types.d.ts +0 -0
- /package/dist/types/{components → src/components}/pure/ModalContent.d.ts +0 -0
- /package/dist/types/{components → src/components}/pure/ModalContent.test/implementation.d.ts +0 -0
- /package/dist/types/{components → src/components}/pure/ModalContent.test/specification.d.ts +0 -0
- /package/dist/types/{components → src/components}/pure/ModalContent.test/types.d.ts +0 -0
- /package/dist/types/{components → src/components}/pure/ProjectPageView.d.ts +0 -0
- /package/dist/types/{components → src/components}/pure/ProjectPageView.test/implementation.d.ts +0 -0
- /package/dist/types/{components/pure/ModalContent.test → src/components/pure/ProjectPageView.test}/index.d.ts +0 -0
- /package/dist/types/{components → src/components}/pure/ProjectPageView.test/specification.d.ts +0 -0
- /package/dist/types/{components → src/components}/pure/ProjectPageView.test/types.d.ts +0 -0
- /package/dist/types/{PM/layers/base/PM_Base.d.ts → src/components/pure/SingleProcessView.d.ts} +0 -0
- /package/dist/types/{components → src/components}/pure/TestPageView.d.ts +0 -0
- /package/dist/types/{components → src/components}/pure/TestPageView.test/specification.d.ts +0 -0
- /package/dist/types/{components → src/components}/pure/TestPageView.test/types.d.ts +0 -0
- /package/dist/types/{components → src/components}/pure/ThemeCard.d.ts +0 -0
- /package/dist/types/{components → src/components}/stateful/FeaturesReporter.d.ts +0 -0
- /package/dist/types/{components → src/components}/stateful/ProjectPage.d.ts +0 -0
- /package/dist/types/{components → src/components}/stateful/ProjectsPage.d.ts +0 -0
- /package/dist/types/{components → src/components}/stateful/TestPage.d.ts +0 -0
- /package/dist/types/{defaultConfig.d.ts → src/defaultConfig.d.ts} +0 -0
- /package/dist/types/{esbuildConfigs → src/esbuildConfigs}/consoleDetectorPlugin.d.ts +0 -0
- /package/dist/types/{esbuildConfigs → src/esbuildConfigs}/eslint-formatter-testeranto.d.ts +0 -0
- /package/dist/types/{esbuildConfigs → src/esbuildConfigs}/featuresPlugin.d.ts +0 -0
- /package/dist/types/{esbuildConfigs → src/esbuildConfigs}/index.d.ts +0 -0
- /package/dist/types/{esbuildConfigs → src/esbuildConfigs}/inputFilesPlugin.d.ts +0 -0
- /package/dist/types/{esbuildConfigs → src/esbuildConfigs}/nativeImportDetectorPlugin.d.ts +0 -0
- /package/dist/types/{esbuildConfigs → src/esbuildConfigs}/node.d.ts +0 -0
- /package/dist/types/{esbuildConfigs → src/esbuildConfigs}/pure.d.ts +0 -0
- /package/dist/types/{esbuildConfigs → src/esbuildConfigs}/rebuildPlugin.d.ts +0 -0
- /package/dist/types/{esbuildConfigs → src/esbuildConfigs}/web.d.ts +0 -0
- /package/dist/types/{run.d.ts → src/init-docs.d.ts} +0 -0
- /package/dist/types/{lib → src/lib}/BaseSuite.d.ts +0 -0
- /package/dist/types/{lib → src/lib}/BaseSuite.test/node.test.d.ts +0 -0
- /package/dist/types/{lib → src/lib}/BaseSuite.test/pure.test.d.ts +0 -0
- /package/dist/types/{lib → src/lib}/BaseSuite.test/test.d.ts +0 -0
- /package/dist/types/{lib → src/lib}/BaseSuite.test/web.test.d.ts +0 -0
- /package/dist/types/{lib → src/lib}/Sidecar.d.ts +0 -0
- /package/dist/types/{lib → src/lib}/abstractBase.d.ts +0 -0
- /package/dist/types/{lib → src/lib}/abstractBase.test/MockGiven.d.ts +0 -0
- /package/dist/types/{lib → src/lib}/abstractBase.test/MockThen.d.ts +0 -0
- /package/dist/types/{lib → src/lib}/abstractBase.test/MockWhen.d.ts +0 -0
- /package/dist/types/{lib → src/lib}/abstractBase.test/adapter.d.ts +0 -0
- /package/dist/types/{lib → src/lib}/abstractBase.test/implementation.d.ts +0 -0
- /package/dist/types/{lib → src/lib}/abstractBase.test/index.d.ts +0 -0
- /package/dist/types/{lib → src/lib}/abstractBase.test/specification.d.ts +0 -0
- /package/dist/types/{lib → src/lib}/abstractBase.test/types.d.ts +0 -0
- /package/dist/types/{lib → src/lib}/baseBuilder.test/baseBuilder.test.adapter.d.ts +0 -0
- /package/dist/types/{lib → src/lib}/baseBuilder.test/baseBuilder.test.implementation.d.ts +0 -0
- /package/dist/types/{lib → src/lib}/baseBuilder.test/baseBuilder.test.mock.d.ts +0 -0
- /package/dist/types/{lib → src/lib}/baseBuilder.test/baseBuilder.test.node.d.ts +0 -0
- /package/dist/types/{lib → src/lib}/baseBuilder.test/baseBuilder.test.pure.d.ts +0 -0
- /package/dist/types/{lib → src/lib}/baseBuilder.test/baseBuilder.test.specification.d.ts +0 -0
- /package/dist/types/{lib → src/lib}/baseBuilder.test/baseBuilder.test.types.d.ts +0 -0
- /package/dist/types/{lib → src/lib}/baseBuilder.test/baseBuilder.test.web.d.ts +0 -0
- /package/dist/types/{lib → src/lib}/classBuilder.d.ts +0 -0
- /package/dist/types/{lib → src/lib}/classBuilder.test/classBuilder.test.adapter.d.ts +0 -0
- /package/dist/types/{lib → src/lib}/classBuilder.test/classBuilder.test.d.ts +0 -0
- /package/dist/types/{lib → src/lib}/classBuilder.test/classBuilder.test.implementation.d.ts +0 -0
- /package/dist/types/{lib → src/lib}/classBuilder.test/classBuilder.test.specification.d.ts +0 -0
- /package/dist/types/{lib → src/lib}/classBuilder.test/classBuilder.test.types.d.ts +0 -0
- /package/dist/types/{lib → src/lib}/classBuilder.test/mock.d.ts +0 -0
- /package/dist/types/{lib → src/lib}/core.d.ts +0 -0
- /package/dist/types/{lib → src/lib}/core.test/MockCore.d.ts +0 -0
- /package/dist/types/{lib → src/lib}/core.test/core.test.adapter.d.ts +0 -0
- /package/dist/types/{lib → src/lib}/core.test/core.test.d.ts +0 -0
- /package/dist/types/{lib → src/lib}/core.test/core.test.implementation.d.ts +0 -0
- /package/dist/types/{lib → src/lib}/core.test/core.test.specification.d.ts +0 -0
- /package/dist/types/{lib → src/lib}/core.test/core.test.types.d.ts +0 -0
- /package/dist/types/{lib → src/lib}/mocks.test.d.ts +0 -0
- /package/dist/types/{lib → src/lib}/pmProxy.d.ts +0 -0
- /package/dist/types/{lib → src/lib}/pmProxy.test/adapter.d.ts +0 -0
- /package/dist/types/{lib → src/lib}/pmProxy.test/implementation.d.ts +0 -0
- /package/dist/types/{lib → src/lib}/pmProxy.test/index.d.ts +0 -0
- /package/dist/types/{lib → src/lib}/pmProxy.test/mockPM.d.ts +0 -0
- /package/dist/types/{lib → src/lib}/pmProxy.test/specification.d.ts +0 -0
- /package/dist/types/{lib → src/lib}/pmProxy.test/types.d.ts +0 -0
- /package/dist/types/{lib → src/lib}/types.d.ts +0 -0
- /package/dist/types/{mothership → src/mothership}/index.d.ts +0 -0
- /package/dist/types/{mothership → src/mothership}/test.d.ts +0 -0
- /package/dist/types/{types → src/types}/features.d.ts +0 -0
- /package/dist/types/{utils → src/utils}/api.d.ts +0 -0
- /package/dist/types/{utils → src/utils}/buildTemplates.d.ts +0 -0
- /package/dist/types/{utils → src/utils}/featureUtils.d.ts +0 -0
- /package/dist/types/{utils → src/utils}/makePrompt.d.ts +0 -0
- /package/dist/types/{utils → src/utils}/queue.d.ts +0 -0
- /package/dist/types/{utils.d.ts → src/utils.d.ts} +0 -0
- /package/dist/types/{web.html.d.ts → src/web.html.d.ts} +0 -0
|
@@ -1 +1 @@
|
|
|
1
|
-
{"fileNames":["../../node_modules/typescript/lib/lib.es5.d.ts","../../node_modules/typescript/lib/lib.es2015.d.ts","../../node_modules/typescript/lib/lib.es2016.d.ts","../../node_modules/typescript/lib/lib.es2017.d.ts","../../node_modules/typescript/lib/lib.es2018.d.ts","../../node_modules/typescript/lib/lib.es2019.d.ts","../../node_modules/typescript/lib/lib.es2020.d.ts","../../node_modules/typescript/lib/lib.es2021.d.ts","../../node_modules/typescript/lib/lib.es2022.d.ts","../../node_modules/typescript/lib/lib.es2023.d.ts","../../node_modules/typescript/lib/lib.es2024.d.ts","../../node_modules/typescript/lib/lib.esnext.d.ts","../../node_modules/typescript/lib/lib.dom.d.ts","../../node_modules/typescript/lib/lib.dom.iterable.d.ts","../../node_modules/typescript/lib/lib.es2015.core.d.ts","../../node_modules/typescript/lib/lib.es2015.collection.d.ts","../../node_modules/typescript/lib/lib.es2015.generator.d.ts","../../node_modules/typescript/lib/lib.es2015.iterable.d.ts","../../node_modules/typescript/lib/lib.es2015.promise.d.ts","../../node_modules/typescript/lib/lib.es2015.proxy.d.ts","../../node_modules/typescript/lib/lib.es2015.reflect.d.ts","../../node_modules/typescript/lib/lib.es2015.symbol.d.ts","../../node_modules/typescript/lib/lib.es2015.symbol.wellknown.d.ts","../../node_modules/typescript/lib/lib.es2016.array.include.d.ts","../../node_modules/typescript/lib/lib.es2016.intl.d.ts","../../node_modules/typescript/lib/lib.es2017.arraybuffer.d.ts","../../node_modules/typescript/lib/lib.es2017.date.d.ts","../../node_modules/typescript/lib/lib.es2017.object.d.ts","../../node_modules/typescript/lib/lib.es2017.sharedmemory.d.ts","../../node_modules/typescript/lib/lib.es2017.string.d.ts","../../node_modules/typescript/lib/lib.es2017.intl.d.ts","../../node_modules/typescript/lib/lib.es2017.typedarrays.d.ts","../../node_modules/typescript/lib/lib.es2018.asyncgenerator.d.ts","../../node_modules/typescript/lib/lib.es2018.asynciterable.d.ts","../../node_modules/typescript/lib/lib.es2018.intl.d.ts","../../node_modules/typescript/lib/lib.es2018.promise.d.ts","../../node_modules/typescript/lib/lib.es2018.regexp.d.ts","../../node_modules/typescript/lib/lib.es2019.array.d.ts","../../node_modules/typescript/lib/lib.es2019.object.d.ts","../../node_modules/typescript/lib/lib.es2019.string.d.ts","../../node_modules/typescript/lib/lib.es2019.symbol.d.ts","../../node_modules/typescript/lib/lib.es2019.intl.d.ts","../../node_modules/typescript/lib/lib.es2020.bigint.d.ts","../../node_modules/typescript/lib/lib.es2020.date.d.ts","../../node_modules/typescript/lib/lib.es2020.promise.d.ts","../../node_modules/typescript/lib/lib.es2020.sharedmemory.d.ts","../../node_modules/typescript/lib/lib.es2020.string.d.ts","../../node_modules/typescript/lib/lib.es2020.symbol.wellknown.d.ts","../../node_modules/typescript/lib/lib.es2020.intl.d.ts","../../node_modules/typescript/lib/lib.es2020.number.d.ts","../../node_modules/typescript/lib/lib.es2021.promise.d.ts","../../node_modules/typescript/lib/lib.es2021.string.d.ts","../../node_modules/typescript/lib/lib.es2021.weakref.d.ts","../../node_modules/typescript/lib/lib.es2021.intl.d.ts","../../node_modules/typescript/lib/lib.es2022.array.d.ts","../../node_modules/typescript/lib/lib.es2022.error.d.ts","../../node_modules/typescript/lib/lib.es2022.intl.d.ts","../../node_modules/typescript/lib/lib.es2022.object.d.ts","../../node_modules/typescript/lib/lib.es2022.string.d.ts","../../node_modules/typescript/lib/lib.es2022.regexp.d.ts","../../node_modules/typescript/lib/lib.es2023.array.d.ts","../../node_modules/typescript/lib/lib.es2023.collection.d.ts","../../node_modules/typescript/lib/lib.es2023.intl.d.ts","../../node_modules/typescript/lib/lib.es2024.arraybuffer.d.ts","../../node_modules/typescript/lib/lib.es2024.collection.d.ts","../../node_modules/typescript/lib/lib.es2024.object.d.ts","../../node_modules/typescript/lib/lib.es2024.promise.d.ts","../../node_modules/typescript/lib/lib.es2024.regexp.d.ts","../../node_modules/typescript/lib/lib.es2024.sharedmemory.d.ts","../../node_modules/typescript/lib/lib.es2024.string.d.ts","../../node_modules/typescript/lib/lib.esnext.array.d.ts","../../node_modules/typescript/lib/lib.esnext.collection.d.ts","../../node_modules/typescript/lib/lib.esnext.intl.d.ts","../../node_modules/typescript/lib/lib.esnext.disposable.d.ts","../../node_modules/typescript/lib/lib.esnext.promise.d.ts","../../node_modules/typescript/lib/lib.esnext.decorators.d.ts","../../node_modules/typescript/lib/lib.esnext.iterator.d.ts","../../node_modules/typescript/lib/lib.esnext.float16.d.ts","../../node_modules/typescript/lib/lib.esnext.error.d.ts","../../node_modules/typescript/lib/lib.esnext.sharedmemory.d.ts","../../node_modules/typescript/lib/lib.decorators.d.ts","../../node_modules/typescript/lib/lib.decorators.legacy.d.ts","../../node_modules/@types/node/compatibility/iterators.d.ts","../../node_modules/@types/node/globals.typedarray.d.ts","../../node_modules/@types/node/buffer.buffer.d.ts","../../node_modules/buffer/index.d.ts","../../node_modules/undici-types/utility.d.ts","../../node_modules/undici-types/header.d.ts","../../node_modules/undici-types/readable.d.ts","../../node_modules/undici-types/fetch.d.ts","../../node_modules/undici-types/formdata.d.ts","../../node_modules/undici-types/connector.d.ts","../../node_modules/undici-types/client-stats.d.ts","../../node_modules/undici-types/client.d.ts","../../node_modules/undici-types/errors.d.ts","../../node_modules/undici-types/dispatcher.d.ts","../../node_modules/undici-types/global-dispatcher.d.ts","../../node_modules/undici-types/global-origin.d.ts","../../node_modules/undici-types/pool-stats.d.ts","../../node_modules/undici-types/pool.d.ts","../../node_modules/undici-types/handlers.d.ts","../../node_modules/undici-types/balanced-pool.d.ts","../../node_modules/undici-types/h2c-client.d.ts","../../node_modules/undici-types/agent.d.ts","../../node_modules/undici-types/mock-interceptor.d.ts","../../node_modules/undici-types/mock-call-history.d.ts","../../node_modules/undici-types/mock-agent.d.ts","../../node_modules/undici-types/mock-client.d.ts","../../node_modules/undici-types/mock-pool.d.ts","../../node_modules/undici-types/mock-errors.d.ts","../../node_modules/undici-types/proxy-agent.d.ts","../../node_modules/undici-types/env-http-proxy-agent.d.ts","../../node_modules/undici-types/retry-handler.d.ts","../../node_modules/undici-types/retry-agent.d.ts","../../node_modules/undici-types/api.d.ts","../../node_modules/undici-types/cache-interceptor.d.ts","../../node_modules/undici-types/interceptors.d.ts","../../node_modules/undici-types/util.d.ts","../../node_modules/undici-types/cookies.d.ts","../../node_modules/undici-types/patch.d.ts","../../node_modules/undici-types/websocket.d.ts","../../node_modules/undici-types/eventsource.d.ts","../../node_modules/undici-types/diagnostics-channel.d.ts","../../node_modules/undici-types/content-type.d.ts","../../node_modules/undici-types/cache.d.ts","../../node_modules/undici-types/index.d.ts","../../node_modules/@types/node/globals.d.ts","../../node_modules/@types/node/assert.d.ts","../../node_modules/@types/node/assert/strict.d.ts","../../node_modules/@types/node/async_hooks.d.ts","../../node_modules/@types/node/buffer.d.ts","../../node_modules/@types/node/child_process.d.ts","../../node_modules/@types/node/cluster.d.ts","../../node_modules/@types/node/console.d.ts","../../node_modules/@types/node/constants.d.ts","../../node_modules/@types/node/crypto.d.ts","../../node_modules/@types/node/dgram.d.ts","../../node_modules/@types/node/diagnostics_channel.d.ts","../../node_modules/@types/node/dns.d.ts","../../node_modules/@types/node/dns/promises.d.ts","../../node_modules/@types/node/domain.d.ts","../../node_modules/@types/node/dom-events.d.ts","../../node_modules/@types/node/events.d.ts","../../node_modules/@types/node/fs.d.ts","../../node_modules/@types/node/fs/promises.d.ts","../../node_modules/@types/node/http.d.ts","../../node_modules/@types/node/http2.d.ts","../../node_modules/@types/node/https.d.ts","../../node_modules/@types/node/inspector.d.ts","../../node_modules/@types/node/module.d.ts","../../node_modules/@types/node/net.d.ts","../../node_modules/@types/node/os.d.ts","../../node_modules/@types/node/path.d.ts","../../node_modules/@types/node/perf_hooks.d.ts","../../node_modules/@types/node/process.d.ts","../../node_modules/@types/node/punycode.d.ts","../../node_modules/@types/node/querystring.d.ts","../../node_modules/@types/node/readline.d.ts","../../node_modules/@types/node/readline/promises.d.ts","../../node_modules/@types/node/repl.d.ts","../../node_modules/@types/node/sea.d.ts","../../node_modules/@types/node/sqlite.d.ts","../../node_modules/@types/node/stream.d.ts","../../node_modules/@types/node/stream/promises.d.ts","../../node_modules/@types/node/stream/consumers.d.ts","../../node_modules/@types/node/stream/web.d.ts","../../node_modules/@types/node/string_decoder.d.ts","../../node_modules/@types/node/test.d.ts","../../node_modules/@types/node/timers.d.ts","../../node_modules/@types/node/timers/promises.d.ts","../../node_modules/@types/node/tls.d.ts","../../node_modules/@types/node/trace_events.d.ts","../../node_modules/@types/node/tty.d.ts","../../node_modules/@types/node/url.d.ts","../../node_modules/@types/node/util.d.ts","../../node_modules/@types/node/v8.d.ts","../../node_modules/@types/node/vm.d.ts","../../node_modules/@types/node/wasi.d.ts","../../node_modules/@types/node/worker_threads.d.ts","../../node_modules/@types/node/zlib.d.ts","../../node_modules/@types/node/index.d.ts","../../node_modules/typed-query-selector/parser.d.ts","../../node_modules/puppeteer-core/node_modules/devtools-protocol/types/protocol.d.ts","../../node_modules/puppeteer-core/node_modules/devtools-protocol/types/protocol-mapping.d.ts","../../node_modules/puppeteer-core/node_modules/chromium-bidi/lib/cjs/protocol/generated/webdriver-bidi.d.ts","../../node_modules/puppeteer-core/node_modules/chromium-bidi/lib/cjs/protocol/cdp.d.ts","../../node_modules/puppeteer-core/node_modules/chromium-bidi/lib/cjs/protocol/generated/webdriver-bidi-bluetooth.d.ts","../../node_modules/puppeteer-core/node_modules/chromium-bidi/lib/cjs/protocol/generated/webdriver-bidi-permissions.d.ts","../../node_modules/puppeteer-core/node_modules/chromium-bidi/lib/cjs/protocol/chromium-bidi.d.ts","../../node_modules/puppeteer-core/node_modules/chromium-bidi/lib/cjs/protocol/errorresponse.d.ts","../../node_modules/puppeteer-core/node_modules/chromium-bidi/lib/cjs/protocol/protocol.d.ts","../../node_modules/puppeteer-core/lib/types.d.ts","../../node_modules/puppeteer-core/lib/esm/puppeteer/common/connectiontransport.d.ts","../../node_modules/puppeteer-core/lib/esm/puppeteer/common/downloadbehavior.d.ts","../../node_modules/puppeteer-core/lib/esm/puppeteer/common/viewport.d.ts","../../node_modules/puppeteer-core/lib/esm/puppeteer/common/connectoptions.d.ts","../../node_modules/puppeteer-core/lib/esm/puppeteer/common/cookie.d.ts","../../node_modules/mitt/index.d.ts","../../node_modules/puppeteer-core/lib/esm/third_party/mitt/mitt.d.ts","../../node_modules/puppeteer-core/lib/esm/puppeteer/util/disposable.d.ts","../../node_modules/puppeteer-core/lib/esm/puppeteer/common/eventemitter.d.ts","../../node_modules/puppeteer-core/lib/esm/puppeteer/util/mutex.d.ts","../../node_modules/puppeteer-core/lib/esm/third_party/rxjs/rxjs.d.ts","../../node_modules/puppeteer-core/lib/esm/puppeteer/common/errors.d.ts","../../node_modules/puppeteer-core/lib/esm/puppeteer/common/callbackregistry.d.ts","../../node_modules/puppeteer-core/lib/esm/puppeteer/common/timeoutsettings.d.ts","../../node_modules/puppeteer-core/lib/esm/puppeteer/common/securitydetails.d.ts","../../node_modules/puppeteer-core/lib/esm/puppeteer/api/httpresponse.d.ts","../../node_modules/puppeteer-core/lib/esm/puppeteer/common/waittask.d.ts","../../node_modules/puppeteer-core/lib/esm/puppeteer/api/environment.d.ts","../../node_modules/puppeteer-core/lib/esm/puppeteer/api/jshandle.d.ts","../../node_modules/puppeteer-core/lib/esm/puppeteer/api/realm.d.ts","../../node_modules/puppeteer-core/lib/esm/puppeteer/cdp/accessibility.d.ts","../../node_modules/puppeteer-core/lib/esm/puppeteer/cdp/devicerequestprompt.d.ts","../../node_modules/puppeteer-core/lib/esm/puppeteer/util/deferred.d.ts","../../node_modules/puppeteer-core/lib/esm/puppeteer/common/queryhandler.d.ts","../../node_modules/puppeteer-core/lib/esm/puppeteer/common/customqueryhandler.d.ts","../../node_modules/puppeteer-core/lib/esm/puppeteer/injected/customqueryselector.d.ts","../../node_modules/puppeteer-core/lib/esm/puppeteer/injected/poller.d.ts","../../node_modules/puppeteer-core/lib/esm/puppeteer/injected/pqueryselector.d.ts","../../node_modules/puppeteer-core/lib/esm/puppeteer/injected/textcontent.d.ts","../../node_modules/puppeteer-core/lib/esm/puppeteer/injected/injected.d.ts","../../node_modules/puppeteer-core/lib/esm/puppeteer/cdp/isolatedworlds.d.ts","../../node_modules/puppeteer-core/lib/esm/puppeteer/cdp/elementhandle.d.ts","../../node_modules/puppeteer-core/lib/esm/puppeteer/cdp/jshandle.d.ts","../../node_modules/puppeteer-core/lib/esm/puppeteer/cdp/webworker.d.ts","../../node_modules/puppeteer-core/lib/esm/puppeteer/cdp/isolatedworld.d.ts","../../node_modules/puppeteer-core/lib/esm/puppeteer/cdp/executioncontext.d.ts","../../node_modules/puppeteer-core/lib/esm/puppeteer/cdp/binding.d.ts","../../node_modules/puppeteer-core/lib/esm/puppeteer/cdp/cdppreloadscript.d.ts","../../node_modules/puppeteer-core/lib/esm/puppeteer/cdp/framemanagerevents.d.ts","../../node_modules/puppeteer-core/lib/esm/puppeteer/cdp/frametree.d.ts","../../node_modules/puppeteer-core/lib/esm/puppeteer/common/networkmanagerevents.d.ts","../../node_modules/puppeteer-core/lib/esm/puppeteer/cdp/networkmanager.d.ts","../../node_modules/puppeteer-core/lib/esm/puppeteer/common/filechooser.d.ts","../../node_modules/puppeteer-core/lib/esm/puppeteer/common/pdfoptions.d.ts","../../node_modules/puppeteer-core/lib/esm/puppeteer/cdp/coverage.d.ts","../../node_modules/puppeteer-core/lib/esm/puppeteer/common/uskeyboardlayout.d.ts","../../node_modules/puppeteer-core/lib/esm/puppeteer/util/incremental-id-generator.d.ts","../../node_modules/puppeteer-core/lib/esm/puppeteer/api/input.d.ts","../../node_modules/puppeteer-core/lib/esm/puppeteer/cdp/input.d.ts","../../node_modules/puppeteer-core/lib/esm/puppeteer/cdp/tracing.d.ts","../../node_modules/puppeteer-core/lib/esm/puppeteer/cdp/page.d.ts","../../node_modules/puppeteer-core/lib/esm/puppeteer/cdp/framemanager.d.ts","../../node_modules/puppeteer-core/lib/esm/puppeteer/cdp/frame.d.ts","../../node_modules/puppeteer-core/lib/esm/puppeteer/cdp/lifecyclewatcher.d.ts","../../node_modules/puppeteer-core/lib/esm/puppeteer/api/locators/locators.d.ts","../../node_modules/puppeteer-core/lib/esm/puppeteer/api/frame.d.ts","../../node_modules/puppeteer-core/lib/esm/puppeteer/api/elementhandlesymbol.d.ts","../../node_modules/puppeteer-core/lib/esm/puppeteer/api/elementhandle.d.ts","../../node_modules/puppeteer-core/lib/esm/puppeteer/common/lazyarg.d.ts","../../node_modules/puppeteer-core/lib/esm/puppeteer/common/types.d.ts","../../node_modules/puppeteer-core/lib/esm/puppeteer/api/webworker.d.ts","../../node_modules/puppeteer-core/lib/esm/puppeteer/api/target.d.ts","../../node_modules/puppeteer-core/lib/esm/puppeteer/cdp/targetmanageevents.d.ts","../../node_modules/puppeteer-core/lib/esm/puppeteer/cdp/targetmanager.d.ts","../../node_modules/puppeteer-core/lib/esm/puppeteer/cdp/target.d.ts","../../node_modules/puppeteer-core/lib/esm/puppeteer/cdp/cdpsession.d.ts","../../node_modules/puppeteer-core/lib/esm/puppeteer/cdp/connection.d.ts","../../node_modules/puppeteer-core/lib/esm/puppeteer/api/cdpsession.d.ts","../../node_modules/puppeteer-core/lib/esm/puppeteer/api/httprequest.d.ts","../../node_modules/puppeteer-core/lib/esm/puppeteer/common/consolemessage.d.ts","../../node_modules/puppeteer-core/lib/esm/puppeteer/common/device.d.ts","../../node_modules/puppeteer-core/lib/esm/puppeteer/node/screenrecorder.d.ts","../../node_modules/puppeteer-core/lib/esm/puppeteer/api/dialog.d.ts","../../node_modules/puppeteer-core/lib/esm/puppeteer/api/page.d.ts","../../node_modules/puppeteer-core/lib/esm/puppeteer/api/browsercontext.d.ts","../../node_modules/puppeteer-core/lib/esm/puppeteer/api/browser.d.ts","../../node_modules/puppeteer-core/lib/esm/puppeteer/api/api.d.ts","../../node_modules/puppeteer-core/lib/esm/puppeteer/cdp/ariaqueryhandler.d.ts","../../node_modules/puppeteer-core/lib/esm/puppeteer/cdp/browsercontext.d.ts","../../node_modules/puppeteer-core/lib/esm/puppeteer/cdp/browser.d.ts","../../node_modules/puppeteer-core/lib/esm/puppeteer/cdp/browserconnector.d.ts","../../node_modules/puppeteer-core/lib/esm/puppeteer/cdp/dialog.d.ts","../../node_modules/puppeteer-core/lib/esm/puppeteer/cdp/emulationmanager.d.ts","../../node_modules/puppeteer-core/lib/esm/puppeteer/cdp/extensiontransport.d.ts","../../node_modules/puppeteer-core/lib/esm/puppeteer/cdp/httpresponse.d.ts","../../node_modules/puppeteer-core/lib/esm/puppeteer/cdp/httprequest.d.ts","../../node_modules/puppeteer-core/lib/esm/puppeteer/cdp/networkeventmanager.d.ts","../../node_modules/puppeteer-core/lib/esm/puppeteer/cdp/predefinednetworkconditions.d.ts","../../node_modules/puppeteer-core/lib/esm/puppeteer/cdp/utils.d.ts","../../node_modules/puppeteer-core/lib/esm/puppeteer/cdp/cdp.d.ts","../../node_modules/puppeteer-core/lib/esm/puppeteer/common/browserwebsockettransport.d.ts","../../node_modules/puppeteer-core/lib/esm/puppeteer/common/supportedbrowser.d.ts","../../node_modules/puppeteer-core/lib/esm/puppeteer/common/configuration.d.ts","../../node_modules/puppeteer-core/lib/esm/puppeteer/common/debug.d.ts","../../node_modules/puppeteer-core/lib/esm/puppeteer/common/getqueryhandler.d.ts","../../node_modules/puppeteer-core/lib/esm/puppeteer/common/handleiterator.d.ts","../../node_modules/puppeteer-core/lib/esm/puppeteer/common/piercequeryhandler.d.ts","../../node_modules/puppeteer-core/lib/esm/puppeteer/common/pqueryhandler.d.ts","../../node_modules/puppeteer-core/lib/esm/puppeteer/common/pselectorparser.d.ts","../../node_modules/puppeteer-core/lib/esm/puppeteer/common/puppeteer.d.ts","../../node_modules/puppeteer-core/lib/esm/puppeteer/common/scriptinjector.d.ts","../../node_modules/puppeteer-core/lib/esm/puppeteer/common/taskqueue.d.ts","../../node_modules/puppeteer-core/lib/esm/puppeteer/common/textqueryhandler.d.ts","../../node_modules/puppeteer-core/lib/esm/puppeteer/common/util.d.ts","../../node_modules/puppeteer-core/lib/esm/puppeteer/common/xpathqueryhandler.d.ts","../../node_modules/puppeteer-core/lib/esm/puppeteer/common/common.d.ts","../../node_modules/puppeteer-core/lib/esm/puppeteer/revisions.d.ts","../../node_modules/puppeteer-core/lib/esm/puppeteer/util/assert.d.ts","../../node_modules/puppeteer-core/lib/esm/puppeteer/util/errorlike.d.ts","../../node_modules/puppeteer-core/lib/esm/puppeteer/util/asynciterableutil.d.ts","../../node_modules/puppeteer-core/lib/esm/puppeteer/util/util.d.ts","../../node_modules/puppeteer-core/lib/esm/puppeteer/index-browser.d.ts","../../node_modules/puppeteer-core/node_modules/@puppeteer/browsers/lib/cjs/browser-data/types.d.ts","../../node_modules/puppeteer-core/node_modules/@puppeteer/browsers/lib/cjs/browser-data/chrome.d.ts","../../node_modules/puppeteer-core/node_modules/@puppeteer/browsers/lib/cjs/browser-data/chrome-headless-shell.d.ts","../../node_modules/puppeteer-core/node_modules/@puppeteer/browsers/lib/cjs/browser-data/chromedriver.d.ts","../../node_modules/puppeteer-core/node_modules/@puppeteer/browsers/lib/cjs/browser-data/chromium.d.ts","../../node_modules/puppeteer-core/node_modules/@puppeteer/browsers/lib/cjs/browser-data/firefox.d.ts","../../node_modules/puppeteer-core/node_modules/@puppeteer/browsers/lib/cjs/browser-data/browser-data.d.ts","../../node_modules/puppeteer-core/node_modules/@puppeteer/browsers/lib/cjs/launch.d.ts","../../node_modules/puppeteer-core/node_modules/@puppeteer/browsers/lib/cjs/cache.d.ts","../../node_modules/puppeteer-core/node_modules/@puppeteer/browsers/lib/cjs/install.d.ts","../../node_modules/puppeteer-core/node_modules/@puppeteer/browsers/lib/cjs/detectplatform.d.ts","../../node_modules/puppeteer-core/node_modules/@puppeteer/browsers/lib/cjs/cli.d.ts","../../node_modules/puppeteer-core/node_modules/@puppeteer/browsers/lib/cjs/main.d.ts","../../node_modules/puppeteer-core/lib/esm/puppeteer/node/launchoptions.d.ts","../../node_modules/puppeteer-core/lib/esm/puppeteer/node/puppeteernode.d.ts","../../node_modules/puppeteer-core/lib/esm/puppeteer/node/browserlauncher.d.ts","../../node_modules/puppeteer-core/lib/esm/puppeteer/node/chromelauncher.d.ts","../../node_modules/puppeteer-core/lib/esm/puppeteer/node/firefoxlauncher.d.ts","../../node_modules/puppeteer-core/lib/esm/puppeteer/node/pipetransport.d.ts","../../node_modules/puppeteer-core/lib/esm/puppeteer/node/node.d.ts","../../node_modules/puppeteer-core/lib/esm/puppeteer/index.d.ts","../../src/pm/index.ts","../../src/pm/node.ts","../../src/pm/pure.ts","../../src/pm/web.ts","../../node_modules/esbuild/lib/main.d.ts","../../src/lib/pmproxy.ts","../../src/lib/basesuite.ts","../../src/lib/types.ts","../../src/lib/abstractbase.ts","../../src/types.ts","../../src/lib/index.ts","../../src/coretypes.ts","../../src/init.ts","../../node_modules/type-fest/source/primitive.d.ts","../../node_modules/type-fest/source/typed-array.d.ts","../../node_modules/type-fest/source/basic.d.ts","../../node_modules/type-fest/source/observable-like.d.ts","../../node_modules/type-fest/source/union-to-intersection.d.ts","../../node_modules/type-fest/source/keys-of-union.d.ts","../../node_modules/type-fest/source/distributed-omit.d.ts","../../node_modules/type-fest/source/distributed-pick.d.ts","../../node_modules/type-fest/source/empty-object.d.ts","../../node_modules/type-fest/source/if-empty-object.d.ts","../../node_modules/type-fest/source/optional-keys-of.d.ts","../../node_modules/type-fest/source/required-keys-of.d.ts","../../node_modules/type-fest/source/has-required-keys.d.ts","../../node_modules/type-fest/source/is-never.d.ts","../../node_modules/type-fest/source/if-never.d.ts","../../node_modules/type-fest/source/unknown-array.d.ts","../../node_modules/type-fest/source/internal/array.d.ts","../../node_modules/type-fest/source/internal/characters.d.ts","../../node_modules/type-fest/source/is-any.d.ts","../../node_modules/type-fest/source/is-float.d.ts","../../node_modules/type-fest/source/is-integer.d.ts","../../node_modules/type-fest/source/numeric.d.ts","../../node_modules/type-fest/source/is-literal.d.ts","../../node_modules/type-fest/source/trim.d.ts","../../node_modules/type-fest/source/is-equal.d.ts","../../node_modules/type-fest/source/and.d.ts","../../node_modules/type-fest/source/or.d.ts","../../node_modules/type-fest/source/greater-than.d.ts","../../node_modules/type-fest/source/greater-than-or-equal.d.ts","../../node_modules/type-fest/source/less-than.d.ts","../../node_modules/type-fest/source/internal/tuple.d.ts","../../node_modules/type-fest/source/internal/string.d.ts","../../node_modules/type-fest/source/internal/keys.d.ts","../../node_modules/type-fest/source/internal/numeric.d.ts","../../node_modules/type-fest/source/simplify.d.ts","../../node_modules/type-fest/source/omit-index-signature.d.ts","../../node_modules/type-fest/source/pick-index-signature.d.ts","../../node_modules/type-fest/source/merge.d.ts","../../node_modules/type-fest/source/if-any.d.ts","../../node_modules/type-fest/source/internal/type.d.ts","../../node_modules/type-fest/source/internal/object.d.ts","../../node_modules/type-fest/source/internal/index.d.ts","../../node_modules/type-fest/source/except.d.ts","../../node_modules/type-fest/source/require-at-least-one.d.ts","../../node_modules/type-fest/source/non-empty-object.d.ts","../../node_modules/type-fest/source/non-empty-string.d.ts","../../node_modules/type-fest/source/unknown-record.d.ts","../../node_modules/type-fest/source/unknown-set.d.ts","../../node_modules/type-fest/source/unknown-map.d.ts","../../node_modules/type-fest/source/tagged-union.d.ts","../../node_modules/type-fest/source/writable.d.ts","../../node_modules/type-fest/source/writable-deep.d.ts","../../node_modules/type-fest/source/conditional-simplify.d.ts","../../node_modules/type-fest/source/non-empty-tuple.d.ts","../../node_modules/type-fest/source/array-tail.d.ts","../../node_modules/type-fest/source/enforce-optional.d.ts","../../node_modules/type-fest/source/simplify-deep.d.ts","../../node_modules/type-fest/source/merge-deep.d.ts","../../node_modules/type-fest/source/merge-exclusive.d.ts","../../node_modules/type-fest/source/require-exactly-one.d.ts","../../node_modules/type-fest/source/require-all-or-none.d.ts","../../node_modules/type-fest/source/require-one-or-none.d.ts","../../node_modules/type-fest/source/single-key-object.d.ts","../../node_modules/type-fest/source/partial-deep.d.ts","../../node_modules/type-fest/source/required-deep.d.ts","../../node_modules/type-fest/source/subtract.d.ts","../../node_modules/type-fest/source/paths.d.ts","../../node_modules/type-fest/source/pick-deep.d.ts","../../node_modules/type-fest/source/array-splice.d.ts","../../node_modules/type-fest/source/literal-union.d.ts","../../node_modules/type-fest/source/union-to-tuple.d.ts","../../node_modules/type-fest/source/omit-deep.d.ts","../../node_modules/type-fest/source/is-null.d.ts","../../node_modules/type-fest/source/is-unknown.d.ts","../../node_modules/type-fest/source/if-unknown.d.ts","../../node_modules/type-fest/source/partial-on-undefined-deep.d.ts","../../node_modules/type-fest/source/undefined-on-partial-deep.d.ts","../../node_modules/type-fest/source/readonly-deep.d.ts","../../node_modules/type-fest/source/promisable.d.ts","../../node_modules/type-fest/source/arrayable.d.ts","../../node_modules/type-fest/source/tagged.d.ts","../../node_modules/type-fest/source/invariant-of.d.ts","../../node_modules/type-fest/source/set-optional.d.ts","../../node_modules/type-fest/source/set-readonly.d.ts","../../node_modules/type-fest/source/set-required.d.ts","../../node_modules/type-fest/source/set-required-deep.d.ts","../../node_modules/type-fest/source/set-non-nullable.d.ts","../../node_modules/type-fest/source/set-non-nullable-deep.d.ts","../../node_modules/type-fest/source/value-of.d.ts","../../node_modules/type-fest/source/async-return-type.d.ts","../../node_modules/type-fest/source/conditional-keys.d.ts","../../node_modules/type-fest/source/conditional-except.d.ts","../../node_modules/type-fest/source/conditional-pick.d.ts","../../node_modules/type-fest/source/conditional-pick-deep.d.ts","../../node_modules/type-fest/source/stringified.d.ts","../../node_modules/type-fest/source/join.d.ts","../../node_modules/type-fest/source/sum.d.ts","../../node_modules/type-fest/source/less-than-or-equal.d.ts","../../node_modules/type-fest/source/array-slice.d.ts","../../node_modules/type-fest/source/string-slice.d.ts","../../node_modules/type-fest/source/fixed-length-array.d.ts","../../node_modules/type-fest/source/multidimensional-array.d.ts","../../node_modules/type-fest/source/multidimensional-readonly-array.d.ts","../../node_modules/type-fest/source/iterable-element.d.ts","../../node_modules/type-fest/source/entry.d.ts","../../node_modules/type-fest/source/entries.d.ts","../../node_modules/type-fest/source/set-return-type.d.ts","../../node_modules/type-fest/source/set-parameter-type.d.ts","../../node_modules/type-fest/source/asyncify.d.ts","../../node_modules/type-fest/source/jsonify.d.ts","../../node_modules/type-fest/source/jsonifiable.d.ts","../../node_modules/type-fest/source/find-global-type.d.ts","../../node_modules/type-fest/source/structured-cloneable.d.ts","../../node_modules/type-fest/source/schema.d.ts","../../node_modules/type-fest/source/literal-to-primitive.d.ts","../../node_modules/type-fest/source/literal-to-primitive-deep.d.ts","../../node_modules/type-fest/source/string-key-of.d.ts","../../node_modules/type-fest/source/exact.d.ts","../../node_modules/type-fest/source/readonly-tuple.d.ts","../../node_modules/type-fest/source/override-properties.d.ts","../../node_modules/type-fest/source/has-optional-keys.d.ts","../../node_modules/type-fest/source/writable-keys-of.d.ts","../../node_modules/type-fest/source/readonly-keys-of.d.ts","../../node_modules/type-fest/source/has-readonly-keys.d.ts","../../node_modules/type-fest/source/has-writable-keys.d.ts","../../node_modules/type-fest/source/spread.d.ts","../../node_modules/type-fest/source/is-tuple.d.ts","../../node_modules/type-fest/source/tuple-to-object.d.ts","../../node_modules/type-fest/source/tuple-to-union.d.ts","../../node_modules/type-fest/source/int-range.d.ts","../../node_modules/type-fest/source/int-closed-range.d.ts","../../node_modules/type-fest/source/array-indices.d.ts","../../node_modules/type-fest/source/array-values.d.ts","../../node_modules/type-fest/source/set-field-type.d.ts","../../node_modules/type-fest/source/shared-union-fields.d.ts","../../node_modules/type-fest/source/all-union-fields.d.ts","../../node_modules/type-fest/source/shared-union-fields-deep.d.ts","../../node_modules/type-fest/source/if-null.d.ts","../../node_modules/type-fest/source/words.d.ts","../../node_modules/type-fest/source/camel-case.d.ts","../../node_modules/type-fest/source/camel-cased-properties.d.ts","../../node_modules/type-fest/source/camel-cased-properties-deep.d.ts","../../node_modules/type-fest/source/delimiter-case.d.ts","../../node_modules/type-fest/source/kebab-case.d.ts","../../node_modules/type-fest/source/delimiter-cased-properties.d.ts","../../node_modules/type-fest/source/kebab-cased-properties.d.ts","../../node_modules/type-fest/source/delimiter-cased-properties-deep.d.ts","../../node_modules/type-fest/source/kebab-cased-properties-deep.d.ts","../../node_modules/type-fest/source/pascal-case.d.ts","../../node_modules/type-fest/source/pascal-cased-properties.d.ts","../../node_modules/type-fest/source/pascal-cased-properties-deep.d.ts","../../node_modules/type-fest/source/snake-case.d.ts","../../node_modules/type-fest/source/snake-cased-properties.d.ts","../../node_modules/type-fest/source/snake-cased-properties-deep.d.ts","../../node_modules/type-fest/source/screaming-snake-case.d.ts","../../node_modules/type-fest/source/split.d.ts","../../node_modules/type-fest/source/replace.d.ts","../../node_modules/type-fest/source/string-repeat.d.ts","../../node_modules/type-fest/source/includes.d.ts","../../node_modules/type-fest/source/get.d.ts","../../node_modules/type-fest/source/last-array-element.d.ts","../../node_modules/type-fest/source/global-this.d.ts","../../node_modules/type-fest/source/package-json.d.ts","../../node_modules/type-fest/source/tsconfig-json.d.ts","../../node_modules/type-fest/index.d.ts","../../src/lib/basebuilder.ts","../../src/lib/classbuilder.ts","../../src/lib/core.ts","../../src/node.ts","../../src/lib/sidecar.ts","../../src/pm/sidecar.ts","../../src/pm/nodesidecar.ts","../../src/nodesidecar.ts","../../src/pure.ts","../../src/pm/base.ts","../../src/lib/pmproxy.test/mockpmbase.ts","../../src/pure.test.ts","../../src/pm/puresidecar.ts","../../src/puresidecar.ts","../../node_modules/@types/mime/index.d.ts","../../node_modules/@types/node-static/index.d.ts","../../src/reportserverlib.ts","../../src/reportserver.ts","../../src/web.ts","../../src/pm/websidecar.ts","../../src/websidecar.ts","../../node_modules/ansi-colors/types/index.d.ts","../../src/utils.ts","../../src/utils/buildtemplates.ts","../../src/esbuildconfigs/index.ts","../../src/esbuildconfigs/inputfilesplugin.ts","../../src/esbuildconfigs/featuresplugin.ts","../../src/esbuildconfigs/rebuildplugin.ts","../../src/esbuildconfigs/node.ts","../../node_modules/esbuild-plugin-polyfill-node/dist/index.d.ts","../../src/esbuildconfigs/web.ts","../../src/esbuildconfigs/consoledetectorplugin.ts","../../src/esbuildconfigs/nativeimportdetectorplugin.ts","../../src/esbuildconfigs/pure.ts","../../src/web.html.ts","../../src/build.ts","../../src/defaultconfig.ts","../../src/init-docs.ts","../../src/utils/queue.ts","../../node_modules/typescript/lib/typescript.d.ts","../../node_modules/@types/estree/index.d.ts","../../node_modules/@types/json-schema/index.d.ts","../../node_modules/@eslint/core/dist/esm/types.d.ts","../../node_modules/eslint/lib/types/use-at-your-own-risk.d.ts","../../node_modules/eslint/lib/types/index.d.ts","../../node_modules/tsc-prog/dist/index.d.ts","../../src/utils/logfiles.ts","../../src/utils/makeprompt.ts","../../src/pm/pm_witheslintandtsc.ts","../../src/pm/main.ts","../../src/run.ts","../../src/pm/types.ts","../../src/pm/__tests__/nodesidecar.testeranto.ts","../../src/pm/__tests__/puresidecar.testeranto.ts","../../src/pm/__tests__/websidecar.testeranto.ts","../../src/pm/layers/base/pm_base.ts","../../src/pm/layers/base/components/pageoperations.testeranto.ts","../../src/pm/layers/base/components/pageoperations.ts","../../src/pm/layers/linting/components/linter.ts","../../src/pm/layers/linting/components/typechecker.ts","../../src/pm/layers/main/components/sidecarmanager.ts","../../src/pm/layers/main/components/testrunner.ts","../../node_modules/@types/deep-eql/index.d.ts","../../node_modules/@types/chai/index.d.ts","../../src/reportserver.test.ts/index.ts","../../src/components/sunriseanimation.test/implementation.ts","../../src/components/sunriseanimation.test/index.ts","../../node_modules/@types/react/global.d.ts","../../node_modules/csstype/index.d.ts","../../node_modules/@types/prop-types/index.d.ts","../../node_modules/@types/react/index.d.ts","../../node_modules/@types/react-dom/node_modules/@types/react/global.d.ts","../../node_modules/@types/react-dom/node_modules/@types/react/index.d.ts","../../node_modules/@types/react-dom/client.d.ts","../../src/components/sunriseanimation.test/types.ts","../../src/components/sunriseanimation.test/interface.ts","../../src/components/sunriseanimation.test/specification.ts","../../src/components/pure/appframe.test/types.ts","../../src/components/pure/appframe.test/specification.ts","../../src/types/features.ts","../../src/components/pure/featuresreporterview.test/types.ts","../../src/components/pure/featuresreporterview.test/specification.ts","../../node_modules/react-bootstrap/esm/accordioncontext.d.ts","../../node_modules/@restart/ui/esm/types.d.ts","../../node_modules/react-bootstrap/esm/helpers.d.ts","../../node_modules/react-bootstrap/esm/accordionbutton.d.ts","../../node_modules/@types/react-transition-group/transition.d.ts","../../node_modules/react-bootstrap/esm/collapse.d.ts","../../node_modules/react-bootstrap/esm/accordioncollapse.d.ts","../../node_modules/react-bootstrap/esm/accordionitem.d.ts","../../node_modules/react-bootstrap/esm/accordionheader.d.ts","../../node_modules/react-bootstrap/esm/accordionbody.d.ts","../../node_modules/react-bootstrap/esm/accordion.d.ts","../../node_modules/react-bootstrap/esm/closebutton.d.ts","../../node_modules/@popperjs/core/lib/enums.d.ts","../../node_modules/@popperjs/core/lib/modifiers/popperoffsets.d.ts","../../node_modules/@popperjs/core/lib/modifiers/flip.d.ts","../../node_modules/@popperjs/core/lib/modifiers/hide.d.ts","../../node_modules/@popperjs/core/lib/modifiers/offset.d.ts","../../node_modules/@popperjs/core/lib/modifiers/eventlisteners.d.ts","../../node_modules/@popperjs/core/lib/modifiers/computestyles.d.ts","../../node_modules/@popperjs/core/lib/modifiers/arrow.d.ts","../../node_modules/@popperjs/core/lib/modifiers/preventoverflow.d.ts","../../node_modules/@popperjs/core/lib/modifiers/applystyles.d.ts","../../node_modules/@popperjs/core/lib/types.d.ts","../../node_modules/@popperjs/core/lib/modifiers/index.d.ts","../../node_modules/@popperjs/core/lib/utils/detectoverflow.d.ts","../../node_modules/@popperjs/core/lib/createpopper.d.ts","../../node_modules/@popperjs/core/lib/popper-lite.d.ts","../../node_modules/@popperjs/core/lib/popper.d.ts","../../node_modules/@popperjs/core/lib/index.d.ts","../../node_modules/@popperjs/core/index.d.ts","../../node_modules/@restart/ui/esm/usepopper.d.ts","../../node_modules/react-bootstrap/esm/types.d.ts","../../node_modules/react-bootstrap/esm/alertlink.d.ts","../../node_modules/react-bootstrap/esm/alertheading.d.ts","../../node_modules/react-bootstrap/esm/alert.d.ts","../../node_modules/@restart/ui/esm/anchor.d.ts","../../node_modules/react-bootstrap/esm/anchor.d.ts","../../node_modules/react-bootstrap/esm/badge.d.ts","../../node_modules/react-bootstrap/esm/breadcrumbitem.d.ts","../../node_modules/react-bootstrap/esm/breadcrumb.d.ts","../../node_modules/@restart/ui/esm/button.d.ts","../../node_modules/react-bootstrap/esm/button.d.ts","../../node_modules/react-bootstrap/esm/buttongroup.d.ts","../../node_modules/react-bootstrap/esm/buttontoolbar.d.ts","../../node_modules/react-bootstrap/esm/cardimg.d.ts","../../node_modules/react-bootstrap/esm/cardtitle.d.ts","../../node_modules/react-bootstrap/esm/cardsubtitle.d.ts","../../node_modules/react-bootstrap/esm/cardbody.d.ts","../../node_modules/react-bootstrap/esm/cardlink.d.ts","../../node_modules/react-bootstrap/esm/cardtext.d.ts","../../node_modules/react-bootstrap/esm/cardheader.d.ts","../../node_modules/react-bootstrap/esm/cardfooter.d.ts","../../node_modules/react-bootstrap/esm/cardimgoverlay.d.ts","../../node_modules/react-bootstrap/esm/card.d.ts","../../node_modules/react-bootstrap/esm/cardgroup.d.ts","../../node_modules/react-bootstrap/esm/carouselcaption.d.ts","../../node_modules/react-bootstrap/esm/carouselitem.d.ts","../../node_modules/react-bootstrap/esm/carousel.d.ts","../../node_modules/react-bootstrap/esm/col.d.ts","../../node_modules/react-bootstrap/esm/container.d.ts","../../node_modules/@restart/ui/esm/dropdowncontext.d.ts","../../node_modules/@restart/ui/esm/useclickoutside.d.ts","../../node_modules/@restart/ui/esm/dropdownmenu.d.ts","../../node_modules/@restart/ui/esm/dropdowntoggle.d.ts","../../node_modules/@restart/ui/esm/dropdownitem.d.ts","../../node_modules/@restart/ui/esm/dropdown.d.ts","../../node_modules/react-bootstrap/esm/dropdowncontext.d.ts","../../node_modules/react-bootstrap/esm/dropdowntoggle.d.ts","../../node_modules/react-bootstrap/esm/dropdownmenu.d.ts","../../node_modules/react-bootstrap/esm/dropdownitem.d.ts","../../node_modules/react-bootstrap/esm/dropdownitemtext.d.ts","../../node_modules/react-bootstrap/esm/dropdowndivider.d.ts","../../node_modules/react-bootstrap/esm/dropdownheader.d.ts","../../node_modules/react-bootstrap/esm/dropdown.d.ts","../../node_modules/react-bootstrap/esm/dropdownbutton.d.ts","../../node_modules/react-bootstrap/esm/fade.d.ts","../../node_modules/react-bootstrap/esm/image.d.ts","../../node_modules/react-bootstrap/esm/figurecaption.d.ts","../../node_modules/react-bootstrap/esm/figure.d.ts","../../node_modules/react-bootstrap/esm/figureimage.d.ts","../../node_modules/react-bootstrap/esm/formgroup.d.ts","../../node_modules/react-bootstrap/esm/feedback.d.ts","../../node_modules/react-bootstrap/esm/formcontrol.d.ts","../../node_modules/react-bootstrap/esm/formfloating.d.ts","../../node_modules/react-bootstrap/esm/formcheckinput.d.ts","../../node_modules/react-bootstrap/esm/formchecklabel.d.ts","../../node_modules/react-bootstrap/esm/formcheck.d.ts","../../node_modules/react-bootstrap/esm/formlabel.d.ts","../../node_modules/react-bootstrap/esm/formtext.d.ts","../../node_modules/react-bootstrap/esm/formrange.d.ts","../../node_modules/react-bootstrap/esm/formselect.d.ts","../../node_modules/react-bootstrap/esm/floatinglabel.d.ts","../../node_modules/react-bootstrap/esm/form.d.ts","../../node_modules/react-bootstrap/esm/inputgrouptext.d.ts","../../node_modules/@types/react/jsx-runtime.d.ts","../../node_modules/react-bootstrap/esm/inputgroup.d.ts","../../node_modules/@restart/ui/esm/navitem.d.ts","../../node_modules/@restart/ui/esm/nav.d.ts","../../node_modules/react-bootstrap/esm/listgroupitem.d.ts","../../node_modules/react-bootstrap/esm/listgroup.d.ts","../../node_modules/@restart/ui/esm/modalmanager.d.ts","../../node_modules/@restart/ui/esm/usewaitfordomref.d.ts","../../node_modules/@restart/ui/esm/imperativetransition.d.ts","../../node_modules/@restart/ui/esm/modal.d.ts","../../node_modules/react-bootstrap/esm/modalbody.d.ts","../../node_modules/react-bootstrap/esm/abstractmodalheader.d.ts","../../node_modules/react-bootstrap/esm/modalheader.d.ts","../../node_modules/react-bootstrap/esm/modaltitle.d.ts","../../node_modules/react-bootstrap/esm/modalfooter.d.ts","../../node_modules/react-bootstrap/esm/modaldialog.d.ts","../../node_modules/react-bootstrap/esm/modal.d.ts","../../node_modules/react-bootstrap/esm/navitem.d.ts","../../node_modules/react-bootstrap/esm/navlink.d.ts","../../node_modules/react-bootstrap/esm/nav.d.ts","../../node_modules/react-bootstrap/esm/navbarbrand.d.ts","../../node_modules/react-bootstrap/esm/navbarcollapse.d.ts","../../node_modules/react-bootstrap/esm/offcanvasbody.d.ts","../../node_modules/react-bootstrap/esm/offcanvasheader.d.ts","../../node_modules/react-bootstrap/esm/offcanvastitle.d.ts","../../node_modules/react-bootstrap/esm/offcanvas.d.ts","../../node_modules/react-bootstrap/esm/navbaroffcanvas.d.ts","../../node_modules/react-bootstrap/esm/navbartext.d.ts","../../node_modules/react-bootstrap/esm/navbartoggle.d.ts","../../node_modules/react-bootstrap/esm/navbar.d.ts","../../node_modules/react-bootstrap/esm/navdropdown.d.ts","../../node_modules/react-bootstrap/esm/offcanvastoggling.d.ts","../../node_modules/@restart/ui/esm/userootclose.d.ts","../../node_modules/@restart/ui/esm/overlay.d.ts","../../node_modules/react-bootstrap/esm/overlay.d.ts","../../node_modules/react-bootstrap/esm/overlaytrigger.d.ts","../../node_modules/react-bootstrap/esm/pageitem.d.ts","../../node_modules/react-bootstrap/esm/pagination.d.ts","../../node_modules/react-bootstrap/esm/useplaceholder.d.ts","../../node_modules/react-bootstrap/esm/placeholderbutton.d.ts","../../node_modules/react-bootstrap/esm/placeholder.d.ts","../../node_modules/react-bootstrap/esm/popoverheader.d.ts","../../node_modules/react-bootstrap/esm/popoverbody.d.ts","../../node_modules/react-bootstrap/esm/popover.d.ts","../../node_modules/react-bootstrap/esm/progressbar.d.ts","../../node_modules/react-bootstrap/esm/ratio.d.ts","../../node_modules/react-bootstrap/esm/row.d.ts","../../node_modules/react-bootstrap/esm/spinner.d.ts","../../node_modules/react-bootstrap/esm/splitbutton.d.ts","../../node_modules/@react-aria/ssr/dist/types.d.ts","../../node_modules/@restart/ui/esm/ssr.d.ts","../../node_modules/react-bootstrap/esm/ssrprovider.d.ts","../../node_modules/react-bootstrap/esm/createutilityclasses.d.ts","../../node_modules/react-bootstrap/esm/stack.d.ts","../../node_modules/react-bootstrap/esm/tabpane.d.ts","../../node_modules/@restart/ui/esm/tabpanel.d.ts","../../node_modules/@restart/ui/esm/tabs.d.ts","../../node_modules/react-bootstrap/esm/tabcontainer.d.ts","../../node_modules/react-bootstrap/esm/tabcontent.d.ts","../../node_modules/react-bootstrap/esm/tab.d.ts","../../node_modules/react-bootstrap/esm/table.d.ts","../../node_modules/react-bootstrap/esm/tabs.d.ts","../../node_modules/react-bootstrap/esm/themeprovider.d.ts","../../node_modules/react-bootstrap/esm/toastbody.d.ts","../../node_modules/react-bootstrap/esm/toastheader.d.ts","../../node_modules/react-bootstrap/esm/toast.d.ts","../../node_modules/react-bootstrap/esm/toastcontainer.d.ts","../../node_modules/react-bootstrap/esm/togglebutton.d.ts","../../node_modules/react-bootstrap/esm/togglebuttongroup.d.ts","../../node_modules/react-bootstrap/esm/tooltip.d.ts","../../node_modules/react-bootstrap/esm/index.d.ts","../../src/components/pure/themecard.tsx","../../src/components/pure/modalcontent.tsx","../../src/components/pure/modalcontent.test/types.ts","../../src/components/pure/modalcontent.test/specification.ts","../../src/components/teststatusbadge.tsx","../../node_modules/react-router/dist/development/routemodules-qbivmbjd.d.ts","../../node_modules/react-router/dist/development/index-react-server-client-cmphysrb.d.ts","../../node_modules/react-router/node_modules/cookie/dist/index.d.ts","../../node_modules/react-router/dist/development/register-dioileq5.d.ts","../../node_modules/react-router/dist/development/index.d.ts","../../node_modules/react-router-dom/dist/index.d.ts","../../src/components/pure/navbar.tsx","../../src/components/pure/projectpageview.tsx","../../src/components/pure/projectpageview.test/types.ts","../../src/components/pure/projectpageview.test/specification.ts","../../src/components/pure/testpageview.test/types.ts","../../src/components/pure/testpageview.test/implementation.ts","../../src/components/pure/testpageview.test/specification.ts","../../src/esbuildconfigs/eslint-formatter-testeranto.ts","../../src/lib/mocks.test.ts","../../src/lib/basesuite.test/test.ts","../../src/lib/basesuite.test/mock.ts","../../src/lib/basesuite.test/node.test.ts","../../src/lib/basesuite.test/pure.test.ts","../../src/lib/basesuite.test/web.test.ts","../../src/lib/abstractbase.test/mockgiven.ts","../../src/lib/abstractbase.test/mockthen.ts","../../src/lib/abstractbase.test/mockwhen.ts","../../src/lib/abstractbase.test/types.ts","../../src/lib/abstractbase.test/adapter.ts","../../src/lib/abstractbase.test/implementation.ts","../../src/lib/abstractbase.test/specification.ts","../../src/lib/abstractbase.test/index.ts","../../src/lib/basebuilder.test/basebuilder.test.types.ts","../../src/lib/basebuilder.test/basebuilder.test.adapter.ts","../../src/lib/basebuilder.test/basebuilder.test.mock.ts","../../src/lib/basebuilder.test/basebuilder.test.implementation.ts","../../src/lib/basebuilder.test/basebuilder.test.specification.ts","../../src/lib/basebuilder.test/basebuilder.test.node.ts","../../src/lib/basebuilder.test/basebuilder.test.pure.ts","../../src/lib/basebuilder.test/basebuilder.test.web.ts","../../src/lib/classbuilder.test/classbuilder.test.adapter.ts","../../src/lib/classbuilder.test/mock.ts","../../src/lib/classbuilder.test/classbuilder.test.types.ts","../../src/lib/classbuilder.test/classbuilder.test.specification.ts","../../src/lib/classbuilder.test/classbuilder.test.implementation.ts","../../src/lib/classbuilder.test/classbuilder.test.ts","../../src/lib/core.test/mockcore.ts","../../src/lib/core.test/core.test.types.ts","../../src/lib/core.test/core.test.adapter.ts","../../src/lib/core.test/core.test.implementation.ts","../../src/lib/core.test/core.test.specification.ts","../../src/lib/core.test/core.test.ts","../../src/lib/pmproxy.test/implementation.ts","../../src/lib/pmproxy.test/specification.ts","../../src/lib/pmproxy.test/index.ts","../../src/lib/pmproxy.test/types.ts","../../src/lib/pmproxy.test/adapter.ts","../../src/lib/pmproxy.test/mockpm.ts","../../node_modules/@types/send/index.d.ts","../../node_modules/@types/qs/index.d.ts","../../node_modules/@types/range-parser/index.d.ts","../../node_modules/@types/express-serve-static-core/index.d.ts","../../node_modules/@types/http-errors/index.d.ts","../../node_modules/@types/serve-static/index.d.ts","../../node_modules/@types/connect/index.d.ts","../../node_modules/@types/body-parser/index.d.ts","../../node_modules/@types/express/index.d.ts","../../src/mothership/index.ts","../../src/mothership/test.ts","../../src/utils/api.ts","../../src/components/pure/testpageview.tsx","../../src/components/stateful/testpage.tsx","../../src/components/stateful/projectpage.tsx","../../src/components/pure/projectspageview.tsx","../../src/components/stateful/projectspage.tsx","../../src/components/sunriseanimation.tsx","../../src/components/pure/settingsbutton.tsx","../../src/components/pure/appframe.tsx","../../src/components/pure/featuresreporterview.tsx","../../src/components/stateful/featuresreporter.tsx","../../src/app.tsx","../../src/components/pure/appframe.test/implementation.tsx","../../../testeranto-react/node_modules/@types/react/global.d.ts","../../../testeranto-react/node_modules/csstype/index.d.ts","../../../testeranto-react/node_modules/@types/prop-types/index.d.ts","../../../testeranto-react/node_modules/@types/react/index.d.ts","../../../testeranto-react/node_modules/@types/react-dom/node_modules/@types/react/global.d.ts","../../../testeranto-react/node_modules/@types/react-dom/node_modules/@types/react/index.d.ts","../../../testeranto-react/node_modules/@types/react-dom/client.d.ts","../../../testeranto-react/src/react-dom/component/dynamic.ts","../../../testeranto-react/src/react/component/index.ts","../../../testeranto-react/src/mocks/mockreactcomponent.tsx","../../../testeranto-react/node_modules/@types/chai/index.d.ts","../../../testeranto-react/src/react-dom/component/web.ts","../../src/components/pure/appframe.test/index.tsx","../../src/components/pure/featuresreporterview.test/implementation.tsx","../../src/components/pure/featuresreporterview.test/index.tsx","../../src/components/pure/modalcontent.test/implementation.tsx","../../src/components/pure/modalcontent.test/index.tsx","../../src/components/pure/projectpageview.test/implementation.tsx","../../src/components/pure/projectpageview.test/index.tsx","../../../testeranto-react/src/react-dom/jsx/index.ts","../../../testeranto-react/src/react-dom/jsx/dynamic.ts","../../../testeranto-react/src/react-dom/jsx/web.ts","../../src/components/pure/testpageview.test/index.tsx","../../src/utils/featureutils.tsx","../../node_modules/@revideo/core/lib/events/eventdispatcherbase.d.ts","../../node_modules/@revideo/core/lib/events/asynceventdispatcher.d.ts","../../node_modules/@revideo/core/lib/events/eventdispatcher.d.ts","../../node_modules/@revideo/core/lib/events/flagdispatcher.d.ts","../../node_modules/@revideo/core/lib/events/valuedispatcher.d.ts","../../node_modules/@revideo/core/lib/events/index.d.ts","../../node_modules/@revideo/core/lib/app/logger.d.ts","../../node_modules/@revideo/core/lib/tweening/helpers.d.ts","../../node_modules/@revideo/core/lib/tweening/interpolationfunctions.d.ts","../../node_modules/@revideo/core/lib/threading/thread.d.ts","../../node_modules/@revideo/core/lib/threading/threadgenerator.d.ts","../../node_modules/@revideo/core/lib/threading/cancel.d.ts","../../node_modules/@revideo/core/lib/threading/spawn.d.ts","../../node_modules/@revideo/core/lib/threading/threads.d.ts","../../node_modules/@revideo/core/lib/threading/index.d.ts","../../node_modules/@revideo/core/lib/tweening/spring.d.ts","../../node_modules/@revideo/core/lib/tweening/timingfunctions.d.ts","../../node_modules/@revideo/core/lib/tweening/tween.d.ts","../../node_modules/@revideo/core/lib/tweening/index.d.ts","../../node_modules/@revideo/core/lib/signals/dependencycontext.d.ts","../../node_modules/@revideo/core/lib/signals/symbols.d.ts","../../node_modules/@revideo/core/lib/signals/types.d.ts","../../node_modules/@revideo/core/lib/signals/signalcontext.d.ts","../../node_modules/@revideo/core/lib/signals/compoundsignalcontext.d.ts","../../node_modules/@revideo/core/lib/signals/computedcontext.d.ts","../../node_modules/@revideo/core/lib/signals/createcomputed.d.ts","../../node_modules/@revideo/core/lib/signals/createcomputedasync.d.ts","../../node_modules/@revideo/core/lib/signals/createsignal.d.ts","../../node_modules/@revideo/core/lib/signals/utils.d.ts","../../node_modules/@revideo/core/lib/signals/index.d.ts","../../node_modules/@revideo/core/lib/types/alignment-enums.d.ts","../../node_modules/@revideo/core/lib/types/type.d.ts","../../node_modules/@revideo/core/lib/types/vector.d.ts","../../node_modules/@revideo/core/lib/types/matrix2d.d.ts","../../node_modules/@revideo/core/lib/types/spacing.d.ts","../../node_modules/@revideo/core/lib/types/bbox.d.ts","../../node_modules/@revideo/core/lib/types/canvas.d.ts","../../node_modules/@types/chroma-js/index.d.ts","../../node_modules/@revideo/core/lib/types/color.d.ts","../../node_modules/@revideo/core/lib/types/matrix.d.ts","../../node_modules/@revideo/core/lib/types/origin.d.ts","../../node_modules/@revideo/core/lib/types/vector-transformations.d.ts","../../node_modules/@revideo/core/lib/types/index.d.ts","../../node_modules/@revideo/core/lib/plugin/plugin.d.ts","../../node_modules/@revideo/core/lib/plugin/makeplugin.d.ts","../../node_modules/@revideo/core/lib/plugin/index.d.ts","../../node_modules/@revideo/core/lib/app/sharedwebglcontext.d.ts","../../node_modules/@revideo/core/lib/scenes/shaders.d.ts","../../node_modules/@revideo/core/lib/scenes/slides.d.ts","../../node_modules/@revideo/core/lib/scenes/variables.d.ts","../../node_modules/@revideo/core/lib/scenes/scene.d.ts","../../node_modules/@revideo/core/lib/scenes/lifecycleevents.d.ts","../../node_modules/@revideo/core/lib/scenes/threadable.d.ts","../../node_modules/@revideo/core/lib/scenes/generatorscene.d.ts","../../node_modules/@revideo/core/lib/scenes/inspectable.d.ts","../../node_modules/@revideo/core/lib/scenes/random.d.ts","../../node_modules/@revideo/core/lib/scenes/scenestate.d.ts","../../node_modules/@revideo/core/lib/scenes/index.d.ts","../../node_modules/@revideo/core/lib/app/stage.d.ts","../../node_modules/@revideo/core/lib/app/timeestimator.d.ts","../../node_modules/@revideo/core/lib/app/renderer.d.ts","../../node_modules/@revideo/core/lib/exporter/exporter.d.ts","../../node_modules/@revideo/core/lib/exporter/ffmpegexporter.d.ts","../../node_modules/@revideo/core/lib/exporter/imageexporter.d.ts","../../node_modules/@revideo/core/lib/exporter/wasmexporter.d.ts","../../node_modules/@revideo/core/lib/exporter/index.d.ts","../../node_modules/@revideo/core/lib/app/project.d.ts","../../node_modules/@revideo/core/lib/app/makeproject.d.ts","../../node_modules/@revideo/core/lib/app/playbackmanager.d.ts","../../node_modules/@revideo/core/lib/app/playbackstatus.d.ts","../../node_modules/@revideo/core/lib/app/player.d.ts","../../node_modules/@revideo/core/lib/app/project-settings.d.ts","../../node_modules/@revideo/core/lib/app/index.d.ts","../../node_modules/@revideo/core/lib/decorators/decorate.d.ts","../../node_modules/@revideo/core/lib/decorators/lazy.d.ts","../../node_modules/@revideo/core/lib/decorators/threadable.d.ts","../../node_modules/@revideo/core/lib/decorators/index.d.ts","../../node_modules/@revideo/core/lib/flow/all.d.ts","../../node_modules/@revideo/core/lib/flow/any.d.ts","../../node_modules/@revideo/core/lib/flow/chain.d.ts","../../node_modules/@revideo/core/lib/flow/delay.d.ts","../../node_modules/@revideo/core/lib/flow/every.d.ts","../../node_modules/@revideo/core/lib/flow/join.d.ts","../../node_modules/@revideo/core/lib/flow/loop.d.ts","../../node_modules/@revideo/core/lib/flow/loopfor.d.ts","../../node_modules/@revideo/core/lib/flow/names.d.ts","../../node_modules/@revideo/core/lib/flow/run.d.ts","../../node_modules/@revideo/core/lib/flow/scheduling.d.ts","../../node_modules/@revideo/core/lib/flow/sequence.d.ts","../../node_modules/@revideo/core/lib/flow/index.d.ts","../../node_modules/@revideo/core/lib/media/loadimage.d.ts","../../node_modules/@revideo/core/lib/media/index.d.ts","../../node_modules/@revideo/core/lib/plugin/defaultplugin.d.ts","../../node_modules/@revideo/core/lib/transitions/fadetransition.d.ts","../../node_modules/@revideo/core/lib/transitions/slidetransition.d.ts","../../node_modules/@revideo/core/lib/transitions/usetransition.d.ts","../../node_modules/@revideo/core/lib/transitions/zoomintransition.d.ts","../../node_modules/@revideo/core/lib/transitions/zoomouttransition.d.ts","../../node_modules/@revideo/core/lib/transitions/index.d.ts","../../node_modules/@revideo/core/lib/utils/beginslide.d.ts","../../node_modules/@revideo/core/lib/utils/capitalize.d.ts","../../node_modules/@revideo/core/lib/utils/createref.d.ts","../../node_modules/@revideo/core/lib/utils/createrefarray.d.ts","../../node_modules/@revideo/core/lib/utils/createrefmap.d.ts","../../node_modules/@revideo/core/lib/utils/debug.d.ts","../../node_modules/@revideo/core/lib/utils/deprecate.d.ts","../../node_modules/@revideo/core/lib/utils/detailederror.d.ts","../../node_modules/@revideo/core/lib/utils/errortolog.d.ts","../../node_modules/@revideo/core/lib/utils/experimentalerror.d.ts","../../node_modules/@revideo/core/lib/utils/experimentallog.d.ts","../../node_modules/@revideo/core/lib/utils/getcontext.d.ts","../../node_modules/@revideo/core/lib/utils/math.d.ts","../../node_modules/@revideo/core/lib/utils/range.d.ts","../../node_modules/@revideo/core/lib/utils/semaphore.d.ts","../../node_modules/@revideo/core/lib/utils/usecontext.d.ts","../../node_modules/@revideo/core/lib/utils/useplayback.d.ts","../../node_modules/@revideo/core/lib/utils/usescene.d.ts","../../node_modules/@revideo/core/lib/utils/usethread.d.ts","../../node_modules/@revideo/core/lib/utils/usetime.d.ts","../../node_modules/@revideo/core/lib/utils/index.d.ts","../../node_modules/@revideo/core/lib/index.d.ts","../../index.d.ts","../../node_modules/keyv/src/index.d.ts","../../node_modules/@types/http-cache-semantics/index.d.ts","../../node_modules/@types/responselike/index.d.ts","../../node_modules/@types/cacheable-request/index.d.ts","../../node_modules/@types/d3-array/index.d.ts","../../node_modules/@types/d3-selection/index.d.ts","../../node_modules/@types/d3-axis/index.d.ts","../../node_modules/@types/d3-brush/index.d.ts","../../node_modules/@types/d3-chord/index.d.ts","../../node_modules/@types/d3-color/index.d.ts","../../node_modules/@types/geojson/index.d.ts","../../node_modules/@types/d3-contour/index.d.ts","../../node_modules/@types/d3-delaunay/index.d.ts","../../node_modules/@types/d3-dispatch/index.d.ts","../../node_modules/@types/d3-drag/index.d.ts","../../node_modules/@types/d3-dsv/index.d.ts","../../node_modules/@types/d3-ease/index.d.ts","../../node_modules/@types/d3-fetch/index.d.ts","../../node_modules/@types/d3-force/index.d.ts","../../node_modules/@types/d3-format/index.d.ts","../../node_modules/@types/d3-geo/index.d.ts","../../node_modules/@types/d3-hierarchy/index.d.ts","../../node_modules/@types/d3-interpolate/index.d.ts","../../node_modules/@types/d3-path/index.d.ts","../../node_modules/@types/d3-polygon/index.d.ts","../../node_modules/@types/d3-quadtree/index.d.ts","../../node_modules/@types/d3-random/index.d.ts","../../node_modules/@types/d3-time/index.d.ts","../../node_modules/@types/d3-scale/index.d.ts","../../node_modules/@types/d3-scale-chromatic/index.d.ts","../../node_modules/@types/d3-shape/index.d.ts","../../node_modules/@types/d3-time-format/index.d.ts","../../node_modules/@types/d3-timer/index.d.ts","../../node_modules/@types/d3-transition/index.d.ts","../../node_modules/@types/d3-zoom/index.d.ts","../../node_modules/@types/d3/index.d.ts","../../node_modules/@types/eslint/use-at-your-own-risk.d.ts","../../node_modules/@types/eslint/index.d.ts","../../node_modules/@types/express-session/index.d.ts","../../node_modules/@types/unist/index.d.ts","../../node_modules/@types/hast/index.d.ts","../../node_modules/@types/history/domutils.d.ts","../../node_modules/@types/history/createbrowserhistory.d.ts","../../node_modules/@types/history/createhashhistory.d.ts","../../node_modules/@types/history/creatememoryhistory.d.ts","../../node_modules/@types/history/locationutils.d.ts","../../node_modules/@types/history/pathutils.d.ts","../../node_modules/@types/history/index.d.ts","../../node_modules/@types/istanbul-lib-coverage/index.d.ts","../../node_modules/@types/istanbul-lib-report/index.d.ts","../../node_modules/@types/istanbul-reports/index.d.ts","../../node_modules/@types/json5/index.d.ts","../../node_modules/@types/keyv/index.d.ts","../../node_modules/@types/mz/child_process.d.ts","../../node_modules/@types/mz/crypto.d.ts","../../node_modules/@types/mz/dns.d.ts","../../node_modules/@types/mz/fs.d.ts","../../node_modules/@types/mz/readline.d.ts","../../node_modules/@types/mz/zlib.d.ts","../../node_modules/@types/mz/index.d.ts","../../node_modules/@types/react-dom/index.d.ts","../../node_modules/@types/react-router/node_modules/@types/react/index.d.ts","../../node_modules/@types/react-router/index.d.ts","../../node_modules/@types/react-router-dom/node_modules/@types/react/index.d.ts","../../node_modules/@types/react-router-dom/index.d.ts","../../node_modules/@types/react-test-renderer/node_modules/@types/react/index.d.ts","../../node_modules/@types/react-test-renderer/index.d.ts","../../node_modules/@types/react-transition-group/config.d.ts","../../node_modules/@types/react-transition-group/csstransition.d.ts","../../node_modules/@types/react-transition-group/switchtransition.d.ts","../../node_modules/@types/react-transition-group/transitiongroup.d.ts","../../node_modules/@types/react-transition-group/index.d.ts","../../node_modules/@types/scheduler/index.d.ts","../../node_modules/@types/semver/classes/semver.d.ts","../../node_modules/@types/semver/functions/parse.d.ts","../../node_modules/@types/semver/functions/valid.d.ts","../../node_modules/@types/semver/functions/clean.d.ts","../../node_modules/@types/semver/functions/inc.d.ts","../../node_modules/@types/semver/functions/diff.d.ts","../../node_modules/@types/semver/functions/major.d.ts","../../node_modules/@types/semver/functions/minor.d.ts","../../node_modules/@types/semver/functions/patch.d.ts","../../node_modules/@types/semver/functions/prerelease.d.ts","../../node_modules/@types/semver/functions/compare.d.ts","../../node_modules/@types/semver/functions/rcompare.d.ts","../../node_modules/@types/semver/functions/compare-loose.d.ts","../../node_modules/@types/semver/functions/compare-build.d.ts","../../node_modules/@types/semver/functions/sort.d.ts","../../node_modules/@types/semver/functions/rsort.d.ts","../../node_modules/@types/semver/functions/gt.d.ts","../../node_modules/@types/semver/functions/lt.d.ts","../../node_modules/@types/semver/functions/eq.d.ts","../../node_modules/@types/semver/functions/neq.d.ts","../../node_modules/@types/semver/functions/gte.d.ts","../../node_modules/@types/semver/functions/lte.d.ts","../../node_modules/@types/semver/functions/cmp.d.ts","../../node_modules/@types/semver/functions/coerce.d.ts","../../node_modules/@types/semver/classes/comparator.d.ts","../../node_modules/@types/semver/classes/range.d.ts","../../node_modules/@types/semver/functions/satisfies.d.ts","../../node_modules/@types/semver/ranges/max-satisfying.d.ts","../../node_modules/@types/semver/ranges/min-satisfying.d.ts","../../node_modules/@types/semver/ranges/to-comparators.d.ts","../../node_modules/@types/semver/ranges/min-version.d.ts","../../node_modules/@types/semver/ranges/valid.d.ts","../../node_modules/@types/semver/ranges/outside.d.ts","../../node_modules/@types/semver/ranges/gtr.d.ts","../../node_modules/@types/semver/ranges/ltr.d.ts","../../node_modules/@types/semver/ranges/intersects.d.ts","../../node_modules/@types/semver/ranges/simplify.d.ts","../../node_modules/@types/semver/ranges/subset.d.ts","../../node_modules/@types/semver/internals/identifiers.d.ts","../../node_modules/@types/semver/index.d.ts","../../node_modules/@types/stack-utils/index.d.ts","../../node_modules/@types/trusted-types/lib/index.d.ts","../../node_modules/@types/trusted-types/index.d.ts","../../node_modules/@types/uuid/index.d.ts","../../node_modules/@types/warning/index.d.ts","../../node_modules/@types/ws/index.d.ts","../../node_modules/@types/yargs-parser/index.d.ts","../../node_modules/@types/yargs/index.d.ts","../../node_modules/@types/yauzl/index.d.ts","../../node_modules/@types/react-router-dom/node_modules/@types/react/global.d.ts","../../node_modules/@types/react-router/node_modules/@types/react/global.d.ts","../../node_modules/@types/react-test-renderer/node_modules/@types/react/global.d.ts"],"fileIdsList":[[85,131,566],[85,131],[85,131,839],[85,131,572,838],[85,131,572,573,834],[85,131,337,837,842],[85,131,337,837,840],[85,131,337,522,567,840,841,843],[85,131,337,837,853],[85,131,337,522,853,854],[85,131,837],[85,131,978],[85,131,545],[85,131,614],[85,131,608,610],[85,131,598,608,609,611,612,613],[85,131,608],[85,131,598,608],[85,131,599,600,601,602,603,604,605,606,607],[85,131,599,603,604,607,608,611],[85,131,599,600,601,602,603,604,605,606,607,608,609,611,612],[85,131,598,599,600,601,602,603,604,605,606,607],[85,131,574],[85,131,574,587,616,626,648,649,650],[85,131,574,616],[85,131,574,587,626],[85,131,574,616,646,647],[85,131,574,646],[85,131,574,587],[85,131,574,587,686,687,688],[85,131,574,587,626,682],[85,131,574,587,616,687,688,712],[85,131,729],[85,131,574,587,735],[85,131,615],[85,131,574,647],[85,131,574,615,616],[85,131,864,904,916,918,924,925,926,927,928,929],[85,131,863],[85,131,864,924,978],[85,131,863,915],[85,131,926],[85,131,863,864,900,924,926,927],[85,131,924],[85,131,864,900,903,915,923],[85,131,863,916,917,924],[85,131,864],[85,131,900,915],[85,131,931,932,933],[85,131,858],[85,131,858,859,860,861,862],[85,131,918,924],[85,131,918,919,924],[85,131,864,900,918,919,924],[85,131,919,920,921,922],[85,131,872],[85,131,935,936,937,938,939,940,941,942,943,944,945,946],[85,131,868],[85,131,872,941],[85,131,863,872,876,887,900,903,915,923,930,934,947,949,950,956,977],[85,131,948],[85,131,901],[85,131,901,902],[85,131,923,930],[85,131,863,872,887,900,905,906,907,908,909,910,930],[85,131,905,906,907,908,909,910,911,912,913,914],[85,131,890],[85,131,863,908],[85,131,863,887,900,903,905,906,907,909,930],[85,131,904,908],[85,131,863,872],[85,131,908],[85,131,876,879,880],[85,131,877],[85,131,882],[85,131,887],[85,131,877,878,879,880,881,882,883,884,885,886],[85,131,872,876,877,878,879],[85,131,872,876,878],[85,131,879],[85,131,867,868,869,870,871],[85,131,868,887],[85,131,867],[85,131,867,868],[85,131,951,952,953,954,955],[85,131,872,900],[85,131,865,866,873,874,875],[85,131,876,887,889,890,891,892],[85,131,876,887,889,895],[85,131,888,889,890,891,892,893,894,896,897,898,899],[85,131,889,890],[85,131,888,890],[85,131,876,887,889],[85,131,890,891],[85,131,876,887,888,889],[85,131,959],[85,131,930],[85,131,930,964],[85,131,957,958,959,960,961,962,963,964,965,966,967,968,969,970,971,972,973,974,975,976],[85,131,915,978],[85,131,146,181,816],[85,131,143,146,174,181,980,981,982],[85,131,146,181],[85,131,985,1013],[85,131,984,990],[85,131,995],[85,131,990],[85,131,989],[85,131,1007],[85,131,1003],[85,131,985,1002,1013],[85,131,984,985,986,987,988,989,991,992,993,994,995,996,997,998,999,1000,1001,1002,1003,1004,1005,1006,1007,1008,1009,1010,1011,1012,1013,1014],[85,131,544,545,1016],[85,131,1017],[85,131,143,146,181,810,811,812],[85,131,136,143,818],[85,131,813,815,817],[85,131,1019],[85,131,1021,1027],[85,131,1022,1023,1024,1025,1026],[85,131,1027],[85,131,1028],[85,131,1029],[85,131,143,181],[85,131,132,181],[85,131,136,181],[85,131,139,181],[85,131,144,181],[85,131,181,1033,1034,1035,1036,1037,1038],[85,131,158,181],[85,131,180,181],[85,131,143,144,146,181,518],[85,128,131],[85,130,131],[131],[85,131,136,166],[85,131,132,137,143,144,151,163,174],[85,131,132,133,143,151],[85,131,134,175],[85,131,135,136,144,152],[85,131,136,163,171],[85,131,137,139,143,151],[85,130,131,138],[85,131,139,140],[85,131,141,143],[85,130,131,143],[85,131,143,144,145,163,174],[85,131,143,144,145,158,163,166],[85,126,131],[85,126,131,139,143,146,151,163,174],[85,131,143,144,146,147,151,163,171,174],[85,131,146,148,163,171,174],[83,84,85,127,128,129,130,131,132,133,134,135,136,137,138,139,140,141,142,143,144,145,146,147,148,149,150,151,152,153,154,155,156,157,158,159,160,161,162,163,164,165,166,167,168,169,170,171,172,173,174,175,176,177,178,179,180],[85,131,143,149],[85,131,150,174],[85,131,139,143,151,163],[85,131,152],[85,131,153],[85,130,131,154],[85,128,129,130,131,132,133,134,135,136,137,138,139,140,141,143,144,145,146,147,148,149,150,151,152,153,154,155,156,157,158,159,160,161,162,163,164,165,166,167,168,169,170,171,172,173,174,175,176,177,178,179,180],[85,131,156],[85,131,157],[85,131,143,158,159],[85,131,158,160,175,177],[85,131,143,163,164,166],[85,131,165,166],[85,131,163,164],[85,131,166],[85,131,167],[85,128,131,163,168],[85,131,143,169,170],[85,131,169,170],[85,131,136,151,163,171],[85,131,172],[85,131,151,173],[85,131,146,157,174],[85,131,136,175],[85,131,163,176],[85,131,150,177],[85,131,178],[85,131,143,145,154,163,166,174,176,177,179],[85,131,163,180],[85,131,576],[85,131,572,575],[85,131,576,760,1027],[85,131,572,1102],[85,131,576,1027],[85,131,572,1103],[85,131,572,1104],[85,131,574,590],[85,131,590,1047,1048,1049,1050],[85,131,571,572,573],[85,131,146,163,181],[85,131,1053,1092],[85,131,1053,1077,1092],[85,131,1092],[85,131,1053],[85,131,1053,1078,1092],[85,131,1053,1054,1055,1056,1057,1058,1059,1060,1061,1062,1063,1064,1065,1066,1067,1068,1069,1070,1071,1072,1073,1074,1075,1076,1077,1078,1079,1080,1081,1082,1083,1084,1085,1086,1087,1088,1089,1090,1091],[85,131,1078,1092],[85,131,144,163,181,518],[85,131,146,181,810,814],[85,131,1094],[85,131,143,146,148,151,163,171,174,180,181],[85,131,1099],[85,131,143,163,181],[85,131,330],[85,131,544,545,546,547],[85,131,548],[85,131,143],[85,131,208,210,211,212,240,247,248,250,253,254,260,261,265,266,267,268],[85,131,132,181,183,194,196,197,200,201,254,266,267],[85,131,197,200,201,202,254,266,268],[85,131,184,201,259],[85,131,183],[85,131,183,211,238,240,248,249,252,266],[85,131,212,260],[85,131,183,201,208,212,213,214,240,246,247,250,252,260,266],[85,131,183,204,208,248,260],[85,131,183,207,248,261],[85,131,183,238,239,250],[85,131,183,200,212,250,252],[85,131,201,203,248,250,252,266],[85,131,183,195,197,200,201,203,206,208,211,213,214,234,235,236,237,240,242,247,248,250,252,253,254,260,261,262,263,264,265,267,268],[85,131,200,206,209,210,211,250,252],[85,131,253,260,266,267,268],[85,131,201,206,212,252,260],[85,131,212,250],[85,131,216,250,252],[85,131,228],[85,131,132,194,195,256,257,259,266,268,271],[85,131,193,196,272],[85,131,194,197,257,259,266,267,268,272],[85,131,213,214,223,224,225,226,227,228,229,230,231,232,234,237,241,242,243,244,245,246,256,257,258,259,270,271,272,273,274,275,276,277,278,279,280,281],[85,131,245],[85,131,184,257,259,260],[85,131,183,184,193,201,205,258,260],[85,131,183,260],[85,131,183,206,260,266],[85,131,183,260,265],[85,131,183,225,227,245,250,252,260],[85,131,183,195,260,266],[85,131,183,200,201,211,222,227,252,260],[85,131,193],[85,131,183,200,208,213,214,227,229,230,243,244,246,248,250,260,266],[85,131,201,206,214,229,231,232,234,243,245,257,258,260,266],[85,131,183,201,227,245],[85,131,248],[85,131,183,248,260,261,277],[85,131,183,207,208,248,278],[85,131,183,238,240,250,260],[85,131,183,200,201,206,211,212,223,226,228,245,250,252,260],[85,131,183,211,224,227,260],[85,131,204,208,234,245],[85,131,183,278],[85,131,183,201,233,248,260,266],[85,131,183,195,197,208,211,214,226,234,235,236,237,241,242,245,248,257,258,260,266,267,268],[85,131,234],[85,131,183,195,215,226,254,256,258,266,267,268],[85,131,183,201,257],[85,131,183,201,255,257,258,259,268],[85,131,260],[85,131,183,212,225,253,254,260],[85,131,204],[85,131,193,194,195,196,197,201,204,205,206,207,209,216,217,233,235,236,238,251,252,262,263,283,284,285,286,287,288,289,290,291,292,293,294,295,296,297],[85,131,284],[85,131,191,193,194,195,268],[85,131,211,248],[85,131,216],[85,131,195],[85,131,199,200],[85,131,183,250],[85,131,211,252],[85,131,211,222],[85,131,201,208,261],[85,131,216,222],[85,131,220],[85,131,196,217,268],[85,131,222,248,250,252,266],[85,131,182,211,250,251],[85,131,201,203,236,260],[85,131,212,250,252],[85,131,183,191,269,282,298,299,303],[85,131,304,324],[85,131,217,252],[85,131,215,218,219,220,221,325],[85,131,252],[85,131,195,259,268,284,317,318,319],[85,131,268,318,319,320],[85,131,318,319,320],[85,131,196,284],[85,131,264,318,319,320,321,322,323],[85,131,196,268,284,285,292,318],[85,131,163,200,250,266],[85,131,200],[85,131,200,202,215,300,301,302],[85,131,198],[85,131,132,163,181,182,183,184,191],[85,131,305,306,307,308,309,310],[85,131,305,306],[85,131,305],[85,131,311],[85,131,158,311],[85,131,311,313],[85,131,132,311],[85,131,311,312,313,314,315,316],[85,131,183,184,185],[85,131,185,186,187,188],[85,131,185],[85,131,185,186,187,188,189,190],[85,131,574,597],[85,131,574,586,588,589,592,593,594,595],[85,131,574,587,588],[85,131,574,588],[85,131,588,591],[85,131,574,588,597,617,618,619],[85,131,621],[85,131,574,588,617],[85,131,574,588,624],[85,131,588,617,626],[85,131,574,588,617,630,631,632,633,634,635,636,637,638],[85,131,574,588,641,642],[85,131,574,587,590],[85,131,573],[85,131,574,588,617,651,652,653,654,655,656,657,658],[85,131,574,588,653,654,659],[85,131,574,617],[85,131,588,650],[85,131,574,588,617,648,652],[85,131,574,588,627],[85,131,574,588,662,663],[85,131,574,662],[85,131,574,588,666],[85,131,574,588,666,667,668,669,670,671,672,673,674,675,676,677],[85,131,574,588,667,670,671],[85,131,574,588,667],[85,131,574,588,644],[85,131,573,574,588],[85,131,586,589,591,592,593,594,595,596,597,618,619,620,622,623,624,625,627,628,629,630,631,632,633,634,635,636,637,638,639,640,641,642,643,644,645,653,654,655,656,657,658,659,660,661,662,663,664,665,666,668,669,672,673,674,676,677,678,681,684,685,690,692,693,694,695,696,697,698,699,700,701,702,703,704,705,706,707,708,709,710,711,714,715,716,717,719,720,721,722,723,724,725,726,727,728,731,733,734,737,738,739,740,741,742,743,744,745,746,747,748,749],[85,131,574,588,670,679,680],[85,131,587,588,683,684],[85,131,574,588,617,682],[85,131,574,588,689,690,692,693,694,695],[85,131,574,588,691],[85,131,587,588,683,697,698],[85,131,574,587,588,700,701,706,707,708],[85,131,574,588,591],[85,131,574,705],[85,131,574,588,654,655,656,657,658,659],[85,131,588,682],[85,131,574,588,689,702,703,704],[85,131,574,587,588,590],[85,131,574,588,617,713],[85,131,574,617,714],[85,131,574,588,716],[85,131,588,718,719],[85,131,588,617,718],[85,131,574,588,617,713,721,722],[85,131,574,588,626,653,659],[85,131,730],[85,131,574,588,617,732],[85,131,573,574,588,680,734,737,738],[85,131,573,588,680,736],[85,131,574,588,699,736],[85,131,574,680],[85,131,574,587,588,617,743,744],[85,131,574,588,597],[85,131,574,627],[85,131,574,588,628,747],[85,131,573,616],[85,131,617,644],[85,131,760],[85,131,574,756],[85,131,574,756,757,758,759],[85,131,543],[85,131,339,340,341,342,343,344,345,346,347,348,349,350,351,352,353,354,357,358,359,360,361,362,363,364,365,366,367,368,373,374,375,376,377,381,382,383,384,385,386,387,388,389,390,392,393,395,396,397,398,399,400,401,402,403,404,405,406,407,408,409,410,411,412,413,414,415,416,417,418,419,420,421,422,423,424,425,426,427,428,429,430,431,432,433,434,435,436,437,438,439,440,441,442,443,444,445,446,447,448,449,450,451,452,453,454,455,456,457,458,459,460,461,462,463,464,465,466,467,468,469,470,471,472,473,474,475,476,477,478,479,480,481,482,483,484,485,486,487,488,489,490,491,492,493,494,495,496,497,498,499,500,501,502],[85,131,344,354,373,380,473],[85,131,363],[85,131,360,363,364,366,367,380,407,435,436],[85,131,354,367,380,404],[85,131,354,380],[85,131,445],[85,131,380,477],[85,131,354,380,478],[85,131,380,478],[85,131,381,429],[85,131,353],[85,131,347,363,380,385,391,430],[85,131,429],[85,131,361,376,380,477],[85,131,354,380,477,481],[85,131,380,477,481],[85,131,344],[85,131,373],[85,131,443],[85,131,339,344,363,380,412],[85,131,363,380],[85,131,380,405,408,455,494],[85,131,366],[85,131,360,363,364,365,380],[85,131,349],[85,131,461],[85,131,350],[85,131,460],[85,131,357],[85,131,347],[85,131,352],[85,131,411],[85,131,412],[85,131,435,468],[85,131,380,404],[85,131,353,354],[85,131,355,356,369,370,371,372,378,379],[85,131,357,361,370],[85,131,352,354,360,370],[85,131,344,349,350,353,354,363,370,371,373,376,377,378],[85,131,356,360,362,369],[85,131,354,360,366,368],[85,131,339,352,357],[85,131,358,360,380],[85,131,339,352,353,360,380],[85,131,353,354,377,380],[85,131,341],[85,131,340,341,347,352,354,357,360,380,412],[85,131,380,477,481,485],[85,131,380,477,481,483],[85,131,343],[85,131,367],[85,131,374,453],[85,131,339],[85,131,354,374,375,376,380,385,391,392,393,394,395],[85,131,373,374,375],[85,131,363,404],[85,131,351,382],[85,131,358,359],[85,131,352,354,363,380,395,405,407,408,409],[85,131,376],[85,131,341,408],[85,131,352,380],[85,131,376,380,413],[85,131,380,478,487],[85,131,347,354,357,366,380,404],[85,131,343,352,354,373,380,405],[85,131,380],[85,131,353,377,380],[85,131,353,377,380,381],[85,131,353,377,380,398],[85,131,380,477,481,490],[85,131,373,380],[85,131,354,373,380,405,409,425],[85,131,373,380,381],[85,131,354,380,412],[85,131,354,357,380,395,403,405,409,423],[85,131,349,354,373,380,381],[85,131,352,354,380],[85,131,352,354,373,380],[85,131,380,391],[85,131,348,380],[85,131,361,364,365,380],[85,131,350,373],[85,131,360,361],[85,131,380,434,437],[85,131,340,450],[85,131,360,368,380],[85,131,360,380,404],[85,131,354,377,465],[85,131,343,352],[85,131,373,381],[85,93,96,99,100,131,174],[85,96,131,163,174],[85,96,100,131,174],[85,131,163],[85,90,131],[85,94,131],[85,92,93,96,131,174],[85,131,151,171],[85,131,181],[85,90,131,181],[85,92,96,131,151,174],[85,87,88,89,91,95,131,143,163,174],[85,96,104,131],[85,88,94,131],[85,96,120,121,131],[85,88,91,96,131,166,174,181],[85,96,131],[85,92,96,131,174],[85,87,131],[85,90,91,92,94,95,96,97,98,100,101,102,103,104,105,106,107,108,109,110,111,112,113,114,115,116,117,118,119,121,122,123,124,125,131],[85,96,113,116,131,139],[85,96,104,105,106,131],[85,94,96,105,107,131],[85,95,131],[85,88,90,96,131],[85,96,100,105,107,131],[85,100,131],[85,94,96,99,131,174],[85,88,92,96,104,131],[85,96,113,131],[85,90,96,120,131,166,179,181],[85,131,574,577,761,823,824,826,829,831],[85,131,144,153,158,330,335,336,525,526,527,532,534,537,538],[85,131,337,567,574,581],[85,131,574,582,829,833,845],[85,131,337,581],[85,131,337,574,577],[85,131,574,750,828],[85,131,337,567,583,584],[85,131,574,585,761,830,845,847],[85,131,337,584],[85,131,337,577,583],[85,131,574,583],[85,131,337,567,753],[85,131,574,752,754,845,849],[85,131,337,753],[85,131,337,577,752],[85,131,574,750,751],[85,131,574,750,761],[85,131,337,567,764],[85,131,574,761,763,765,845,851],[85,131,337,764],[85,131,337,577,763],[85,131,574,750,755,762],[85,131,574,750,762],[85,131,574,750,752,827],[85,131,337,567,574,577,766],[85,131,574,761,767,768,822,855],[85,131,337,766],[85,131,574,583,830],[85,131,335,574,761,763],[85,131,335,574,761,825],[85,131,574,761,821,822],[85,131,337,574,577,578],[85,131,574,750],[85,131,332,333,335,336],[85,131,336],[85,131,144,330],[85,131,330,336],[85,131,144,330,336],[85,131,150,330],[85,131,330,336,528,529,530,531],[85,131,150,330,336,528,529,530,531,535,536],[85,131,144,336],[85,131,153,330,336,528,529,530,531,533],[85,131,338],[85,131,144],[85,131,337,779],[85,131,507,776,777,778,779,780,781,782],[85,131,334,337],[85,131,337],[85,131,331,333,336,337],[85,131,337,784],[85,131,336,337,504,784,786],[85,131,333,336,337,504],[85,131,507,784,785,786,787,788],[85,131,512,784,785,786,787,788],[85,131,337,504],[85,131,522,784,785,786,787,788],[85,131,163,332,333,334,336,337],[85,131,332,333,334,771],[85,131,332,507,771],[85,131,332,512,771],[85,131,332,333,336,337,772],[85,131,332,522,771],[85,131,331,333,334,336,337],[85,131,163,336,337,505,772,793,794,795],[85,131,337,794,796],[85,131,505,507,792,794,795,796],[85,131,336,337,505],[85,131,333,336,337,505],[85,131,333,336,337,503,504],[85,131,337,798,799],[85,131,336,337,798,799],[85,131,337,799],[85,131,512,798,799,800,801,802],[85,131,336,337,798],[85,131,336,337,506],[85,131,332,333,334,336,337,505],[85,131,327,328,329,332,333,334,335,337],[85,131,331,333,337,514,567,807],[85,131,331,333,337,514,807],[85,131,331,507,804,805,807,808],[85,131,514],[85,131,192,329,336,513],[85,131,337,807],[85,131,331,333,337,806],[85,131,333],[85,131,327,328,329,332,334,337],[85,131,818],[85,131,326,333,336,337,507,818,819],[85,131,327,336,337,506],[85,131,508,510],[85,131,151,336,337,507,510],[85,131,151,336,337,507,516],[85,131,151,336,337,507,523],[85,131,144,153,163,192,329,335,336],[85,131,192,325,329,336],[85,131,132,136,144,151,153,192,325,329,335,336,508,525,526,542,552],[85,131,144,151,153,163,192,326,329,336],[85,131,151,163,336,509],[85,131,144,335,513,525,526,543,548,549,551],[85,131,192,325,326,329,336],[85,131,151,336,509],[85,131,163,192,326,329,336],[85,131,333,337,512,514],[85,131,328,336,337,506],[85,131,336,508,516],[85,131,146,326,327,333,336,337,507,520,567],[85,131,520],[85,131,144,146,153,519],[85,131,158,335,525,553],[85,131,326,330,332,334,336,337],[85,131,153,335,336],[85,131,335,550],[85,131,144,153,335,526,550],[85,131,329,336,337,506],[85,131,336,508,523]],"fileInfos":[{"version":"c430d44666289dae81f30fa7b2edebf186ecc91a2d4c71266ea6ae76388792e1","affectsGlobalScope":true,"impliedFormat":1},{"version":"45b7ab580deca34ae9729e97c13cfd999df04416a79116c3bfb483804f85ded4","impliedFormat":1},{"version":"3facaf05f0c5fc569c5649dd359892c98a85557e3e0c847964caeb67076f4d75","impliedFormat":1},{"version":"e44bb8bbac7f10ecc786703fe0a6a4b952189f908707980ba8f3c8975a760962","impliedFormat":1},{"version":"5e1c4c362065a6b95ff952c0eab010f04dcd2c3494e813b493ecfd4fcb9fc0d8","impliedFormat":1},{"version":"68d73b4a11549f9c0b7d352d10e91e5dca8faa3322bfb77b661839c42b1ddec7","impliedFormat":1},{"version":"5efce4fc3c29ea84e8928f97adec086e3dc876365e0982cc8479a07954a3efd4","impliedFormat":1},{"version":"feecb1be483ed332fad555aff858affd90a48ab19ba7272ee084704eb7167569","impliedFormat":1},{"version":"ee7bad0c15b58988daa84371e0b89d313b762ab83cb5b31b8a2d1162e8eb41c2","impliedFormat":1},{"version":"27bdc30a0e32783366a5abeda841bc22757c1797de8681bbe81fbc735eeb1c10","impliedFormat":1},{"version":"8fd575e12870e9944c7e1d62e1f5a73fcf23dd8d3a321f2a2c74c20d022283fe","impliedFormat":1},{"version":"2ab096661c711e4a81cc464fa1e6feb929a54f5340b46b0a07ac6bbf857471f0","impliedFormat":1},{"version":"080941d9f9ff9307f7e27a83bcd888b7c8270716c39af943532438932ec1d0b9","affectsGlobalScope":true,"impliedFormat":1},{"version":"2e80ee7a49e8ac312cc11b77f1475804bee36b3b2bc896bead8b6e1266befb43","affectsGlobalScope":true,"impliedFormat":1},{"version":"c57796738e7f83dbc4b8e65132f11a377649c00dd3eee333f672b8f0a6bea671","affectsGlobalScope":true,"impliedFormat":1},{"version":"dc2df20b1bcdc8c2d34af4926e2c3ab15ffe1160a63e58b7e09833f616efff44","affectsGlobalScope":true,"impliedFormat":1},{"version":"515d0b7b9bea2e31ea4ec968e9edd2c39d3eebf4a2d5cbd04e88639819ae3b71","affectsGlobalScope":true,"impliedFormat":1},{"version":"0559b1f683ac7505ae451f9a96ce4c3c92bdc71411651ca6ddb0e88baaaad6a3","affectsGlobalScope":true,"impliedFormat":1},{"version":"0dc1e7ceda9b8b9b455c3a2d67b0412feab00bd2f66656cd8850e8831b08b537","affectsGlobalScope":true,"impliedFormat":1},{"version":"ce691fb9e5c64efb9547083e4a34091bcbe5bdb41027e310ebba8f7d96a98671","affectsGlobalScope":true,"impliedFormat":1},{"version":"8d697a2a929a5fcb38b7a65594020fcef05ec1630804a33748829c5ff53640d0","affectsGlobalScope":true,"impliedFormat":1},{"version":"4ff2a353abf8a80ee399af572debb8faab2d33ad38c4b4474cff7f26e7653b8d","affectsGlobalScope":true,"impliedFormat":1},{"version":"fb0f136d372979348d59b3f5020b4cdb81b5504192b1cacff5d1fbba29378aa1","affectsGlobalScope":true,"impliedFormat":1},{"version":"d15bea3d62cbbdb9797079416b8ac375ae99162a7fba5de2c6c505446486ac0a","affectsGlobalScope":true,"impliedFormat":1},{"version":"68d18b664c9d32a7336a70235958b8997ebc1c3b8505f4f1ae2b7e7753b87618","affectsGlobalScope":true,"impliedFormat":1},{"version":"eb3d66c8327153d8fa7dd03f9c58d351107fe824c79e9b56b462935176cdf12a","affectsGlobalScope":true,"impliedFormat":1},{"version":"38f0219c9e23c915ef9790ab1d680440d95419ad264816fa15009a8851e79119","affectsGlobalScope":true,"impliedFormat":1},{"version":"69ab18c3b76cd9b1be3d188eaf8bba06112ebbe2f47f6c322b5105a6fbc45a2e","affectsGlobalScope":true,"impliedFormat":1},{"version":"a680117f487a4d2f30ea46f1b4b7f58bef1480456e18ba53ee85c2746eeca012","affectsGlobalScope":true,"impliedFormat":1},{"version":"2f11ff796926e0832f9ae148008138ad583bd181899ab7dd768a2666700b1893","affectsGlobalScope":true,"impliedFormat":1},{"version":"4de680d5bb41c17f7f68e0419412ca23c98d5749dcaaea1896172f06435891fc","affectsGlobalScope":true,"impliedFormat":1},{"version":"954296b30da6d508a104a3a0b5d96b76495c709785c1d11610908e63481ee667","affectsGlobalScope":true,"impliedFormat":1},{"version":"ac9538681b19688c8eae65811b329d3744af679e0bdfa5d842d0e32524c73e1c","affectsGlobalScope":true,"impliedFormat":1},{"version":"0a969edff4bd52585473d24995c5ef223f6652d6ef46193309b3921d65dd4376","affectsGlobalScope":true,"impliedFormat":1},{"version":"9e9fbd7030c440b33d021da145d3232984c8bb7916f277e8ffd3dc2e3eae2bdb","affectsGlobalScope":true,"impliedFormat":1},{"version":"811ec78f7fefcabbda4bfa93b3eb67d9ae166ef95f9bff989d964061cbf81a0c","affectsGlobalScope":true,"impliedFormat":1},{"version":"717937616a17072082152a2ef351cb51f98802fb4b2fdabd32399843875974ca","affectsGlobalScope":true,"impliedFormat":1},{"version":"d7e7d9b7b50e5f22c915b525acc5a49a7a6584cf8f62d0569e557c5cfc4b2ac2","affectsGlobalScope":true,"impliedFormat":1},{"version":"71c37f4c9543f31dfced6c7840e068c5a5aacb7b89111a4364b1d5276b852557","affectsGlobalScope":true,"impliedFormat":1},{"version":"576711e016cf4f1804676043e6a0a5414252560eb57de9faceee34d79798c850","affectsGlobalScope":true,"impliedFormat":1},{"version":"89c1b1281ba7b8a96efc676b11b264de7a8374c5ea1e6617f11880a13fc56dc6","affectsGlobalScope":true,"impliedFormat":1},{"version":"74f7fa2d027d5b33eb0471c8e82a6c87216223181ec31247c357a3e8e2fddc5b","affectsGlobalScope":true,"impliedFormat":1},{"version":"d6d7ae4d1f1f3772e2a3cde568ed08991a8ae34a080ff1151af28b7f798e22ca","affectsGlobalScope":true,"impliedFormat":1},{"version":"063600664504610fe3e99b717a1223f8b1900087fab0b4cad1496a114744f8df","affectsGlobalScope":true,"impliedFormat":1},{"version":"934019d7e3c81950f9a8426d093458b65d5aff2c7c1511233c0fd5b941e608ab","affectsGlobalScope":true,"impliedFormat":1},{"version":"52ada8e0b6e0482b728070b7639ee42e83a9b1c22d205992756fe020fd9f4a47","affectsGlobalScope":true,"impliedFormat":1},{"version":"3bdefe1bfd4d6dee0e26f928f93ccc128f1b64d5d501ff4a8cf3c6371200e5e6","affectsGlobalScope":true,"impliedFormat":1},{"version":"59fb2c069260b4ba00b5643b907ef5d5341b167e7d1dbf58dfd895658bda2867","affectsGlobalScope":true,"impliedFormat":1},{"version":"639e512c0dfc3fad96a84caad71b8834d66329a1f28dc95e3946c9b58176c73a","affectsGlobalScope":true,"impliedFormat":1},{"version":"368af93f74c9c932edd84c58883e736c9e3d53cec1fe24c0b0ff451f529ceab1","affectsGlobalScope":true,"impliedFormat":1},{"version":"af3dd424cf267428f30ccfc376f47a2c0114546b55c44d8c0f1d57d841e28d74","affectsGlobalScope":true,"impliedFormat":1},{"version":"995c005ab91a498455ea8dfb63aa9f83fa2ea793c3d8aa344be4a1678d06d399","affectsGlobalScope":true,"impliedFormat":1},{"version":"959d36cddf5e7d572a65045b876f2956c973a586da58e5d26cde519184fd9b8a","affectsGlobalScope":true,"impliedFormat":1},{"version":"965f36eae237dd74e6cca203a43e9ca801ce38824ead814728a2807b1910117d","affectsGlobalScope":true,"impliedFormat":1},{"version":"3925a6c820dcb1a06506c90b1577db1fdbf7705d65b62b99dce4be75c637e26b","affectsGlobalScope":true,"impliedFormat":1},{"version":"0a3d63ef2b853447ec4f749d3f368ce642264246e02911fcb1590d8c161b8005","affectsGlobalScope":true,"impliedFormat":1},{"version":"8cdf8847677ac7d20486e54dd3fcf09eda95812ac8ace44b4418da1bbbab6eb8","affectsGlobalScope":true,"impliedFormat":1},{"version":"8444af78980e3b20b49324f4a16ba35024fef3ee069a0eb67616ea6ca821c47a","affectsGlobalScope":true,"impliedFormat":1},{"version":"3287d9d085fbd618c3971944b65b4be57859f5415f495b33a6adc994edd2f004","affectsGlobalScope":true,"impliedFormat":1},{"version":"b4b67b1a91182421f5df999988c690f14d813b9850b40acd06ed44691f6727ad","affectsGlobalScope":true,"impliedFormat":1},{"version":"df83c2a6c73228b625b0beb6669c7ee2a09c914637e2d35170723ad49c0f5cd4","affectsGlobalScope":true,"impliedFormat":1},{"version":"436aaf437562f276ec2ddbee2f2cdedac7664c1e4c1d2c36839ddd582eeb3d0a","affectsGlobalScope":true,"impliedFormat":1},{"version":"8e3c06ea092138bf9fa5e874a1fdbc9d54805d074bee1de31b99a11e2fec239d","affectsGlobalScope":true,"impliedFormat":1},{"version":"87dc0f382502f5bbce5129bdc0aea21e19a3abbc19259e0b43ae038a9fc4e326","affectsGlobalScope":true,"impliedFormat":1},{"version":"b1cb28af0c891c8c96b2d6b7be76bd394fddcfdb4709a20ba05a7c1605eea0f9","affectsGlobalScope":true,"impliedFormat":1},{"version":"2fef54945a13095fdb9b84f705f2b5994597640c46afeb2ce78352fab4cb3279","affectsGlobalScope":true,"impliedFormat":1},{"version":"ac77cb3e8c6d3565793eb90a8373ee8033146315a3dbead3bde8db5eaf5e5ec6","affectsGlobalScope":true,"impliedFormat":1},{"version":"56e4ed5aab5f5920980066a9409bfaf53e6d21d3f8d020c17e4de584d29600ad","affectsGlobalScope":true,"impliedFormat":1},{"version":"4ece9f17b3866cc077099c73f4983bddbcb1dc7ddb943227f1ec070f529dedd1","affectsGlobalScope":true,"impliedFormat":1},{"version":"0a6282c8827e4b9a95f4bf4f5c205673ada31b982f50572d27103df8ceb8013c","affectsGlobalScope":true,"impliedFormat":1},{"version":"1c9319a09485199c1f7b0498f2988d6d2249793ef67edda49d1e584746be9032","affectsGlobalScope":true,"impliedFormat":1},{"version":"e3a2a0cee0f03ffdde24d89660eba2685bfbdeae955a6c67e8c4c9fd28928eeb","affectsGlobalScope":true,"impliedFormat":1},{"version":"811c71eee4aa0ac5f7adf713323a5c41b0cf6c4e17367a34fbce379e12bbf0a4","affectsGlobalScope":true,"impliedFormat":1},{"version":"51ad4c928303041605b4d7ae32e0c1ee387d43a24cd6f1ebf4a2699e1076d4fa","affectsGlobalScope":true,"impliedFormat":1},{"version":"60037901da1a425516449b9a20073aa03386cce92f7a1fd902d7602be3a7c2e9","affectsGlobalScope":true,"impliedFormat":1},{"version":"d4b1d2c51d058fc21ec2629fff7a76249dec2e36e12960ea056e3ef89174080f","affectsGlobalScope":true,"impliedFormat":1},{"version":"22adec94ef7047a6c9d1af3cb96be87a335908bf9ef386ae9fd50eeb37f44c47","affectsGlobalScope":true,"impliedFormat":1},{"version":"4245fee526a7d1754529d19227ecbf3be066ff79ebb6a380d78e41648f2f224d","affectsGlobalScope":true,"impliedFormat":1},{"version":"73f78680d4c08509933daf80947902f6ff41b6230f94dd002ae372620adb0f60","affectsGlobalScope":true,"impliedFormat":1},{"version":"c5239f5c01bcfa9cd32f37c496cf19c61d69d37e48be9de612b541aac915805b","affectsGlobalScope":true,"impliedFormat":1},{"version":"8e7f8264d0fb4c5339605a15daadb037bf238c10b654bb3eee14208f860a32ea","affectsGlobalScope":true,"impliedFormat":1},{"version":"782dec38049b92d4e85c1585fbea5474a219c6984a35b004963b00beb1aab538","affectsGlobalScope":true,"impliedFormat":1},{"version":"d153a11543fd884b596587ccd97aebbeed950b26933ee000f94009f1ab142848","affectsGlobalScope":true,"impliedFormat":1},{"version":"c0671b50bb99cc7ad46e9c68fa0e7f15ba4bc898b59c31a17ea4611fab5095da","affectsGlobalScope":true,"impliedFormat":1},{"version":"d802f0e6b5188646d307f070d83512e8eb94651858de8a82d1e47f60fb6da4e2","affectsGlobalScope":true,"impliedFormat":1},{"version":"8e9c23ba78aabc2e0a27033f18737a6df754067731e69dc5f52823957d60a4b6","impliedFormat":1},{"version":"cdcf9ea426ad970f96ac930cd176d5c69c6c24eebd9fc580e1572d6c6a88f62c","impliedFormat":1},{"version":"23cd712e2ce083d68afe69224587438e5914b457b8acf87073c22494d706a3d0","impliedFormat":1},{"version":"487b694c3de27ddf4ad107d4007ad304d29effccf9800c8ae23c2093638d906a","impliedFormat":1},{"version":"e525f9e67f5ddba7b5548430211cae2479070b70ef1fd93550c96c10529457bd","impliedFormat":1},{"version":"ccf4552357ce3c159ef75f0f0114e80401702228f1898bdc9402214c9499e8c0","impliedFormat":1},{"version":"c6fd2c5a395f2432786c9cb8deb870b9b0e8ff7e22c029954fabdd692bff6195","impliedFormat":1},{"version":"68834d631c8838c715f225509cfc3927913b9cc7a4870460b5b60c8dbdb99baf","impliedFormat":1},{"version":"4bc0794175abedf989547e628949888c1085b1efcd93fc482bccd77ee27f8b7c","impliedFormat":1},{"version":"3c8e93af4d6ce21eb4c8d005ad6dc02e7b5e6781f429d52a35290210f495a674","impliedFormat":1},{"version":"2c9875466123715464539bfd69bcaccb8ff6f3e217809428e0d7bd6323416d01","impliedFormat":1},{"version":"ea6bc8de8b59f90a7a3960005fd01988f98fd0784e14bc6922dde2e93305ec7d","impliedFormat":1},{"version":"36107995674b29284a115e21a0618c4c2751b32a8766dd4cb3ba740308b16d59","impliedFormat":1},{"version":"914a0ae30d96d71915fc519ccb4efbf2b62c0ddfb3a3fc6129151076bc01dc60","impliedFormat":1},{"version":"33e981bf6376e939f99bd7f89abec757c64897d33c005036b9a10d9587d80187","impliedFormat":1},{"version":"6c8e442ba33b07892169a14f7757321e49ab0f1032d676d321a1fdab8a67d40c","impliedFormat":1},{"version":"b41767d372275c154c7ea6c9d5449d9a741b8ce080f640155cc88ba1763e35b3","impliedFormat":1},{"version":"1cd673d367293fc5cb31cd7bf03d598eb368e4f31f39cf2b908abbaf120ab85a","impliedFormat":1},{"version":"af13e99445f37022c730bfcafcdc1761e9382ce1ea02afb678e3130b01ce5676","impliedFormat":1},{"version":"3825bf209f1662dfd039010a27747b73d0ef379f79970b1d05601ec8e8a4249f","impliedFormat":1},{"version":"0b6e25234b4eec6ed96ab138d96eb70b135690d7dd01f3dd8a8ab291c35a683a","impliedFormat":1},{"version":"9666f2f84b985b62400d2e5ab0adae9ff44de9b2a34803c2c5bd3c8325b17dc0","impliedFormat":1},{"version":"da52342062e70c77213e45107921100ba9f9b3a30dd019444cf349e5fb3470c4","impliedFormat":1},{"version":"e9ace91946385d29192766bf783b8460c7dbcbfc63284aa3c9cae6de5155c8bc","impliedFormat":1},{"version":"40b463c6766ca1b689bfcc46d26b5e295954f32ad43e37ee6953c0a677e4ae2b","impliedFormat":1},{"version":"249b9cab7f5d628b71308c7d9bb0a808b50b091e640ba3ed6e2d0516f4a8d91d","impliedFormat":1},{"version":"1e30c045732e7db8f7a82cf90b516ebe693d2f499ce2250a977ec0d12e44a529","impliedFormat":1},{"version":"84b736594d8760f43400202859cda55607663090a43445a078963031d47e25e7","impliedFormat":1},{"version":"499e5b055a5aba1e1998f7311a6c441a369831c70905cc565ceac93c28083d53","impliedFormat":1},{"version":"54c3e2371e3d016469ad959697fd257e5621e16296fa67082c2575d0bf8eced0","impliedFormat":1},{"version":"beb8233b2c220cfa0feea31fbe9218d89fa02faa81ef744be8dce5acb89bb1fd","impliedFormat":1},{"version":"78b29846349d4dfdd88bd6650cc5d2baaa67f2e89dc8a80c8e26ef7995386583","impliedFormat":1},{"version":"5d0375ca7310efb77e3ef18d068d53784faf62705e0ad04569597ae0e755c401","impliedFormat":1},{"version":"59af37caec41ecf7b2e76059c9672a49e682c1a2aa6f9d7dc78878f53aa284d6","impliedFormat":1},{"version":"addf417b9eb3f938fddf8d81e96393a165e4be0d4a8b6402292f9c634b1cb00d","impliedFormat":1},{"version":"e38d4fdf79e1eadd92ed7844c331dbaa40f29f21541cfee4e1acff4db09cda33","impliedFormat":1},{"version":"8bd86b8e8f6a6aa6c49b71e14c4ffe1211a0e97c80f08d2c8cc98838006e4b88","impliedFormat":1},{"version":"7c10a32ae6f3962672e6869ee2c794e8055d8225ef35c91c0228e354b4e5d2d3","impliedFormat":1},{"version":"2e85db9e6fd73cfa3d7f28e0ab6b55417ea18931423bd47b409a96e4a169e8e6","impliedFormat":1},{"version":"c46e079fe54c76f95c67fb89081b3e399da2c7d109e7dca8e4b58d83e332e605","impliedFormat":1},{"version":"99f569b42ea7e7c5fe404b2848c0893f3e1a56e0547c1cd0f74d5dbb9a9de27e","impliedFormat":1},{"version":"f4b4faedc57701ae727d78ba4a83e466a6e3bdcbe40efbf913b17e860642897c","affectsGlobalScope":true,"impliedFormat":1},{"version":"bbcfd9cd76d92c3ee70475270156755346c9086391e1b9cb643d072e0cf576b8","impliedFormat":1},{"version":"7394959e5a741b185456e1ef5d64599c36c60a323207450991e7a42e08911419","impliedFormat":1},{"version":"72c1f5e0a28e473026074817561d1bc9647909cf253c8d56c41d1df8d95b85f7","impliedFormat":1},{"version":"003ec918ec442c3a4db2c36dc0c9c766977ea1c8bcc1ca7c2085868727c3d3f6","affectsGlobalScope":true,"impliedFormat":1},{"version":"938f94db8400d0b479626b9006245a833d50ce8337f391085fad4af540279567","impliedFormat":1},{"version":"c4e8e8031808b158cfb5ac5c4b38d4a26659aec4b57b6a7e2ba0a141439c208c","impliedFormat":1},{"version":"2c91d8366ff2506296191c26fd97cc1990bab3ee22576275d28b654a21261a44","affectsGlobalScope":true,"impliedFormat":1},{"version":"5524481e56c48ff486f42926778c0a3cce1cc85dc46683b92b1271865bcf015a","impliedFormat":1},{"version":"db39d9a16e4ddcd8a8f2b7b3292b362cc5392f92ad7ccd76f00bccf6838ac7de","affectsGlobalScope":true,"impliedFormat":1},{"version":"289e9894a4668c61b5ffed09e196c1f0c2f87ca81efcaebdf6357cfb198dac14","impliedFormat":1},{"version":"25a1105595236f09f5bce42398be9f9ededc8d538c258579ab662d509aa3b98e","impliedFormat":1},{"version":"5078cd62dbdf91ae8b1dc90b1384dec71a9c0932d62bdafb1a811d2a8e26bef2","impliedFormat":1},{"version":"a2e2bbde231b65c53c764c12313897ffdfb6c49183dd31823ee2405f2f7b5378","impliedFormat":1},{"version":"ad1cc0ed328f3f708771272021be61ab146b32ecf2b78f3224959ff1e2cd2a5c","impliedFormat":1},{"version":"71450bbc2d82821d24ca05699a533e72758964e9852062c53b30f31c36978ab8","affectsGlobalScope":true,"impliedFormat":1},{"version":"62f572306e0b173cc5dfc4c583471151f16ef3779cf27ab96922c92ec82a3bc8","affectsGlobalScope":true,"impliedFormat":1},{"version":"067bdd82d9768baddbdc8df51d85f7b96387c47176bf7f895d2e21e2b6b2f1f4","impliedFormat":1},{"version":"42d30e7d04915facc3ded22b4127c9f517973b4c2b1326e56c10ff70daf6800a","impliedFormat":1},{"version":"bd8b644c5861b94926687618ec2c9e60ad054d334d6b7eb4517f23f53cb11f91","impliedFormat":1},{"version":"bcbabfaca3f6b8a76cb2739e57710daf70ab5c9479ab70f5351c9b4932abf6bd","impliedFormat":1},{"version":"77fced47f495f4ff29bb49c52c605c5e73cd9b47d50080133783032769a9d8a6","impliedFormat":1},{"version":"55f370475031b3d36af8dd47fb3934dff02e0f1330d13f1977c9e676af5c2e70","impliedFormat":1},{"version":"c54f0b30a787b3df16280f4675bd3d9d17bf983ae3cd40087409476bc50b922d","affectsGlobalScope":true,"impliedFormat":1},{"version":"0f5cda0282e1d18198e2887387eb2f026372ebc4e11c4e4516fef8a19ee4d514","impliedFormat":1},{"version":"e99b0e71f07128fc32583e88ccd509a1aaa9524c290efb2f48c22f9bf8ba83b1","impliedFormat":1},{"version":"76957a6d92b94b9e2852cf527fea32ad2dc0ef50f67fe2b14bd027c9ceef2d86","impliedFormat":1},{"version":"5e9f8c1e042b0f598a9be018fc8c3cb670fe579e9f2e18e3388b63327544fe16","affectsGlobalScope":true,"impliedFormat":1},{"version":"a8a99a5e6ed33c4a951b67cc1fd5b64fd6ad719f5747845c165ca12f6c21ba16","affectsGlobalScope":true,"impliedFormat":1},{"version":"a58a15da4c5ba3df60c910a043281256fa52d36a0fcdef9b9100c646282e88dd","impliedFormat":1},{"version":"b36beffbf8acdc3ebc58c8bb4b75574b31a2169869c70fc03f82895b93950a12","impliedFormat":1},{"version":"de263f0089aefbfd73c89562fb7254a7468b1f33b61839aafc3f035d60766cb4","impliedFormat":1},{"version":"70b57b5529051497e9f6482b76d91c0dcbb103d9ead8a0549f5bab8f65e5d031","impliedFormat":1},{"version":"8c81fd4a110490c43d7c578e8c6f69b3af01717189196899a6a44f93daa57a3a","impliedFormat":1},{"version":"1013eb2e2547ad8c100aca52ef9df8c3f209edee32bb387121bb3227f7c00088","impliedFormat":1},{"version":"e07c573ac1971ea89e2c56ff5fd096f6f7bba2e6dbcd5681d39257c8d954d4a8","impliedFormat":1},{"version":"363eedb495912790e867da6ff96e81bf792c8cfe386321e8163b71823a35719a","impliedFormat":1},{"version":"37ba7b45141a45ce6e80e66f2a96c8a5ab1bcef0fc2d0f56bb58df96ec67e972","impliedFormat":1},{"version":"125d792ec6c0c0f657d758055c494301cc5fdb327d9d9d5960b3f129aff76093","impliedFormat":1},{"version":"12aad38de6f0594dc21efa78a2c1f67bf6a7ef5a389e05417fe9945284450908","affectsGlobalScope":true,"impliedFormat":1},{"version":"ea713aa14a670b1ea0fbaaca4fd204e645f71ca7653a834a8ec07ee889c45de6","impliedFormat":1},{"version":"1e080418e53f9b7a05db81ab517c4e1d71b7194ee26ddd54016bcef3ac474bd4","impliedFormat":1},{"version":"9705cd157ffbb91c5cab48bdd2de5a437a372e63f870f8a8472e72ff634d47c1","affectsGlobalScope":true,"impliedFormat":1},{"version":"ae86f30d5d10e4f75ce8dcb6e1bd3a12ecec3d071a21e8f462c5c85c678efb41","impliedFormat":1},{"version":"982efeb2573605d4e6d5df4dc7e40846bda8b9e678e058fc99522ab6165c479e","impliedFormat":1},{"version":"e03460fe72b259f6d25ad029f085e4bedc3f90477da4401d8fbc1efa9793230e","impliedFormat":1},{"version":"4286a3a6619514fca656089aee160bb6f2e77f4dd53dc5a96b26a0b4fc778055","impliedFormat":1},{"version":"3b63610eaabadf26aadf51a563e4b2a8bf56eeaab1094f2a2b21509008eaef0c","affectsGlobalScope":true,"impliedFormat":1},{"version":"2d5d50cd0667d9710d4d2f6e077cc4e0f9dc75e106cccaea59999b36873c5a0d","affectsGlobalScope":true,"impliedFormat":1},{"version":"784490137935e1e38c49b9289110e74a1622baf8a8907888dcbe9e476d7c5e44","impliedFormat":1},{"version":"42180b657831d1b8fead051698618b31da623fb71ff37f002cb9d932cfa775f1","impliedFormat":1},{"version":"4f98d6fb4fe7cbeaa04635c6eaa119d966285d4d39f0eb55b2654187b0b27446","impliedFormat":1},{"version":"f8529fe0645fd9af7441191a4961497cc7638f75a777a56248eac6a079bb275d","affectsGlobalScope":true,"impliedFormat":1},{"version":"4445f6ce6289c5b2220398138da23752fd84152c5c95bb8b58dedefc1758c036","impliedFormat":1},{"version":"a51f786b9f3c297668f8f322a6c58f85d84948ef69ade32069d5d63ec917221c","impliedFormat":1},{"version":"f21ce049835dad382b22691fb6b34076d0717307d46d92320893765be010cd56","impliedFormat":1},{"version":"ab189eb5d2f2bd7434f174b6d0e955ba75e7d1758d343a74932a96f19e04b510","impliedFormat":1},{"version":"ceb14714d9447ad60d32aaabd14ab532cf925d39ba1630795dfe3e9f74bc88a6","impliedFormat":1},{"version":"282bde3263fe03c8cd5ac013ae0b447a8a15a7d3f0b2488f3a212d14384e480f","impliedFormat":1},{"version":"213805012624f870635688113e692773d20b167717662e5b6e481945d4add36d","impliedFormat":1},{"version":"ab86380ba77855c05b584c881ad115c4b8886f7173e68480e0de4ef11d854cf3","impliedFormat":1},{"version":"665f83fc3e9992c7a5e15a470e4b9e10e8b588c35593b0058c8d1a9eca487c56","impliedFormat":1},{"version":"158b9645b5b124b8993dab9815a06df7b6e31d874e989603a26a76608ab764cf","impliedFormat":1},{"version":"dd36b144e0e70b4e38f588913af663ed959b10b5cf80952a4beb22a10255bf08","impliedFormat":1},{"version":"d064b43717b5b5dfca0d6cd738022ab377c90e45f05edbcd5a0c8753e6627d88","impliedFormat":1},{"version":"5c443fbbfcd5c0085974c10c9f4dd454b92f183b1b00a5ef447ac2ebc90f9704","impliedFormat":1},{"version":"66e24869ef897fb27f3ec23ea3cf11f14aaaf91fb8c3659629df10e398dd7e29","impliedFormat":99},{"version":"2ce2ca1f7c7a9f015db841d47c6f21c972cea76e99831f11a61a6ce1b0f5f16f","impliedFormat":99},{"version":"4c9f30805ce0df33a43c9c808bb944e6e7465eff2b12702f5927a82c884cc2c1","impliedFormat":99},{"version":"3364ad5f99ec377a531ba9b3b0d593421ee667a7b6c230bfd5ccd39a4fd86502","impliedFormat":99},{"version":"d9e68cab5f4764ebee80c813b3250d601b8da57930bf3942424569ace3e94d31","impliedFormat":99},{"version":"980d84ab65a61d1979a22e5cd3322672e75fb148392b6903d08ccef59bbf530c","impliedFormat":1},{"version":"c5912556b159da556c53c353183ffddadaeaab1c9d63aef12e525ae6c5bf270b","impliedFormat":99},{"version":"8f17661a6876cfb9db909c7df9b373e31070f6ee8b30294855a951aadf0345a0","affectsGlobalScope":true,"impliedFormat":99},{"version":"5d96d95bfd651462604fe8e134911618aaa252c77baf50f852aacd00f925cd72","impliedFormat":99},{"version":"4fb848207d794f656b267f0dd6273a65e664cbfc752059d3f32c3ce73f005b52","impliedFormat":99},{"version":"543f3fad9ebec896d424f0871ea0a268d2658fda5ad75d9cbccd7ca8bb51bc5e","impliedFormat":99},{"version":"e835c2e3462358e42ce5900346178da16ce2f727f48af88f1264717c17c9c1c4","impliedFormat":99},{"version":"2755f3a9529301df202c11d2408065375c6e7686610195cfad94346c8cff51c7","impliedFormat":99},{"version":"67a84b3270bd6325c3cec69af36364ecf0b57d758bfce8b88038ca106438fe50","impliedFormat":99},{"version":"03df83f3c54307ca0659a5c21165348ed2c1f52fdc7207914dc0a05caee525b4","impliedFormat":99},{"version":"01db68e7f740ac65ec3a24c4581618e0f8203ee3c1acd6346a551f8055812f21","impliedFormat":99},{"version":"80a9ad99b09328b9e875138faf66486086392f03fb6a9ce07b704a4d53153c0a","impliedFormat":99},{"version":"41632e181c0b5e8fbfb122777ec30e45cf1177f84879aa2bdbfc7cd66d5e6356","impliedFormat":99},{"version":"4cec0506af265ac8176523b6a75a9c06d5d69618855781d0191dc52b60c018a8","impliedFormat":99},{"version":"48d3a8f9239ed151cc200cf7985ea92b28249513c41dbdfeadf78357c5f18ec1","impliedFormat":99},{"version":"6aaa8267f4ece7dd4d836296de15b9529f93fd4e5c4f3c4d065c03a3122580dc","impliedFormat":99},{"version":"abbaf1d2815b4b99d8bc0d3029adf39d2d1588d5539865ce5fc63455b168d959","impliedFormat":99},{"version":"ab7c6ca3f1371e8ce477377bd9cdadff7f84b1317ebc66726c64d1af26b681e1","impliedFormat":99},{"version":"c796a2795dc3d049893220db1e12a25bfaf06a44e230d4d2c4bf72fa3e460896","impliedFormat":99},{"version":"39e00ffa6bf29d992db5c3efff1cf96d0c20904b9524462971739593d5b8dbec","impliedFormat":99},{"version":"42b652e8c90509675c18f90a860d3f158cc70ee6a7f2ae6c2eda114c2c9ca952","impliedFormat":99},{"version":"bc055e255b285142f6d0f0c7cb3b8125e2d9e7373433bee4c5060e8a73c7b3ff","impliedFormat":99},{"version":"aafb22df14bead42801f624d917c944bf60cc47ff3fd644b8decce0dd8d49e8b","impliedFormat":99},{"version":"b2a618b9134f6be213a67b79a8bd3513d2ca0e9c4719480657e6adaed9f61867","impliedFormat":99},{"version":"ca437f09f6649a7ee5b13267251b4303e51bb0aea5d0ae7a8fa5021943ecb7c7","impliedFormat":99},{"version":"c4fb6dcd777546f5970fa4353417a6d5c9039d32d3fb0f8de224fb3092a9c41c","impliedFormat":99},{"version":"b8eea8cb0e3b23f078b0be89b9592c58ba0c737fbc174c41f4830691475cf339","impliedFormat":99},{"version":"790d7a4f424f2029d1234e832938d9c0ba1137cf8b7a4b127f3536f8062a1765","impliedFormat":99},{"version":"8a2d033e62ab4486a0016092c4b667525a4bbd6b7b68159e45ecaadaf4a71099","impliedFormat":99},{"version":"eff91c86be0270d5544352eaafae38768c59222d84a1e440b0a96ef0b36facaa","impliedFormat":99},{"version":"c84277a02c432a56a79f5257153a8261e30236dc7082e6c054808e5bd4d81a33","impliedFormat":99},{"version":"4ab0c0d9285b30fdccdcd8a4d79f38981722da5c4997377c3b7e9360b0e9a887","impliedFormat":99},{"version":"4b5b4edd9cf9d826871a13b0c1d9cc43865e64eec8696f8fce5baf7a9c3fabbc","impliedFormat":99},{"version":"cc3612d56cd439a886cd08f8de12b4443b7bdf24e6d2a29fae32f904b311b9f9","impliedFormat":99},{"version":"b9f115277f53061e076f6c6a89303f713867e7bf2d32f8b5967d505ae13932bb","impliedFormat":99},{"version":"f46ce75eb31246017422e2c9a001836eae839cd62c1060daf0611c6dca85ca64","impliedFormat":99},{"version":"76d8a8bccc71072c5169786f40d4c278bfb34388ccdf9de9587865d188fd7a6e","impliedFormat":99},{"version":"bd300890069151b61740ea3dbf88ddf8ab1303af5154b12cbcc06147d6aa7c17","impliedFormat":99},{"version":"b24fc3dfbdc15f7daa6cf8b6ffe457fd872c2564a60264901340ebb830aa8826","impliedFormat":99},{"version":"4d25694ae20937f2f6e90eff01160afb884cdae11daa672174fd7d325700843b","impliedFormat":99},{"version":"b15dae63d349652d8019f015719225a0a584497dfa31146c347c0cf3cf1a93b0","impliedFormat":99},{"version":"6ec873465202bc7831876711fdb8826b597e2d8c91c7d3e3c8ed0b6518998c52","impliedFormat":99},{"version":"d8352a30103a7cc55eb6c3415e9b59ea3db731fcf82ecb68a57efb8dc6899700","impliedFormat":99},{"version":"cb1c9ca3571a0f74b54ecb468d54a438726b0bc330c418289e35fae569e43276","impliedFormat":99},{"version":"cd91681e132149b4c662f653bb31e67a4df87d9d799fe0a42a6736e7130e4597","impliedFormat":99},{"version":"e476a8fe1533a00bcc1619fd5921645ccc978c5be63e3d2230da0c3546b84608","impliedFormat":99},{"version":"c8cff3d3d801ddc09830695e29661fcef3ac89c85997da2b10ae9bbe0732622a","impliedFormat":99},{"version":"f3762af9bbe8f13f7074a64ed712111a111b1668354459e4908071abb1c60456","impliedFormat":99},{"version":"a5e005bd18ef0c5bd74d74eaacc6e41151d24805a7656b8b639e970ef20f398f","impliedFormat":99},{"version":"d5c719f2e1561dc51cd8921a9d68490a06512e05df5da91032bb8bef71c4714b","impliedFormat":99},{"version":"979613d0d260f469f989aa03fe318cb68ba9261b3b5c893ec934c939c64034e3","impliedFormat":99},{"version":"3b32a93b2b78c966dfdf4af6d1c061855afaaff41904b0386b61ef832160dd4a","impliedFormat":99},{"version":"ffde16611e80cdec293fbab87f112728b996baa6149f9ba73144e523f7b60aba","impliedFormat":99},{"version":"c12b5db6235e766b112a9f7f7486c82a1b760552459aa70ef6340aabf1f40990","impliedFormat":99},{"version":"609445891450fd10ea82b6355c82c6c4710b209d84f8921f4e7a87b8c7017c1d","impliedFormat":99},{"version":"d5e3bce3a3e1abef3c3340347569a458e17c9a9283da52877b0a087adbbdba94","impliedFormat":99},{"version":"70a9d7a02d83dc1ebd55f9ff1476bb55d54e03c320526106055c41bf925e7437","impliedFormat":99},{"version":"dfdf7d2c615a0f6b18eebce57bcab7f03db0ea06d7595b2a4d66c981a3fe0629","impliedFormat":99},{"version":"375715b05f6f36e5fb1f620bdf0baa16265aa12ccfedd40b56e60eec2dc391c4","impliedFormat":99},{"version":"92bc808ad1f6952b2b6bd534c84b6af5357ca9f1f545fb99475db8b7c4c41007","impliedFormat":99},{"version":"e273c75ddf2d5c345606c33c3532588d33904b17eb46ca9931fb1e827f5bcaa2","impliedFormat":99},{"version":"1b2ad38b5fcca22c21c7fac461520f0cd3eb9403a2379d63547f9dc3317640f7","impliedFormat":99},{"version":"86aaa6b8d841a1413afeeef5ccee745ef0223e5cc16d03569f327415f7a2e95e","impliedFormat":99},{"version":"a80189bd551b8e5c7486a87a14ea438eb1882c80fae4419da5b94a9a7b8e1f09","impliedFormat":99},{"version":"a6324d9b09d0c8bcb468d62f142a0a95c17ff2f47dd032d865d22064cbb27d0e","impliedFormat":99},{"version":"b4cab94ecea75824f576e27228597db1d79e9f50dbb0f1ae217e9b153e0f8906","impliedFormat":99},{"version":"6ee5a153cc635a7deb917662819e5a896acc4578ee5f4da5b16276f9509a2c48","impliedFormat":99},{"version":"2072403b5b423c48b50a3c7f8b29bd410c60f96ca7f3de9ac13e1e90820959e4","impliedFormat":99},{"version":"83357c1d786d68887cae5e5ca80a8d97e2b2f21d45014dfdf5ad0a9cdf198848","impliedFormat":99},{"version":"ebf90678b741111bf86fea0a44c375c4d1336de637a3870c0e457a96b9b92c34","impliedFormat":99},{"version":"0544cdc281df534d935b610eb0a5d6e7397f1a848659ef7ba0a4f8cf9c8b073d","impliedFormat":99},{"version":"eee704ee98537ccb50f7d25dda0e994c07c162420df40b62f31c6e8d0128fc6d","impliedFormat":99},{"version":"a7c1d8ad5907766aac16ac47df232321e17b2e6413a07bd012d2c5106ced317b","impliedFormat":99},{"version":"577eeb11be17aff5b821b6ed7fe33c3b4b4502362b020bfc4a953f6b16bb155f","impliedFormat":99},{"version":"601ea57354ba67f4bc9220705127facb65ae174e5e75c17deb772f6cf4f1dff0","impliedFormat":99},{"version":"7ace44b3150c4b19a8ce98eb1d140e2bca6aa4d5b8d9e0eeaa3946088f9253b9","impliedFormat":99},{"version":"0fde30fe0d6b596420c23a1b91dec4e4566a64d73d08c138d5b934ef02c56b8e","impliedFormat":99},{"version":"b2beca8c167fe40671e8344d138f9e4b2d062efe450f406785e83d55a18a2b8a","impliedFormat":99},{"version":"81f645dfc0dc460374c3403cb54833494444553141aee0bf8ab2fab2c77ba70b","impliedFormat":99},{"version":"5a9e48eb3e8b5ff8548c80fef1c810b61736aef336b6115ecbba2457063e9ea6","impliedFormat":99},{"version":"53b648c4bbb7c4a2c3c1748194e9d0040b549cbf856be3b4a2b076fc24900a74","impliedFormat":99},{"version":"990ea60933da554badc81b722051f2377178977651cdd59d7f202cfaabe54cc6","impliedFormat":99},{"version":"8462c6bff909082dedda26d6248be5032e35f30b275f914166da91e3a88d4d7b","impliedFormat":99},{"version":"c0b2de0d467c4edb02f0f1c00b7e05534344a431d70b118f97aaa67967cc3bfa","impliedFormat":99},{"version":"7728e17087415d870614b695f8a62319a63f56e325f00b81de0f4c54ea8408c9","impliedFormat":99},{"version":"28816ff4b2e67e516e9d9e2ea1593e3583f991d9ad7ff804f906058c6b557267","impliedFormat":99},{"version":"6ab79b1a124c55e6e687c5bf7095503e764ea1f17d5c0d908647fb0560483f4a","impliedFormat":99},{"version":"82370a2f3cbc9099b243bc47b47069a82d1e9f942b3c7c9e7a7ae22242c9b549","impliedFormat":99},{"version":"4b94de93372389a3dcc1fc060ed9717a5a11efe9a28947aa923d8b10d7ae0946","affectsGlobalScope":true,"impliedFormat":99},{"version":"bb297de74be1722d326f523b61fd4247f1bb1e24a415b42e02552e54c01089f7","impliedFormat":99},{"version":"65d518c2571e520a3bf1ea2385d6e9cb62e5d22876b6b5a26cde1776be005df9","impliedFormat":99},{"version":"f32781757f9183d38acea75f488944af7d96042b657fb2f6d763fbfda4a586ad","impliedFormat":99},{"version":"d94ad86c8ec63a3062fb8ffdc288bc41c6d5d508fce08ec850f40def04bee4f0","impliedFormat":99},{"version":"0a9e4cabb0c96c58f8728b2b372eba812ee6f1265385534efbc5da6945580810","impliedFormat":99},{"version":"534dabcb6a41c85a2c22ac71d6c0ade74b8abd4d9c64675e4aaa64b6df9b4af2","impliedFormat":99},{"version":"22df486c37dc0f82387b17d3c354423dbc33f53660dcff3dd797a50f38e11808","impliedFormat":99},{"version":"66316257d8770fa2cfc3ceeaf154eecdb1d0b92674088437218a1c9d6dcbf179","impliedFormat":99},{"version":"54c878d17b12130136b3ca88092719e909ed7f9d9dad568f333da07821f30a93","impliedFormat":99},{"version":"c3c81ec172911af3225e67af92b80d54aa18081b097f32cad76f21f5ca2e3111","impliedFormat":99},{"version":"a7160c4eee8103fa34e486d469892cb341295659290303cdc84f5f362b94dde2","impliedFormat":99},{"version":"fdccda7abcf75ff0d40c0598ba964ff0c36c86b4d345f06ced4aab7f2aef17fc","impliedFormat":99},{"version":"88d0cee37ed173e56f639077be8e659583d80b4af302b21caa2a60c943f0d0f2","impliedFormat":99},{"version":"ab175a6055a330ae85db197c62a729dc7852b8cef528307089d18346a053a31c","impliedFormat":99},{"version":"f4f75bf9d3b0c40438731d5d8a8f2d5743403101f11618a574d1f882d23fe416","impliedFormat":99},{"version":"9c6d0beddf34c99d2726a96fa020bb19bf46711083c7659df22e57e88497ba77","impliedFormat":99},{"version":"87de3b1f06af37d4a9fdcafdf576a1b5d511e6f80007cbcbae6fad63d1496b81","impliedFormat":99},{"version":"5f59db6bfea99e031aa57bf46a411e44f10cd6c9f3f89b2ea7e34d500ad88da6","impliedFormat":99},{"version":"dec3eea620eb3b6a92f34a3b0eacd2ce380b3ee1534dfeb3fdf87292d60a7662","impliedFormat":1},{"version":"43d0b9e548423d5b3e18da5a730a4b88bf79de0da9ee86074ae7407d2d0a3a30","impliedFormat":1},{"version":"926436925f92ab0dc9fa79b2b017ac8021c67bc9e67733b0dccf40f7d4641444","impliedFormat":1},{"version":"926436925f92ab0dc9fa79b2b017ac8021c67bc9e67733b0dccf40f7d4641444","impliedFormat":1},{"version":"8a1aadc9be97a4585462c8f47da805ac76b0d097e735ea7e96cda052ea5d0aa4","impliedFormat":1},{"version":"c7b4e4a9b6385ba6da1c96424422aeed5173dbb4b04d412d5ec7f2364293d906","impliedFormat":1},{"version":"d6affb3b1bb702998a2c688746777657cd67ef8d414a0d1febc0a69c46610219","impliedFormat":1},{"version":"3311f573c7a2c973cb121f9b5936d883791a6c2a8c71edffb423138d387637d4","impliedFormat":1},{"version":"da433bdc883124501021e0a7214d73927aeffbd97e99b10288f491a5c51ba142","impliedFormat":1},{"version":"369b016417b3c87952cb5e74d7d49a28c9478c63e3edacebef0d8ecfff276665","impliedFormat":1},{"version":"c13bd0c085ca142129f97a360a93e9ed3df8ec2800669fecfd89bb9c0f49ce08","impliedFormat":1},{"version":"6804de6b44b809ffb0344ccb983582ef32f7eba5b31bcd5e196260678e5fb9ce","impliedFormat":1},{"version":"c1f982bf2fa1fc66145a71e1e99b6f86e1659ddb83515f19ea0c8c3964460221","impliedFormat":1},{"version":"b15370690bd0acbd4c34f427402709e493bf59bb89d165f4ae26fc11d60f53e0","impliedFormat":99},{"version":"623f1f64df738f2c1d7b1531873615fe59e024da589d4879f128e2127b3c7070","impliedFormat":99},{"version":"16288962b259ee75ca703d7541a86df925bd4b5bcbd2e45028364b378887591f","impliedFormat":99},{"version":"c523702f6ad123ce1173ff021975cdd2ad4d879c3ee85be996c7901daa07b523","impliedFormat":99},{"version":"1133c05460176f978a30053012ceff309789521c11d63b244d1a4b0b088ce5dc","impliedFormat":99},{"version":"09ea5fea1ce56b3b04d6ba0e0cfb0aef4bb57fce267aac10f7ce2bf56de6ead1","impliedFormat":99},{"version":"b981bc12fbea03bc9e6ad625e106ac62747fe85f7b0aafe59af3854d61fc51a5","impliedFormat":99},{"version":"429a3a553dbee1644ceb2536d6f4fac7b9365d943ffd1bb31a9d4cd67f2c6ad4","impliedFormat":99},{"version":"36491e33cb486db2edc3b2591b2fe092dfa649eea05fd50407b134e4ebb58144","signature":"c3d373bcd7e2217c9ef9c5aaff0ca2d4a66a3bb1900061687a3f5cfbab065398"},{"version":"92b3c148dd263289c7727fa1f5c5081a273c2dfe314002ada07b381e5af07194","signature":"9a41d8487ab9beba32e3de8fc80dcfa265737519d44c4dee27cedd3f9e3494ec"},{"version":"461c5d1bf0a4746c4f12e59c6ae8ec3158a5dd88cf5c9eb0f42f366d913d30ec","signature":"955e768f6a220a1d00947f8edaaf7c8a26924670e7c4a3f7f23f3e43ed47a756"},{"version":"5e550a1afebdfbd6f805472e2f9838481778d97c321d533afd86b112b8ea7d81","signature":"6819f6a016bea98ba47006e8797366e2494a6a1acde0020d3e905f46bde3dba7"},{"version":"99d951629f7096dcd79adbaa83a85e3be57613005533bd23029b3aba4ce9383e","impliedFormat":1},{"version":"462347977b464c1b62f1fd94ad1d5366e8a86a2849943cb0e9b9bde3d71f28ee","signature":"f031e166a503cfd7e7d6cec46b29b62be27ab4ea483708969c26ed2b0e11df23"},{"version":"b5207ada06c3cdb8363e24a6def70c937566f6ae5f06bd86ea01df9c1974e338","signature":"0e2febf56253e2b6dcad2a75b85fd325846fa673c0c824788270b230a09a90b7"},{"version":"5ceb756f4f46ada59bbf77fdf0feabb9c1bd2ed819225c9ca9530dba22ef4a89","signature":"90693f65bab901c3214a3724786c4bbcb35eb39f1458b8e45b102219f2a89c20"},{"version":"6950d2aa382325933b677148cba21dc9972cb11741bbc3dcc943795fd1c4df09","signature":"f4d57b555060323511cf94f54993db2c270fe0054d26eb6822c6e712f261fa13"},{"version":"005bf2550cb9835d324efaa921162912ce1de1195edfffe077b3d7d67943abb1","signature":"2cc27eaaf47ebf0007c7bf5dec0c705ce819e3f10f40df9231b1bb2dbb6153c9"},{"version":"b29c385f6b592adb372086ede829a2a7d3bfc41d6328322dbb2b206d7cac933f","signature":"e82539640634b4a49b551dc5fb20d932fc278e0cd9fb2cd3dd1d918a2f9399d0"},{"version":"27b82680ee1a76420d43c78e804f8e3c30837557b81e0c4009ff0008379d42a2","signature":"7f12bbb52c7f18025f7adc2dac344f90efd83a6ab77fd24034346a0afe38fef9"},{"version":"30003732e8fa05e370a59646ab0af6728dcc0fd8f6b08a1a23e3198617f055d3","signature":"fefaf643ad02c05059e06244a8291c4cb3a2693ec928c843599c25d00ee9f574"},{"version":"cd51ceafea7762ad639afb3ca5b68e1e4ffeaacaa402d7ef2cae17016e29e098","impliedFormat":1},{"version":"1b8357b3fef5be61b5de6d6a4805a534d68fe3e040c11f1944e27d4aec85936a","impliedFormat":1},{"version":"130ec22c8432ade59047e0225e552c62a47683d870d44785bee95594c8d65408","impliedFormat":1},{"version":"4f24c2781b21b6cd65eede543669327d68a8cf0c6d9cf106a1146b164a7c8ef9","affectsGlobalScope":true,"impliedFormat":1},{"version":"928f96b9948742cbaec33e1c34c406c127c2dad5906edb7df08e92b963500a41","impliedFormat":1},{"version":"56613f2ebdd34d4527ca1ee969ab7e82333c3183fc715e5667c999396359e478","impliedFormat":1},{"version":"d9720d542df1d7feba0aa80ed11b4584854951f9064232e8d7a76e65dc676136","impliedFormat":1},{"version":"d0fb3d0c64beba3b9ab25916cc018150d78ccb4952fac755c53721d9d624ba0d","impliedFormat":1},{"version":"86b484bcf6344a27a9ee19dd5cef1a5afbbd96aeb07708cc6d8b43d7dfa8466c","impliedFormat":1},{"version":"ba93f0192c9c30d895bee1141dd0c307b75df16245deef7134ac0152294788cc","impliedFormat":1},{"version":"fca7cd7512b19d38254171fb5e35d2b16ac56710b7915b7801994612953da16c","impliedFormat":1},{"version":"7e43693f6ea74c3866659265e0ce415b4da6ed7fabd2920ad7ea8a5e746c6a94","impliedFormat":1},{"version":"eb31477c87de3309cbe4e9984fa74a052f31581edb89103f8590f01874b4e271","impliedFormat":1},{"version":"4e251317bb109337e4918e5d7bcda7ef2d88f106cac531dcea03f7eee1dd2240","impliedFormat":1},{"version":"0f2c77683296ca2d0e0bee84f8aa944a05df23bc4c5b5fef31dda757e75f660f","impliedFormat":1},{"version":"1a67ba5891772a62706335b59a50720d89905196c90719dad7cec9c81c2990e6","impliedFormat":1},{"version":"cf41091fcbf45daff9aba653406b83d11a3ec163ff9d7a71890035117e733d98","impliedFormat":1},{"version":"aa514fadda13ad6ddadc2342e835307b962254d994f45a0cb495cc76eca13eff","impliedFormat":1},{"version":"ce92e662f86a36fc38c5aaa2ec6e6d6eed0bc6cf231bd06a9cb64cc652487550","impliedFormat":1},{"version":"3821c8180abb683dcf4ba833760764a79e25bc284dc9b17d32e138c34ada1939","impliedFormat":1},{"version":"0ef2a86ec84da6b2b06f830b441889c5bb8330a313691d4edbe85660afa97c44","impliedFormat":1},{"version":"b2a793bde18962a2e1e0f9fa5dce43dd3e801331d36d3e96a7451727185fb16f","impliedFormat":1},{"version":"9d8fc1d9b6b4b94127eec180183683a6ef4735b0e0a770ba9f7e2d98dd571e0c","impliedFormat":1},{"version":"8504003e88870caa5474ab8bd270f318d0985ba7ede4ee30fe37646768b5362a","impliedFormat":1},{"version":"892abbe1081799073183bab5dc771db813938e888cf49eb166f0e0102c0c1473","impliedFormat":1},{"version":"65465a64d5ee2f989ad4cf8db05f875204a9178f36b07a1e4d3a09a39f762e2e","impliedFormat":1},{"version":"2878f694f7d3a13a88a5e511da7ac084491ca0ddde9539e5dad76737ead9a5a9","impliedFormat":1},{"version":"d21c5f692d23afa03113393088bcb1ef90a69272a774950a9f69c58131ac5b7e","impliedFormat":1},{"version":"0915ce92bb54e905387b7907e98982620cb7143f7b44291974fb2e592602fe00","impliedFormat":1},{"version":"9dfb317a36a813f4356dc1488e26a36d95e3ac7f38a05fbf9dda97cfd13ef6ea","impliedFormat":1},{"version":"7c0a4d3819fb911cdb5a6759c0195c72b0c54094451949ebaa89ffceadd129ca","impliedFormat":1},{"version":"4733c832fb758f546a4246bc62f2e9d68880eb8abf0f08c6bec484decb774dc9","impliedFormat":1},{"version":"58d91c410f31f4dd6fa8d50ad10b4ae9a8d1789306e73a5fbe8abea6a593099b","impliedFormat":1},{"version":"3aea7345c25f1060791fc83a6466b889924db87389e5c344fa0c27b75257ebe4","impliedFormat":1},{"version":"a8289d1d525cf4a3a2d5a8db6b8e14e19f43d122cc47f8fb6b894b0aa2e2bde6","impliedFormat":1},{"version":"e6804515ba7c8f647e145ecc126138dd9d27d3e6283291d0f50050700066a0ea","impliedFormat":1},{"version":"9420a04edbe321959de3d1aab9fa88b45951a14c22d8a817f75eb4c0a80dba02","impliedFormat":1},{"version":"6927ceeb41bb451f47593de0180c8ff1be7403965d10dc9147ee8d5c91372fff","impliedFormat":1},{"version":"d9c6f10eebf03d123396d4fee1efbe88bc967a47655ec040ffe7e94271a34fc7","impliedFormat":1},{"version":"f2a392b336e55ccbeb8f8a07865c86857f1a5fc55587c1c7d79e4851b0c75c9a","impliedFormat":1},{"version":"fd53e2a54dae7bb3a9c3b061715fff55a0bb3878472d4a93b2da6f0f62262c9f","impliedFormat":1},{"version":"1f129869a0ee2dcb7ea9a92d6bc8ddf2c2cdaf2d244eec18c3a78efeb5e05c83","impliedFormat":1},{"version":"554962080d3195cae300341a8b472fb0553f354f658344ae181b9aa02d351dbd","impliedFormat":1},{"version":"89cd9ab3944b306e790b148dd0a13ca120daf7379a98729964ea6288a54a1beb","impliedFormat":1},{"version":"28fa41063a242eafcf51e1a62013fccdd9fd5d6760ded6e3ff5ce10a13c2ab31","impliedFormat":1},{"version":"e53a8b6e43f20fa792479f8069c41b1a788a15ffdfd56be1ab8ef46ea01bd43e","impliedFormat":1},{"version":"ada60ff3698e7fd0c7ed0e4d93286ee28aed87f648f6748e668a57308fde5a67","impliedFormat":1},{"version":"f65e0341f11f30b47686efab11e1877b1a42cf9b1a232a61077da2bdeee6d83e","impliedFormat":1},{"version":"e6918b864e3c2f3a7d323f1bb31580412f12ab323f6c3a55fb5dc532c827e26d","impliedFormat":1},{"version":"5d6f919e1966d45ea297c2478c1985d213e41e2f9a6789964cdb53669e3f7a6f","impliedFormat":1},{"version":"d7735a9ccd17767352ab6e799d76735016209aadd5c038a2fc07a29e7b235f02","impliedFormat":1},{"version":"843e98d09268e2b5b9e6ff60487cf68f4643a72c2e55f7c29b35d1091a4ee4e9","impliedFormat":1},{"version":"ef4c9ef3ec432ccbf6508f8aa12fbb8b7f4d535c8b484258a3888476de2c6c36","impliedFormat":1},{"version":"77ff2aeb024d9e1679c00705067159c1b98ccac8310987a0bdaf0e38a6ca7333","impliedFormat":1},{"version":"8f9effea32088f37d15858a890e1a7ccf9af8d352d47fea174f6b95448072956","impliedFormat":1},{"version":"952c4a8d2338e19ef26c1c0758815b1de6c082a485f88368f5bece1e555f39d4","impliedFormat":1},{"version":"1d953cb875c69aeb1ec8c58298a5226241c6139123b1ff885cedf48ac57b435c","impliedFormat":1},{"version":"1a80e164acd9ee4f3e2a919f9a92bfcdb3412d1fe680b15d60e85eadbaa460f8","impliedFormat":1},{"version":"f981ffdbd651f67db134479a5352dac96648ca195f981284e79dc0a1dbc53fd5","impliedFormat":1},{"version":"019c29de7d44d84684e65bdabb53ee8cc08f28b150ac0083d00e31a8fe2727d8","impliedFormat":1},{"version":"e35738485bf670f13eab658ea34d27ef2b875f3aae8fc00fb783d29e5737786d","impliedFormat":1},{"version":"bcd951d1a489d00e432c73760ce7f39adb0ef4e6a9c8ffef5dd7f093325a8377","impliedFormat":1},{"version":"672c1ebc4fa15a1c9b4911f1c68de2bc889f4d166a68c5be8f1e61f94014e9d8","impliedFormat":1},{"version":"b0378c1bc3995a1e7b40528dcd81670b2429d8c1dcc1f8d1dc8f76f33d3fc1b8","impliedFormat":1},{"version":"5a0d920468aa4e792285943cadad77bcb312ba2acf1c665e364ada1b1ee56264","impliedFormat":1},{"version":"c27c5144d294ba5e38f0cd483196f911047500a735490f85f318b4d5eb8ac2cc","impliedFormat":1},{"version":"900d1889110107cea3e40b30217c6e66f19db8683964a57afd9a72ecc821fe21","impliedFormat":1},{"version":"a2e4333bf0c330ae26b90c68e395ad0a8af06121f1c977979c75c4a5f9f6bc29","impliedFormat":1},{"version":"08c027d3d6e294b5607341125d1c4689b4fece03bdb9843bd048515fe496a73e","impliedFormat":1},{"version":"2cbf557a03f80df74106cb7cfb38386db82725b720b859e511bdead881171c32","impliedFormat":1},{"version":"918956b37f3870f02f0659d14bba32f7b0e374fd9c06a241db9da7f5214dcd79","impliedFormat":1},{"version":"260e6d25185809efc852e9c002600ad8a85f8062fa24801f30bead41de98c609","impliedFormat":1},{"version":"dd9694eecd70a405490ad23940ccd8979a628f1d26928090a4b05a943ac61714","impliedFormat":1},{"version":"42ca885a3c8ffdffcd9df252582aef9433438cf545a148e3a5e7568ca8575a56","impliedFormat":1},{"version":"309586820e31406ed70bb03ea8bca88b7ec15215e82d0aa85392da25d0b68630","impliedFormat":1},{"version":"db436ca96e762259f14cb74d62089c7ca513f2fc725e7dcfbac0716602547898","impliedFormat":1},{"version":"1410d60fe495685e97ed7ca6ff8ac6552b8c609ebe63bd97e51b7afe3c75b563","impliedFormat":1},{"version":"c6843fd4514c67ab4caf76efab7772ceb990fbb1a09085fbcf72b4437a307cf7","impliedFormat":1},{"version":"03ed68319c97cd4ce8f1c4ded110d9b40b8a283c3242b9fe934ccfa834e45572","impliedFormat":1},{"version":"956618754d139c7beb3c97df423347433473163d424ff8248af18851dd7d772a","impliedFormat":1},{"version":"7d8f40a7c4cc81db66ac8eaf88f192996c8a5542c192fdebb7a7f2498c18427d","impliedFormat":1},{"version":"c69ecf92a8a9fb3e4019e6c520260e4074dc6cb0044a71909807b8e7cc05bb65","impliedFormat":1},{"version":"07d0370c85ac112aa6f1715dc88bafcee4bcea1483bc6b372be5191d6c1a15c7","impliedFormat":1},{"version":"7fb0164ebb34ead4b1231eca7b691f072acf357773b6044b26ee5d2874c5f296","impliedFormat":1},{"version":"9e4fc88d0f62afc19fa5e8f8c132883378005c278fdb611a34b0d03f5eb6c20c","impliedFormat":1},{"version":"cc9bf8080004ee3d8d9ef117c8df0077d6a76b13cb3f55fd3eefbb3e8fcd1e63","impliedFormat":1},{"version":"1f0ee5ddb64540632c6f9a5b63e242b06e49dd6472f3f5bd7dfeb96d12543e15","impliedFormat":1},{"version":"b6aa8c6f2f5ebfb17126492623691e045468533ec2cc7bd47303ce48de7ab8aa","impliedFormat":1},{"version":"18b86125c67d99150f54225df07349ddd07acde086b55f3eeac1c34c81e424d8","impliedFormat":1},{"version":"68434152ef6e484df25a9bd0f4c9abdfb0d743f5a39bff2b2dc2a0f94ed5f391","impliedFormat":1},{"version":"b848b40bfeb73dfe2e782c5b7588ef521010a3d595297e69386670cbde6b4d82","impliedFormat":1},{"version":"aa79b64f5b3690c66892f292e63dfe3e84eb678a886df86521f67c109d57a0c5","impliedFormat":1},{"version":"a692e092c3b9860c9554698d84baf308ba51fc8f32ddd6646e01a287810b16c6","impliedFormat":1},{"version":"18076e7597cd9baa305cd85406551f28e3450683a699b7152ce7373b6b4a1db7","impliedFormat":1},{"version":"1848ebe5252ccb5ca1ca4ff52114516bdbbc7512589d6d0839beeea768bfb400","impliedFormat":1},{"version":"d2e3a1de4fde9291f9fb3b43672a8975a83e79896466f1af0f50066f78dbf39e","impliedFormat":1},{"version":"d0d03f7d2ba2cf425890e0f35391f1904d0d152c77179ddfc28dfad9d4a09c03","impliedFormat":1},{"version":"e37650b39727a6cf036c45a2b6df055e9c69a0afdd6dbab833ab957eb7f1a389","impliedFormat":1},{"version":"c58d6d730e95e67a62ebd7ba324e04bcde907ef6ba0f41922f403097fe54dd78","impliedFormat":1},{"version":"0f5773d0dd61aff22d2e3223be3b4b9c4a8068568918fb29b3f1ba3885cf701f","impliedFormat":1},{"version":"31073e7d0e51f33b1456ff2ab7f06546c95e24e11c29d5b39a634bc51f86d914","impliedFormat":1},{"version":"9ce0473b0fbaf7287afb01b6a91bd38f73a31093e59ee86de1fd3f352f3fc817","impliedFormat":1},{"version":"6f0d708924c3c4ee64b0fef8f10ad2b4cb87aa70b015eb758848c1ea02db0ed7","impliedFormat":1},{"version":"6addbb18f70100a2de900bace1c800b8d760421cdd33c1d69ee290b71e28003d","impliedFormat":1},{"version":"37569cc8f21262ca62ec9d3aa8eb5740f96e1f325fad3d6aa00a19403bd27b96","impliedFormat":1},{"version":"e0ef70ca30cdc08f55a9511c51a91415e814f53fcc355b14fc8947d32ce9e1aa","impliedFormat":1},{"version":"14be139e0f6d380a3d24aaf9b67972add107bea35cf7f2b1b1febac6553c3ede","impliedFormat":1},{"version":"23195b09849686462875673042a12b7f4cd34b4e27d38e40ca9c408dae8e6656","impliedFormat":1},{"version":"ff1731974600a4dad7ec87770e95fc86ca3d329b1ce200032766340f83585e47","impliedFormat":1},{"version":"91bc53a57079cf32e1a10ccf1a1e4a068e9820aa2fc6abc9af6bd6a52f590ffb","impliedFormat":1},{"version":"8dd284442b56814717e70f11ca22f4ea5b35feeca680f475bfcf8f65ba4ba296","impliedFormat":1},{"version":"a304e0af52f81bd7e6491e890fd480f3dc2cb0541dec3c7bd440dba9fea5c34e","impliedFormat":1},{"version":"c60fd0d7a1ba07631dfae8b757be0bffd5ef329e563f9a213e4a5402351c679f","impliedFormat":1},{"version":"02687b095a01969e6e300d246c9566a62fa87029ce2c7634439af940f3b09334","impliedFormat":1},{"version":"e79e530a8216ee171b4aca8fc7b99bd37f5e84555cba57dc3de4cd57580ff21a","impliedFormat":1},{"version":"ceb2c0bc630cca2d0fdd48b0f48915d1e768785efaabf50e31c8399926fee5b1","impliedFormat":1},{"version":"f351eaa598ba2046e3078e5480a7533be7051e4db9212bb40f4eeb84279aa24d","impliedFormat":1},{"version":"12aeda564ee3f1d96ac759553d6749534fafeb2e5142ea2867f22ed39f9d3260","impliedFormat":1},{"version":"4ce53edb8fb1d2f8b2f6814084b773cdf5846f49bf5a426fbe4029327bda95bf","impliedFormat":1},{"version":"85d63aaff358e8390b666a6bc68d3f56985f18764ab05f750cb67910f7bccb1a","impliedFormat":1},{"version":"0a0bf0cb43af5e0ac1703b48325ebc18ad86f6bf796bdbe96a429c0e95ca4486","impliedFormat":1},{"version":"563573a23a61b147358ddee42f88f887817f0de1fc5dbc4be7603d53cbd467ad","impliedFormat":1},{"version":"dd0cad0db617f71019108686cf5caabcad13888b2ae22f889a4c83210e4ba008","impliedFormat":1},{"version":"f08d2151bd91cdaa152532d51af04e29201cfc5d1ea40f8f7cfca0eb4f0b7cf3","impliedFormat":1},{"version":"b9c889d8a4595d02ebb3d3a72a335900b2fe9e5b5c54965da404379002b4ac44","impliedFormat":1},{"version":"a3cd30ebae3d0217b6b3204245719fc2c2f29d03b626905cac7127e1fb70e79c","impliedFormat":1},{"version":"bd56c2399a7eadccfca7398ca2244830911bdbb95b8ab7076e5a9210e9754696","impliedFormat":1},{"version":"f52fb387ac45e7b8cdc98209714c4aedc78d59a70f92e9b5041309b6b53fc880","impliedFormat":1},{"version":"1502a23e43fd7e9976a83195dc4eaf54acaff044687e0988a3bd4f19fc26b02b","impliedFormat":1},{"version":"5faa3d4b828440882a089a3f8514f13067957f6e5e06ec21ddd0bc2395df1c33","impliedFormat":1},{"version":"f0f95d40b0b5a485b3b97bd99931230e7bf3cbbe1c692bd4d65c69d0cdd6fa9d","impliedFormat":1},{"version":"380b4fe5dac74984ac6a58a116f7726bede1bdca7cec5362034c0b12971ac9c1","impliedFormat":1},{"version":"00de72aa7abede86b016f0b3bfbf767a08b5cff060991b0722d78b594a4c2105","impliedFormat":1},{"version":"965759788855797f61506f53e05c613afb95b16002c60a6f8653650317870bc3","impliedFormat":1},{"version":"f70a315e029dacf595f025d13fa7599e8585d5ccfc44dd386db2aa6596aaf553","impliedFormat":1},{"version":"f385a078ad649cc24f8c31e4f2e56a5c91445a07f25fbdc4a0a339c964b55679","impliedFormat":1},{"version":"08599363ef46d2c59043a8aeec3d5e0d87e32e606c7b1acf397e43f8acadc96a","impliedFormat":1},{"version":"4f5bbef956920cfd90f2cbffccb3c34f8dfc64faaba368d9d41a46925511b6b0","impliedFormat":1},{"version":"0ae9d5bbf4239616d06c50e49fc21512278171c1257a1503028fc4a95ada3ed0","impliedFormat":1},{"version":"cba49e77f6c1737f7a3ce9a50b484d21980665fff93c1c64e0ee0b5086ea460a","impliedFormat":1},{"version":"9c686df0769cca468ebf018749df4330d5ff9414e0d226c1956ebaf45c85ff61","impliedFormat":1},{"version":"89d5970d28f207d30938563e567e67395aa8c1789c43029fe03fe1d07893c74c","impliedFormat":1},{"version":"869e789f7a8abcc769f08ba70b96df561e813a4001b184d3feb8c3d13b095261","impliedFormat":1},{"version":"392f3eb64f9c0f761eb7a391d9fbef26ffa270351d451d11bd70255664170acc","impliedFormat":1},{"version":"f829212a0e8e4fd1b079645d4e97e6ec73734dd21aae4dfc921d2958774721d0","impliedFormat":1},{"version":"5e20af039b2e87736fd7c9e4b47bf143c46918856e78ce21da02a91c25d817e8","impliedFormat":1},{"version":"f321514602994ba6e0ab622ef52debd4e9f64a7b4494c03ee017083dc1965753","impliedFormat":1},{"version":"cc8734156129aa6230a71987d94bdfac723045459da707b1804ecec321e60937","impliedFormat":1},{"version":"bb89466514349b86260efdee9850e497d874e4098334e9b06a146f1e305fca3f","impliedFormat":1},{"version":"fc0ee9d0476dec3d1b37a0f968e371a3d23aac41742bc6706886e1c6ac486749","impliedFormat":1},{"version":"f7da03d84ce7121bc17adca0af1055021b834e861326462a90dbf6154cf1e106","impliedFormat":1},{"version":"fed8c2c205f973bfb03ef3588750f60c1f20e2362591c30cd2c850213115163b","impliedFormat":1},{"version":"32a2b99a3aacda16747447cc9589e33c363a925d221298273912ecf93155e184","impliedFormat":1},{"version":"07bfa278367913dd253117ec68c31205825b2626e1cb4c158f2112e995923ee8","impliedFormat":1},{"version":"6a76e6141ff2fe28e88e63e0d06de686f31184ab68b04ae16f0f92103295cc2a","impliedFormat":1},{"version":"f05d5d16d85abe57eb713bc12efefc00675c09016e3292360e2de0790f51fa48","impliedFormat":1},{"version":"2e3ceed776a470729c084f3a941101d681dd1867babbaf6e1ca055d738dd3878","impliedFormat":1},{"version":"3d9fb85cc7089ca54873c9924ff47fcf05d570f3f8a3a2349906d6d953fa2ccf","impliedFormat":1},{"version":"d82c245bfb76da44dd573948eca299ff75759b9714f8410468d2d055145a4b64","impliedFormat":1},{"version":"6b5b31af3f5cfcf5635310328f0a3a94f612902024e75dc484eb79123f5b8ebe","impliedFormat":1},{"version":"db08c1807e3ae065930d88a3449d926273816d019e6c2a534e82da14e796686d","impliedFormat":1},{"version":"9e5c7463fc0259a38938c9afbdeda92e802cff87560277fd3e385ad24663f214","impliedFormat":1},{"version":"ef83477cca76be1c2d0539408c32b0a2118abcd25c9004f197421155a4649c37","impliedFormat":1},{"version":"2c3936b0f811f38ab1a4f0311993bf599c27c2da5750e76aa5dfbed8193c9922","impliedFormat":1},{"version":"c253c7ea2877126b1c3311dc70b7664fe4d696cb09215857b9d7ea8b7fdce1f0","impliedFormat":1},{"version":"b1600c1deb6ed032dfc2c6288b6d780fc2eae3af37208fba537fcdac009a7981","signature":"3df238b399eef7da3a302182dbb799261cd0a5975d664b40d517ac31b2d4bcbe"},{"version":"1e9571e5f65fb1fd46c8debb04c388ed51c08f5ef07053904744b7bb5c5e2372","signature":"6ee156ded710046a44efb0815ac661195b99add6dc130a359c611e69bd18c294"},{"version":"fea88ad241ce17b84715e22e58f5d2901d01c9479e8c28f7f6b502b20ec8c6d7","signature":"fbe048bb2cba576d08927c1a2bbeb324d715239ce328e693a267c69f522c8458"},{"version":"6ddef3de7f7a6f0a7a9c9334930123711d1cd34a9bb5abb1eab62841add72dd0","signature":"6d3d84ba75527d23478add5f48bc2691334c5eae7ea5c803f37a8ca4e1b95ad3"},{"version":"a4a28da045178db6765d8db0c037a0a092cea994029a4b85b548a979cd0ec5ad","signature":"e64cfde3f954fd44d1a475c7f926361b18ebe51f5ce29a3a7e51480a77398a10"},{"version":"caa86a423586839e03bd358acf1afdbf61a3bdd3d19de9ac40fb773b4f4aa945","signature":"6868ea1d216d96c5a7ace4deef218c2be8c6db80eef960a688fa4a082431417f"},{"version":"4e4c1f346434f385abbb762e48434930889edd661bda602f6693867dafe25240","signature":"e398809466f97801f1c9b29acbe2d29be349d7b9bdf2563a506c5605740aa58a"},{"version":"ef914f5968b91a1dd8e40ec57a6ee35253e6358129a754bb78c5dc01f54fae9a","signature":"595ce5e674e6cedb8d0e8291f588d187e130d12c1be9e9381cd5888a9dff87fb"},{"version":"bae05b31e0448ffc2a9d3a5528432410781493cfa29253f2d230421564d4bb43","signature":"091082c4a7669c340403c44a614eceae1fe81473e8b253ce1355d6a9868d3f0a"},{"version":"83985a6e80b5fb3f4b3d4414294ee396e732014279cc78b435ac2aebfeccf449","signature":"fbeb4b9d0dfd0970989239bde8bea8e914e9239a6e1bbf134b824320b21f6c9f"},{"version":"da7017326b77ecd3da8d127aa6f3f96ab78ad2eae3bc31cc1bf1cfa724d1e084","signature":"efc9caa245b437814f32e34223d6b1810e605fda3333d27bfb800a548d1fd89a"},{"version":"4648f92f680be1d23240667dfb027c23148f4bc6c9ec50b47092cf06f9984390","signature":"41842ceefaf9cd04adc15db35e7a607e92fc0fbdec194c04ed20767049874cc1"},{"version":"911b5cc6d381721238763df07666ae64c0e02f722c8a00117f1c2d222f616312","signature":"70973ccbc92f59fe897d117aafcb64964fa1e5cce80f0539b9ee4ac037090d56"},{"version":"451ff3f6d191b63c6a5cc63201a34579ec3a3433fe4ffd30fa19c2502078a75a","signature":"bbe19a5a131382ff7ec86973c386fd446e426af370b03aeb591b8990d4d0ec1a"},{"version":"d3f2d715f57df3f04bf7b16dde01dec10366f64fce44503c92b8f78f614c1769","impliedFormat":1},{"version":"9a8467579929d729fe377a449d68ccb3b1795414716e4b3d31adeca3c2dbc915","impliedFormat":1},{"version":"e2929f4f3c0dcd2aa89636f59ff304b89998d63cc3be3d6eb9c638e8a27566e1","signature":"9871d05ac208242b874c607c5e87c7878b725d1e5b7010d61086d6106394893c"},{"version":"140ccc0e9903f8c4219aa91de06dcd505586f451a4b48f3622a2c97afe1cf3ad","signature":"8e609bb71c20b858c77f0e9f90bb1319db8477b13f9f965f1a1e18524bf50881"},{"version":"2c075fcf629713a7092582a33e7345a8a1282336b175dc687a9ba5bcbbf2c1d9","signature":"7184f6dcd9c868f2bec500ad7661841458f1c65e6828a835472eaa656d043b7d"},{"version":"4f1f2067a1649d72c0c265e0ba0996a199fcff281baeb1b4fc89bdfcd1d7d978","signature":"4a3da342795df706df18105d0c45447f57c0519d39dac069636cd1b55e14355b"},{"version":"8704edae14745b05be645cdb4d4a387ec47c2500b9ca506b2921509a7fea5a86","signature":"be1ffeefaf211154b3073865786f53df627646f93b38bd61c1b01a40638147ef"},{"version":"a3a48fbe8782048f74752a1ef300ade63777f62bca44aadd9bd99a4ebdf9b9eb","impliedFormat":1},{"version":"88e6ddbf1bb445b1d072414f1768f121c4094c56b6ce9c92db99fda74bb763ba","signature":"168bcdbbedf9cc0b18bf0f946d4fe81d646d3434c20d0b00bc59788164835f97"},{"version":"4fa8f53004747bc2051f43424e4ec38bc54ce4229d4f0fd78bfc52ec884fd7c6","signature":"68692d420dd00165582fc487f4a18010e0cc887ff6cb6ff6b0a2830091bec3f8"},{"version":"506c8aac5efecd12a7992cce4ab0cbbb3465b2f2a1a4e97c2046990670e5f524","signature":"a178e93f7372ac72e13589cafa3de2d6cd916f1a8bdf21b2f30adeedc0f0a166"},{"version":"5a7a1c32fa3bdcf0d3c6d01a5030d707aec75fb769e183a9946ab9ee4013290f","signature":"406f393436e36b7f67c55ac27c8cbf6cb9b42950f354090d1eae37e628e2e8ee"},{"version":"99754e0aecbc2259ec46128ec6f789f4ba156b30b10e3dc77ad9bb2ffa3816cb","signature":"f4f4d057da00affdfc4baca22ab373f7545c7b7689aa57212865cffeb00e72c6"},{"version":"c67182e85143e829114970108944bce4b7a191f1276e14871fc0c84d94816ee3","signature":"190606b13cb4ea65b54c174fbcddb88065c4f1f0f2df639c4bf5cd9c92f8492f"},{"version":"4c2678347e27421f685df1b746dc765e0cac8e22161724503e39a0f69ba9e7f3","signature":"dffccd14974beb74f84efd173f8ddb090f676a3638076ad05704b2249b5ab2f7"},{"version":"05d39d0921be6d0d6bba3e27b7d8e87b0cdc1a32bc18f58c709730affafc3df0","impliedFormat":99},{"version":"743dc2ad038c6334eb345e678558dee6a82276657b8097baa53f3a21dd183250","signature":"dffccd14974beb74f84efd173f8ddb090f676a3638076ad05704b2249b5ab2f7"},{"version":"fb6bb86654fb9b526391996b6ff76f4ffdb7bdea6be5845ac0bc08475e014013","signature":"48d0329de7dac59a18c3dc030fe1e6aacdf5017444df7fbe0071071ee5a083ae"},{"version":"23b5d416bc4d5abf5d869c72eaf1ad1dcec0d97d05a29ac7baac0ea93fdec6a8","signature":"6c7ccbfb47a36c757130dd9b97ba1df56929bf5d99cedc6c251d4928b4fef019"},{"version":"f74c17ddf087e66c92a1603b742faf9cc78480e7ad472f18afab5b7a547fed02","signature":"dffccd14974beb74f84efd173f8ddb090f676a3638076ad05704b2249b5ab2f7"},{"version":"23bbca29d9036a994f0b362654ecfd41e6959d5f12394d9baa33211e6bb2c3c6","signature":"812199d11b8c1d84b704e1c3a66ac1e1f681f10e4e3529f5668991220741b65b"},{"version":"6e82b406bd3edacd252f216accc169a45eb16d6e6ef3f6ca61bc243485e68319","signature":"8e609bb71c20b858c77f0e9f90bb1319db8477b13f9f965f1a1e18524bf50881"},{"version":"2b0b153fd4059da8d8f964c8bc9bbc3b989f92742854be59524f72ac0036e74e","signature":"b208d4247dfbd9d5d9c5f1b23fb47d16cb0aaefe0363aa60e42eca816e993f48"},{"version":"5e475f93321a19ab58d2c98054d50e88ab81fabcacd6532162ba9086027caba6","signature":"8e609bb71c20b858c77f0e9f90bb1319db8477b13f9f965f1a1e18524bf50881"},{"version":"1fcee44be848a6a354db60c3b4d766ced8b8874393d3e6e1ec19f2e7a554942b","signature":"60016b81be78c97ee4b427cc4c89bf330dbe8db0f977a4f6aac649d0e32931b8"},{"version":"bddc8143c3b0fe2a6462f9811d3b28ea422ffee80d75d3d97d65d6b69f583fad","impliedFormat":1},{"version":"151ff381ef9ff8da2da9b9663ebf657eac35c4c9a19183420c05728f31a6761d","impliedFormat":1},{"version":"f3d8c757e148ad968f0d98697987db363070abada5f503da3c06aefd9d4248c1","impliedFormat":1},{"version":"54b3fa7c2b67a9c654170e125d61ef2b8534838ee8e8abf3ff54ce77885c3805","impliedFormat":99},{"version":"8a190298d0ff502ad1c7294ba6b0abb3a290fc905b3a00603016a97c363a4c7a","impliedFormat":1},{"version":"ed1441df2b8bbbd907f603490cb207f44141fe191b20be2f270e8de69bfa194a","impliedFormat":1},{"version":"aa5e0d12e17c49e183e908cf0e106e9d0d9f667a18f507822aeac4f664fa5825","impliedFormat":1},{"version":"469c34a02022a564cbd361e5a63f9c468bc35653ea7276b1367f113fa0d31ecd","signature":"4251e55f0b6efc623aebd9cd7e19b24b3485ce84b44e35f7b843135ff3f19837"},{"version":"4b83583173e72827730f114c4c9804c2bf316b251a0967a354d32adc2fb541fe","signature":"faa15451f167dadb23b46302bbc7d35605e0f0a34919a837095e6dbdf7c08e27"},{"version":"90272ee6682204d94a401b83b744bf9a3f6eb96f3ffcd9b8033bfd68cb9ae23c","signature":"5ff296746aa8981b8b279c2aa7f1ab6cfc50b1f6b2203cef0acedb131dabd07f"},{"version":"178be2a50b72689ecd3c0c34fc8bf3a2732e0db4f0a19c72f0042af4e5d86778","signature":"7664ee97cc247a189f4091f523d4b7280dc88dfd9d4333af908dcb6ae2868bf5"},{"version":"b7665b932ddbd9e6528c65f6d52eb16fce2c169cf5a2b810c5b80a8a64a668a1","signature":"8e609bb71c20b858c77f0e9f90bb1319db8477b13f9f965f1a1e18524bf50881"},"e3b0c44298fc1c149afbf4c8996fb92427ae41e4649b934ca495991b7852b855",{"version":"dccc2fba20d0aa23bbd6d7e99b10d4250987a150555f0f4baaacfc41b497ef23","signature":"bcda5412ccb8e6d1ecfe2b560375fdc46bd84f2981b2bf849b5a5ef7db43dc69"},{"version":"2da43e6bf5fec3037497607ce3a0db0abe1067035e951d24dd1763c1eb031765","signature":"bcda5412ccb8e6d1ecfe2b560375fdc46bd84f2981b2bf849b5a5ef7db43dc69"},{"version":"3dddab8cb67a9e578de64b0a5ba241eee32f09c5b42be9780cda05eedf6d1626","signature":"bcda5412ccb8e6d1ecfe2b560375fdc46bd84f2981b2bf849b5a5ef7db43dc69"},"e3b0c44298fc1c149afbf4c8996fb92427ae41e4649b934ca495991b7852b855","e3b0c44298fc1c149afbf4c8996fb92427ae41e4649b934ca495991b7852b855","e3b0c44298fc1c149afbf4c8996fb92427ae41e4649b934ca495991b7852b855","e3b0c44298fc1c149afbf4c8996fb92427ae41e4649b934ca495991b7852b855","e3b0c44298fc1c149afbf4c8996fb92427ae41e4649b934ca495991b7852b855","e3b0c44298fc1c149afbf4c8996fb92427ae41e4649b934ca495991b7852b855","e3b0c44298fc1c149afbf4c8996fb92427ae41e4649b934ca495991b7852b855",{"version":"427fe2004642504828c1476d0af4270e6ad4db6de78c0b5da3e4c5ca95052a99","impliedFormat":1},{"version":"c8905dbea83f3220676a669366cd8c1acef56af4d9d72a8b2241b1d044bb4302","affectsGlobalScope":true,"impliedFormat":99},{"version":"5250ac9de18846ed8fa771d2f0fd710c6e2e3f2f8a507781d8e0f2ab007ef4b1","signature":"844f26a122b37b60d79708a0044597315e740e8b984ffdc3bfd5151918dff41c"},"e3b0c44298fc1c149afbf4c8996fb92427ae41e4649b934ca495991b7852b855","e3b0c44298fc1c149afbf4c8996fb92427ae41e4649b934ca495991b7852b855",{"version":"549df62b64a71004aee17685b445a8289013daf96246ce4d9b087d13d7a27a61","affectsGlobalScope":true,"impliedFormat":1},{"version":"8a8eb4ebffd85e589a1cc7c178e291626c359543403d58c9cd22b81fab5b1fb9","impliedFormat":1},{"version":"87d9d29dbc745f182683f63187bf3d53fd8673e5fca38ad5eaab69798ed29fbc","impliedFormat":1},{"version":"f6c80864402c15ee5477383b4503cabf80976913c5a789995a529fdb45264950","affectsGlobalScope":true,"impliedFormat":1},{"version":"170d4db14678c68178ee8a3d5a990d5afb759ecb6ec44dbd885c50f6da6204f6","affectsGlobalScope":true,"impliedFormat":1},{"version":"d4d7d3f832882a4b2d611a7eaaa80c780c3342b5732090130fa9af4a40bd051e","impliedFormat":1},{"version":"f0255fc627076156b2d8daf73e118fb8ba22290e78d1217933ae228d92a9784d","impliedFormat":1},{"version":"bb04fc85a6130c5b624494e5dee1c2047f0ecfbc1e94d224a7e9f1947332a26f","signature":"107925194bbf97d278b9e787423c689dcdf12f5c3a188bf9452559bd2fb57c5f"},{"version":"246fcebda9af5f5100e6e935f1a0a083be9c3472139b431a102340f128b89a0a","signature":"a277f29aa59692de3e3343b700a687568e0b8ef378f03656da2fd64addcf3882"},"e3b0c44298fc1c149afbf4c8996fb92427ae41e4649b934ca495991b7852b855",{"version":"d78fd6f24b8bed81accb9c8b0ddb854530a127e9ec85f6f67eda8ba11071f9a1","signature":"913bf9c63733fd2fa7950db719632fc4ef50c50123523d4559d9db373816fd54"},{"version":"1076e89a22d37fe1d6aa81c7c81e65c662cefc22058bc0ccc2afc0ad82e3b7a0","signature":"30c568cfe18ad936c9007496d25be515296e75987dcdb9f0feee2b3cd8e5dbcd"},{"version":"3853ce82c0dad022d13e160035f56e152978bf1ec713cb2be1dc71dab7e9a584","signature":"edaeb8ade86d6f7d0fc263d69844408febd6c957db660af38ccce2a008d30815"},{"version":"594eacf1a670bda94a3aa695ec97e3ad5d9437f643179c57a87282cc9eb3cc77","signature":"a5b4ce65566b8cfd80b9c8f737827d54cf1116039ba31a621d981d383fae86f5"},{"version":"8167ca674594819d2e3aba4f1e794f0165dcfa5a589ae3bc5a7cf1c358d9dac1","signature":"30c568cfe18ad936c9007496d25be515296e75987dcdb9f0feee2b3cd8e5dbcd"},{"version":"905e543f34d5b01a7683c21b7174e86553add789e8e73322574e8986a01320bd","impliedFormat":1},{"version":"68ef0b6784a7d4508e8099a8fbaa1836a023676589b76eb1463973dff39645f6","impliedFormat":1},{"version":"95c78cf183c5e9111e91d895a481dbf13ee29a0a95ef1c1d37513e1cfe913735","impliedFormat":1},{"version":"23e847832c900bd2360edc9a42a056137344f79aa1b43d72fa8ea3ee107aae73","impliedFormat":1},{"version":"7c52a6d05a6e68269e63bc63fad6e869368a141ad23a20e2350c831dc499c5f2","impliedFormat":1},{"version":"4fb9e98536b7318332003b303f87c18f82767ee03a5ea45a24d4d5a52c0aa4ce","impliedFormat":1},{"version":"4f04aea27052a12a002f0fbd11232480d96271061535402a41ab07ccc653c24e","impliedFormat":1},{"version":"e5b63a24ca97f2f112ad6ee4907c69da2da1bb17d88bc78d661caab7ec752137","impliedFormat":1},{"version":"d4066357a89663d4c2f3ad413215114fc0913127c92e1f53b18b8fa834f868c6","impliedFormat":1},{"version":"6b83014e919aa4065dcd1f3979e4a36615515809344e9091e6fac7f8a49806b0","impliedFormat":1},{"version":"dbc06330145e5a66bf5e581cf5756d8fcc4f1759ceb54a2dc5bac0b5ebfa8d68","impliedFormat":1},{"version":"b32e93ba638ba1264c051966d9722733dbfedff365d38fdb982ea5bf7c5ed56c","impliedFormat":1},{"version":"70a29119482d358ab4f28d28ee2dcd05d6cbf8e678068855d016e10a9256ec12","impliedFormat":1},{"version":"869ac759ae8f304536d609082732cb025a08dcc38237fe619caf3fcdd41dde6f","impliedFormat":1},{"version":"0ea900fe6565f9133e06bce92e3e9a4b5a69234e83d40b7df2e1752b8d2b5002","impliedFormat":1},{"version":"e5408f95ca9ac5997c0fea772d68b1bf390e16c2a8cad62858553409f2b12412","impliedFormat":1},{"version":"3c1332a48695617fc5c8a1aead8f09758c2e73018bd139882283fb5a5b8536a6","impliedFormat":1},{"version":"9260b03453970e98ce9b1ad851275acd9c7d213c26c7d86bae096e8e9db4e62b","impliedFormat":1},{"version":"083838d2f5fea0c28f02ce67087101f43bd6e8697c51fd48029261653095080c","impliedFormat":1},{"version":"969132719f0f5822e669f6da7bd58ea0eb47f7899c1db854f8f06379f753b365","impliedFormat":1},{"version":"94ca5d43ff6f9dc8b1812b0770b761392e6eac1948d99d2da443dc63c32b2ec1","impliedFormat":1},{"version":"2cbc88cf54c50e74ee5642c12217e6fd5415e1b35232d5666d53418bae210b3b","impliedFormat":1},{"version":"ccb226557417c606f8b1bba85d178f4bcea3f8ae67b0e86292709a634a1d389d","impliedFormat":1},{"version":"5ea98f44cc9de1fe05d037afe4813f3dcd3a8c5de43bdd7db24624a364fad8e6","impliedFormat":1},{"version":"5260a62a7d326565c7b42293ed427e4186b9d43d6f160f50e134a18385970d02","impliedFormat":1},{"version":"0b3fc2d2d41ad187962c43cb38117d0aee0d3d515c8a6750aaea467da76b42aa","impliedFormat":1},{"version":"ed219f328224100dad91505388453a8c24a97367d1bc13dcec82c72ab13012b7","impliedFormat":1},{"version":"6847b17c96eb44634daa112849db0c9ade344fe23e6ced190b7eeb862beca9f4","impliedFormat":1},{"version":"d479a5128f27f63b58d57a61e062bd68fa43b684271449a73a4d3e3666a599a7","impliedFormat":1},{"version":"6f308b141358ac799edc3e83e887441852205dc1348310d30b62c69438b93ca0","impliedFormat":1},{"version":"f16aba91e2c61a7212ad4168386e272a871a351887e39115a36d25f770eb4c52","impliedFormat":1},{"version":"2d3f369fb236a9f726e00a3c5ca3e72f7b32ef56b2f542bed834d43a8ee300af","impliedFormat":1},{"version":"819cef4173bb37e7e8d523e88154af2329a4a258ccc036720cfcb217791b3868","impliedFormat":1},{"version":"e7cbe066de1dee3ea5fe58926aea6f1a07b1e71778fd8ff7144d4285574c7ed2","impliedFormat":1},{"version":"0d04b6c350398090d56a4e5bda575a560c95fdea6106f9744b5cc0905aab2553","impliedFormat":1},{"version":"e90f8bf88ed262c122d7f30c06e7f67c446e6e5236baed71ebafec7998b3f645","impliedFormat":1},{"version":"1ee226af7851d92c2fdc09c7ba8f84036d991edbda398a217e173821d62ad379","impliedFormat":1},{"version":"dd277157cf6aa8e937ad497026495adac453a064d7f9637c63a81b74d70d84e0","impliedFormat":1},{"version":"b84d5aeda18459510f6da1b821bce917622c51e184d1d58415ee3dc48d6180ef","impliedFormat":1},{"version":"bbe2b0d328e116df2e8cf8c2de9a078758fd422e6f0e117a3c73ac2e02855a2f","impliedFormat":1},{"version":"64eb63ecf54f8771bbadf72043ed4e6e47eed4b11bd24e3ef9937663b9911e43","impliedFormat":1},{"version":"7837dda0e930b2849976141cd7ad0637703f4cca76ff8539e4c76ac07dd678ca","impliedFormat":1},{"version":"04008a524815b9509d7d64dda18bf4594311a415dbbb271521d1078cb1c7850b","impliedFormat":1},{"version":"86c3a40fa2deabd9d08b8d835f12d2e6fb8bc2e572006c4f3302a2b4589ad9db","impliedFormat":1},{"version":"8f306dabdc2e130f1926f6abd04d233fd84ccf071e3d745a971112dcc87e591b","impliedFormat":1},{"version":"f41b3bea6012d76f83097c1079d99406054a22d04156afc9eb3955f9b288f8eb","impliedFormat":1},{"version":"f37d987a6b846dd948d310bf165ab4ac2327bc0d06182323920ef17a1852bec3","impliedFormat":1},{"version":"16a0a00c9b190a519950aadf21f16a7df1baf2346d64c4c054ad5f7fb71ea8ee","impliedFormat":1},{"version":"a228c6353575a3d21c2f579a4e860e6542950577f451062fdc578b02c95c22e3","impliedFormat":1},{"version":"90ed0b14083410a072cbf480a863e7f8ed7202ffb9ba625420a1b2455add33bb","impliedFormat":1},{"version":"1a75cca03c3c8f71f1a37618b2d3be5649630476761b59137245ec21110bfedf","impliedFormat":1},{"version":"9751ea85dad9ad6ceeae8fe142daf4d83ea78bede9d5424a326ad0869900ccf7","impliedFormat":1},{"version":"59cbc2704d281fce3f397e90e823117835deb20535ca8212f153f3bc74d811c6","impliedFormat":1},{"version":"74c20308aeb6da88368e0418a437d9718d10256ea50b6f428f56e0b982ec3229","impliedFormat":1},{"version":"21d78bad604829fe443eb962b7f00a17343fe621c2ac57114c7175bec879e17b","impliedFormat":1},{"version":"a0b27ac9a3c290c7281f922c1dd62afa02f76be63d1fff952f6348ffb019dce3","impliedFormat":1},{"version":"0b2cf5124c5f89d443dfdd7cae61a6a0b528a8e951ce6a00f3c7ab1ba0d2d534","impliedFormat":1},{"version":"e012ff0c33485d340ab68fa820d3372296b17efdb6e5cdc29ec99b82a8b159b0","impliedFormat":1},{"version":"3f563bff747def979af181255d09daf1566829c5817266ad4c289118e3cb39ae","impliedFormat":1},{"version":"51057e067bc5db4f55572329981b9ecd0e3d3b96c2b62fdb1dd0ccead1088e43","impliedFormat":1},{"version":"82f64bdecc73474993d9a44dec8ef0d3c02121580aa02072045bedab11ec882e","impliedFormat":1},{"version":"b7db045ad68ab5695ea97e40865a5981f146a62aa86f1261ad1aab59dd76e3c0","impliedFormat":1},{"version":"e90591e0e9e1b3ed53963b26c307bfe74f09131581f5ce6ed76a87f748d99991","impliedFormat":1},{"version":"52af945810b09a08235b252421270e767303cdf9b932bc5f957b2538f38a02d1","impliedFormat":1},{"version":"53029155e358b3b324dd5e38332f1809848e601057823892a9e77b6b3a9d140e","impliedFormat":1},{"version":"313f55101d2baeb5f01dc30f100d136190debad5ffa4453581843efa3219689a","impliedFormat":1},{"version":"05e638a171f5969fca61933d6d89f30f5acbbc70b74d2539957a688a5292b55c","impliedFormat":1},{"version":"43dd0f8de489f3111652b6c425cd01bb9259234bef62761440d2a982cb9d958e","impliedFormat":1},{"version":"0a36bd27b6af811f763d5f1254637ce9300574f02e875f5e1b23110829357e38","impliedFormat":1},{"version":"3ea0e65a45f7006261c963f7abcac37a91513eadf72aeef909cb2ad7676cc4f1","impliedFormat":1},{"version":"5637b24d008a13b63ac8e76579e3c0e595db5c4052bc052414a5fc4f57545bf5","impliedFormat":1},{"version":"909d0a3ae5c7e3aa435f53cbbeaec617a489283076c61f0cc0f73452e0c6232f","impliedFormat":1},{"version":"e75c93d9068a6664e2e2827a720def5d5bf6532af5952a6b8fe3eee440ca6b5c","impliedFormat":1},{"version":"62f95fcace684999ebca0823e7751a39c8738c4fc01dfa4d1334c1b32b026466","impliedFormat":1},{"version":"f5f29a11cc28ee80696a7210b16e263fd5136ff04a79bf5df55ede3a4e68b3e9","impliedFormat":1},{"version":"cf3e2bee2220a6805904d14bf54d2c9e0ad3bf6d76add9244535f8ac34b919e4","impliedFormat":1},{"version":"98d88c8fd633d0054e791714742e9537b74a68d38a7ff81374e6a61242cea221","impliedFormat":1},{"version":"fcc19e67c9aa935dfd3e3d38d2b3d2b8215ccb28bc6106d159ed1ae65d667f73","impliedFormat":1},{"version":"e6f249463d9c5f898b1d0511c58dee7c3e3fe521fd6758749bf12be49e4e937f","impliedFormat":1},{"version":"3cf11201c92c4e7caf2696e144fa3fb524c6cb25157bb253a2beded585f410cf","impliedFormat":1},{"version":"d3c220e75847aa7bc24784572947bd48b843d094b22ae4899a45788f2ba70a43","impliedFormat":1},{"version":"818ea1645d3b08a7c3c4b84c32b4a18eb9f217e46dc8860fc751795ed14bdee0","impliedFormat":1},{"version":"943a5d4c85180884f41e96002f86848bb8c3dab9eb03c57c97aec80569e75957","impliedFormat":1},{"version":"d85d01cb4e957275b938d81e3cba52cefdda8b9c8bf84bbc5c70723b11aae30c","impliedFormat":1},{"version":"283b61717cf35dd0e5cea0726939556d12cd2b42317df2c58bebea511af0b2d5","impliedFormat":1},{"version":"3e612b62fb8e14ddff1770c41973c96eed5b6f9e5f01993f466f59af57f58f61","impliedFormat":1},{"version":"3923de820ed7c8998bd8170c8adb87721cbbe21637ba02c9c2dcb5e7d95b789b","impliedFormat":1},{"version":"aa25eafdac0666baec3e57ec29c08f06b9e21a584cff8d02455afb6e87be152d","impliedFormat":1},{"version":"e01827704d246accce473fe8e52cae498035950d9fa1673969502d65cd009295","impliedFormat":1},{"version":"a558a5b0db5e2a479a788d428012fd9172b20f51b4002523ca2ed40380ed7f24","impliedFormat":1},{"version":"5cd0a91bb8dccc1987e7cf77e5329de6388b5b14eb63d128607cc0465047ffe8","impliedFormat":1},{"version":"ba779307aa6dcbf7212d09d38e9776e923dcb367ed64f829e5b281b60bc658db","impliedFormat":1},{"version":"ce90309f156c74316186ddaa1384db82cc6d4ef0f0211ee8d07513aaaa3bd1e3","impliedFormat":1},{"version":"c58f4a7ebfa3c20f5892b2c363072bc78667f6b7ffa218c8e3898f98a0990064","impliedFormat":1},{"version":"af7fd2870746deed40e130fc0a3966de74e8f52a97ec114d0fbb35876ab05ca9","impliedFormat":1},{"version":"0166ee5d09e966ff268ccc6ee9a40a025409a18d2114a73fc7612d8fd730927a","impliedFormat":1},{"version":"264f4b5c51f7d901df3ee079949634e339b5fe157ae309ceed45192c63f9af8b","impliedFormat":1},{"version":"9869582ad4db8288b337d2aa1d0f6a44ac1f6d37e72f19f53188c520b652055a","impliedFormat":1},{"version":"04ef38fa44488af63b6927e529ccd1092532d5d8a17c8edf96d1d288d1897616","impliedFormat":1},{"version":"b2d00031dbf4cae85311aaac009fbba3d1b0b4f2e72ab690a86526e740427623","impliedFormat":1},{"version":"1122f8ac0822eeeb7cf7de02886c71109237d940be5234bc878e9f74a314cb47","impliedFormat":1},{"version":"0cf348cf10db213803bc6f041183db473759ab1e8676d826bc6139ddcad84665","impliedFormat":1},{"version":"047719aed544e716b2243212264bc2e14a1da0d1c710fe6209e228981dc82ae4","impliedFormat":1},{"version":"47a03bf1241779ad40a0cd2982526cf7547557d720d4db2df410ee166c60aa89","impliedFormat":1},{"version":"922248fee358d198745ea609ed4c2b2d87a49299fb6be7a1d229a184bbf66fd5","impliedFormat":1},{"version":"4b4cd67fd08f4a39397ad27ea21468efe758b6e58606984db94e49e6c9186b96","impliedFormat":1},{"version":"223aff866672813df1b2caafd82b5dbbbbbff07e6994bbd5747df7549c75c427","impliedFormat":1},{"version":"a37a6e239d0aae9d850b48e4cb55b548162fabadb92beb6d7d0579abc61f5bf0","impliedFormat":1},{"version":"a06aded6e43b0e09545f26957e5c0a5b4514d327f4b962d97828539a1dd5552a","impliedFormat":1},{"version":"349250884d48cb12c72dbe59a2843affb6904f8429e3f7556d138db40ec8bcd0","impliedFormat":1},{"version":"65b6cc74c86bf2d5385fb9e10bc4ad5ad09fff05a6d6e872ca4db044bb46fb3a","impliedFormat":1},{"version":"e2efe68376a25ad9bc5af48ba3888cfb9355d004c561b0b2465c4e661bdee46b","impliedFormat":1},{"version":"5399098207d4cc8d407f49c932da771ed6ceb4434d7f20e56135bd7015f331ed","impliedFormat":1},{"version":"ab8287edb8dfcccefd318ad76a5849b3c80c6bf0caed154be12dfe1112cf936c","impliedFormat":1},{"version":"cd2200fbb1d1271782654fb7fdb6d8dca7db15f7b8db2a38e7143662d491d586","impliedFormat":1},{"version":"674d7208c85a0d903f7d3f1d2fda966d00bf0886ab3e5cefb96a8f1643540a1a","impliedFormat":1},{"version":"41ab5f4e8bcaddc43ce23a691011e897b1e50355fdcbafc8cba04b286e6f1c49","impliedFormat":1},{"version":"38fe031b36c5de94bb3b1b3ad390041f74aefb61df99746de85381c7ecda75f3","impliedFormat":1},{"version":"47277bb3b4bbda8c0326fe702b9f676e8f51f883b2a90a442f5dbcdabe252ad6","impliedFormat":1},{"version":"65b02d4c494f394f8988d4a6faa4aaab5347bf963b8792f7a2b2552b78120bab","impliedFormat":1},{"version":"025a67cb489d57f4363fbeff45ce51ba807884988d0d0aba65c892376be38bfe","impliedFormat":1},{"version":"897a6a62d6b6a5c0c806a4d5f1c223a9bf41f8c97fe86e648c5b20efa3a3c25c","impliedFormat":1},{"version":"8d8d909792777b0df3d5c6846e6cac0b300dd4e99ca0cc9e0047f14fd09a8704","impliedFormat":1},{"version":"532894363916c4b9d8f8d8647f2d9b98723ab959f6cfe5209ab92ad1d128e658","impliedFormat":1},{"version":"d492ab701db274e6005df9202d2a9370df12fa0bd6191885156894407e721f58","impliedFormat":1},{"version":"a71ecc5545c1ac3fff470887c1a20bb06e3cb0e36676dedffd20d14588578e6a","impliedFormat":1},{"version":"1e5c3d857b594638715e557a713925d82a462edf7adf912cace8c384ee88688a","impliedFormat":1},{"version":"b487c070d4da4c0210fc1069f3a7663b504ca85ba8a071568939c2237eab2988","impliedFormat":1},{"version":"89bc7b5b169ed78edf3e732f70558bbb0b309bdeddfe293dd99fc8a3857fe588","impliedFormat":1},{"version":"39dd82696ddb6a0a3b64b6dd737cab9ffef6e130ddb96a571daf504e868b7dd4","impliedFormat":1},{"version":"0cd6916333ffdc9899ba3d87c0b71c341d66c21fde10091188278e8e2dbefecc","impliedFormat":1},{"version":"927a6bd9f0344c2d3e897b182a685adeab1bbb48c2cc5a134c0ecf2596752282","impliedFormat":1},{"version":"3930c95340f3e3d08276b14659bafdc9e1d93afa1d4c649a9d353f377e4c83b4","impliedFormat":1},{"version":"23211a9818220e2fbffbb3c4f53ab2bb2dac9cc3ca998607e56e90c961c134f2","impliedFormat":1},{"version":"4372899ea8be93b7d1b0a21b487c5b726f91a6c1c0785f9ae7b851738bde88b0","impliedFormat":1},{"version":"59c1a9f97666d459ebaba5f5dacdb453ae0c671b317467697764c2e0e44bf196","impliedFormat":1},{"version":"ee72eb60620acd1c765a3c5a6919fdd6786fa1e04193f33c248118d17ad01378","impliedFormat":1},{"version":"f07d5eb6281efe08966d422297f256990f79ca31aa8bbce41510a8c67e4d9b26","impliedFormat":1},{"version":"8f33a2e973c015d4fb8ac6d0682adf9412770687912351d6f467b57716d86862","impliedFormat":1},{"version":"7048fec24c26de6df7c70332b201ee3752cc1077c300de2bf015ff4e17d8b3c2","impliedFormat":1},{"version":"92f2155186acb48c1c08fb8a9076e12b24111d660461b077b28b2d43472ee519","impliedFormat":1},{"version":"3fe4a676fc45b2369d84e7cec5516bfeaeb219e65f074f3dec5c33620cb53ca6","impliedFormat":1},{"version":"890e772f577db50212f462fb39c10eacc4cd169996d2955adc1676bcbf54520d","impliedFormat":1},{"version":"fc921b38250c2ffd339af991bb6541781cc4531238ddf70806bc56f467a8a7b9","impliedFormat":1},{"version":"8c1d7fe8d40405e39e8f7d3817b4ae399433bf08adcfb3582ae97618a7138375","impliedFormat":1},{"version":"3d6ca77f1d7bbf66fc0f967c3186eee8cb30acd4e2f41385193bdfab1d429ca9","impliedFormat":1},{"version":"fc9f3067d0496769c3426f19e8d901e954033dacc1f988af8196640470e56d7b","impliedFormat":1},{"version":"30df6f853d3f6f2ebc5b2c7e2bd173f002ae66f51b7fca3949832320b4eae141","impliedFormat":1},{"version":"203b67e6d33c81b74a8858fdee4f4d0a99e557121db927c96cbb2f305b17111e","impliedFormat":1},{"version":"29c9c6cb20d54a225e9de60cb924d4d40d29d1edb98c4859d1a2b2e8e8e95950","impliedFormat":1},{"version":"e20f5d1774ccd75f556033ae1400f0bf228c384f0f4c2c0264fa093e33dc2484","impliedFormat":1},{"version":"686cc00a3582645bc207c03c8dd62b14fa3e2647574d50a9166edae25b7953e4","impliedFormat":1},{"version":"a663713aa6a9cc2295d94b0c137e8a80070c96c541fbc9987dd87e7a6dc5e0b2","impliedFormat":1},{"version":"0e306b441cefc4fbfcd84f168cfc19919c998a5c5a75271d5ee0ac2546c749e0","impliedFormat":1},{"version":"74bdd55516600d729e13503865eb67e94efea6af92851f250bf4586e805e562c","impliedFormat":1},{"version":"6fc661fc602ab817015df974f6c1258aef4010de01c76a550286609b9cb721ec","impliedFormat":1},{"version":"4093918e4ea19a0faf71146b00d2c72b6207eecb26b69c89de6fc6894f8248a2","impliedFormat":1},{"version":"96642332c1c2c450579775f18df0cc08c373b0f1df69f678cdc95a1ad8813bb4","impliedFormat":1},{"version":"cd344619cb6fad71c80c120d38cd2ac51ba72975326b1b46e3e88d4c5adc3eb0","impliedFormat":1},{"version":"3f3823dc063ce069c9bbdc198d981a1e2ea8784c053b297ed3ca9bbbc3a80af5","impliedFormat":1},{"version":"c9abf080bfa07e56f7da30fbd043cabe4ea4758ae529f8c70c232bbcb17a3aee","impliedFormat":1},{"version":"6df354f6d3210b77d03ce7c5ab27ad0914fee60568996c570d20c9ad9f324845","impliedFormat":1},{"version":"35ecf5e5d1d0038c37a259a6bac12687887977afdea7fd5d60982013e4360755","impliedFormat":1},{"version":"9f7f86921e90060af47419bcafb12f3de4f2251c01de2f152510fa1d4feb972b","impliedFormat":1},{"version":"7106bf0f55dadff8c02b3ab28e5ff6e007baa02fc26cf58d1994eb6482114588","impliedFormat":1},{"version":"667213d5ddeb5db6f2405f612903b8438a6809b3e0410cee7efb2374f2210643","signature":"53ecbb5d0d5f7b24a56b5bd8857bd07cb1b046dbaa9f9bb1ce47085f78a2bbc8"},{"version":"580e6e94d79a078af1ae1659dbe11509f1f639c66abc56a81865444af631e342","signature":"d2a3b2942991e306f2ff37bddeaa4b9df205f0631dbedfff5f2d4e755a2bff18"},{"version":"b3a63c26729fdc3d287fbad171f11209225f599e280c9d1d494a19974d06a48d","signature":"8ce3f829fecdaf18ec48beb3ac88542b30fd14fa70b8d38a98456d30dcf78eaa"},{"version":"18c10665b4084243b1ac2c957aa45849c988a1dd415492c5a464bb2555736d8c","signature":"30c568cfe18ad936c9007496d25be515296e75987dcdb9f0feee2b3cd8e5dbcd"},{"version":"d4d2e445bfb51c5272fd49fa07aa5e9548c1ffc173040772008d8d7e23172887","signature":"d1ac5dd0f58b5f58e18a12a4b79274f99875ef5c8c6d7b1c536b1f12ff46dee0"},{"version":"4a9a9aa91296ef9e7edbf6f12ccaa25e066bc46320068fe754eb005a529936ea","impliedFormat":1},{"version":"e1c11673ba62aeabb72bc20436ad6e1edec8cc71183d4f152cda2654088b4487","impliedFormat":1},{"version":"5a7ebcf5fe8ac590dd03af1bbe426dfed639a3490fb1e5d6b934e45643b8ea1b","impliedFormat":1},{"version":"b7e1119637195dffe2cf05b0807d5afff3d89d20e05c8aff85a003386013e9bd","impliedFormat":1},{"version":"62201cf5fbd663e05f06bd2b8c57f3cf7dbbe94586ff35f6460190bd75e1703e","affectsGlobalScope":true,"impliedFormat":1},{"version":"9f49b8064f63b7b3275a8247692967da2458734ea9afcf5ffd86b5c177674740","impliedFormat":1},{"version":"0ebaacc7ad803346553589d0f2442633a4e4c685077f8ef5977b7e65221c12fa","signature":"aaa6bc8bd9b6607094b92463337e70c7433b9ac067c92f437b04ed839ea94526"},{"version":"685a12c301f22a9d6304cc11f9c1c09619a68aca7171b11259d4335c6d77a22a","signature":"cf28b75852f654ba0d4653723202a074c1c0136b5923d6b848e5932c21016789"},{"version":"22ccd5838b49541e7f6bedb3802626ff06d4f1bde72fa2b6585202d4e86d3a9a","signature":"ad4dbecd6e5148ea842d36a69bc832d221e45524852ddd8de8c2b106ae4e924d"},{"version":"029572deeb55036a36838cfc0f02ad2eae8c2fe3774dfbc8af84fba4335e8e9f","signature":"30c568cfe18ad936c9007496d25be515296e75987dcdb9f0feee2b3cd8e5dbcd"},{"version":"9d95513e603028d784bfd8632fe82c0090d56bb9465669fede6df41061821114","signature":"c29b039ef30cf327e1b9eaf3d7cea9fb925f1acd621086a970728db337623a39"},{"version":"5b2235bd2947e9f887e2b1e9e18c8f52ff3982996c68c6a3c18554ed1ec2a168","signature":"fb526ac2eb5bbc8c70b541e281824c3b37dcc36d4005544fc1abc5e0737b9cdc"},{"version":"332d48dd3dbfa679ea094c49b8b10a290b75d56cfec17e44769d9b768fe2e935","signature":"7da23deb3b1f8f7ef37e8ccabbcdb7cd057ad1cd0202efd86ede5139d65f910f"},{"version":"d0766281e5cf0632a2fd45ec71b0bfe328c815d33446f7001c07ef00d0f42eda","signature":"8503734626ba9a52131f0032dfaf039a29a7fe2c70512e28a44720114fbb0c44"},{"version":"aa22c1cc20c9d9d2bf060553957378a7285dd37df547bcf6116a53887b98c4b4","signature":"a3fa879b475a03917e3f898d8327be77f7a2ae3b0f993770afefba061795b428"},{"version":"d144cca3fb1467a74af2b09c938fbf307e4dd3dbb6e69e7661a9acbc3d6c239b","signature":"a68c304565a559b3f9b1f9723e1b7e803aaec2a1defcd2865968cb2746ae9dba"},{"version":"bd9f30fdbebbc4be758367106578fcfd0c5b3598a3a039a92a14f46338504d38","signature":"cbb89a71bcf3f6204666989a8d5f748ccabf0949ca02a0a60d5ae4d7473edc7e"},{"version":"b995780d3bdebc6309c1ebd175b87b3b3ee0ed59359992d9b164507af0f38504","signature":"c364e739fd531c4158dd07fee7c4d1f649a2bf276c8bf5002761dede827ba877"},{"version":"945c03b45ad56b33d2ce612497467011f195b59b5303af03f27f2d4d0b0933b1","signature":"374b6260a6c337006f0ea56b520f4a643f26f76f820112117b042792f15dfdd3"},{"version":"40e65b7f4e4d1470c0f39b9b4fcdf735c0f794b8be1a0a602a999e158a529c47","signature":"c364e739fd531c4158dd07fee7c4d1f649a2bf276c8bf5002761dede827ba877"},{"version":"31b4291404d901de66e57b768f431560d3c831e65bd25ad4253d79237a373f72","signature":"5c7442fadc9c501c1f543cf00148c7501f9b32a9bbb33701e2507c370d1d5986"},{"version":"bc8e357f34add2a1b1c4938a7d0447ecc791411f4741af8b8f40f3bf1fdeca79","signature":"d8a9ecc4a16dccb6458e882c2fce032f7c46c1834321d2e0a6a933e32e7935a7"},{"version":"2aae249e71b20db3f340a7cb4d198d8cf9f193ba5c275e75ec47c5c72a56d466","signature":"863ab6d53c89011490d74363a800af2982b52988cd0e1be95e5a8714e5ff7398"},{"version":"503eebe32c001dc6c0b9d0f18031ca8c21335b023eb725366ae2f0b6e5c282b3","signature":"9a9e5e2d007f9930d16b9d83773fac42fd51021d6458493761fe8c1d166c22c3"},{"version":"3d392e50b132e2bc296d689dc4b8b63d8003a9ca5bc3ecca2432bb26dc8d0ad6","signature":"24e64c48b4913d502e987eb42f63b0ae8db39630ed01e37ab5ca1461464853e4"},{"version":"92bb8b3fae0782500371974279efa8898466df594d4f90471ea8403faf6c4893","signature":"2d6d77b8a6d536f3be637be7353c532319f7becc1b8c62e65a786c78cead6389"},{"version":"4331bda54161842efc86731b055527cc7852491c0ba2fe8cd3674abb2e69bd79","signature":"82b1d3d9dc193595eef359d445467fbcc705b4fbd56b1ccb4543659669439c49"},{"version":"68f429be47f4763235a23de2ac6f3e14609c05abe669504d008726c85e5a2d10","signature":"eaa29a9555724087a4782cac15d45424626d14311a61e772ee7f01205776a12f"},{"version":"19cdf31f2bcecd027efacb79b2c579f096a0a0813e22ab72e2bbc35e5fb91fe6","signature":"4240f2255228e9aa18fa604b832f1bb28555ddb1dd573f9b4054b239ecbb1e1b"},{"version":"f418c74331b39a4db95f978218dbe68b72fd2660ccfe2f270f7dd3f297151beb","signature":"ba706b0e4f0092cdefd41c58e5aebd4640e9e110f54d439cafb676fefa3c578b"},{"version":"2eb9691659e22c5fb39bc4ec0aa81a817a12243f784c27d1833ad8816b3cb5f6","signature":"481389173b289683604ff7714922a79f6d437c107359f7e6cb4cef697738ec7c"},{"version":"87f7148f330c05e49fe62ce10af36fabbf7334d0bd364db9cee62f75a79e9c0f","signature":"7babf517bceda52b21eef3e081ffbd0583800c78b7dc04b5c6244aeaf101e506"},{"version":"91c66355fd1fa92491be7c73d77a050da379d36d653d6903e2d4fb0b5e44afca","signature":"12c7a98c492b9d0b800b4ddfec276d85f96ba7ed130ce07c9f0f73bc5813e566"},{"version":"10d2a2a435a2aa548f1556d35120d2701c7fe33b20ddae858504b4806a23475f","signature":"8f7964e51033c4e2b1098f445568ad36c9eba421154cec910f120b973dbb0330"},{"version":"5d8116261e796f5392f3c1b54b83cb25de4683ea29b0c5c904e261b810d21c85","signature":"711c4cba6544e7c2452a22dc16103c4f679c45c36d7ca39b728f2266c298ef5d"},{"version":"c4ded561c6f595bbe084361ebeb531c2430bdc2961f3e18369d846af9998ab0a","signature":"8f7964e51033c4e2b1098f445568ad36c9eba421154cec910f120b973dbb0330"},{"version":"fcb367f21fa130bedd1b30d5b446d06b959964ee2a0237b413e7bd988d494fdd","signature":"d91a8f80450f44ff97bcd67c051a1379a42d99f7234072a437fc196670386752"},{"version":"ade406a413a8e8e854a5948bf404cda4bfffc0212308457b7687e57c7b73ac4d","signature":"e4f56505831d3d5403e6c0997a182446194c644015a420c999f003361a588056"},{"version":"ba98d09f5c0bf1c0fb8876dc9fdc5f43ef34fa831cfb84f91939d551bd2d78d9","signature":"28d624b273edd226713d69e9081cacbcffbc130ceda63e96217a4dfccf718d2e"},{"version":"efe5b05c155ef627c06cce269f88de6577e9f8aa32e9be19507ed1fd886a77b4","signature":"e6f028be4acfc71ac1dd6a4f93bc5ee70b9724d2e9b7d90923b8d9cbd36d0fed"},{"version":"a7ef1d6444793d9bf807a9f656f8ad44015c3cf3f7743e44d724912dce6b9729","signature":"0f6e9df79b2f0d5a4bca1808016172b85b8e627861e840a915cc245a7faf1590"},{"version":"7abc7c3915b16eb960e47e0d3ec40f4bb7cd398c7b3326b7953722ec61c336c3","signature":"a0390ee97dae180c18c6d83fd039a5d568d48739cd96229957d2cbdab859d439"},{"version":"f6980bf706d272bd57ed0c0fc5a41beeb9aa11b4bfac4bfb92d21fbcd2f02a8e","signature":"f86f54d34210c4b912b1f4e777f591f64dead6be4a64c1c2960f36a7d0163843"},{"version":"1fc2700ab1ff1975735a4326f5bc90cba69be6dc48a4536bb2ab2df55cf65116","signature":"704e4eb866de69e0b810ca33fa29ad64e8a614e1298b559cec9d46266a43bf93"},{"version":"d3fe89bf5084628c57e6e764cbbff57045500a18f23fcb89bf4f5bca47d965f2","signature":"d5add8632bcf2e805bf1f8f1d123095e62592ae3d35fe63bcd0789d32930f1aa"},{"version":"0a9ac399cdec5e5d213cf8af630f3ec99646eedcc9c8c7d07eca8c95d72472c0","signature":"331325bac37b224f6442d59ed912c0ed37d291e12e602b99ef511431ae5d06c3"},{"version":"8bbebbbec4209ee21cbcb00f3e9ad1d1e0d62f26c5b70caf373b2d476e2b2d96","signature":"e232e4b9dc29935f5e3cf7c73aba65b15f00ba21e8bdc28977fb86dfe62f782e"},{"version":"47771e884435c5e747839caec5bc0d5e3cfe733573124869eef931304cdd9362","signature":"d5dcc4491b98b6d0ffff6e757846215bc34b6b1677182576fd9e4b46022ebc75"},{"version":"79ae81f21a6e3eac2076da2abbda2f35959b9a86501f8d12560a57a9076d96d6","signature":"10dcceb6880d8607a34f8e9914a274a49ac91fd2787db91bae2cccca193b360c"},{"version":"46e459252ead058ff05ad8f2562f54312a74c4265eac3d0b10a13b531ae8d030","signature":"82b1d3d9dc193595eef359d445467fbcc705b4fbd56b1ccb4543659669439c49"},{"version":"b1670b31a31bd4f4219ec31174479445fe2460b69b8e1e22bdae75d454cbf27d","signature":"41d729fd74acd55c32dc862d31a2e4eb0d48644ceee7af2b6d5a70597a7fc9a6"},{"version":"fcba2080e1cc5bbf4804d2a3c1f041f46169695656a1d8664760c38f4ab3d8e7","signature":"cadc16b12ac090fcc26bf577314e1366425398346c66b45268072f616a024fb9"},{"version":"5d4af61e576234df6ec4e53e246516523612e08fd6cf187c9c462083a09c2923","signature":"7e1bab68ccaacedc5ea1a70bfe33be54e880f4a260a56e6abff8fdd6b3b98c9a"},{"version":"575b831733c547e51d5a0ad07bfa33217a8900246cb294e90458a73d42bb4bb8","signature":"909185c14c6ee5e1601591ef6139cf41af465296b419518aab7d146aaeeba3dc"},{"version":"b78cd10245a90e27e62d0558564f5d9a16576294eee724a59ae21b91f9269e4a","impliedFormat":1},{"version":"baac9896d29bcc55391d769e408ff400d61273d832dd500f21de766205255acb","impliedFormat":1},{"version":"2f5747b1508ccf83fad0c251ba1e5da2f5a30b78b09ffa1cfaf633045160afed","impliedFormat":1},{"version":"a8932b7a5ef936687cc5b2492b525e2ad5e7ed321becfea4a17d5a6c80f49e92","affectsGlobalScope":true,"impliedFormat":1},{"version":"b71c603a539078a5e3a039b20f2b0a0d1708967530cf97dec8850a9ca45baa2b","impliedFormat":1},{"version":"0e13570a7e86c6d83dd92e81758a930f63747483e2cd34ef36fcdb47d1f9726a","impliedFormat":1},{"version":"104c67f0da1bdf0d94865419247e20eded83ce7f9911a1aa75fc675c077ca66e","impliedFormat":1},{"version":"cc0d0b339f31ce0ab3b7a5b714d8e578ce698f1e13d7f8c60bfb766baeb1d35c","impliedFormat":1},{"version":"d26a79f97f25eb1c5fc36a8552e4decc7ad11104a016d31b1307c3afaf48feb1","impliedFormat":1},{"version":"24fee6aca4978801bc840cf77e4b9fd1f5b60791b6f242b1c73dcb9fd541e5ec","signature":"985169c130a91f5ce934015b7b3e062987a2ddbf26c34fa17a8ace77af155833"},{"version":"2daf752990526dd6436955951884e56c4e600ee12ea3692c1dd3cf32157397e8","signature":"6dbe8eb7d0387cd60523af27e8b20ad4f04745128bff7a98ec14dab7c9522c86"},{"version":"a52f2b79f3b01f3833ac0217f3af8290cb1f01dacffffb3899f6c3e9cde3345f","signature":"468d3750d12f596e8b4453a93f67bc60e838c7f4f3f8dc9dae64a41994807336"},{"version":"36990e5b77da46725e1c88102cc6457bd69ed0ebc08a208029ff39f6fb26a504","signature":"d8b1a628e3b769ed0221693da1b5e921cf9f045fe80759f3bd1114b304e94fea"},{"version":"cbc08f439e8b979d6f3d6df91078dc0b0c22e7d6a3f1ceaab7a46440be4e4a8b","signature":"f00bfe63bb653414510f79fd131ff8a961772e2512d5e7cb04d9a6eb356ccb09"},{"version":"459dcc6fbc25d62716493f20ff4935a801926ed7cd9fd58ea5e90ad99dc115e9","signature":"f57c723c48e7772f344a9a47334d29f55c2b837817dc19611ffc32581f3312ac"},{"version":"35d0f98f8931d9b10ac8d1355b9a94bbe7ff657a77fda830cbb4b8f610dec218","signature":"9ee0f791e89bc21e764bd02440dd10dac4c1be681f324917269cfba0f067370d"},{"version":"c195d868cccfd4df53361317de0f040397327ca2d2c06788d9977a28a427ca1b","signature":"1daf5e786bf1d9fad3947ddebf5e3eef8e4079d1efa2c988b599e8a592276b01"},{"version":"8bf3b1b3f2e6cde636de6956efaafc87c2d93a84c77f93ca281f070512c0c458","signature":"225fe2bcd00eadaea6d3a2556dcf59565b948f7c8fd75abd798fc71fede39654"},{"version":"24ecc775c7fd5d5702bd7c6fd1444970cbecbf23bb19fc67c4098e5f051a9b83","signature":"475914804bdd02e323272f81fdd7a38678a1e7789a1b48e67c5f0f30deff2e2f"},{"version":"45cf402815151ebcc80e4eb96de7c4db825c15ca01cbc5a278ec309f6584fe5c","signature":"5a6c0148504c5dfe6b2d5ca89b322705dcc46469e0714437f011435504c6b31a"},{"version":"abdf527fc37fa47435427e351c248cba3c7bd56d7acf7e578efb6be4f547e5ff","signature":"24c751cffe7607dc92af99b117100c11bed7f7800571a9e524cec8cd849ab8bc"},{"version":"c65e15b8c36d3eca5a73b056f19c96af32b1dda33d35761aab668287718021c4","signature":"fad131a4f74fb8064dc55d6164f3ec3fb816b69b1b00f08f54dc8be2b3a6590e"},{"version":"cb7adea2c20dda456523d13134782323a1e2ed4fc6ebbb3bb81073de0b22cf98","signature":"c8a9438898a39e51872c7cfaeaa047c16e35fd2bfbb16b88d65f539159db9068"},{"version":"5698b99be1a0c353f24d2451bb3e260fc04b616ab560fee5f5bc7ecb26608d64","signature":"7d71f65db32bebb0d148a19c87f59668a71ba6e4b4be780985c8b52665343d1a"},{"version":"0bd5e7096c7bc02bf70b2cc017fc45ef489cb19bd2f32a71af39ff5787f1b56a","affectsGlobalScope":true,"impliedFormat":1},{"version":"8a8eb4ebffd85e589a1cc7c178e291626c359543403d58c9cd22b81fab5b1fb9","impliedFormat":1},{"version":"87d9d29dbc745f182683f63187bf3d53fd8673e5fca38ad5eaab69798ed29fbc","impliedFormat":1},{"version":"10226abba5bd3b4b72c261c1b7fcde317927a80283eb5026889b3a14a2dd958e","affectsGlobalScope":true,"impliedFormat":1},{"version":"170d4db14678c68178ee8a3d5a990d5afb759ecb6ec44dbd885c50f6da6204f6","affectsGlobalScope":true,"impliedFormat":1},{"version":"d4d7d3f832882a4b2d611a7eaaa80c780c3342b5732090130fa9af4a40bd051e","impliedFormat":1},{"version":"05321b823dd3781d0b6aac8700bfdc0c9181d56479fe52ba6a40c9196fd661a8","impliedFormat":1},"2c8fad9a3368fe07bc76a34869b530e53e003278b7acfd03976076e0bfeb2db6","b6bce30a00fdd1343964562046da2f854b1dd4f3b4c60cc25dca63c60bb27e93","b2ec3d4c0334c43ac706a1a6a9fd8db28a948a9c2c26d5dd3d63c820005278d7",{"version":"c8905dbea83f3220676a669366cd8c1acef56af4d9d72a8b2241b1d044bb4302","affectsGlobalScope":true,"impliedFormat":99},"291ea50d7c1849242c5705da2d4f57d618f0d3e8e160ddf6e1cabe6c83687a84",{"version":"daf14648a043435e1da90cb4ba7ef005081d16de6c94e64f5dae10a86a986770","signature":"06bc3e0fd2665ccc12f38f6aff4b0412d567fad42fd318230967c2d134ba519b"},{"version":"46e60fb553b35552186d4c82a72dc7d842a95d9c9a763cd45dccfc43699337c4","signature":"994562391024ea1232292702f2cf266cb854d7844eb4d6287b378205ed2171f3"},{"version":"8318a3e945e03969383dbee7eec6e800f4117c97712bee1a6692f4ad827eff52","signature":"80e31aa42bcd02d57aa7f183fd6ec499be043c6e445efc359f5be98c838b6617"},{"version":"10b61eeebbf5ddd0842ef4e4581c35280fee5304008690a8d53e154c7604d98a","signature":"994562391024ea1232292702f2cf266cb854d7844eb4d6287b378205ed2171f3"},{"version":"28d1917b17c2c3da2335360ac9d2a6d8af86b288096bd20d3c7ea7299152687e","signature":"80e31aa42bcd02d57aa7f183fd6ec499be043c6e445efc359f5be98c838b6617"},{"version":"3c9f17d5ea93b3ad0faeafb5f16e65317942db9b978c1fbc63c50acc71ff2ce2","signature":"994562391024ea1232292702f2cf266cb854d7844eb4d6287b378205ed2171f3"},{"version":"0ebb9e8b3359cae32bd84913c2e83ed7c96a2ce0167093d068beb374601036cf","signature":"80e31aa42bcd02d57aa7f183fd6ec499be043c6e445efc359f5be98c838b6617"},"9612e2d47aea7b077356ee1718bf9590ac844a339a4f85b8a039fa59ae00b6b2","ce95d0ff998e2ca52852c19e6190479f024f581061ac55426fd356e87057be40","6bbf308a45414d9c466016669728b6da7086750d28430ddeba265984358d1bc5",{"version":"59c9e7b26836a5d0805f9875a7afa85980249f7cf818f7a8a68a72a8b2fa21c5","signature":"835e31897485a2ec30dd949f770a9fda245456b9f065a4322deca128d64f93da"},{"version":"dc02c9ed3e87c58176ed9a16431b8e9d696a93b1ab6eb9176c30dcee5ed3a984","signature":"f765bfa6f28d899e905e2b96842d0777a25947f24e2bee42dcbbf24e617055ea"},{"version":"4f349e43a7884421ca5ea9214e02f22a351b8a4fdd8b31a040626efead932521","impliedFormat":1},{"version":"1c2ba8d0d2ed60a418d8193b4624774119efc01a220e85bf4bfb89119c65edb9","impliedFormat":1},{"version":"9bf2c1252fd6b4aad91ec88c5f8c8e4d029b47ad8ecbfc35541ab13fe1b29ae9","impliedFormat":1},{"version":"b0fb5068bdeaf38e5b3decf8abee0198d3fd0b6702abe4ae081e62065bd8f39b","impliedFormat":1},{"version":"6d284ea81285ed6e0c9170bb4f4a8702c790252a7a1068a4f4b960e99fc7b662","impliedFormat":1},{"version":"a0256a66bae75a77a38a7b7975116f2d028a29290fb7a3756d3d00f785c5d397","impliedFormat":1},{"version":"2f1924232de0c31e37650242680c828c92bfe05c35fff8eae3da29741f7354e8","impliedFormat":1},{"version":"891bdf0fe2a2b2bd3a6d5ea2866c240f08627a0e46c56399ee36cf63c103a00e","impliedFormat":1},{"version":"f529a8a4861b5e1343b6be126503be122303ac6fc0b8b6124a04cb49089cfd45","impliedFormat":1},{"version":"583cd03175ac6d13c230d8f2a5646327b10b7666d33bda4ec387d05b837010f1","impliedFormat":1},{"version":"895c3a14a10e8f9ac487f0c0cca1d7bb29eb7900c20a839b432e3c5ffc48e28e","impliedFormat":1},{"version":"6c3d28b3fa3d10d6f5d23fc7b5943baeda5139a758f09a2cf1045c62d9f21b28","impliedFormat":1},{"version":"d3c83ac3b6e1037823bdf2fa401cf4bbf0617f4aa934f42d5886c21bf81ac4d3","impliedFormat":1},{"version":"291315bc124f82721bc362aaec421aad43c9a1df97c124f031703ad194e9a87a","impliedFormat":1},{"version":"049b3f81360bad1a3b0fc1cb8ba0e25b9ce29006feadd70d8210d89740c76886","impliedFormat":1},{"version":"fe0fe77d9d10b57239b78d66578f5726e0938d9d6ed70f21a71e2b3aa6091b7f","impliedFormat":1},{"version":"ac0072ca991f8373fbd420ae4ee2ce5d64464305840c620f19d11eb232f119cc","impliedFormat":1},{"version":"4f8299da3be5c9d5e1ebc4aba48f787111ab3f4369bb1743a67fa61cc5c715b7","impliedFormat":1},{"version":"ab08df9386ada133aa1f4276653064cf934ae475b0313945a7f7a6731f6b1c05","impliedFormat":1},{"version":"de696bc527fba66b712b0ec8dc38ff80251a17483691240cc363bd6953f28fc3","impliedFormat":1},{"version":"4993f7fe71e85da0d76da4c10ffa475e23f5a2786cf08fa526d7a250d831de49","impliedFormat":1},{"version":"f8856f865dcd7439d01daa090ca4a57775b80e03d19eb289211c6b1ae68e807f","impliedFormat":1},{"version":"c12c79c2d61130e321bc1f140f47f74b606b80bf346fc5d40a11c8525abb1d90","impliedFormat":1},{"version":"d9fc844db381adf4742894b2726622932aebd8d2cd472a5fa5c4efb89122fe3a","impliedFormat":1},{"version":"e28061274902bdc8c9e652bdd2d40d9a3c2a5dd359afa49862d36675323bad20","impliedFormat":1},{"version":"42518d82c17934486995cb09efe00d50851840714d6501c3a593e32f7d651e6e","impliedFormat":1},{"version":"36139cb747aa9d8be7f607f2d41a94292970c870f1fcfc51fb6b13bcdcf3bdf1","impliedFormat":1},{"version":"610a12af77a9a593f308e7edf6c70132519dd4482cdc6b3e590a18b8b656a0dd","impliedFormat":1},{"version":"cb19ff12fd44583e04b936adf550d5e0e407cd8b2e4fb8482522a4fa360b65f6","impliedFormat":1},{"version":"3d534b774484af606def45970f7e625441e86d59db08445cd86cf635d539eab3","impliedFormat":1},{"version":"fbf980f659bb4c119b14822eb232de576dd45e3f10dd29bb68713aaa0ce2e543","impliedFormat":1},{"version":"060408017b125a1746a5666a70b555a25901a1e2e1517a3801cf7959e937b38f","impliedFormat":1},{"version":"3f654bf19ee02a70fa521943058174172b0831d3618dc0eab0d05d1d914a7a72","impliedFormat":1},{"version":"c28ef785e3648b8afdd34e07dade28f9ce077d4d81f4d616d86fd2436883740e","impliedFormat":1},{"version":"d4375918c47e8a9e7364d79abd576dfa0e18bcf63e66bfc23187b7961a00976d","impliedFormat":1},{"version":"0cc6689ffb37d9cbfec4edb1be111424f71162bbdf9a2f6919142a3cf1d7fc63","impliedFormat":1},{"version":"b9c0ccd334098a2d264457f4a667c0642dc098e33cdace7ec357ee7d2ffcfb02","impliedFormat":1},{"version":"73a4400d051fc0d781dd5310bc1b6833c95b0f0e7b6b998a29cbcda84deec90b","impliedFormat":1},{"version":"949ac77f4d5e06803b7955e80b17356ec691b688f049dd7ab5569694887111e8","impliedFormat":1},{"version":"514099e9ff0c7705a386205fdcaa86e864176bebe268c0fddf9fab639868c2b8","impliedFormat":1},{"version":"9e4f603ac1db40f54c08ec2f8e38f057219a3f68850ae7aeead89dffcf323d77","impliedFormat":1},{"version":"84a7f1e7b32fd9626f132ec6ba99f38ce9d1713bb4e0e8cf95116a84b8a3880c","impliedFormat":1},{"version":"90a95bb944d8772e3f6128347e5348df6bc339c159054195973ce2ef24ced3d8","impliedFormat":1},{"version":"885eaea8a3747ac862a51dabff15e1b241d953ba3713882659598a439d99bb2c","impliedFormat":1},{"version":"1800f3c2d02797e29cfde6702a13f4f15931a0ce4887ac4c28ec45d014737eb4","impliedFormat":1},{"version":"c2652c0e0b299e553e96413547945afbf4d98c670c70d8d9c767bc97594aa266","impliedFormat":1},{"version":"31b4a56895c4762d0bd72ccf82562fa506cff53989ea5aa4da435d9c627fcb41","impliedFormat":1},{"version":"38916e0a1d8e8c8c43dbd5c72efb24fa360e57b67be462b9bba478559a4b9d63","impliedFormat":1},{"version":"089f28cb06ddfad5752b1a5681124c444b5735af4e5452032034b5706dcb4c53","impliedFormat":1},{"version":"5454ca5b16abe2af2e76b8ebeffc1f12a724386e929c39a68d021012ae879e2c","impliedFormat":1},{"version":"3b81707866b20ac92bfc948db105ad1f9b70095181908bf1e121a13ad6c84ec4","impliedFormat":1},{"version":"f8c1b8f82a14ee8458777a1057a05a92a5f6286b68504abe98016983caaa88c8","impliedFormat":1},{"version":"aa50d7a984c1c40fbda075ac29bcd2ac409f0e7b360c3cd86249cb115b86c32d","impliedFormat":1},{"version":"df2469890287cd3f361b3705af6c8b3eeb1a6baa21e85d880f5f1335a450e1d7","impliedFormat":1},{"version":"c042da07467b18f8a873f55af1c7cf36c777fda28e38ec992e3cf30f220cbd07","impliedFormat":1},{"version":"9e71cfb80016539c39240977837cc3743d3940c8cbf4f3f4930c60b8825cc04f","impliedFormat":1},{"version":"d5e628a360caae221167bedc6e5ce25dbab684f6f2a4004de92c1aeb3acfd630","impliedFormat":1},{"version":"b3a45d7855997fdc4af5ab43da9ea22199550ab0874f4ee74b6e07fa9419368a","impliedFormat":1},{"version":"eca69e6ea89e07d3b3f5de3cddd1169a6f3316feab189e3460ee6cb8679a1d24","impliedFormat":1},{"version":"d31735704ccfd0728e98278d256cc2ea5504705441012cbb90de54b5eb8d7e9e","impliedFormat":1},{"version":"2b8d4a8936922e57292439679389839d5be42d353df7c1a480e270969ba742e1","impliedFormat":1},{"version":"f8efa2fc0758a930e6576e55b1e2e34d3a18c695e46875eed27476e3ca66637a","impliedFormat":1},{"version":"ee363405a2607244ce23cc790b9abd4876d65e3f68a610c1ba7383faecfdd5ea","impliedFormat":1},{"version":"2935b4a3c7fdd310727d2e1bc41f4c3f36cbab6a3c2d2e6f7940660a09476863","impliedFormat":1},{"version":"fcfee9369cfd693a822467c2b29299e2499ba07cbd863382d7fea2265133880f","impliedFormat":1},{"version":"1dd65e4300cccec8048555f67e9fb9fa060daeab97db67d72864a2d4cd320c62","impliedFormat":1},{"version":"5e808cedafa5ffb71ef88565417d1f4eedbc7a65270c3fc918d2a48aeca0006d","impliedFormat":1},{"version":"9c8e4542199cecc9a3e1acb8e2a0a3d78023d58718c15b6e2f3e7f05155f50d1","impliedFormat":1},{"version":"9b2d2a8207d6b8479ebad21dbdd9899819540cf8f29c9aea0588484dff04c863","impliedFormat":1},{"version":"df3627017277f3480daf2a93e2dff8007995e735a773b391ad2d2c3e9f58db26","impliedFormat":1},{"version":"26b30835a0c598a091bddbaa13be4f32fa89747246c1d2bfb1c719d2c5f0c431","impliedFormat":1},{"version":"5942846b4ca92a7cd6fd40790cadb1bf0eb83cb88a030651e88ca731ee708d53","impliedFormat":1},{"version":"54c5cbf8d600fdbb84c62fc95faef3be11d21e0cb3e0ac6c2b7f6ca0161ca854","impliedFormat":1},{"version":"74d3260b63171451a22870217315b7b340f8d38f4dc5095b181c7ce7c42b7d20","impliedFormat":1},{"version":"2dfcc5fbaeab1b4f121df808a7571448634af6bb3c8eef11602fc15e1d587ef2","impliedFormat":1},{"version":"d5f635b704170b5baa44ac2c583087fcb3a1bd3ff072e4028a9a338946867872","impliedFormat":1},{"version":"e963db78e31527ee8d57aa1552db0733bddf041ac6c7b1c90c2ae70188c7a420","impliedFormat":1},{"version":"bc1d76395eeefa3b9ee38d630068e4147b4b6c6d788f5ea8632041cdcd7b2e4d","impliedFormat":1},{"version":"77307a782fd625eb3314d127fba80f44a1ba7e2f2c2c387b437362244a68275f","impliedFormat":1},{"version":"bf9003d0f7a9458d2e913404c9265e80375a6c484f640dd87880c91f7727152b","impliedFormat":1},{"version":"0e16a250cd57300c35e2f5840914c8722af19828ee69c3a1853637abdfbfff61","impliedFormat":1},{"version":"acb59a75f2a538f3429f61c8a75ff17a618744a5548603e68c9981698bf2c991","impliedFormat":1},{"version":"da316b1a67ec62dc6f1941254ec9961bd6f3580a50610c8a9c3f664bc4986ebe","impliedFormat":1},{"version":"df94244717a3072d4568973406ce727b041c4dc90c0229785972744441f1f7d8","impliedFormat":1},{"version":"a24026951e98e658ae000c4d21518394ea573091e59cad431cd1d3693246bdab","impliedFormat":1},{"version":"113eb1f34c34a9888d6b96e7304b237d857885d778a990075871e593c2fd78a1","impliedFormat":1},{"version":"0a841589c404d449c0b853cda099cb05a0d2f0479f9f294c89d621af9f350f8b","impliedFormat":1},{"version":"5a3064b35e3e8ef993fe4a0d2f1b97f7bd2c0a9a0f0a9cc70761f9539652334e","impliedFormat":1},{"version":"b769d05589ed9f3af7a4b271debede238623abdcb99649fed559b4590204dfe9","impliedFormat":1},{"version":"db0cb2e68ec35830301750b4a83f61418d8e856f56434524b95d6993467b8834","impliedFormat":1},{"version":"08e650b6ecf49c924a597566eea6afdfd1cae7f16c1aeb21f5334be673a4f781","impliedFormat":1},{"version":"3dbf447ea2e4697cdaa8422de070470d5979704503c1a187ee98280e5f1f341a","impliedFormat":1},{"version":"c65b11f141a1dc269a3a7276693f1ca790786874878352caf0ee01c09fe15bdc","impliedFormat":1},{"version":"91a8f3d781e2e132bd336818fa9b87e3e967a55f1acc1721d37119a9bef34b25","impliedFormat":1},{"version":"b44f12d83a54c7388f654c32bf6f230433816fbf2580821a74bad85c4d7f9ded","impliedFormat":1},{"version":"6971aab51399ecc5f3bba5a98fb9847bea62ed259cb33c69fb15c4f4cfa086ea","impliedFormat":1},{"version":"28ebb5550755810f05c83399e25f2958029af001a0a4e52d955939b599b06a89","impliedFormat":1},{"version":"87383631b232cd887b55a3d12ad3335b5a2bf7ea03ccd647cb04902affb42644","impliedFormat":1},{"version":"3a5fb2a9e9c0a830b0dfc1dba37e8a0e0a0b671d219ef6627cc6b1df1d9fbaf4","impliedFormat":1},{"version":"a5b185e5a86e8b13b0c77aa5c5723047afceb67176d02f3a1e193c6a34f6c1b9","impliedFormat":1},{"version":"2c638e2e5f385b8376362570930c860409f1ff5abd9db3ca61a5cb4101aaeb6a","impliedFormat":1},{"version":"16664af3ea4b68caf6c142b7e8edaf8831b8b2d05554d0144886311a4e0a84e0","impliedFormat":1},{"version":"ec94f90befedbc1b12a78feb100665619c05dafad3a8916feb4470817b24c5e1","impliedFormat":1},{"version":"4ed1fe8e3229dfe607f932b3da9ef8e76227a73daa0c62f5883192ac08bf5a51","impliedFormat":1},{"version":"2869577a010cb998860b8568ca45a8c6c6e616826e99768c4c2c5e194d0f3f7e","impliedFormat":1},{"version":"cf0b0e034128e8b88986198ca8c0457ae3f68d88c397dd7d3818c138dd942bc5","impliedFormat":1},{"version":"2bbd7affc221dfb21f084d6086b975132c34c32ee23bc7e531d5d30583d022e7","impliedFormat":1},{"version":"1e6ae0ca26732323995ad3d9405d1d9b94f97bde3cd1287cec8007a4e3338720","impliedFormat":1},{"version":"d4875732fc94924437d578396035b705890f598c19c67a93d73e7a3b27af6e12","impliedFormat":1},{"version":"01ff517c77d84f0038e5b357245673978b94cb910635a6dbbf136d835d116d37","impliedFormat":1},{"version":"0276183fa38af140097aeaeb74fdf9bcca9f8e603ca5b1b223b529b20974afab","impliedFormat":1},{"version":"3893fd5283b40c7ef77987e555123e4406afe3c2518f44b3f5032ec944099c22","impliedFormat":1},{"version":"c90dff077593c2211f2f54c90bf4916f79c01965adce59d3f23a448b3ea341b2","impliedFormat":1},{"version":"79e7818895be49dddb17df0bab720aa336803bbb93a8f9b5d83275c11ae5f988","impliedFormat":1},{"version":"15acd1b633dd108e85845cf9ba35bcdc638cd67d23538c322020e2753c17b26f","impliedFormat":1},{"version":"f68050c9914678cf1ef1c1b6c75729846cf56609a2758b883e94478f7ecfa272","impliedFormat":1},{"version":"5430c669b15b51ecbb4eda578a5f14443cff36a5d2513bd781921d8082db5049","impliedFormat":1},{"version":"0a11591ca3ea3cd124f764b7f39bbaa68dcb58f66f6dc534069bd073b0f8c082","impliedFormat":1},{"version":"3f96c54b500bd4ea34b805bb335d76e65be59f682ea32dcac99c5abf7d02b4fd","impliedFormat":1},{"version":"f821c43da42102306cf0519f6116357c6eb2533ae2177c6fb08a51a05a6a061e","impliedFormat":1},{"version":"c2227d5b4828961ae1f5e8e1470250ae8a2ef5d2bebb4fceab65d58d4b020fbb","impliedFormat":1},{"version":"559a0a6ef5f18ac88eee8562eccc5a4b1431ff7ec600f209c31262355042f839","affectsGlobalScope":true},{"version":"42baf4ca38c38deaf411ea73f37bc39ff56c6e5c761a968b64ac1b25c92b5cd8","impliedFormat":1},{"version":"d7dbe0ad36bdca8a6ecf143422a48e72cc8927bab7b23a1a2485c2f78a7022c6","impliedFormat":1},{"version":"8718fa41d7cf4aa91de4e8f164c90f88e0bf343aa92a1b9b725a9c675c64e16b","impliedFormat":1},{"version":"f992cd6cc0bcbaa4e6c810468c90f2d8595f8c6c3cf050c806397d3de8585562","impliedFormat":1},{"version":"e0c868a08451c879984ccf4d4e3c1240b3be15af8988d230214977a3a3dad4ce","impliedFormat":1},{"version":"469532350a366536390c6eb3bde6839ec5c81fe1227a6b7b6a70202954d70c40","impliedFormat":1},{"version":"17c9f569be89b4c3c17dc17a9fb7909b6bab34f73da5a9a02d160f502624e2e8","impliedFormat":1},{"version":"003df7b9a77eaeb7a524b795caeeb0576e624e78dea5e362b053cb96ae89132a","impliedFormat":1},{"version":"7ba17571f91993b87c12b5e4ecafe66b1a1e2467ac26fcb5b8cee900f6cf8ff4","impliedFormat":1},{"version":"6fc1a4f64372593767a9b7b774e9b3b92bf04e8785c3f9ea98973aa9f4bbe490","impliedFormat":1},{"version":"d30e67059f5c545c5f8f0cc328a36d2e03b8c4a091b4301bc1d6afb2b1491a3a","impliedFormat":1},{"version":"8b219399c6a743b7c526d4267800bd7c84cf8e27f51884c86ad032d662218a9d","impliedFormat":1},{"version":"bad6d83a581dbd97677b96ee3270a5e7d91b692d220b87aab53d63649e47b9ad","impliedFormat":1},{"version":"324726a1827e34c0c45c43c32ecf73d235b01e76ef6d0f44c2c0270628df746a","impliedFormat":1},{"version":"54e79224429e911b5d6aeb3cf9097ec9fd0f140d5a1461bbdece3066b17c232c","impliedFormat":1},{"version":"e1b666b145865bc8d0d843134b21cf589c13beba05d333c7568e7c30309d933a","impliedFormat":1},{"version":"ff09b6fbdcf74d8af4e131b8866925c5e18d225540b9b19ce9485ca93e574d84","impliedFormat":1},{"version":"c836b5d8d84d990419548574fc037c923284df05803b098fe5ddaa49f88b898a","impliedFormat":1},{"version":"3a2b8ed9d6b687ab3e1eac3350c40b1624632f9e837afe8a4b5da295acf491cb","impliedFormat":1},{"version":"189266dd5f90a981910c70d7dfa05e2bca901a4f8a2680d7030c3abbfb5b1e23","impliedFormat":1},{"version":"5ec8dcf94c99d8f1ed7bb042cdfa4ef6a9810ca2f61d959be33bcaf3f309debe","impliedFormat":1},{"version":"a80e02af710bdac31f2d8308890ac4de4b6a221aafcbce808123bfc2903c5dc2","impliedFormat":1},{"version":"d5895252efa27a50f134a9b580aa61f7def5ab73d0a8071f9b5bf9a317c01c2d","impliedFormat":1},{"version":"2c378d9368abcd2eba8c29b294d40909845f68557bc0b38117e4f04fc56e5f9c","impliedFormat":1},{"version":"0f345151cece7be8d10df068b58983ea8bcbfead1b216f0734037a6c63d8af87","impliedFormat":1},{"version":"37fd7bde9c88aa142756d15aeba872498f45ad149e0d1e56f3bccc1af405c520","impliedFormat":1},{"version":"2a920fd01157f819cf0213edfb801c3fb970549228c316ce0a4b1885020bad35","impliedFormat":1},{"version":"56208c500dcb5f42be7e18e8cb578f257a1a89b94b3280c506818fed06391805","impliedFormat":1},{"version":"0c94c2e497e1b9bcfda66aea239d5d36cd980d12a6d9d59e66f4be1fa3da5d5a","impliedFormat":1},{"version":"a67774ceb500c681e1129b50a631fa210872bd4438fae55e5e8698bac7036b19","impliedFormat":1},{"version":"bb220eaac1677e2ad82ac4e7fd3e609a0c7b6f2d6d9c673a35068c97f9fcd5cd","affectsGlobalScope":true,"impliedFormat":1},{"version":"dd8936160e41420264a9d5fade0ff95cc92cab56032a84c74a46b4c38e43121e","impliedFormat":1},{"version":"1f366bde16e0513fa7b64f87f86689c4d36efd85afce7eb24753e9c99b91c319","impliedFormat":1},{"version":"421c3f008f6ef4a5db2194d58a7b960ef6f33e94b033415649cd557be09ef619","impliedFormat":1},{"version":"57568ff84b8ba1a4f8c817141644b49252cc39ec7b899e4bfba0ec0557c910a0","impliedFormat":1},{"version":"e6f10f9a770dedf552ca0946eef3a3386b9bfb41509233a30fc8ca47c49db71c","impliedFormat":1},{"version":"a4a39b5714adfcadd3bbea6698ca2e942606d833bde62ad5fb6ec55f5e438ff8","impliedFormat":1},{"version":"bbc1d029093135d7d9bfa4b38cbf8761db505026cc458b5e9c8b74f4000e5e75","impliedFormat":1},{"version":"cc137d7ea6ad91ac1579463f2d25c0df4853c4e068e7fd9be5b6c27088760797","affectsGlobalScope":true,"impliedFormat":1},{"version":"6d09838b65c3c780513878793fc394ae29b8595d9e4729246d14ce69abc71140","impliedFormat":1},{"version":"fefa1d4c62ddb09c78d9f46e498a186e72b5e7aeb37093aa6b2c321b9d6ecd14","impliedFormat":1},{"version":"271cde49dfd9b398ccc91bb3aaa43854cf76f4d14e10fed91cbac649aa6cbc63","affectsGlobalScope":true,"impliedFormat":1},{"version":"2bcecd31f1b4281710c666843fc55133a0ee25b143e59f35f49c62e168123f4b","impliedFormat":1},{"version":"a6273756fa05f794b64fe1aff45f4371d444f51ed0257f9364a8b25f3501915d","impliedFormat":1},{"version":"9c4e644fe9bf08d93c93bd892705842189fe345163f8896849d5964d21b56b78","impliedFormat":1},{"version":"25d91fb9ed77a828cc6c7a863236fb712dafcd52f816eec481bd0c1f589f4404","impliedFormat":1},{"version":"4cd14cea22eed1bfb0dc76183e56989f897ac5b14c0e2a819e5162eafdcfe243","impliedFormat":1},{"version":"8d32432f68ca4ce93ad717823976f2db2add94c70c19602bf87ee67fe51df48b","impliedFormat":1},{"version":"035a5df183489c2e22f3cf59fc1ed2b043d27f357eecc0eb8d8e840059d44245","impliedFormat":1},{"version":"a4809f4d92317535e6b22b01019437030077a76fec1d93b9881c9ed4738fcc54","impliedFormat":1},{"version":"5f53fa0bd22096d2a78533f94e02c899143b8f0f9891a46965294ee8b91a9434","impliedFormat":1},{"version":"96d14f21b7652903852eef49379d04dbda28c16ed36468f8c9fa08f7c14c9538","impliedFormat":1},{"version":"fec943fdb3275eb6e006b35e04a8e2e99e9adf3f4b969ddf15315ac7575a93e4","impliedFormat":1},{"version":"c4494ef0db9a14d77401bf1703c28b72c8423354b33749729be1cab9ce710ebc","impliedFormat":1},{"version":"1ef1ce00d53ea0e647b86c38980e774cf39d9893fab23d0c1efcf440c9988ed2","impliedFormat":1},{"version":"2d4e59ab3a1fcdec40ad09ef2e5c6a40f67856b6c06919d3e1b4981fe61d9d01","impliedFormat":1},{"version":"08b5422b6fcc160d099df9d710cff2a1142175d4a4bf5dcc9808ddcea577043f","impliedFormat":1},{"version":"4f80ee53bba81c3742f1dc5e6cb053d54a877aac74f7a620af4da73a4ba86828","impliedFormat":1},{"version":"817c03c1b48aef1e718f84549e6dfd285ad10ee0bb6b8109f6920f6082db3d1d","impliedFormat":1},{"version":"ad1f3ffcde31019536358bab477c4dd6146e8a5ff10952b5b87051c22d10a839","impliedFormat":1},{"version":"a95b76aef31395752eb5cb7b386be2e287fdc32dfdf7bdbbb666e333133b1ef7","impliedFormat":1},{"version":"d4d7d3f832882a4b2d611a7eaaa80c780c3342b5732090130fa9af4a40bd051e","impliedFormat":1},{"version":"1d4bc73751d6ec6285331d1ca378904f55d9e5e8aeaa69bc45b675c3df83e778","impliedFormat":1},{"version":"d4d7d3f832882a4b2d611a7eaaa80c780c3342b5732090130fa9af4a40bd051e","impliedFormat":1},{"version":"8017277c3843df85296d8730f9edf097d68d7d5f9bc9d8124fcacf17ecfd487e","impliedFormat":1},{"version":"d4d7d3f832882a4b2d611a7eaaa80c780c3342b5732090130fa9af4a40bd051e","impliedFormat":1},{"version":"df508df6a1aadae4499d327c2360816978e28839560c044099e4acffcde5489d","impliedFormat":1},{"version":"960a68ced7820108787135bdae5265d2cc4b511b7dcfd5b8f213432a8483daf1","impliedFormat":1},{"version":"2e7ebdc7d8af978c263890bbde991e88d6aa31cc29d46735c9c5f45f0a41243b","impliedFormat":1},{"version":"b57fd1c0a680d220e714b76d83eff51a08670f56efcc5d68abc82f5a2684f0c0","impliedFormat":1},{"version":"8cf121e98669f724256d06bebafec912b92bb042a06d4944f7fb27a56c545109","impliedFormat":1},{"version":"1084565c68b2aed5d6d5cea394799bd688afdf4dc99f4e3615957857c15bb231","impliedFormat":1},{"version":"4ef960df4f672e93b479f88211ed8b5cfa8a598b97aafa3396cacdc3341e3504","impliedFormat":1},{"version":"cf3d384d082b933d987c4e2fe7bfb8710adfd9dc8155190056ed6695a25a559e","impliedFormat":1},{"version":"9871b7ee672bc16c78833bdab3052615834b08375cb144e4d2cba74473f4a589","impliedFormat":1},{"version":"c863198dae89420f3c552b5a03da6ed6d0acfa3807a64772b895db624b0de707","impliedFormat":1},{"version":"8b03a5e327d7db67112ebbc93b4f744133eda2c1743dbb0a990c61a8007823ef","impliedFormat":1},{"version":"86c73f2ee1752bac8eeeece234fd05dfcf0637a4fbd8032e4f5f43102faa8eec","impliedFormat":1},{"version":"42fad1f540271e35ca37cecda12c4ce2eef27f0f5cf0f8dd761d723c744d3159","impliedFormat":1},{"version":"ff3743a5de32bee10906aff63d1de726f6a7fd6ee2da4b8229054dfa69de2c34","impliedFormat":1},{"version":"83acd370f7f84f203e71ebba33ba61b7f1291ca027d7f9a662c6307d74e4ac22","impliedFormat":1},{"version":"1445cec898f90bdd18b2949b9590b3c012f5b7e1804e6e329fb0fe053946d5ec","impliedFormat":1},{"version":"0e5318ec2275d8da858b541920d9306650ae6ac8012f0e872fe66eb50321a669","impliedFormat":1},{"version":"cf530297c3fb3a92ec9591dd4fa229d58b5981e45fe6702a0bd2bea53a5e59be","impliedFormat":1},{"version":"c1f6f7d08d42148ddfe164d36d7aba91f467dbcb3caa715966ff95f55048b3a4","impliedFormat":1},{"version":"f4e9bf9103191ef3b3612d3ec0044ca4044ca5be27711fe648ada06fad4bcc85","impliedFormat":1},{"version":"0c1ee27b8f6a00097c2d6d91a21ee4d096ab52c1e28350f6362542b55380059a","impliedFormat":1},{"version":"7677d5b0db9e020d3017720f853ba18f415219fb3a9597343b1b1012cfd699f7","impliedFormat":1},{"version":"bc1c6bc119c1784b1a2be6d9c47addec0d83ef0d52c8fbe1f14a51b4dfffc675","impliedFormat":1},{"version":"52cf2ce99c2a23de70225e252e9822a22b4e0adb82643ab0b710858810e00bf1","impliedFormat":1},{"version":"770625067bb27a20b9826255a8d47b6b5b0a2d3dfcbd21f89904c731f671ba77","impliedFormat":1},{"version":"d1ed6765f4d7906a05968fb5cd6d1db8afa14dbe512a4884e8ea5c0f5e142c80","impliedFormat":1},{"version":"799c0f1b07c092626cf1efd71d459997635911bb5f7fc1196efe449bba87e965","impliedFormat":1},{"version":"2a184e4462b9914a30b1b5c41cf80c6d3428f17b20d3afb711fff3f0644001fd","impliedFormat":1},{"version":"9eabde32a3aa5d80de34af2c2206cdc3ee094c6504a8d0c2d6d20c7c179503cc","impliedFormat":1},{"version":"397c8051b6cfcb48aa22656f0faca2553c5f56187262135162ee79d2b2f6c966","impliedFormat":1},{"version":"a8ead142e0c87dcd5dc130eba1f8eeed506b08952d905c47621dc2f583b1bff9","impliedFormat":1},{"version":"a02f10ea5f73130efca046429254a4e3c06b5475baecc8f7b99a0014731be8b3","impliedFormat":1},{"version":"c2576a4083232b0e2d9bd06875dd43d371dee2e090325a9eac0133fd5650c1cb","impliedFormat":1},{"version":"4c9a0564bb317349de6a24eb4efea8bb79898fa72ad63a1809165f5bd42970dd","impliedFormat":1},{"version":"f40ac11d8859092d20f953aae14ba967282c3bb056431a37fced1866ec7a2681","impliedFormat":1},{"version":"cc11e9e79d4746cc59e0e17473a59d6f104692fd0eeea1bdb2e206eabed83b03","impliedFormat":1},{"version":"b444a410d34fb5e98aa5ee2b381362044f4884652e8bc8a11c8fe14bbd85518e","impliedFormat":1},{"version":"c35808c1f5e16d2c571aa65067e3cb95afeff843b259ecfa2fc107a9519b5392","impliedFormat":1},{"version":"14d5dc055143e941c8743c6a21fa459f961cbc3deedf1bfe47b11587ca4b3ef5","impliedFormat":1},{"version":"a3ad4e1fc542751005267d50a6298e6765928c0c3a8dce1572f2ba6ca518661c","impliedFormat":1},{"version":"f237e7c97a3a89f4591afd49ecb3bd8d14f51a1c4adc8fcae3430febedff5eb6","impliedFormat":1},{"version":"3ffdfbec93b7aed71082af62b8c3e0cc71261cc68d796665faa1e91604fbae8f","impliedFormat":1},{"version":"662201f943ed45b1ad600d03a90dffe20841e725203ced8b708c91fcd7f9379a","impliedFormat":1},{"version":"c9ef74c64ed051ea5b958621e7fb853fe3b56e8787c1587aefc6ea988b3c7e79","impliedFormat":1},{"version":"2462ccfac5f3375794b861abaa81da380f1bbd9401de59ffa43119a0b644253d","impliedFormat":1},{"version":"34baf65cfee92f110d6653322e2120c2d368ee64b3c7981dff08ed105c4f19b0","impliedFormat":1},{"version":"844ab83672160ca57a2a2ea46da4c64200d8c18d4ebb2087819649cad099ff0e","impliedFormat":1},{"version":"ab82804a14454734010dcdcd43f564ff7b0389bee4c5692eec76ff5b30d4cf66","impliedFormat":1},{"version":"15fe687c59d62741b4494d5e623d497d55eb38966ecf5bea7f36e48fc3fbe15e","impliedFormat":1},{"version":"2c3b8be03577c98530ef9cb1a76e2c812636a871f367e9edf4c5f3ce702b77f8","affectsGlobalScope":true,"impliedFormat":1},{"version":"f874ea4d0091b0a44362a5f74d26caab2e66dec306c2bf7e8965f5106e784c3b","impliedFormat":1},{"version":"f05afa17cfc95a95923f48614bf3eb5ab2598850ee27a7c29f1b116a71090c5d","impliedFormat":1},{"version":"1ba59c8bbeed2cb75b239bb12041582fa3e8ef32f8d0bd0ec802e38442d3f317","impliedFormat":1},{"version":"bae8d023ef6b23df7da26f51cea44321f95817c190342a36882e93b80d07a960","impliedFormat":1},{"version":"26a770cec4bd2e7dbba95c6e536390fffe83c6268b78974a93727903b515c4e7","impliedFormat":1},{"version":"74d5a87c3616cd5d8691059d531504403aa857e09cbaecb1c64dfb9ace0db185","impliedFormat":1}],"root":[[326,329],[331,338],[504,517],[520,524],[526,532],[534,542],[550,565],[568,570],[578,585],[751,755],[762,809],[819,833],[846,852],856,857,979],"options":{"allowJs":true,"allowSyntheticDefaultImports":true,"alwaysStrict":true,"declaration":true,"emitDeclarationOnly":true,"emitDecoratorMetadata":true,"esModuleInterop":true,"experimentalDecorators":true,"jsx":2,"module":99,"noImplicitAny":false,"outDir":"./","skipLibCheck":true,"strict":false,"strictNullChecks":true,"target":4,"useDefineForClassFields":false},"referencedMap":[[844,1],[836,2],[840,3],[838,2],[839,4],[834,2],[837,5],[835,2],[843,6],[841,7],[845,8],[854,9],[853,2],[855,10],[842,11],[979,12],[546,13],[615,14],[611,15],[598,2],[614,16],[607,17],[605,18],[604,18],[603,17],[600,18],[601,17],[609,19],[602,18],[599,17],[606,18],[612,20],[613,21],[608,22],[610,18],[729,23],[621,23],[626,23],[651,24],[646,25],[650,26],[648,27],[649,28],[688,29],[689,30],[686,2],[683,31],[682,26],[713,32],[730,33],[735,29],[736,34],[587,23],[647,23],[616,35],[712,36],[687,37],[930,38],[864,39],[925,40],[926,41],[927,42],[928,43],[929,44],[924,45],[918,46],[904,47],[916,48],[917,39],[931,2],[934,49],[932,2],[933,2],[859,50],[860,50],[858,2],[861,50],[863,51],[862,50],[919,52],[920,53],[921,54],[923,55],[922,53],[935,56],[936,56],[937,56],[938,56],[939,56],[947,57],[940,58],[941,56],[942,59],[943,2],[944,56],[945,56],[946,56],[978,60],[949,61],[948,2],[950,62],[903,63],[902,62],[901,64],[911,65],[915,66],[912,67],[909,68],[913,2],[908,69],[914,2],[905,70],[906,68],[910,71],[907,72],[881,73],[882,74],[883,75],[884,76],[885,73],[877,71],[887,77],[880,78],[878,2],[879,79],[886,80],[869,58],[872,81],[870,58],[867,82],[868,83],[871,84],[951,56],[956,85],[952,86],[953,80],[954,86],[955,86],[865,2],[876,87],[866,2],[873,56],[874,2],[875,56],[888,2],[893,88],[894,2],[896,89],[900,90],[897,2],[891,91],[898,92],[892,93],[889,2],[899,94],[890,95],[957,56],[958,2],[959,2],[960,96],[961,96],[962,2],[963,2],[964,97],[965,97],[966,98],[967,47],[968,2],[977,99],[969,2],[970,2],[971,2],[972,2],[973,97],[974,100],[975,56],[976,2],[817,101],[983,102],[567,1],[895,2],[816,103],[984,2],[986,104],[987,104],[988,2],[989,2],[991,105],[992,2],[993,2],[994,104],[995,2],[996,2],[997,106],[998,2],[999,2],[1000,107],[1001,2],[1002,108],[1003,2],[1004,2],[1005,2],[1006,2],[1009,2],[1008,109],[985,2],[1010,110],[1011,2],[1007,2],[1012,2],[1013,104],[1014,111],[1015,112],[566,2],[1017,113],[1016,114],[544,2],[813,115],[1018,116],[818,117],[990,2],[1020,118],[1022,119],[1023,119],[1024,119],[1021,2],[1027,120],[1025,121],[1026,121],[981,2],[814,2],[1028,2],[1029,122],[1030,123],[545,2],[1031,2],[1032,124],[518,2],[1033,125],[1034,126],[1035,127],[1036,128],[1039,129],[1037,130],[1038,131],[519,132],[128,133],[129,133],[130,134],[85,135],[131,136],[132,137],[133,138],[83,2],[134,139],[135,140],[136,141],[137,142],[138,143],[139,144],[140,144],[142,2],[141,145],[143,146],[144,147],[145,148],[127,149],[84,2],[146,150],[147,151],[148,152],[181,153],[149,154],[150,155],[151,156],[152,157],[153,158],[154,159],[155,160],[156,161],[157,162],[158,163],[159,163],[160,164],[161,2],[162,2],[163,165],[165,166],[164,167],[166,168],[167,169],[168,170],[169,171],[170,172],[171,173],[172,174],[173,175],[174,176],[175,177],[176,178],[177,179],[178,180],[179,181],[180,182],[573,2],[811,2],[812,2],[577,183],[1040,183],[575,2],[576,184],[1044,185],[1043,186],[1042,187],[1041,188],[1046,183],[1045,189],[1047,2],[1048,190],[1051,191],[1049,23],[590,23],[1050,190],[571,2],[574,192],[680,23],[982,193],[1052,2],[1077,194],[1078,195],[1053,196],[1056,196],[1075,194],[1076,194],[1066,194],[1065,197],[1063,194],[1058,194],[1071,194],[1069,194],[1073,194],[1057,194],[1070,194],[1074,194],[1059,194],[1060,194],[1072,194],[1054,194],[1061,194],[1062,194],[1064,194],[1068,194],[1079,198],[1067,194],[1055,194],[1092,199],[1091,2],[1086,198],[1088,200],[1087,198],[1080,198],[1081,198],[1083,198],[1085,198],[1089,200],[1090,200],[1082,200],[1084,200],[810,201],[815,202],[1093,2],[1095,203],[1094,2],[1019,2],[1096,2],[1097,2],[1098,204],[1099,2],[1100,205],[1101,206],[525,2],[86,2],[572,2],[533,207],[330,2],[548,208],[547,209],[980,210],[198,2],[269,211],[268,212],[267,213],[260,214],[265,215],[250,216],[249,2],[210,217],[248,218],[261,219],[208,220],[240,221],[211,222],[247,223],[266,224],[212,225],[254,226],[253,227],[213,228],[270,229],[229,230],[272,231],[273,232],[271,233],[282,234],[230,235],[258,236],[259,237],[237,238],[214,239],[274,240],[224,241],[275,242],[228,243],[276,244],[245,245],[244,246],[231,247],[232,248],[278,249],[277,250],[241,251],[227,252],[223,2],[225,253],[246,254],[279,255],[234,256],[243,257],[280,258],[257,259],[255,260],[256,261],[242,262],[281,215],[226,263],[283,244],[205,264],[298,265],[285,266],[193,2],[196,267],[262,268],[197,2],[217,269],[286,2],[263,270],[194,2],[204,2],[201,271],[235,272],[287,269],[288,273],[251,274],[233,275],[236,2],[289,276],[290,269],[291,277],[292,278],[216,279],[293,2],[207,215],[284,2],[294,2],[295,269],[206,2],[252,280],[238,2],[296,281],[195,2],[209,282],[297,269],[304,283],[325,284],[218,285],[222,286],[219,2],[220,287],[221,2],[320,288],[321,289],[322,290],[318,291],[324,292],[323,244],[319,293],[264,294],[299,2],[300,2],[302,287],[215,264],[200,2],[301,264],[239,2],[202,295],[303,296],[199,297],[203,2],[192,298],[311,299],[307,300],[306,301],[308,300],[309,301],[310,301],[305,2],[313,302],[316,303],[315,302],[314,304],[312,305],[317,306],[186,307],[189,308],[190,309],[187,2],[188,2],[185,2],[191,310],[184,215],[183,2],[691,311],[596,312],[595,313],[589,314],[592,315],[586,23],[594,314],[593,314],[620,316],[619,314],[618,314],[622,317],[623,318],[625,319],[624,314],[627,320],[628,314],[629,314],[639,321],[633,314],[637,314],[640,314],[636,314],[630,314],[638,314],[634,314],[632,314],[635,314],[631,314],[643,322],[641,314],[642,314],[597,23],[644,314],[591,323],[645,314],[732,324],[659,325],[660,326],[652,327],[657,314],[658,314],[655,328],[656,314],[654,329],[653,330],[661,323],[667,314],[664,331],[663,314],[665,332],[677,333],[678,334],[672,335],[670,314],[671,314],[668,336],[669,314],[666,314],[673,337],[675,314],[676,314],[674,314],[588,29],[662,338],[750,339],[681,340],[679,314],[685,341],[684,342],[696,343],[690,314],[695,314],[694,314],[692,344],[693,314],[699,345],[709,346],[700,314],[701,347],[706,348],[707,314],[708,314],[710,349],[697,314],[698,350],[705,351],[702,314],[703,344],[704,314],[711,352],[714,353],[715,354],[716,314],[717,355],[720,356],[719,357],[723,358],[722,314],[721,314],[724,314],[725,314],[726,314],[727,318],[728,359],[731,360],[733,361],[739,362],[737,363],[738,314],[740,314],[734,313],[741,364],[742,365],[745,366],[743,314],[746,314],[744,367],[747,368],[748,369],[749,353],[617,370],[718,371],[761,372],[757,373],[760,374],[759,2],[756,23],[758,2],[549,375],[503,376],[474,377],[364,378],[470,2],[437,379],[407,380],[393,381],[471,2],[418,2],[428,2],[447,382],[341,2],[478,383],[480,384],[479,385],[430,386],[429,387],[432,388],[431,389],[391,2],[481,390],[485,391],[483,392],[345,393],[346,393],[347,2],[394,394],[444,395],[443,2],[456,396],[381,397],[450,2],[439,2],[498,398],[500,2],[367,399],[366,400],[459,401],[462,402],[351,403],[463,404],[377,405],[348,406],[353,407],[476,408],[413,409],[497,378],[469,410],[468,411],[355,412],[356,2],[380,413],[371,414],[372,415],[379,416],[370,417],[369,418],[378,419],[420,2],[357,2],[363,2],[358,2],[359,420],[361,421],[352,2],[411,2],[465,422],[412,408],[442,2],[434,2],[449,423],[448,424],[482,392],[486,425],[484,426],[344,427],[499,2],[436,399],[368,428],[454,429],[453,2],[408,430],[396,431],[397,2],[376,432],[440,433],[441,433],[383,434],[384,2],[392,2],[360,435],[342,2],[410,436],[374,2],[349,2],[365,378],[458,437],[501,438],[402,439],[414,440],[487,385],[489,441],[488,441],[405,442],[406,443],[375,2],[339,2],[417,2],[416,444],[461,404],[457,2],[495,444],[399,445],[382,446],[398,445],[400,447],[403,444],[350,401],[452,2],[493,448],[472,449],[426,450],[425,2],[421,451],[446,452],[422,451],[424,453],[423,454],[445,409],[475,455],[473,456],[395,457],[373,2],[401,458],[490,392],[492,425],[491,426],[494,459],[464,460],[455,2],[496,461],[438,462],[433,2],[451,463],[404,464],[435,465],[388,2],[419,2],[362,444],[502,2],[466,466],[467,2],[340,2],[415,444],[343,2],[409,467],[354,2],[387,2],[385,2],[386,2],[427,2],[477,444],[390,444],[460,378],[389,468],[182,2],[81,2],[82,2],[13,2],[14,2],[16,2],[15,2],[2,2],[17,2],[18,2],[19,2],[20,2],[21,2],[22,2],[23,2],[24,2],[3,2],[25,2],[26,2],[4,2],[27,2],[31,2],[28,2],[29,2],[30,2],[32,2],[33,2],[34,2],[5,2],[35,2],[36,2],[37,2],[38,2],[6,2],[42,2],[39,2],[40,2],[41,2],[43,2],[7,2],[44,2],[49,2],[50,2],[45,2],[46,2],[47,2],[48,2],[8,2],[54,2],[51,2],[52,2],[53,2],[55,2],[9,2],[56,2],[57,2],[58,2],[60,2],[59,2],[61,2],[62,2],[10,2],[63,2],[64,2],[65,2],[11,2],[66,2],[67,2],[68,2],[69,2],[70,2],[1,2],[71,2],[72,2],[12,2],[76,2],[74,2],[79,2],[78,2],[73,2],[77,2],[75,2],[80,2],[543,2],[104,469],[115,470],[102,471],[116,472],[125,473],[93,474],[94,475],[92,476],[124,477],[119,478],[123,479],[96,480],[112,481],[95,482],[122,483],[90,484],[91,478],[97,485],[98,2],[103,486],[101,485],[88,487],[126,488],[117,489],[107,490],[106,485],[108,491],[110,492],[105,493],[109,494],[120,477],[99,495],[100,496],[111,497],[89,472],[114,498],[113,485],[118,2],[87,2],[121,499],[832,500],[539,501],[833,502],[846,503],[582,504],[581,505],[829,506],[847,507],[848,508],[585,509],[584,510],[830,511],[849,512],[850,513],[754,514],[753,515],[752,516],[762,517],[851,518],[852,519],[765,520],[764,521],[763,522],[825,523],[828,524],[767,525],[856,526],[768,527],[766,521],[822,522],[751,23],[831,528],[824,529],[826,530],[823,531],[569,2],[570,2],[579,532],[580,2],[578,505],[827,23],[755,533],[337,534],[540,535],[535,536],[769,2],[530,158],[528,537],[529,538],[536,539],[532,540],[537,541],[531,542],[534,543],[541,544],[338,545],[780,546],[781,546],[783,547],[776,548],[777,548],[778,548],[782,546],[779,549],[334,550],[785,551],[787,552],[786,553],[789,554],[790,555],[788,551],[784,556],[791,557],[504,558],[772,559],[773,560],[774,561],[771,562],[775,563],[332,564],[792,551],[796,565],[795,566],[797,567],[794,568],[793,569],[505,570],[800,571],[801,572],[802,573],[803,574],[799,575],[798,576],[506,577],[336,578],[770,549],[808,579],[804,580],[806,581],[809,582],[514,583],[805,584],[807,585],[331,586],[508,535],[333,587],[819,588],[820,589],[507,590],[511,591],[556,592],[557,593],[558,594],[513,595],[326,596],[560,2],[561,2],[559,2],[562,2],[563,2],[564,2],[565,2],[553,597],[327,598],[510,599],[552,600],[328,601],[516,602],[509,535],[555,2],[329,603],[523,602],[515,604],[512,605],[517,606],[568,607],[521,608],[520,609],[554,610],[335,611],[583,2],[526,612],[821,613],[527,2],[857,2],[550,2],[551,614],[542,2],[538,2],[522,615],[524,616]],"semanticDiagnosticsPerFile":[[328,[{"start":2707,"length":16,"code":2416,"category":1,"messageText":{"messageText":"Property 'customScreenShot' in type 'PM_Pure' is not assignable to the same property in base type 'PM'.","category":1,"code":2416,"next":[{"messageText":"Type '(opts: ScreencastOptions, page: string) => any' is not assignable to type '(opts: { path: string; }, page?: string | undefined) => any'.","category":1,"code":2322,"next":[{"messageText":"Types of parameters 'opts' and 'opts' are incompatible.","category":1,"code":2328,"next":[{"messageText":"Type '{ path: string; }' is not assignable to type 'ScreencastOptions'.","category":1,"code":2322,"next":[{"messageText":"Types of property 'path' are incompatible.","category":1,"code":2326,"next":[{"messageText":"Type 'string' is not assignable to type '`${string}.webm`'.","category":1,"code":2322,"canonicalHead":{"code":2322,"messageText":"Type '{ path: string; }' is not assignable to type 'ScreencastOptions'."}}]}]}]}]}]}},{"start":3434,"length":17,"code":2416,"category":1,"messageText":{"messageText":"Property 'createWriteStream' in type 'PM_Pure' is not assignable to the same property in base type 'PM'.","category":1,"code":2416,"next":[{"messageText":"Type '() => { write: () => boolean; end: () => void; }' is not assignable to type '(filepath: string, testName: string) => Promise<string>'.","category":1,"code":2322,"next":[{"messageText":"Type '{ write: () => boolean; end: () => void; }' is missing the following properties from type 'Promise<string>': then, catch, finally, [Symbol.toStringTag]","category":1,"code":2739,"canonicalHead":{"code":2322,"messageText":"Type '() => { write: () => boolean; end: () => void; }' is not assignable to type '(filepath: string, testName: string) => Promise<string>'."}}]}]}}]],[329,[{"start":1558,"length":9,"code":2339,"category":1,"messageText":{"messageText":"Property 'mainFrame' does not exist on type 'string | Page'.","category":1,"code":2339,"next":[{"messageText":"Property 'mainFrame' does not exist on type 'string'.","category":1,"code":2339}]}}]],[336,[{"start":678,"length":10,"code":2322,"category":1,"messageText":{"messageText":"Type '(subject: T[\"isubject\"], initialValues: T[\"iinitialValues\"], x: unknown, testResource: ITTestResourceConfiguration, pm: IPM) => Promise<T[\"isubject\"]>' is not assignable to type '(subject: T[\"isubject\"], initializer: (c?: any) => T[\"given\"], testResource: ITTestResourceConfiguration, initialValues: any, pm: IPM) => Promise<...>'.","category":1,"code":2322,"next":[{"messageText":"Types of parameters 'initialValues' and 'initializer' are incompatible.","category":1,"code":2328,"next":[{"messageText":"Type '(c?: any) => T[\"given\"]' is not assignable to type 'T[\"iinitialValues\"]'.","category":1,"code":2322,"next":[{"messageText":"'T[\"iinitialValues\"]' could be instantiated with an arbitrary type which could be unrelated to '(c?: any) => T[\"given\"]'.","category":1,"code":5082}]}]}]},"relatedInformation":[{"file":"../../src/coretypes.ts","start":1138,"length":10,"messageText":"The expected type comes from property 'beforeEach' which is declared here on type 'ITestAdapter<T>'","category":3,"code":6500}]},{"start":754,"length":19,"messageText":"Type '\"iinitialValues\"' cannot be used to index type 'T'.","category":1,"code":2536},{"start":1292,"length":6,"code":2349,"category":1,"messageText":{"messageText":"This expression is not callable.","category":1,"code":2349,"next":[{"messageText":"Type 'unknown' has no call signatures.","category":1,"code":2757}]}},{"start":1608,"length":6,"code":2322,"category":1,"messageText":{"messageText":"Type '{ assertThis?: ((x: T[\"then\"]) => any) | undefined; andWhen?: ((store: T[\"istore\"], whenCB: T[\"when\"], testResource: ITTestResourceConfiguration, pm: IPM) => Promise<T[\"istore\"]>) | undefined; ... 4 more ...; beforeEach?: ((subject: T[\"isubject\"], initializer: (c?: any) => T[\"given\"], testResource: ITTestResourceCon...' is not assignable to type 'ITestAdapter<T>'.","category":1,"code":2322,"next":[{"messageText":"Types of property 'assertThis' are incompatible.","category":1,"code":2326,"next":[{"messageText":"Type '((x: T[\"then\"]) => any) | undefined' is not assignable to type '(x: T[\"then\"]) => any'.","category":1,"code":2322,"next":[{"messageText":"Type 'undefined' is not assignable to type '(x: T[\"then\"]) => any'.","category":1,"code":2322}],"canonicalHead":{"code":2322,"messageText":"Type '{ assertThis?: ((x: T[\"then\"]) => any) | undefined; andWhen?: ((store: T[\"istore\"], whenCB: T[\"when\"], testResource: ITTestResourceConfiguration, pm: IPM) => Promise<T[\"istore\"]>) | undefined; ... 4 more ...; beforeEach?: ((subject: T[\"isubject\"], initializer: (c?: any) => T[\"given\"], testResource: ITTestResourceCon...' is not assignable to type 'ITestAdapter<T>'."}}]}]}}]],[504,[{"start":2353,"length":24,"messageText":"Function lacks ending return statement and return type does not include 'undefined'.","category":1,"code":2366},{"start":2600,"length":187,"code":2349,"category":1,"messageText":{"messageText":"This expression is not callable.","category":1,"code":2349,"next":[{"messageText":"Not all constituents of type 'void | ((fPath: string, value: string | Buffer<ArrayBufferLike> | PassThrough) => void)' are callable.","category":1,"code":2756,"next":[{"messageText":"Type 'void' has no call signatures.","category":1,"code":2757}]}]}}]],[505,[{"start":2393,"length":10,"messageText":"A spread argument must either have a tuple type or be passed to a rest parameter.","category":1,"code":2556},{"start":2858,"length":4,"messageText":"A spread argument must either have a tuple type or be passed to a rest parameter.","category":1,"code":2556}]],[506,[{"start":1353,"length":18,"code":2345,"category":1,"messageText":{"messageText":"Argument of type 'Omit<{ suites: import(\"/Users/adam/Code/testeranto/src/Types\").TestSuiteImplementation<O>; givens: import(\"/Users/adam/Code/testeranto/src/Types\").TestGivenImplementation<I, O>; whens: import(\"/Users/adam/Code/testeranto/src/Types\").TestWhenImplementation<...>; thens: import(\"/Users/adam/Code/testeranto/src/Types\")....' is not assignable to parameter of type 'Omit<{ suites: import(\"/Users/adam/Code/testeranto/src/Types\").TestSuiteImplementation<O>; givens: import(\"/Users/adam/Code/testeranto/src/Types\").TestGivenImplementation<I, O>; whens: import(\"/Users/adam/Code/testeranto/src/Types\").TestWhenImplementation<...>; thens: import(\"/Users/adam/Code/testeranto/src/Types\")....'.","category":1,"code":2345,"next":[{"messageText":"Type 'Omit<{ suites: TestSuiteImplementation<O>; givens: TestGivenImplementation<I, O>; whens: TestWhenImplementation<I, O>; thens: TestThenImplementation<...>; }, keyof M> & M & { ...; }' is not assignable to type '{ suites: Record<string, never>; givens: Record<string, any>; whens: Record<string, any>; thens: Record<string, any>; }'.","category":1,"code":2322,"next":[{"messageText":"Types of property 'suites' are incompatible.","category":1,"code":2326,"next":[{"messageText":"Type 'Record<string, any>' is not assignable to type 'Record<string, never>'.","category":1,"code":2322,"next":[{"messageText":"'string' index signatures are incompatible.","category":1,"code":2634,"next":[{"messageText":"Type 'any' is not assignable to type 'never'.","category":1,"code":2322}]}],"canonicalHead":{"code":2322,"messageText":"Type 'Omit<{ suites: TestSuiteImplementation<O>; givens: TestGivenImplementation<I, O>; whens: TestWhenImplementation<I, O>; thens: TestThenImplementation<...>; }, keyof M> & M & { ...; }' is not assignable to type '{ suites: Record<string, never>; givens: Record<string, any>; whens: Record<string, any>; thens: Record<string, any>; }'."}}]}]}]}}]],[507,[{"start":739,"length":18,"code":2345,"category":1,"messageText":{"messageText":"Argument of type 'ITestImplementation<I, O, M>' is not assignable to parameter of type 'Omit<{ suites: TestSuiteImplementation<O>; givens: TestGivenImplementation<I, O>; whens: TestWhenImplementation<I, O>; thens: TestThenImplementation<...>; }, keyof M> & M & { ...; }'.","category":1,"code":2345,"next":[{"messageText":"Type 'Omit<{ suites: TestSuiteImplementation<O>; givens: TestGivenImplementation<I, O>; whens: TestWhenImplementation<I, O>; thens: TestThenImplementation<...>; }, keyof M>' is missing the following properties from type '{ suites: Record<string, any>; givens: Record<string, any>; whens: Record<string, any>; thens: Record<string, any>; }': suites, givens, whens, thens","category":1,"code":2739,"canonicalHead":{"code":2322,"messageText":"Type 'ITestImplementation<I, O, M>' is not assignable to type '{ suites: Record<string, any>; givens: Record<string, any>; whens: Record<string, any>; thens: Record<string, any>; }'."}}]}}]],[512,[{"start":737,"length":18,"code":2345,"category":1,"messageText":{"messageText":"Argument of type 'ITestImplementation<I, O, M>' is not assignable to parameter of type 'Omit<{ suites: TestSuiteImplementation<O>; givens: TestGivenImplementation<I, O>; whens: TestWhenImplementation<I, O>; thens: TestThenImplementation<...>; }, keyof M> & M & { ...; }'.","category":1,"code":2345,"next":[{"messageText":"Type 'Omit<{ suites: TestSuiteImplementation<O>; givens: TestGivenImplementation<I, O>; whens: TestWhenImplementation<I, O>; thens: TestThenImplementation<...>; }, keyof M>' is missing the following properties from type '{ suites: Record<string, any>; givens: Record<string, any>; whens: Record<string, any>; thens: Record<string, any>; }': suites, givens, whens, thens","category":1,"code":2739,"canonicalHead":{"code":2322,"messageText":"Type 'ITestImplementation<I, O, M>' is not assignable to type '{ suites: Record<string, any>; givens: Record<string, any>; whens: Record<string, any>; thens: Record<string, any>; }'."}}]}}]],[515,[{"start":1644,"length":680,"code":2322,"category":1,"messageText":{"messageText":"Type '{ pm: IPM; config: {}; proxies: { butThenProxy: (pm: IPM, path: string) => { writeFileSync: (p: string, c: string) => any; testResourceConfiguration: ITTestResourceConfiguration; client: Socket; server: any; } | { ...; } | { ...; }; andWhenProxy: (pm: IPM, path: string) => { ...; } | ... 1 more ... | { ...; }; befor...' is not assignable to type '() => IPM'.","category":1,"code":2322,"next":[{"messageText":"Type '{ pm: IPM; config: {}; proxies: { butThenProxy: (pm: IPM, path: string) => { writeFileSync: (p: string, c: string) => any; testResourceConfiguration: ITTestResourceConfiguration; client: Socket; server: any; } | { ...; } | { ...; }; andWhenProxy: (pm: IPM, path: string) => { ...; } | ... 1 more ... | { ...; }; befor...' provides no match for the signature '(): IPM'.","category":1,"code":2658}]},"relatedInformation":[{"file":"../../src/types.ts","start":3337,"length":37,"messageText":"The expected type comes from the return type of this signature.","category":3,"code":6502}]},{"start":1901,"length":1,"messageText":"Expected 1 arguments, but got 2.","category":1,"code":2554},{"start":2090,"length":1,"messageText":"Expected 1 arguments, but got 2.","category":1,"code":2554},{"start":2293,"length":1,"messageText":"Expected 1 arguments, but got 2.","category":1,"code":2554},{"start":2347,"length":10,"code":2322,"category":1,"messageText":{"messageText":"Type '(proxyType: string) => (store: { pm: IPM; }) => { pm: IPM; } | { pm: {}; } | { largePayload: boolean; pm: { writeFileSync: (p: string, c: string) => boolean; testResourceConfiguration: ITTestResourceConfiguration; client: Socket; server: any; } | { ...; } | { ...; }; } | { ...; }' is not assignable to type '(Iw_0: string) => (zel: { pm: IPM; }, tr: ITTestResourceConfiguration, utils: PM) => Promise<(store: { pm: IPM; }) => { pm: IPM; }>'.","category":1,"code":2322,"next":[{"messageText":"Call signature return types '(store: { pm: IPM; }) => { pm: IPM; } | { pm: {}; } | { largePayload: boolean; pm: { writeFileSync: (p: string, c: string) => boolean; testResourceConfiguration: ITTestResourceConfiguration; client: Socket; server: any; } | { ...; } | { ...; }; } | { ...; }' and '(zel: { pm: IPM; }, tr: ITTestResourceConfiguration, utils: PM) => Promise<(store: { pm: IPM; }) => { pm: IPM; }>' are incompatible.","category":1,"code":2202,"next":[{"messageText":"Type '{ pm: IPM; } | { pm: {}; } | { largePayload: boolean; pm: { writeFileSync: (p: string, c: string) => boolean; testResourceConfiguration: ITTestResourceConfiguration; client: Socket; server: any; } | { ...; } | { ...; }; } | { ...; }' is not assignable to type 'Promise<(store: { pm: IPM; }) => { pm: IPM; }>'.","category":1,"code":2322,"next":[{"messageText":"Type '{ pm: IPM; }' is missing the following properties from type 'Promise<(store: { pm: IPM; }) => { pm: IPM; }>': then, catch, finally, [Symbol.toStringTag]","category":1,"code":2739,"canonicalHead":{"code":2322,"messageText":"Type '{ pm: IPM; }' is not assignable to type 'Promise<(store: { pm: IPM; }) => { pm: IPM; }>'."}}],"canonicalHead":{"code":2322,"messageText":"Type '(proxyType: string) => (store: { pm: IPM; }) => { pm: IPM; } | { pm: {}; } | { largePayload: boolean; pm: { writeFileSync: (p: string, c: string) => boolean; testResourceConfiguration: ITTestResourceConfiguration; client: Socket; server: any; } | { ...; } | { ...; }; } | { ...; }' is not assignable to type '(Iw_0: string) => (zel: { pm: IPM; }, tr: ITTestResourceConfiguration, utils: PM) => Promise<(store: { pm: IPM; }) => { pm: IPM; }>'."}}]}]},"relatedInformation":[{"start":858,"length":10,"messageText":"The expected type comes from property 'applyProxy' which is declared here on type 'TestWhenImplementation<I, O>'","category":3,"code":6500}]},{"start":3256,"length":11,"code":2322,"category":1,"messageText":{"messageText":"Type '(artifact: Promise<string>) => (store: { pm: IPM; }) => { artifacts: any[]; pm: IPM; }' is not assignable to type '(Iw_0: Promise<string>) => (zel: { pm: IPM; }, tr: ITTestResourceConfiguration, utils: PM) => Promise<(store: { pm: IPM; }) => { pm: IPM; }>'.","category":1,"code":2322,"next":[{"messageText":"Call signature return types '(store: { pm: IPM; }) => { artifacts: any[]; pm: IPM; }' and '(zel: { pm: IPM; }, tr: ITTestResourceConfiguration, utils: PM) => Promise<(store: { pm: IPM; }) => { pm: IPM; }>' are incompatible.","category":1,"code":2202,"next":[{"messageText":"Type '{ artifacts: any[]; pm: IPM; }' is missing the following properties from type 'Promise<(store: { pm: IPM; }) => { pm: IPM; }>': then, catch, finally, [Symbol.toStringTag]","category":1,"code":2739,"canonicalHead":{"code":2322,"messageText":"Type '(artifact: Promise<string>) => (store: { pm: IPM; }) => { artifacts: any[]; pm: IPM; }' is not assignable to type '(Iw_0: Promise<string>) => (zel: { pm: IPM; }, tr: ITTestResourceConfiguration, utils: PM) => Promise<(store: { pm: IPM; }) => { pm: IPM; }>'."}}]}]},"relatedInformation":[{"start":964,"length":11,"messageText":"The expected type comes from property 'addArtifact' which is declared here on type 'TestWhenImplementation<I, O>'","category":3,"code":6500}]},{"start":3376,"length":9,"code":2339,"category":1,"messageText":"Property 'artifacts' does not exist on type '{ pm: IPM; }'."},{"start":3425,"length":11,"code":2322,"category":1,"messageText":{"messageText":"Type '(jobs: any[]) => (store: { pm: IPM; }) => { testJobs: any[]; pm: IPM; }' is not assignable to type '(Iw_0: any[]) => (zel: { pm: IPM; }, tr: ITTestResourceConfiguration, utils: PM) => Promise<(store: { pm: IPM; }) => { pm: IPM; }>'.","category":1,"code":2322,"next":[{"messageText":"Call signature return types '(store: { pm: IPM; }) => { testJobs: any[]; pm: IPM; }' and '(zel: { pm: IPM; }, tr: ITTestResourceConfiguration, utils: PM) => Promise<(store: { pm: IPM; }) => { pm: IPM; }>' are incompatible.","category":1,"code":2202,"next":[{"messageText":"Type '{ testJobs: any[]; pm: IPM; }' is missing the following properties from type 'Promise<(store: { pm: IPM; }) => { pm: IPM; }>': then, catch, finally, [Symbol.toStringTag]","category":1,"code":2739,"canonicalHead":{"code":2322,"messageText":"Type '(jobs: any[]) => (store: { pm: IPM; }) => { testJobs: any[]; pm: IPM; }' is not assignable to type '(Iw_0: any[]) => (zel: { pm: IPM; }, tr: ITTestResourceConfiguration, utils: PM) => Promise<(store: { pm: IPM; }) => { pm: IPM; }>'."}}]}]},"relatedInformation":[{"start":1000,"length":11,"messageText":"The expected type comes from property 'setTestJobs' which is declared here on type 'TestWhenImplementation<I, O>'","category":3,"code":6500}]},{"start":3545,"length":11,"code":2322,"category":1,"messageText":{"messageText":"Type '(modifier: (specs: any) => any[]) => (store: { pm: IPM; }) => { specs: any[]; pm: IPM; }' is not assignable to type '(Iw_0: (specs: any) => any[]) => (zel: { pm: IPM; }, tr: ITTestResourceConfiguration, utils: PM) => Promise<(store: { pm: IPM; }) => { pm: IPM; }>'.","category":1,"code":2322,"next":[{"messageText":"Call signature return types '(store: { pm: IPM; }) => { specs: any[]; pm: IPM; }' and '(zel: { pm: IPM; }, tr: ITTestResourceConfiguration, utils: PM) => Promise<(store: { pm: IPM; }) => { pm: IPM; }>' are incompatible.","category":1,"code":2202,"next":[{"messageText":"Type '{ specs: any[]; pm: IPM; }' is missing the following properties from type 'Promise<(store: { pm: IPM; }) => { pm: IPM; }>': then, catch, finally, [Symbol.toStringTag]","category":1,"code":2739,"canonicalHead":{"code":2322,"messageText":"Type '(modifier: (specs: any) => any[]) => (store: { pm: IPM; }) => { specs: any[]; pm: IPM; }' is not assignable to type '(Iw_0: (specs: any) => any[]) => (zel: { pm: IPM; }, tr: ITTestResourceConfiguration, utils: PM) => Promise<(store: { pm: IPM; }) => { pm: IPM; }>'."}}]}]},"relatedInformation":[{"start":1026,"length":11,"messageText":"The expected type comes from property 'modifySpecs' which is declared here on type 'TestWhenImplementation<I, O>'","category":3,"code":6500}]},{"start":3671,"length":5,"code":2339,"category":1,"messageText":"Property 'specs' does not exist on type '{ pm: IPM; }'."},{"start":3749,"length":12,"code":2322,"category":1,"messageText":{"messageText":"Type '(store: { pm: IPM; }) => { pm: IPM; }' is not assignable to type '(ssel: { pm: IPM; }, utils: PM) => (store: { pm: IPM; }) => { pm: IPM; }'.","category":1,"code":2322,"next":[{"messageText":"Type '{ pm: IPM; }' is not assignable to type '(store: { pm: IPM; }) => { pm: IPM; }'.","category":1,"code":2322,"next":[{"messageText":"Type '{ pm: IPM; }' provides no match for the signature '(store: { pm: IPM; }): { pm: IPM; }'.","category":1,"code":2658}],"canonicalHead":{"code":2322,"messageText":"Type '(store: { pm: IPM; }) => { pm: IPM; }' is not assignable to type '(ssel: { pm: IPM; }, utils: PM) => (store: { pm: IPM; }) => { pm: IPM; }'."}}]},"relatedInformation":[{"file":"../../src/types.ts","start":3762,"length":81,"messageText":"The expected type comes from the return type of this signature.","category":3,"code":6502}]},{"start":3893,"length":12,"code":2322,"category":1,"messageText":{"messageText":"Type '(store: { pm: IPM; }) => { pm: IPM; }' is not assignable to type '(ssel: { pm: IPM; }, utils: PM) => (store: { pm: IPM; }) => { pm: IPM; }'.","category":1,"code":2322,"next":[{"messageText":"Type '{ pm: IPM; }' is not assignable to type '(store: { pm: IPM; }) => { pm: IPM; }'.","category":1,"code":2322,"next":[{"messageText":"Type '{ pm: IPM; }' provides no match for the signature '(store: { pm: IPM; }): { pm: IPM; }'.","category":1,"code":2658}],"canonicalHead":{"code":2322,"messageText":"Type '(store: { pm: IPM; }) => { pm: IPM; }' is not assignable to type '(ssel: { pm: IPM; }, utils: PM) => (store: { pm: IPM; }) => { pm: IPM; }'."}}]},"relatedInformation":[{"file":"../../src/types.ts","start":3762,"length":81,"messageText":"The expected type comes from the return type of this signature.","category":3,"code":6502}]},{"start":3925,"length":12,"code":2339,"category":1,"messageText":{"messageText":"Property 'getCallCount' does not exist on type 'IPM'.","category":1,"code":2339,"next":[{"messageText":"Property 'getCallCount' does not exist on type 'PM_Node'.","category":1,"code":2339}]}},{"start":4069,"length":12,"code":2322,"category":1,"messageText":{"messageText":"Type '(store: { pm: IPM; }) => { pm: IPM; }' is not assignable to type '(ssel: { pm: IPM; }, utils: PM) => (store: { pm: IPM; }) => { pm: IPM; }'.","category":1,"code":2322,"next":[{"messageText":"Type '{ pm: IPM; }' is not assignable to type '(store: { pm: IPM; }) => { pm: IPM; }'.","category":1,"code":2322,"next":[{"messageText":"Type '{ pm: IPM; }' provides no match for the signature '(store: { pm: IPM; }): { pm: IPM; }'.","category":1,"code":2658}],"canonicalHead":{"code":2322,"messageText":"Type '(store: { pm: IPM; }) => { pm: IPM; }' is not assignable to type '(ssel: { pm: IPM; }, utils: PM) => (store: { pm: IPM; }) => { pm: IPM; }'."}}]},"relatedInformation":[{"file":"../../src/types.ts","start":3762,"length":81,"messageText":"The expected type comes from the return type of this signature.","category":3,"code":6502}]},{"start":4188,"length":12,"code":2322,"category":1,"messageText":{"messageText":"Type '(store: { pm: IPM; }) => { pm: IPM; }' is not assignable to type '(ssel: { pm: IPM; }, utils: PM) => (store: { pm: IPM; }) => { pm: IPM; }'.","category":1,"code":2322,"next":[{"messageText":"Type '{ pm: IPM; }' is not assignable to type '(store: { pm: IPM; }) => { pm: IPM; }'.","category":1,"code":2322,"next":[{"messageText":"Type '{ pm: IPM; }' provides no match for the signature '(store: { pm: IPM; }): { pm: IPM; }'.","category":1,"code":2658}],"canonicalHead":{"code":2322,"messageText":"Type '(store: { pm: IPM; }) => { pm: IPM; }' is not assignable to type '(ssel: { pm: IPM; }, utils: PM) => (store: { pm: IPM; }) => { pm: IPM; }'."}}]},"relatedInformation":[{"file":"../../src/types.ts","start":3762,"length":81,"messageText":"The expected type comes from the return type of this signature.","category":3,"code":6502}]},{"start":4312,"length":12,"code":2322,"category":1,"messageText":{"messageText":"Type '(store: { pm: IPM; }) => { pm: IPM; }' is not assignable to type '(ssel: { pm: IPM; }, utils: PM) => (store: { pm: IPM; }) => { pm: IPM; }'.","category":1,"code":2322,"next":[{"messageText":"Type '{ pm: IPM; }' is not assignable to type '(store: { pm: IPM; }) => { pm: IPM; }'.","category":1,"code":2322,"next":[{"messageText":"Type '{ pm: IPM; }' provides no match for the signature '(store: { pm: IPM; }): { pm: IPM; }'.","category":1,"code":2658}],"canonicalHead":{"code":2322,"messageText":"Type '(store: { pm: IPM; }) => { pm: IPM; }' is not assignable to type '(ssel: { pm: IPM; }, utils: PM) => (store: { pm: IPM; }) => { pm: IPM; }'."}}]},"relatedInformation":[{"file":"../../src/types.ts","start":3762,"length":81,"messageText":"The expected type comes from the return type of this signature.","category":3,"code":6502}]},{"start":4344,"length":12,"code":2339,"category":1,"messageText":{"messageText":"Property 'getCallCount' does not exist on type 'IPM'.","category":1,"code":2339,"next":[{"messageText":"Property 'getCallCount' does not exist on type 'PM_Node'.","category":1,"code":2339}]}},{"start":4479,"length":13,"code":2322,"category":1,"messageText":{"messageText":"Type '(expectedCount: number) => (store: { pm: IPM; }) => { pm: IPM; }' is not assignable to type '(It_0: number) => (ssel: { pm: IPM; }, utils: PM) => (store: { pm: IPM; }) => { pm: IPM; }'.","category":1,"code":2322,"next":[{"messageText":"Call signature return types '(store: { pm: IPM; }) => { pm: IPM; }' and '(ssel: { pm: IPM; }, utils: PM) => (store: { pm: IPM; }) => { pm: IPM; }' are incompatible.","category":1,"code":2202,"next":[{"messageText":"Type '{ pm: IPM; }' is not assignable to type '(store: { pm: IPM; }) => { pm: IPM; }'.","category":1,"code":2322,"next":[{"messageText":"Type '{ pm: IPM; }' provides no match for the signature '(store: { pm: IPM; }): { pm: IPM; }'.","category":1,"code":2658}],"canonicalHead":{"code":2322,"messageText":"Type '(expectedCount: number) => (store: { pm: IPM; }) => { pm: IPM; }' is not assignable to type '(It_0: number) => (ssel: { pm: IPM; }, utils: PM) => (store: { pm: IPM; }) => { pm: IPM; }'."}}]}]},"relatedInformation":[{"start":1425,"length":13,"messageText":"The expected type comes from property 'specsModified' which is declared here on type 'TestThenImplementation<I, O>'","category":3,"code":6500}]},{"start":4569,"length":12,"code":2339,"category":1,"messageText":{"messageText":"Property 'getCallCount' does not exist on type 'IPM'.","category":1,"code":2339,"next":[{"messageText":"Property 'getCallCount' does not exist on type 'PM_Node'.","category":1,"code":2339}]}},{"start":4793,"length":11,"code":2322,"category":1,"messageText":{"messageText":"Type '(expectedPath: string) => (store: { pm: IPM; }) => { pm: IPM; }' is not assignable to type '(It_0: string) => (ssel: { pm: IPM; }, utils: PM) => (store: { pm: IPM; }) => { pm: IPM; }'.","category":1,"code":2322,"next":[{"messageText":"Call signature return types '(store: { pm: IPM; }) => { pm: IPM; }' and '(ssel: { pm: IPM; }, utils: PM) => (store: { pm: IPM; }) => { pm: IPM; }' are incompatible.","category":1,"code":2202,"next":[{"messageText":"Type '{ pm: IPM; }' is not assignable to type '(store: { pm: IPM; }) => { pm: IPM; }'.","category":1,"code":2322,"next":[{"messageText":"Type '{ pm: IPM; }' provides no match for the signature '(store: { pm: IPM; }): { pm: IPM; }'.","category":1,"code":2658}],"canonicalHead":{"code":2322,"messageText":"Type '(expectedPath: string) => (store: { pm: IPM; }) => { pm: IPM; }' is not assignable to type '(It_0: string) => (ssel: { pm: IPM; }, utils: PM) => (store: { pm: IPM; }) => { pm: IPM; }'."}}]}]},"relatedInformation":[{"start":1077,"length":11,"messageText":"The expected type comes from property 'verifyProxy' which is declared here on type 'TestThenImplementation<I, O>'","category":3,"code":6500}]},{"start":4986,"length":11,"code":2339,"category":1,"messageText":{"messageText":"Property 'getLastCall' does not exist on type 'IPM'.","category":1,"code":2339,"next":[{"messageText":"Property 'getLastCall' does not exist on type 'PM_Node'.","category":1,"code":2339}]}},{"start":5200,"length":12,"code":2322,"category":1,"messageText":{"messageText":"Type '(store: { pm: IPM; }) => { pm: IPM; }' is not assignable to type '(ssel: { pm: IPM; }, utils: PM) => (store: { pm: IPM; }) => { pm: IPM; }'.","category":1,"code":2322,"next":[{"messageText":"Type '{ pm: IPM; }' is not assignable to type '(store: { pm: IPM; }) => { pm: IPM; }'.","category":1,"code":2322,"next":[{"messageText":"Type '{ pm: IPM; }' provides no match for the signature '(store: { pm: IPM; }): { pm: IPM; }'.","category":1,"code":2658}],"canonicalHead":{"code":2322,"messageText":"Type '(store: { pm: IPM; }) => { pm: IPM; }' is not assignable to type '(ssel: { pm: IPM; }, utils: PM) => (store: { pm: IPM; }) => { pm: IPM; }'."}}]},"relatedInformation":[{"file":"../../src/types.ts","start":3762,"length":81,"messageText":"The expected type comes from the return type of this signature.","category":3,"code":6502}]},{"start":5232,"length":12,"code":2339,"category":1,"messageText":{"messageText":"Property 'getCallCount' does not exist on type 'IPM'.","category":1,"code":2339,"next":[{"messageText":"Property 'getCallCount' does not exist on type 'PM_Node'.","category":1,"code":2339}]}},{"start":5367,"length":11,"code":2322,"category":1,"messageText":{"messageText":"Type '(expectedError: string) => (store: { pm: IPM; }) => { pm: IPM; }' is not assignable to type '(It_0: string) => (ssel: { pm: IPM; }, utils: PM) => (store: { pm: IPM; }) => { pm: IPM; }'.","category":1,"code":2322,"next":[{"messageText":"Call signature return types '(store: { pm: IPM; }) => { pm: IPM; }' and '(ssel: { pm: IPM; }, utils: PM) => (store: { pm: IPM; }) => { pm: IPM; }' are incompatible.","category":1,"code":2202,"next":[{"messageText":"Type '{ pm: IPM; }' is not assignable to type '(store: { pm: IPM; }) => { pm: IPM; }'.","category":1,"code":2322,"next":[{"messageText":"Type '{ pm: IPM; }' provides no match for the signature '(store: { pm: IPM; }): { pm: IPM; }'.","category":1,"code":2658}],"canonicalHead":{"code":2322,"messageText":"Type '(expectedError: string) => (store: { pm: IPM; }) => { pm: IPM; }' is not assignable to type '(It_0: string) => (ssel: { pm: IPM; }, utils: PM) => (store: { pm: IPM; }) => { pm: IPM; }'."}}]}]},"relatedInformation":[{"start":1217,"length":11,"messageText":"The expected type comes from property 'verifyError' which is declared here on type 'TestThenImplementation<I, O>'","category":3,"code":6500}]},{"start":5843,"length":12,"code":2322,"category":1,"messageText":{"messageText":"Type '(store: { pm: IPM; }) => { pm: IPM; }' is not assignable to type '(ssel: { pm: IPM; }, utils: PM) => (store: { pm: IPM; }) => { pm: IPM; }'.","category":1,"code":2322,"next":[{"messageText":"Type '{ pm: IPM; }' is not assignable to type '(store: { pm: IPM; }) => { pm: IPM; }'.","category":1,"code":2322,"next":[{"messageText":"Type '{ pm: IPM; }' provides no match for the signature '(store: { pm: IPM; }): { pm: IPM; }'.","category":1,"code":2658}],"canonicalHead":{"code":2322,"messageText":"Type '(store: { pm: IPM; }) => { pm: IPM; }' is not assignable to type '(ssel: { pm: IPM; }, utils: PM) => (store: { pm: IPM; }) => { pm: IPM; }'."}}]},"relatedInformation":[{"file":"../../src/types.ts","start":3762,"length":81,"messageText":"The expected type comes from the return type of this signature.","category":3,"code":6502}]},{"start":6034,"length":12,"code":2322,"category":1,"messageText":{"messageText":"Type '(store: { pm: IPM; }) => { pm: IPM; }' is not assignable to type '(ssel: { pm: IPM; }, utils: PM) => (store: { pm: IPM; }) => { pm: IPM; }'.","category":1,"code":2322,"next":[{"messageText":"Type '{ pm: IPM; }' is not assignable to type '(store: { pm: IPM; }) => { pm: IPM; }'.","category":1,"code":2322,"next":[{"messageText":"Type '{ pm: IPM; }' provides no match for the signature '(store: { pm: IPM; }): { pm: IPM; }'.","category":1,"code":2658}],"canonicalHead":{"code":2322,"messageText":"Type '(store: { pm: IPM; }) => { pm: IPM; }' is not assignable to type '(ssel: { pm: IPM; }, utils: PM) => (store: { pm: IPM; }) => { pm: IPM; }'."}}]},"relatedInformation":[{"file":"../../src/types.ts","start":3762,"length":81,"messageText":"The expected type comes from the return type of this signature.","category":3,"code":6502}]},{"start":6163,"length":12,"messageText":"Expected 1 arguments, but got 2.","category":1,"code":2554},{"start":6321,"length":12,"code":2322,"category":1,"messageText":{"messageText":"Type '(store: { pm: IPM; }) => { pm: IPM; }' is not assignable to type '(ssel: { pm: IPM; }, utils: PM) => (store: { pm: IPM; }) => { pm: IPM; }'.","category":1,"code":2322,"next":[{"messageText":"Type '{ pm: IPM; }' is not assignable to type '(store: { pm: IPM; }) => { pm: IPM; }'.","category":1,"code":2322,"next":[{"messageText":"Type '{ pm: IPM; }' provides no match for the signature '(store: { pm: IPM; }): { pm: IPM; }'.","category":1,"code":2658}],"canonicalHead":{"code":2322,"messageText":"Type '(store: { pm: IPM; }) => { pm: IPM; }' is not assignable to type '(ssel: { pm: IPM; }, utils: PM) => (store: { pm: IPM; }) => { pm: IPM; }'."}}]},"relatedInformation":[{"file":"../../src/types.ts","start":3762,"length":81,"messageText":"The expected type comes from the return type of this signature.","category":3,"code":6502}]}]],[520,[{"start":3476,"length":6,"code":2339,"category":1,"messageText":"Property 'status' does not exist on type 'Error'."}]],[521,[{"start":118,"length":15,"code":2345,"category":1,"messageText":"Argument of type 'string' is not assignable to parameter of type 'number'."}]],[522,[{"start":1068,"length":18,"code":2345,"category":1,"messageText":{"messageText":"Argument of type 'ITestImplementation<I, O, M>' is not assignable to parameter of type 'Omit<{ suites: TestSuiteImplementation<O>; givens: TestGivenImplementation<I, O>; whens: TestWhenImplementation<I, O>; thens: TestThenImplementation<...>; }, keyof M> & M & { ...; }'.","category":1,"code":2345,"next":[{"messageText":"Type 'Omit<{ suites: TestSuiteImplementation<O>; givens: TestGivenImplementation<I, O>; whens: TestWhenImplementation<I, O>; thens: TestThenImplementation<...>; }, keyof M>' is missing the following properties from type '{ suites: Record<string, any>; givens: Record<string, any>; whens: Record<string, any>; thens: Record<string, any>; }': suites, givens, whens, thens","category":1,"code":2739,"canonicalHead":{"code":2322,"messageText":"Type 'ITestImplementation<I, O, M>' is not assignable to type '{ suites: Record<string, any>; givens: Record<string, any>; whens: Record<string, any>; thens: Record<string, any>; }'."}}]}}]],[553,[{"start":8613,"length":6,"code":2322,"category":1,"messageText":{"messageText":"Type '[number, Page]' is not assignable to type '[number, ITTestResourceConfiguration]'.","category":1,"code":2322,"next":[{"messageText":"Type at position 1 in source is not compatible with type at position 1 in target.","category":1,"code":2626,"next":[{"messageText":"Type 'Page' is missing the following properties from type 'ITTestResourceConfiguration': name, fs, ports","category":1,"code":2739,"canonicalHead":{"code":2322,"messageText":"Type '[number, Page]' is not assignable to type '[number, ITTestResourceConfiguration]'."}}]}]}},{"start":24760,"length":4,"messageText":"Cannot find name 'argz'.","category":1,"code":2304},{"start":32508,"length":4,"code":2322,"category":1,"messageText":{"messageText":"Type 'import(\"/Users/adam/Code/testeranto/node_modules/puppeteer-core/lib/types\").Page' is not assignable to type 'import(\"/Users/adam/Code/testeranto/node_modules/puppeteer-core/lib/esm/puppeteer/api/Page\").Page'.","category":1,"code":2322,"next":[{"messageText":"Property '#private' in type 'Page' refers to a different member that cannot be accessed from within type 'Page'.","category":1,"code":18015}]}},{"start":32601,"length":46,"messageText":"Function lacks ending return statement and return type does not include 'undefined'.","category":1,"code":2366},{"start":39168,"length":4,"messageText":"Variable 'argz' is used before being assigned.","category":1,"code":2454},{"start":46108,"length":37,"messageText":"Object is possibly 'undefined'.","category":1,"code":2532}]],[556,[{"start":1202,"length":1,"messageText":"Cannot find name 'I'.","category":1,"code":2304},{"start":1224,"length":18,"code":2322,"category":1,"messageText":"Type '(x: any) => any' is not assignable to type 'string'.","relatedInformation":[{"start":421,"length":18,"messageText":"The expected type comes from property 'SidecarInitialized' which is declared here on type 'TestSuiteImplementation<O>'","category":3,"code":6500}]},{"start":2356,"length":10,"messageText":"Variable 'callbackFn' is used before being assigned.","category":1,"code":2454},{"start":3203,"length":20,"messageText":"Property 'removeListenerCalled' does not exist on type 'PM'.","category":1,"code":2339},{"start":3406,"length":19,"messageText":"Cannot find name 'IPartialNodeAdapter'.","category":1,"code":2304},{"start":3426,"length":1,"messageText":"Cannot find name 'I'.","category":1,"code":2304}]],[557,[{"start":1090,"length":1,"messageText":"Cannot find name 'I'.","category":1,"code":2304},{"start":1112,"length":18,"code":2322,"category":1,"messageText":"Type '(x: any) => any' is not assignable to type 'string'.","relatedInformation":[{"start":304,"length":18,"messageText":"The expected type comes from property 'SidecarInitialized' which is declared here on type 'TestSuiteImplementation<O>'","category":3,"code":6500}]},{"start":1527,"length":10,"code":2322,"category":1,"messageText":{"messageText":"Type '(event: string, callback: Function) => void' is not assignable to type '{ (event: \"beforeExit\", listener: BeforeExitListener): Process; (event: \"disconnect\", listener: DisconnectListener): Process; (event: \"exit\", listener: ExitListener): Process; (event: \"rejectionHandled\", listener: RejectionHandledListener): Process; (event: \"uncaughtException\", listener: UncaughtExceptionListener): ...'.","category":1,"code":2322,"next":[{"messageText":"Type 'void' is not assignable to type 'Process'.","category":1,"code":2322,"canonicalHead":{"code":2322,"messageText":"Type '(event: string, callback: Function) => void' is not assignable to type '{ (event: \"beforeExit\", listener: BeforeExitListener): Process; (event: \"disconnect\", listener: DisconnectListener): Process; (event: \"exit\", listener: ExitListener): Process; (event: \"rejectionHandled\", listener: RejectionHandledListener): Process; (event: \"uncaughtException\", listener: UncaughtExceptionListener): ...'."}}]}},{"start":2027,"length":10,"messageText":"Variable 'callbackFn' is used before being assigned.","category":1,"code":2454},{"start":2223,"length":26,"code":2322,"category":1,"messageText":"Type 'boolean' is not assignable to type 'Process'.","relatedInformation":[{"file":"../../node_modules/@types/node/process.d.ts","start":98930,"length":69,"messageText":"The expected type comes from the return type of this signature.","category":3,"code":6502}]},{"start":2288,"length":29,"code":2322,"category":1,"messageText":"Type 'boolean' is not assignable to type 'Process'.","relatedInformation":[{"file":"../../node_modules/@types/node/events.d.ts","start":33704,"length":73,"messageText":"The expected type comes from the return type of this signature.","category":3,"code":6502}]},{"start":2691,"length":20,"messageText":"Property 'removeListenerCalled' does not exist on type 'PM'.","category":1,"code":2339},{"start":2894,"length":19,"messageText":"Cannot find name 'IPartialNodeAdapter'.","category":1,"code":2304},{"start":2914,"length":1,"messageText":"Cannot find name 'I'.","category":1,"code":2304}]],[558,[{"start":1086,"length":1,"messageText":"Cannot find name 'I'.","category":1,"code":2304},{"start":1108,"length":18,"code":2322,"category":1,"messageText":"Type '(x: any) => any' is not assignable to type 'string'.","relatedInformation":[{"start":301,"length":18,"messageText":"The expected type comes from property 'SidecarInitialized' which is declared here on type 'TestSuiteImplementation<O>'","category":3,"code":6500}]},{"start":1520,"length":10,"code":2322,"category":1,"messageText":{"messageText":"Type '(event: string, callback: Function) => void' is not assignable to type '{ (event: \"beforeExit\", listener: BeforeExitListener): Process; (event: \"disconnect\", listener: DisconnectListener): Process; (event: \"exit\", listener: ExitListener): Process; (event: \"rejectionHandled\", listener: RejectionHandledListener): Process; (event: \"uncaughtException\", listener: UncaughtExceptionListener): ...'.","category":1,"code":2322,"next":[{"messageText":"Type 'void' is not assignable to type 'Process'.","category":1,"code":2322,"canonicalHead":{"code":2322,"messageText":"Type '(event: string, callback: Function) => void' is not assignable to type '{ (event: \"beforeExit\", listener: BeforeExitListener): Process; (event: \"disconnect\", listener: DisconnectListener): Process; (event: \"exit\", listener: ExitListener): Process; (event: \"rejectionHandled\", listener: RejectionHandledListener): Process; (event: \"uncaughtException\", listener: UncaughtExceptionListener): ...'."}}]}},{"start":2020,"length":10,"messageText":"Variable 'callbackFn' is used before being assigned.","category":1,"code":2454},{"start":2215,"length":26,"code":2322,"category":1,"messageText":"Type 'boolean' is not assignable to type 'Process'.","relatedInformation":[{"file":"../../node_modules/@types/node/process.d.ts","start":98930,"length":69,"messageText":"The expected type comes from the return type of this signature.","category":3,"code":6502}]},{"start":2280,"length":29,"code":2322,"category":1,"messageText":"Type 'boolean' is not assignable to type 'Process'.","relatedInformation":[{"file":"../../node_modules/@types/node/events.d.ts","start":33704,"length":73,"messageText":"The expected type comes from the return type of this signature.","category":3,"code":6502}]},{"start":2683,"length":20,"messageText":"Property 'removeListenerCalled' does not exist on type 'PM'.","category":1,"code":2339},{"start":2886,"length":19,"messageText":"Cannot find name 'IPartialNodeAdapter'.","category":1,"code":2304},{"start":2906,"length":1,"messageText":"Cannot find name 'I'.","category":1,"code":2304}]],[568,[{"start":3413,"length":7,"code":2719,"category":1,"messageText":{"messageText":"Type '(store: import(\"http\").Server<typeof import(\"http\").IncomingMessage, typeof import(\"http\").ServerResponse>, thenCB: import(\"http\").Server<typeof import(\"http\").IncomingMessage, typeof import(\"http\").ServerResponse>, testResource: import(\"/Users/adam/Code/testeranto/src/lib/index\").ITTestResourceConfiguration, pm: im...' is not assignable to type '(store: import(\"http\").Server<typeof import(\"http\").IncomingMessage, typeof import(\"http\").ServerResponse>, thenCB: import(\"http\").Server<typeof import(\"http\").IncomingMessage, typeof import(\"http\").ServerResponse>, testResource: import(\"/Users/adam/Code/testeranto/src/lib/index\").ITTestResourceConfiguration, pm: im...'. Two different types with this name exist, but they are unrelated.","category":1,"code":2719,"next":[{"messageText":"Type 'Promise<Server<typeof IncomingMessage, typeof ServerResponse>>' is not assignable to type 'Promise<number>'.","category":1,"code":2322,"next":[{"messageText":"Type 'Server<typeof IncomingMessage, typeof ServerResponse>' is not assignable to type 'number'.","category":1,"code":2322}],"canonicalHead":{"code":2719,"messageText":"Type '(store: import(\"http\").Server<typeof import(\"http\").IncomingMessage, typeof import(\"http\").ServerResponse>, thenCB: import(\"http\").Server<typeof import(\"http\").IncomingMessage, typeof import(\"http\").ServerResponse>, testResource: import(\"/Users/adam/Code/testeranto/src/lib/index\").ITTestResourceConfiguration, pm: im...' is not assignable to type '(store: import(\"http\").Server<typeof import(\"http\").IncomingMessage, typeof import(\"http\").ServerResponse>, thenCB: import(\"http\").Server<typeof import(\"http\").IncomingMessage, typeof import(\"http\").ServerResponse>, testResource: import(\"/Users/adam/Code/testeranto/src/lib/index\").ITTestResourceConfiguration, pm: im...'. Two different types with this name exist, but they are unrelated."}}]},"relatedInformation":[{"file":"../../src/coretypes.ts","start":730,"length":7,"messageText":"The expected type comes from property 'butThen' which is declared here on type 'ITestAdapter<I>'","category":3,"code":6500}]},{"start":5256,"length":21,"messageText":"Cannot find name 'IProjectPageViewProps'.","category":1,"code":2304},{"start":5371,"length":21,"messageText":"Cannot find name 'IProjectPageViewProps'.","category":1,"code":2304},{"start":5420,"length":21,"messageText":"Cannot find name 'IProjectPageViewProps'.","category":1,"code":2304},{"start":5602,"length":18,"code":2345,"category":1,"messageText":{"messageText":"Argument of type '(port: number) => void' is not assignable to parameter of type '(port: number) => Server<typeof IncomingMessage, typeof ServerResponse>'.","category":1,"code":2345,"next":[{"messageText":"Type 'void' is not assignable to type 'Server<typeof IncomingMessage, typeof ServerResponse>'.","category":1,"code":2322}]}}]],[579,[{"start":253,"length":9,"messageText":"Identifier expected. 'interface' is a reserved word in strict mode. Modules are automatically in strict mode.","category":1,"code":1214},{"start":65,"length":14,"messageText":"Module '\"../../CoreTypes\"' has no exported member 'ITestInterface'.","category":1,"code":2305},{"start":217,"length":20,"messageText":"Cannot find module './SunriseAnimation' or its corresponding type declarations.","category":1,"code":2307},{"start":810,"length":12,"code":2345,"category":1,"messageText":{"messageText":"Argument of type 'CElement<any, Component<any, any, any>>' is not assignable to parameter of type 'ReactNode'.","category":1,"code":2345,"next":[{"messageText":"Property 'children' is missing in type 'ComponentElement<any, Component<any, any, any>>' but required in type 'ReactPortal'.","category":1,"code":2741,"canonicalHead":{"code":2322,"messageText":"Type 'ComponentElement<any, Component<any, any, any>>' is not assignable to type 'ReactPortal'."}}]},"relatedInformation":[{"file":"../../node_modules/@types/react-dom/node_modules/@types/react/index.d.ts","start":12792,"length":8,"messageText":"'children' is declared here.","category":3,"code":2728}]}]],[752,[{"start":361,"length":12,"code":2786,"category":1,"messageText":{"messageText":"'Modal.Header' cannot be used as a JSX component.","category":1,"code":2786,"next":[{"messageText":"Its type 'ForwardRefExoticComponent<ModalHeaderProps & RefAttributes<HTMLDivElement>>' is not a valid JSX element type.","category":1,"code":18053,"next":[{"messageText":"Type 'ForwardRefExoticComponent<ModalHeaderProps & RefAttributes<HTMLDivElement>>' is not assignable to type '(props: any, deprecatedLegacyContext?: any) => ReactNode'.","category":1,"code":2322,"next":[{"messageText":"Type 'ReactElement<any, string | JSXElementConstructor<any>> | null' is not assignable to type 'ReactNode'.","category":1,"code":2322,"next":[{"messageText":"Type 'ReactElement<any, string | JSXElementConstructor<any>>' is not assignable to type 'ReactNode'.","category":1,"code":2322,"next":[{"messageText":"Property 'children' is missing in type 'ReactElement<any, string | JSXElementConstructor<any>>' but required in type 'ReactPortal'.","category":1,"code":2741,"canonicalHead":{"code":2322,"messageText":"Type 'ReactElement<any, string | JSXElementConstructor<any>>' is not assignable to type 'ReactPortal'."}}]}],"canonicalHead":{"code":2322,"messageText":"Type 'ForwardRefExoticComponent<ModalHeaderProps & RefAttributes<HTMLDivElement>>' is not assignable to type '(props: any, deprecatedLegacyContext?: any) => ReactNode'."}}]}]}]},"relatedInformation":[{"file":"../../../testeranto-react/node_modules/@types/react/index.d.ts","start":10658,"length":8,"messageText":"'children' is declared here.","category":3,"code":2728}]},{"start":415,"length":11,"code":2786,"category":1,"messageText":{"messageText":"'Modal.Title' cannot be used as a JSX component.","category":1,"code":2786,"next":[{"messageText":"Its type 'BsPrefixRefForwardingComponent<\"span\", ModalTitleProps>' is not a valid JSX element type.","category":1,"code":18053,"next":[{"messageText":"Type 'BsPrefixRefForwardingComponent<\"span\", ModalTitleProps>' is not assignable to type '(props: any, deprecatedLegacyContext?: any) => ReactNode'.","category":1,"code":2322,"next":[{"messageText":"Type 'ReactElement<any, string | JSXElementConstructor<any>> | null' is not assignable to type 'ReactNode'.","category":1,"code":2322,"next":[{"messageText":"Type 'ReactElement<any, string | JSXElementConstructor<any>>' is not assignable to type 'ReactNode'.","category":1,"code":2322,"next":[{"messageText":"Property 'children' is missing in type 'ReactElement<any, string | JSXElementConstructor<any>>' but required in type 'ReactPortal'.","category":1,"code":2741,"canonicalHead":{"code":2322,"messageText":"Type 'ReactElement<any, string | JSXElementConstructor<any>>' is not assignable to type 'ReactPortal'."}}]}],"canonicalHead":{"code":2322,"messageText":"Type 'BsPrefixRefForwardingComponent<\"span\", ModalTitleProps>' is not assignable to type '(props: any, deprecatedLegacyContext?: any) => ReactNode'."}}]}]}]},"relatedInformation":[{"file":"../../../testeranto-react/node_modules/@types/react/index.d.ts","start":10658,"length":8,"messageText":"'children' is declared here.","category":3,"code":2728}]},{"start":855,"length":10,"code":2786,"category":1,"messageText":{"messageText":"'Modal.Body' cannot be used as a JSX component.","category":1,"code":2786,"next":[{"messageText":"Its type 'BsPrefixRefForwardingComponent<\"div\", ModalBodyProps>' is not a valid JSX element type.","category":1,"code":18053,"next":[{"messageText":"Type 'BsPrefixRefForwardingComponent<\"div\", ModalBodyProps>' is not assignable to type '(props: any, deprecatedLegacyContext?: any) => ReactNode'.","category":1,"code":2322,"next":[{"messageText":"Type 'ReactElement<any, string | JSXElementConstructor<any>> | null' is not assignable to type 'ReactNode'.","category":1,"code":2322,"next":[{"messageText":"Type 'ReactElement<any, string | JSXElementConstructor<any>>' is not assignable to type 'ReactNode'.","category":1,"code":2322,"next":[{"messageText":"Property 'children' is missing in type 'ReactElement<any, string | JSXElementConstructor<any>>' but required in type 'ReactPortal'.","category":1,"code":2741,"canonicalHead":{"code":2322,"messageText":"Type 'ReactElement<any, string | JSXElementConstructor<any>>' is not assignable to type 'ReactPortal'."}}]}],"canonicalHead":{"code":2322,"messageText":"Type 'BsPrefixRefForwardingComponent<\"div\", ModalBodyProps>' is not assignable to type '(props: any, deprecatedLegacyContext?: any) => ReactNode'."}}]}]}]},"relatedInformation":[{"file":"../../../testeranto-react/node_modules/@types/react/index.d.ts","start":10658,"length":8,"messageText":"'children' is declared here.","category":3,"code":2728}]},{"start":956,"length":9,"code":2786,"category":1,"messageText":{"messageText":"'ThemeCard' cannot be used as a JSX component.","category":1,"code":2786,"next":[{"messageText":"Its type '({ theme, handleThemeChange, value, title, description, style, }: { theme: string; handleThemeChange: (e: React.ChangeEvent<HTMLInputElement>) => void; value: string; title: string; description: string; style: React.CSSProperties; }) => JSX.Element' is not a valid JSX element type.","category":1,"code":18053,"next":[{"messageText":"Type '({ theme, handleThemeChange, value, title, description, style, }: { theme: string; handleThemeChange: (e: React.ChangeEvent<HTMLInputElement>) => void; value: string; title: string; description: string; style: React.CSSProperties; }) => JSX.Element' is not assignable to type '(props: any, deprecatedLegacyContext?: any) => ReactNode'.","category":1,"code":2322,"next":[{"messageText":"Type 'Element' is not assignable to type 'ReactNode'.","category":1,"code":2322,"next":[{"messageText":"Property 'children' is missing in type 'Element' but required in type 'ReactPortal'.","category":1,"code":2741,"canonicalHead":{"code":2322,"messageText":"Type 'Element' is not assignable to type 'ReactPortal'."}}],"canonicalHead":{"code":2322,"messageText":"Type '({ theme, handleThemeChange, value, title, description, style, }: { theme: string; handleThemeChange: (e: React.ChangeEvent<HTMLInputElement>) => void; value: string; title: string; description: string; style: React.CSSProperties; }) => JSX.Element' is not assignable to type '(props: any, deprecatedLegacyContext?: any) => ReactNode'."}}]}]}]},"relatedInformation":[{"file":"../../../testeranto-react/node_modules/@types/react/index.d.ts","start":10658,"length":8,"messageText":"'children' is declared here.","category":3,"code":2728}]},{"start":1321,"length":9,"code":2786,"category":1,"messageText":{"messageText":"'ThemeCard' cannot be used as a JSX component.","category":1,"code":2786,"next":[{"messageText":"Its type '({ theme, handleThemeChange, value, title, description, style, }: { theme: string; handleThemeChange: (e: React.ChangeEvent<HTMLInputElement>) => void; value: string; title: string; description: string; style: React.CSSProperties; }) => JSX.Element' is not a valid JSX element type.","category":1,"code":18053,"next":[{"messageText":"Type '({ theme, handleThemeChange, value, title, description, style, }: { theme: string; handleThemeChange: (e: React.ChangeEvent<HTMLInputElement>) => void; value: string; title: string; description: string; style: React.CSSProperties; }) => JSX.Element' is not assignable to type '(props: any, deprecatedLegacyContext?: any) => ReactNode'.","category":1,"code":2322,"next":[{"messageText":"Type 'Element' is not assignable to type 'ReactNode'.","category":1,"code":2322,"next":[{"messageText":"Property 'children' is missing in type 'Element' but required in type 'ReactPortal'.","category":1,"code":2741,"canonicalHead":{"code":2322,"messageText":"Type 'Element' is not assignable to type 'ReactPortal'."}}],"canonicalHead":{"code":2322,"messageText":"Type '({ theme, handleThemeChange, value, title, description, style, }: { theme: string; handleThemeChange: (e: React.ChangeEvent<HTMLInputElement>) => void; value: string; title: string; description: string; style: React.CSSProperties; }) => JSX.Element' is not assignable to type '(props: any, deprecatedLegacyContext?: any) => ReactNode'."}}]}]}]},"relatedInformation":[{"file":"../../../testeranto-react/node_modules/@types/react/index.d.ts","start":10658,"length":8,"messageText":"'children' is declared here.","category":3,"code":2728}]},{"start":1759,"length":9,"code":2786,"category":1,"messageText":{"messageText":"'ThemeCard' cannot be used as a JSX component.","category":1,"code":2786,"next":[{"messageText":"Its type '({ theme, handleThemeChange, value, title, description, style, }: { theme: string; handleThemeChange: (e: React.ChangeEvent<HTMLInputElement>) => void; value: string; title: string; description: string; style: React.CSSProperties; }) => JSX.Element' is not a valid JSX element type.","category":1,"code":18053,"next":[{"messageText":"Type '({ theme, handleThemeChange, value, title, description, style, }: { theme: string; handleThemeChange: (e: React.ChangeEvent<HTMLInputElement>) => void; value: string; title: string; description: string; style: React.CSSProperties; }) => JSX.Element' is not assignable to type '(props: any, deprecatedLegacyContext?: any) => ReactNode'.","category":1,"code":2322,"next":[{"messageText":"Type 'Element' is not assignable to type 'ReactNode'.","category":1,"code":2322,"next":[{"messageText":"Property 'children' is missing in type 'Element' but required in type 'ReactPortal'.","category":1,"code":2741,"canonicalHead":{"code":2322,"messageText":"Type 'Element' is not assignable to type 'ReactPortal'."}}],"canonicalHead":{"code":2322,"messageText":"Type '({ theme, handleThemeChange, value, title, description, style, }: { theme: string; handleThemeChange: (e: React.ChangeEvent<HTMLInputElement>) => void; value: string; title: string; description: string; style: React.CSSProperties; }) => JSX.Element' is not assignable to type '(props: any, deprecatedLegacyContext?: any) => ReactNode'."}}]}]}]},"relatedInformation":[{"file":"../../../testeranto-react/node_modules/@types/react/index.d.ts","start":10658,"length":8,"messageText":"'children' is declared here.","category":3,"code":2728}]},{"start":2193,"length":9,"code":2786,"category":1,"messageText":{"messageText":"'ThemeCard' cannot be used as a JSX component.","category":1,"code":2786,"next":[{"messageText":"Its type '({ theme, handleThemeChange, value, title, description, style, }: { theme: string; handleThemeChange: (e: React.ChangeEvent<HTMLInputElement>) => void; value: string; title: string; description: string; style: React.CSSProperties; }) => JSX.Element' is not a valid JSX element type.","category":1,"code":18053,"next":[{"messageText":"Type '({ theme, handleThemeChange, value, title, description, style, }: { theme: string; handleThemeChange: (e: React.ChangeEvent<HTMLInputElement>) => void; value: string; title: string; description: string; style: React.CSSProperties; }) => JSX.Element' is not assignable to type '(props: any, deprecatedLegacyContext?: any) => ReactNode'.","category":1,"code":2322,"next":[{"messageText":"Type 'Element' is not assignable to type 'ReactNode'.","category":1,"code":2322,"next":[{"messageText":"Property 'children' is missing in type 'Element' but required in type 'ReactPortal'.","category":1,"code":2741,"canonicalHead":{"code":2322,"messageText":"Type 'Element' is not assignable to type 'ReactPortal'."}}],"canonicalHead":{"code":2322,"messageText":"Type '({ theme, handleThemeChange, value, title, description, style, }: { theme: string; handleThemeChange: (e: React.ChangeEvent<HTMLInputElement>) => void; value: string; title: string; description: string; style: React.CSSProperties; }) => JSX.Element' is not assignable to type '(props: any, deprecatedLegacyContext?: any) => ReactNode'."}}]}]}]},"relatedInformation":[{"file":"../../../testeranto-react/node_modules/@types/react/index.d.ts","start":10658,"length":8,"messageText":"'children' is declared here.","category":3,"code":2728}]},{"start":2593,"length":9,"code":2786,"category":1,"messageText":{"messageText":"'ThemeCard' cannot be used as a JSX component.","category":1,"code":2786,"next":[{"messageText":"Its type '({ theme, handleThemeChange, value, title, description, style, }: { theme: string; handleThemeChange: (e: React.ChangeEvent<HTMLInputElement>) => void; value: string; title: string; description: string; style: React.CSSProperties; }) => JSX.Element' is not a valid JSX element type.","category":1,"code":18053,"next":[{"messageText":"Type '({ theme, handleThemeChange, value, title, description, style, }: { theme: string; handleThemeChange: (e: React.ChangeEvent<HTMLInputElement>) => void; value: string; title: string; description: string; style: React.CSSProperties; }) => JSX.Element' is not assignable to type '(props: any, deprecatedLegacyContext?: any) => ReactNode'.","category":1,"code":2322,"next":[{"messageText":"Type 'Element' is not assignable to type 'ReactNode'.","category":1,"code":2322,"next":[{"messageText":"Property 'children' is missing in type 'Element' but required in type 'ReactPortal'.","category":1,"code":2741,"canonicalHead":{"code":2322,"messageText":"Type 'Element' is not assignable to type 'ReactPortal'."}}],"canonicalHead":{"code":2322,"messageText":"Type '({ theme, handleThemeChange, value, title, description, style, }: { theme: string; handleThemeChange: (e: React.ChangeEvent<HTMLInputElement>) => void; value: string; title: string; description: string; style: React.CSSProperties; }) => JSX.Element' is not assignable to type '(props: any, deprecatedLegacyContext?: any) => ReactNode'."}}]}]}]},"relatedInformation":[{"file":"../../../testeranto-react/node_modules/@types/react/index.d.ts","start":10658,"length":8,"messageText":"'children' is declared here.","category":3,"code":2728}]},{"start":2991,"length":9,"code":2786,"category":1,"messageText":{"messageText":"'ThemeCard' cannot be used as a JSX component.","category":1,"code":2786,"next":[{"messageText":"Its type '({ theme, handleThemeChange, value, title, description, style, }: { theme: string; handleThemeChange: (e: React.ChangeEvent<HTMLInputElement>) => void; value: string; title: string; description: string; style: React.CSSProperties; }) => JSX.Element' is not a valid JSX element type.","category":1,"code":18053,"next":[{"messageText":"Type '({ theme, handleThemeChange, value, title, description, style, }: { theme: string; handleThemeChange: (e: React.ChangeEvent<HTMLInputElement>) => void; value: string; title: string; description: string; style: React.CSSProperties; }) => JSX.Element' is not assignable to type '(props: any, deprecatedLegacyContext?: any) => ReactNode'.","category":1,"code":2322,"next":[{"messageText":"Type 'Element' is not assignable to type 'ReactNode'.","category":1,"code":2322,"next":[{"messageText":"Property 'children' is missing in type 'Element' but required in type 'ReactPortal'.","category":1,"code":2741,"canonicalHead":{"code":2322,"messageText":"Type 'Element' is not assignable to type 'ReactPortal'."}}],"canonicalHead":{"code":2322,"messageText":"Type '({ theme, handleThemeChange, value, title, description, style, }: { theme: string; handleThemeChange: (e: React.ChangeEvent<HTMLInputElement>) => void; value: string; title: string; description: string; style: React.CSSProperties; }) => JSX.Element' is not assignable to type '(props: any, deprecatedLegacyContext?: any) => ReactNode'."}}]}]}]},"relatedInformation":[{"file":"../../../testeranto-react/node_modules/@types/react/index.d.ts","start":10658,"length":8,"messageText":"'children' is declared here.","category":3,"code":2728}]},{"start":3377,"length":9,"code":2786,"category":1,"messageText":{"messageText":"'ThemeCard' cannot be used as a JSX component.","category":1,"code":2786,"next":[{"messageText":"Its type '({ theme, handleThemeChange, value, title, description, style, }: { theme: string; handleThemeChange: (e: React.ChangeEvent<HTMLInputElement>) => void; value: string; title: string; description: string; style: React.CSSProperties; }) => JSX.Element' is not a valid JSX element type.","category":1,"code":18053,"next":[{"messageText":"Type '({ theme, handleThemeChange, value, title, description, style, }: { theme: string; handleThemeChange: (e: React.ChangeEvent<HTMLInputElement>) => void; value: string; title: string; description: string; style: React.CSSProperties; }) => JSX.Element' is not assignable to type '(props: any, deprecatedLegacyContext?: any) => ReactNode'.","category":1,"code":2322,"next":[{"messageText":"Type 'Element' is not assignable to type 'ReactNode'.","category":1,"code":2322,"next":[{"messageText":"Property 'children' is missing in type 'Element' but required in type 'ReactPortal'.","category":1,"code":2741,"canonicalHead":{"code":2322,"messageText":"Type 'Element' is not assignable to type 'ReactPortal'."}}],"canonicalHead":{"code":2322,"messageText":"Type '({ theme, handleThemeChange, value, title, description, style, }: { theme: string; handleThemeChange: (e: React.ChangeEvent<HTMLInputElement>) => void; value: string; title: string; description: string; style: React.CSSProperties; }) => JSX.Element' is not assignable to type '(props: any, deprecatedLegacyContext?: any) => ReactNode'."}}]}]}]},"relatedInformation":[{"file":"../../../testeranto-react/node_modules/@types/react/index.d.ts","start":10658,"length":8,"messageText":"'children' is declared here.","category":3,"code":2728}]},{"start":3825,"length":9,"code":2786,"category":1,"messageText":{"messageText":"'ThemeCard' cannot be used as a JSX component.","category":1,"code":2786,"next":[{"messageText":"Its type '({ theme, handleThemeChange, value, title, description, style, }: { theme: string; handleThemeChange: (e: React.ChangeEvent<HTMLInputElement>) => void; value: string; title: string; description: string; style: React.CSSProperties; }) => JSX.Element' is not a valid JSX element type.","category":1,"code":18053,"next":[{"messageText":"Type '({ theme, handleThemeChange, value, title, description, style, }: { theme: string; handleThemeChange: (e: React.ChangeEvent<HTMLInputElement>) => void; value: string; title: string; description: string; style: React.CSSProperties; }) => JSX.Element' is not assignable to type '(props: any, deprecatedLegacyContext?: any) => ReactNode'.","category":1,"code":2322,"next":[{"messageText":"Type 'Element' is not assignable to type 'ReactNode'.","category":1,"code":2322,"next":[{"messageText":"Property 'children' is missing in type 'Element' but required in type 'ReactPortal'.","category":1,"code":2741,"canonicalHead":{"code":2322,"messageText":"Type 'Element' is not assignable to type 'ReactPortal'."}}],"canonicalHead":{"code":2322,"messageText":"Type '({ theme, handleThemeChange, value, title, description, style, }: { theme: string; handleThemeChange: (e: React.ChangeEvent<HTMLInputElement>) => void; value: string; title: string; description: string; style: React.CSSProperties; }) => JSX.Element' is not assignable to type '(props: any, deprecatedLegacyContext?: any) => ReactNode'."}}]}]}]},"relatedInformation":[{"file":"../../../testeranto-react/node_modules/@types/react/index.d.ts","start":10658,"length":8,"messageText":"'children' is declared here.","category":3,"code":2728}]},{"start":4271,"length":9,"code":2786,"category":1,"messageText":{"messageText":"'ThemeCard' cannot be used as a JSX component.","category":1,"code":2786,"next":[{"messageText":"Its type '({ theme, handleThemeChange, value, title, description, style, }: { theme: string; handleThemeChange: (e: React.ChangeEvent<HTMLInputElement>) => void; value: string; title: string; description: string; style: React.CSSProperties; }) => JSX.Element' is not a valid JSX element type.","category":1,"code":18053,"next":[{"messageText":"Type '({ theme, handleThemeChange, value, title, description, style, }: { theme: string; handleThemeChange: (e: React.ChangeEvent<HTMLInputElement>) => void; value: string; title: string; description: string; style: React.CSSProperties; }) => JSX.Element' is not assignable to type '(props: any, deprecatedLegacyContext?: any) => ReactNode'.","category":1,"code":2322,"next":[{"messageText":"Type 'Element' is not assignable to type 'ReactNode'.","category":1,"code":2322,"next":[{"messageText":"Property 'children' is missing in type 'Element' but required in type 'ReactPortal'.","category":1,"code":2741,"canonicalHead":{"code":2322,"messageText":"Type 'Element' is not assignable to type 'ReactPortal'."}}],"canonicalHead":{"code":2322,"messageText":"Type '({ theme, handleThemeChange, value, title, description, style, }: { theme: string; handleThemeChange: (e: React.ChangeEvent<HTMLInputElement>) => void; value: string; title: string; description: string; style: React.CSSProperties; }) => JSX.Element' is not assignable to type '(props: any, deprecatedLegacyContext?: any) => ReactNode'."}}]}]}]},"relatedInformation":[{"file":"../../../testeranto-react/node_modules/@types/react/index.d.ts","start":10658,"length":8,"messageText":"'children' is declared here.","category":3,"code":2728}]},{"start":4670,"length":9,"code":2786,"category":1,"messageText":{"messageText":"'ThemeCard' cannot be used as a JSX component.","category":1,"code":2786,"next":[{"messageText":"Its type '({ theme, handleThemeChange, value, title, description, style, }: { theme: string; handleThemeChange: (e: React.ChangeEvent<HTMLInputElement>) => void; value: string; title: string; description: string; style: React.CSSProperties; }) => JSX.Element' is not a valid JSX element type.","category":1,"code":18053,"next":[{"messageText":"Type '({ theme, handleThemeChange, value, title, description, style, }: { theme: string; handleThemeChange: (e: React.ChangeEvent<HTMLInputElement>) => void; value: string; title: string; description: string; style: React.CSSProperties; }) => JSX.Element' is not assignable to type '(props: any, deprecatedLegacyContext?: any) => ReactNode'.","category":1,"code":2322,"next":[{"messageText":"Type 'Element' is not assignable to type 'ReactNode'.","category":1,"code":2322,"next":[{"messageText":"Property 'children' is missing in type 'Element' but required in type 'ReactPortal'.","category":1,"code":2741,"canonicalHead":{"code":2322,"messageText":"Type 'Element' is not assignable to type 'ReactPortal'."}}],"canonicalHead":{"code":2322,"messageText":"Type '({ theme, handleThemeChange, value, title, description, style, }: { theme: string; handleThemeChange: (e: React.ChangeEvent<HTMLInputElement>) => void; value: string; title: string; description: string; style: React.CSSProperties; }) => JSX.Element' is not assignable to type '(props: any, deprecatedLegacyContext?: any) => ReactNode'."}}]}]}]},"relatedInformation":[{"file":"../../../testeranto-react/node_modules/@types/react/index.d.ts","start":10658,"length":8,"messageText":"'children' is declared here.","category":3,"code":2728}]},{"start":5065,"length":9,"code":2786,"category":1,"messageText":{"messageText":"'ThemeCard' cannot be used as a JSX component.","category":1,"code":2786,"next":[{"messageText":"Its type '({ theme, handleThemeChange, value, title, description, style, }: { theme: string; handleThemeChange: (e: React.ChangeEvent<HTMLInputElement>) => void; value: string; title: string; description: string; style: React.CSSProperties; }) => JSX.Element' is not a valid JSX element type.","category":1,"code":18053,"next":[{"messageText":"Type '({ theme, handleThemeChange, value, title, description, style, }: { theme: string; handleThemeChange: (e: React.ChangeEvent<HTMLInputElement>) => void; value: string; title: string; description: string; style: React.CSSProperties; }) => JSX.Element' is not assignable to type '(props: any, deprecatedLegacyContext?: any) => ReactNode'.","category":1,"code":2322,"next":[{"messageText":"Type 'Element' is not assignable to type 'ReactNode'.","category":1,"code":2322,"next":[{"messageText":"Property 'children' is missing in type 'Element' but required in type 'ReactPortal'.","category":1,"code":2741,"canonicalHead":{"code":2322,"messageText":"Type 'Element' is not assignable to type 'ReactPortal'."}}],"canonicalHead":{"code":2322,"messageText":"Type '({ theme, handleThemeChange, value, title, description, style, }: { theme: string; handleThemeChange: (e: React.ChangeEvent<HTMLInputElement>) => void; value: string; title: string; description: string; style: React.CSSProperties; }) => JSX.Element' is not assignable to type '(props: any, deprecatedLegacyContext?: any) => ReactNode'."}}]}]}]},"relatedInformation":[{"file":"../../../testeranto-react/node_modules/@types/react/index.d.ts","start":10658,"length":8,"messageText":"'children' is declared here.","category":3,"code":2728}]},{"start":5466,"length":9,"code":2786,"category":1,"messageText":{"messageText":"'ThemeCard' cannot be used as a JSX component.","category":1,"code":2786,"next":[{"messageText":"Its type '({ theme, handleThemeChange, value, title, description, style, }: { theme: string; handleThemeChange: (e: React.ChangeEvent<HTMLInputElement>) => void; value: string; title: string; description: string; style: React.CSSProperties; }) => JSX.Element' is not a valid JSX element type.","category":1,"code":18053,"next":[{"messageText":"Type '({ theme, handleThemeChange, value, title, description, style, }: { theme: string; handleThemeChange: (e: React.ChangeEvent<HTMLInputElement>) => void; value: string; title: string; description: string; style: React.CSSProperties; }) => JSX.Element' is not assignable to type '(props: any, deprecatedLegacyContext?: any) => ReactNode'.","category":1,"code":2322,"next":[{"messageText":"Type 'Element' is not assignable to type 'ReactNode'.","category":1,"code":2322,"next":[{"messageText":"Property 'children' is missing in type 'Element' but required in type 'ReactPortal'.","category":1,"code":2741,"canonicalHead":{"code":2322,"messageText":"Type 'Element' is not assignable to type 'ReactPortal'."}}],"canonicalHead":{"code":2322,"messageText":"Type '({ theme, handleThemeChange, value, title, description, style, }: { theme: string; handleThemeChange: (e: React.ChangeEvent<HTMLInputElement>) => void; value: string; title: string; description: string; style: React.CSSProperties; }) => JSX.Element' is not assignable to type '(props: any, deprecatedLegacyContext?: any) => ReactNode'."}}]}]}]},"relatedInformation":[{"file":"../../../testeranto-react/node_modules/@types/react/index.d.ts","start":10658,"length":8,"messageText":"'children' is declared here.","category":3,"code":2728}]}]],[755,[{"start":1088,"length":5,"code":2786,"category":1,"messageText":{"messageText":"'Badge' cannot be used as a JSX component.","category":1,"code":2786,"next":[{"messageText":"Its type 'BsPrefixRefForwardingComponent<\"span\", BadgeProps>' is not a valid JSX element type.","category":1,"code":18053,"next":[{"messageText":"Type 'BsPrefixRefForwardingComponent<\"span\", BadgeProps>' is not assignable to type '(props: any, deprecatedLegacyContext?: any) => ReactNode'.","category":1,"code":2322,"next":[{"messageText":"Type 'ReactElement<any, string | JSXElementConstructor<any>> | null' is not assignable to type 'ReactNode'.","category":1,"code":2322,"next":[{"messageText":"Type 'ReactElement<any, string | JSXElementConstructor<any>>' is not assignable to type 'ReactNode'.","category":1,"code":2322,"next":[{"messageText":"Property 'children' is missing in type 'ReactElement<any, string | JSXElementConstructor<any>>' but required in type 'ReactPortal'.","category":1,"code":2741,"canonicalHead":{"code":2322,"messageText":"Type 'ReactElement<any, string | JSXElementConstructor<any>>' is not assignable to type 'ReactPortal'."}}]}],"canonicalHead":{"code":2322,"messageText":"Type 'BsPrefixRefForwardingComponent<\"span\", BadgeProps>' is not assignable to type '(props: any, deprecatedLegacyContext?: any) => ReactNode'."}}]}]}]},"relatedInformation":[{"file":"../../../testeranto-react/node_modules/@types/react/index.d.ts","start":10658,"length":8,"messageText":"'children' is declared here.","category":3,"code":2728}]},{"start":1202,"length":5,"code":2786,"category":1,"messageText":{"messageText":"'Badge' cannot be used as a JSX component.","category":1,"code":2786,"next":[{"messageText":"Its type 'BsPrefixRefForwardingComponent<\"span\", BadgeProps>' is not a valid JSX element type.","category":1,"code":18053,"next":[{"messageText":"Type 'BsPrefixRefForwardingComponent<\"span\", BadgeProps>' is not assignable to type '(props: any, deprecatedLegacyContext?: any) => ReactNode'.","category":1,"code":2322,"next":[{"messageText":"Type 'ReactElement<any, string | JSXElementConstructor<any>> | null' is not assignable to type 'ReactNode'.","category":1,"code":2322,"next":[{"messageText":"Type 'ReactElement<any, string | JSXElementConstructor<any>>' is not assignable to type 'ReactNode'.","category":1,"code":2322,"next":[{"messageText":"Property 'children' is missing in type 'ReactElement<any, string | JSXElementConstructor<any>>' but required in type 'ReactPortal'.","category":1,"code":2741,"canonicalHead":{"code":2322,"messageText":"Type 'ReactElement<any, string | JSXElementConstructor<any>>' is not assignable to type 'ReactPortal'."}}]}],"canonicalHead":{"code":2322,"messageText":"Type 'BsPrefixRefForwardingComponent<\"span\", BadgeProps>' is not assignable to type '(props: any, deprecatedLegacyContext?: any) => ReactNode'."}}]}]}]},"relatedInformation":[{"file":"../../../testeranto-react/node_modules/@types/react/index.d.ts","start":10658,"length":8,"messageText":"'children' is declared here.","category":3,"code":2728}]}]],[762,[{"start":549,"length":6,"code":2786,"category":1,"messageText":{"messageText":"'Navbar' cannot be used as a JSX component.","category":1,"code":2786,"next":[{"messageText":"Its type 'BsPrefixRefForwardingComponent<\"nav\", NavbarProps> & { Brand: BsPrefixRefForwardingComponent<\"a\", NavbarBrandProps>; Collapse: ForwardRefExoticComponent<...>; Offcanvas: ForwardRefExoticComponent<...>; Text: BsPrefixRefForwardingComponent<...>; Toggle: BsPrefixRefForwardingComponent<...>; }' is not a valid JSX element type.","category":1,"code":18053,"next":[{"messageText":"Type 'BsPrefixRefForwardingComponent<\"nav\", NavbarProps> & { Brand: BsPrefixRefForwardingComponent<\"a\", NavbarBrandProps>; Collapse: ForwardRefExoticComponent<...>; Offcanvas: ForwardRefExoticComponent<...>; Text: BsPrefixRefForwardingComponent<...>; Toggle: BsPrefixRefForwardingComponent<...>; }' is not assignable to type '(props: any, deprecatedLegacyContext?: any) => ReactNode'.","category":1,"code":2322,"next":[{"messageText":"Type 'ReactElement<any, string | JSXElementConstructor<any>> | null' is not assignable to type 'ReactNode'.","category":1,"code":2322,"next":[{"messageText":"Type 'ReactElement<any, string | JSXElementConstructor<any>>' is not assignable to type 'ReactNode'.","category":1,"code":2322,"next":[{"messageText":"Property 'children' is missing in type 'ReactElement<any, string | JSXElementConstructor<any>>' but required in type 'ReactPortal'.","category":1,"code":2741,"canonicalHead":{"code":2322,"messageText":"Type 'ReactElement<any, string | JSXElementConstructor<any>>' is not assignable to type 'ReactPortal'."}}]}],"canonicalHead":{"code":2322,"messageText":"Type 'BsPrefixRefForwardingComponent<\"nav\", NavbarProps> & { Brand: BsPrefixRefForwardingComponent<\"a\", NavbarBrandProps>; Collapse: ForwardRefExoticComponent<...>; Offcanvas: ForwardRefExoticComponent<...>; Text: BsPrefixRefForwardingComponent<...>; Toggle: BsPrefixRefForwardingComponent<...>; }' is not assignable to type '(props: any, deprecatedLegacyContext?: any) => ReactNode'."}}]}]}]},"relatedInformation":[{"file":"../../../testeranto-react/node_modules/@types/react/index.d.ts","start":10658,"length":8,"messageText":"'children' is declared here.","category":3,"code":2728}]},{"start":617,"length":9,"code":2786,"category":1,"messageText":{"messageText":"'Container' cannot be used as a JSX component.","category":1,"code":2786,"next":[{"messageText":"Its type 'BsPrefixRefForwardingComponent<\"div\", ContainerProps>' is not a valid JSX element type.","category":1,"code":18053,"next":[{"messageText":"Type 'BsPrefixRefForwardingComponent<\"div\", ContainerProps>' is not assignable to type '(props: any, deprecatedLegacyContext?: any) => ReactNode'.","category":1,"code":2322,"next":[{"messageText":"Type 'ReactElement<any, string | JSXElementConstructor<any>> | null' is not assignable to type 'ReactNode'.","category":1,"code":2322,"next":[{"messageText":"Type 'ReactElement<any, string | JSXElementConstructor<any>>' is not assignable to type 'ReactNode'.","category":1,"code":2322,"next":[{"messageText":"Property 'children' is missing in type 'ReactElement<any, string | JSXElementConstructor<any>>' but required in type 'ReactPortal'.","category":1,"code":2741,"canonicalHead":{"code":2322,"messageText":"Type 'ReactElement<any, string | JSXElementConstructor<any>>' is not assignable to type 'ReactPortal'."}}]}],"canonicalHead":{"code":2322,"messageText":"Type 'BsPrefixRefForwardingComponent<\"div\", ContainerProps>' is not assignable to type '(props: any, deprecatedLegacyContext?: any) => ReactNode'."}}]}]}]},"relatedInformation":[{"file":"../../../testeranto-react/node_modules/@types/react/index.d.ts","start":10658,"length":8,"messageText":"'children' is declared here.","category":3,"code":2728}]},{"start":675,"length":8,"code":2786,"category":1,"messageText":{"messageText":"'Nav.Link' cannot be used as a JSX component.","category":1,"code":2786,"next":[{"messageText":"Its type 'BsPrefixRefForwardingComponent<\"a\", NavLinkProps>' is not a valid JSX element type.","category":1,"code":18053,"next":[{"messageText":"Type 'BsPrefixRefForwardingComponent<\"a\", NavLinkProps>' is not assignable to type '(props: any, deprecatedLegacyContext?: any) => ReactNode'.","category":1,"code":2322,"next":[{"messageText":"Type 'ReactElement<any, string | JSXElementConstructor<any>> | null' is not assignable to type 'ReactNode'.","category":1,"code":2322,"next":[{"messageText":"Type 'ReactElement<any, string | JSXElementConstructor<any>>' is not assignable to type 'ReactNode'.","category":1,"code":2322,"next":[{"messageText":"Property 'children' is missing in type 'ReactElement<any, string | JSXElementConstructor<any>>' but required in type 'ReactPortal'.","category":1,"code":2741,"canonicalHead":{"code":2322,"messageText":"Type 'ReactElement<any, string | JSXElementConstructor<any>>' is not assignable to type 'ReactPortal'."}}]}],"canonicalHead":{"code":2322,"messageText":"Type 'BsPrefixRefForwardingComponent<\"a\", NavLinkProps>' is not assignable to type '(props: any, deprecatedLegacyContext?: any) => ReactNode'."}}]}]}]},"relatedInformation":[{"file":"../../../testeranto-react/node_modules/@types/react/index.d.ts","start":10658,"length":8,"messageText":"'children' is declared here.","category":3,"code":2728}]},{"start":1225,"length":12,"code":2786,"category":1,"messageText":{"messageText":"'Navbar.Brand' cannot be used as a JSX component.","category":1,"code":2786,"next":[{"messageText":"Its type 'BsPrefixRefForwardingComponent<\"a\", NavbarBrandProps>' is not a valid JSX element type.","category":1,"code":18053,"next":[{"messageText":"Type 'BsPrefixRefForwardingComponent<\"a\", NavbarBrandProps>' is not assignable to type '(props: any, deprecatedLegacyContext?: any) => ReactNode'.","category":1,"code":2322,"next":[{"messageText":"Type 'ReactElement<any, string | JSXElementConstructor<any>> | null' is not assignable to type 'ReactNode'.","category":1,"code":2322,"next":[{"messageText":"Type 'ReactElement<any, string | JSXElementConstructor<any>>' is not assignable to type 'ReactNode'.","category":1,"code":2322,"next":[{"messageText":"Property 'children' is missing in type 'ReactElement<any, string | JSXElementConstructor<any>>' but required in type 'ReactPortal'.","category":1,"code":2741,"canonicalHead":{"code":2322,"messageText":"Type 'ReactElement<any, string | JSXElementConstructor<any>>' is not assignable to type 'ReactPortal'."}}]}],"canonicalHead":{"code":2322,"messageText":"Type 'BsPrefixRefForwardingComponent<\"a\", NavbarBrandProps>' is not assignable to type '(props: any, deprecatedLegacyContext?: any) => ReactNode'."}}]}]}]},"relatedInformation":[{"file":"../../../testeranto-react/node_modules/@types/react/index.d.ts","start":10658,"length":8,"messageText":"'children' is declared here.","category":3,"code":2728}]},{"start":1325,"length":13,"code":2786,"category":1,"messageText":{"messageText":"'Navbar.Toggle' cannot be used as a JSX component.","category":1,"code":2786,"next":[{"messageText":"Its type 'BsPrefixRefForwardingComponent<\"button\", NavbarToggleProps>' is not a valid JSX element type.","category":1,"code":18053,"next":[{"messageText":"Type 'BsPrefixRefForwardingComponent<\"button\", NavbarToggleProps>' is not assignable to type '(props: any, deprecatedLegacyContext?: any) => ReactNode'.","category":1,"code":2322,"next":[{"messageText":"Type 'ReactElement<any, string | JSXElementConstructor<any>> | null' is not assignable to type 'ReactNode'.","category":1,"code":2322,"next":[{"messageText":"Type 'ReactElement<any, string | JSXElementConstructor<any>>' is not assignable to type 'ReactNode'.","category":1,"code":2322,"next":[{"messageText":"Property 'children' is missing in type 'ReactElement<any, string | JSXElementConstructor<any>>' but required in type 'ReactPortal'.","category":1,"code":2741,"canonicalHead":{"code":2322,"messageText":"Type 'ReactElement<any, string | JSXElementConstructor<any>>' is not assignable to type 'ReactPortal'."}}]}],"canonicalHead":{"code":2322,"messageText":"Type 'BsPrefixRefForwardingComponent<\"button\", NavbarToggleProps>' is not assignable to type '(props: any, deprecatedLegacyContext?: any) => ReactNode'."}}]}]}]},"relatedInformation":[{"file":"../../../testeranto-react/node_modules/@types/react/index.d.ts","start":10658,"length":8,"messageText":"'children' is declared here.","category":3,"code":2728}]},{"start":1384,"length":15,"code":2786,"category":1,"messageText":{"messageText":"'Navbar.Collapse' cannot be used as a JSX component.","category":1,"code":2786,"next":[{"messageText":"Its type 'ForwardRefExoticComponent<NavbarCollapseProps & RefAttributes<HTMLDivElement>>' is not a valid JSX element type.","category":1,"code":18053,"next":[{"messageText":"Type 'ForwardRefExoticComponent<NavbarCollapseProps & RefAttributes<HTMLDivElement>>' is not assignable to type '(props: any, deprecatedLegacyContext?: any) => ReactNode'.","category":1,"code":2322,"next":[{"messageText":"Type 'ReactElement<any, string | JSXElementConstructor<any>> | null' is not assignable to type 'ReactNode'.","category":1,"code":2322,"next":[{"messageText":"Type 'ReactElement<any, string | JSXElementConstructor<any>>' is not assignable to type 'ReactNode'.","category":1,"code":2322,"next":[{"messageText":"Property 'children' is missing in type 'ReactElement<any, string | JSXElementConstructor<any>>' but required in type 'ReactPortal'.","category":1,"code":2741,"canonicalHead":{"code":2322,"messageText":"Type 'ReactElement<any, string | JSXElementConstructor<any>>' is not assignable to type 'ReactPortal'."}}]}],"canonicalHead":{"code":2322,"messageText":"Type 'ForwardRefExoticComponent<NavbarCollapseProps & RefAttributes<HTMLDivElement>>' is not assignable to type '(props: any, deprecatedLegacyContext?: any) => ReactNode'."}}]}]}]},"relatedInformation":[{"file":"../../../testeranto-react/node_modules/@types/react/index.d.ts","start":10658,"length":8,"messageText":"'children' is declared here.","category":3,"code":2728}]},{"start":1472,"length":3,"code":2786,"category":1,"messageText":{"messageText":"'Nav' cannot be used as a JSX component.","category":1,"code":2786,"next":[{"messageText":"Its type 'BsPrefixRefForwardingComponent<\"div\", NavProps> & { Item: BsPrefixRefForwardingComponent<\"div\", NavItemProps>; Link: BsPrefixRefForwardingComponent<...>; }' is not a valid JSX element type.","category":1,"code":18053,"next":[{"messageText":"Type 'BsPrefixRefForwardingComponent<\"div\", NavProps> & { Item: BsPrefixRefForwardingComponent<\"div\", NavItemProps>; Link: BsPrefixRefForwardingComponent<...>; }' is not assignable to type '(props: any, deprecatedLegacyContext?: any) => ReactNode'.","category":1,"code":2322,"next":[{"messageText":"Type 'ReactElement<any, string | JSXElementConstructor<any>> | null' is not assignable to type 'ReactNode'.","category":1,"code":2322,"next":[{"messageText":"Type 'ReactElement<any, string | JSXElementConstructor<any>>' is not assignable to type 'ReactNode'.","category":1,"code":2322,"next":[{"messageText":"Property 'children' is missing in type 'ReactElement<any, string | JSXElementConstructor<any>>' but required in type 'ReactPortal'.","category":1,"code":2741,"canonicalHead":{"code":2322,"messageText":"Type 'ReactElement<any, string | JSXElementConstructor<any>>' is not assignable to type 'ReactPortal'."}}]}],"canonicalHead":{"code":2322,"messageText":"Type 'BsPrefixRefForwardingComponent<\"div\", NavProps> & { Item: BsPrefixRefForwardingComponent<\"div\", NavItemProps>; Link: BsPrefixRefForwardingComponent<...>; }' is not assignable to type '(props: any, deprecatedLegacyContext?: any) => ReactNode'."}}]}]}]},"relatedInformation":[{"file":"../../../testeranto-react/node_modules/@types/react/index.d.ts","start":10658,"length":8,"messageText":"'children' is declared here.","category":3,"code":2728}]},{"start":2103,"length":8,"code":2786,"category":1,"messageText":{"messageText":"'Nav.Link' cannot be used as a JSX component.","category":1,"code":2786,"next":[{"messageText":"Its type 'BsPrefixRefForwardingComponent<\"a\", NavLinkProps>' is not a valid JSX element type.","category":1,"code":18053,"next":[{"messageText":"Type 'BsPrefixRefForwardingComponent<\"a\", NavLinkProps>' is not assignable to type '(props: any, deprecatedLegacyContext?: any) => ReactNode'.","category":1,"code":2322,"next":[{"messageText":"Type 'ReactElement<any, string | JSXElementConstructor<any>> | null' is not assignable to type 'ReactNode'.","category":1,"code":2322,"next":[{"messageText":"Type 'ReactElement<any, string | JSXElementConstructor<any>>' is not assignable to type 'ReactNode'.","category":1,"code":2322,"next":[{"messageText":"Property 'children' is missing in type 'ReactElement<any, string | JSXElementConstructor<any>>' but required in type 'ReactPortal'.","category":1,"code":2741,"canonicalHead":{"code":2322,"messageText":"Type 'ReactElement<any, string | JSXElementConstructor<any>>' is not assignable to type 'ReactPortal'."}}]}],"canonicalHead":{"code":2322,"messageText":"Type 'BsPrefixRefForwardingComponent<\"a\", NavLinkProps>' is not assignable to type '(props: any, deprecatedLegacyContext?: any) => ReactNode'."}}]}]}]},"relatedInformation":[{"file":"../../../testeranto-react/node_modules/@types/react/index.d.ts","start":10658,"length":8,"messageText":"'children' is declared here.","category":3,"code":2728}]},{"start":2355,"length":8,"code":2353,"category":1,"messageText":"Object literal may only specify known properties, and '':hover'' does not exist in type 'Properties<string | number, string & {}>'.","relatedInformation":[{"file":"../../node_modules/@types/react/index.d.ts","start":84696,"length":5,"messageText":"The expected type comes from property 'style' which is declared here on type 'IntrinsicAttributes & Omit<(Omit<DetailedHTMLProps<HTMLAttributes<HTMLDivElement>, HTMLDivElement>, \"ref\"> & { ...; }) | (LinkProps & RefAttributes<...>), BsPrefixProps<...> & NavLinkProps> & BsPrefixProps<...> & NavLinkProps & { ...; }'","category":3,"code":6500}]},{"start":2626,"length":5,"code":2786,"category":1,"messageText":{"messageText":"'Badge' cannot be used as a JSX component.","category":1,"code":2786,"next":[{"messageText":"Its type 'BsPrefixRefForwardingComponent<\"span\", BadgeProps>' is not a valid JSX element type.","category":1,"code":18053,"next":[{"messageText":"Type 'BsPrefixRefForwardingComponent<\"span\", BadgeProps>' is not assignable to type '(props: any, deprecatedLegacyContext?: any) => ReactNode'.","category":1,"code":2322,"next":[{"messageText":"Type 'ReactElement<any, string | JSXElementConstructor<any>> | null' is not assignable to type 'ReactNode'.","category":1,"code":2322,"next":[{"messageText":"Type 'ReactElement<any, string | JSXElementConstructor<any>>' is not assignable to type 'ReactNode'.","category":1,"code":2322,"next":[{"messageText":"Property 'children' is missing in type 'ReactElement<any, string | JSXElementConstructor<any>>' but required in type 'ReactPortal'.","category":1,"code":2741,"canonicalHead":{"code":2322,"messageText":"Type 'ReactElement<any, string | JSXElementConstructor<any>>' is not assignable to type 'ReactPortal'."}}]}],"canonicalHead":{"code":2322,"messageText":"Type 'BsPrefixRefForwardingComponent<\"span\", BadgeProps>' is not assignable to type '(props: any, deprecatedLegacyContext?: any) => ReactNode'."}}]}]}]},"relatedInformation":[{"file":"../../../testeranto-react/node_modules/@types/react/index.d.ts","start":10658,"length":8,"messageText":"'children' is declared here.","category":3,"code":2728}]},{"start":2911,"length":3,"code":2786,"category":1,"messageText":{"messageText":"'Nav' cannot be used as a JSX component.","category":1,"code":2786,"next":[{"messageText":"Its type 'BsPrefixRefForwardingComponent<\"div\", NavProps> & { Item: BsPrefixRefForwardingComponent<\"div\", NavItemProps>; Link: BsPrefixRefForwardingComponent<...>; }' is not a valid JSX element type.","category":1,"code":18053,"next":[{"messageText":"Type 'BsPrefixRefForwardingComponent<\"div\", NavProps> & { Item: BsPrefixRefForwardingComponent<\"div\", NavItemProps>; Link: BsPrefixRefForwardingComponent<...>; }' is not assignable to type '(props: any, deprecatedLegacyContext?: any) => ReactNode'.","category":1,"code":2322,"next":[{"messageText":"Type 'ReactElement<any, string | JSXElementConstructor<any>> | null' is not assignable to type 'ReactNode'.","category":1,"code":2322,"next":[{"messageText":"Type 'ReactElement<any, string | JSXElementConstructor<any>>' is not assignable to type 'ReactNode'.","category":1,"code":2322,"next":[{"messageText":"Property 'children' is missing in type 'ReactElement<any, string | JSXElementConstructor<any>>' but required in type 'ReactPortal'.","category":1,"code":2741,"canonicalHead":{"code":2322,"messageText":"Type 'ReactElement<any, string | JSXElementConstructor<any>>' is not assignable to type 'ReactPortal'."}}]}],"canonicalHead":{"code":2322,"messageText":"Type 'BsPrefixRefForwardingComponent<\"div\", NavProps> & { Item: BsPrefixRefForwardingComponent<\"div\", NavItemProps>; Link: BsPrefixRefForwardingComponent<...>; }' is not assignable to type '(props: any, deprecatedLegacyContext?: any) => ReactNode'."}}]}]}]},"relatedInformation":[{"file":"../../../testeranto-react/node_modules/@types/react/index.d.ts","start":10658,"length":8,"messageText":"'children' is declared here.","category":3,"code":2728}]}]],[763,[{"start":407,"length":5,"code":2786,"category":1,"messageText":{"messageText":"'Alert' cannot be used as a JSX component.","category":1,"code":2786,"next":[{"messageText":"Its type 'ForwardRefExoticComponent<AlertProps & RefAttributes<HTMLDivElement>> & { Link: BsPrefixRefForwardingComponent<\"a\", AlertLinkProps>; Heading: BsPrefixRefForwardingComponent<...>; }' is not a valid JSX element type.","category":1,"code":18053,"next":[{"messageText":"Type 'ForwardRefExoticComponent<AlertProps & RefAttributes<HTMLDivElement>> & { Link: BsPrefixRefForwardingComponent<\"a\", AlertLinkProps>; Heading: BsPrefixRefForwardingComponent<...>; }' is not assignable to type '(props: any, deprecatedLegacyContext?: any) => ReactNode'.","category":1,"code":2322,"next":[{"messageText":"Type 'ReactElement<any, string | JSXElementConstructor<any>> | null' is not assignable to type 'ReactNode'.","category":1,"code":2322,"next":[{"messageText":"Type 'ReactElement<any, string | JSXElementConstructor<any>>' is not assignable to type 'ReactNode'.","category":1,"code":2322,"next":[{"messageText":"Property 'children' is missing in type 'ReactElement<any, string | JSXElementConstructor<any>>' but required in type 'ReactPortal'.","category":1,"code":2741,"canonicalHead":{"code":2322,"messageText":"Type 'ReactElement<any, string | JSXElementConstructor<any>>' is not assignable to type 'ReactPortal'."}}]}],"canonicalHead":{"code":2322,"messageText":"Type 'ForwardRefExoticComponent<AlertProps & RefAttributes<HTMLDivElement>> & { Link: BsPrefixRefForwardingComponent<\"a\", AlertLinkProps>; Heading: BsPrefixRefForwardingComponent<...>; }' is not assignable to type '(props: any, deprecatedLegacyContext?: any) => ReactNode'."}}]}]}]},"relatedInformation":[{"file":"../../../testeranto-react/node_modules/@types/react/index.d.ts","start":10658,"length":8,"messageText":"'children' is declared here.","category":3,"code":2728}]},{"start":763,"length":3,"code":2786,"category":1,"messageText":{"messageText":"'Nav' cannot be used as a JSX component.","category":1,"code":2786,"next":[{"messageText":"Its type 'BsPrefixRefForwardingComponent<\"div\", NavProps> & { Item: BsPrefixRefForwardingComponent<\"div\", NavItemProps>; Link: BsPrefixRefForwardingComponent<...>; }' is not a valid JSX element type.","category":1,"code":18053,"next":[{"messageText":"Type 'BsPrefixRefForwardingComponent<\"div\", NavProps> & { Item: BsPrefixRefForwardingComponent<\"div\", NavItemProps>; Link: BsPrefixRefForwardingComponent<...>; }' is not assignable to type '(props: any, deprecatedLegacyContext?: any) => ReactNode'.","category":1,"code":2322,"next":[{"messageText":"Type 'ReactElement<any, string | JSXElementConstructor<any>> | null' is not assignable to type 'ReactNode'.","category":1,"code":2322,"next":[{"messageText":"Type 'ReactElement<any, string | JSXElementConstructor<any>>' is not assignable to type 'ReactNode'.","category":1,"code":2322,"next":[{"messageText":"Property 'children' is missing in type 'ReactElement<any, string | JSXElementConstructor<any>>' but required in type 'ReactPortal'.","category":1,"code":2741,"canonicalHead":{"code":2322,"messageText":"Type 'ReactElement<any, string | JSXElementConstructor<any>>' is not assignable to type 'ReactPortal'."}}]}],"canonicalHead":{"code":2322,"messageText":"Type 'BsPrefixRefForwardingComponent<\"div\", NavProps> & { Item: BsPrefixRefForwardingComponent<\"div\", NavItemProps>; Link: BsPrefixRefForwardingComponent<...>; }' is not assignable to type '(props: any, deprecatedLegacyContext?: any) => ReactNode'."}}]}]}]},"relatedInformation":[{"file":"../../../testeranto-react/node_modules/@types/react/index.d.ts","start":10658,"length":8,"messageText":"'children' is declared here.","category":3,"code":2728}]},{"start":811,"length":8,"code":2786,"category":1,"messageText":{"messageText":"'Nav.Item' cannot be used as a JSX component.","category":1,"code":2786,"next":[{"messageText":"Its type 'BsPrefixRefForwardingComponent<\"div\", NavItemProps>' is not a valid JSX element type.","category":1,"code":18053,"next":[{"messageText":"Type 'BsPrefixRefForwardingComponent<\"div\", NavItemProps>' is not assignable to type '(props: any, deprecatedLegacyContext?: any) => ReactNode'.","category":1,"code":2322,"next":[{"messageText":"Type 'ReactElement<any, string | JSXElementConstructor<any>> | null' is not assignable to type 'ReactNode'.","category":1,"code":2322,"next":[{"messageText":"Type 'ReactElement<any, string | JSXElementConstructor<any>>' is not assignable to type 'ReactNode'.","category":1,"code":2322,"next":[{"messageText":"Property 'children' is missing in type 'ReactElement<any, string | JSXElementConstructor<any>>' but required in type 'ReactPortal'.","category":1,"code":2741,"canonicalHead":{"code":2322,"messageText":"Type 'ReactElement<any, string | JSXElementConstructor<any>>' is not assignable to type 'ReactPortal'."}}]}],"canonicalHead":{"code":2322,"messageText":"Type 'BsPrefixRefForwardingComponent<\"div\", NavItemProps>' is not assignable to type '(props: any, deprecatedLegacyContext?: any) => ReactNode'."}}]}]}]},"relatedInformation":[{"file":"../../../testeranto-react/node_modules/@types/react/index.d.ts","start":10658,"length":8,"messageText":"'children' is declared here.","category":3,"code":2728}]},{"start":834,"length":8,"code":2786,"category":1,"messageText":{"messageText":"'Nav.Link' cannot be used as a JSX component.","category":1,"code":2786,"next":[{"messageText":"Its type 'BsPrefixRefForwardingComponent<\"a\", NavLinkProps>' is not a valid JSX element type.","category":1,"code":18053,"next":[{"messageText":"Type 'BsPrefixRefForwardingComponent<\"a\", NavLinkProps>' is not assignable to type '(props: any, deprecatedLegacyContext?: any) => ReactNode'.","category":1,"code":2322,"next":[{"messageText":"Type 'ReactElement<any, string | JSXElementConstructor<any>> | null' is not assignable to type 'ReactNode'.","category":1,"code":2322,"next":[{"messageText":"Type 'ReactElement<any, string | JSXElementConstructor<any>>' is not assignable to type 'ReactNode'.","category":1,"code":2322,"next":[{"messageText":"Property 'children' is missing in type 'ReactElement<any, string | JSXElementConstructor<any>>' but required in type 'ReactPortal'.","category":1,"code":2741,"canonicalHead":{"code":2322,"messageText":"Type 'ReactElement<any, string | JSXElementConstructor<any>>' is not assignable to type 'ReactPortal'."}}]}],"canonicalHead":{"code":2322,"messageText":"Type 'BsPrefixRefForwardingComponent<\"a\", NavLinkProps>' is not assignable to type '(props: any, deprecatedLegacyContext?: any) => ReactNode'."}}]}]}]},"relatedInformation":[{"file":"../../../testeranto-react/node_modules/@types/react/index.d.ts","start":10658,"length":8,"messageText":"'children' is declared here.","category":3,"code":2728}]},{"start":920,"length":8,"code":2786,"category":1,"messageText":{"messageText":"'Nav.Item' cannot be used as a JSX component.","category":1,"code":2786,"next":[{"messageText":"Its type 'BsPrefixRefForwardingComponent<\"div\", NavItemProps>' is not a valid JSX element type.","category":1,"code":18053,"next":[{"messageText":"Type 'BsPrefixRefForwardingComponent<\"div\", NavItemProps>' is not assignable to type '(props: any, deprecatedLegacyContext?: any) => ReactNode'.","category":1,"code":2322,"next":[{"messageText":"Type 'ReactElement<any, string | JSXElementConstructor<any>> | null' is not assignable to type 'ReactNode'.","category":1,"code":2322,"next":[{"messageText":"Type 'ReactElement<any, string | JSXElementConstructor<any>>' is not assignable to type 'ReactNode'.","category":1,"code":2322,"next":[{"messageText":"Property 'children' is missing in type 'ReactElement<any, string | JSXElementConstructor<any>>' but required in type 'ReactPortal'.","category":1,"code":2741,"canonicalHead":{"code":2322,"messageText":"Type 'ReactElement<any, string | JSXElementConstructor<any>>' is not assignable to type 'ReactPortal'."}}]}],"canonicalHead":{"code":2322,"messageText":"Type 'BsPrefixRefForwardingComponent<\"div\", NavItemProps>' is not assignable to type '(props: any, deprecatedLegacyContext?: any) => ReactNode'."}}]}]}]},"relatedInformation":[{"file":"../../../testeranto-react/node_modules/@types/react/index.d.ts","start":10658,"length":8,"messageText":"'children' is declared here.","category":3,"code":2728}]},{"start":943,"length":8,"code":2786,"category":1,"messageText":{"messageText":"'Nav.Link' cannot be used as a JSX component.","category":1,"code":2786,"next":[{"messageText":"Its type 'BsPrefixRefForwardingComponent<\"a\", NavLinkProps>' is not a valid JSX element type.","category":1,"code":18053,"next":[{"messageText":"Type 'BsPrefixRefForwardingComponent<\"a\", NavLinkProps>' is not assignable to type '(props: any, deprecatedLegacyContext?: any) => ReactNode'.","category":1,"code":2322,"next":[{"messageText":"Type 'ReactElement<any, string | JSXElementConstructor<any>> | null' is not assignable to type 'ReactNode'.","category":1,"code":2322,"next":[{"messageText":"Type 'ReactElement<any, string | JSXElementConstructor<any>>' is not assignable to type 'ReactNode'.","category":1,"code":2322,"next":[{"messageText":"Property 'children' is missing in type 'ReactElement<any, string | JSXElementConstructor<any>>' but required in type 'ReactPortal'.","category":1,"code":2741,"canonicalHead":{"code":2322,"messageText":"Type 'ReactElement<any, string | JSXElementConstructor<any>>' is not assignable to type 'ReactPortal'."}}]}],"canonicalHead":{"code":2322,"messageText":"Type 'BsPrefixRefForwardingComponent<\"a\", NavLinkProps>' is not assignable to type '(props: any, deprecatedLegacyContext?: any) => ReactNode'."}}]}]}]},"relatedInformation":[{"file":"../../../testeranto-react/node_modules/@types/react/index.d.ts","start":10658,"length":8,"messageText":"'children' is declared here.","category":3,"code":2728}]},{"start":1113,"length":8,"code":2786,"category":1,"messageText":{"messageText":"'Nav.Item' cannot be used as a JSX component.","category":1,"code":2786,"next":[{"messageText":"Its type 'BsPrefixRefForwardingComponent<\"div\", NavItemProps>' is not a valid JSX element type.","category":1,"code":18053,"next":[{"messageText":"Type 'BsPrefixRefForwardingComponent<\"div\", NavItemProps>' is not assignable to type '(props: any, deprecatedLegacyContext?: any) => ReactNode'.","category":1,"code":2322,"next":[{"messageText":"Type 'ReactElement<any, string | JSXElementConstructor<any>> | null' is not assignable to type 'ReactNode'.","category":1,"code":2322,"next":[{"messageText":"Type 'ReactElement<any, string | JSXElementConstructor<any>>' is not assignable to type 'ReactNode'.","category":1,"code":2322,"next":[{"messageText":"Property 'children' is missing in type 'ReactElement<any, string | JSXElementConstructor<any>>' but required in type 'ReactPortal'.","category":1,"code":2741,"canonicalHead":{"code":2322,"messageText":"Type 'ReactElement<any, string | JSXElementConstructor<any>>' is not assignable to type 'ReactPortal'."}}]}],"canonicalHead":{"code":2322,"messageText":"Type 'BsPrefixRefForwardingComponent<\"div\", NavItemProps>' is not assignable to type '(props: any, deprecatedLegacyContext?: any) => ReactNode'."}}]}]}]},"relatedInformation":[{"file":"../../../testeranto-react/node_modules/@types/react/index.d.ts","start":10658,"length":8,"messageText":"'children' is declared here.","category":3,"code":2728}]},{"start":1136,"length":8,"code":2786,"category":1,"messageText":{"messageText":"'Nav.Link' cannot be used as a JSX component.","category":1,"code":2786,"next":[{"messageText":"Its type 'BsPrefixRefForwardingComponent<\"a\", NavLinkProps>' is not a valid JSX element type.","category":1,"code":18053,"next":[{"messageText":"Type 'BsPrefixRefForwardingComponent<\"a\", NavLinkProps>' is not assignable to type '(props: any, deprecatedLegacyContext?: any) => ReactNode'.","category":1,"code":2322,"next":[{"messageText":"Type 'ReactElement<any, string | JSXElementConstructor<any>> | null' is not assignable to type 'ReactNode'.","category":1,"code":2322,"next":[{"messageText":"Type 'ReactElement<any, string | JSXElementConstructor<any>>' is not assignable to type 'ReactNode'.","category":1,"code":2322,"next":[{"messageText":"Property 'children' is missing in type 'ReactElement<any, string | JSXElementConstructor<any>>' but required in type 'ReactPortal'.","category":1,"code":2741,"canonicalHead":{"code":2322,"messageText":"Type 'ReactElement<any, string | JSXElementConstructor<any>>' is not assignable to type 'ReactPortal'."}}]}],"canonicalHead":{"code":2322,"messageText":"Type 'BsPrefixRefForwardingComponent<\"a\", NavLinkProps>' is not assignable to type '(props: any, deprecatedLegacyContext?: any) => ReactNode'."}}]}]}]},"relatedInformation":[{"file":"../../../testeranto-react/node_modules/@types/react/index.d.ts","start":10658,"length":8,"messageText":"'children' is declared here.","category":3,"code":2728}]},{"start":1309,"length":11,"code":2786,"category":1,"messageText":{"messageText":"'Tab.Content' cannot be used as a JSX component.","category":1,"code":2786,"next":[{"messageText":"Its type 'BsPrefixRefForwardingComponent<\"div\", TabContentProps>' is not a valid JSX element type.","category":1,"code":18053,"next":[{"messageText":"Type 'BsPrefixRefForwardingComponent<\"div\", TabContentProps>' is not assignable to type '(props: any, deprecatedLegacyContext?: any) => ReactNode'.","category":1,"code":2322,"next":[{"messageText":"Type 'ReactElement<any, string | JSXElementConstructor<any>> | null' is not assignable to type 'ReactNode'.","category":1,"code":2322,"next":[{"messageText":"Type 'ReactElement<any, string | JSXElementConstructor<any>>' is not assignable to type 'ReactNode'.","category":1,"code":2322,"next":[{"messageText":"Property 'children' is missing in type 'ReactElement<any, string | JSXElementConstructor<any>>' but required in type 'ReactPortal'.","category":1,"code":2741,"canonicalHead":{"code":2322,"messageText":"Type 'ReactElement<any, string | JSXElementConstructor<any>>' is not assignable to type 'ReactPortal'."}}]}],"canonicalHead":{"code":2322,"messageText":"Type 'BsPrefixRefForwardingComponent<\"div\", TabContentProps>' is not assignable to type '(props: any, deprecatedLegacyContext?: any) => ReactNode'."}}]}]}]},"relatedInformation":[{"file":"../../../testeranto-react/node_modules/@types/react/index.d.ts","start":10658,"length":8,"messageText":"'children' is declared here.","category":3,"code":2728}]},{"start":1333,"length":8,"code":2786,"category":1,"messageText":{"messageText":"'Tab.Pane' cannot be used as a JSX component.","category":1,"code":2786,"next":[{"messageText":"Its type 'BsPrefixRefForwardingComponent<\"div\", TabPaneProps>' is not a valid JSX element type.","category":1,"code":18053,"next":[{"messageText":"Type 'BsPrefixRefForwardingComponent<\"div\", TabPaneProps>' is not assignable to type '(props: any, deprecatedLegacyContext?: any) => ReactNode'.","category":1,"code":2322,"next":[{"messageText":"Type 'ReactElement<any, string | JSXElementConstructor<any>> | null' is not assignable to type 'ReactNode'.","category":1,"code":2322,"next":[{"messageText":"Type 'ReactElement<any, string | JSXElementConstructor<any>>' is not assignable to type 'ReactNode'.","category":1,"code":2322,"next":[{"messageText":"Property 'children' is missing in type 'ReactElement<any, string | JSXElementConstructor<any>>' but required in type 'ReactPortal'.","category":1,"code":2741,"canonicalHead":{"code":2322,"messageText":"Type 'ReactElement<any, string | JSXElementConstructor<any>>' is not assignable to type 'ReactPortal'."}}]}],"canonicalHead":{"code":2322,"messageText":"Type 'BsPrefixRefForwardingComponent<\"div\", TabPaneProps>' is not assignable to type '(props: any, deprecatedLegacyContext?: any) => ReactNode'."}}]}]}]},"relatedInformation":[{"file":"../../../testeranto-react/node_modules/@types/react/index.d.ts","start":10658,"length":8,"messageText":"'children' is declared here.","category":3,"code":2728}]},{"start":1375,"length":4,"code":2786,"category":1,"messageText":{"messageText":"'Card' cannot be used as a JSX component.","category":1,"code":2786,"next":[{"messageText":"Its type 'BsPrefixRefForwardingComponent<\"div\", CardProps> & { Img: BsPrefixRefForwardingComponent<\"img\", CardImgProps>; ... 7 more ...; ImgOverlay: BsPrefixRefForwardingComponent<...>; }' is not a valid JSX element type.","category":1,"code":18053,"next":[{"messageText":"Type 'BsPrefixRefForwardingComponent<\"div\", CardProps> & { Img: BsPrefixRefForwardingComponent<\"img\", CardImgProps>; ... 7 more ...; ImgOverlay: BsPrefixRefForwardingComponent<...>; }' is not assignable to type '(props: any, deprecatedLegacyContext?: any) => ReactNode'.","category":1,"code":2322,"next":[{"messageText":"Type 'ReactElement<any, string | JSXElementConstructor<any>> | null' is not assignable to type 'ReactNode'.","category":1,"code":2322,"next":[{"messageText":"Type 'ReactElement<any, string | JSXElementConstructor<any>>' is not assignable to type 'ReactNode'.","category":1,"code":2322,"next":[{"messageText":"Property 'children' is missing in type 'ReactElement<any, string | JSXElementConstructor<any>>' but required in type 'ReactPortal'.","category":1,"code":2741,"canonicalHead":{"code":2322,"messageText":"Type 'ReactElement<any, string | JSXElementConstructor<any>>' is not assignable to type 'ReactPortal'."}}]}],"canonicalHead":{"code":2322,"messageText":"Type 'BsPrefixRefForwardingComponent<\"div\", CardProps> & { Img: BsPrefixRefForwardingComponent<\"img\", CardImgProps>; ... 7 more ...; ImgOverlay: BsPrefixRefForwardingComponent<...>; }' is not assignable to type '(props: any, deprecatedLegacyContext?: any) => ReactNode'."}}]}]}]},"relatedInformation":[{"file":"../../../testeranto-react/node_modules/@types/react/index.d.ts","start":10658,"length":8,"messageText":"'children' is declared here.","category":3,"code":2728}]},{"start":1396,"length":11,"code":2786,"category":1,"messageText":{"messageText":"'Card.Header' cannot be used as a JSX component.","category":1,"code":2786,"next":[{"messageText":"Its type 'BsPrefixRefForwardingComponent<\"div\", CardHeaderProps>' is not a valid JSX element type.","category":1,"code":18053,"next":[{"messageText":"Type 'BsPrefixRefForwardingComponent<\"div\", CardHeaderProps>' is not assignable to type '(props: any, deprecatedLegacyContext?: any) => ReactNode'.","category":1,"code":2322,"next":[{"messageText":"Type 'ReactElement<any, string | JSXElementConstructor<any>> | null' is not assignable to type 'ReactNode'.","category":1,"code":2322,"next":[{"messageText":"Type 'ReactElement<any, string | JSXElementConstructor<any>>' is not assignable to type 'ReactNode'.","category":1,"code":2322,"next":[{"messageText":"Property 'children' is missing in type 'ReactElement<any, string | JSXElementConstructor<any>>' but required in type 'ReactPortal'.","category":1,"code":2741,"canonicalHead":{"code":2322,"messageText":"Type 'ReactElement<any, string | JSXElementConstructor<any>>' is not assignable to type 'ReactPortal'."}}]}],"canonicalHead":{"code":2322,"messageText":"Type 'BsPrefixRefForwardingComponent<\"div\", CardHeaderProps>' is not assignable to type '(props: any, deprecatedLegacyContext?: any) => ReactNode'."}}]}]}]},"relatedInformation":[{"file":"../../../testeranto-react/node_modules/@types/react/index.d.ts","start":10658,"length":8,"messageText":"'children' is declared here.","category":3,"code":2728}]},{"start":1587,"length":5,"code":2786,"category":1,"messageText":{"messageText":"'Badge' cannot be used as a JSX component.","category":1,"code":2786,"next":[{"messageText":"Its type 'BsPrefixRefForwardingComponent<\"span\", BadgeProps>' is not a valid JSX element type.","category":1,"code":18053,"next":[{"messageText":"Type 'BsPrefixRefForwardingComponent<\"span\", BadgeProps>' is not assignable to type '(props: any, deprecatedLegacyContext?: any) => ReactNode'.","category":1,"code":2322,"next":[{"messageText":"Type 'ReactElement<any, string | JSXElementConstructor<any>> | null' is not assignable to type 'ReactNode'.","category":1,"code":2322,"next":[{"messageText":"Type 'ReactElement<any, string | JSXElementConstructor<any>>' is not assignable to type 'ReactNode'.","category":1,"code":2322,"next":[{"messageText":"Property 'children' is missing in type 'ReactElement<any, string | JSXElementConstructor<any>>' but required in type 'ReactPortal'.","category":1,"code":2741,"canonicalHead":{"code":2322,"messageText":"Type 'ReactElement<any, string | JSXElementConstructor<any>>' is not assignable to type 'ReactPortal'."}}]}],"canonicalHead":{"code":2322,"messageText":"Type 'BsPrefixRefForwardingComponent<\"span\", BadgeProps>' is not assignable to type '(props: any, deprecatedLegacyContext?: any) => ReactNode'."}}]}]}]},"relatedInformation":[{"file":"../../../testeranto-react/node_modules/@types/react/index.d.ts","start":10658,"length":8,"messageText":"'children' is declared here.","category":3,"code":2728}]},{"start":1816,"length":5,"code":2786,"category":1,"messageText":{"messageText":"'Badge' cannot be used as a JSX component.","category":1,"code":2786,"next":[{"messageText":"Its type 'BsPrefixRefForwardingComponent<\"span\", BadgeProps>' is not a valid JSX element type.","category":1,"code":18053,"next":[{"messageText":"Type 'BsPrefixRefForwardingComponent<\"span\", BadgeProps>' is not assignable to type '(props: any, deprecatedLegacyContext?: any) => ReactNode'.","category":1,"code":2322,"next":[{"messageText":"Type 'ReactElement<any, string | JSXElementConstructor<any>> | null' is not assignable to type 'ReactNode'.","category":1,"code":2322,"next":[{"messageText":"Type 'ReactElement<any, string | JSXElementConstructor<any>>' is not assignable to type 'ReactNode'.","category":1,"code":2322,"next":[{"messageText":"Property 'children' is missing in type 'ReactElement<any, string | JSXElementConstructor<any>>' but required in type 'ReactPortal'.","category":1,"code":2741,"canonicalHead":{"code":2322,"messageText":"Type 'ReactElement<any, string | JSXElementConstructor<any>>' is not assignable to type 'ReactPortal'."}}]}],"canonicalHead":{"code":2322,"messageText":"Type 'BsPrefixRefForwardingComponent<\"span\", BadgeProps>' is not assignable to type '(props: any, deprecatedLegacyContext?: any) => ReactNode'."}}]}]}]},"relatedInformation":[{"file":"../../../testeranto-react/node_modules/@types/react/index.d.ts","start":10658,"length":8,"messageText":"'children' is declared here.","category":3,"code":2728}]},{"start":2062,"length":5,"code":2786,"category":1,"messageText":{"messageText":"'Badge' cannot be used as a JSX component.","category":1,"code":2786,"next":[{"messageText":"Its type 'BsPrefixRefForwardingComponent<\"span\", BadgeProps>' is not a valid JSX element type.","category":1,"code":18053,"next":[{"messageText":"Type 'BsPrefixRefForwardingComponent<\"span\", BadgeProps>' is not assignable to type '(props: any, deprecatedLegacyContext?: any) => ReactNode'.","category":1,"code":2322,"next":[{"messageText":"Type 'ReactElement<any, string | JSXElementConstructor<any>> | null' is not assignable to type 'ReactNode'.","category":1,"code":2322,"next":[{"messageText":"Type 'ReactElement<any, string | JSXElementConstructor<any>>' is not assignable to type 'ReactNode'.","category":1,"code":2322,"next":[{"messageText":"Property 'children' is missing in type 'ReactElement<any, string | JSXElementConstructor<any>>' but required in type 'ReactPortal'.","category":1,"code":2741,"canonicalHead":{"code":2322,"messageText":"Type 'ReactElement<any, string | JSXElementConstructor<any>>' is not assignable to type 'ReactPortal'."}}]}],"canonicalHead":{"code":2322,"messageText":"Type 'BsPrefixRefForwardingComponent<\"span\", BadgeProps>' is not assignable to type '(props: any, deprecatedLegacyContext?: any) => ReactNode'."}}]}]}]},"relatedInformation":[{"file":"../../../testeranto-react/node_modules/@types/react/index.d.ts","start":10658,"length":8,"messageText":"'children' is declared here.","category":3,"code":2728}]},{"start":2194,"length":9,"code":2786,"category":1,"messageText":{"messageText":"'Card.Body' cannot be used as a JSX component.","category":1,"code":2786,"next":[{"messageText":"Its type 'BsPrefixRefForwardingComponent<\"div\", CardBodyProps>' is not a valid JSX element type.","category":1,"code":18053,"next":[{"messageText":"Type 'BsPrefixRefForwardingComponent<\"div\", CardBodyProps>' is not assignable to type '(props: any, deprecatedLegacyContext?: any) => ReactNode'.","category":1,"code":2322,"next":[{"messageText":"Type 'ReactElement<any, string | JSXElementConstructor<any>> | null' is not assignable to type 'ReactNode'.","category":1,"code":2322,"next":[{"messageText":"Type 'ReactElement<any, string | JSXElementConstructor<any>>' is not assignable to type 'ReactNode'.","category":1,"code":2322,"next":[{"messageText":"Property 'children' is missing in type 'ReactElement<any, string | JSXElementConstructor<any>>' but required in type 'ReactPortal'.","category":1,"code":2741,"canonicalHead":{"code":2322,"messageText":"Type 'ReactElement<any, string | JSXElementConstructor<any>>' is not assignable to type 'ReactPortal'."}}]}],"canonicalHead":{"code":2322,"messageText":"Type 'BsPrefixRefForwardingComponent<\"div\", CardBodyProps>' is not assignable to type '(props: any, deprecatedLegacyContext?: any) => ReactNode'."}}]}]}]},"relatedInformation":[{"file":"../../../testeranto-react/node_modules/@types/react/index.d.ts","start":10658,"length":8,"messageText":"'children' is declared here.","category":3,"code":2728}]},{"start":2354,"length":9,"code":2786,"category":1,"messageText":{"messageText":"'ListGroup' cannot be used as a JSX component.","category":1,"code":2786,"next":[{"messageText":"Its type 'BsPrefixRefForwardingComponent<\"div\", ListGroupProps> & { Item: BsPrefixRefForwardingComponent<\"a\", ListGroupItemProps>; }' is not a valid JSX element type.","category":1,"code":18053,"next":[{"messageText":"Type 'BsPrefixRefForwardingComponent<\"div\", ListGroupProps> & { Item: BsPrefixRefForwardingComponent<\"a\", ListGroupItemProps>; }' is not assignable to type '(props: any, deprecatedLegacyContext?: any) => ReactNode'.","category":1,"code":2322,"next":[{"messageText":"Type 'ReactElement<any, string | JSXElementConstructor<any>> | null' is not assignable to type 'ReactNode'.","category":1,"code":2322,"next":[{"messageText":"Type 'ReactElement<any, string | JSXElementConstructor<any>>' is not assignable to type 'ReactNode'.","category":1,"code":2322,"next":[{"messageText":"Property 'children' is missing in type 'ReactElement<any, string | JSXElementConstructor<any>>' but required in type 'ReactPortal'.","category":1,"code":2741,"canonicalHead":{"code":2322,"messageText":"Type 'ReactElement<any, string | JSXElementConstructor<any>>' is not assignable to type 'ReactPortal'."}}]}],"canonicalHead":{"code":2322,"messageText":"Type 'BsPrefixRefForwardingComponent<\"div\", ListGroupProps> & { Item: BsPrefixRefForwardingComponent<\"a\", ListGroupItemProps>; }' is not assignable to type '(props: any, deprecatedLegacyContext?: any) => ReactNode'."}}]}]}]},"relatedInformation":[{"file":"../../../testeranto-react/node_modules/@types/react/index.d.ts","start":10658,"length":8,"messageText":"'children' is declared here.","category":3,"code":2728}]},{"start":2502,"length":14,"code":2786,"category":1,"messageText":{"messageText":"'ListGroup.Item' cannot be used as a JSX component.","category":1,"code":2786,"next":[{"messageText":"Its type 'BsPrefixRefForwardingComponent<\"a\", ListGroupItemProps>' is not a valid JSX element type.","category":1,"code":18053,"next":[{"messageText":"Type 'BsPrefixRefForwardingComponent<\"a\", ListGroupItemProps>' is not assignable to type '(props: any, deprecatedLegacyContext?: any) => ReactNode'.","category":1,"code":2322,"next":[{"messageText":"Type 'ReactElement<any, string | JSXElementConstructor<any>> | null' is not assignable to type 'ReactNode'.","category":1,"code":2322,"next":[{"messageText":"Type 'ReactElement<any, string | JSXElementConstructor<any>>' is not assignable to type 'ReactNode'.","category":1,"code":2322,"next":[{"messageText":"Property 'children' is missing in type 'ReactElement<any, string | JSXElementConstructor<any>>' but required in type 'ReactPortal'.","category":1,"code":2741,"canonicalHead":{"code":2322,"messageText":"Type 'ReactElement<any, string | JSXElementConstructor<any>>' is not assignable to type 'ReactPortal'."}}]}],"canonicalHead":{"code":2322,"messageText":"Type 'BsPrefixRefForwardingComponent<\"a\", ListGroupItemProps>' is not assignable to type '(props: any, deprecatedLegacyContext?: any) => ReactNode'."}}]}]}]},"relatedInformation":[{"file":"../../../testeranto-react/node_modules/@types/react/index.d.ts","start":10658,"length":8,"messageText":"'children' is declared here.","category":3,"code":2728}]},{"start":2999,"length":9,"code":2786,"category":1,"messageText":{"messageText":"'ListGroup' cannot be used as a JSX component.","category":1,"code":2786,"next":[{"messageText":"Its type 'BsPrefixRefForwardingComponent<\"div\", ListGroupProps> & { Item: BsPrefixRefForwardingComponent<\"a\", ListGroupItemProps>; }' is not a valid JSX element type.","category":1,"code":18053,"next":[{"messageText":"Type 'BsPrefixRefForwardingComponent<\"div\", ListGroupProps> & { Item: BsPrefixRefForwardingComponent<\"a\", ListGroupItemProps>; }' is not assignable to type '(props: any, deprecatedLegacyContext?: any) => ReactNode'.","category":1,"code":2322,"next":[{"messageText":"Type 'ReactElement<any, string | JSXElementConstructor<any>> | null' is not assignable to type 'ReactNode'.","category":1,"code":2322,"next":[{"messageText":"Type 'ReactElement<any, string | JSXElementConstructor<any>>' is not assignable to type 'ReactNode'.","category":1,"code":2322,"next":[{"messageText":"Property 'children' is missing in type 'ReactElement<any, string | JSXElementConstructor<any>>' but required in type 'ReactPortal'.","category":1,"code":2741,"canonicalHead":{"code":2322,"messageText":"Type 'ReactElement<any, string | JSXElementConstructor<any>>' is not assignable to type 'ReactPortal'."}}]}],"canonicalHead":{"code":2322,"messageText":"Type 'BsPrefixRefForwardingComponent<\"div\", ListGroupProps> & { Item: BsPrefixRefForwardingComponent<\"a\", ListGroupItemProps>; }' is not assignable to type '(props: any, deprecatedLegacyContext?: any) => ReactNode'."}}]}]}]},"relatedInformation":[{"file":"../../../testeranto-react/node_modules/@types/react/index.d.ts","start":10658,"length":8,"messageText":"'children' is declared here.","category":3,"code":2728}]},{"start":3148,"length":14,"code":2786,"category":1,"messageText":{"messageText":"'ListGroup.Item' cannot be used as a JSX component.","category":1,"code":2786,"next":[{"messageText":"Its type 'BsPrefixRefForwardingComponent<\"a\", ListGroupItemProps>' is not a valid JSX element type.","category":1,"code":18053,"next":[{"messageText":"Type 'BsPrefixRefForwardingComponent<\"a\", ListGroupItemProps>' is not assignable to type '(props: any, deprecatedLegacyContext?: any) => ReactNode'.","category":1,"code":2322,"next":[{"messageText":"Type 'ReactElement<any, string | JSXElementConstructor<any>> | null' is not assignable to type 'ReactNode'.","category":1,"code":2322,"next":[{"messageText":"Type 'ReactElement<any, string | JSXElementConstructor<any>>' is not assignable to type 'ReactNode'.","category":1,"code":2322,"next":[{"messageText":"Property 'children' is missing in type 'ReactElement<any, string | JSXElementConstructor<any>>' but required in type 'ReactPortal'.","category":1,"code":2741,"canonicalHead":{"code":2322,"messageText":"Type 'ReactElement<any, string | JSXElementConstructor<any>>' is not assignable to type 'ReactPortal'."}}]}],"canonicalHead":{"code":2322,"messageText":"Type 'BsPrefixRefForwardingComponent<\"a\", ListGroupItemProps>' is not assignable to type '(props: any, deprecatedLegacyContext?: any) => ReactNode'."}}]}]}]},"relatedInformation":[{"file":"../../../testeranto-react/node_modules/@types/react/index.d.ts","start":10658,"length":8,"messageText":"'children' is declared here.","category":3,"code":2728}]},{"start":3776,"length":8,"code":2786,"category":1,"messageText":{"messageText":"'Tab.Pane' cannot be used as a JSX component.","category":1,"code":2786,"next":[{"messageText":"Its type 'BsPrefixRefForwardingComponent<\"div\", TabPaneProps>' is not a valid JSX element type.","category":1,"code":18053,"next":[{"messageText":"Type 'BsPrefixRefForwardingComponent<\"div\", TabPaneProps>' is not assignable to type '(props: any, deprecatedLegacyContext?: any) => ReactNode'.","category":1,"code":2322,"next":[{"messageText":"Type 'ReactElement<any, string | JSXElementConstructor<any>> | null' is not assignable to type 'ReactNode'.","category":1,"code":2322,"next":[{"messageText":"Type 'ReactElement<any, string | JSXElementConstructor<any>>' is not assignable to type 'ReactNode'.","category":1,"code":2322,"next":[{"messageText":"Property 'children' is missing in type 'ReactElement<any, string | JSXElementConstructor<any>>' but required in type 'ReactPortal'.","category":1,"code":2741,"canonicalHead":{"code":2322,"messageText":"Type 'ReactElement<any, string | JSXElementConstructor<any>>' is not assignable to type 'ReactPortal'."}}]}],"canonicalHead":{"code":2322,"messageText":"Type 'BsPrefixRefForwardingComponent<\"div\", TabPaneProps>' is not assignable to type '(props: any, deprecatedLegacyContext?: any) => ReactNode'."}}]}]}]},"relatedInformation":[{"file":"../../../testeranto-react/node_modules/@types/react/index.d.ts","start":10658,"length":8,"messageText":"'children' is declared here.","category":3,"code":2728}]},{"start":3850,"length":4,"code":2786,"category":1,"messageText":{"messageText":"'Card' cannot be used as a JSX component.","category":1,"code":2786,"next":[{"messageText":"Its type 'BsPrefixRefForwardingComponent<\"div\", CardProps> & { Img: BsPrefixRefForwardingComponent<\"img\", CardImgProps>; ... 7 more ...; ImgOverlay: BsPrefixRefForwardingComponent<...>; }' is not a valid JSX element type.","category":1,"code":18053,"next":[{"messageText":"Type 'BsPrefixRefForwardingComponent<\"div\", CardProps> & { Img: BsPrefixRefForwardingComponent<\"img\", CardImgProps>; ... 7 more ...; ImgOverlay: BsPrefixRefForwardingComponent<...>; }' is not assignable to type '(props: any, deprecatedLegacyContext?: any) => ReactNode'.","category":1,"code":2322,"next":[{"messageText":"Type 'ReactElement<any, string | JSXElementConstructor<any>> | null' is not assignable to type 'ReactNode'.","category":1,"code":2322,"next":[{"messageText":"Type 'ReactElement<any, string | JSXElementConstructor<any>>' is not assignable to type 'ReactNode'.","category":1,"code":2322,"next":[{"messageText":"Property 'children' is missing in type 'ReactElement<any, string | JSXElementConstructor<any>>' but required in type 'ReactPortal'.","category":1,"code":2741,"canonicalHead":{"code":2322,"messageText":"Type 'ReactElement<any, string | JSXElementConstructor<any>>' is not assignable to type 'ReactPortal'."}}]}],"canonicalHead":{"code":2322,"messageText":"Type 'BsPrefixRefForwardingComponent<\"div\", CardProps> & { Img: BsPrefixRefForwardingComponent<\"img\", CardImgProps>; ... 7 more ...; ImgOverlay: BsPrefixRefForwardingComponent<...>; }' is not assignable to type '(props: any, deprecatedLegacyContext?: any) => ReactNode'."}}]}]}]},"relatedInformation":[{"file":"../../../testeranto-react/node_modules/@types/react/index.d.ts","start":10658,"length":8,"messageText":"'children' is declared here.","category":3,"code":2728}]},{"start":3900,"length":11,"code":2786,"category":1,"messageText":{"messageText":"'Card.Header' cannot be used as a JSX component.","category":1,"code":2786,"next":[{"messageText":"Its type 'BsPrefixRefForwardingComponent<\"div\", CardHeaderProps>' is not a valid JSX element type.","category":1,"code":18053,"next":[{"messageText":"Type 'BsPrefixRefForwardingComponent<\"div\", CardHeaderProps>' is not assignable to type '(props: any, deprecatedLegacyContext?: any) => ReactNode'.","category":1,"code":2322,"next":[{"messageText":"Type 'ReactElement<any, string | JSXElementConstructor<any>> | null' is not assignable to type 'ReactNode'.","category":1,"code":2322,"next":[{"messageText":"Type 'ReactElement<any, string | JSXElementConstructor<any>>' is not assignable to type 'ReactNode'.","category":1,"code":2322,"next":[{"messageText":"Property 'children' is missing in type 'ReactElement<any, string | JSXElementConstructor<any>>' but required in type 'ReactPortal'.","category":1,"code":2741,"canonicalHead":{"code":2322,"messageText":"Type 'ReactElement<any, string | JSXElementConstructor<any>>' is not assignable to type 'ReactPortal'."}}]}],"canonicalHead":{"code":2322,"messageText":"Type 'BsPrefixRefForwardingComponent<\"div\", CardHeaderProps>' is not assignable to type '(props: any, deprecatedLegacyContext?: any) => ReactNode'."}}]}]}]},"relatedInformation":[{"file":"../../../testeranto-react/node_modules/@types/react/index.d.ts","start":10658,"length":8,"messageText":"'children' is declared here.","category":3,"code":2728}]},{"start":4087,"length":5,"code":2786,"category":1,"messageText":{"messageText":"'Badge' cannot be used as a JSX component.","category":1,"code":2786,"next":[{"messageText":"Its type 'BsPrefixRefForwardingComponent<\"span\", BadgeProps>' is not a valid JSX element type.","category":1,"code":18053,"next":[{"messageText":"Type 'BsPrefixRefForwardingComponent<\"span\", BadgeProps>' is not assignable to type '(props: any, deprecatedLegacyContext?: any) => ReactNode'.","category":1,"code":2322,"next":[{"messageText":"Type 'ReactElement<any, string | JSXElementConstructor<any>> | null' is not assignable to type 'ReactNode'.","category":1,"code":2322,"next":[{"messageText":"Type 'ReactElement<any, string | JSXElementConstructor<any>>' is not assignable to type 'ReactNode'.","category":1,"code":2322,"next":[{"messageText":"Property 'children' is missing in type 'ReactElement<any, string | JSXElementConstructor<any>>' but required in type 'ReactPortal'.","category":1,"code":2741,"canonicalHead":{"code":2322,"messageText":"Type 'ReactElement<any, string | JSXElementConstructor<any>>' is not assignable to type 'ReactPortal'."}}]}],"canonicalHead":{"code":2322,"messageText":"Type 'BsPrefixRefForwardingComponent<\"span\", BadgeProps>' is not assignable to type '(props: any, deprecatedLegacyContext?: any) => ReactNode'."}}]}]}]},"relatedInformation":[{"file":"../../../testeranto-react/node_modules/@types/react/index.d.ts","start":10658,"length":8,"messageText":"'children' is declared here.","category":3,"code":2728}]},{"start":4242,"length":9,"code":2786,"category":1,"messageText":{"messageText":"'Card.Body' cannot be used as a JSX component.","category":1,"code":2786,"next":[{"messageText":"Its type 'BsPrefixRefForwardingComponent<\"div\", CardBodyProps>' is not a valid JSX element type.","category":1,"code":18053,"next":[{"messageText":"Type 'BsPrefixRefForwardingComponent<\"div\", CardBodyProps>' is not assignable to type '(props: any, deprecatedLegacyContext?: any) => ReactNode'.","category":1,"code":2322,"next":[{"messageText":"Type 'ReactElement<any, string | JSXElementConstructor<any>> | null' is not assignable to type 'ReactNode'.","category":1,"code":2322,"next":[{"messageText":"Type 'ReactElement<any, string | JSXElementConstructor<any>>' is not assignable to type 'ReactNode'.","category":1,"code":2322,"next":[{"messageText":"Property 'children' is missing in type 'ReactElement<any, string | JSXElementConstructor<any>>' but required in type 'ReactPortal'.","category":1,"code":2741,"canonicalHead":{"code":2322,"messageText":"Type 'ReactElement<any, string | JSXElementConstructor<any>>' is not assignable to type 'ReactPortal'."}}]}],"canonicalHead":{"code":2322,"messageText":"Type 'BsPrefixRefForwardingComponent<\"div\", CardBodyProps>' is not assignable to type '(props: any, deprecatedLegacyContext?: any) => ReactNode'."}}]}]}]},"relatedInformation":[{"file":"../../../testeranto-react/node_modules/@types/react/index.d.ts","start":10658,"length":8,"messageText":"'children' is declared here.","category":3,"code":2728}]},{"start":4288,"length":9,"code":2786,"category":1,"messageText":{"messageText":"'ListGroup' cannot be used as a JSX component.","category":1,"code":2786,"next":[{"messageText":"Its type 'BsPrefixRefForwardingComponent<\"div\", ListGroupProps> & { Item: BsPrefixRefForwardingComponent<\"a\", ListGroupItemProps>; }' is not a valid JSX element type.","category":1,"code":18053,"next":[{"messageText":"Type 'BsPrefixRefForwardingComponent<\"div\", ListGroupProps> & { Item: BsPrefixRefForwardingComponent<\"a\", ListGroupItemProps>; }' is not assignable to type '(props: any, deprecatedLegacyContext?: any) => ReactNode'.","category":1,"code":2322,"next":[{"messageText":"Type 'ReactElement<any, string | JSXElementConstructor<any>> | null' is not assignable to type 'ReactNode'.","category":1,"code":2322,"next":[{"messageText":"Type 'ReactElement<any, string | JSXElementConstructor<any>>' is not assignable to type 'ReactNode'.","category":1,"code":2322,"next":[{"messageText":"Property 'children' is missing in type 'ReactElement<any, string | JSXElementConstructor<any>>' but required in type 'ReactPortal'.","category":1,"code":2741,"canonicalHead":{"code":2322,"messageText":"Type 'ReactElement<any, string | JSXElementConstructor<any>>' is not assignable to type 'ReactPortal'."}}]}],"canonicalHead":{"code":2322,"messageText":"Type 'BsPrefixRefForwardingComponent<\"div\", ListGroupProps> & { Item: BsPrefixRefForwardingComponent<\"a\", ListGroupItemProps>; }' is not assignable to type '(props: any, deprecatedLegacyContext?: any) => ReactNode'."}}]}]}]},"relatedInformation":[{"file":"../../../testeranto-react/node_modules/@types/react/index.d.ts","start":10658,"length":8,"messageText":"'children' is declared here.","category":3,"code":2728}]},{"start":4405,"length":14,"code":2786,"category":1,"messageText":{"messageText":"'ListGroup.Item' cannot be used as a JSX component.","category":1,"code":2786,"next":[{"messageText":"Its type 'BsPrefixRefForwardingComponent<\"a\", ListGroupItemProps>' is not a valid JSX element type.","category":1,"code":18053,"next":[{"messageText":"Type 'BsPrefixRefForwardingComponent<\"a\", ListGroupItemProps>' is not assignable to type '(props: any, deprecatedLegacyContext?: any) => ReactNode'.","category":1,"code":2322,"next":[{"messageText":"Type 'ReactElement<any, string | JSXElementConstructor<any>> | null' is not assignable to type 'ReactNode'.","category":1,"code":2322,"next":[{"messageText":"Type 'ReactElement<any, string | JSXElementConstructor<any>>' is not assignable to type 'ReactNode'.","category":1,"code":2322,"next":[{"messageText":"Property 'children' is missing in type 'ReactElement<any, string | JSXElementConstructor<any>>' but required in type 'ReactPortal'.","category":1,"code":2741,"canonicalHead":{"code":2322,"messageText":"Type 'ReactElement<any, string | JSXElementConstructor<any>>' is not assignable to type 'ReactPortal'."}}]}],"canonicalHead":{"code":2322,"messageText":"Type 'BsPrefixRefForwardingComponent<\"a\", ListGroupItemProps>' is not assignable to type '(props: any, deprecatedLegacyContext?: any) => ReactNode'."}}]}]}]},"relatedInformation":[{"file":"../../../testeranto-react/node_modules/@types/react/index.d.ts","start":10658,"length":8,"messageText":"'children' is declared here.","category":3,"code":2728}]},{"start":5681,"length":5,"code":2786,"category":1,"messageText":{"messageText":"'Alert' cannot be used as a JSX component.","category":1,"code":2786,"next":[{"messageText":"Its type 'ForwardRefExoticComponent<AlertProps & RefAttributes<HTMLDivElement>> & { Link: BsPrefixRefForwardingComponent<\"a\", AlertLinkProps>; Heading: BsPrefixRefForwardingComponent<...>; }' is not a valid JSX element type.","category":1,"code":18053,"next":[{"messageText":"Type 'ForwardRefExoticComponent<AlertProps & RefAttributes<HTMLDivElement>> & { Link: BsPrefixRefForwardingComponent<\"a\", AlertLinkProps>; Heading: BsPrefixRefForwardingComponent<...>; }' is not assignable to type '(props: any, deprecatedLegacyContext?: any) => ReactNode'.","category":1,"code":2322,"next":[{"messageText":"Type 'ReactElement<any, string | JSXElementConstructor<any>> | null' is not assignable to type 'ReactNode'.","category":1,"code":2322,"next":[{"messageText":"Type 'ReactElement<any, string | JSXElementConstructor<any>>' is not assignable to type 'ReactNode'.","category":1,"code":2322,"next":[{"messageText":"Property 'children' is missing in type 'ReactElement<any, string | JSXElementConstructor<any>>' but required in type 'ReactPortal'.","category":1,"code":2741,"canonicalHead":{"code":2322,"messageText":"Type 'ReactElement<any, string | JSXElementConstructor<any>>' is not assignable to type 'ReactPortal'."}}]}],"canonicalHead":{"code":2322,"messageText":"Type 'ForwardRefExoticComponent<AlertProps & RefAttributes<HTMLDivElement>> & { Link: BsPrefixRefForwardingComponent<\"a\", AlertLinkProps>; Heading: BsPrefixRefForwardingComponent<...>; }' is not assignable to type '(props: any, deprecatedLegacyContext?: any) => ReactNode'."}}]}]}]},"relatedInformation":[{"file":"../../../testeranto-react/node_modules/@types/react/index.d.ts","start":10658,"length":8,"messageText":"'children' is declared here.","category":3,"code":2728}]},{"start":5776,"length":8,"code":2786,"category":1,"messageText":{"messageText":"'Tab.Pane' cannot be used as a JSX component.","category":1,"code":2786,"next":[{"messageText":"Its type 'BsPrefixRefForwardingComponent<\"div\", TabPaneProps>' is not a valid JSX element type.","category":1,"code":18053,"next":[{"messageText":"Type 'BsPrefixRefForwardingComponent<\"div\", TabPaneProps>' is not assignable to type '(props: any, deprecatedLegacyContext?: any) => ReactNode'.","category":1,"code":2322,"next":[{"messageText":"Type 'ReactElement<any, string | JSXElementConstructor<any>> | null' is not assignable to type 'ReactNode'.","category":1,"code":2322,"next":[{"messageText":"Type 'ReactElement<any, string | JSXElementConstructor<any>>' is not assignable to type 'ReactNode'.","category":1,"code":2322,"next":[{"messageText":"Property 'children' is missing in type 'ReactElement<any, string | JSXElementConstructor<any>>' but required in type 'ReactPortal'.","category":1,"code":2741,"canonicalHead":{"code":2322,"messageText":"Type 'ReactElement<any, string | JSXElementConstructor<any>>' is not assignable to type 'ReactPortal'."}}]}],"canonicalHead":{"code":2322,"messageText":"Type 'BsPrefixRefForwardingComponent<\"div\", TabPaneProps>' is not assignable to type '(props: any, deprecatedLegacyContext?: any) => ReactNode'."}}]}]}]},"relatedInformation":[{"file":"../../../testeranto-react/node_modules/@types/react/index.d.ts","start":10658,"length":8,"messageText":"'children' is declared here.","category":3,"code":2728}]},{"start":5846,"length":4,"code":2786,"category":1,"messageText":{"messageText":"'Card' cannot be used as a JSX component.","category":1,"code":2786,"next":[{"messageText":"Its type 'BsPrefixRefForwardingComponent<\"div\", CardProps> & { Img: BsPrefixRefForwardingComponent<\"img\", CardImgProps>; ... 7 more ...; ImgOverlay: BsPrefixRefForwardingComponent<...>; }' is not a valid JSX element type.","category":1,"code":18053,"next":[{"messageText":"Type 'BsPrefixRefForwardingComponent<\"div\", CardProps> & { Img: BsPrefixRefForwardingComponent<\"img\", CardImgProps>; ... 7 more ...; ImgOverlay: BsPrefixRefForwardingComponent<...>; }' is not assignable to type '(props: any, deprecatedLegacyContext?: any) => ReactNode'.","category":1,"code":2322,"next":[{"messageText":"Type 'ReactElement<any, string | JSXElementConstructor<any>> | null' is not assignable to type 'ReactNode'.","category":1,"code":2322,"next":[{"messageText":"Type 'ReactElement<any, string | JSXElementConstructor<any>>' is not assignable to type 'ReactNode'.","category":1,"code":2322,"next":[{"messageText":"Property 'children' is missing in type 'ReactElement<any, string | JSXElementConstructor<any>>' but required in type 'ReactPortal'.","category":1,"code":2741,"canonicalHead":{"code":2322,"messageText":"Type 'ReactElement<any, string | JSXElementConstructor<any>>' is not assignable to type 'ReactPortal'."}}]}],"canonicalHead":{"code":2322,"messageText":"Type 'BsPrefixRefForwardingComponent<\"div\", CardProps> & { Img: BsPrefixRefForwardingComponent<\"img\", CardImgProps>; ... 7 more ...; ImgOverlay: BsPrefixRefForwardingComponent<...>; }' is not assignable to type '(props: any, deprecatedLegacyContext?: any) => ReactNode'."}}]}]}]},"relatedInformation":[{"file":"../../../testeranto-react/node_modules/@types/react/index.d.ts","start":10658,"length":8,"messageText":"'children' is declared here.","category":3,"code":2728}]},{"start":5895,"length":11,"code":2786,"category":1,"messageText":{"messageText":"'Card.Header' cannot be used as a JSX component.","category":1,"code":2786,"next":[{"messageText":"Its type 'BsPrefixRefForwardingComponent<\"div\", CardHeaderProps>' is not a valid JSX element type.","category":1,"code":18053,"next":[{"messageText":"Type 'BsPrefixRefForwardingComponent<\"div\", CardHeaderProps>' is not assignable to type '(props: any, deprecatedLegacyContext?: any) => ReactNode'.","category":1,"code":2322,"next":[{"messageText":"Type 'ReactElement<any, string | JSXElementConstructor<any>> | null' is not assignable to type 'ReactNode'.","category":1,"code":2322,"next":[{"messageText":"Type 'ReactElement<any, string | JSXElementConstructor<any>>' is not assignable to type 'ReactNode'.","category":1,"code":2322,"next":[{"messageText":"Property 'children' is missing in type 'ReactElement<any, string | JSXElementConstructor<any>>' but required in type 'ReactPortal'.","category":1,"code":2741,"canonicalHead":{"code":2322,"messageText":"Type 'ReactElement<any, string | JSXElementConstructor<any>>' is not assignable to type 'ReactPortal'."}}]}],"canonicalHead":{"code":2322,"messageText":"Type 'BsPrefixRefForwardingComponent<\"div\", CardHeaderProps>' is not assignable to type '(props: any, deprecatedLegacyContext?: any) => ReactNode'."}}]}]}]},"relatedInformation":[{"file":"../../../testeranto-react/node_modules/@types/react/index.d.ts","start":10658,"length":8,"messageText":"'children' is declared here.","category":3,"code":2728}]},{"start":6077,"length":5,"code":2786,"category":1,"messageText":{"messageText":"'Badge' cannot be used as a JSX component.","category":1,"code":2786,"next":[{"messageText":"Its type 'BsPrefixRefForwardingComponent<\"span\", BadgeProps>' is not a valid JSX element type.","category":1,"code":18053,"next":[{"messageText":"Type 'BsPrefixRefForwardingComponent<\"span\", BadgeProps>' is not assignable to type '(props: any, deprecatedLegacyContext?: any) => ReactNode'.","category":1,"code":2322,"next":[{"messageText":"Type 'ReactElement<any, string | JSXElementConstructor<any>> | null' is not assignable to type 'ReactNode'.","category":1,"code":2322,"next":[{"messageText":"Type 'ReactElement<any, string | JSXElementConstructor<any>>' is not assignable to type 'ReactNode'.","category":1,"code":2322,"next":[{"messageText":"Property 'children' is missing in type 'ReactElement<any, string | JSXElementConstructor<any>>' but required in type 'ReactPortal'.","category":1,"code":2741,"canonicalHead":{"code":2322,"messageText":"Type 'ReactElement<any, string | JSXElementConstructor<any>>' is not assignable to type 'ReactPortal'."}}]}],"canonicalHead":{"code":2322,"messageText":"Type 'BsPrefixRefForwardingComponent<\"span\", BadgeProps>' is not assignable to type '(props: any, deprecatedLegacyContext?: any) => ReactNode'."}}]}]}]},"relatedInformation":[{"file":"../../../testeranto-react/node_modules/@types/react/index.d.ts","start":10658,"length":8,"messageText":"'children' is declared here.","category":3,"code":2728}]},{"start":6232,"length":9,"code":2786,"category":1,"messageText":{"messageText":"'Card.Body' cannot be used as a JSX component.","category":1,"code":2786,"next":[{"messageText":"Its type 'BsPrefixRefForwardingComponent<\"div\", CardBodyProps>' is not a valid JSX element type.","category":1,"code":18053,"next":[{"messageText":"Type 'BsPrefixRefForwardingComponent<\"div\", CardBodyProps>' is not assignable to type '(props: any, deprecatedLegacyContext?: any) => ReactNode'.","category":1,"code":2322,"next":[{"messageText":"Type 'ReactElement<any, string | JSXElementConstructor<any>> | null' is not assignable to type 'ReactNode'.","category":1,"code":2322,"next":[{"messageText":"Type 'ReactElement<any, string | JSXElementConstructor<any>>' is not assignable to type 'ReactNode'.","category":1,"code":2322,"next":[{"messageText":"Property 'children' is missing in type 'ReactElement<any, string | JSXElementConstructor<any>>' but required in type 'ReactPortal'.","category":1,"code":2741,"canonicalHead":{"code":2322,"messageText":"Type 'ReactElement<any, string | JSXElementConstructor<any>>' is not assignable to type 'ReactPortal'."}}]}],"canonicalHead":{"code":2322,"messageText":"Type 'BsPrefixRefForwardingComponent<\"div\", CardBodyProps>' is not assignable to type '(props: any, deprecatedLegacyContext?: any) => ReactNode'."}}]}]}]},"relatedInformation":[{"file":"../../../testeranto-react/node_modules/@types/react/index.d.ts","start":10658,"length":8,"messageText":"'children' is declared here.","category":3,"code":2728}]},{"start":6278,"length":9,"code":2786,"category":1,"messageText":{"messageText":"'ListGroup' cannot be used as a JSX component.","category":1,"code":2786,"next":[{"messageText":"Its type 'BsPrefixRefForwardingComponent<\"div\", ListGroupProps> & { Item: BsPrefixRefForwardingComponent<\"a\", ListGroupItemProps>; }' is not a valid JSX element type.","category":1,"code":18053,"next":[{"messageText":"Type 'BsPrefixRefForwardingComponent<\"div\", ListGroupProps> & { Item: BsPrefixRefForwardingComponent<\"a\", ListGroupItemProps>; }' is not assignable to type '(props: any, deprecatedLegacyContext?: any) => ReactNode'.","category":1,"code":2322,"next":[{"messageText":"Type 'ReactElement<any, string | JSXElementConstructor<any>> | null' is not assignable to type 'ReactNode'.","category":1,"code":2322,"next":[{"messageText":"Type 'ReactElement<any, string | JSXElementConstructor<any>>' is not assignable to type 'ReactNode'.","category":1,"code":2322,"next":[{"messageText":"Property 'children' is missing in type 'ReactElement<any, string | JSXElementConstructor<any>>' but required in type 'ReactPortal'.","category":1,"code":2741,"canonicalHead":{"code":2322,"messageText":"Type 'ReactElement<any, string | JSXElementConstructor<any>>' is not assignable to type 'ReactPortal'."}}]}],"canonicalHead":{"code":2322,"messageText":"Type 'BsPrefixRefForwardingComponent<\"div\", ListGroupProps> & { Item: BsPrefixRefForwardingComponent<\"a\", ListGroupItemProps>; }' is not assignable to type '(props: any, deprecatedLegacyContext?: any) => ReactNode'."}}]}]}]},"relatedInformation":[{"file":"../../../testeranto-react/node_modules/@types/react/index.d.ts","start":10658,"length":8,"messageText":"'children' is declared here.","category":3,"code":2728}]},{"start":6392,"length":14,"code":2786,"category":1,"messageText":{"messageText":"'ListGroup.Item' cannot be used as a JSX component.","category":1,"code":2786,"next":[{"messageText":"Its type 'BsPrefixRefForwardingComponent<\"a\", ListGroupItemProps>' is not a valid JSX element type.","category":1,"code":18053,"next":[{"messageText":"Type 'BsPrefixRefForwardingComponent<\"a\", ListGroupItemProps>' is not assignable to type '(props: any, deprecatedLegacyContext?: any) => ReactNode'.","category":1,"code":2322,"next":[{"messageText":"Type 'ReactElement<any, string | JSXElementConstructor<any>> | null' is not assignable to type 'ReactNode'.","category":1,"code":2322,"next":[{"messageText":"Type 'ReactElement<any, string | JSXElementConstructor<any>>' is not assignable to type 'ReactNode'.","category":1,"code":2322,"next":[{"messageText":"Property 'children' is missing in type 'ReactElement<any, string | JSXElementConstructor<any>>' but required in type 'ReactPortal'.","category":1,"code":2741,"canonicalHead":{"code":2322,"messageText":"Type 'ReactElement<any, string | JSXElementConstructor<any>>' is not assignable to type 'ReactPortal'."}}]}],"canonicalHead":{"code":2322,"messageText":"Type 'BsPrefixRefForwardingComponent<\"a\", ListGroupItemProps>' is not assignable to type '(props: any, deprecatedLegacyContext?: any) => ReactNode'."}}]}]}]},"relatedInformation":[{"file":"../../../testeranto-react/node_modules/@types/react/index.d.ts","start":10658,"length":8,"messageText":"'children' is declared here.","category":3,"code":2728}]},{"start":7744,"length":5,"code":2786,"category":1,"messageText":{"messageText":"'Alert' cannot be used as a JSX component.","category":1,"code":2786,"next":[{"messageText":"Its type 'ForwardRefExoticComponent<AlertProps & RefAttributes<HTMLDivElement>> & { Link: BsPrefixRefForwardingComponent<\"a\", AlertLinkProps>; Heading: BsPrefixRefForwardingComponent<...>; }' is not a valid JSX element type.","category":1,"code":18053,"next":[{"messageText":"Type 'ForwardRefExoticComponent<AlertProps & RefAttributes<HTMLDivElement>> & { Link: BsPrefixRefForwardingComponent<\"a\", AlertLinkProps>; Heading: BsPrefixRefForwardingComponent<...>; }' is not assignable to type '(props: any, deprecatedLegacyContext?: any) => ReactNode'.","category":1,"code":2322,"next":[{"messageText":"Type 'ReactElement<any, string | JSXElementConstructor<any>> | null' is not assignable to type 'ReactNode'.","category":1,"code":2322,"next":[{"messageText":"Type 'ReactElement<any, string | JSXElementConstructor<any>>' is not assignable to type 'ReactNode'.","category":1,"code":2322,"next":[{"messageText":"Property 'children' is missing in type 'ReactElement<any, string | JSXElementConstructor<any>>' but required in type 'ReactPortal'.","category":1,"code":2741,"canonicalHead":{"code":2322,"messageText":"Type 'ReactElement<any, string | JSXElementConstructor<any>>' is not assignable to type 'ReactPortal'."}}]}],"canonicalHead":{"code":2322,"messageText":"Type 'ForwardRefExoticComponent<AlertProps & RefAttributes<HTMLDivElement>> & { Link: BsPrefixRefForwardingComponent<\"a\", AlertLinkProps>; Heading: BsPrefixRefForwardingComponent<...>; }' is not assignable to type '(props: any, deprecatedLegacyContext?: any) => ReactNode'."}}]}]}]},"relatedInformation":[{"file":"../../../testeranto-react/node_modules/@types/react/index.d.ts","start":10658,"length":8,"messageText":"'children' is declared here.","category":3,"code":2728}]},{"start":8529,"length":5,"code":2786,"category":1,"messageText":{"messageText":"'Alert' cannot be used as a JSX component.","category":1,"code":2786,"next":[{"messageText":"Its type 'ForwardRefExoticComponent<AlertProps & RefAttributes<HTMLDivElement>> & { Link: BsPrefixRefForwardingComponent<\"a\", AlertLinkProps>; Heading: BsPrefixRefForwardingComponent<...>; }' is not a valid JSX element type.","category":1,"code":18053,"next":[{"messageText":"Type 'ForwardRefExoticComponent<AlertProps & RefAttributes<HTMLDivElement>> & { Link: BsPrefixRefForwardingComponent<\"a\", AlertLinkProps>; Heading: BsPrefixRefForwardingComponent<...>; }' is not assignable to type '(props: any, deprecatedLegacyContext?: any) => ReactNode'.","category":1,"code":2322,"next":[{"messageText":"Type 'ReactElement<any, string | JSXElementConstructor<any>> | null' is not assignable to type 'ReactNode'.","category":1,"code":2322,"next":[{"messageText":"Type 'ReactElement<any, string | JSXElementConstructor<any>>' is not assignable to type 'ReactNode'.","category":1,"code":2322,"next":[{"messageText":"Property 'children' is missing in type 'ReactElement<any, string | JSXElementConstructor<any>>' but required in type 'ReactPortal'.","category":1,"code":2741,"canonicalHead":{"code":2322,"messageText":"Type 'ReactElement<any, string | JSXElementConstructor<any>>' is not assignable to type 'ReactPortal'."}}]}],"canonicalHead":{"code":2322,"messageText":"Type 'ForwardRefExoticComponent<AlertProps & RefAttributes<HTMLDivElement>> & { Link: BsPrefixRefForwardingComponent<\"a\", AlertLinkProps>; Heading: BsPrefixRefForwardingComponent<...>; }' is not assignable to type '(props: any, deprecatedLegacyContext?: any) => ReactNode'."}}]}]}]},"relatedInformation":[{"file":"../../../testeranto-react/node_modules/@types/react/index.d.ts","start":10658,"length":8,"messageText":"'children' is declared here.","category":3,"code":2728}]},{"start":8600,"length":5,"code":2786,"category":1,"messageText":{"messageText":"'Alert' cannot be used as a JSX component.","category":1,"code":2786,"next":[{"messageText":"Its type 'ForwardRefExoticComponent<AlertProps & RefAttributes<HTMLDivElement>> & { Link: BsPrefixRefForwardingComponent<\"a\", AlertLinkProps>; Heading: BsPrefixRefForwardingComponent<...>; }' is not a valid JSX element type.","category":1,"code":18053,"next":[{"messageText":"Type 'ForwardRefExoticComponent<AlertProps & RefAttributes<HTMLDivElement>> & { Link: BsPrefixRefForwardingComponent<\"a\", AlertLinkProps>; Heading: BsPrefixRefForwardingComponent<...>; }' is not assignable to type '(props: any, deprecatedLegacyContext?: any) => ReactNode'.","category":1,"code":2322,"next":[{"messageText":"Type 'ReactElement<any, string | JSXElementConstructor<any>> | null' is not assignable to type 'ReactNode'.","category":1,"code":2322,"next":[{"messageText":"Type 'ReactElement<any, string | JSXElementConstructor<any>>' is not assignable to type 'ReactNode'.","category":1,"code":2322,"next":[{"messageText":"Property 'children' is missing in type 'ReactElement<any, string | JSXElementConstructor<any>>' but required in type 'ReactPortal'.","category":1,"code":2741,"canonicalHead":{"code":2322,"messageText":"Type 'ReactElement<any, string | JSXElementConstructor<any>>' is not assignable to type 'ReactPortal'."}}]}],"canonicalHead":{"code":2322,"messageText":"Type 'ForwardRefExoticComponent<AlertProps & RefAttributes<HTMLDivElement>> & { Link: BsPrefixRefForwardingComponent<\"a\", AlertLinkProps>; Heading: BsPrefixRefForwardingComponent<...>; }' is not assignable to type '(props: any, deprecatedLegacyContext?: any) => ReactNode'."}}]}]}]},"relatedInformation":[{"file":"../../../testeranto-react/node_modules/@types/react/index.d.ts","start":10658,"length":8,"messageText":"'children' is declared here.","category":3,"code":2728}]},{"start":9246,"length":9,"code":2786,"category":1,"messageText":{"messageText":"'Container' cannot be used as a JSX component.","category":1,"code":2786,"next":[{"messageText":"Its type 'BsPrefixRefForwardingComponent<\"div\", ContainerProps>' is not a valid JSX element type.","category":1,"code":18053,"next":[{"messageText":"Type 'BsPrefixRefForwardingComponent<\"div\", ContainerProps>' is not assignable to type '(props: any, deprecatedLegacyContext?: any) => ReactNode'.","category":1,"code":2322,"next":[{"messageText":"Type 'ReactElement<any, string | JSXElementConstructor<any>> | null' is not assignable to type 'ReactNode'.","category":1,"code":2322,"next":[{"messageText":"Type 'ReactElement<any, string | JSXElementConstructor<any>>' is not assignable to type 'ReactNode'.","category":1,"code":2322,"next":[{"messageText":"Property 'children' is missing in type 'ReactElement<any, string | JSXElementConstructor<any>>' but required in type 'ReactPortal'.","category":1,"code":2741,"canonicalHead":{"code":2322,"messageText":"Type 'ReactElement<any, string | JSXElementConstructor<any>>' is not assignable to type 'ReactPortal'."}}]}],"canonicalHead":{"code":2322,"messageText":"Type 'BsPrefixRefForwardingComponent<\"div\", ContainerProps>' is not assignable to type '(props: any, deprecatedLegacyContext?: any) => ReactNode'."}}]}]}]},"relatedInformation":[{"file":"../../../testeranto-react/node_modules/@types/react/index.d.ts","start":10658,"length":8,"messageText":"'children' is declared here.","category":3,"code":2728}]},{"start":9270,"length":6,"code":2786,"category":1,"messageText":{"messageText":"'NavBar' cannot be used as a JSX component.","category":1,"code":2786,"next":[{"messageText":"Its type 'FC<NavBarProps>' is not a valid JSX element type.","category":1,"code":18053,"next":[{"messageText":"Type 'FunctionComponent<NavBarProps>' is not assignable to type '(props: any, deprecatedLegacyContext?: any) => ReactNode'.","category":1,"code":2322,"next":[{"messageText":"Type 'ReactElement<any, any> | null' is not assignable to type 'ReactNode'.","category":1,"code":2322,"next":[{"messageText":"Type 'ReactElement<any, any>' is not assignable to type 'ReactNode'.","category":1,"code":2322,"next":[{"messageText":"Property 'children' is missing in type 'ReactElement<any, any>' but required in type 'ReactPortal'.","category":1,"code":2741,"canonicalHead":{"code":2322,"messageText":"Type 'ReactElement<any, any>' is not assignable to type 'ReactPortal'."}}]}],"canonicalHead":{"code":2322,"messageText":"Type 'FunctionComponent<NavBarProps>' is not assignable to type '(props: any, deprecatedLegacyContext?: any) => ReactNode'."}}]}]}]},"relatedInformation":[{"file":"../../../testeranto-react/node_modules/@types/react/index.d.ts","start":10658,"length":8,"messageText":"'children' is declared here.","category":3,"code":2728}]},{"start":9343,"length":3,"code":2786,"category":1,"messageText":{"messageText":"'Row' cannot be used as a JSX component.","category":1,"code":2786,"next":[{"messageText":"Its type 'BsPrefixRefForwardingComponent<\"div\", RowProps>' is not a valid JSX element type.","category":1,"code":18053,"next":[{"messageText":"Type 'BsPrefixRefForwardingComponent<\"div\", RowProps>' is not assignable to type '(props: any, deprecatedLegacyContext?: any) => ReactNode'.","category":1,"code":2322,"next":[{"messageText":"Type 'ReactElement<any, string | JSXElementConstructor<any>> | null' is not assignable to type 'ReactNode'.","category":1,"code":2322,"next":[{"messageText":"Type 'ReactElement<any, string | JSXElementConstructor<any>>' is not assignable to type 'ReactNode'.","category":1,"code":2322,"next":[{"messageText":"Property 'children' is missing in type 'ReactElement<any, string | JSXElementConstructor<any>>' but required in type 'ReactPortal'.","category":1,"code":2741,"canonicalHead":{"code":2322,"messageText":"Type 'ReactElement<any, string | JSXElementConstructor<any>>' is not assignable to type 'ReactPortal'."}}]}],"canonicalHead":{"code":2322,"messageText":"Type 'BsPrefixRefForwardingComponent<\"div\", RowProps>' is not assignable to type '(props: any, deprecatedLegacyContext?: any) => ReactNode'."}}]}]}]},"relatedInformation":[{"file":"../../../testeranto-react/node_modules/@types/react/index.d.ts","start":10658,"length":8,"messageText":"'children' is declared here.","category":3,"code":2728}]},{"start":9373,"length":3,"code":2786,"category":1,"messageText":{"messageText":"'Col' cannot be used as a JSX component.","category":1,"code":2786,"next":[{"messageText":"Its type 'BsPrefixRefForwardingComponent<\"div\", ColProps>' is not a valid JSX element type.","category":1,"code":18053,"next":[{"messageText":"Type 'BsPrefixRefForwardingComponent<\"div\", ColProps>' is not assignable to type '(props: any, deprecatedLegacyContext?: any) => ReactNode'.","category":1,"code":2322,"next":[{"messageText":"Type 'ReactElement<any, string | JSXElementConstructor<any>> | null' is not assignable to type 'ReactNode'.","category":1,"code":2322,"next":[{"messageText":"Type 'ReactElement<any, string | JSXElementConstructor<any>>' is not assignable to type 'ReactNode'.","category":1,"code":2322,"next":[{"messageText":"Property 'children' is missing in type 'ReactElement<any, string | JSXElementConstructor<any>>' but required in type 'ReactPortal'.","category":1,"code":2741,"canonicalHead":{"code":2322,"messageText":"Type 'ReactElement<any, string | JSXElementConstructor<any>>' is not assignable to type 'ReactPortal'."}}]}],"canonicalHead":{"code":2322,"messageText":"Type 'BsPrefixRefForwardingComponent<\"div\", ColProps>' is not assignable to type '(props: any, deprecatedLegacyContext?: any) => ReactNode'."}}]}]}]},"relatedInformation":[{"file":"../../../testeranto-react/node_modules/@types/react/index.d.ts","start":10658,"length":8,"messageText":"'children' is declared here.","category":3,"code":2728}]},{"start":9419,"length":3,"code":2786,"category":1,"messageText":{"messageText":"'Nav' cannot be used as a JSX component.","category":1,"code":2786,"next":[{"messageText":"Its type 'BsPrefixRefForwardingComponent<\"div\", NavProps> & { Item: BsPrefixRefForwardingComponent<\"div\", NavItemProps>; Link: BsPrefixRefForwardingComponent<...>; }' is not a valid JSX element type.","category":1,"code":18053,"next":[{"messageText":"Type 'BsPrefixRefForwardingComponent<\"div\", NavProps> & { Item: BsPrefixRefForwardingComponent<\"div\", NavItemProps>; Link: BsPrefixRefForwardingComponent<...>; }' is not assignable to type '(props: any, deprecatedLegacyContext?: any) => ReactNode'.","category":1,"code":2322,"next":[{"messageText":"Type 'ReactElement<any, string | JSXElementConstructor<any>> | null' is not assignable to type 'ReactNode'.","category":1,"code":2322,"next":[{"messageText":"Type 'ReactElement<any, string | JSXElementConstructor<any>>' is not assignable to type 'ReactNode'.","category":1,"code":2322,"next":[{"messageText":"Property 'children' is missing in type 'ReactElement<any, string | JSXElementConstructor<any>>' but required in type 'ReactPortal'.","category":1,"code":2741,"canonicalHead":{"code":2322,"messageText":"Type 'ReactElement<any, string | JSXElementConstructor<any>>' is not assignable to type 'ReactPortal'."}}]}],"canonicalHead":{"code":2322,"messageText":"Type 'BsPrefixRefForwardingComponent<\"div\", NavProps> & { Item: BsPrefixRefForwardingComponent<\"div\", NavItemProps>; Link: BsPrefixRefForwardingComponent<...>; }' is not assignable to type '(props: any, deprecatedLegacyContext?: any) => ReactNode'."}}]}]}]},"relatedInformation":[{"file":"../../../testeranto-react/node_modules/@types/react/index.d.ts","start":10658,"length":8,"messageText":"'children' is declared here.","category":3,"code":2728}]},{"start":9477,"length":8,"code":2786,"category":1,"messageText":{"messageText":"'Nav.Item' cannot be used as a JSX component.","category":1,"code":2786,"next":[{"messageText":"Its type 'BsPrefixRefForwardingComponent<\"div\", NavItemProps>' is not a valid JSX element type.","category":1,"code":18053,"next":[{"messageText":"Type 'BsPrefixRefForwardingComponent<\"div\", NavItemProps>' is not assignable to type '(props: any, deprecatedLegacyContext?: any) => ReactNode'.","category":1,"code":2322,"next":[{"messageText":"Type 'ReactElement<any, string | JSXElementConstructor<any>> | null' is not assignable to type 'ReactNode'.","category":1,"code":2322,"next":[{"messageText":"Type 'ReactElement<any, string | JSXElementConstructor<any>>' is not assignable to type 'ReactNode'.","category":1,"code":2322,"next":[{"messageText":"Property 'children' is missing in type 'ReactElement<any, string | JSXElementConstructor<any>>' but required in type 'ReactPortal'.","category":1,"code":2741,"canonicalHead":{"code":2322,"messageText":"Type 'ReactElement<any, string | JSXElementConstructor<any>>' is not assignable to type 'ReactPortal'."}}]}],"canonicalHead":{"code":2322,"messageText":"Type 'BsPrefixRefForwardingComponent<\"div\", NavItemProps>' is not assignable to type '(props: any, deprecatedLegacyContext?: any) => ReactNode'."}}]}]}]},"relatedInformation":[{"file":"../../../testeranto-react/node_modules/@types/react/index.d.ts","start":10658,"length":8,"messageText":"'children' is declared here.","category":3,"code":2728}]},{"start":9502,"length":8,"code":2786,"category":1,"messageText":{"messageText":"'Nav.Link' cannot be used as a JSX component.","category":1,"code":2786,"next":[{"messageText":"Its type 'BsPrefixRefForwardingComponent<\"a\", NavLinkProps>' is not a valid JSX element type.","category":1,"code":18053,"next":[{"messageText":"Type 'BsPrefixRefForwardingComponent<\"a\", NavLinkProps>' is not assignable to type '(props: any, deprecatedLegacyContext?: any) => ReactNode'.","category":1,"code":2322,"next":[{"messageText":"Type 'ReactElement<any, string | JSXElementConstructor<any>> | null' is not assignable to type 'ReactNode'.","category":1,"code":2322,"next":[{"messageText":"Type 'ReactElement<any, string | JSXElementConstructor<any>>' is not assignable to type 'ReactNode'.","category":1,"code":2322,"next":[{"messageText":"Property 'children' is missing in type 'ReactElement<any, string | JSXElementConstructor<any>>' but required in type 'ReactPortal'.","category":1,"code":2741,"canonicalHead":{"code":2322,"messageText":"Type 'ReactElement<any, string | JSXElementConstructor<any>>' is not assignable to type 'ReactPortal'."}}]}],"canonicalHead":{"code":2322,"messageText":"Type 'BsPrefixRefForwardingComponent<\"a\", NavLinkProps>' is not assignable to type '(props: any, deprecatedLegacyContext?: any) => ReactNode'."}}]}]}]},"relatedInformation":[{"file":"../../../testeranto-react/node_modules/@types/react/index.d.ts","start":10658,"length":8,"messageText":"'children' is declared here.","category":3,"code":2728}]},{"start":9889,"length":5,"code":2786,"category":1,"messageText":{"messageText":"'Badge' cannot be used as a JSX component.","category":1,"code":2786,"next":[{"messageText":"Its type 'BsPrefixRefForwardingComponent<\"span\", BadgeProps>' is not a valid JSX element type.","category":1,"code":18053,"next":[{"messageText":"Type 'BsPrefixRefForwardingComponent<\"span\", BadgeProps>' is not assignable to type '(props: any, deprecatedLegacyContext?: any) => ReactNode'.","category":1,"code":2322,"next":[{"messageText":"Type 'ReactElement<any, string | JSXElementConstructor<any>> | null' is not assignable to type 'ReactNode'.","category":1,"code":2322,"next":[{"messageText":"Type 'ReactElement<any, string | JSXElementConstructor<any>>' is not assignable to type 'ReactNode'.","category":1,"code":2322,"next":[{"messageText":"Property 'children' is missing in type 'ReactElement<any, string | JSXElementConstructor<any>>' but required in type 'ReactPortal'.","category":1,"code":2741,"canonicalHead":{"code":2322,"messageText":"Type 'ReactElement<any, string | JSXElementConstructor<any>>' is not assignable to type 'ReactPortal'."}}]}],"canonicalHead":{"code":2322,"messageText":"Type 'BsPrefixRefForwardingComponent<\"span\", BadgeProps>' is not assignable to type '(props: any, deprecatedLegacyContext?: any) => ReactNode'."}}]}]}]},"relatedInformation":[{"file":"../../../testeranto-react/node_modules/@types/react/index.d.ts","start":10658,"length":8,"messageText":"'children' is declared here.","category":3,"code":2728}]},{"start":10027,"length":5,"code":2786,"category":1,"messageText":{"messageText":"'Badge' cannot be used as a JSX component.","category":1,"code":2786,"next":[{"messageText":"Its type 'BsPrefixRefForwardingComponent<\"span\", BadgeProps>' is not a valid JSX element type.","category":1,"code":18053,"next":[{"messageText":"Type 'BsPrefixRefForwardingComponent<\"span\", BadgeProps>' is not assignable to type '(props: any, deprecatedLegacyContext?: any) => ReactNode'.","category":1,"code":2322,"next":[{"messageText":"Type 'ReactElement<any, string | JSXElementConstructor<any>> | null' is not assignable to type 'ReactNode'.","category":1,"code":2322,"next":[{"messageText":"Type 'ReactElement<any, string | JSXElementConstructor<any>>' is not assignable to type 'ReactNode'.","category":1,"code":2322,"next":[{"messageText":"Property 'children' is missing in type 'ReactElement<any, string | JSXElementConstructor<any>>' but required in type 'ReactPortal'.","category":1,"code":2741,"canonicalHead":{"code":2322,"messageText":"Type 'ReactElement<any, string | JSXElementConstructor<any>>' is not assignable to type 'ReactPortal'."}}]}],"canonicalHead":{"code":2322,"messageText":"Type 'BsPrefixRefForwardingComponent<\"span\", BadgeProps>' is not assignable to type '(props: any, deprecatedLegacyContext?: any) => ReactNode'."}}]}]}]},"relatedInformation":[{"file":"../../../testeranto-react/node_modules/@types/react/index.d.ts","start":10658,"length":8,"messageText":"'children' is declared here.","category":3,"code":2728}]},{"start":10114,"length":5,"code":2786,"category":1,"messageText":{"messageText":"'Badge' cannot be used as a JSX component.","category":1,"code":2786,"next":[{"messageText":"Its type 'BsPrefixRefForwardingComponent<\"span\", BadgeProps>' is not a valid JSX element type.","category":1,"code":18053,"next":[{"messageText":"Type 'BsPrefixRefForwardingComponent<\"span\", BadgeProps>' is not assignable to type '(props: any, deprecatedLegacyContext?: any) => ReactNode'.","category":1,"code":2322,"next":[{"messageText":"Type 'ReactElement<any, string | JSXElementConstructor<any>> | null' is not assignable to type 'ReactNode'.","category":1,"code":2322,"next":[{"messageText":"Type 'ReactElement<any, string | JSXElementConstructor<any>>' is not assignable to type 'ReactNode'.","category":1,"code":2322,"next":[{"messageText":"Property 'children' is missing in type 'ReactElement<any, string | JSXElementConstructor<any>>' but required in type 'ReactPortal'.","category":1,"code":2741,"canonicalHead":{"code":2322,"messageText":"Type 'ReactElement<any, string | JSXElementConstructor<any>>' is not assignable to type 'ReactPortal'."}}]}],"canonicalHead":{"code":2322,"messageText":"Type 'BsPrefixRefForwardingComponent<\"span\", BadgeProps>' is not assignable to type '(props: any, deprecatedLegacyContext?: any) => ReactNode'."}}]}]}]},"relatedInformation":[{"file":"../../../testeranto-react/node_modules/@types/react/index.d.ts","start":10658,"length":8,"messageText":"'children' is declared here.","category":3,"code":2728}]},{"start":10250,"length":8,"code":2786,"category":1,"messageText":{"messageText":"'Nav.Item' cannot be used as a JSX component.","category":1,"code":2786,"next":[{"messageText":"Its type 'BsPrefixRefForwardingComponent<\"div\", NavItemProps>' is not a valid JSX element type.","category":1,"code":18053,"next":[{"messageText":"Type 'BsPrefixRefForwardingComponent<\"div\", NavItemProps>' is not assignable to type '(props: any, deprecatedLegacyContext?: any) => ReactNode'.","category":1,"code":2322,"next":[{"messageText":"Type 'ReactElement<any, string | JSXElementConstructor<any>> | null' is not assignable to type 'ReactNode'.","category":1,"code":2322,"next":[{"messageText":"Type 'ReactElement<any, string | JSXElementConstructor<any>>' is not assignable to type 'ReactNode'.","category":1,"code":2322,"next":[{"messageText":"Property 'children' is missing in type 'ReactElement<any, string | JSXElementConstructor<any>>' but required in type 'ReactPortal'.","category":1,"code":2741,"canonicalHead":{"code":2322,"messageText":"Type 'ReactElement<any, string | JSXElementConstructor<any>>' is not assignable to type 'ReactPortal'."}}]}],"canonicalHead":{"code":2322,"messageText":"Type 'BsPrefixRefForwardingComponent<\"div\", NavItemProps>' is not assignable to type '(props: any, deprecatedLegacyContext?: any) => ReactNode'."}}]}]}]},"relatedInformation":[{"file":"../../../testeranto-react/node_modules/@types/react/index.d.ts","start":10658,"length":8,"messageText":"'children' is declared here.","category":3,"code":2728}]},{"start":10275,"length":8,"code":2786,"category":1,"messageText":{"messageText":"'Nav.Link' cannot be used as a JSX component.","category":1,"code":2786,"next":[{"messageText":"Its type 'BsPrefixRefForwardingComponent<\"a\", NavLinkProps>' is not a valid JSX element type.","category":1,"code":18053,"next":[{"messageText":"Type 'BsPrefixRefForwardingComponent<\"a\", NavLinkProps>' is not assignable to type '(props: any, deprecatedLegacyContext?: any) => ReactNode'.","category":1,"code":2322,"next":[{"messageText":"Type 'ReactElement<any, string | JSXElementConstructor<any>> | null' is not assignable to type 'ReactNode'.","category":1,"code":2322,"next":[{"messageText":"Type 'ReactElement<any, string | JSXElementConstructor<any>>' is not assignable to type 'ReactNode'.","category":1,"code":2322,"next":[{"messageText":"Property 'children' is missing in type 'ReactElement<any, string | JSXElementConstructor<any>>' but required in type 'ReactPortal'.","category":1,"code":2741,"canonicalHead":{"code":2322,"messageText":"Type 'ReactElement<any, string | JSXElementConstructor<any>>' is not assignable to type 'ReactPortal'."}}]}],"canonicalHead":{"code":2322,"messageText":"Type 'BsPrefixRefForwardingComponent<\"a\", NavLinkProps>' is not assignable to type '(props: any, deprecatedLegacyContext?: any) => ReactNode'."}}]}]}]},"relatedInformation":[{"file":"../../../testeranto-react/node_modules/@types/react/index.d.ts","start":10658,"length":8,"messageText":"'children' is declared here.","category":3,"code":2728}]},{"start":10574,"length":5,"code":2786,"category":1,"messageText":{"messageText":"'Badge' cannot be used as a JSX component.","category":1,"code":2786,"next":[{"messageText":"Its type 'BsPrefixRefForwardingComponent<\"span\", BadgeProps>' is not a valid JSX element type.","category":1,"code":18053,"next":[{"messageText":"Type 'BsPrefixRefForwardingComponent<\"span\", BadgeProps>' is not assignable to type '(props: any, deprecatedLegacyContext?: any) => ReactNode'.","category":1,"code":2322,"next":[{"messageText":"Type 'ReactElement<any, string | JSXElementConstructor<any>> | null' is not assignable to type 'ReactNode'.","category":1,"code":2322,"next":[{"messageText":"Type 'ReactElement<any, string | JSXElementConstructor<any>>' is not assignable to type 'ReactNode'.","category":1,"code":2322,"next":[{"messageText":"Property 'children' is missing in type 'ReactElement<any, string | JSXElementConstructor<any>>' but required in type 'ReactPortal'.","category":1,"code":2741,"canonicalHead":{"code":2322,"messageText":"Type 'ReactElement<any, string | JSXElementConstructor<any>>' is not assignable to type 'ReactPortal'."}}]}],"canonicalHead":{"code":2322,"messageText":"Type 'BsPrefixRefForwardingComponent<\"span\", BadgeProps>' is not assignable to type '(props: any, deprecatedLegacyContext?: any) => ReactNode'."}}]}]}]},"relatedInformation":[{"file":"../../../testeranto-react/node_modules/@types/react/index.d.ts","start":10658,"length":8,"messageText":"'children' is declared here.","category":3,"code":2728}]},{"start":10697,"length":5,"code":2786,"category":1,"messageText":{"messageText":"'Badge' cannot be used as a JSX component.","category":1,"code":2786,"next":[{"messageText":"Its type 'BsPrefixRefForwardingComponent<\"span\", BadgeProps>' is not a valid JSX element type.","category":1,"code":18053,"next":[{"messageText":"Type 'BsPrefixRefForwardingComponent<\"span\", BadgeProps>' is not assignable to type '(props: any, deprecatedLegacyContext?: any) => ReactNode'.","category":1,"code":2322,"next":[{"messageText":"Type 'ReactElement<any, string | JSXElementConstructor<any>> | null' is not assignable to type 'ReactNode'.","category":1,"code":2322,"next":[{"messageText":"Type 'ReactElement<any, string | JSXElementConstructor<any>>' is not assignable to type 'ReactNode'.","category":1,"code":2322,"next":[{"messageText":"Property 'children' is missing in type 'ReactElement<any, string | JSXElementConstructor<any>>' but required in type 'ReactPortal'.","category":1,"code":2741,"canonicalHead":{"code":2322,"messageText":"Type 'ReactElement<any, string | JSXElementConstructor<any>>' is not assignable to type 'ReactPortal'."}}]}],"canonicalHead":{"code":2322,"messageText":"Type 'BsPrefixRefForwardingComponent<\"span\", BadgeProps>' is not assignable to type '(props: any, deprecatedLegacyContext?: any) => ReactNode'."}}]}]}]},"relatedInformation":[{"file":"../../../testeranto-react/node_modules/@types/react/index.d.ts","start":10658,"length":8,"messageText":"'children' is declared here.","category":3,"code":2728}]},{"start":10828,"length":8,"code":2786,"category":1,"messageText":{"messageText":"'Nav.Item' cannot be used as a JSX component.","category":1,"code":2786,"next":[{"messageText":"Its type 'BsPrefixRefForwardingComponent<\"div\", NavItemProps>' is not a valid JSX element type.","category":1,"code":18053,"next":[{"messageText":"Type 'BsPrefixRefForwardingComponent<\"div\", NavItemProps>' is not assignable to type '(props: any, deprecatedLegacyContext?: any) => ReactNode'.","category":1,"code":2322,"next":[{"messageText":"Type 'ReactElement<any, string | JSXElementConstructor<any>> | null' is not assignable to type 'ReactNode'.","category":1,"code":2322,"next":[{"messageText":"Type 'ReactElement<any, string | JSXElementConstructor<any>>' is not assignable to type 'ReactNode'.","category":1,"code":2322,"next":[{"messageText":"Property 'children' is missing in type 'ReactElement<any, string | JSXElementConstructor<any>>' but required in type 'ReactPortal'.","category":1,"code":2741,"canonicalHead":{"code":2322,"messageText":"Type 'ReactElement<any, string | JSXElementConstructor<any>>' is not assignable to type 'ReactPortal'."}}]}],"canonicalHead":{"code":2322,"messageText":"Type 'BsPrefixRefForwardingComponent<\"div\", NavItemProps>' is not assignable to type '(props: any, deprecatedLegacyContext?: any) => ReactNode'."}}]}]}]},"relatedInformation":[{"file":"../../../testeranto-react/node_modules/@types/react/index.d.ts","start":10658,"length":8,"messageText":"'children' is declared here.","category":3,"code":2728}]},{"start":10853,"length":8,"code":2786,"category":1,"messageText":{"messageText":"'Nav.Link' cannot be used as a JSX component.","category":1,"code":2786,"next":[{"messageText":"Its type 'BsPrefixRefForwardingComponent<\"a\", NavLinkProps>' is not a valid JSX element type.","category":1,"code":18053,"next":[{"messageText":"Type 'BsPrefixRefForwardingComponent<\"a\", NavLinkProps>' is not assignable to type '(props: any, deprecatedLegacyContext?: any) => ReactNode'.","category":1,"code":2322,"next":[{"messageText":"Type 'ReactElement<any, string | JSXElementConstructor<any>> | null' is not assignable to type 'ReactNode'.","category":1,"code":2322,"next":[{"messageText":"Type 'ReactElement<any, string | JSXElementConstructor<any>>' is not assignable to type 'ReactNode'.","category":1,"code":2322,"next":[{"messageText":"Property 'children' is missing in type 'ReactElement<any, string | JSXElementConstructor<any>>' but required in type 'ReactPortal'.","category":1,"code":2741,"canonicalHead":{"code":2322,"messageText":"Type 'ReactElement<any, string | JSXElementConstructor<any>>' is not assignable to type 'ReactPortal'."}}]}],"canonicalHead":{"code":2322,"messageText":"Type 'BsPrefixRefForwardingComponent<\"a\", NavLinkProps>' is not assignable to type '(props: any, deprecatedLegacyContext?: any) => ReactNode'."}}]}]}]},"relatedInformation":[{"file":"../../../testeranto-react/node_modules/@types/react/index.d.ts","start":10658,"length":8,"messageText":"'children' is declared here.","category":3,"code":2728}]},{"start":11148,"length":5,"code":2786,"category":1,"messageText":{"messageText":"'Badge' cannot be used as a JSX component.","category":1,"code":2786,"next":[{"messageText":"Its type 'BsPrefixRefForwardingComponent<\"span\", BadgeProps>' is not a valid JSX element type.","category":1,"code":18053,"next":[{"messageText":"Type 'BsPrefixRefForwardingComponent<\"span\", BadgeProps>' is not assignable to type '(props: any, deprecatedLegacyContext?: any) => ReactNode'.","category":1,"code":2322,"next":[{"messageText":"Type 'ReactElement<any, string | JSXElementConstructor<any>> | null' is not assignable to type 'ReactNode'.","category":1,"code":2322,"next":[{"messageText":"Type 'ReactElement<any, string | JSXElementConstructor<any>>' is not assignable to type 'ReactNode'.","category":1,"code":2322,"next":[{"messageText":"Property 'children' is missing in type 'ReactElement<any, string | JSXElementConstructor<any>>' but required in type 'ReactPortal'.","category":1,"code":2741,"canonicalHead":{"code":2322,"messageText":"Type 'ReactElement<any, string | JSXElementConstructor<any>>' is not assignable to type 'ReactPortal'."}}]}],"canonicalHead":{"code":2322,"messageText":"Type 'BsPrefixRefForwardingComponent<\"span\", BadgeProps>' is not assignable to type '(props: any, deprecatedLegacyContext?: any) => ReactNode'."}}]}]}]},"relatedInformation":[{"file":"../../../testeranto-react/node_modules/@types/react/index.d.ts","start":10658,"length":8,"messageText":"'children' is declared here.","category":3,"code":2728}]},{"start":11269,"length":5,"code":2786,"category":1,"messageText":{"messageText":"'Badge' cannot be used as a JSX component.","category":1,"code":2786,"next":[{"messageText":"Its type 'BsPrefixRefForwardingComponent<\"span\", BadgeProps>' is not a valid JSX element type.","category":1,"code":18053,"next":[{"messageText":"Type 'BsPrefixRefForwardingComponent<\"span\", BadgeProps>' is not assignable to type '(props: any, deprecatedLegacyContext?: any) => ReactNode'.","category":1,"code":2322,"next":[{"messageText":"Type 'ReactElement<any, string | JSXElementConstructor<any>> | null' is not assignable to type 'ReactNode'.","category":1,"code":2322,"next":[{"messageText":"Type 'ReactElement<any, string | JSXElementConstructor<any>>' is not assignable to type 'ReactNode'.","category":1,"code":2322,"next":[{"messageText":"Property 'children' is missing in type 'ReactElement<any, string | JSXElementConstructor<any>>' but required in type 'ReactPortal'.","category":1,"code":2741,"canonicalHead":{"code":2322,"messageText":"Type 'ReactElement<any, string | JSXElementConstructor<any>>' is not assignable to type 'ReactPortal'."}}]}],"canonicalHead":{"code":2322,"messageText":"Type 'BsPrefixRefForwardingComponent<\"span\", BadgeProps>' is not assignable to type '(props: any, deprecatedLegacyContext?: any) => ReactNode'."}}]}]}]},"relatedInformation":[{"file":"../../../testeranto-react/node_modules/@types/react/index.d.ts","start":10658,"length":8,"messageText":"'children' is declared here.","category":3,"code":2728}]},{"start":11400,"length":8,"code":2786,"category":1,"messageText":{"messageText":"'Nav.Item' cannot be used as a JSX component.","category":1,"code":2786,"next":[{"messageText":"Its type 'BsPrefixRefForwardingComponent<\"div\", NavItemProps>' is not a valid JSX element type.","category":1,"code":18053,"next":[{"messageText":"Type 'BsPrefixRefForwardingComponent<\"div\", NavItemProps>' is not assignable to type '(props: any, deprecatedLegacyContext?: any) => ReactNode'.","category":1,"code":2322,"next":[{"messageText":"Type 'ReactElement<any, string | JSXElementConstructor<any>> | null' is not assignable to type 'ReactNode'.","category":1,"code":2322,"next":[{"messageText":"Type 'ReactElement<any, string | JSXElementConstructor<any>>' is not assignable to type 'ReactNode'.","category":1,"code":2322,"next":[{"messageText":"Property 'children' is missing in type 'ReactElement<any, string | JSXElementConstructor<any>>' but required in type 'ReactPortal'.","category":1,"code":2741,"canonicalHead":{"code":2322,"messageText":"Type 'ReactElement<any, string | JSXElementConstructor<any>>' is not assignable to type 'ReactPortal'."}}]}],"canonicalHead":{"code":2322,"messageText":"Type 'BsPrefixRefForwardingComponent<\"div\", NavItemProps>' is not assignable to type '(props: any, deprecatedLegacyContext?: any) => ReactNode'."}}]}]}]},"relatedInformation":[{"file":"../../../testeranto-react/node_modules/@types/react/index.d.ts","start":10658,"length":8,"messageText":"'children' is declared here.","category":3,"code":2728}]},{"start":11425,"length":8,"code":2786,"category":1,"messageText":{"messageText":"'Nav.Link' cannot be used as a JSX component.","category":1,"code":2786,"next":[{"messageText":"Its type 'BsPrefixRefForwardingComponent<\"a\", NavLinkProps>' is not a valid JSX element type.","category":1,"code":18053,"next":[{"messageText":"Type 'BsPrefixRefForwardingComponent<\"a\", NavLinkProps>' is not assignable to type '(props: any, deprecatedLegacyContext?: any) => ReactNode'.","category":1,"code":2322,"next":[{"messageText":"Type 'ReactElement<any, string | JSXElementConstructor<any>> | null' is not assignable to type 'ReactNode'.","category":1,"code":2322,"next":[{"messageText":"Type 'ReactElement<any, string | JSXElementConstructor<any>>' is not assignable to type 'ReactNode'.","category":1,"code":2322,"next":[{"messageText":"Property 'children' is missing in type 'ReactElement<any, string | JSXElementConstructor<any>>' but required in type 'ReactPortal'.","category":1,"code":2741,"canonicalHead":{"code":2322,"messageText":"Type 'ReactElement<any, string | JSXElementConstructor<any>>' is not assignable to type 'ReactPortal'."}}]}],"canonicalHead":{"code":2322,"messageText":"Type 'BsPrefixRefForwardingComponent<\"a\", NavLinkProps>' is not assignable to type '(props: any, deprecatedLegacyContext?: any) => ReactNode'."}}]}]}]},"relatedInformation":[{"file":"../../../testeranto-react/node_modules/@types/react/index.d.ts","start":10658,"length":8,"messageText":"'children' is declared here.","category":3,"code":2728}]},{"start":11724,"length":5,"code":2786,"category":1,"messageText":{"messageText":"'Badge' cannot be used as a JSX component.","category":1,"code":2786,"next":[{"messageText":"Its type 'BsPrefixRefForwardingComponent<\"span\", BadgeProps>' is not a valid JSX element type.","category":1,"code":18053,"next":[{"messageText":"Type 'BsPrefixRefForwardingComponent<\"span\", BadgeProps>' is not assignable to type '(props: any, deprecatedLegacyContext?: any) => ReactNode'.","category":1,"code":2322,"next":[{"messageText":"Type 'ReactElement<any, string | JSXElementConstructor<any>> | null' is not assignable to type 'ReactNode'.","category":1,"code":2322,"next":[{"messageText":"Type 'ReactElement<any, string | JSXElementConstructor<any>>' is not assignable to type 'ReactNode'.","category":1,"code":2322,"next":[{"messageText":"Property 'children' is missing in type 'ReactElement<any, string | JSXElementConstructor<any>>' but required in type 'ReactPortal'.","category":1,"code":2741,"canonicalHead":{"code":2322,"messageText":"Type 'ReactElement<any, string | JSXElementConstructor<any>>' is not assignable to type 'ReactPortal'."}}]}],"canonicalHead":{"code":2322,"messageText":"Type 'BsPrefixRefForwardingComponent<\"span\", BadgeProps>' is not assignable to type '(props: any, deprecatedLegacyContext?: any) => ReactNode'."}}]}]}]},"relatedInformation":[{"file":"../../../testeranto-react/node_modules/@types/react/index.d.ts","start":10658,"length":8,"messageText":"'children' is declared here.","category":3,"code":2728}]},{"start":11847,"length":5,"code":2786,"category":1,"messageText":{"messageText":"'Badge' cannot be used as a JSX component.","category":1,"code":2786,"next":[{"messageText":"Its type 'BsPrefixRefForwardingComponent<\"span\", BadgeProps>' is not a valid JSX element type.","category":1,"code":18053,"next":[{"messageText":"Type 'BsPrefixRefForwardingComponent<\"span\", BadgeProps>' is not assignable to type '(props: any, deprecatedLegacyContext?: any) => ReactNode'.","category":1,"code":2322,"next":[{"messageText":"Type 'ReactElement<any, string | JSXElementConstructor<any>> | null' is not assignable to type 'ReactNode'.","category":1,"code":2322,"next":[{"messageText":"Type 'ReactElement<any, string | JSXElementConstructor<any>>' is not assignable to type 'ReactNode'.","category":1,"code":2322,"next":[{"messageText":"Property 'children' is missing in type 'ReactElement<any, string | JSXElementConstructor<any>>' but required in type 'ReactPortal'.","category":1,"code":2741,"canonicalHead":{"code":2322,"messageText":"Type 'ReactElement<any, string | JSXElementConstructor<any>>' is not assignable to type 'ReactPortal'."}}]}],"canonicalHead":{"code":2322,"messageText":"Type 'BsPrefixRefForwardingComponent<\"span\", BadgeProps>' is not assignable to type '(props: any, deprecatedLegacyContext?: any) => ReactNode'."}}]}]}]},"relatedInformation":[{"file":"../../../testeranto-react/node_modules/@types/react/index.d.ts","start":10658,"length":8,"messageText":"'children' is declared here.","category":3,"code":2728}]},{"start":12006,"length":3,"code":2786,"category":1,"messageText":{"messageText":"'Col' cannot be used as a JSX component.","category":1,"code":2786,"next":[{"messageText":"Its type 'BsPrefixRefForwardingComponent<\"div\", ColProps>' is not a valid JSX element type.","category":1,"code":18053,"next":[{"messageText":"Type 'BsPrefixRefForwardingComponent<\"div\", ColProps>' is not assignable to type '(props: any, deprecatedLegacyContext?: any) => ReactNode'.","category":1,"code":2322,"next":[{"messageText":"Type 'ReactElement<any, string | JSXElementConstructor<any>> | null' is not assignable to type 'ReactNode'.","category":1,"code":2322,"next":[{"messageText":"Type 'ReactElement<any, string | JSXElementConstructor<any>>' is not assignable to type 'ReactNode'.","category":1,"code":2322,"next":[{"messageText":"Property 'children' is missing in type 'ReactElement<any, string | JSXElementConstructor<any>>' but required in type 'ReactPortal'.","category":1,"code":2741,"canonicalHead":{"code":2322,"messageText":"Type 'ReactElement<any, string | JSXElementConstructor<any>>' is not assignable to type 'ReactPortal'."}}]}],"canonicalHead":{"code":2322,"messageText":"Type 'BsPrefixRefForwardingComponent<\"div\", ColProps>' is not assignable to type '(props: any, deprecatedLegacyContext?: any) => ReactNode'."}}]}]}]},"relatedInformation":[{"file":"../../../testeranto-react/node_modules/@types/react/index.d.ts","start":10658,"length":8,"messageText":"'children' is declared here.","category":3,"code":2728}]},{"start":12104,"length":5,"code":2786,"category":1,"messageText":{"messageText":"'Table' cannot be used as a JSX component.","category":1,"code":2786,"next":[{"messageText":"Its type 'ForwardRefExoticComponent<TableProps & RefAttributes<HTMLTableElement>>' is not a valid JSX element type.","category":1,"code":18053,"next":[{"messageText":"Type 'ForwardRefExoticComponent<TableProps & RefAttributes<HTMLTableElement>>' is not assignable to type '(props: any, deprecatedLegacyContext?: any) => ReactNode'.","category":1,"code":2322,"next":[{"messageText":"Type 'ReactElement<any, string | JSXElementConstructor<any>> | null' is not assignable to type 'ReactNode'.","category":1,"code":2322,"next":[{"messageText":"Type 'ReactElement<any, string | JSXElementConstructor<any>>' is not assignable to type 'ReactNode'.","category":1,"code":2322,"next":[{"messageText":"Property 'children' is missing in type 'ReactElement<any, string | JSXElementConstructor<any>>' but required in type 'ReactPortal'.","category":1,"code":2741,"canonicalHead":{"code":2322,"messageText":"Type 'ReactElement<any, string | JSXElementConstructor<any>>' is not assignable to type 'ReactPortal'."}}]}],"canonicalHead":{"code":2322,"messageText":"Type 'ForwardRefExoticComponent<TableProps & RefAttributes<HTMLTableElement>>' is not assignable to type '(props: any, deprecatedLegacyContext?: any) => ReactNode'."}}]}]}]},"relatedInformation":[{"file":"../../../testeranto-react/node_modules/@types/react/index.d.ts","start":10658,"length":8,"messageText":"'children' is declared here.","category":3,"code":2728}]},{"start":12878,"length":5,"code":2786,"category":1,"messageText":{"messageText":"'Badge' cannot be used as a JSX component.","category":1,"code":2786,"next":[{"messageText":"Its type 'BsPrefixRefForwardingComponent<\"span\", BadgeProps>' is not a valid JSX element type.","category":1,"code":18053,"next":[{"messageText":"Type 'BsPrefixRefForwardingComponent<\"span\", BadgeProps>' is not assignable to type '(props: any, deprecatedLegacyContext?: any) => ReactNode'.","category":1,"code":2322,"next":[{"messageText":"Type 'ReactElement<any, string | JSXElementConstructor<any>> | null' is not assignable to type 'ReactNode'.","category":1,"code":2322,"next":[{"messageText":"Type 'ReactElement<any, string | JSXElementConstructor<any>>' is not assignable to type 'ReactNode'.","category":1,"code":2322,"next":[{"messageText":"Property 'children' is missing in type 'ReactElement<any, string | JSXElementConstructor<any>>' but required in type 'ReactPortal'.","category":1,"code":2741,"canonicalHead":{"code":2322,"messageText":"Type 'ReactElement<any, string | JSXElementConstructor<any>>' is not assignable to type 'ReactPortal'."}}]}],"canonicalHead":{"code":2322,"messageText":"Type 'BsPrefixRefForwardingComponent<\"span\", BadgeProps>' is not assignable to type '(props: any, deprecatedLegacyContext?: any) => ReactNode'."}}]}]}]},"relatedInformation":[{"file":"../../../testeranto-react/node_modules/@types/react/index.d.ts","start":10658,"length":8,"messageText":"'children' is declared here.","category":3,"code":2728}]},{"start":13071,"length":15,"code":2786,"category":1,"messageText":{"messageText":"'TestStatusBadge' cannot be used as a JSX component.","category":1,"code":2786,"next":[{"messageText":"Its type '(props: TestStatusBadgeProps) => JSX.Element' is not a valid JSX element type.","category":1,"code":18053,"next":[{"messageText":"Type '(props: TestStatusBadgeProps) => JSX.Element' is not assignable to type '(props: any, deprecatedLegacyContext?: any) => ReactNode'.","category":1,"code":2322,"next":[{"messageText":"Type 'Element' is not assignable to type 'ReactNode'.","category":1,"code":2322,"next":[{"messageText":"Property 'children' is missing in type 'Element' but required in type 'ReactPortal'.","category":1,"code":2741,"canonicalHead":{"code":2322,"messageText":"Type 'Element' is not assignable to type 'ReactPortal'."}}],"canonicalHead":{"code":2322,"messageText":"Type '(props: TestStatusBadgeProps) => JSX.Element' is not assignable to type '(props: any, deprecatedLegacyContext?: any) => ReactNode'."}}]}]}]},"relatedInformation":[{"file":"../../../testeranto-react/node_modules/@types/react/index.d.ts","start":10658,"length":8,"messageText":"'children' is declared here.","category":3,"code":2728}]},{"start":14160,"length":14,"code":2786,"category":1,"messageText":{"messageText":"'BuildLogViewer' cannot be used as a JSX component.","category":1,"code":2786,"next":[{"messageText":"Its type '({ logs, runtime }: { logs: any; runtime: string; }) => JSX.Element' is not a valid JSX element type.","category":1,"code":18053,"next":[{"messageText":"Type '({ logs, runtime }: { logs: any; runtime: string; }) => JSX.Element' is not assignable to type '(props: any, deprecatedLegacyContext?: any) => ReactNode'.","category":1,"code":2322,"next":[{"messageText":"Type 'Element' is not assignable to type 'ReactNode'.","category":1,"code":2322,"next":[{"messageText":"Property 'children' is missing in type 'Element' but required in type 'ReactPortal'.","category":1,"code":2741,"canonicalHead":{"code":2322,"messageText":"Type 'Element' is not assignable to type 'ReactPortal'."}}],"canonicalHead":{"code":2322,"messageText":"Type '({ logs, runtime }: { logs: any; runtime: string; }) => JSX.Element' is not assignable to type '(props: any, deprecatedLegacyContext?: any) => ReactNode'."}}]}]}]},"relatedInformation":[{"file":"../../../testeranto-react/node_modules/@types/react/index.d.ts","start":10658,"length":8,"messageText":"'children' is declared here.","category":3,"code":2728}]},{"start":14264,"length":14,"code":2786,"category":1,"messageText":{"messageText":"'BuildLogViewer' cannot be used as a JSX component.","category":1,"code":2786,"next":[{"messageText":"Its type '({ logs, runtime }: { logs: any; runtime: string; }) => JSX.Element' is not a valid JSX element type.","category":1,"code":18053,"next":[{"messageText":"Type '({ logs, runtime }: { logs: any; runtime: string; }) => JSX.Element' is not assignable to type '(props: any, deprecatedLegacyContext?: any) => ReactNode'.","category":1,"code":2322,"next":[{"messageText":"Type 'Element' is not assignable to type 'ReactNode'.","category":1,"code":2322,"next":[{"messageText":"Property 'children' is missing in type 'Element' but required in type 'ReactPortal'.","category":1,"code":2741,"canonicalHead":{"code":2322,"messageText":"Type 'Element' is not assignable to type 'ReactPortal'."}}],"canonicalHead":{"code":2322,"messageText":"Type '({ logs, runtime }: { logs: any; runtime: string; }) => JSX.Element' is not assignable to type '(props: any, deprecatedLegacyContext?: any) => ReactNode'."}}]}]}]},"relatedInformation":[{"file":"../../../testeranto-react/node_modules/@types/react/index.d.ts","start":10658,"length":8,"messageText":"'children' is declared here.","category":3,"code":2728}]},{"start":14367,"length":14,"code":2786,"category":1,"messageText":{"messageText":"'BuildLogViewer' cannot be used as a JSX component.","category":1,"code":2786,"next":[{"messageText":"Its type '({ logs, runtime }: { logs: any; runtime: string; }) => JSX.Element' is not a valid JSX element type.","category":1,"code":18053,"next":[{"messageText":"Type '({ logs, runtime }: { logs: any; runtime: string; }) => JSX.Element' is not assignable to type '(props: any, deprecatedLegacyContext?: any) => ReactNode'.","category":1,"code":2322,"next":[{"messageText":"Type 'Element' is not assignable to type 'ReactNode'.","category":1,"code":2322,"next":[{"messageText":"Property 'children' is missing in type 'Element' but required in type 'ReactPortal'.","category":1,"code":2741,"canonicalHead":{"code":2322,"messageText":"Type 'Element' is not assignable to type 'ReactPortal'."}}],"canonicalHead":{"code":2322,"messageText":"Type '({ logs, runtime }: { logs: any; runtime: string; }) => JSX.Element' is not assignable to type '(props: any, deprecatedLegacyContext?: any) => ReactNode'."}}]}]}]},"relatedInformation":[{"file":"../../../testeranto-react/node_modules/@types/react/index.d.ts","start":10658,"length":8,"messageText":"'children' is declared here.","category":3,"code":2728}]}]],[767,[{"start":989,"length":514,"code":2322,"category":1,"messageText":{"messageText":"Type '{ route: string; setRoute: () => void; navigate: () => void; projectName: string; testName: string; decodedTestPath: string; runtime: string; testData: { name: string; givens: { name: string; whens: { name: string; }[]; thens: { ...; }[]; }[]; }; ... 4 more ...; errorCounts: { ...; }; }' is not assignable to type '(props: IProjectPageViewProps) => ISelection'.","category":1,"code":2322,"next":[{"messageText":"Type '{ route: string; setRoute: () => void; navigate: () => void; projectName: string; testName: string; decodedTestPath: string; runtime: string; testData: { name: string; givens: { name: string; whens: { name: string; }[]; thens: { ...; }[]; }[]; }; ... 4 more ...; errorCounts: { ...; }; }' provides no match for the signature '(props: IProjectPageViewProps): ISelection'.","category":1,"code":2658}]},"relatedInformation":[{"file":"../../src/types.ts","start":3337,"length":37,"messageText":"The expected type comes from the return type of this signature.","category":3,"code":6502}]},{"start":1527,"length":681,"code":2322,"category":1,"messageText":{"messageText":"Type '{ route: string; setRoute: () => void; navigate: () => void; projectName: string; testName: string; decodedTestPath: string; runtime: string; testData: null; logs: undefined; typeErrors: string; lintErrors: string; testsExist: boolean; errorCounts: { ...; }; }' is not assignable to type '(props: IProjectPageViewProps) => ISelection'.","category":1,"code":2322,"next":[{"messageText":"Type '{ route: string; setRoute: () => void; navigate: () => void; projectName: string; testName: string; decodedTestPath: string; runtime: string; testData: null; logs: undefined; typeErrors: string; lintErrors: string; testsExist: boolean; errorCounts: { ...; }; }' provides no match for the signature '(props: IProjectPageViewProps): ISelection'.","category":1,"code":2658}]},"relatedInformation":[{"file":"../../src/types.ts","start":3337,"length":37,"messageText":"The expected type comes from the return type of this signature.","category":3,"code":6502}]},{"start":2230,"length":467,"code":2322,"category":1,"messageText":{"messageText":"Type '{ route: string; setRoute: () => void; navigate: () => void; projectName: string; testName: string; decodedTestPath: string; runtime: string; testData: { name: string; givens: { name: string; whens: { name: string; }[]; thens: { ...; }[]; }[]; }; ... 4 more ...; errorCounts: { ...; }; }' is not assignable to type '(props: IProjectPageViewProps) => ISelection'.","category":1,"code":2322,"next":[{"messageText":"Type '{ route: string; setRoute: () => void; navigate: () => void; projectName: string; testName: string; decodedTestPath: string; runtime: string; testData: { name: string; givens: { name: string; whens: { name: string; }[]; thens: { ...; }[]; }[]; }; ... 4 more ...; errorCounts: { ...; }; }' provides no match for the signature '(props: IProjectPageViewProps): ISelection'.","category":1,"code":2658}]},"relatedInformation":[{"file":"../../src/types.ts","start":3337,"length":37,"messageText":"The expected type comes from the return type of this signature.","category":3,"code":6502}]},{"start":2720,"length":11,"code":2322,"category":1,"messageText":{"messageText":"Type '(tabName: string) => (selection: ISelection) => ISelection' is not assignable to type '(Iw_0: string) => (zel: ISelection, tr: ITTestResourceConfiguration, utils: PM) => Promise<(sel: ISelection) => ISelection>'.","category":1,"code":2322,"next":[{"messageText":"Call signature return types '(selection: ISelection) => ISelection' and '(zel: ISelection, tr: ITTestResourceConfiguration, utils: PM) => Promise<(sel: ISelection) => ISelection>' are incompatible.","category":1,"code":2202,"next":[{"messageText":"Type 'ISelection' is missing the following properties from type 'Promise<(sel: ISelection) => ISelection>': then, catch, finally, [Symbol.toStringTag]","category":1,"code":2739,"canonicalHead":{"code":2322,"messageText":"Type '(tabName: string) => (selection: ISelection) => ISelection' is not assignable to type '(Iw_0: string) => (zel: ISelection, tr: ITTestResourceConfiguration, utils: PM) => Promise<(sel: ISelection) => ISelection>'."}}]}]},"relatedInformation":[{"file":"../../src/components/pure/testpageview.test/types.ts","start":1336,"length":11,"messageText":"The expected type comes from property 'SwitchToTab' which is declared here on type 'TestWhenImplementation<{ iinput: IProjectPageViewProps; isubject: ISubject; istore: ISelection; iselection: ISelection; given: (props: IProjectPageViewProps) => ISelection; when: (sel: ISelection) => ISelection; then: (sel: ISelection) => Promise<...>; }, O>'","category":3,"code":6500}]},{"start":2907,"length":17,"code":2345,"category":1,"messageText":"Argument of type 'Root' is not assignable to parameter of type 'Element | DocumentFragment'."},{"start":2933,"length":22,"code":2345,"category":1,"messageText":{"messageText":"Argument of type 'ReactElement<any, string | JSXElementConstructor<any>>' is not assignable to parameter of type 'ReactNode'.","category":1,"code":2345,"next":[{"messageText":"Property 'children' is missing in type 'ReactElement<any, string | JSXElementConstructor<any>>' but required in type 'ReactPortal'.","category":1,"code":2741,"canonicalHead":{"code":2322,"messageText":"Type 'ReactElement<any, string | JSXElementConstructor<any>>' is not assignable to type 'ReactPortal'."}}]},"relatedInformation":[{"file":"../../node_modules/@types/react-dom/node_modules/@types/react/index.d.ts","start":12792,"length":8,"messageText":"'children' is declared here.","category":3,"code":2728}]},{"start":3017,"length":16,"code":2322,"category":1,"messageText":{"messageText":"Type '(selection: ISelection) => ISelection' is not assignable to type '(zel: ISelection, tr: ITTestResourceConfiguration, utils: PM) => Promise<(sel: ISelection) => ISelection>'.","category":1,"code":2322,"next":[{"messageText":"Type 'ISelection' is missing the following properties from type 'Promise<(sel: ISelection) => ISelection>': then, catch, finally, [Symbol.toStringTag]","category":1,"code":2739,"canonicalHead":{"code":2322,"messageText":"Type '(selection: ISelection) => ISelection' is not assignable to type '(zel: ISelection, tr: ITTestResourceConfiguration, utils: PM) => Promise<(sel: ISelection) => ISelection>'."}}]},"relatedInformation":[{"file":"../../src/types.ts","start":3499,"length":138,"messageText":"The expected type comes from the return type of this signature.","category":3,"code":6502}]},{"start":3065,"length":9,"code":2339,"category":1,"messageText":"Property 'container' does not exist on type 'ISelection'."},{"start":3257,"length":14,"code":2322,"category":1,"messageText":{"messageText":"Type '(name: string) => ({ htmlElement }: ISelection, pm: PM) => Promise<{ htmlElement: HTMLElement; }>' is not assignable to type '(It_0: string) => (ssel: ISelection, utils: PM) => (sel: ISelection) => Promise<ISelection>'.","category":1,"code":2322,"next":[{"messageText":"Call signature return types '({ htmlElement }: ISelection, pm: PM) => Promise<{ htmlElement: HTMLElement; }>' and '(ssel: ISelection, utils: PM) => (sel: ISelection) => Promise<ISelection>' are incompatible.","category":1,"code":2202,"next":[{"messageText":"Type 'Promise<{ htmlElement: HTMLElement; }>' is not assignable to type '(sel: ISelection) => Promise<ISelection>'.","category":1,"code":2322,"next":[{"messageText":"Type 'Promise<{ htmlElement: HTMLElement; }>' provides no match for the signature '(sel: ISelection): Promise<ISelection>'.","category":1,"code":2658}],"canonicalHead":{"code":2322,"messageText":"Type '(name: string) => ({ htmlElement }: ISelection, pm: PM) => Promise<{ htmlElement: HTMLElement; }>' is not assignable to type '(It_0: string) => (ssel: ISelection, utils: PM) => (sel: ISelection) => Promise<ISelection>'."}}]}]},"relatedInformation":[{"file":"../../src/components/pure/testpageview.test/types.ts","start":1556,"length":14,"messageText":"The expected type comes from property 'takeScreenshot' which is declared here on type 'TestThenImplementation<{ iinput: IProjectPageViewProps; isubject: ISubject; istore: ISelection; iselection: ISelection; given: (props: IProjectPageViewProps) => ISelection; when: (sel: ISelection) => ISelection; then: (sel: ISelection) => Promise<...>; }, O>'","category":3,"code":6500}]},{"start":3491,"length":22,"code":2322,"category":1,"messageText":{"messageText":"Type '(selection: ISelection) => Promise<ISelection>' is not assignable to type '(ssel: ISelection, utils: PM) => (sel: ISelection) => Promise<ISelection>'.","category":1,"code":2322,"next":[{"messageText":"Type 'Promise<ISelection>' is not assignable to type '(sel: ISelection) => Promise<ISelection>'.","category":1,"code":2322,"next":[{"messageText":"Type 'Promise<ISelection>' provides no match for the signature '(sel: ISelection): Promise<ISelection>'.","category":1,"code":2658}],"canonicalHead":{"code":2322,"messageText":"Type '(selection: ISelection) => Promise<ISelection>' is not assignable to type '(ssel: ISelection, utils: PM) => (sel: ISelection) => Promise<ISelection>'."}}]},"relatedInformation":[{"file":"../../src/types.ts","start":3762,"length":81,"messageText":"The expected type comes from the return type of this signature.","category":3,"code":6502}]},{"start":3545,"length":9,"code":2339,"category":1,"messageText":"Property 'container' does not exist on type 'ISelection'."},{"start":3648,"length":14,"code":2322,"category":1,"messageText":{"messageText":"Type '(tabName: string) => (selection: ISelection) => Promise<ISelection>' is not assignable to type '(It_0: string) => (ssel: ISelection, utils: PM) => (sel: ISelection) => Promise<ISelection>'.","category":1,"code":2322,"next":[{"messageText":"Call signature return types '(selection: ISelection) => Promise<ISelection>' and '(ssel: ISelection, utils: PM) => (sel: ISelection) => Promise<ISelection>' are incompatible.","category":1,"code":2202,"next":[{"messageText":"Type 'Promise<ISelection>' is not assignable to type '(sel: ISelection) => Promise<ISelection>'.","category":1,"code":2322,"next":[{"messageText":"Type 'Promise<ISelection>' provides no match for the signature '(sel: ISelection): Promise<ISelection>'.","category":1,"code":2658}],"canonicalHead":{"code":2322,"messageText":"Type '(tabName: string) => (selection: ISelection) => Promise<ISelection>' is not assignable to type '(It_0: string) => (ssel: ISelection, utils: PM) => (sel: ISelection) => Promise<ISelection>'."}}]}]},"relatedInformation":[{"file":"../../src/components/pure/testpageview.test/types.ts","start":1473,"length":14,"messageText":"The expected type comes from property 'ShowsActiveTab' which is declared here on type 'TestThenImplementation<{ iinput: IProjectPageViewProps; isubject: ISubject; istore: ISelection; iselection: ISelection; given: (props: IProjectPageViewProps) => ISelection; when: (sel: ISelection) => ISelection; then: (sel: ISelection) => Promise<...>; }, O>'","category":3,"code":6500}]},{"start":3742,"length":9,"code":2339,"category":1,"messageText":"Property 'container' does not exist on type 'ISelection'."},{"start":3901,"length":22,"code":2322,"category":1,"messageText":{"messageText":"Type '(selection: ISelection) => Promise<ISelection>' is not assignable to type '(ssel: ISelection, utils: PM) => (sel: ISelection) => Promise<ISelection>'.","category":1,"code":2322,"next":[{"messageText":"Type 'Promise<ISelection>' is not assignable to type '(sel: ISelection) => Promise<ISelection>'.","category":1,"code":2322,"next":[{"messageText":"Type 'Promise<ISelection>' provides no match for the signature '(sel: ISelection): Promise<ISelection>'.","category":1,"code":2658}],"canonicalHead":{"code":2322,"messageText":"Type '(selection: ISelection) => Promise<ISelection>' is not assignable to type '(ssel: ISelection, utils: PM) => (sel: ISelection) => Promise<ISelection>'."}}]},"relatedInformation":[{"file":"../../src/types.ts","start":3762,"length":81,"messageText":"The expected type comes from the return type of this signature.","category":3,"code":6502}]},{"start":3955,"length":9,"code":2339,"category":1,"messageText":"Property 'container' does not exist on type 'ISelection'."},{"start":4052,"length":10,"code":2339,"category":1,"messageText":"Property 'testsExist' does not exist on type 'ISelection'."},{"start":4143,"length":9,"code":2339,"category":1,"messageText":"Property 'container' does not exist on type 'ISelection'."},{"start":4303,"length":11,"code":2339,"category":1,"messageText":"Property 'errorCounts' does not exist on type 'ISelection'."},{"start":4379,"length":9,"code":2339,"category":1,"messageText":"Property 'container' does not exist on type 'ISelection'."},{"start":4553,"length":11,"code":2339,"category":1,"messageText":"Property 'errorCounts' does not exist on type 'ISelection'."},{"start":4621,"length":9,"code":2339,"category":1,"messageText":"Property 'container' does not exist on type 'ISelection'."},{"start":4768,"length":22,"code":2322,"category":1,"messageText":{"messageText":"Type '(selection: ISelection) => Promise<ISelection>' is not assignable to type '(ssel: ISelection, utils: PM) => (sel: ISelection) => Promise<ISelection>'.","category":1,"code":2322,"next":[{"messageText":"Type 'Promise<ISelection>' is not assignable to type '(sel: ISelection) => Promise<ISelection>'.","category":1,"code":2322,"next":[{"messageText":"Type 'Promise<ISelection>' provides no match for the signature '(sel: ISelection): Promise<ISelection>'.","category":1,"code":2658}],"canonicalHead":{"code":2322,"messageText":"Type '(selection: ISelection) => Promise<ISelection>' is not assignable to type '(ssel: ISelection, utils: PM) => (sel: ISelection) => Promise<ISelection>'."}}]},"relatedInformation":[{"file":"../../src/types.ts","start":3762,"length":81,"messageText":"The expected type comes from the return type of this signature.","category":3,"code":6502}]},{"start":4865,"length":10,"code":2339,"category":1,"messageText":"Property 'testsExist' does not exist on type 'ISelection'."},{"start":4917,"length":9,"code":2339,"category":1,"messageText":"Property 'container' does not exist on type 'ISelection'."},{"start":5058,"length":22,"code":2322,"category":1,"messageText":{"messageText":"Type '(selection: ISelection) => Promise<ISelection>' is not assignable to type '(ssel: ISelection, utils: PM) => (sel: ISelection) => Promise<ISelection>'.","category":1,"code":2322,"next":[{"messageText":"Type 'Promise<ISelection>' is not assignable to type '(sel: ISelection) => Promise<ISelection>'.","category":1,"code":2322,"next":[{"messageText":"Type 'Promise<ISelection>' provides no match for the signature '(sel: ISelection): Promise<ISelection>'.","category":1,"code":2658}],"canonicalHead":{"code":2322,"messageText":"Type '(selection: ISelection) => Promise<ISelection>' is not assignable to type '(ssel: ISelection, utils: PM) => (sel: ISelection) => Promise<ISelection>'."}}]},"relatedInformation":[{"file":"../../src/types.ts","start":3762,"length":81,"messageText":"The expected type comes from the return type of this signature.","category":3,"code":6502}]},{"start":5110,"length":9,"code":2339,"category":1,"messageText":"Property 'container' does not exist on type 'ISelection'."},{"start":5230,"length":22,"code":2322,"category":1,"messageText":{"messageText":"Type '(selection: ISelection) => Promise<ISelection>' is not assignable to type '(ssel: ISelection, utils: PM) => (sel: ISelection) => Promise<ISelection>'.","category":1,"code":2322,"next":[{"messageText":"Type 'Promise<ISelection>' is not assignable to type '(sel: ISelection) => Promise<ISelection>'.","category":1,"code":2322,"next":[{"messageText":"Type 'Promise<ISelection>' provides no match for the signature '(sel: ISelection): Promise<ISelection>'.","category":1,"code":2658}],"canonicalHead":{"code":2322,"messageText":"Type '(selection: ISelection) => Promise<ISelection>' is not assignable to type '(ssel: ISelection, utils: PM) => (sel: ISelection) => Promise<ISelection>'."}}]},"relatedInformation":[{"file":"../../src/types.ts","start":3762,"length":81,"messageText":"The expected type comes from the return type of this signature.","category":3,"code":6502}]},{"start":5288,"length":9,"code":2339,"category":1,"messageText":"Property 'container' does not exist on type 'ISelection'."},{"start":5421,"length":22,"code":2322,"category":1,"messageText":{"messageText":"Type '(selection: ISelection) => Promise<ISelection>' is not assignable to type '(ssel: ISelection, utils: PM) => (sel: ISelection) => Promise<ISelection>'.","category":1,"code":2322,"next":[{"messageText":"Type 'Promise<ISelection>' is not assignable to type '(sel: ISelection) => Promise<ISelection>'.","category":1,"code":2322,"next":[{"messageText":"Type 'Promise<ISelection>' provides no match for the signature '(sel: ISelection): Promise<ISelection>'.","category":1,"code":2658}],"canonicalHead":{"code":2322,"messageText":"Type '(selection: ISelection) => Promise<ISelection>' is not assignable to type '(ssel: ISelection, utils: PM) => (sel: ISelection) => Promise<ISelection>'."}}]},"relatedInformation":[{"file":"../../src/types.ts","start":3762,"length":81,"messageText":"The expected type comes from the return type of this signature.","category":3,"code":6502}]},{"start":5479,"length":9,"code":2339,"category":1,"messageText":"Property 'container' does not exist on type 'ISelection'."},{"start":5620,"length":22,"code":2322,"category":1,"messageText":{"messageText":"Type '(selection: ISelection) => Promise<ISelection>' is not assignable to type '(ssel: ISelection, utils: PM) => (sel: ISelection) => Promise<ISelection>'.","category":1,"code":2322,"next":[{"messageText":"Type 'Promise<ISelection>' is not assignable to type '(sel: ISelection) => Promise<ISelection>'.","category":1,"code":2322,"next":[{"messageText":"Type 'Promise<ISelection>' provides no match for the signature '(sel: ISelection): Promise<ISelection>'.","category":1,"code":2658}],"canonicalHead":{"code":2322,"messageText":"Type '(selection: ISelection) => Promise<ISelection>' is not assignable to type '(ssel: ISelection, utils: PM) => (sel: ISelection) => Promise<ISelection>'."}}]},"relatedInformation":[{"file":"../../src/types.ts","start":3762,"length":81,"messageText":"The expected type comes from the return type of this signature.","category":3,"code":6502}]},{"start":5718,"length":4,"messageText":"Cannot find name 'jest'.","category":1,"code":2304},{"start":5792,"length":39,"messageText":"Expected 3 arguments, but got 1.","category":1,"code":2554,"relatedInformation":[{"file":"../../src/types.ts","start":3565,"length":31,"messageText":"An argument for 'tr' was not provided.","category":3,"code":6210}]},{"start":5894,"length":6,"code":2339,"category":1,"messageText":"Property 'called' does not exist on type '(data: string) => Promise<void>'."}]],[770,[{"start":209,"length":9,"messageText":"Cannot find name 'BaseSuite'.","category":1,"code":2304}]],[771,[{"start":3263,"length":7,"code":2322,"category":1,"messageText":{"messageText":"Type '() => MockSuite' is not assignable to type '() => () => Promise<TestStore>'.","category":1,"code":2322,"next":[{"messageText":"Type 'MockSuite' is not assignable to type '() => Promise<TestStore>'.","category":1,"code":2322,"next":[{"messageText":"Type 'MockSuite' provides no match for the signature '(): Promise<TestStore>'.","category":1,"code":2658}],"canonicalHead":{"code":2322,"messageText":"Type '() => MockSuite' is not assignable to type '() => () => Promise<TestStore>'."}}]},"relatedInformation":[{"start":1040,"length":7,"messageText":"The expected type comes from property 'Default' which is declared here on type 'TestGivenImplementation<I, O>'","category":3,"code":6500}]},{"start":3536,"length":8,"code":2345,"category":1,"messageText":"Argument of type 'Promise<unknown>' is not assignable to parameter of type 'string'."},{"start":3720,"length":5,"code":2339,"category":1,"messageText":"Property 'specs' does not exist on type 'MockSuite'."},{"start":3743,"length":5,"code":2339,"category":1,"messageText":"Property 'specs' does not exist on type 'MockSuite'."},{"start":3922,"length":8,"code":2339,"category":1,"messageText":"Property 'testJobs' does not exist on type 'MockSuite'."},{"start":3948,"length":8,"code":2339,"category":1,"messageText":"Property 'testJobs' does not exist on type 'MockSuite'."},{"start":4067,"length":29,"code":2322,"category":1,"messageText":{"messageText":"Type '(suite: MockSuite) => Promise<MockSuite>' is not assignable to type '(zel: TestSelection, tr: ITTestResourceConfiguration, utils: PM) => Promise<(store: TestStore) => Promise<TestStore>>'.","category":1,"code":2322,"next":[{"messageText":"Types of parameters 'suite' and 'zel' are incompatible.","category":1,"code":2328,"next":[{"messageText":"Type 'TestSelection' is missing the following properties from type 'MockSuite': name, givens, store, testResourceConfiguration, and 11 more.","category":1,"code":2740,"canonicalHead":{"code":2322,"messageText":"Type 'TestSelection' is not assignable to type 'MockSuite'."}}]}]},"relatedInformation":[{"file":"../../src/types.ts","start":3499,"length":138,"messageText":"The expected type comes from the return type of this signature.","category":3,"code":6502}]},{"start":4709,"length":1,"code":2322,"category":1,"messageText":{"messageText":"Type '() => void' is not assignable to type '((selector: string) => boolean) | ((selector: string) => boolean) | ((selector: string, page: string) => Promise<unknown>)'.","category":1,"code":2322,"next":[{"messageText":"Type '() => void' is not assignable to type '(selector: string) => boolean'.","category":1,"code":2322,"next":[{"messageText":"Type 'void' is not assignable to type 'boolean'.","category":1,"code":2322,"canonicalHead":{"code":2322,"messageText":"Type '() => void' is not assignable to type '(selector: string) => boolean'."}}]}]},"relatedInformation":[{"file":"../../src/pm/node.ts","start":2552,"length":1,"messageText":"The expected type comes from property '$' which is declared here on type 'IPM'","category":3,"code":6500}]},{"start":4759,"length":9,"code":2322,"category":1,"messageText":{"messageText":"Type '() => void' is not assignable to type '((p: any) => string) | ((p: any) => string) | ((p: any) => Promise<unknown>)'.","category":1,"code":2322,"next":[{"messageText":"Type '() => void' is not assignable to type '(p: any) => string'.","category":1,"code":2322,"next":[{"messageText":"Type 'void' is not assignable to type 'string'.","category":1,"code":2322,"canonicalHead":{"code":2322,"messageText":"Type '() => void' is not assignable to type '(p: any) => string'."}}]}]},"relatedInformation":[{"file":"../../src/pm/node.ts","start":2224,"length":9,"messageText":"The expected type comes from property 'closePage' which is declared here on type 'IPM'","category":3,"code":6500}]},{"start":4879,"length":4,"code":2345,"category":1,"messageText":"Argument of type 'null' is not assignable to parameter of type 'typeof BaseSuite'."},{"start":5212,"length":4,"code":2345,"category":1,"messageText":"Argument of type 'null' is not assignable to parameter of type 'typeof BaseSuite'."},{"start":5845,"length":16,"code":2322,"category":1,"messageText":{"messageText":"Type '(expectedName: string) => ((selection: TestSelection) => TestSelection)' is not assignable to type '(It_0: string) => (ssel: TestSelection, utils: PM) => (store: TestStore) => Promise<TestSelection>'.","category":1,"code":2322,"next":[{"messageText":"Call signature return types '(selection: TestSelection) => TestSelection' and '(ssel: TestSelection, utils: PM) => (store: TestStore) => Promise<TestSelection>' are incompatible.","category":1,"code":2202,"next":[{"messageText":"Type 'TestSelection' is not assignable to type '(store: TestStore) => Promise<TestSelection>'.","category":1,"code":2322,"next":[{"messageText":"Type 'TestSelection' provides no match for the signature '(store: TestStore): Promise<TestSelection>'.","category":1,"code":2658}],"canonicalHead":{"code":2322,"messageText":"Type '(expectedName: string) => ((selection: TestSelection) => TestSelection)' is not assignable to type '(It_0: string) => (ssel: TestSelection, utils: PM) => (store: TestStore) => Promise<TestSelection>'."}}]}]},"relatedInformation":[{"start":1241,"length":16,"messageText":"The expected type comes from property 'SuiteNameMatches' which is declared here on type 'TestThenImplementation<I, O>'","category":3,"code":6500}]},{"start":5988,"length":4,"code":2339,"category":1,"messageText":"Property 'name' does not exist on type 'TestSelection'."},{"start":6109,"length":4,"code":2339,"category":1,"messageText":"Property 'name' does not exist on type 'TestSelection'."},{"start":6230,"length":4,"code":2339,"category":1,"messageText":"Property 'name' does not exist on type 'TestSelection'."},{"start":6301,"length":17,"code":2322,"category":1,"messageText":{"messageText":"Type '(expectedIndex: number) => ((selection: TestSelection) => TestSelection)' is not assignable to type '(It_0: number) => (ssel: TestSelection, utils: PM) => (store: TestStore) => Promise<TestSelection>'.","category":1,"code":2322,"next":[{"messageText":"Call signature return types '(selection: TestSelection) => TestSelection' and '(ssel: TestSelection, utils: PM) => (store: TestStore) => Promise<TestSelection>' are incompatible.","category":1,"code":2202,"next":[{"messageText":"Type 'TestSelection' is not assignable to type '(store: TestStore) => Promise<TestSelection>'.","category":1,"code":2322,"next":[{"messageText":"Type 'TestSelection' provides no match for the signature '(store: TestStore): Promise<TestSelection>'.","category":1,"code":2658}],"canonicalHead":{"code":2322,"messageText":"Type '(expectedIndex: number) => ((selection: TestSelection) => TestSelection)' is not assignable to type '(It_0: number) => (ssel: TestSelection, utils: PM) => (store: TestStore) => Promise<TestSelection>'."}}]}]},"relatedInformation":[{"start":1273,"length":17,"messageText":"The expected type comes from property 'SuiteIndexMatches' which is declared here on type 'TestThenImplementation<I, O>'","category":3,"code":6500}]},{"start":6445,"length":5,"code":2339,"category":1,"messageText":"Property 'index' does not exist on type 'TestSelection'."},{"start":6567,"length":5,"code":2339,"category":1,"messageText":"Property 'index' does not exist on type 'TestSelection'."},{"start":6638,"length":16,"code":2322,"category":1,"messageText":{"messageText":"Type '(feature: string) => ((suite: MockSuite) => MockSuite)' is not assignable to type '(feature: string) => (ssel: TestSelection, utils: PM) => (store: TestStore) => Promise<TestSelection>'.","category":1,"code":2322,"next":[{"messageText":"Type '(suite: MockSuite) => MockSuite' is not assignable to type '(ssel: TestSelection, utils: PM) => (store: TestStore) => Promise<TestSelection>'.","category":1,"code":2322,"next":[{"messageText":"Types of parameters 'suite' and 'ssel' are incompatible.","category":1,"code":2328,"next":[{"messageText":"Type 'TestSelection' is missing the following properties from type 'MockSuite': name, givens, store, testResourceConfiguration, and 11 more.","category":1,"code":2740,"canonicalHead":{"code":2322,"messageText":"Type 'TestSelection' is not assignable to type 'MockSuite'."}}]}],"canonicalHead":{"code":2322,"messageText":"Type '(feature: string) => ((suite: MockSuite) => MockSuite)' is not assignable to type '(feature: string) => (ssel: TestSelection, utils: PM) => (store: TestStore) => Promise<TestSelection>'."}}]},"relatedInformation":[{"start":1180,"length":16,"messageText":"The expected type comes from property 'FeaturesIncludes' which is declared here on type 'TestThenImplementation<I, O>'","category":3,"code":6500}]},{"start":7340,"length":23,"code":2322,"category":1,"messageText":{"messageText":"Type '(suite: MockSuite) => MockSuite' is not assignable to type '(ssel: TestSelection, utils: PM) => (store: TestStore) => Promise<TestSelection>'.","category":1,"code":2322,"next":[{"messageText":"Types of parameters 'suite' and 'ssel' are incompatible.","category":1,"code":2328,"next":[{"messageText":"Type 'TestSelection' is missing the following properties from type 'MockSuite': name, givens, store, testResourceConfiguration, and 11 more.","category":1,"code":2740,"canonicalHead":{"code":2322,"messageText":"Type 'TestSelection' is not assignable to type 'MockSuite'."}}]}]},"relatedInformation":[{"file":"../../src/types.ts","start":3762,"length":81,"messageText":"The expected type comes from the return type of this signature.","category":3,"code":6502}]},{"start":8889,"length":5,"code":2339,"category":1,"messageText":"Property 'specs' does not exist on type 'MockSuite'."},{"start":9170,"length":8,"code":2339,"category":1,"messageText":"Property 'testJobs' does not exist on type 'MockSuite'."},{"start":10294,"length":5,"code":2339,"category":1,"messageText":"Property 'index' does not exist on type '() => Promise<TestStore>'."},{"start":10374,"length":5,"code":2339,"category":1,"messageText":"Property 'store' does not exist on type '() => Promise<TestStore>'."},{"start":10650,"length":2,"messageText":"Expected 1 arguments, but got 2.","category":1,"code":2554},{"start":10658,"length":7,"code":2322,"category":1,"messageText":{"messageText":"Type '(store: TestStore, thenCB: (selection: TestSelection) => Promise<TestSelection>, testResource: ITTestResourceConfiguration, pm: IPM) => Promise<TestSelection>' is not assignable to type '(store: TestStore, thenCB: (store: TestStore) => Promise<TestSelection>, testResource: ITTestResourceConfiguration, pm: IPM) => Promise<...>'.","category":1,"code":2322,"next":[{"messageText":"Types of parameters 'thenCB' and 'thenCB' are incompatible.","category":1,"code":2328,"next":[{"messageText":"Type '(store: TestStore) => Promise<TestSelection>' is not assignable to type '(selection: TestSelection) => Promise<TestSelection>'.","category":1,"code":2322,"next":[{"messageText":"Types of parameters 'store' and 'selection' are incompatible.","category":1,"code":2328,"next":[{"messageText":"Property 'testStore' is missing in type 'TestSelection' but required in type 'TestStore'.","category":1,"code":2741,"canonicalHead":{"code":2322,"messageText":"Type 'TestSelection' is not assignable to type 'TestStore'."}}]}]}]}]},"relatedInformation":[{"start":530,"length":9,"messageText":"'testStore' is declared here.","category":3,"code":2728},{"file":"../../src/coretypes.ts","start":730,"length":7,"messageText":"The expected type comes from property 'butThen' which is declared here on type 'ITestAdapter<I>'","category":3,"code":6500}]},{"start":11000,"length":4,"code":2353,"category":1,"messageText":"Object literal may only specify known properties, and 'name' does not exist in type 'TestSelection'."},{"start":11487,"length":9,"code":2322,"category":1,"messageText":{"messageText":"Type '(store: I[\"istore\"]) => I[\"istore\"]' is not assignable to type '(store: TestStore, key: string, pm: IPM) => Promise<unknown>'.","category":1,"code":2322,"next":[{"messageText":"Type 'TestStore' is missing the following properties from type 'Promise<unknown>': then, catch, finally, [Symbol.toStringTag]","category":1,"code":2739,"canonicalHead":{"code":2322,"messageText":"Type '(store: I[\"istore\"]) => I[\"istore\"]' is not assignable to type '(store: TestStore, key: string, pm: IPM) => Promise<unknown>'."}}]},"relatedInformation":[{"file":"../../src/coretypes.ts","start":932,"length":9,"messageText":"The expected type comes from property 'afterEach' which is declared here on type 'ITestAdapter<I>'","category":3,"code":6500}]}]],[772,[{"start":878,"length":7,"code":2416,"category":1,"messageText":{"messageText":"Property 'andWhen' in type 'MockWhen' is not assignable to the same property in base type 'BaseWhen<I>'.","category":1,"code":2416,"next":[{"messageText":"Type '(store: TestStore, whenCB: (store: TestStore) => Promise<TestStore>, testResource: any, pm: IPM) => Promise<TestStore>' is not assignable to type '(store: TestStore, whenCB: (x: TestSelection) => (store: TestStore) => Promise<TestSelection>, testResource: any, pm: IPM) => Promise<...>'.","category":1,"code":2322,"next":[{"messageText":"Types of parameters 'whenCB' and 'whenCB' are incompatible.","category":1,"code":2328,"next":[{"messageText":"Types of parameters 'x' and 'store' are incompatible.","category":1,"code":2328,"next":[{"messageText":"Type 'TestStore' is not assignable to type 'TestSelection'.","category":1,"code":2322,"next":[{"messageText":"Types of property 'testSelection' are incompatible.","category":1,"code":2326,"next":[{"messageText":"Type 'boolean | undefined' is not assignable to type 'boolean'.","category":1,"code":2322,"next":[{"messageText":"Type 'undefined' is not assignable to type 'boolean'.","category":1,"code":2322}],"canonicalHead":{"code":2322,"messageText":"Type 'TestStore' is not assignable to type 'TestSelection'."}}]}]}]}]}]}]}},{"start":1214,"length":11,"code":2416,"category":1,"messageText":{"messageText":"Property 'addArtifact' in type 'MockWhen' is not assignable to the same property in base type 'BaseWhen<I>'.","category":1,"code":2416,"next":[{"messageText":"Type '(name: string, content: string) => this' is not assignable to type '(path: string) => void'.","category":1,"code":2322,"next":[{"messageText":"Target signature provides too few arguments. Expected 2 or more, but got 1.","category":1,"code":2849}]}]}},{"start":1404,"length":7,"code":2416,"category":1,"messageText":{"messageText":"Property 'butThen' in type 'MockThen' is not assignable to the same property in base type 'BaseThen<I>'.","category":1,"code":2416,"next":[{"messageText":"Types of parameters 'thenCB' and 'thenCB' are incompatible.","category":1,"code":2328,"next":[{"messageText":"Type 'Promise<BaseSuite<any, any>>' is not assignable to type 'Promise<TestSelection>'.","category":1,"code":2322,"next":[{"messageText":"Property 'testSelection' is missing in type 'BaseSuite<any, any>' but required in type 'TestSelection'.","category":1,"code":2741,"canonicalHead":{"code":2322,"messageText":"Type 'BaseSuite<any, any>' is not assignable to type 'TestSelection'."}}]}],"canonicalHead":{"code":2322,"messageText":"Type '(store: TestStore, thenCB: (selection: TestSelection) => Promise<TestSelection>, testResourceConfiguration: any, pm: any) => Promise<...>' is not assignable to type '(store: TestStore, thenCB: (s: TestSelection) => Promise<BaseSuite<any, any>>, testResourceConfiguration: ITTestResourceConfiguration, pm: IPM, ...args: any[]) => Promise<...>'."}}]},"relatedInformation":[{"file":"../../src/lib/basesuite.test/test.ts","start":630,"length":13,"messageText":"'testSelection' is declared here.","category":3,"code":2728}]},{"start":1676,"length":4,"code":2353,"category":1,"messageText":"Object literal may only specify known properties, and 'name' does not exist in type 'TestSelection'."},{"start":2570,"length":68,"code":2322,"category":1,"messageText":{"messageText":"Type 'MockWhen' is not assignable to type 'BaseWhen<I>'.","category":1,"code":2322,"next":[{"messageText":"Types of property 'addArtifact' are incompatible.","category":1,"code":2326,"next":[{"messageText":"Type '(name: string, content: string) => MockWhen' is not assignable to type '(path: string) => void'.","category":1,"code":2322,"next":[{"messageText":"Target signature provides too few arguments. Expected 2 or more, but got 1.","category":1,"code":2849}],"canonicalHead":{"code":2322,"messageText":"Type 'MockWhen' is not assignable to type 'BaseWhen<I>'."}}]}]}},{"start":2601,"length":36,"code":2322,"category":1,"messageText":{"messageText":"Type 'Promise<{ testStore: boolean; }>' is not assignable to type '(store: TestStore) => Promise<TestSelection>'.","category":1,"code":2322,"next":[{"messageText":"Type 'Promise<{ testStore: boolean; }>' provides no match for the signature '(store: TestStore): Promise<TestSelection>'.","category":1,"code":2658}]},"relatedInformation":[{"file":"../../src/lib/abstractbase.ts","start":4957,"length":35,"messageText":"The expected type comes from the return type of this signature.","category":3,"code":6502}]},{"start":2710,"length":40,"code":2322,"category":1,"messageText":{"messageText":"Type 'Promise<{ testSelection: boolean; }>' is not assignable to type 'Promise<(store: TestStore) => Promise<TestSelection>>'.","category":1,"code":2322,"next":[{"messageText":"Type '{ testSelection: boolean; }' is not assignable to type '(store: TestStore) => Promise<TestSelection>'.","category":1,"code":2322,"next":[{"messageText":"Type '{ testSelection: boolean; }' provides no match for the signature '(store: TestStore): Promise<TestSelection>'.","category":1,"code":2658}]}]},"relatedInformation":[{"file":"../../src/lib/abstractbase.ts","start":6436,"length":44,"messageText":"The expected type comes from the return type of this signature.","category":3,"code":6502}]}]],[776,[{"start":620,"length":7,"code":2349,"category":1,"messageText":{"messageText":"This expression is not callable.","category":1,"code":2349,"next":[{"messageText":"Type 'unknown' has no call signatures.","category":1,"code":2757}]}}]],[779,[{"start":364,"length":233,"messageText":"Generic type 'Ibdd_out' requires between 0 and 4 type arguments.","category":1,"code":2707}]],[780,[{"start":170,"length":13,"code":2322,"category":1,"messageText":{"messageText":"Type 'Promise<() => { testStore: { value: string; }; }>' is not assignable to type 'Promise<{ testStore: { value: string; }; error?: Error | undefined; }>'.","category":1,"code":2322,"next":[{"messageText":"Type '() => { testStore: { value: string; }; }' is not assignable to type '{ testStore: { value: string; }; error?: Error | undefined; }'.","category":1,"code":2322}]},"relatedInformation":[{"file":"../../src/coretypes.ts","start":1150,"length":172,"messageText":"The expected type comes from the return type of this signature.","category":3,"code":6502}]},{"start":311,"length":5,"code":2739,"category":1,"messageText":"Type '{ testStore: { value: string; }; error?: Error | undefined; }' is missing the following properties from type 'Promise<unknown>': then, catch, finally, [Symbol.toStringTag]","relatedInformation":[{"file":"../../src/coretypes.ts","start":943,"length":62,"messageText":"The expected type comes from the return type of this signature.","category":3,"code":6502},{"start":300,"length":16,"messageText":"Did you mean to mark this function as 'async'?","category":1,"code":1356}],"canonicalHead":{"code":2322,"messageText":"Type '{ testStore: { value: string; }; error?: Error | undefined; }' is not assignable to type 'Promise<unknown>'."}}]],[781,[{"start":238,"length":89,"code":2322,"category":1,"messageText":{"messageText":"Type '{ testStore: { value: string; }; testSelection: { selected: boolean; }; }' is not assignable to type '() => { testStore: { value: string; }; }'.","category":1,"code":2322,"next":[{"messageText":"Type '{ testStore: { value: string; }; testSelection: { selected: boolean; }; }' provides no match for the signature '(): { testStore: { value: string; }; }'.","category":1,"code":2658}]},"relatedInformation":[{"file":"../../src/types.ts","start":3337,"length":37,"messageText":"The expected type comes from the return type of this signature.","category":3,"code":6502}]},{"start":350,"length":88,"code":2322,"category":1,"messageText":{"messageText":"Type '{ testStore: { value: string; }; testSelection: { selected: boolean; }; }' is not assignable to type '() => { testStore: { value: string; }; }'.","category":1,"code":2322,"next":[{"messageText":"Type '{ testStore: { value: string; }; testSelection: { selected: boolean; }; }' provides no match for the signature '(): { testStore: { value: string; }; }'.","category":1,"code":2658}]},"relatedInformation":[{"file":"../../src/types.ts","start":3337,"length":37,"messageText":"The expected type comes from the return type of this signature.","category":3,"code":6502}]},{"start":461,"length":11,"code":2322,"category":1,"messageText":{"messageText":"Type '(newValue: string) => (store: { testSelection: { selected: boolean; }; }) => { testStore: { value: string; }; testSelection: { selected: boolean; }; }' is not assignable to type '(...Iw: any) => (zel: { testSelection: { selected: boolean; }; }, tr: ITTestResourceConfiguration, utils: PM) => Promise<(store: any) => any>'.","category":1,"code":2322,"next":[{"messageText":"Call signature return types '(store: { testSelection: { selected: boolean; }; }) => { testStore: { value: string; }; testSelection: { selected: boolean; }; }' and '(zel: { testSelection: { selected: boolean; }; }, tr: ITTestResourceConfiguration, utils: PM) => Promise<(store: any) => any>' are incompatible.","category":1,"code":2202,"next":[{"messageText":"Type '{ testStore: { value: string; }; testSelection: { selected: boolean; }; }' is missing the following properties from type 'Promise<(store: any) => any>': then, catch, finally, [Symbol.toStringTag]","category":1,"code":2739,"canonicalHead":{"code":2322,"messageText":"Type '(newValue: string) => (store: { testSelection: { selected: boolean; }; }) => { testStore: { value: string; }; testSelection: { selected: boolean; }; }' is not assignable to type '(...Iw: any) => (zel: { testSelection: { selected: boolean; }; }, tr: ITTestResourceConfiguration, utils: PM) => Promise<(store: any) => any>'."}}]}]},"relatedInformation":[{"file":"../../src/types.ts","start":3470,"length":170,"messageText":"The expected type comes from property 'modifyStore' which is declared here on type 'TestWhenImplementation<I, any>'","category":3,"code":6500}]},{"start":667,"length":11,"code":2322,"category":1,"messageText":{"messageText":"Type '(expected: string) => (store: { testSelection: { selected: boolean; }; }) => { testSelection: { selected: boolean; }; }' is not assignable to type '(...It: any) => (ssel: { testSelection: { selected: boolean; }; }, utils: PM) => (store: any) => any'.","category":1,"code":2322,"next":[{"messageText":"Call signature return types '(store: { testSelection: { selected: boolean; }; }) => { testSelection: { selected: boolean; }; }' and '(ssel: { testSelection: { selected: boolean; }; }, utils: PM) => (store: any) => any' are incompatible.","category":1,"code":2202,"next":[{"messageText":"Type '{ testSelection: { selected: boolean; }; }' is not assignable to type '(store: any) => any'.","category":1,"code":2322,"next":[{"messageText":"Type '{ testSelection: { selected: boolean; }; }' provides no match for the signature '(store: any): any'.","category":1,"code":2658}],"canonicalHead":{"code":2322,"messageText":"Type '(expected: string) => (store: { testSelection: { selected: boolean; }; }) => { testSelection: { selected: boolean; }; }' is not assignable to type '(...It: any) => (ssel: { testSelection: { selected: boolean; }; }, utils: PM) => (store: any) => any'."}}]}]},"relatedInformation":[{"file":"../../src/types.ts","start":3733,"length":113,"messageText":"The expected type comes from property 'verifyStore' which is declared here on type 'TestThenImplementation<I, any>'","category":3,"code":6500}]},{"start":731,"length":9,"code":2339,"category":1,"messageText":"Property 'testStore' does not exist on type '{ testSelection: { selected: boolean; }; }'."},{"start":822,"length":9,"code":2339,"category":1,"messageText":"Property 'testStore' does not exist on type '{ testSelection: { selected: boolean; }; }'."},{"start":881,"length":11,"code":2322,"category":1,"messageText":{"messageText":"Type '(expected: string) => (store: { testSelection: { selected: boolean; }; }) => { testSelection: { selected: boolean; }; }' is not assignable to type '(...It: any) => (ssel: { testSelection: { selected: boolean; }; }, utils: PM) => (store: any) => any'.","category":1,"code":2322,"next":[{"messageText":"Call signature return types '(store: { testSelection: { selected: boolean; }; }) => { testSelection: { selected: boolean; }; }' and '(ssel: { testSelection: { selected: boolean; }; }, utils: PM) => (store: any) => any' are incompatible.","category":1,"code":2202,"next":[{"messageText":"Type '{ testSelection: { selected: boolean; }; }' is not assignable to type '(store: any) => any'.","category":1,"code":2322,"next":[{"messageText":"Type '{ testSelection: { selected: boolean; }; }' provides no match for the signature '(store: any): any'.","category":1,"code":2658}],"canonicalHead":{"code":2322,"messageText":"Type '(expected: string) => (store: { testSelection: { selected: boolean; }; }) => { testSelection: { selected: boolean; }; }' is not assignable to type '(...It: any) => (ssel: { testSelection: { selected: boolean; }; }, utils: PM) => (store: any) => any'."}}]}]},"relatedInformation":[{"file":"../../src/types.ts","start":3733,"length":113,"messageText":"The expected type comes from property 'verifyError' which is declared here on type 'TestThenImplementation<I, any>'","category":3,"code":6500}]},{"start":946,"length":5,"code":2339,"category":1,"messageText":"Property 'error' does not exist on type '{ testSelection: { selected: boolean; }; }'."},{"start":962,"length":5,"code":2339,"category":1,"messageText":"Property 'error' does not exist on type '{ testSelection: { selected: boolean; }; }'."}]],[785,[{"start":301,"length":5,"code":2322,"category":1,"messageText":{"messageText":"Type 'Promise<{}>' is not assignable to type 'Promise<BaseBuilder<any, any, any, any, any, any>>'.","category":1,"code":2322,"next":[{"messageText":"Type '{}' is missing the following properties from type 'BaseBuilder<any, any, any, any, any, any>': specs, assertThis, testResourceRequirement, artifacts, and 12 more.","category":1,"code":2740,"canonicalHead":{"code":2322,"messageText":"Type '{}' is not assignable to type 'BaseBuilder<any, any, any, any, any, any>'."}}]},"relatedInformation":[{"file":"../../src/coretypes.ts","start":1020,"length":114,"messageText":"The expected type comes from the return type of this signature.","category":3,"code":6502}]},{"start":310,"length":10,"code":2719,"category":1,"messageText":{"messageText":"Type '(subject: import(\"/Users/adam/Code/testeranto/src/lib/basebuilder\").BaseBuilder<any, any, any, any, any, any>, initializer: (c?: any) => () => import(\"/Users/adam/Code/testeranto/src/lib/basebuilder\").BaseBuilder<any, any, any, any, any, any>, testResource: import(\"/Users/adam/Code/testeranto/src/lib/index\").ITTestR...' is not assignable to type '(subject: import(\"/Users/adam/Code/testeranto/src/lib/basebuilder\").BaseBuilder<any, any, any, any, any, any>, initializer: (c?: any) => () => import(\"/Users/adam/Code/testeranto/src/lib/basebuilder\").BaseBuilder<any, any, any, any, any, any>, testResource: import(\"/Users/adam/Code/testeranto/src/lib/index\").ITTestR...'. Two different types with this name exist, but they are unrelated.","category":1,"code":2719,"next":[{"messageText":"Type 'Promise<() => BaseBuilder<any, any, any, any, any, any>>' is not assignable to type 'Promise<BaseBuilder<any, any, any, any, any, any>>'.","category":1,"code":2322,"next":[{"messageText":"Type '() => BaseBuilder<any, any, any, any, any, any>' is not assignable to type 'BaseBuilder<any, any, any, any, any, any>'.","category":1,"code":2322}],"canonicalHead":{"code":2719,"messageText":"Type '(subject: import(\"/Users/adam/Code/testeranto/src/lib/basebuilder\").BaseBuilder<any, any, any, any, any, any>, initializer: (c?: any) => () => import(\"/Users/adam/Code/testeranto/src/lib/basebuilder\").BaseBuilder<any, any, any, any, any, any>, testResource: import(\"/Users/adam/Code/testeranto/src/lib/index\").ITTestR...' is not assignable to type '(subject: import(\"/Users/adam/Code/testeranto/src/lib/basebuilder\").BaseBuilder<any, any, any, any, any, any>, initializer: (c?: any) => () => import(\"/Users/adam/Code/testeranto/src/lib/basebuilder\").BaseBuilder<any, any, any, any, any, any>, testResource: import(\"/Users/adam/Code/testeranto/src/lib/index\").ITTestR...'. Two different types with this name exist, but they are unrelated."}}]},"relatedInformation":[{"file":"../../src/coretypes.ts","start":1138,"length":10,"messageText":"The expected type comes from property 'beforeEach' which is declared here on type 'ITestAdapter<I>'","category":3,"code":6500}]},{"start":531,"length":5,"messageText":"Expected 1 arguments, but got 2.","category":1,"code":2554},{"start":625,"length":2,"messageText":"Expected 1 arguments, but got 2.","category":1,"code":2554},{"start":659,"length":5,"code":2739,"category":1,"messageText":"Type 'BaseBuilder<any, any, any, any, any, any>' is missing the following properties from type 'Promise<unknown>': then, catch, finally, [Symbol.toStringTag]","relatedInformation":[{"file":"../../src/coretypes.ts","start":943,"length":62,"messageText":"The expected type comes from the return type of this signature.","category":3,"code":6502},{"start":648,"length":16,"messageText":"Did you mean to mark this function as 'async'?","category":1,"code":1356}],"canonicalHead":{"code":2322,"messageText":"Type 'BaseBuilder<any, any, any, any, any, any>' is not assignable to type 'Promise<unknown>'."}}]],[787,[{"start":617,"length":25,"code":2322,"category":1,"messageText":{"messageText":"Type '() => MockBaseBuilder<Ibdd_in_any, Ibdd_out_any, {}, {}, {}, {}>' is not assignable to type '() => () => BaseBuilder<any, any, any, any, any, any>'.","category":1,"code":2322,"next":[{"messageText":"Type 'MockBaseBuilder<Ibdd_in_any, Ibdd_out_any, {}, {}, {}, {}>' is not assignable to type '() => BaseBuilder<any, any, any, any, any, any>'.","category":1,"code":2322,"next":[{"messageText":"Type 'MockBaseBuilder<Ibdd_in_any, Ibdd_out_any, {}, {}, {}, {}>' provides no match for the signature '(): BaseBuilder<any, any, any, any, any, any>'.","category":1,"code":2658}],"canonicalHead":{"code":2322,"messageText":"Type '() => MockBaseBuilder<Ibdd_in_any, Ibdd_out_any, {}, {}, {}, {}>' is not assignable to type '() => () => BaseBuilder<any, any, any, any, any, any>'."}}]},"relatedInformation":[{"file":"../../src/lib/basebuilder.test/basebuilder.test.types.ts","start":644,"length":25,"messageText":"The expected type comes from property 'the default BaseBuilder' which is declared here on type 'TestGivenImplementation<I, O>'","category":3,"code":6500}]},{"start":933,"length":30,"code":2322,"category":1,"messageText":{"messageText":"Type '(input: any) => MockBaseBuilder<Ibdd_in_any, Ibdd_out_any, {}, {}, {}, {}>' is not assignable to type '() => () => BaseBuilder<any, any, any, any, any, any>'.","category":1,"code":2322,"next":[{"messageText":"Target signature provides too few arguments. Expected 1 or more, but got 0.","category":1,"code":2849}]},"relatedInformation":[{"file":"../../src/lib/basebuilder.test/basebuilder.test.types.ts","start":679,"length":30,"messageText":"The expected type comes from property 'a BaseBuilder with TestInput' which is declared here on type 'TestGivenImplementation<I, O>'","category":3,"code":6500}]},{"start":1090,"length":5,"code":2322,"category":1,"messageText":"Type 'never[]' is not assignable to type 'number'."},{"start":1140,"length":47,"code":2322,"category":1,"messageText":{"messageText":"Type '(requirements: ITTestResourceRequest) => MockBaseBuilder<Ibdd_in_any, Ibdd_out_any, {}, {}, {}, {}>' is not assignable to type '() => () => BaseBuilder<any, any, any, any, any, any>'.","category":1,"code":2322,"next":[{"messageText":"Target signature provides too few arguments. Expected 1 or more, but got 0.","category":1,"code":2849}]},"relatedInformation":[{"file":"../../src/lib/basebuilder.test/basebuilder.test.types.ts","start":719,"length":47,"messageText":"The expected type comes from property 'a BaseBuilder with Test Resource Requirements' which is declared here on type 'TestGivenImplementation<I, O>'","category":3,"code":6500}]},{"start":1663,"length":21,"code":2322,"category":1,"messageText":{"messageText":"Type '(builder: BaseBuilder<any, any, any, any, any, any>, utils: PM) => BaseBuilder<any, any, any, any, any, any>' is not assignable to type '(ssel: BaseBuilder<any, any, any, any, any, any>, utils: PM) => (store: any) => any'.","category":1,"code":2322,"next":[{"messageText":"Type 'BaseBuilder<any, any, any, any, any, any>' is not assignable to type '(store: any) => any'.","category":1,"code":2322,"next":[{"messageText":"Type 'BaseBuilder<any, any, any, any, any, any>' provides no match for the signature '(store: any): any'.","category":1,"code":2658}],"canonicalHead":{"code":2322,"messageText":"Type '(builder: BaseBuilder<any, any, any, any, any, any>, utils: PM) => BaseBuilder<any, any, any, any, any, any>' is not assignable to type '(ssel: BaseBuilder<any, any, any, any, any, any>, utils: PM) => (store: any) => any'."}}]},"relatedInformation":[{"file":"../../src/types.ts","start":3762,"length":81,"messageText":"The expected type comes from the return type of this signature.","category":3,"code":6502}]},{"start":1959,"length":11,"code":2339,"category":1,"messageText":"Property 'constructor' does not exist on type 'never'."},{"start":2437,"length":27,"code":2322,"category":1,"messageText":{"messageText":"Type '(builder: TestSubject) => TestSubject' is not assignable to type '(ssel: BaseBuilder<any, any, any, any, any, any>, utils: PM) => (store: any) => any'.","category":1,"code":2322,"next":[{"messageText":"Type 'TestSubject' is not assignable to type '(store: any) => any'.","category":1,"code":2322,"next":[{"messageText":"Type 'MockBaseBuilder<any, any, any, any, any, any>' provides no match for the signature '(store: any): any'.","category":1,"code":2658}],"canonicalHead":{"code":2322,"messageText":"Type '(builder: TestSubject) => TestSubject' is not assignable to type '(ssel: BaseBuilder<any, any, any, any, any, any>, utils: PM) => (store: any) => any'."}}]},"relatedInformation":[{"file":"../../src/types.ts","start":3762,"length":81,"messageText":"The expected type comes from the return type of this signature.","category":3,"code":6502}]},{"start":2627,"length":27,"code":2322,"category":1,"messageText":{"messageText":"Type '(builder: TestSubject) => TestSubject' is not assignable to type '(ssel: BaseBuilder<any, any, any, any, any, any>, utils: PM) => (store: any) => any'.","category":1,"code":2322,"next":[{"messageText":"Type 'TestSubject' is not assignable to type '(store: any) => any'.","category":1,"code":2322,"next":[{"messageText":"Type 'MockBaseBuilder<any, any, any, any, any, any>' provides no match for the signature '(store: any): any'.","category":1,"code":2658}],"canonicalHead":{"code":2322,"messageText":"Type '(builder: TestSubject) => TestSubject' is not assignable to type '(ssel: BaseBuilder<any, any, any, any, any, any>, utils: PM) => (store: any) => any'."}}]},"relatedInformation":[{"file":"../../src/types.ts","start":3762,"length":81,"messageText":"The expected type comes from the return type of this signature.","category":3,"code":6502}]},{"start":2826,"length":34,"code":2322,"category":1,"messageText":{"messageText":"Type '(builder: TestSubject, utils: PM) => TestSubject' is not assignable to type '(ssel: BaseBuilder<any, any, any, any, any, any>, utils: PM) => (store: any) => any'.","category":1,"code":2322,"next":[{"messageText":"Type 'TestSubject' is not assignable to type '(store: any) => any'.","category":1,"code":2322,"next":[{"messageText":"Type 'MockBaseBuilder<any, any, any, any, any, any>' provides no match for the signature '(store: any): any'.","category":1,"code":2658}],"canonicalHead":{"code":2322,"messageText":"Type '(builder: TestSubject, utils: PM) => TestSubject' is not assignable to type '(ssel: BaseBuilder<any, any, any, any, any, any>, utils: PM) => (store: any) => any'."}}]},"relatedInformation":[{"file":"../../src/types.ts","start":3762,"length":81,"messageText":"The expected type comes from the return type of this signature.","category":3,"code":6502}]}]],[792,[{"start":274,"length":9,"code":2322,"category":1,"messageText":{"messageText":"Type '() => Promise<void>' is not assignable to type '(input: {}, testResource: ITTestResourceConfiguration, pm: IPM) => Promise<BaseBuilder<any, any, any, any, any, any>>'.","category":1,"code":2322,"next":[{"messageText":"Type 'Promise<void>' is not assignable to type 'Promise<BaseBuilder<any, any, any, any, any, any>>'.","category":1,"code":2322,"next":[{"messageText":"Type 'void' is not assignable to type 'BaseBuilder<any, any, any, any, any, any>'.","category":1,"code":2322}],"canonicalHead":{"code":2322,"messageText":"Type '() => Promise<void>' is not assignable to type '(input: {}, testResource: ITTestResourceConfiguration, pm: IPM) => Promise<BaseBuilder<any, any, any, any, any, any>>'."}}]},"relatedInformation":[{"file":"../../src/coretypes.ts","start":1009,"length":9,"messageText":"The expected type comes from property 'beforeAll' which is declared here on type 'ITestAdapter<I>'","category":3,"code":6500}]},{"start":303,"length":10,"code":2322,"category":1,"messageText":{"messageText":"Type '(subject: BaseBuilder<any, any, any, any, any, any>, initializer: (c?: any) => () => BaseBuilder<any, any, any, any, any, any>) => Promise<() => BaseBuilder<any, any, any, any, any, any>>' is not assignable to type '(subject: BaseBuilder<any, any, any, any, any, any>, initializer: (c?: any) => () => BaseBuilder<any, any, any, any, any, any>, testResource: ITTestResourceConfiguration, initialValues: any, pm: IPM) => Promise<...>'.","category":1,"code":2322,"next":[{"messageText":"Type 'Promise<() => BaseBuilder<any, any, any, any, any, any>>' is not assignable to type 'Promise<BaseBuilder<any, any, any, any, any, any>>'.","category":1,"code":2322,"next":[{"messageText":"Type '() => BaseBuilder<any, any, any, any, any, any>' is not assignable to type 'BaseBuilder<any, any, any, any, any, any>'.","category":1,"code":2322}],"canonicalHead":{"code":2322,"messageText":"Type '(subject: BaseBuilder<any, any, any, any, any, any>, initializer: (c?: any) => () => BaseBuilder<any, any, any, any, any, any>) => Promise<() => BaseBuilder<any, any, any, any, any, any>>' is not assignable to type '(subject: BaseBuilder<any, any, any, any, any, any>, initializer: (c?: any) => () => BaseBuilder<any, any, any, any, any, any>, testResource: ITTestResourceConfiguration, initialValues: any, pm: IPM) => Promise<...>'."}}]},"relatedInformation":[{"file":"../../src/coretypes.ts","start":1138,"length":10,"messageText":"The expected type comes from property 'beforeEach' which is declared here on type 'ITestAdapter<I>'","category":3,"code":6500}]},{"start":617,"length":5,"messageText":"Expected 1 arguments, but got 2.","category":1,"code":2554},{"start":711,"length":2,"messageText":"Expected 1 arguments, but got 2.","category":1,"code":2554},{"start":745,"length":5,"code":2739,"category":1,"messageText":"Type 'BaseBuilder<any, any, any, any, any, any>' is missing the following properties from type 'Promise<unknown>': then, catch, finally, [Symbol.toStringTag]","relatedInformation":[{"file":"../../src/coretypes.ts","start":943,"length":62,"messageText":"The expected type comes from the return type of this signature.","category":3,"code":6502},{"start":734,"length":16,"messageText":"Did you mean to mark this function as 'async'?","category":1,"code":1356}],"canonicalHead":{"code":2322,"messageText":"Type 'BaseBuilder<any, any, any, any, any, any>' is not assignable to type 'Promise<unknown>'."}}]],[793,[{"start":1067,"length":18,"code":2345,"category":1,"messageText":{"messageText":"Argument of type 'ITestImplementation<I, O, M>' is not assignable to parameter of type 'Omit<{ suites: TestSuiteImplementation<O>; givens: TestGivenImplementation<I, O>; whens: TestWhenImplementation<I, O>; thens: TestThenImplementation<...>; }, keyof M> & M & { ...; }'.","category":1,"code":2345,"next":[{"messageText":"Type 'Omit<{ suites: TestSuiteImplementation<O>; givens: TestGivenImplementation<I, O>; whens: TestWhenImplementation<I, O>; thens: TestThenImplementation<...>; }, keyof M>' is missing the following properties from type '{ suites: Record<string, never>; givens: Record<string, any>; whens: Record<string, any>; thens: Record<string, any>; }': suites, givens, whens, thens","category":1,"code":2739,"canonicalHead":{"code":2322,"messageText":"Type 'ITestImplementation<I, O, M>' is not assignable to type '{ suites: Record<string, never>; givens: Record<string, any>; whens: Record<string, any>; thens: Record<string, any>; }'."}}]}}]],[795,[{"start":558,"length":15,"messageText":"Expected 4 arguments, but got 3.","category":1,"code":2554,"relatedInformation":[{"file":"../../src/types.ts","start":2626,"length":25,"messageText":"Arguments for the rest parameter 'xtrasB' were not provided.","category":1,"code":6236}]},{"start":696,"length":24,"messageText":"Expected 4 arguments, but got 3.","category":1,"code":2554,"relatedInformation":[{"file":"../../src/types.ts","start":2626,"length":25,"messageText":"Arguments for the rest parameter 'xtrasB' were not provided.","category":1,"code":6236}]},{"start":1804,"length":24,"messageText":"Expected 4 arguments, but got 3.","category":1,"code":2554,"relatedInformation":[{"file":"../../src/types.ts","start":2626,"length":25,"messageText":"Arguments for the rest parameter 'xtrasB' were not provided.","category":1,"code":6236}]},{"start":1970,"length":23,"messageText":"Expected 4 arguments, but got 3.","category":1,"code":2554,"relatedInformation":[{"file":"../../src/types.ts","start":2626,"length":25,"messageText":"Arguments for the rest parameter 'xtrasB' were not provided.","category":1,"code":6236}]},{"start":2456,"length":8,"messageText":"Cannot find name 'ITestJob'.","category":1,"code":2304},{"start":2917,"length":2,"messageText":"Expected 2 arguments, but got 3.","category":1,"code":2554}]],[796,[{"start":261,"length":16,"messageText":"'\"../classBuilder\"' has no exported member named 'TestClassBuilder'. Did you mean 'ClassBuilder'?","category":1,"code":2724,"relatedInformation":[{"file":"../../src/lib/classbuilder.ts","start":607,"length":12,"messageText":"'ClassBuilder' is declared here.","category":3,"code":2728}]},{"start":975,"length":9,"code":2345,"category":1,"messageText":{"messageText":"Argument of type 'typeof MockSuite' is not assignable to parameter of type 'ISuiteKlasser<I, O>'.","category":1,"code":2345,"next":[{"messageText":"Type 'typeof MockSuite' provides no match for the signature '(name: string, index: number, givens: IGivens<I>): BaseSuite<I, O>'.","category":1,"code":2658}]}},{"start":1449,"length":13,"messageText":"Expected 8 arguments, but got 9.","category":1,"code":2554},{"start":1732,"length":12,"messageText":"Expected 8 arguments, but got 9.","category":1,"code":2554},{"start":2004,"length":13,"messageText":"Expected 8 arguments, but got 9.","category":1,"code":2554},{"start":2276,"length":13,"messageText":"Expected 8 arguments, but got 9.","category":1,"code":2554},{"start":5914,"length":20,"code":2322,"category":1,"messageText":{"messageText":"Type '(builder: ClassBuilder<any, any, any>) => Promise<ClassBuilder<any, any, any>>' is not assignable to type '(builder: ClassBuilder<any, any, any>) => ClassBuilder<any, any, any>'.","category":1,"code":2322,"next":[{"messageText":"Type 'Promise<ClassBuilder<any, any, any>>' is missing the following properties from type 'ClassBuilder<any, any, any>': specs, assertThis, testResourceRequirement, artifacts, and 12 more.","category":1,"code":2740,"canonicalHead":{"code":2322,"messageText":"Type '(builder: ClassBuilder<any, any, any>) => Promise<ClassBuilder<any, any, any>>' is not assignable to type '(builder: ClassBuilder<any, any, any>) => ClassBuilder<any, any, any>'."}}]},"relatedInformation":[{"file":"../../src/lib/classbuilder.test/classbuilder.test.types.ts","start":2032,"length":109,"messageText":"The expected type comes from the return type of this signature.","category":3,"code":6502}]},{"start":5969,"length":7,"code":2339,"category":1,"messageText":"Property 'testRun' does not exist on type 'ClassBuilder<any, any, any>'."}]],[798,[{"start":925,"length":5,"code":2322,"category":1,"messageText":"Type 'never[]' is not assignable to type 'number'.","relatedInformation":[{"file":"../../src/lib/index.ts","start":1996,"length":5,"messageText":"The expected type comes from property 'ports' which is declared here on type 'ITTestResourceRequest'","category":3,"code":6500}]},{"start":1495,"length":18,"code":2345,"category":1,"messageText":{"messageText":"Argument of type 'ITestImplementation<I, O, M>' is not assignable to parameter of type 'Omit<{ suites: TestSuiteImplementation<O>; givens: TestGivenImplementation<I, O>; whens: TestWhenImplementation<I, O>; thens: TestThenImplementation<...>; }, keyof M> & M & { ...; }'.","category":1,"code":2345,"next":[{"messageText":"Type 'Omit<{ suites: TestSuiteImplementation<O>; givens: TestGivenImplementation<I, O>; whens: TestWhenImplementation<I, O>; thens: TestThenImplementation<...>; }, keyof M>' is missing the following properties from type '{ suites: Record<string, any>; givens: Record<string, any>; whens: Record<string, any>; thens: Record<string, any>; }': suites, givens, whens, thens","category":1,"code":2739,"canonicalHead":{"code":2322,"messageText":"Type 'ITestImplementation<I, O, M>' is not assignable to type '{ suites: Record<string, any>; givens: Record<string, any>; whens: Record<string, any>; thens: Record<string, any>; }'."}}]}}]],[799,[{"start":432,"length":777,"messageText":"Generic type 'Ibdd_out' requires between 0 and 4 type arguments.","category":1,"code":2707}]],[800,[{"start":874,"length":2,"messageText":"Expected 1 arguments, but got 2.","category":1,"code":2554},{"start":965,"length":2,"messageText":"Expected 1 arguments, but got 2.","category":1,"code":2554},{"start":999,"length":5,"code":2739,"category":1,"messageText":"Type 'MockCore<any, any, any>' is missing the following properties from type 'Promise<unknown>': then, catch, finally, [Symbol.toStringTag]","relatedInformation":[{"file":"../../src/coretypes.ts","start":943,"length":62,"messageText":"The expected type comes from the return type of this signature.","category":3,"code":6502},{"start":988,"length":16,"messageText":"Did you mean to mark this function as 'async'?","category":1,"code":1356}],"canonicalHead":{"code":2322,"messageText":"Type 'MockCore<any, any, any>' is not assignable to type 'Promise<unknown>'."}}]],[801,[{"start":597,"length":13,"messageText":"Cannot find name 'specification'.","category":1,"code":2304},{"start":648,"length":11,"code":2345,"category":1,"messageText":{"messageText":"Argument of type '{ ports: number[]; }' is not assignable to parameter of type 'ITTestResourceRequest'.","category":1,"code":2345,"next":[{"messageText":"Types of property 'ports' are incompatible.","category":1,"code":2326,"next":[{"messageText":"Type 'number[]' is not assignable to type 'number'.","category":1,"code":2322}]}]}},{"start":671,"length":11,"messageText":"Cannot find name 'testAdapter'.","category":1,"code":2304},{"start":948,"length":13,"messageText":"Cannot find name 'specification'.","category":1,"code":2304},{"start":997,"length":5,"code":2322,"category":1,"messageText":"Type 'never[]' is not assignable to type 'number'."},{"start":1018,"length":11,"messageText":"Cannot find name 'testAdapter'.","category":1,"code":2304},{"start":1188,"length":13,"messageText":"Cannot find name 'specification'.","category":1,"code":2304},{"start":1257,"length":11,"messageText":"Cannot find name 'testAdapter'.","category":1,"code":2304},{"start":1426,"length":13,"messageText":"Cannot find name 'specification'.","category":1,"code":2304},{"start":1475,"length":5,"code":2322,"category":1,"messageText":"Type 'never[]' is not assignable to type 'number'."},{"start":1501,"length":11,"messageText":"Cannot find name 'testAdapter'.","category":1,"code":2304},{"start":2512,"length":11,"code":2339,"category":1,"messageText":"Property 'constructor' does not exist on type 'never'."},{"start":3836,"length":20,"code":2322,"category":1,"messageText":{"messageText":"Type '(builder: MockCore<any, any, any>) => Promise<MockCore<any, any, any>>' is not assignable to type '(builder: MockCore<any, any, any>) => MockCore<any, any, any>'.","category":1,"code":2322,"next":[{"messageText":"Type 'Promise<MockCore<any, any, any>>' is missing the following properties from type 'MockCore<any, any, any>': specs, testJobs, artifacts, testResourceRequirement, and 14 more.","category":1,"code":2740,"canonicalHead":{"code":2322,"messageText":"Type '(builder: MockCore<any, any, any>) => Promise<MockCore<any, any, any>>' is not assignable to type '(builder: MockCore<any, any, any>) => MockCore<any, any, any>'."}}]},"relatedInformation":[{"file":"../../src/lib/core.test/core.test.types.ts","start":1531,"length":101,"messageText":"The expected type comes from the return type of this signature.","category":3,"code":6502}]}]],[802,[{"start":593,"length":1384,"messageText":"Expected 2 arguments, but got 4.","category":1,"code":2554},{"start":988,"length":4,"code":2353,"category":1,"messageText":"Object literal may only specify known properties, and 'test' does not exist in type 'string[]'."},{"start":1169,"length":5,"code":2353,"category":1,"messageText":"Object literal may only specify known properties, and 'ports' does not exist in type 'string[]'."},{"start":1334,"length":10,"code":2353,"category":1,"messageText":"Object literal may only specify known properties, and 'assertThis' does not exist in type 'string[]'."},{"start":2090,"length":876,"messageText":"Expected 2 arguments, but got 3.","category":1,"code":2554}]],[804,[{"start":1412,"length":21,"code":2322,"category":1,"messageText":{"messageText":"Type '(method: string, expectedPath: string) => (store: { pathRewriter: PathRewriter; }) => [undefined, undefined] | [string, string, any] | [any, string]' is not assignable to type '(...It: any) => (ssel: { proxies: ITestProxies; filepath: string; mockPm: IPM; }, utils: PM) => [IPM, \"string\"]'.","category":1,"code":2322,"next":[{"messageText":"Type '(store: { pathRewriter: PathRewriter; }) => [undefined, undefined] | [string, string, any] | [any, string]' is not assignable to type '(ssel: { proxies: ITestProxies; filepath: string; mockPm: IPM; }, utils: PM) => [IPM, \"string\"]'.","category":1,"code":2322,"next":[{"messageText":"Types of parameters 'store' and 'ssel' are incompatible.","category":1,"code":2328,"next":[{"messageText":"Property 'pathRewriter' is missing in type '{ proxies: ITestProxies; filepath: string; mockPm: IPM; }' but required in type '{ pathRewriter: PathRewriter; }'.","category":1,"code":2741,"canonicalHead":{"code":2322,"messageText":"Type '{ proxies: ITestProxies; filepath: string; mockPm: IPM; }' is not assignable to type '{ pathRewriter: PathRewriter; }'."}}]}],"canonicalHead":{"code":2322,"messageText":"Type '(method: string, expectedPath: string) => (store: { pathRewriter: PathRewriter; }) => [undefined, undefined] | [string, string, any] | [any, string]' is not assignable to type '(...It: any) => (ssel: { proxies: ITestProxies; filepath: string; mockPm: IPM; }, utils: PM) => [IPM, \"string\"]'."}}]},"relatedInformation":[{"start":1499,"length":12,"messageText":"'pathRewriter' is declared here.","category":3,"code":2728},{"file":"../../src/types.ts","start":3733,"length":113,"messageText":"The expected type comes from property 'theButTheProxyReturns' which is declared here on type 'TestThenImplementation<I, any>'","category":3,"code":6500}]},{"start":2441,"length":7,"messageText":"Expected 1 arguments, but got 2.","category":1,"code":2554},{"start":2500,"length":11,"code":2339,"category":1,"messageText":{"messageText":"Property 'getLastCall' does not exist on type 'IPM'.","category":1,"code":2339,"next":[{"messageText":"Property 'getLastCall' does not exist on type 'PM_Node'.","category":1,"code":2339}]}},{"start":2573,"length":11,"code":2339,"category":1,"messageText":{"messageText":"Property 'getLastCall' does not exist on type 'IPM'.","category":1,"code":2339,"next":[{"messageText":"Property 'getLastCall' does not exist on type 'PM_Node'.","category":1,"code":2339}]}},{"start":2858,"length":11,"code":2339,"category":1,"messageText":{"messageText":"Property 'getLastCall' does not exist on type 'IPM'.","category":1,"code":2339,"next":[{"messageText":"Property 'getLastCall' does not exist on type 'PM_Node'.","category":1,"code":2339}]}},{"start":3048,"length":4,"code":2322,"category":1,"messageText":"Type '\"screen.png\"' is not assignable to type '`${string}.webm`'.","relatedInformation":[{"file":"../../node_modules/puppeteer-core/lib/types.d.ts","start":250999,"length":4,"messageText":"The expected type comes from property 'path' which is declared here on type 'ScreencastOptions'","category":3,"code":6500}]},{"start":3226,"length":11,"code":2339,"category":1,"messageText":{"messageText":"Property 'getLastCall' does not exist on type 'IPM'.","category":1,"code":2339,"next":[{"messageText":"Property 'getLastCall' does not exist on type 'PM_Node'.","category":1,"code":2339}]}},{"start":3302,"length":11,"code":2339,"category":1,"messageText":{"messageText":"Property 'getLastCall' does not exist on type 'IPM'.","category":1,"code":2339,"next":[{"messageText":"Property 'getLastCall' does not exist on type 'PM_Node'.","category":1,"code":2339}]}},{"start":3462,"length":4,"code":2322,"category":1,"messageText":"Type '\"shot.png\"' is not assignable to type '`${string}.webm`'.","relatedInformation":[{"file":"../../node_modules/puppeteer-core/lib/types.d.ts","start":253278,"length":4,"messageText":"The expected type comes from property 'path' which is declared here on type 'ScreenshotOptions & ScreencastOptions'","category":3,"code":6500}]},{"start":3525,"length":11,"code":2339,"category":1,"messageText":{"messageText":"Property 'getLastCall' does not exist on type 'IPM'.","category":1,"code":2339,"next":[{"messageText":"Property 'getLastCall' does not exist on type 'PM_Node'.","category":1,"code":2339}]}},{"start":3944,"length":13,"code":2322,"category":1,"messageText":{"messageText":"Type '(expectedContent: any) => (result: any[]) => any[]' is not assignable to type '(...It: any) => (ssel: { proxies: ITestProxies; filepath: string; mockPm: IPM; }, utils: PM) => [IPM, \"string\"]'.","category":1,"code":2322,"next":[{"messageText":"Type '(result: any[]) => any[]' is not assignable to type '(ssel: { proxies: ITestProxies; filepath: string; mockPm: IPM; }, utils: PM) => [IPM, \"string\"]'.","category":1,"code":2322,"next":[{"messageText":"Types of parameters 'result' and 'ssel' are incompatible.","category":1,"code":2328,"next":[{"messageText":"Type '{ proxies: ITestProxies; filepath: string; mockPm: IPM; }' is missing the following properties from type 'any[]': length, pop, push, concat, and 35 more.","category":1,"code":2740,"canonicalHead":{"code":2322,"messageText":"Type '{ proxies: ITestProxies; filepath: string; mockPm: IPM; }' is not assignable to type 'any[]'."}}]}],"canonicalHead":{"code":2322,"messageText":"Type '(expectedContent: any) => (result: any[]) => any[]' is not assignable to type '(...It: any) => (ssel: { proxies: ITestProxies; filepath: string; mockPm: IPM; }, utils: PM) => [IPM, \"string\"]'."}}]},"relatedInformation":[{"file":"../../src/types.ts","start":3733,"length":113,"messageText":"The expected type comes from property 'verifyContent' which is declared here on type 'TestThenImplementation<I, any>'","category":3,"code":6500}]}]],[806,[{"start":482,"length":14,"code":2345,"category":1,"messageText":{"messageText":"Argument of type 'ITestImplementation<I, any, M>' is not assignable to parameter of type 'Omit<{ suites: TestSuiteImplementation<any>; givens: TestGivenImplementation<I, any>; whens: TestWhenImplementation<I, any>; thens: TestThenImplementation<...>; }, never>'.","category":1,"code":2345,"next":[{"messageText":"Types of property 'givens' are incompatible.","category":1,"code":2326,"next":[{"messageText":"Type '{ [x: string]: (...Iw: any) => string; }' is not assignable to type 'TestGivenImplementation<I, any>'.","category":1,"code":2322,"next":[{"messageText":"'string' index signatures are incompatible.","category":1,"code":2634,"next":[{"messageText":"Type '(...Iw: any) => string' is not assignable to type '(...Ig: any) => [string, string]'.","category":1,"code":2322,"next":[{"messageText":"Type 'string' is not assignable to type '[string, string]'.","category":1,"code":2322,"canonicalHead":{"code":2322,"messageText":"Type '(...Iw: any) => string' is not assignable to type '(...Ig: any) => [string, string]'."}}]}]}]}]}]}}]],[807,[{"start":531,"length":188,"messageText":"Generic type 'Ibdd_out' requires between 0 and 4 type arguments.","category":1,"code":2707}]],[808,[{"start":423,"length":10,"code":2719,"category":1,"messageText":{"messageText":"Type '(subject: { proxies: import(\"/Users/adam/Code/testeranto/src/lib/pmProxy.test/index\").ITestProxies; filepath: string; mockPm: import(\"/Users/adam/Code/testeranto/src/lib/types\").IPM; }, initializer: (c?: any) => [...], testResource: import(\"/Users/adam/Code/testeranto/src/lib/index\").ITTestResourceConfiguration, ini...' is not assignable to type '(subject: { proxies: import(\"/Users/adam/Code/testeranto/src/lib/pmProxy.test/index\").ITestProxies; filepath: string; mockPm: import(\"/Users/adam/Code/testeranto/src/lib/types\").IPM; }, initializer: (c?: any) => [...], testResource: import(\"/Users/adam/Code/testeranto/src/lib/index\").ITTestResourceConfiguration, ini...'. Two different types with this name exist, but they are unrelated.","category":1,"code":2719,"next":[{"messageText":"Type 'Promise<{ proxies: ITestProxies; filepath: string; mockPm: IPM; }>' is not assignable to type 'Promise<{ butThenProxy: IProxy; }>'.","category":1,"code":2322,"next":[{"messageText":"Property 'butThenProxy' is missing in type '{ proxies: ITestProxies; filepath: string; mockPm: IPM; }' but required in type '{ butThenProxy: IProxy; }'.","category":1,"code":2741,"canonicalHead":{"code":2322,"messageText":"Type '{ proxies: ITestProxies; filepath: string; mockPm: IPM; }' is not assignable to type '{ butThenProxy: IProxy; }'."}}],"canonicalHead":{"code":2719,"messageText":"Type '(subject: { proxies: import(\"/Users/adam/Code/testeranto/src/lib/pmProxy.test/index\").ITestProxies; filepath: string; mockPm: import(\"/Users/adam/Code/testeranto/src/lib/types\").IPM; }, initializer: (c?: any) => [...], testResource: import(\"/Users/adam/Code/testeranto/src/lib/index\").ITTestResourceConfiguration, ini...' is not assignable to type '(subject: { proxies: import(\"/Users/adam/Code/testeranto/src/lib/pmProxy.test/index\").ITestProxies; filepath: string; mockPm: import(\"/Users/adam/Code/testeranto/src/lib/types\").IPM; }, initializer: (c?: any) => [...], testResource: import(\"/Users/adam/Code/testeranto/src/lib/index\").ITTestResourceConfiguration, ini...'. Two different types with this name exist, but they are unrelated."}}]},"relatedInformation":[{"file":"../../src/lib/pmproxy.test/types.ts","start":294,"length":12,"messageText":"'butThenProxy' is declared here.","category":3,"code":2728},{"file":"../../src/coretypes.ts","start":1138,"length":10,"messageText":"The expected type comes from property 'beforeEach' which is declared here on type 'ITestAdapter<I>'","category":3,"code":6500}]},{"start":722,"length":7,"code":2719,"category":1,"messageText":{"messageText":"Type '(store: { butThenProxy: import(\"/Users/adam/Code/testeranto/src/lib/pmProxy\").IProxy; }, whenCB: (...args: any[]) => (proxies: { butThenProxy: import(\"/Users/adam/Code/testeranto/src/lib/pmProxy\").IProxy; }) => { ...; }, testResource: import(\"/Users/adam/Code/testeranto/src/lib/index\").ITTestResourceConfiguration, p...' is not assignable to type '(store: { butThenProxy: import(\"/Users/adam/Code/testeranto/src/lib/pmProxy\").IProxy; }, whenCB: (...args: any[]) => (proxies: { butThenProxy: import(\"/Users/adam/Code/testeranto/src/lib/pmProxy\").IProxy; }) => { ...; }, testResource: import(\"/Users/adam/Code/testeranto/src/lib/index\").ITTestResourceConfiguration, p...'. Two different types with this name exist, but they are unrelated.","category":1,"code":2719,"next":[{"messageText":"Type 'Promise<(proxies: { butThenProxy: IProxy; }) => { butThenProxy: IProxy; }>' is not assignable to type 'Promise<{ butThenProxy: IProxy; }>'.","category":1,"code":2322,"next":[{"messageText":"Type '(proxies: { butThenProxy: IProxy; }) => { butThenProxy: IProxy; }' is not assignable to type '{ butThenProxy: IProxy; }'.","category":1,"code":2322}],"canonicalHead":{"code":2719,"messageText":"Type '(store: { butThenProxy: import(\"/Users/adam/Code/testeranto/src/lib/pmProxy\").IProxy; }, whenCB: (...args: any[]) => (proxies: { butThenProxy: import(\"/Users/adam/Code/testeranto/src/lib/pmProxy\").IProxy; }) => { ...; }, testResource: import(\"/Users/adam/Code/testeranto/src/lib/index\").ITTestResourceConfiguration, p...' is not assignable to type '(store: { butThenProxy: import(\"/Users/adam/Code/testeranto/src/lib/pmProxy\").IProxy; }, whenCB: (...args: any[]) => (proxies: { butThenProxy: import(\"/Users/adam/Code/testeranto/src/lib/pmProxy\").IProxy; }) => { ...; }, testResource: import(\"/Users/adam/Code/testeranto/src/lib/index\").ITTestResourceConfiguration, p...'. Two different types with this name exist, but they are unrelated."}}]},"relatedInformation":[{"file":"../../src/coretypes.ts","start":582,"length":7,"messageText":"The expected type comes from property 'andWhen' which is declared here on type 'ITestAdapter<I>'","category":3,"code":6500}]},{"start":1156,"length":6,"code":2349,"category":1,"messageText":{"messageText":"This expression is not callable.","category":1,"code":2349,"next":[{"messageText":"Type '[IPM, \"string\"]' has no call signatures.","category":1,"code":2757}]}},{"start":1273,"length":9,"code":2322,"category":1,"messageText":{"messageText":"Type '(input: any, testResource: any, pm: any, theGivenString: any) => Promise<{ beforeEachProxy: any; }>' is not assignable to type '(input: { butThenProxy: IProxy; }, testResource: ITTestResourceConfiguration, pm: IPM) => Promise<{ proxies: ITestProxies; filepath: string; mockPm: IPM; }>'.","category":1,"code":2322,"next":[{"messageText":"Target signature provides too few arguments. Expected 4 or more, but got 3.","category":1,"code":2849}]},"relatedInformation":[{"file":"../../src/coretypes.ts","start":1009,"length":9,"messageText":"The expected type comes from property 'beforeAll' which is declared here on type 'ITestAdapter<I>'","category":3,"code":6500}]},{"start":1484,"length":10,"code":2322,"category":1,"messageText":{"messageText":"Type '(returnedFilePath: any, expectation: any) => void' is not assignable to type '(x: [IPM, \"string\"]) => any'.","category":1,"code":2322,"next":[{"messageText":"Target signature provides too few arguments. Expected 2 or more, but got 1.","category":1,"code":2849}]},"relatedInformation":[{"file":"../../src/coretypes.ts","start":545,"length":10,"messageText":"The expected type comes from property 'assertThis' which is declared here on type 'ITestAdapter<I>'","category":3,"code":6500}]}]],[809,[{"start":435,"length":13,"code":2416,"category":1,"messageText":{"messageText":"Property 'launchSideCar' in type 'MockPM' is not assignable to the same property in base type 'MockPMBase'.","category":1,"code":2416,"next":[{"messageText":"Type '(n: number) => Promise<[number, any]>' is not assignable to type '(n: number, testName: string, projectName: string) => Promise<void>'.","category":1,"code":2322,"next":[{"messageText":"Type 'Promise<[number, any]>' is not assignable to type 'Promise<void>'.","category":1,"code":2322,"next":[{"messageText":"Type '[number, any]' is not assignable to type 'void'.","category":1,"code":2322}],"canonicalHead":{"code":2322,"messageText":"Type '(n: number) => Promise<[number, any]>' is not assignable to type '(n: number, testName: string, projectName: string) => Promise<void>'."}}]}]}}]],[820,[{"start":1282,"length":2,"messageText":"Expected 2 arguments, but got 3.","category":1,"code":2554},{"start":1365,"length":13,"code":2322,"category":1,"messageText":"Type '(x: any) => any' is not assignable to type 'string'.","relatedInformation":[{"start":596,"length":13,"messageText":"The expected type comes from property 'TheMothership' which is declared here on type 'TestSuiteImplementation<O>'","category":3,"code":6500}]}]],[822,[{"start":8526,"length":9,"code":2786,"category":1,"messageText":{"messageText":"'Container' cannot be used as a JSX component.","category":1,"code":2786,"next":[{"messageText":"Its type 'BsPrefixRefForwardingComponent<\"div\", ContainerProps>' is not a valid JSX element type.","category":1,"code":18053,"next":[{"messageText":"Type 'BsPrefixRefForwardingComponent<\"div\", ContainerProps>' is not assignable to type '(props: any, deprecatedLegacyContext?: any) => ReactNode'.","category":1,"code":2322,"next":[{"messageText":"Type 'ReactElement<any, string | JSXElementConstructor<any>> | null' is not assignable to type 'ReactNode'.","category":1,"code":2322,"next":[{"messageText":"Type 'ReactElement<any, string | JSXElementConstructor<any>>' is not assignable to type 'ReactNode'.","category":1,"code":2322,"next":[{"messageText":"Property 'children' is missing in type 'ReactElement<any, string | JSXElementConstructor<any>>' but required in type 'ReactPortal'.","category":1,"code":2741,"canonicalHead":{"code":2322,"messageText":"Type 'ReactElement<any, string | JSXElementConstructor<any>>' is not assignable to type 'ReactPortal'."}}]}],"canonicalHead":{"code":2322,"messageText":"Type 'BsPrefixRefForwardingComponent<\"div\", ContainerProps>' is not assignable to type '(props: any, deprecatedLegacyContext?: any) => ReactNode'."}}]}]}]},"relatedInformation":[{"file":"../../../testeranto-react/node_modules/@types/react/index.d.ts","start":10658,"length":8,"messageText":"'children' is declared here.","category":3,"code":2728}]},{"start":8567,"length":6,"code":2786,"category":1,"messageText":{"messageText":"'NavBar' cannot be used as a JSX component.","category":1,"code":2786,"next":[{"messageText":"Its type 'FC<NavBarProps>' is not a valid JSX element type.","category":1,"code":18053,"next":[{"messageText":"Type 'FunctionComponent<NavBarProps>' is not assignable to type '(props: any, deprecatedLegacyContext?: any) => ReactNode'.","category":1,"code":2322,"next":[{"messageText":"Type 'ReactElement<any, any> | null' is not assignable to type 'ReactNode'.","category":1,"code":2322,"next":[{"messageText":"Type 'ReactElement<any, any>' is not assignable to type 'ReactNode'.","category":1,"code":2322,"next":[{"messageText":"Property 'children' is missing in type 'ReactElement<any, any>' but required in type 'ReactPortal'.","category":1,"code":2741,"canonicalHead":{"code":2322,"messageText":"Type 'ReactElement<any, any>' is not assignable to type 'ReactPortal'."}}]}],"canonicalHead":{"code":2322,"messageText":"Type 'FunctionComponent<NavBarProps>' is not assignable to type '(props: any, deprecatedLegacyContext?: any) => ReactNode'."}}]}]}]},"relatedInformation":[{"file":"../../../testeranto-react/node_modules/@types/react/index.d.ts","start":10658,"length":8,"messageText":"'children' is declared here.","category":3,"code":2728}]},{"start":9023,"length":6,"code":2786,"category":1,"messageText":{"messageText":"'Button' cannot be used as a JSX component.","category":1,"code":2786,"next":[{"messageText":"Its type 'BsPrefixRefForwardingComponent<\"button\", ButtonProps>' is not a valid JSX element type.","category":1,"code":18053,"next":[{"messageText":"Type 'BsPrefixRefForwardingComponent<\"button\", ButtonProps>' is not assignable to type '(props: any, deprecatedLegacyContext?: any) => ReactNode'.","category":1,"code":2322,"next":[{"messageText":"Type 'ReactElement<any, string | JSXElementConstructor<any>> | null' is not assignable to type 'ReactNode'.","category":1,"code":2322,"next":[{"messageText":"Type 'ReactElement<any, string | JSXElementConstructor<any>>' is not assignable to type 'ReactNode'.","category":1,"code":2322,"next":[{"messageText":"Property 'children' is missing in type 'ReactElement<any, string | JSXElementConstructor<any>>' but required in type 'ReactPortal'.","category":1,"code":2741,"canonicalHead":{"code":2322,"messageText":"Type 'ReactElement<any, string | JSXElementConstructor<any>>' is not assignable to type 'ReactPortal'."}}]}],"canonicalHead":{"code":2322,"messageText":"Type 'BsPrefixRefForwardingComponent<\"button\", ButtonProps>' is not assignable to type '(props: any, deprecatedLegacyContext?: any) => ReactNode'."}}]}]}]},"relatedInformation":[{"file":"../../../testeranto-react/node_modules/@types/react/index.d.ts","start":10658,"length":8,"messageText":"'children' is declared here.","category":3,"code":2728}]},{"start":9887,"length":3,"code":2786,"category":1,"messageText":{"messageText":"'Row' cannot be used as a JSX component.","category":1,"code":2786,"next":[{"messageText":"Its type 'BsPrefixRefForwardingComponent<\"div\", RowProps>' is not a valid JSX element type.","category":1,"code":18053,"next":[{"messageText":"Type 'BsPrefixRefForwardingComponent<\"div\", RowProps>' is not assignable to type '(props: any, deprecatedLegacyContext?: any) => ReactNode'.","category":1,"code":2322,"next":[{"messageText":"Type 'ReactElement<any, string | JSXElementConstructor<any>> | null' is not assignable to type 'ReactNode'.","category":1,"code":2322,"next":[{"messageText":"Type 'ReactElement<any, string | JSXElementConstructor<any>>' is not assignable to type 'ReactNode'.","category":1,"code":2322,"next":[{"messageText":"Property 'children' is missing in type 'ReactElement<any, string | JSXElementConstructor<any>>' but required in type 'ReactPortal'.","category":1,"code":2741,"canonicalHead":{"code":2322,"messageText":"Type 'ReactElement<any, string | JSXElementConstructor<any>>' is not assignable to type 'ReactPortal'."}}]}],"canonicalHead":{"code":2322,"messageText":"Type 'BsPrefixRefForwardingComponent<\"div\", RowProps>' is not assignable to type '(props: any, deprecatedLegacyContext?: any) => ReactNode'."}}]}]}]},"relatedInformation":[{"file":"../../../testeranto-react/node_modules/@types/react/index.d.ts","start":10658,"length":8,"messageText":"'children' is declared here.","category":3,"code":2728}]},{"start":9917,"length":3,"code":2786,"category":1,"messageText":{"messageText":"'Col' cannot be used as a JSX component.","category":1,"code":2786,"next":[{"messageText":"Its type 'BsPrefixRefForwardingComponent<\"div\", ColProps>' is not a valid JSX element type.","category":1,"code":18053,"next":[{"messageText":"Type 'BsPrefixRefForwardingComponent<\"div\", ColProps>' is not assignable to type '(props: any, deprecatedLegacyContext?: any) => ReactNode'.","category":1,"code":2322,"next":[{"messageText":"Type 'ReactElement<any, string | JSXElementConstructor<any>> | null' is not assignable to type 'ReactNode'.","category":1,"code":2322,"next":[{"messageText":"Type 'ReactElement<any, string | JSXElementConstructor<any>>' is not assignable to type 'ReactNode'.","category":1,"code":2322,"next":[{"messageText":"Property 'children' is missing in type 'ReactElement<any, string | JSXElementConstructor<any>>' but required in type 'ReactPortal'.","category":1,"code":2741,"canonicalHead":{"code":2322,"messageText":"Type 'ReactElement<any, string | JSXElementConstructor<any>>' is not assignable to type 'ReactPortal'."}}]}],"canonicalHead":{"code":2322,"messageText":"Type 'BsPrefixRefForwardingComponent<\"div\", ColProps>' is not assignable to type '(props: any, deprecatedLegacyContext?: any) => ReactNode'."}}]}]}]},"relatedInformation":[{"file":"../../../testeranto-react/node_modules/@types/react/index.d.ts","start":10658,"length":8,"messageText":"'children' is declared here.","category":3,"code":2728}]},{"start":9963,"length":3,"code":2786,"category":1,"messageText":{"messageText":"'Nav' cannot be used as a JSX component.","category":1,"code":2786,"next":[{"messageText":"Its type 'BsPrefixRefForwardingComponent<\"div\", NavProps> & { Item: BsPrefixRefForwardingComponent<\"div\", NavItemProps>; Link: BsPrefixRefForwardingComponent<...>; }' is not a valid JSX element type.","category":1,"code":18053,"next":[{"messageText":"Type 'BsPrefixRefForwardingComponent<\"div\", NavProps> & { Item: BsPrefixRefForwardingComponent<\"div\", NavItemProps>; Link: BsPrefixRefForwardingComponent<...>; }' is not assignable to type '(props: any, deprecatedLegacyContext?: any) => ReactNode'.","category":1,"code":2322,"next":[{"messageText":"Type 'ReactElement<any, string | JSXElementConstructor<any>> | null' is not assignable to type 'ReactNode'.","category":1,"code":2322,"next":[{"messageText":"Type 'ReactElement<any, string | JSXElementConstructor<any>>' is not assignable to type 'ReactNode'.","category":1,"code":2322,"next":[{"messageText":"Property 'children' is missing in type 'ReactElement<any, string | JSXElementConstructor<any>>' but required in type 'ReactPortal'.","category":1,"code":2741,"canonicalHead":{"code":2322,"messageText":"Type 'ReactElement<any, string | JSXElementConstructor<any>>' is not assignable to type 'ReactPortal'."}}]}],"canonicalHead":{"code":2322,"messageText":"Type 'BsPrefixRefForwardingComponent<\"div\", NavProps> & { Item: BsPrefixRefForwardingComponent<\"div\", NavItemProps>; Link: BsPrefixRefForwardingComponent<...>; }' is not assignable to type '(props: any, deprecatedLegacyContext?: any) => ReactNode'."}}]}]}]},"relatedInformation":[{"file":"../../../testeranto-react/node_modules/@types/react/index.d.ts","start":10658,"length":8,"messageText":"'children' is declared here.","category":3,"code":2728}]},{"start":11120,"length":15,"code":2786,"category":1,"messageText":{"messageText":"'TestStatusBadge' cannot be used as a JSX component.","category":1,"code":2786,"next":[{"messageText":"Its type '(props: TestStatusBadgeProps) => JSX.Element' is not a valid JSX element type.","category":1,"code":18053,"next":[{"messageText":"Type '(props: TestStatusBadgeProps) => JSX.Element' is not assignable to type '(props: any, deprecatedLegacyContext?: any) => ReactNode'.","category":1,"code":2322,"next":[{"messageText":"Type 'Element' is not assignable to type 'ReactNode'.","category":1,"code":2322,"next":[{"messageText":"Property 'children' is missing in type 'Element' but required in type 'ReactPortal'.","category":1,"code":2741,"canonicalHead":{"code":2322,"messageText":"Type 'Element' is not assignable to type 'ReactPortal'."}}],"canonicalHead":{"code":2322,"messageText":"Type '(props: TestStatusBadgeProps) => JSX.Element' is not assignable to type '(props: any, deprecatedLegacyContext?: any) => ReactNode'."}}]}]}]},"relatedInformation":[{"file":"../../../testeranto-react/node_modules/@types/react/index.d.ts","start":10658,"length":8,"messageText":"'children' is declared here.","category":3,"code":2728}]},{"start":11463,"length":9,"code":2322,"category":1,"messageText":{"messageText":"Type '{ testName: string; testsExist: boolean; runTimeErrors: number; typeErrors: number; staticErrors: number; variant: \"compact\"; className: string; }' is not assignable to type 'IntrinsicAttributes & TestStatusBadgeProps'.","category":1,"code":2322,"next":[{"messageText":"Property 'className' does not exist on type 'IntrinsicAttributes & TestStatusBadgeProps'.","category":1,"code":2339}]}},{"start":11582,"length":8,"code":2786,"category":1,"messageText":{"messageText":"'Nav.Item' cannot be used as a JSX component.","category":1,"code":2786,"next":[{"messageText":"Its type 'BsPrefixRefForwardingComponent<\"div\", NavItemProps>' is not a valid JSX element type.","category":1,"code":18053,"next":[{"messageText":"Type 'BsPrefixRefForwardingComponent<\"div\", NavItemProps>' is not assignable to type '(props: any, deprecatedLegacyContext?: any) => ReactNode'.","category":1,"code":2322,"next":[{"messageText":"Type 'ReactElement<any, string | JSXElementConstructor<any>> | null' is not assignable to type 'ReactNode'.","category":1,"code":2322,"next":[{"messageText":"Type 'ReactElement<any, string | JSXElementConstructor<any>>' is not assignable to type 'ReactNode'.","category":1,"code":2322,"next":[{"messageText":"Property 'children' is missing in type 'ReactElement<any, string | JSXElementConstructor<any>>' but required in type 'ReactPortal'.","category":1,"code":2741,"canonicalHead":{"code":2322,"messageText":"Type 'ReactElement<any, string | JSXElementConstructor<any>>' is not assignable to type 'ReactPortal'."}}]}],"canonicalHead":{"code":2322,"messageText":"Type 'BsPrefixRefForwardingComponent<\"div\", NavItemProps>' is not assignable to type '(props: any, deprecatedLegacyContext?: any) => ReactNode'."}}]}]}]},"relatedInformation":[{"file":"../../../testeranto-react/node_modules/@types/react/index.d.ts","start":10658,"length":8,"messageText":"'children' is declared here.","category":3,"code":2728}]},{"start":11625,"length":8,"code":2786,"category":1,"messageText":{"messageText":"'Nav.Link' cannot be used as a JSX component.","category":1,"code":2786,"next":[{"messageText":"Its type 'BsPrefixRefForwardingComponent<\"a\", NavLinkProps>' is not a valid JSX element type.","category":1,"code":18053,"next":[{"messageText":"Type 'BsPrefixRefForwardingComponent<\"a\", NavLinkProps>' is not assignable to type '(props: any, deprecatedLegacyContext?: any) => ReactNode'.","category":1,"code":2322,"next":[{"messageText":"Type 'ReactElement<any, string | JSXElementConstructor<any>> | null' is not assignable to type 'ReactNode'.","category":1,"code":2322,"next":[{"messageText":"Type 'ReactElement<any, string | JSXElementConstructor<any>>' is not assignable to type 'ReactNode'.","category":1,"code":2322,"next":[{"messageText":"Property 'children' is missing in type 'ReactElement<any, string | JSXElementConstructor<any>>' but required in type 'ReactPortal'.","category":1,"code":2741,"canonicalHead":{"code":2322,"messageText":"Type 'ReactElement<any, string | JSXElementConstructor<any>>' is not assignable to type 'ReactPortal'."}}]}],"canonicalHead":{"code":2322,"messageText":"Type 'BsPrefixRefForwardingComponent<\"a\", NavLinkProps>' is not assignable to type '(props: any, deprecatedLegacyContext?: any) => ReactNode'."}}]}]}]},"relatedInformation":[{"file":"../../../testeranto-react/node_modules/@types/react/index.d.ts","start":10658,"length":8,"messageText":"'children' is declared here.","category":3,"code":2728}]},{"start":12222,"length":3,"code":2786,"category":1,"messageText":{"messageText":"'Col' cannot be used as a JSX component.","category":1,"code":2786,"next":[{"messageText":"Its type 'BsPrefixRefForwardingComponent<\"div\", ColProps>' is not a valid JSX element type.","category":1,"code":18053,"next":[{"messageText":"Type 'BsPrefixRefForwardingComponent<\"div\", ColProps>' is not assignable to type '(props: any, deprecatedLegacyContext?: any) => ReactNode'.","category":1,"code":2322,"next":[{"messageText":"Type 'ReactElement<any, string | JSXElementConstructor<any>> | null' is not assignable to type 'ReactNode'.","category":1,"code":2322,"next":[{"messageText":"Type 'ReactElement<any, string | JSXElementConstructor<any>>' is not assignable to type 'ReactNode'.","category":1,"code":2322,"next":[{"messageText":"Property 'children' is missing in type 'ReactElement<any, string | JSXElementConstructor<any>>' but required in type 'ReactPortal'.","category":1,"code":2741,"canonicalHead":{"code":2322,"messageText":"Type 'ReactElement<any, string | JSXElementConstructor<any>>' is not assignable to type 'ReactPortal'."}}]}],"canonicalHead":{"code":2322,"messageText":"Type 'BsPrefixRefForwardingComponent<\"div\", ColProps>' is not assignable to type '(props: any, deprecatedLegacyContext?: any) => ReactNode'."}}]}]}]},"relatedInformation":[{"file":"../../../testeranto-react/node_modules/@types/react/index.d.ts","start":10658,"length":8,"messageText":"'children' is declared here.","category":3,"code":2728}]},{"start":12340,"length":5,"code":2786,"category":1,"messageText":{"messageText":"'Alert' cannot be used as a JSX component.","category":1,"code":2786,"next":[{"messageText":"Its type 'ForwardRefExoticComponent<AlertProps & RefAttributes<HTMLDivElement>> & { Link: BsPrefixRefForwardingComponent<\"a\", AlertLinkProps>; Heading: BsPrefixRefForwardingComponent<...>; }' is not a valid JSX element type.","category":1,"code":18053,"next":[{"messageText":"Type 'ForwardRefExoticComponent<AlertProps & RefAttributes<HTMLDivElement>> & { Link: BsPrefixRefForwardingComponent<\"a\", AlertLinkProps>; Heading: BsPrefixRefForwardingComponent<...>; }' is not assignable to type '(props: any, deprecatedLegacyContext?: any) => ReactNode'.","category":1,"code":2322,"next":[{"messageText":"Type 'ReactElement<any, string | JSXElementConstructor<any>> | null' is not assignable to type 'ReactNode'.","category":1,"code":2322,"next":[{"messageText":"Type 'ReactElement<any, string | JSXElementConstructor<any>>' is not assignable to type 'ReactNode'.","category":1,"code":2322,"next":[{"messageText":"Property 'children' is missing in type 'ReactElement<any, string | JSXElementConstructor<any>>' but required in type 'ReactPortal'.","category":1,"code":2741,"canonicalHead":{"code":2322,"messageText":"Type 'ReactElement<any, string | JSXElementConstructor<any>>' is not assignable to type 'ReactPortal'."}}]}],"canonicalHead":{"code":2322,"messageText":"Type 'ForwardRefExoticComponent<AlertProps & RefAttributes<HTMLDivElement>> & { Link: BsPrefixRefForwardingComponent<\"a\", AlertLinkProps>; Heading: BsPrefixRefForwardingComponent<...>; }' is not assignable to type '(props: any, deprecatedLegacyContext?: any) => ReactNode'."}}]}]}]},"relatedInformation":[{"file":"../../../testeranto-react/node_modules/@types/react/index.d.ts","start":10658,"length":8,"messageText":"'children' is declared here.","category":3,"code":2728}]},{"start":13112,"length":5,"code":2786,"category":1,"messageText":{"messageText":"'Alert' cannot be used as a JSX component.","category":1,"code":2786,"next":[{"messageText":"Its type 'ForwardRefExoticComponent<AlertProps & RefAttributes<HTMLDivElement>> & { Link: BsPrefixRefForwardingComponent<\"a\", AlertLinkProps>; Heading: BsPrefixRefForwardingComponent<...>; }' is not a valid JSX element type.","category":1,"code":18053,"next":[{"messageText":"Type 'ForwardRefExoticComponent<AlertProps & RefAttributes<HTMLDivElement>> & { Link: BsPrefixRefForwardingComponent<\"a\", AlertLinkProps>; Heading: BsPrefixRefForwardingComponent<...>; }' is not assignable to type '(props: any, deprecatedLegacyContext?: any) => ReactNode'.","category":1,"code":2322,"next":[{"messageText":"Type 'ReactElement<any, string | JSXElementConstructor<any>> | null' is not assignable to type 'ReactNode'.","category":1,"code":2322,"next":[{"messageText":"Type 'ReactElement<any, string | JSXElementConstructor<any>>' is not assignable to type 'ReactNode'.","category":1,"code":2322,"next":[{"messageText":"Property 'children' is missing in type 'ReactElement<any, string | JSXElementConstructor<any>>' but required in type 'ReactPortal'.","category":1,"code":2741,"canonicalHead":{"code":2322,"messageText":"Type 'ReactElement<any, string | JSXElementConstructor<any>>' is not assignable to type 'ReactPortal'."}}]}],"canonicalHead":{"code":2322,"messageText":"Type 'ForwardRefExoticComponent<AlertProps & RefAttributes<HTMLDivElement>> & { Link: BsPrefixRefForwardingComponent<\"a\", AlertLinkProps>; Heading: BsPrefixRefForwardingComponent<...>; }' is not assignable to type '(props: any, deprecatedLegacyContext?: any) => ReactNode'."}}]}]}]},"relatedInformation":[{"file":"../../../testeranto-react/node_modules/@types/react/index.d.ts","start":10658,"length":8,"messageText":"'children' is declared here.","category":3,"code":2728}]}]],[823,[{"start":3316,"length":52,"code":2345,"category":1,"messageText":"Argument of type 'string' is not assignable to parameter of type 'SetStateAction<null>'."},{"start":3549,"length":12,"code":2786,"category":1,"messageText":{"messageText":"'TestPageView' cannot be used as a JSX component.","category":1,"code":2786,"next":[{"messageText":"Its type '({ projectName, testName, decodedTestPath, runtime, testsExist, errorCounts, logs, }: TestPageViewProps) => JSX.Element' is not a valid JSX element type.","category":1,"code":18053,"next":[{"messageText":"Type '({ projectName, testName, decodedTestPath, runtime, testsExist, errorCounts, logs, }: TestPageViewProps) => JSX.Element' is not assignable to type '(props: any, deprecatedLegacyContext?: any) => ReactNode'.","category":1,"code":2322,"next":[{"messageText":"Type 'Element' is not assignable to type 'ReactNode'.","category":1,"code":2322,"next":[{"messageText":"Property 'children' is missing in type 'Element' but required in type 'ReactPortal'.","category":1,"code":2741,"canonicalHead":{"code":2322,"messageText":"Type 'Element' is not assignable to type 'ReactPortal'."}}],"canonicalHead":{"code":2322,"messageText":"Type '({ projectName, testName, decodedTestPath, runtime, testsExist, errorCounts, logs, }: TestPageViewProps) => JSX.Element' is not assignable to type '(props: any, deprecatedLegacyContext?: any) => ReactNode'."}}]}]}]},"relatedInformation":[{"file":"../../../testeranto-react/node_modules/@types/react/index.d.ts","start":10658,"length":8,"messageText":"'children' is declared here.","category":3,"code":2728}]},{"start":3568,"length":5,"code":2322,"category":1,"messageText":{"messageText":"Type '{ route: \"coverage\" | \"results\" | \"logs\" | \"types\" | \"lint\"; setRoute: Dispatch<SetStateAction<string>>; navigate: NavigateFunction; ... 6 more ...; errorCounts: { ...; }; }' is not assignable to type 'IntrinsicAttributes & TestPageViewProps'.","category":1,"code":2322,"next":[{"messageText":"Property 'route' does not exist on type 'IntrinsicAttributes & TestPageViewProps'.","category":1,"code":2339}]}}]],[824,[{"start":2454,"length":15,"code":2786,"category":1,"messageText":{"messageText":"'ProjectPageView' cannot be used as a JSX component.","category":1,"code":2786,"next":[{"messageText":"Its type '({ summary, nodeLogs, webLogs, pureLogs, config, loading, error, projectName, activeTab, setActiveTab }: IProjectPageViewProps) => JSX.Element' is not a valid JSX element type.","category":1,"code":18053,"next":[{"messageText":"Type '({ summary, nodeLogs, webLogs, pureLogs, config, loading, error, projectName, activeTab, setActiveTab }: IProjectPageViewProps) => JSX.Element' is not assignable to type '(props: any, deprecatedLegacyContext?: any) => ReactNode'.","category":1,"code":2322,"next":[{"messageText":"Type 'Element' is not assignable to type 'ReactNode'.","category":1,"code":2322,"next":[{"messageText":"Property 'children' is missing in type 'Element' but required in type 'ReactPortal'.","category":1,"code":2741,"canonicalHead":{"code":2322,"messageText":"Type 'Element' is not assignable to type 'ReactPortal'."}}],"canonicalHead":{"code":2322,"messageText":"Type '({ summary, nodeLogs, webLogs, pureLogs, config, loading, error, projectName, activeTab, setActiveTab }: IProjectPageViewProps) => JSX.Element' is not assignable to type '(props: any, deprecatedLegacyContext?: any) => ReactNode'."}}]}]}]},"relatedInformation":[{"file":"../../../testeranto-react/node_modules/@types/react/index.d.ts","start":10658,"length":8,"messageText":"'children' is declared here.","category":3,"code":2728}]}]],[825,[{"start":1093,"length":5,"code":2786,"category":1,"messageText":{"messageText":"'Alert' cannot be used as a JSX component.","category":1,"code":2786,"next":[{"messageText":"Its type 'ForwardRefExoticComponent<AlertProps & RefAttributes<HTMLDivElement>> & { Link: BsPrefixRefForwardingComponent<\"a\", AlertLinkProps>; Heading: BsPrefixRefForwardingComponent<...>; }' is not a valid JSX element type.","category":1,"code":18053,"next":[{"messageText":"Type 'ForwardRefExoticComponent<AlertProps & RefAttributes<HTMLDivElement>> & { Link: BsPrefixRefForwardingComponent<\"a\", AlertLinkProps>; Heading: BsPrefixRefForwardingComponent<...>; }' is not assignable to type '(props: any, deprecatedLegacyContext?: any) => ReactNode'.","category":1,"code":2322,"next":[{"messageText":"Type 'ReactElement<any, string | JSXElementConstructor<any>> | null' is not assignable to type 'ReactNode'.","category":1,"code":2322,"next":[{"messageText":"Type 'ReactElement<any, string | JSXElementConstructor<any>>' is not assignable to type 'ReactNode'.","category":1,"code":2322,"next":[{"messageText":"Property 'children' is missing in type 'ReactElement<any, string | JSXElementConstructor<any>>' but required in type 'ReactPortal'.","category":1,"code":2741,"canonicalHead":{"code":2322,"messageText":"Type 'ReactElement<any, string | JSXElementConstructor<any>>' is not assignable to type 'ReactPortal'."}}]}],"canonicalHead":{"code":2322,"messageText":"Type 'ForwardRefExoticComponent<AlertProps & RefAttributes<HTMLDivElement>> & { Link: BsPrefixRefForwardingComponent<\"a\", AlertLinkProps>; Heading: BsPrefixRefForwardingComponent<...>; }' is not assignable to type '(props: any, deprecatedLegacyContext?: any) => ReactNode'."}}]}]}]},"relatedInformation":[{"file":"../../../testeranto-react/node_modules/@types/react/index.d.ts","start":10658,"length":8,"messageText":"'children' is declared here.","category":3,"code":2728}]},{"start":1185,"length":6,"code":2786,"category":1,"messageText":{"messageText":"'NavBar' cannot be used as a JSX component.","category":1,"code":2786,"next":[{"messageText":"Its type 'FC<NavBarProps>' is not a valid JSX element type.","category":1,"code":18053,"next":[{"messageText":"Type 'FunctionComponent<NavBarProps>' is not assignable to type '(props: any, deprecatedLegacyContext?: any) => ReactNode'.","category":1,"code":2322,"next":[{"messageText":"Type 'ReactElement<any, any> | null' is not assignable to type 'ReactNode'.","category":1,"code":2322,"next":[{"messageText":"Type 'ReactElement<any, any>' is not assignable to type 'ReactNode'.","category":1,"code":2322,"next":[{"messageText":"Property 'children' is missing in type 'ReactElement<any, any>' but required in type 'ReactPortal'.","category":1,"code":2741,"canonicalHead":{"code":2322,"messageText":"Type 'ReactElement<any, any>' is not assignable to type 'ReactPortal'."}}]}],"canonicalHead":{"code":2322,"messageText":"Type 'FunctionComponent<NavBarProps>' is not assignable to type '(props: any, deprecatedLegacyContext?: any) => ReactNode'."}}]}]}]},"relatedInformation":[{"file":"../../../testeranto-react/node_modules/@types/react/index.d.ts","start":10658,"length":8,"messageText":"'children' is declared here.","category":3,"code":2728}]},{"start":1242,"length":5,"code":2786,"category":1,"messageText":{"messageText":"'Table' cannot be used as a JSX component.","category":1,"code":2786,"next":[{"messageText":"Its type 'ForwardRefExoticComponent<TableProps & RefAttributes<HTMLTableElement>>' is not a valid JSX element type.","category":1,"code":18053,"next":[{"messageText":"Type 'ForwardRefExoticComponent<TableProps & RefAttributes<HTMLTableElement>>' is not assignable to type '(props: any, deprecatedLegacyContext?: any) => ReactNode'.","category":1,"code":2322,"next":[{"messageText":"Type 'ReactElement<any, string | JSXElementConstructor<any>> | null' is not assignable to type 'ReactNode'.","category":1,"code":2322,"next":[{"messageText":"Type 'ReactElement<any, string | JSXElementConstructor<any>>' is not assignable to type 'ReactNode'.","category":1,"code":2322,"next":[{"messageText":"Property 'children' is missing in type 'ReactElement<any, string | JSXElementConstructor<any>>' but required in type 'ReactPortal'.","category":1,"code":2741,"canonicalHead":{"code":2322,"messageText":"Type 'ReactElement<any, string | JSXElementConstructor<any>>' is not assignable to type 'ReactPortal'."}}]}],"canonicalHead":{"code":2322,"messageText":"Type 'ForwardRefExoticComponent<TableProps & RefAttributes<HTMLTableElement>>' is not assignable to type '(props: any, deprecatedLegacyContext?: any) => ReactNode'."}}]}]}]},"relatedInformation":[{"file":"../../../testeranto-react/node_modules/@types/react/index.d.ts","start":10658,"length":8,"messageText":"'children' is declared here.","category":3,"code":2728}]}]],[826,[{"start":2596,"length":16,"code":2786,"category":1,"messageText":{"messageText":"'ProjectsPageView' cannot be used as a JSX component.","category":1,"code":2786,"next":[{"messageText":"Its type '({ projects, summaries, configs, loading, error, navigate }: ProjectsPageViewProps) => JSX.Element' is not a valid JSX element type.","category":1,"code":18053,"next":[{"messageText":"Type '({ projects, summaries, configs, loading, error, navigate }: ProjectsPageViewProps) => JSX.Element' is not assignable to type '(props: any, deprecatedLegacyContext?: any) => ReactNode'.","category":1,"code":2322,"next":[{"messageText":"Type 'Element' is not assignable to type 'ReactNode'.","category":1,"code":2322,"next":[{"messageText":"Property 'children' is missing in type 'Element' but required in type 'ReactPortal'.","category":1,"code":2741,"canonicalHead":{"code":2322,"messageText":"Type 'Element' is not assignable to type 'ReactPortal'."}}],"canonicalHead":{"code":2322,"messageText":"Type '({ projects, summaries, configs, loading, error, navigate }: ProjectsPageViewProps) => JSX.Element' is not assignable to type '(props: any, deprecatedLegacyContext?: any) => ReactNode'."}}]}]}]},"relatedInformation":[{"file":"../../../testeranto-react/node_modules/@types/react/index.d.ts","start":10658,"length":8,"messageText":"'children' is declared here.","category":3,"code":2728}]},{"start":2645,"length":9,"code":2322,"category":1,"messageText":{"messageText":"Type 'Record<string, ISummary>' is not assignable to type 'TestSummary'.","category":1,"code":2322,"next":[{"messageText":"'string' index signatures are incompatible.","category":1,"code":2634,"next":[{"messageText":"Type 'ISummary' has no properties in common with type '{ testsExist?: boolean | undefined; runTimeErrors?: number | undefined; typeErrors?: number | undefined; staticErrors?: number | undefined; }'.","category":1,"code":2559}]}]},"relatedInformation":[{"file":"../../src/components/pure/projectspageview.tsx","start":542,"length":9,"messageText":"The expected type comes from property 'summaries' which is declared here on type 'IntrinsicAttributes & ProjectsPageViewProps'","category":3,"code":6500}]},{"start":2673,"length":7,"code":2322,"category":1,"messageText":{"messageText":"Type 'Record<string, object>' is not assignable to type 'ProjectConfig'.","category":1,"code":2322,"next":[{"messageText":"'string' index signatures are incompatible.","category":1,"code":2634,"next":[{"messageText":"Property 'tests' is missing in type '{}' but required in type '{ tests: [string, string][]; }'.","category":1,"code":2741,"canonicalHead":{"code":2322,"messageText":"Type 'object' is not assignable to type '{ tests: [string, string][]; }'."}}]}]},"relatedInformation":[{"file":"../../src/components/pure/projectspageview.tsx","start":427,"length":5,"messageText":"'tests' is declared here.","category":3,"code":2728},{"file":"../../src/components/pure/projectspageview.tsx","start":568,"length":7,"messageText":"The expected type comes from property 'configs' which is declared here on type 'IntrinsicAttributes & ProjectsPageViewProps'","category":3,"code":6500}]}]],[828,[{"start":1790,"length":16,"code":2786,"category":1,"messageText":{"messageText":"'SunriseAnimation' cannot be used as a JSX component.","category":1,"code":2786,"next":[{"messageText":"Its type '({ active }: SunriseAnimationProps) => JSX.Element | null' is not a valid JSX element type.","category":1,"code":18053,"next":[{"messageText":"Type '({ active }: SunriseAnimationProps) => JSX.Element | null' is not assignable to type '(props: any, deprecatedLegacyContext?: any) => ReactNode'.","category":1,"code":2322,"next":[{"messageText":"Type 'Element | null' is not assignable to type 'ReactNode'.","category":1,"code":2322,"next":[{"messageText":"Type 'Element' is not assignable to type 'ReactNode'.","category":1,"code":2322,"next":[{"messageText":"Property 'children' is missing in type 'Element' but required in type 'ReactPortal'.","category":1,"code":2741,"canonicalHead":{"code":2322,"messageText":"Type 'Element' is not assignable to type 'ReactPortal'."}}]}],"canonicalHead":{"code":2322,"messageText":"Type '({ active }: SunriseAnimationProps) => JSX.Element | null' is not assignable to type '(props: any, deprecatedLegacyContext?: any) => ReactNode'."}}]}]}]},"relatedInformation":[{"file":"../../../testeranto-react/node_modules/@types/react/index.d.ts","start":10658,"length":8,"messageText":"'children' is declared here.","category":3,"code":2728}]},{"start":1845,"length":5,"code":2786,"category":1,"messageText":{"messageText":"'Modal' cannot be used as a JSX component.","category":1,"code":2786,"next":[{"messageText":"Its type 'BsPrefixRefForwardingComponent<\"div\", ModalProps> & { Body: BsPrefixRefForwardingComponent<\"div\", ModalBodyProps>; ... 5 more ...; BACKDROP_TRANSITION_DURATION: number; }' is not a valid JSX element type.","category":1,"code":18053,"next":[{"messageText":"Type 'BsPrefixRefForwardingComponent<\"div\", ModalProps> & { Body: BsPrefixRefForwardingComponent<\"div\", ModalBodyProps>; ... 5 more ...; BACKDROP_TRANSITION_DURATION: number; }' is not assignable to type '(props: any, deprecatedLegacyContext?: any) => ReactNode'.","category":1,"code":2322,"next":[{"messageText":"Type 'ReactElement<any, string | JSXElementConstructor<any>> | null' is not assignable to type 'ReactNode'.","category":1,"code":2322,"next":[{"messageText":"Type 'ReactElement<any, string | JSXElementConstructor<any>>' is not assignable to type 'ReactNode'.","category":1,"code":2322,"next":[{"messageText":"Property 'children' is missing in type 'ReactElement<any, string | JSXElementConstructor<any>>' but required in type 'ReactPortal'.","category":1,"code":2741,"canonicalHead":{"code":2322,"messageText":"Type 'ReactElement<any, string | JSXElementConstructor<any>>' is not assignable to type 'ReactPortal'."}}]}],"canonicalHead":{"code":2322,"messageText":"Type 'BsPrefixRefForwardingComponent<\"div\", ModalProps> & { Body: BsPrefixRefForwardingComponent<\"div\", ModalBodyProps>; ... 5 more ...; BACKDROP_TRANSITION_DURATION: number; }' is not assignable to type '(props: any, deprecatedLegacyContext?: any) => ReactNode'."}}]}]}]},"relatedInformation":[{"file":"../../../testeranto-react/node_modules/@types/react/index.d.ts","start":10658,"length":8,"messageText":"'children' is declared here.","category":3,"code":2728}]},{"start":1923,"length":12,"code":2786,"category":1,"messageText":{"messageText":"'ModalContent' cannot be used as a JSX component.","category":1,"code":2786,"next":[{"messageText":"Its type '({ theme, handleThemeChange, }: IModalContentProps) => JSX.Element' is not a valid JSX element type.","category":1,"code":18053,"next":[{"messageText":"Type '({ theme, handleThemeChange, }: IModalContentProps) => JSX.Element' is not assignable to type '(props: any, deprecatedLegacyContext?: any) => ReactNode'.","category":1,"code":2322,"next":[{"messageText":"Type 'Element' is not assignable to type 'ReactNode'.","category":1,"code":2322,"next":[{"messageText":"Property 'children' is missing in type 'Element' but required in type 'ReactPortal'.","category":1,"code":2741,"canonicalHead":{"code":2322,"messageText":"Type 'Element' is not assignable to type 'ReactPortal'."}}],"canonicalHead":{"code":2322,"messageText":"Type '({ theme, handleThemeChange, }: IModalContentProps) => JSX.Element' is not assignable to type '(props: any, deprecatedLegacyContext?: any) => ReactNode'."}}]}]}]},"relatedInformation":[{"file":"../../../testeranto-react/node_modules/@types/react/index.d.ts","start":10658,"length":8,"messageText":"'children' is declared here.","category":3,"code":2728}]},{"start":2000,"length":12,"code":2786,"category":1,"messageText":{"messageText":"'Modal.Footer' cannot be used as a JSX component.","category":1,"code":2786,"next":[{"messageText":"Its type 'BsPrefixRefForwardingComponent<\"div\", ModalFooterProps>' is not a valid JSX element type.","category":1,"code":18053,"next":[{"messageText":"Type 'BsPrefixRefForwardingComponent<\"div\", ModalFooterProps>' is not assignable to type '(props: any, deprecatedLegacyContext?: any) => ReactNode'.","category":1,"code":2322,"next":[{"messageText":"Type 'ReactElement<any, string | JSXElementConstructor<any>> | null' is not assignable to type 'ReactNode'.","category":1,"code":2322,"next":[{"messageText":"Type 'ReactElement<any, string | JSXElementConstructor<any>>' is not assignable to type 'ReactNode'.","category":1,"code":2322,"next":[{"messageText":"Property 'children' is missing in type 'ReactElement<any, string | JSXElementConstructor<any>>' but required in type 'ReactPortal'.","category":1,"code":2741,"canonicalHead":{"code":2322,"messageText":"Type 'ReactElement<any, string | JSXElementConstructor<any>>' is not assignable to type 'ReactPortal'."}}]}],"canonicalHead":{"code":2322,"messageText":"Type 'BsPrefixRefForwardingComponent<\"div\", ModalFooterProps>' is not assignable to type '(props: any, deprecatedLegacyContext?: any) => ReactNode'."}}]}]}]},"relatedInformation":[{"file":"../../../testeranto-react/node_modules/@types/react/index.d.ts","start":10658,"length":8,"messageText":"'children' is declared here.","category":3,"code":2728}]},{"start":2046,"length":6,"code":2786,"category":1,"messageText":{"messageText":"'Button' cannot be used as a JSX component.","category":1,"code":2786,"next":[{"messageText":"Its type 'BsPrefixRefForwardingComponent<\"button\", ButtonProps>' is not a valid JSX element type.","category":1,"code":18053,"next":[{"messageText":"Type 'BsPrefixRefForwardingComponent<\"button\", ButtonProps>' is not assignable to type '(props: any, deprecatedLegacyContext?: any) => ReactNode'.","category":1,"code":2322,"next":[{"messageText":"Type 'ReactElement<any, string | JSXElementConstructor<any>> | null' is not assignable to type 'ReactNode'.","category":1,"code":2322,"next":[{"messageText":"Type 'ReactElement<any, string | JSXElementConstructor<any>>' is not assignable to type 'ReactNode'.","category":1,"code":2322,"next":[{"messageText":"Property 'children' is missing in type 'ReactElement<any, string | JSXElementConstructor<any>>' but required in type 'ReactPortal'.","category":1,"code":2741,"canonicalHead":{"code":2322,"messageText":"Type 'ReactElement<any, string | JSXElementConstructor<any>>' is not assignable to type 'ReactPortal'."}}]}],"canonicalHead":{"code":2322,"messageText":"Type 'BsPrefixRefForwardingComponent<\"button\", ButtonProps>' is not assignable to type '(props: any, deprecatedLegacyContext?: any) => ReactNode'."}}]}]}]},"relatedInformation":[{"file":"../../../testeranto-react/node_modules/@types/react/index.d.ts","start":10658,"length":8,"messageText":"'children' is declared here.","category":3,"code":2728}]}]],[829,[{"start":463,"length":9,"code":2786,"category":1,"messageText":{"messageText":"'Container' cannot be used as a JSX component.","category":1,"code":2786,"next":[{"messageText":"Its type 'BsPrefixRefForwardingComponent<\"div\", ContainerProps>' is not a valid JSX element type.","category":1,"code":18053,"next":[{"messageText":"Type 'BsPrefixRefForwardingComponent<\"div\", ContainerProps>' is not assignable to type '(props: any, deprecatedLegacyContext?: any) => ReactNode'.","category":1,"code":2322,"next":[{"messageText":"Type 'ReactElement<any, string | JSXElementConstructor<any>> | null' is not assignable to type 'ReactNode'.","category":1,"code":2322,"next":[{"messageText":"Type 'ReactElement<any, string | JSXElementConstructor<any>>' is not assignable to type 'ReactNode'.","category":1,"code":2322,"next":[{"messageText":"Property 'children' is missing in type 'ReactElement<any, string | JSXElementConstructor<any>>' but required in type 'ReactPortal'.","category":1,"code":2741,"canonicalHead":{"code":2322,"messageText":"Type 'ReactElement<any, string | JSXElementConstructor<any>>' is not assignable to type 'ReactPortal'."}}]}],"canonicalHead":{"code":2322,"messageText":"Type 'BsPrefixRefForwardingComponent<\"div\", ContainerProps>' is not assignable to type '(props: any, deprecatedLegacyContext?: any) => ReactNode'."}}]}]}]},"relatedInformation":[{"file":"../../../testeranto-react/node_modules/@types/react/index.d.ts","start":10658,"length":8,"messageText":"'children' is declared here.","category":3,"code":2728}]},{"start":636,"length":14,"code":2786,"category":1,"messageText":{"messageText":"'SettingsButton' cannot be used as a JSX component.","category":1,"code":2786,"next":[{"messageText":"Its type '({ className }: { className?: string; }) => JSX.Element' is not a valid JSX element type.","category":1,"code":18053,"next":[{"messageText":"Type '({ className }: { className?: string; }) => JSX.Element' is not assignable to type '(props: any, deprecatedLegacyContext?: any) => ReactNode'.","category":1,"code":2322,"next":[{"messageText":"Type 'Element' is not assignable to type 'ReactNode'.","category":1,"code":2322,"next":[{"messageText":"Property 'children' is missing in type 'Element' but required in type 'ReactPortal'.","category":1,"code":2741,"canonicalHead":{"code":2322,"messageText":"Type 'Element' is not assignable to type 'ReactPortal'."}}],"canonicalHead":{"code":2322,"messageText":"Type '({ className }: { className?: string; }) => JSX.Element' is not assignable to type '(props: any, deprecatedLegacyContext?: any) => ReactNode'."}}]}]}]},"relatedInformation":[{"file":"../../../testeranto-react/node_modules/@types/react/index.d.ts","start":10658,"length":8,"messageText":"'children' is declared here.","category":3,"code":2728}]},{"start":663,"length":9,"code":2786,"category":1,"messageText":{"messageText":"'Container' cannot be used as a JSX component.","category":1,"code":2786,"next":[{"messageText":"Its type 'BsPrefixRefForwardingComponent<\"div\", ContainerProps>' is not a valid JSX element type.","category":1,"code":18053,"next":[{"messageText":"Type 'BsPrefixRefForwardingComponent<\"div\", ContainerProps>' is not assignable to type '(props: any, deprecatedLegacyContext?: any) => ReactNode'.","category":1,"code":2322,"next":[{"messageText":"Type 'ReactElement<any, string | JSXElementConstructor<any>> | null' is not assignable to type 'ReactNode'.","category":1,"code":2322,"next":[{"messageText":"Type 'ReactElement<any, string | JSXElementConstructor<any>>' is not assignable to type 'ReactNode'.","category":1,"code":2322,"next":[{"messageText":"Property 'children' is missing in type 'ReactElement<any, string | JSXElementConstructor<any>>' but required in type 'ReactPortal'.","category":1,"code":2741,"canonicalHead":{"code":2322,"messageText":"Type 'ReactElement<any, string | JSXElementConstructor<any>>' is not assignable to type 'ReactPortal'."}}]}],"canonicalHead":{"code":2322,"messageText":"Type 'BsPrefixRefForwardingComponent<\"div\", ContainerProps>' is not assignable to type '(props: any, deprecatedLegacyContext?: any) => ReactNode'."}}]}]}]},"relatedInformation":[{"file":"../../../testeranto-react/node_modules/@types/react/index.d.ts","start":10658,"length":8,"messageText":"'children' is declared here.","category":3,"code":2728}]}]],[831,[{"start":734,"length":20,"code":2786,"category":1,"messageText":{"messageText":"'FeaturesReporterView' cannot be used as a JSX component.","category":1,"code":2786,"next":[{"messageText":"Its type 'FC<FeaturesReporterViewProps>' is not a valid JSX element type.","category":1,"code":18053,"next":[{"messageText":"Type 'FunctionComponent<FeaturesReporterViewProps>' is not assignable to type '(props: any, deprecatedLegacyContext?: any) => ReactNode'.","category":1,"code":2322,"next":[{"messageText":"Type 'ReactElement<any, any> | null' is not assignable to type 'ReactNode'.","category":1,"code":2322,"next":[{"messageText":"Type 'ReactElement<any, any>' is not assignable to type 'ReactNode'.","category":1,"code":2322,"next":[{"messageText":"Property 'children' is missing in type 'ReactElement<any, any>' but required in type 'ReactPortal'.","category":1,"code":2741,"canonicalHead":{"code":2322,"messageText":"Type 'ReactElement<any, any>' is not assignable to type 'ReactPortal'."}}]}],"canonicalHead":{"code":2322,"messageText":"Type 'FunctionComponent<FeaturesReporterViewProps>' is not assignable to type '(props: any, deprecatedLegacyContext?: any) => ReactNode'."}}]}]}]},"relatedInformation":[{"file":"../../../testeranto-react/node_modules/@types/react/index.d.ts","start":10658,"length":8,"messageText":"'children' is declared here.","category":3,"code":2728}]}]],[832,[{"start":521,"length":8,"code":2786,"category":1,"messageText":{"messageText":"'AppFrame' cannot be used as a JSX component.","category":1,"code":2786,"next":[{"messageText":"Its type '({ children }: AppFrameProps) => JSX.Element' is not a valid JSX element type.","category":1,"code":18053,"next":[{"messageText":"Type '({ children }: AppFrameProps) => JSX.Element' is not assignable to type '(props: any, deprecatedLegacyContext?: any) => ReactNode'.","category":1,"code":2322,"next":[{"messageText":"Type 'Element' is not assignable to type 'ReactNode'.","category":1,"code":2322,"next":[{"messageText":"Property 'children' is missing in type 'Element' but required in type 'ReactPortal'.","category":1,"code":2741,"canonicalHead":{"code":2322,"messageText":"Type 'Element' is not assignable to type 'ReactPortal'."}}],"canonicalHead":{"code":2322,"messageText":"Type '({ children }: AppFrameProps) => JSX.Element' is not assignable to type '(props: any, deprecatedLegacyContext?: any) => ReactNode'."}}]}]}]},"relatedInformation":[{"file":"../../../testeranto-react/node_modules/@types/react/index.d.ts","start":10658,"length":8,"messageText":"'children' is declared here.","category":3,"code":2728}]},{"start":540,"length":6,"code":2786,"category":1,"messageText":{"messageText":"'Routes' cannot be used as a JSX component.","category":1,"code":2786,"next":[{"messageText":"Its type '({ children, location, }: RoutesProps) => ReactElement<any, string | JSXElementConstructor<any>> | null' is not a valid JSX element type.","category":1,"code":18053,"next":[{"messageText":"Type '({ children, location, }: RoutesProps) => ReactElement<any, string | JSXElementConstructor<any>> | null' is not assignable to type '(props: any, deprecatedLegacyContext?: any) => ReactNode'.","category":1,"code":2322,"next":[{"messageText":"Type 'ReactElement<any, string | JSXElementConstructor<any>> | null' is not assignable to type 'ReactNode'.","category":1,"code":2322,"next":[{"messageText":"Type 'ReactElement<any, string | JSXElementConstructor<any>>' is not assignable to type 'ReactNode'.","category":1,"code":2322,"next":[{"messageText":"Property 'children' is missing in type 'ReactElement<any, string | JSXElementConstructor<any>>' but required in type 'ReactPortal'.","category":1,"code":2741,"canonicalHead":{"code":2322,"messageText":"Type 'ReactElement<any, string | JSXElementConstructor<any>>' is not assignable to type 'ReactPortal'."}}]}],"canonicalHead":{"code":2322,"messageText":"Type '({ children, location, }: RoutesProps) => ReactElement<any, string | JSXElementConstructor<any>> | null' is not assignable to type '(props: any, deprecatedLegacyContext?: any) => ReactNode'."}}]}]}]},"relatedInformation":[{"file":"../../../testeranto-react/node_modules/@types/react/index.d.ts","start":10658,"length":8,"messageText":"'children' is declared here.","category":3,"code":2728}]},{"start":559,"length":5,"code":2786,"category":1,"messageText":{"messageText":"'Route' cannot be used as a JSX component.","category":1,"code":2786,"next":[{"messageText":"Its type '(props: RouteProps) => ReactElement<any, string | JSXElementConstructor<any>> | null' is not a valid JSX element type.","category":1,"code":18053,"next":[{"messageText":"Type '(props: RouteProps) => ReactElement<any, string | JSXElementConstructor<any>> | null' is not assignable to type '(props: any, deprecatedLegacyContext?: any) => ReactNode'.","category":1,"code":2322,"next":[{"messageText":"Type 'ReactElement<any, string | JSXElementConstructor<any>> | null' is not assignable to type 'ReactNode'.","category":1,"code":2322,"next":[{"messageText":"Type 'ReactElement<any, string | JSXElementConstructor<any>>' is not assignable to type 'ReactNode'.","category":1,"code":2322,"next":[{"messageText":"Property 'children' is missing in type 'ReactElement<any, string | JSXElementConstructor<any>>' but required in type 'ReactPortal'.","category":1,"code":2741,"canonicalHead":{"code":2322,"messageText":"Type 'ReactElement<any, string | JSXElementConstructor<any>>' is not assignable to type 'ReactPortal'."}}]}],"canonicalHead":{"code":2322,"messageText":"Type '(props: RouteProps) => ReactElement<any, string | JSXElementConstructor<any>> | null' is not assignable to type '(props: any, deprecatedLegacyContext?: any) => ReactNode'."}}]}]}]},"relatedInformation":[{"file":"../../../testeranto-react/node_modules/@types/react/index.d.ts","start":10658,"length":8,"messageText":"'children' is declared here.","category":3,"code":2728}]},{"start":584,"length":12,"code":2786,"category":1,"messageText":{"messageText":"'ProjectsPage' cannot be used as a JSX component.","category":1,"code":2786,"next":[{"messageText":"Its type '() => JSX.Element' is not a valid JSX element type.","category":1,"code":18053,"next":[{"messageText":"Type '() => JSX.Element' is not assignable to type '(props: any, deprecatedLegacyContext?: any) => ReactNode'.","category":1,"code":2322,"next":[{"messageText":"Type 'Element' is not assignable to type 'ReactNode'.","category":1,"code":2322,"next":[{"messageText":"Property 'children' is missing in type 'Element' but required in type 'ReactPortal'.","category":1,"code":2741,"canonicalHead":{"code":2322,"messageText":"Type 'Element' is not assignable to type 'ReactPortal'."}}],"canonicalHead":{"code":2322,"messageText":"Type '() => JSX.Element' is not assignable to type '(props: any, deprecatedLegacyContext?: any) => ReactNode'."}}]}]}]},"relatedInformation":[{"file":"../../../testeranto-react/node_modules/@types/react/index.d.ts","start":10658,"length":8,"messageText":"'children' is declared here.","category":3,"code":2728}]},{"start":615,"length":5,"code":2786,"category":1,"messageText":{"messageText":"'Route' cannot be used as a JSX component.","category":1,"code":2786,"next":[{"messageText":"Its type '(props: RouteProps) => ReactElement<any, string | JSXElementConstructor<any>> | null' is not a valid JSX element type.","category":1,"code":18053,"next":[{"messageText":"Type '(props: RouteProps) => ReactElement<any, string | JSXElementConstructor<any>> | null' is not assignable to type '(props: any, deprecatedLegacyContext?: any) => ReactNode'.","category":1,"code":2322,"next":[{"messageText":"Type 'ReactElement<any, string | JSXElementConstructor<any>> | null' is not assignable to type 'ReactNode'.","category":1,"code":2322,"next":[{"messageText":"Type 'ReactElement<any, string | JSXElementConstructor<any>>' is not assignable to type 'ReactNode'.","category":1,"code":2322,"next":[{"messageText":"Property 'children' is missing in type 'ReactElement<any, string | JSXElementConstructor<any>>' but required in type 'ReactPortal'.","category":1,"code":2741,"canonicalHead":{"code":2322,"messageText":"Type 'ReactElement<any, string | JSXElementConstructor<any>>' is not assignable to type 'ReactPortal'."}}]}],"canonicalHead":{"code":2322,"messageText":"Type '(props: RouteProps) => ReactElement<any, string | JSXElementConstructor<any>> | null' is not assignable to type '(props: any, deprecatedLegacyContext?: any) => ReactNode'."}}]}]}]},"relatedInformation":[{"file":"../../../testeranto-react/node_modules/@types/react/index.d.ts","start":10658,"length":8,"messageText":"'children' is declared here.","category":3,"code":2728}]},{"start":661,"length":11,"code":2786,"category":1,"messageText":{"messageText":"'ProjectPage' cannot be used as a JSX component.","category":1,"code":2786,"next":[{"messageText":"Its type '() => JSX.Element' is not a valid JSX element type.","category":1,"code":18053,"next":[{"messageText":"Type '() => JSX.Element' is not assignable to type '(props: any, deprecatedLegacyContext?: any) => ReactNode'.","category":1,"code":2322,"next":[{"messageText":"Type 'Element' is not assignable to type 'ReactNode'.","category":1,"code":2322,"next":[{"messageText":"Property 'children' is missing in type 'Element' but required in type 'ReactPortal'.","category":1,"code":2741,"canonicalHead":{"code":2322,"messageText":"Type 'Element' is not assignable to type 'ReactPortal'."}}],"canonicalHead":{"code":2322,"messageText":"Type '() => JSX.Element' is not assignable to type '(props: any, deprecatedLegacyContext?: any) => ReactNode'."}}]}]}]},"relatedInformation":[{"file":"../../../testeranto-react/node_modules/@types/react/index.d.ts","start":10658,"length":8,"messageText":"'children' is declared here.","category":3,"code":2728}]},{"start":691,"length":5,"code":2786,"category":1,"messageText":{"messageText":"'Route' cannot be used as a JSX component.","category":1,"code":2786,"next":[{"messageText":"Its type '(props: RouteProps) => ReactElement<any, string | JSXElementConstructor<any>> | null' is not a valid JSX element type.","category":1,"code":18053,"next":[{"messageText":"Type '(props: RouteProps) => ReactElement<any, string | JSXElementConstructor<any>> | null' is not assignable to type '(props: any, deprecatedLegacyContext?: any) => ReactNode'.","category":1,"code":2322,"next":[{"messageText":"Type 'ReactElement<any, string | JSXElementConstructor<any>> | null' is not assignable to type 'ReactNode'.","category":1,"code":2322,"next":[{"messageText":"Type 'ReactElement<any, string | JSXElementConstructor<any>>' is not assignable to type 'ReactNode'.","category":1,"code":2322,"next":[{"messageText":"Property 'children' is missing in type 'ReactElement<any, string | JSXElementConstructor<any>>' but required in type 'ReactPortal'.","category":1,"code":2741,"canonicalHead":{"code":2322,"messageText":"Type 'ReactElement<any, string | JSXElementConstructor<any>>' is not assignable to type 'ReactPortal'."}}]}],"canonicalHead":{"code":2322,"messageText":"Type '(props: RouteProps) => ReactElement<any, string | JSXElementConstructor<any>> | null' is not assignable to type '(props: any, deprecatedLegacyContext?: any) => ReactNode'."}}]}]}]},"relatedInformation":[{"file":"../../../testeranto-react/node_modules/@types/react/index.d.ts","start":10658,"length":8,"messageText":"'children' is declared here.","category":3,"code":2728}]},{"start":745,"length":8,"code":2786,"category":1,"messageText":{"messageText":"'TestPage' cannot be used as a JSX component.","category":1,"code":2786,"next":[{"messageText":"Its type '() => JSX.Element' is not a valid JSX element type.","category":1,"code":18053,"next":[{"messageText":"Type '() => JSX.Element' is not assignable to type '(props: any, deprecatedLegacyContext?: any) => ReactNode'.","category":1,"code":2322,"next":[{"messageText":"Type 'Element' is not assignable to type 'ReactNode'.","category":1,"code":2322,"next":[{"messageText":"Property 'children' is missing in type 'Element' but required in type 'ReactPortal'.","category":1,"code":2741,"canonicalHead":{"code":2322,"messageText":"Type 'Element' is not assignable to type 'ReactPortal'."}}],"canonicalHead":{"code":2322,"messageText":"Type '() => JSX.Element' is not assignable to type '(props: any, deprecatedLegacyContext?: any) => ReactNode'."}}]}]}]},"relatedInformation":[{"file":"../../../testeranto-react/node_modules/@types/react/index.d.ts","start":10658,"length":8,"messageText":"'children' is declared here.","category":3,"code":2728}]},{"start":772,"length":5,"code":2786,"category":1,"messageText":{"messageText":"'Route' cannot be used as a JSX component.","category":1,"code":2786,"next":[{"messageText":"Its type '(props: RouteProps) => ReactElement<any, string | JSXElementConstructor<any>> | null' is not a valid JSX element type.","category":1,"code":18053,"next":[{"messageText":"Type '(props: RouteProps) => ReactElement<any, string | JSXElementConstructor<any>> | null' is not assignable to type '(props: any, deprecatedLegacyContext?: any) => ReactNode'.","category":1,"code":2322,"next":[{"messageText":"Type 'ReactElement<any, string | JSXElementConstructor<any>> | null' is not assignable to type 'ReactNode'.","category":1,"code":2322,"next":[{"messageText":"Type 'ReactElement<any, string | JSXElementConstructor<any>>' is not assignable to type 'ReactNode'.","category":1,"code":2322,"next":[{"messageText":"Property 'children' is missing in type 'ReactElement<any, string | JSXElementConstructor<any>>' but required in type 'ReactPortal'.","category":1,"code":2741,"canonicalHead":{"code":2322,"messageText":"Type 'ReactElement<any, string | JSXElementConstructor<any>>' is not assignable to type 'ReactPortal'."}}]}],"canonicalHead":{"code":2322,"messageText":"Type '(props: RouteProps) => ReactElement<any, string | JSXElementConstructor<any>> | null' is not assignable to type '(props: any, deprecatedLegacyContext?: any) => ReactNode'."}}]}]}]},"relatedInformation":[{"file":"../../../testeranto-react/node_modules/@types/react/index.d.ts","start":10658,"length":8,"messageText":"'children' is declared here.","category":3,"code":2728}]},{"start":823,"length":11,"code":2786,"category":1,"messageText":{"messageText":"'ProjectPage' cannot be used as a JSX component.","category":1,"code":2786,"next":[{"messageText":"Its type '() => JSX.Element' is not a valid JSX element type.","category":1,"code":18053,"next":[{"messageText":"Type '() => JSX.Element' is not assignable to type '(props: any, deprecatedLegacyContext?: any) => ReactNode'.","category":1,"code":2322,"next":[{"messageText":"Type 'Element' is not assignable to type 'ReactNode'.","category":1,"code":2322,"next":[{"messageText":"Property 'children' is missing in type 'Element' but required in type 'ReactPortal'.","category":1,"code":2741,"canonicalHead":{"code":2322,"messageText":"Type 'Element' is not assignable to type 'ReactPortal'."}}],"canonicalHead":{"code":2322,"messageText":"Type '() => JSX.Element' is not assignable to type '(props: any, deprecatedLegacyContext?: any) => ReactNode'."}}]}]}]},"relatedInformation":[{"file":"../../../testeranto-react/node_modules/@types/react/index.d.ts","start":10658,"length":8,"messageText":"'children' is declared here.","category":3,"code":2728}]},{"start":853,"length":5,"code":2786,"category":1,"messageText":{"messageText":"'Route' cannot be used as a JSX component.","category":1,"code":2786,"next":[{"messageText":"Its type '(props: RouteProps) => ReactElement<any, string | JSXElementConstructor<any>> | null' is not a valid JSX element type.","category":1,"code":18053,"next":[{"messageText":"Type '(props: RouteProps) => ReactElement<any, string | JSXElementConstructor<any>> | null' is not assignable to type '(props: any, deprecatedLegacyContext?: any) => ReactNode'.","category":1,"code":2322,"next":[{"messageText":"Type 'ReactElement<any, string | JSXElementConstructor<any>> | null' is not assignable to type 'ReactNode'.","category":1,"code":2322,"next":[{"messageText":"Type 'ReactElement<any, string | JSXElementConstructor<any>>' is not assignable to type 'ReactNode'.","category":1,"code":2322,"next":[{"messageText":"Property 'children' is missing in type 'ReactElement<any, string | JSXElementConstructor<any>>' but required in type 'ReactPortal'.","category":1,"code":2741,"canonicalHead":{"code":2322,"messageText":"Type 'ReactElement<any, string | JSXElementConstructor<any>>' is not assignable to type 'ReactPortal'."}}]}],"canonicalHead":{"code":2322,"messageText":"Type '(props: RouteProps) => ReactElement<any, string | JSXElementConstructor<any>> | null' is not assignable to type '(props: any, deprecatedLegacyContext?: any) => ReactNode'."}}]}]}]},"relatedInformation":[{"file":"../../../testeranto-react/node_modules/@types/react/index.d.ts","start":10658,"length":8,"messageText":"'children' is declared here.","category":3,"code":2728}]},{"start":895,"length":16,"code":2786,"category":1,"messageText":{"messageText":"'FeaturesReporter' cannot be used as a JSX component.","category":1,"code":2786,"next":[{"messageText":"Its type 'FC<{}>' is not a valid JSX element type.","category":1,"code":18053,"next":[{"messageText":"Type 'FunctionComponent<{}>' is not assignable to type '(props: any, deprecatedLegacyContext?: any) => ReactNode'.","category":1,"code":2322,"next":[{"messageText":"Type 'ReactElement<any, any> | null' is not assignable to type 'ReactNode'.","category":1,"code":2322,"next":[{"messageText":"Type 'ReactElement<any, any>' is not assignable to type 'ReactNode'.","category":1,"code":2322,"next":[{"messageText":"Property 'children' is missing in type 'ReactElement<any, any>' but required in type 'ReactPortal'.","category":1,"code":2741,"canonicalHead":{"code":2322,"messageText":"Type 'ReactElement<any, any>' is not assignable to type 'ReactPortal'."}}]}],"canonicalHead":{"code":2322,"messageText":"Type 'FunctionComponent<{}>' is not assignable to type '(props: any, deprecatedLegacyContext?: any) => ReactNode'."}}]}]}]},"relatedInformation":[{"file":"../../../testeranto-react/node_modules/@types/react/index.d.ts","start":10658,"length":8,"messageText":"'children' is declared here.","category":3,"code":2728}]},{"start":1173,"length":10,"code":2339,"category":1,"messageText":"Property 'createRoot' does not exist on type 'typeof import(\"/Users/adam/Code/testeranto/node_modules/@types/react-dom/index\")'."},{"start":1411,"length":3,"code":2339,"category":1,"messageText":"Property 'App' does not exist on type 'Window & typeof globalThis'."},{"start":1448,"length":15,"code":2740,"category":1,"messageText":"Type 'typeof import(\"/Users/adam/Code/testeranto/node_modules/@types/react-dom/client\")' is missing the following properties from type 'typeof import(\"/Users/adam/Code/testeranto/node_modules/@types/react-dom/index\")': findDOMNode, unmountComponentAtNode, createPortal, flushSync, and 5 more.","canonicalHead":{"code":2322,"messageText":"Type 'typeof import(\"/Users/adam/Code/testeranto/node_modules/@types/react-dom/client\")' is not assignable to type 'typeof import(\"/Users/adam/Code/testeranto/node_modules/@types/react-dom/index\")'."}}]],[833,[{"start":470,"length":109,"code":2322,"category":1,"messageText":{"messageText":"Type '(children: React.ReactNode) => () => (selection: ISelection) => { children: React.ReactNode; htmlElement: HTMLElement; reactElement: React.ReactElement; domRoot: HTMLElement | null; container?: HTMLElement; testId?: string; }' is not assignable to type '(Ig_0: ReactNode) => (s: ISelection) => ISelection'.","category":1,"code":2322,"next":[{"messageText":"Call signature return types '() => (selection: ISelection) => { children: ReactNode; htmlElement: HTMLElement; reactElement: ReactElement<any, string | JSXElementConstructor<any>>; domRoot: HTMLElement | null; container?: HTMLElement | undefined; testId?: string | undefined; }' and '(s: ISelection) => ISelection' are incompatible.","category":1,"code":2202,"next":[{"messageText":"Type '(selection: ISelection) => { children: React.ReactNode; htmlElement: HTMLElement; reactElement: React.ReactElement; domRoot: HTMLElement | null; container?: HTMLElement; testId?: string; }' is not assignable to type 'ISelection'.","category":1,"code":2322,"canonicalHead":{"code":2322,"messageText":"Type '(children: React.ReactNode) => () => (selection: ISelection) => { children: React.ReactNode; htmlElement: HTMLElement; reactElement: React.ReactElement; domRoot: HTMLElement | null; container?: HTMLElement; testId?: string; }' is not assignable to type '(Ig_0: ReactNode) => (s: ISelection) => ISelection'."}}]}]},"relatedInformation":[{"start":470,"length":109,"messageText":"Did you mean to call this expression?","category":3,"code":6212}]}]],[841,[{"start":643,"length":7,"code":2322,"category":1,"messageText":{"messageText":"Type '(testInput: typeof Component) => { beforeAll: (subject: typeof Component, artificer: ITTestResourceConfiguration) => Promise<{ htmlElement: HTMLElement; }>; ... 5 more ...; assertThis: (x: (s: ISelection) => ISelection) => (s: ISelection) => ISelection; }' is not assignable to type '(testInput: typeof Component) => ITestAdapter<I>'.","category":1,"code":2322,"next":[{"messageText":"Call signature return types '{ beforeAll: (subject: typeof Component, artificer: ITTestResourceConfiguration) => Promise<{ htmlElement: HTMLElement; }>; ... 5 more ...; assertThis: (x: (s: ISelection) => ISelection) => (s: ISelection) => ISelection; }' and 'ITestAdapter<I>' are incompatible.","category":1,"code":2202,"next":[{"messageText":"The types returned by 'beforeAll(...)' are incompatible between these types.","category":1,"code":2201,"next":[{"messageText":"Type 'Promise<{ htmlElement: HTMLElement; }>' is not assignable to type 'Promise<ISubject>'.","category":1,"code":2322,"next":[{"messageText":"Property 'domRoot' is missing in type '{ htmlElement: HTMLElement; }' but required in type 'ISubject'.","category":1,"code":2741,"canonicalHead":{"code":2322,"messageText":"Type '{ htmlElement: HTMLElement; }' is not assignable to type 'ISubject'."}}],"canonicalHead":{"code":2322,"messageText":"Type '(testInput: typeof Component) => { beforeAll: (subject: typeof Component, artificer: ITTestResourceConfiguration) => Promise<{ htmlElement: HTMLElement; }>; ... 5 more ...; assertThis: (x: (s: ISelection) => ISelection) => (s: ISelection) => ISelection; }' is not assignable to type '(testInput: typeof Component) => ITestAdapter<I>'."}}]}]}]},"relatedInformation":[{"start":453,"length":7,"messageText":"'domRoot' is declared here.","category":3,"code":2728}]},{"start":1074,"length":7,"code":2339,"category":1,"messageText":"Property 'subject' does not exist on type 'Readonly<{}>'."},{"start":2612,"length":6,"messageText":"Expected 1 arguments, but got 3.","category":1,"code":2554}]],[842,[{"start":71,"length":16,"messageText":"Cannot find module '../../../Types' or its corresponding type declarations.","category":1,"code":2307}]],[843,[{"start":450,"length":6,"code":2416,"category":1,"messageText":{"messageText":"Property 'render' in type 'MockComponent' is not assignable to the same property in base type 'Component<IProps, IState, any>'.","category":1,"code":2416,"next":[{"messageText":"Type '() => Element' is not assignable to type '() => ReactNode'.","category":1,"code":2322,"next":[{"messageText":"Type 'Element' is not assignable to type 'ReactNode'.","category":1,"code":2322,"next":[{"messageText":"Property 'children' is missing in type 'Element' but required in type 'ReactPortal'.","category":1,"code":2741,"canonicalHead":{"code":2322,"messageText":"Type 'Element' is not assignable to type 'ReactPortal'."}}],"canonicalHead":{"code":2322,"messageText":"Type '() => Element' is not assignable to type '() => ReactNode'."}}]}]},"relatedInformation":[{"file":"../../../testeranto-react/node_modules/@types/react/index.d.ts","start":10658,"length":8,"messageText":"'children' is declared here.","category":3,"code":2728}]}]],[846,[{"start":385,"length":8,"code":2786,"category":1,"messageText":{"messageText":"'AppFrame' cannot be used as a JSX component.","category":1,"code":2786,"next":[{"messageText":"Its type '({ children }: AppFrameProps) => JSX.Element' is not a valid JSX element type.","category":1,"code":18053,"next":[{"messageText":"Type '({ children }: AppFrameProps) => JSX.Element' is not assignable to type '(props: any, deprecatedLegacyContext?: any) => ReactNode'.","category":1,"code":2322,"next":[{"messageText":"Type 'Element' is not assignable to type 'ReactNode'.","category":1,"code":2322,"next":[{"messageText":"Property 'children' is missing in type 'Element' but required in type 'ReactPortal'.","category":1,"code":2741,"canonicalHead":{"code":2322,"messageText":"Type 'Element' is not assignable to type 'ReactPortal'."}}],"canonicalHead":{"code":2322,"messageText":"Type '({ children }: AppFrameProps) => JSX.Element' is not assignable to type '(props: any, deprecatedLegacyContext?: any) => ReactNode'."}}]}]}]},"relatedInformation":[{"file":"../../../testeranto-react/node_modules/@types/react/index.d.ts","start":10658,"length":8,"messageText":"'children' is declared here.","category":3,"code":2728}]},{"start":482,"length":14,"code":2345,"category":1,"messageText":{"messageText":"Argument of type 'ITestImplementation<I, O>' is not assignable to parameter of type 'ITestImplementation<I, O, { whens: TestWhenImplementation<I, O>; }>'.","category":1,"code":2345,"next":[{"messageText":"Type 'ITestImplementation<I, O>' is not assignable to type 'Omit<{ suites: TestSuiteImplementation<O>; givens: TestGivenImplementation<I, O>; whens: TestWhenImplementation<I, O>; thens: TestThenImplementation<...>; }, \"whens\">'.","category":1,"code":2322,"next":[{"messageText":"The types returned by 'givens.Default(...)' are incompatible between these types.","category":1,"code":2201,"next":[{"messageText":"Type '(s: import(\"/Users/adam/Code/testeranto/src/components/pure/AppFrame.test/types\").ISelection) => import(\"/Users/adam/Code/testeranto/src/components/pure/AppFrame.test/types\").ISelection' is not assignable to type '(s: import(\"/Users/adam/Code/testeranto-react/src/react-dom/component/dynamic\").ISelection) => import(\"/Users/adam/Code/testeranto-react/src/react-dom/component/dynamic\").ISelection'.","category":1,"code":2322,"next":[{"messageText":"Types of parameters 's' and 's' are incompatible.","category":1,"code":2328,"next":[{"messageText":"Type 'import(\"/Users/adam/Code/testeranto-react/src/react-dom/component/dynamic\").ISelection' is not assignable to type 'import(\"/Users/adam/Code/testeranto/src/components/pure/AppFrame.test/types\").ISelection'.","category":1,"code":2322,"next":[{"messageText":"The types of 'reactElement.type' are incompatible between these types.","category":1,"code":2200,"next":[{"messageText":"Type 'string | import(\"/Users/adam/Code/testeranto-react/node_modules/@types/react/index\").JSXElementConstructor<any>' is not assignable to type 'string | React.JSXElementConstructor<any>'.","category":1,"code":2322,"next":[{"messageText":"Type '(props: any, deprecatedLegacyContext?: any) => ReactNode' is not assignable to type 'string | JSXElementConstructor<any>'.","category":1,"code":2322,"next":[{"messageText":"Type '(props: any, deprecatedLegacyContext?: any) => ReactNode' is not assignable to type '(props: any) => ReactElement<any, any> | null'.","category":1,"code":2322,"next":[{"messageText":"Type 'ReactNode' is not assignable to type 'ReactElement<any, any> | null'.","category":1,"code":2322,"next":[{"messageText":"Type 'undefined' is not assignable to type 'ReactElement<any, any> | null'.","category":1,"code":2322}],"canonicalHead":{"code":2322,"messageText":"Type '(props: any, deprecatedLegacyContext?: any) => ReactNode' is not assignable to type '(props: any) => ReactElement<any, any> | null'."}}]}]}],"canonicalHead":{"code":2322,"messageText":"Type 'import(\"/Users/adam/Code/testeranto-react/src/react-dom/component/dynamic\").ISelection' is not assignable to type 'import(\"/Users/adam/Code/testeranto/src/components/pure/AppFrame.test/types\").ISelection'."}}]}]}]}],"canonicalHead":{"code":2322,"messageText":"Type 'ITestImplementation<I, O>' is not assignable to type 'Omit<{ suites: TestSuiteImplementation<O>; givens: TestGivenImplementation<I, O>; whens: TestWhenImplementation<I, O>; thens: TestThenImplementation<...>; }, \"whens\">'."}}]}]}]}}]],[847,[{"start":447,"length":4,"code":2322,"category":1,"messageText":"Type '\"test\"' is not assignable to type '\"file\" | \"project\"'.","relatedInformation":[{"file":"../../src/types/features.ts","start":43,"length":4,"messageText":"The expected type comes from property 'type' which is declared here on type 'TreeNode'","category":3,"code":6500}]},{"start":579,"length":4,"code":2322,"category":1,"messageText":"Type '\"given\"' is not assignable to type '\"file\" | \"project\"'.","relatedInformation":[{"file":"../../src/types/features.ts","start":43,"length":4,"messageText":"The expected type comes from property 'type' which is declared here on type 'TreeNode'","category":3,"code":6500}]},{"start":731,"length":4,"code":2322,"category":1,"messageText":"Type '\"then\"' is not assignable to type '\"file\" | \"project\"'.","relatedInformation":[{"file":"../../src/types/features.ts","start":43,"length":4,"messageText":"The expected type comes from property 'type' which is declared here on type 'TreeNode'","category":3,"code":6500}]},{"start":1218,"length":28,"code":2322,"category":1,"messageText":{"messageText":"Type '({ htmlElement }: IInput & { container?: HTMLElement | undefined; }) => Promise<{ htmlElement: any; }>' is not assignable to type '(state: IInput & { container?: HTMLElement | undefined; }) => IInput & { container?: HTMLElement | undefined; }'.","category":1,"code":2322,"next":[{"messageText":"Type 'Promise<{ htmlElement: any; }>' is not assignable to type 'IInput & { container?: HTMLElement | undefined; }'.","category":1,"code":2322,"next":[{"messageText":"Property 'treeData' is missing in type 'Promise<{ htmlElement: any; }>' but required in type 'IInput'.","category":1,"code":2741,"canonicalHead":{"code":2322,"messageText":"Type 'Promise<{ htmlElement: any; }>' is not assignable to type 'IInput'."}}],"canonicalHead":{"code":2322,"messageText":"Type '({ htmlElement }: IInput & { container?: HTMLElement | undefined; }) => Promise<{ htmlElement: any; }>' is not assignable to type '(state: IInput & { container?: HTMLElement | undefined; }) => IInput & { container?: HTMLElement | undefined; }'."}}]},"relatedInformation":[{"file":"../../src/components/pure/featuresreporterview.test/types.ts","start":175,"length":8,"messageText":"'treeData' is declared here.","category":3,"code":2728},{"file":"../../src/components/pure/featuresreporterview.test/types.ts","start":1470,"length":129,"messageText":"The expected type comes from the return type of this signature.","category":3,"code":6502}]},{"start":1227,"length":11,"messageText":"Property 'htmlElement' does not exist on type 'IInput & { container?: HTMLElement | undefined; }'.","category":1,"code":2339},{"start":1495,"length":28,"code":2322,"category":1,"messageText":{"messageText":"Type '({ htmlElement }: IInput & { container?: HTMLElement | undefined; }) => Promise<{ htmlElement: any; }>' is not assignable to type '(state: IInput & { container?: HTMLElement | undefined; }) => IInput & { container?: HTMLElement | undefined; }'.","category":1,"code":2322,"next":[{"messageText":"Type 'Promise<{ htmlElement: any; }>' is not assignable to type 'IInput & { container?: HTMLElement | undefined; }'.","category":1,"code":2322,"next":[{"messageText":"Property 'treeData' is missing in type 'Promise<{ htmlElement: any; }>' but required in type 'IInput'.","category":1,"code":2741,"canonicalHead":{"code":2322,"messageText":"Type 'Promise<{ htmlElement: any; }>' is not assignable to type 'IInput'."}}],"canonicalHead":{"code":2322,"messageText":"Type '({ htmlElement }: IInput & { container?: HTMLElement | undefined; }) => Promise<{ htmlElement: any; }>' is not assignable to type '(state: IInput & { container?: HTMLElement | undefined; }) => IInput & { container?: HTMLElement | undefined; }'."}}]},"relatedInformation":[{"file":"../../src/components/pure/featuresreporterview.test/types.ts","start":175,"length":8,"messageText":"'treeData' is declared here.","category":3,"code":2728},{"file":"../../src/components/pure/featuresreporterview.test/types.ts","start":1470,"length":129,"messageText":"The expected type comes from the return type of this signature.","category":3,"code":6502}]},{"start":1504,"length":11,"messageText":"Property 'htmlElement' does not exist on type 'IInput & { container?: HTMLElement | undefined; }'.","category":1,"code":2339},{"start":1760,"length":28,"code":2322,"category":1,"messageText":{"messageText":"Type '({ htmlElement }: IInput & { container?: HTMLElement | undefined; }) => Promise<{ htmlElement: any; }>' is not assignable to type '(state: IInput & { container?: HTMLElement | undefined; }) => IInput & { container?: HTMLElement | undefined; }'.","category":1,"code":2322,"next":[{"messageText":"Type 'Promise<{ htmlElement: any; }>' is not assignable to type 'IInput & { container?: HTMLElement | undefined; }'.","category":1,"code":2322,"next":[{"messageText":"Property 'treeData' is missing in type 'Promise<{ htmlElement: any; }>' but required in type 'IInput'.","category":1,"code":2741,"canonicalHead":{"code":2322,"messageText":"Type 'Promise<{ htmlElement: any; }>' is not assignable to type 'IInput'."}}],"canonicalHead":{"code":2322,"messageText":"Type '({ htmlElement }: IInput & { container?: HTMLElement | undefined; }) => Promise<{ htmlElement: any; }>' is not assignable to type '(state: IInput & { container?: HTMLElement | undefined; }) => IInput & { container?: HTMLElement | undefined; }'."}}]},"relatedInformation":[{"file":"../../src/components/pure/featuresreporterview.test/types.ts","start":175,"length":8,"messageText":"'treeData' is declared here.","category":3,"code":2728},{"file":"../../src/components/pure/featuresreporterview.test/types.ts","start":1470,"length":129,"messageText":"The expected type comes from the return type of this signature.","category":3,"code":6502}]},{"start":1769,"length":11,"messageText":"Property 'htmlElement' does not exist on type 'IInput & { container?: HTMLElement | undefined; }'.","category":1,"code":2339},{"start":2028,"length":28,"code":2322,"category":1,"messageText":{"messageText":"Type '({ htmlElement }: IInput & { container?: HTMLElement | undefined; }) => Promise<{ htmlElement: any; }>' is not assignable to type '(state: IInput & { container?: HTMLElement | undefined; }) => IInput & { container?: HTMLElement | undefined; }'.","category":1,"code":2322,"next":[{"messageText":"Type 'Promise<{ htmlElement: any; }>' is not assignable to type 'IInput & { container?: HTMLElement | undefined; }'.","category":1,"code":2322,"next":[{"messageText":"Property 'treeData' is missing in type 'Promise<{ htmlElement: any; }>' but required in type 'IInput'.","category":1,"code":2741,"canonicalHead":{"code":2322,"messageText":"Type 'Promise<{ htmlElement: any; }>' is not assignable to type 'IInput'."}}],"canonicalHead":{"code":2322,"messageText":"Type '({ htmlElement }: IInput & { container?: HTMLElement | undefined; }) => Promise<{ htmlElement: any; }>' is not assignable to type '(state: IInput & { container?: HTMLElement | undefined; }) => IInput & { container?: HTMLElement | undefined; }'."}}]},"relatedInformation":[{"file":"../../src/components/pure/featuresreporterview.test/types.ts","start":175,"length":8,"messageText":"'treeData' is declared here.","category":3,"code":2728},{"file":"../../src/components/pure/featuresreporterview.test/types.ts","start":1470,"length":129,"messageText":"The expected type comes from the return type of this signature.","category":3,"code":6502}]},{"start":2037,"length":11,"messageText":"Property 'htmlElement' does not exist on type 'IInput & { container?: HTMLElement | undefined; }'.","category":1,"code":2339},{"start":2305,"length":28,"code":2322,"category":1,"messageText":{"messageText":"Type '({ htmlElement }: IInput & { container?: HTMLElement | undefined; }) => Promise<{ htmlElement: any; }>' is not assignable to type '(state: IInput & { container?: HTMLElement | undefined; }) => IInput & { container?: HTMLElement | undefined; }'.","category":1,"code":2322,"next":[{"messageText":"Type 'Promise<{ htmlElement: any; }>' is not assignable to type 'IInput & { container?: HTMLElement | undefined; }'.","category":1,"code":2322,"next":[{"messageText":"Property 'treeData' is missing in type 'Promise<{ htmlElement: any; }>' but required in type 'IInput'.","category":1,"code":2741,"canonicalHead":{"code":2322,"messageText":"Type 'Promise<{ htmlElement: any; }>' is not assignable to type 'IInput'."}}],"canonicalHead":{"code":2322,"messageText":"Type '({ htmlElement }: IInput & { container?: HTMLElement | undefined; }) => Promise<{ htmlElement: any; }>' is not assignable to type '(state: IInput & { container?: HTMLElement | undefined; }) => IInput & { container?: HTMLElement | undefined; }'."}}]},"relatedInformation":[{"file":"../../src/components/pure/featuresreporterview.test/types.ts","start":175,"length":8,"messageText":"'treeData' is declared here.","category":3,"code":2728},{"file":"../../src/components/pure/featuresreporterview.test/types.ts","start":1470,"length":129,"messageText":"The expected type comes from the return type of this signature.","category":3,"code":6502}]},{"start":2314,"length":11,"messageText":"Property 'htmlElement' does not exist on type 'IInput & { container?: HTMLElement | undefined; }'.","category":1,"code":2339},{"start":2528,"length":14,"code":2322,"category":1,"messageText":{"messageText":"Type '(name: string) => ({ htmlElement }: { htmlElement: any; }, pm: any) => Promise<{ htmlElement: any; }>' is not assignable to type '(...args: any[]) => (state: IInput & { container?: HTMLElement | undefined; }) => IInput & { container?: HTMLElement | undefined; }'.","category":1,"code":2322,"next":[{"messageText":"Type '({ htmlElement }: { htmlElement: any; }, pm: any) => Promise<{ htmlElement: any; }>' is not assignable to type '(state: IInput & { container?: HTMLElement | undefined; }) => IInput & { container?: HTMLElement | undefined; }'.","category":1,"code":2322,"next":[{"messageText":"Target signature provides too few arguments. Expected 2 or more, but got 1.","category":1,"code":2849}],"canonicalHead":{"code":2322,"messageText":"Type '(name: string) => ({ htmlElement }: { htmlElement: any; }, pm: any) => Promise<{ htmlElement: any; }>' is not assignable to type '(...args: any[]) => (state: IInput & { container?: HTMLElement | undefined; }) => IInput & { container?: HTMLElement | undefined; }'."}}]},"relatedInformation":[{"file":"../../src/components/pure/featuresreporterview.test/types.ts","start":1139,"length":14,"messageText":"The expected type comes from property 'takeScreenshot' which is declared here on type '{ hasProjectNames: (...args: any[]) => (state: IInput & { container?: HTMLElement | undefined; }) => IInput & { container?: HTMLElement | undefined; }; ... 4 more ...; takeScreenshot: (...args: any[]) => (state: IInput & { ...; }) => IInput & { ...; }; }'","category":3,"code":6500}]}]],[848,[{"start":364,"length":12,"code":2786,"category":1,"messageText":{"messageText":"'MemoryRouter' cannot be used as a JSX component.","category":1,"code":2786,"next":[{"messageText":"Its type '({ basename, children, initialEntries, initialIndex, }: MemoryRouterProps) => ReactElement<any, string | JSXElementConstructor<any>>' is not a valid JSX element type.","category":1,"code":18053,"next":[{"messageText":"Type '({ basename, children, initialEntries, initialIndex, }: MemoryRouterProps) => ReactElement<any, string | JSXElementConstructor<any>>' is not assignable to type '(props: any, deprecatedLegacyContext?: any) => ReactNode'.","category":1,"code":2322,"next":[{"messageText":"Type 'ReactElement<any, string | JSXElementConstructor<any>>' is not assignable to type 'ReactNode'.","category":1,"code":2322,"next":[{"messageText":"Property 'children' is missing in type 'ReactElement<any, string | JSXElementConstructor<any>>' but required in type 'ReactPortal'.","category":1,"code":2741,"canonicalHead":{"code":2322,"messageText":"Type 'ReactElement<any, string | JSXElementConstructor<any>>' is not assignable to type 'ReactPortal'."}}],"canonicalHead":{"code":2322,"messageText":"Type '({ basename, children, initialEntries, initialIndex, }: MemoryRouterProps) => ReactElement<any, string | JSXElementConstructor<any>>' is not assignable to type '(props: any, deprecatedLegacyContext?: any) => ReactNode'."}}]}]}]},"relatedInformation":[{"file":"../../../testeranto-react/node_modules/@types/react/index.d.ts","start":10658,"length":8,"messageText":"'children' is declared here.","category":3,"code":2728}]},{"start":383,"length":20,"code":2786,"category":1,"messageText":{"messageText":"'FeaturesReporterView' cannot be used as a JSX component.","category":1,"code":2786,"next":[{"messageText":"Its type 'FC<FeaturesReporterViewProps>' is not a valid JSX element type.","category":1,"code":18053,"next":[{"messageText":"Type 'FunctionComponent<FeaturesReporterViewProps>' is not assignable to type '(props: any, deprecatedLegacyContext?: any) => ReactNode'.","category":1,"code":2322,"next":[{"messageText":"Type 'ReactElement<any, any> | null' is not assignable to type 'ReactNode'.","category":1,"code":2322,"next":[{"messageText":"Type 'ReactElement<any, any>' is not assignable to type 'ReactNode'.","category":1,"code":2322,"next":[{"messageText":"Property 'children' is missing in type 'ReactElement<any, any>' but required in type 'ReactPortal'.","category":1,"code":2741,"canonicalHead":{"code":2322,"messageText":"Type 'ReactElement<any, any>' is not assignable to type 'ReactPortal'."}}]}],"canonicalHead":{"code":2322,"messageText":"Type 'FunctionComponent<FeaturesReporterViewProps>' is not assignable to type '(props: any, deprecatedLegacyContext?: any) => ReactNode'."}}]}]}]},"relatedInformation":[{"file":"../../../testeranto-react/node_modules/@types/react/index.d.ts","start":10658,"length":8,"messageText":"'children' is declared here.","category":3,"code":2728}]},{"start":487,"length":13,"code":2345,"category":1,"messageText":{"messageText":"Argument of type 'import(\"/Users/adam/Code/testeranto/src/CoreTypes\").ITestSpecification<import(\"/Users/adam/Code/testeranto/src/components/pure/FeaturesReporterView.test/types\").I, import(\"/Users/adam/Code/testeranto/src/components/pure/FeaturesReporterView.test/types\").O>' is not assignable to parameter of type 'import(\"/Users/adam/Code/testeranto/src/CoreTypes\").ITestSpecification<import(\"/Users/adam/Code/testeranto-react/src/react-dom/component/dynamic\").I, import(\"/Users/adam/Code/testeranto/src/components/pure/FeaturesReporterView.test/types\").O>'.","category":1,"code":2345,"next":[{"messageText":"Types of parameters 'Suite' and 'Suite' are incompatible.","category":1,"code":2328,"next":[{"messageText":"Type 'import(\"/Users/adam/Code/testeranto/src/Types\").SuiteSpecification<import(\"/Users/adam/Code/testeranto-react/src/react-dom/component/dynamic\").I, import(\"/Users/adam/Code/testeranto/src/components/pure/FeaturesReporterView.test/types\").O>' is not assignable to type 'import(\"/Users/adam/Code/testeranto/src/Types\").SuiteSpecification<import(\"/Users/adam/Code/testeranto/src/components/pure/FeaturesReporterView.test/types\").I, import(\"/Users/adam/Code/testeranto/src/components/pure/FeaturesReporterView.test/types\").O>'.","category":1,"code":2322,"next":[{"messageText":"Types of property 'Default' are incompatible.","category":1,"code":2326,"next":[{"messageText":"Type '(name: string, givens: import(\"/Users/adam/Code/testeranto/src/lib/abstractBase\").IGivens<import(\"/Users/adam/Code/testeranto-react/src/react-dom/component/dynamic\").I>) => import(\"/Users/adam/Code/testeranto/src/lib/BaseSuite\").BaseSuite<...>' is not assignable to type '(name: string, givens: import(\"/Users/adam/Code/testeranto/src/lib/abstractBase\").IGivens<import(\"/Users/adam/Code/testeranto/src/components/pure/FeaturesReporterView.test/types\").I>) => import(\"/Users/adam/Code/testeranto/src/lib/BaseSuite\").BaseSuite<...>'.","category":1,"code":2322,"next":[{"messageText":"Types of parameters 'givens' and 'givens' are incompatible.","category":1,"code":2328,"next":[{"messageText":"Type 'import(\"/Users/adam/Code/testeranto/src/lib/abstractBase\").IGivens<import(\"/Users/adam/Code/testeranto/src/components/pure/FeaturesReporterView.test/types\").I>' is not assignable to type 'import(\"/Users/adam/Code/testeranto/src/lib/abstractBase\").IGivens<import(\"/Users/adam/Code/testeranto-react/src/react-dom/component/dynamic\").I>'.","category":1,"code":2322,"next":[{"messageText":"Type 'import(\"/Users/adam/Code/testeranto/src/components/pure/FeaturesReporterView.test/types\").I' is not assignable to type 'import(\"/Users/adam/Code/testeranto-react/src/react-dom/component/dynamic\").I'.","category":1,"code":2322,"next":[{"messageText":"Types of property 'iinput' are incompatible.","category":1,"code":2326,"next":[{"messageText":"Property 'prototype' is missing in type 'IInput' but required in type 'typeof Component'.","category":1,"code":2741,"canonicalHead":{"code":2322,"messageText":"Type 'import(\"/Users/adam/Code/testeranto/src/components/pure/FeaturesReporterView.test/types\").I' is not assignable to type 'import(\"/Users/adam/Code/testeranto-react/src/react-dom/component/dynamic\").I'."}}]}]}]}]}],"canonicalHead":{"code":2322,"messageText":"Type 'import(\"/Users/adam/Code/testeranto/src/Types\").SuiteSpecification<import(\"/Users/adam/Code/testeranto-react/src/react-dom/component/dynamic\").I, import(\"/Users/adam/Code/testeranto/src/components/pure/FeaturesReporterView.test/types\").O>' is not assignable to type 'import(\"/Users/adam/Code/testeranto/src/Types\").SuiteSpecification<import(\"/Users/adam/Code/testeranto/src/components/pure/FeaturesReporterView.test/types\").I, import(\"/Users/adam/Code/testeranto/src/components/pure/FeaturesReporterView.test/types\").O>'."}}]}]}]}]}}]],[849,[{"start":410,"length":28,"code":2322,"category":1,"messageText":{"messageText":"Type '({ htmlElement }: IModalContentProps & { container?: HTMLElement | undefined; }) => Promise<{ htmlElement: any; }>' is not assignable to type '(state: IModalContentProps & { container?: HTMLElement | undefined; }) => IModalContentProps & { container?: HTMLElement | undefined; }'.","category":1,"code":2322,"next":[{"messageText":"Type 'Promise<{ htmlElement: any; }>' is not assignable to type 'IModalContentProps & { container?: HTMLElement | undefined; }'.","category":1,"code":2322,"next":[{"messageText":"Type 'Promise<{ htmlElement: any; }>' is missing the following properties from type 'IModalContentProps': theme, handleThemeChange","category":1,"code":2739,"canonicalHead":{"code":2322,"messageText":"Type 'Promise<{ htmlElement: any; }>' is not assignable to type 'IModalContentProps'."}}],"canonicalHead":{"code":2322,"messageText":"Type '({ htmlElement }: IModalContentProps & { container?: HTMLElement | undefined; }) => Promise<{ htmlElement: any; }>' is not assignable to type '(state: IModalContentProps & { container?: HTMLElement | undefined; }) => IModalContentProps & { container?: HTMLElement | undefined; }'."}}]},"relatedInformation":[{"file":"../../src/components/pure/modalcontent.test/types.ts","start":1372,"length":153,"messageText":"The expected type comes from the return type of this signature.","category":3,"code":6502}]},{"start":419,"length":11,"messageText":"Property 'htmlElement' does not exist on type 'IModalContentProps & { container?: HTMLElement | undefined; }'.","category":1,"code":2339},{"start":654,"length":28,"code":2322,"category":1,"messageText":{"messageText":"Type '({ htmlElement }: IModalContentProps & { container?: HTMLElement | undefined; }) => Promise<{ htmlElement: any; }>' is not assignable to type '(state: IModalContentProps & { container?: HTMLElement | undefined; }) => IModalContentProps & { container?: HTMLElement | undefined; }'.","category":1,"code":2322,"next":[{"messageText":"Type 'Promise<{ htmlElement: any; }>' is not assignable to type 'IModalContentProps & { container?: HTMLElement | undefined; }'.","category":1,"code":2322,"next":[{"messageText":"Type 'Promise<{ htmlElement: any; }>' is missing the following properties from type 'IModalContentProps': theme, handleThemeChange","category":1,"code":2739,"canonicalHead":{"code":2322,"messageText":"Type 'Promise<{ htmlElement: any; }>' is not assignable to type 'IModalContentProps'."}}],"canonicalHead":{"code":2322,"messageText":"Type '({ htmlElement }: IModalContentProps & { container?: HTMLElement | undefined; }) => Promise<{ htmlElement: any; }>' is not assignable to type '(state: IModalContentProps & { container?: HTMLElement | undefined; }) => IModalContentProps & { container?: HTMLElement | undefined; }'."}}]},"relatedInformation":[{"file":"../../src/components/pure/modalcontent.test/types.ts","start":1372,"length":153,"messageText":"The expected type comes from the return type of this signature.","category":3,"code":6502}]},{"start":663,"length":11,"messageText":"Property 'htmlElement' does not exist on type 'IModalContentProps & { container?: HTMLElement | undefined; }'.","category":1,"code":2339},{"start":895,"length":14,"code":2322,"category":1,"messageText":{"messageText":"Type '(name: string) => ({ htmlElement }: { htmlElement: any; }, pm: any) => Promise<{ htmlElement: any; }>' is not assignable to type '(...args: any[]) => (state: IModalContentProps & { container?: HTMLElement | undefined; }) => IModalContentProps & { container?: HTMLElement | undefined; }'.","category":1,"code":2322,"next":[{"messageText":"Type '({ htmlElement }: { htmlElement: any; }, pm: any) => Promise<{ htmlElement: any; }>' is not assignable to type '(state: IModalContentProps & { container?: HTMLElement | undefined; }) => IModalContentProps & { container?: HTMLElement | undefined; }'.","category":1,"code":2322,"next":[{"messageText":"Target signature provides too few arguments. Expected 2 or more, but got 1.","category":1,"code":2849}],"canonicalHead":{"code":2322,"messageText":"Type '(name: string) => ({ htmlElement }: { htmlElement: any; }, pm: any) => Promise<{ htmlElement: any; }>' is not assignable to type '(...args: any[]) => (state: IModalContentProps & { container?: HTMLElement | undefined; }) => IModalContentProps & { container?: HTMLElement | undefined; }'."}}]},"relatedInformation":[{"file":"../../src/components/pure/modalcontent.test/types.ts","start":1005,"length":14,"messageText":"The expected type comes from property 'takeScreenshot' which is declared here on type '{ hasModalHeader: (...args: any[]) => (state: IModalContentProps & { container?: HTMLElement | undefined; }) => IModalContentProps & { ...; }; hasThemeCards: (...args: any[]) => (state: IModalContentProps & { ...; }) => IModalContentProps & { ...; }; takeScreenshot: (...args: any[]) => (state: IModalContentProps & {...'","category":3,"code":6500}]}]],[850,[{"start":291,"length":12,"code":2786,"category":1,"messageText":{"messageText":"'ModalContent' cannot be used as a JSX component.","category":1,"code":2786,"next":[{"messageText":"Its type '({ theme, handleThemeChange, }: IModalContentProps) => JSX.Element' is not a valid JSX element type.","category":1,"code":18053,"next":[{"messageText":"Type '({ theme, handleThemeChange, }: IModalContentProps) => JSX.Element' is not assignable to type '(props: any, deprecatedLegacyContext?: any) => ReactNode'.","category":1,"code":2322,"next":[{"messageText":"Type 'Element' is not assignable to type 'ReactNode'.","category":1,"code":2322,"next":[{"messageText":"Property 'children' is missing in type 'Element' but required in type 'ReactPortal'.","category":1,"code":2741,"canonicalHead":{"code":2322,"messageText":"Type 'Element' is not assignable to type 'ReactPortal'."}}],"canonicalHead":{"code":2322,"messageText":"Type '({ theme, handleThemeChange, }: IModalContentProps) => JSX.Element' is not assignable to type '(props: any, deprecatedLegacyContext?: any) => ReactNode'."}}]}]}]},"relatedInformation":[{"file":"../../../testeranto-react/node_modules/@types/react/index.d.ts","start":10658,"length":8,"messageText":"'children' is declared here.","category":3,"code":2728}]},{"start":369,"length":13,"code":2345,"category":1,"messageText":{"messageText":"Argument of type 'import(\"/Users/adam/Code/testeranto/src/CoreTypes\").ITestSpecification<import(\"/Users/adam/Code/testeranto/src/components/pure/ModalContent.test/types\").I, import(\"/Users/adam/Code/testeranto/src/components/pure/ModalContent.test/types\").O>' is not assignable to parameter of type 'import(\"/Users/adam/Code/testeranto/src/CoreTypes\").ITestSpecification<import(\"/Users/adam/Code/testeranto-react/src/react-dom/component/dynamic\").I, import(\"/Users/adam/Code/testeranto/src/components/pure/ModalContent.test/types\").O>'.","category":1,"code":2345,"next":[{"messageText":"Types of parameters 'Suite' and 'Suite' are incompatible.","category":1,"code":2328,"next":[{"messageText":"Type 'import(\"/Users/adam/Code/testeranto/src/Types\").SuiteSpecification<import(\"/Users/adam/Code/testeranto-react/src/react-dom/component/dynamic\").I, import(\"/Users/adam/Code/testeranto/src/components/pure/ModalContent.test/types\").O>' is not assignable to type 'import(\"/Users/adam/Code/testeranto/src/Types\").SuiteSpecification<import(\"/Users/adam/Code/testeranto/src/components/pure/ModalContent.test/types\").I, import(\"/Users/adam/Code/testeranto/src/components/pure/ModalContent.test/types\").O>'.","category":1,"code":2322,"next":[{"messageText":"Types of property 'Default' are incompatible.","category":1,"code":2326,"next":[{"messageText":"Type '(name: string, givens: import(\"/Users/adam/Code/testeranto/src/lib/abstractBase\").IGivens<import(\"/Users/adam/Code/testeranto-react/src/react-dom/component/dynamic\").I>) => import(\"/Users/adam/Code/testeranto/src/lib/BaseSuite\").BaseSuite<...>' is not assignable to type '(name: string, givens: import(\"/Users/adam/Code/testeranto/src/lib/abstractBase\").IGivens<import(\"/Users/adam/Code/testeranto/src/components/pure/ModalContent.test/types\").I>) => import(\"/Users/adam/Code/testeranto/src/lib/BaseSuite\").BaseSuite<...>'.","category":1,"code":2322,"next":[{"messageText":"Types of parameters 'givens' and 'givens' are incompatible.","category":1,"code":2328,"next":[{"messageText":"Type 'import(\"/Users/adam/Code/testeranto/src/lib/abstractBase\").IGivens<import(\"/Users/adam/Code/testeranto/src/components/pure/ModalContent.test/types\").I>' is not assignable to type 'import(\"/Users/adam/Code/testeranto/src/lib/abstractBase\").IGivens<import(\"/Users/adam/Code/testeranto-react/src/react-dom/component/dynamic\").I>'.","category":1,"code":2322,"next":[{"messageText":"Type 'import(\"/Users/adam/Code/testeranto/src/components/pure/ModalContent.test/types\").I' is not assignable to type 'import(\"/Users/adam/Code/testeranto-react/src/react-dom/component/dynamic\").I'.","category":1,"code":2322,"next":[{"messageText":"Types of property 'iinput' are incompatible.","category":1,"code":2326,"next":[{"messageText":"Property 'prototype' is missing in type 'IModalContentProps' but required in type 'typeof Component'.","category":1,"code":2741,"canonicalHead":{"code":2322,"messageText":"Type 'import(\"/Users/adam/Code/testeranto/src/components/pure/ModalContent.test/types\").I' is not assignable to type 'import(\"/Users/adam/Code/testeranto-react/src/react-dom/component/dynamic\").I'."}}]}]}]}]}],"canonicalHead":{"code":2322,"messageText":"Type 'import(\"/Users/adam/Code/testeranto/src/Types\").SuiteSpecification<import(\"/Users/adam/Code/testeranto-react/src/react-dom/component/dynamic\").I, import(\"/Users/adam/Code/testeranto/src/components/pure/ModalContent.test/types\").O>' is not assignable to type 'import(\"/Users/adam/Code/testeranto/src/Types\").SuiteSpecification<import(\"/Users/adam/Code/testeranto/src/components/pure/ModalContent.test/types\").I, import(\"/Users/adam/Code/testeranto/src/components/pure/ModalContent.test/types\").O>'."}}]}]}]}]}}]],[851,[{"start":276,"length":2008,"code":2739,"category":1,"messageText":"Type '{ summary: { \"test-suite-1\": { testsExist: boolean; runTimeErrors: number; typeErrors: number; staticErrors: number; }; \"test-suite-2\": { testsExist: boolean; runTimeErrors: number; typeErrors: number; staticErrors: number; }; }; ... 9 more ...; navigate: () => void; }' is missing the following properties from type 'IProjectPageViewProps': activeTab, setActiveTab","relatedInformation":[{"file":"../../src/components/pure/projectpageview.test/types.ts","start":2022,"length":41,"messageText":"The expected type comes from the return type of this signature.","category":3,"code":6502}],"canonicalHead":{"code":2322,"messageText":"Type '{ summary: { \"test-suite-1\": { testsExist: boolean; runTimeErrors: number; typeErrors: number; staticErrors: number; }; \"test-suite-2\": { testsExist: boolean; runTimeErrors: number; typeErrors: number; staticErrors: number; }; }; ... 9 more ...; navigate: () => void; }' is not assignable to type 'IProjectPageViewProps'."}},{"start":2307,"length":292,"code":2739,"category":1,"messageText":"Type '{ summary: null; nodeLogs: null; webLogs: null; pureLogs: null; config: { tests: never[]; }; loading: false; error: string; projectName: string; route: string; setRoute: () => void; navigate: () => void; }' is missing the following properties from type 'IProjectPageViewProps': activeTab, setActiveTab","relatedInformation":[{"file":"../../src/components/pure/projectpageview.test/types.ts","start":2022,"length":41,"messageText":"The expected type comes from the return type of this signature.","category":3,"code":6502}],"canonicalHead":{"code":2322,"messageText":"Type '{ summary: null; nodeLogs: null; webLogs: null; pureLogs: null; config: { tests: never[]; }; loading: false; error: string; projectName: string; route: string; setRoute: () => void; navigate: () => void; }' is not assignable to type 'IProjectPageViewProps'."}},{"start":2678,"length":28,"code":2322,"category":1,"messageText":{"messageText":"Type '({ htmlElement }: IProjectPageViewProps & { container?: HTMLElement | undefined; }) => Promise<{ htmlElement: any; }>' is not assignable to type '(state: IProjectPageViewProps & { container?: HTMLElement | undefined; }) => IProjectPageViewProps & { container?: HTMLElement | undefined; }'.","category":1,"code":2322,"next":[{"messageText":"Type 'Promise<{ htmlElement: any; }>' is not assignable to type 'IProjectPageViewProps & { container?: HTMLElement | undefined; }'.","category":1,"code":2322,"next":[{"messageText":"Type 'Promise<{ htmlElement: any; }>' is missing the following properties from type 'IProjectPageViewProps': summary, nodeLogs, webLogs, pureLogs, and 6 more.","category":1,"code":2740,"canonicalHead":{"code":2322,"messageText":"Type 'Promise<{ htmlElement: any; }>' is not assignable to type 'IProjectPageViewProps'."}}],"canonicalHead":{"code":2322,"messageText":"Type '({ htmlElement }: IProjectPageViewProps & { container?: HTMLElement | undefined; }) => Promise<{ htmlElement: any; }>' is not assignable to type '(state: IProjectPageViewProps & { container?: HTMLElement | undefined; }) => IProjectPageViewProps & { container?: HTMLElement | undefined; }'."}}]},"relatedInformation":[{"file":"../../src/components/pure/projectpageview.test/types.ts","start":2304,"length":159,"messageText":"The expected type comes from the return type of this signature.","category":3,"code":6502}]},{"start":2687,"length":11,"messageText":"Property 'htmlElement' does not exist on type 'IProjectPageViewProps & { container?: HTMLElement | undefined; }'.","category":1,"code":2339},{"start":2934,"length":28,"code":2322,"category":1,"messageText":{"messageText":"Type '({ htmlElement }: IProjectPageViewProps & { container?: HTMLElement | undefined; }) => Promise<{ htmlElement: any; }>' is not assignable to type '(state: IProjectPageViewProps & { container?: HTMLElement | undefined; }) => IProjectPageViewProps & { container?: HTMLElement | undefined; }'.","category":1,"code":2322,"next":[{"messageText":"Type 'Promise<{ htmlElement: any; }>' is not assignable to type 'IProjectPageViewProps & { container?: HTMLElement | undefined; }'.","category":1,"code":2322,"next":[{"messageText":"Type 'Promise<{ htmlElement: any; }>' is missing the following properties from type 'IProjectPageViewProps': summary, nodeLogs, webLogs, pureLogs, and 6 more.","category":1,"code":2740,"canonicalHead":{"code":2322,"messageText":"Type 'Promise<{ htmlElement: any; }>' is not assignable to type 'IProjectPageViewProps'."}}],"canonicalHead":{"code":2322,"messageText":"Type '({ htmlElement }: IProjectPageViewProps & { container?: HTMLElement | undefined; }) => Promise<{ htmlElement: any; }>' is not assignable to type '(state: IProjectPageViewProps & { container?: HTMLElement | undefined; }) => IProjectPageViewProps & { container?: HTMLElement | undefined; }'."}}]},"relatedInformation":[{"file":"../../src/components/pure/projectpageview.test/types.ts","start":2304,"length":159,"messageText":"The expected type comes from the return type of this signature.","category":3,"code":6502}]},{"start":2943,"length":11,"messageText":"Property 'htmlElement' does not exist on type 'IProjectPageViewProps & { container?: HTMLElement | undefined; }'.","category":1,"code":2339},{"start":3182,"length":28,"code":2322,"category":1,"messageText":{"messageText":"Type '({ htmlElement }: IProjectPageViewProps & { container?: HTMLElement | undefined; }) => Promise<{ htmlElement: any; }>' is not assignable to type '(state: IProjectPageViewProps & { container?: HTMLElement | undefined; }) => IProjectPageViewProps & { container?: HTMLElement | undefined; }'.","category":1,"code":2322,"next":[{"messageText":"Type 'Promise<{ htmlElement: any; }>' is not assignable to type 'IProjectPageViewProps & { container?: HTMLElement | undefined; }'.","category":1,"code":2322,"next":[{"messageText":"Type 'Promise<{ htmlElement: any; }>' is missing the following properties from type 'IProjectPageViewProps': summary, nodeLogs, webLogs, pureLogs, and 6 more.","category":1,"code":2740,"canonicalHead":{"code":2322,"messageText":"Type 'Promise<{ htmlElement: any; }>' is not assignable to type 'IProjectPageViewProps'."}}],"canonicalHead":{"code":2322,"messageText":"Type '({ htmlElement }: IProjectPageViewProps & { container?: HTMLElement | undefined; }) => Promise<{ htmlElement: any; }>' is not assignable to type '(state: IProjectPageViewProps & { container?: HTMLElement | undefined; }) => IProjectPageViewProps & { container?: HTMLElement | undefined; }'."}}]},"relatedInformation":[{"file":"../../src/components/pure/projectpageview.test/types.ts","start":2304,"length":159,"messageText":"The expected type comes from the return type of this signature.","category":3,"code":6502}]},{"start":3191,"length":11,"messageText":"Property 'htmlElement' does not exist on type 'IProjectPageViewProps & { container?: HTMLElement | undefined; }'.","category":1,"code":2339},{"start":3463,"length":28,"code":2322,"category":1,"messageText":{"messageText":"Type '({ htmlElement }: IProjectPageViewProps & { container?: HTMLElement | undefined; }) => Promise<{ htmlElement: any; }>' is not assignable to type '(state: IProjectPageViewProps & { container?: HTMLElement | undefined; }) => IProjectPageViewProps & { container?: HTMLElement | undefined; }'.","category":1,"code":2322,"next":[{"messageText":"Type 'Promise<{ htmlElement: any; }>' is not assignable to type 'IProjectPageViewProps & { container?: HTMLElement | undefined; }'.","category":1,"code":2322,"next":[{"messageText":"Type 'Promise<{ htmlElement: any; }>' is missing the following properties from type 'IProjectPageViewProps': summary, nodeLogs, webLogs, pureLogs, and 6 more.","category":1,"code":2740,"canonicalHead":{"code":2322,"messageText":"Type 'Promise<{ htmlElement: any; }>' is not assignable to type 'IProjectPageViewProps'."}}],"canonicalHead":{"code":2322,"messageText":"Type '({ htmlElement }: IProjectPageViewProps & { container?: HTMLElement | undefined; }) => Promise<{ htmlElement: any; }>' is not assignable to type '(state: IProjectPageViewProps & { container?: HTMLElement | undefined; }) => IProjectPageViewProps & { container?: HTMLElement | undefined; }'."}}]},"relatedInformation":[{"file":"../../src/components/pure/projectpageview.test/types.ts","start":2304,"length":159,"messageText":"The expected type comes from the return type of this signature.","category":3,"code":6502}]},{"start":3472,"length":11,"messageText":"Property 'htmlElement' does not exist on type 'IProjectPageViewProps & { container?: HTMLElement | undefined; }'.","category":1,"code":2339},{"start":3709,"length":28,"code":2322,"category":1,"messageText":{"messageText":"Type '({ htmlElement }: IProjectPageViewProps & { container?: HTMLElement | undefined; }) => Promise<{ htmlElement: any; }>' is not assignable to type '(state: IProjectPageViewProps & { container?: HTMLElement | undefined; }) => IProjectPageViewProps & { container?: HTMLElement | undefined; }'.","category":1,"code":2322,"next":[{"messageText":"Type 'Promise<{ htmlElement: any; }>' is not assignable to type 'IProjectPageViewProps & { container?: HTMLElement | undefined; }'.","category":1,"code":2322,"next":[{"messageText":"Type 'Promise<{ htmlElement: any; }>' is missing the following properties from type 'IProjectPageViewProps': summary, nodeLogs, webLogs, pureLogs, and 6 more.","category":1,"code":2740,"canonicalHead":{"code":2322,"messageText":"Type 'Promise<{ htmlElement: any; }>' is not assignable to type 'IProjectPageViewProps'."}}],"canonicalHead":{"code":2322,"messageText":"Type '({ htmlElement }: IProjectPageViewProps & { container?: HTMLElement | undefined; }) => Promise<{ htmlElement: any; }>' is not assignable to type '(state: IProjectPageViewProps & { container?: HTMLElement | undefined; }) => IProjectPageViewProps & { container?: HTMLElement | undefined; }'."}}]},"relatedInformation":[{"file":"../../src/components/pure/projectpageview.test/types.ts","start":2304,"length":159,"messageText":"The expected type comes from the return type of this signature.","category":3,"code":6502}]},{"start":3718,"length":11,"messageText":"Property 'htmlElement' does not exist on type 'IProjectPageViewProps & { container?: HTMLElement | undefined; }'.","category":1,"code":2339},{"start":3919,"length":2,"messageText":"'el' is of type 'unknown'.","category":1,"code":18046},{"start":4108,"length":28,"code":2322,"category":1,"messageText":{"messageText":"Type '({ htmlElement }: IProjectPageViewProps & { container?: HTMLElement | undefined; }) => Promise<{ htmlElement: any; }>' is not assignable to type '(state: IProjectPageViewProps & { container?: HTMLElement | undefined; }) => IProjectPageViewProps & { container?: HTMLElement | undefined; }'.","category":1,"code":2322,"next":[{"messageText":"Type 'Promise<{ htmlElement: any; }>' is not assignable to type 'IProjectPageViewProps & { container?: HTMLElement | undefined; }'.","category":1,"code":2322,"next":[{"messageText":"Type 'Promise<{ htmlElement: any; }>' is missing the following properties from type 'IProjectPageViewProps': summary, nodeLogs, webLogs, pureLogs, and 6 more.","category":1,"code":2740,"canonicalHead":{"code":2322,"messageText":"Type 'Promise<{ htmlElement: any; }>' is not assignable to type 'IProjectPageViewProps'."}}],"canonicalHead":{"code":2322,"messageText":"Type '({ htmlElement }: IProjectPageViewProps & { container?: HTMLElement | undefined; }) => Promise<{ htmlElement: any; }>' is not assignable to type '(state: IProjectPageViewProps & { container?: HTMLElement | undefined; }) => IProjectPageViewProps & { container?: HTMLElement | undefined; }'."}}]},"relatedInformation":[{"file":"../../src/components/pure/projectpageview.test/types.ts","start":2304,"length":159,"messageText":"The expected type comes from the return type of this signature.","category":3,"code":6502}]},{"start":4117,"length":11,"messageText":"Property 'htmlElement' does not exist on type 'IProjectPageViewProps & { container?: HTMLElement | undefined; }'.","category":1,"code":2339},{"start":4318,"length":2,"messageText":"'el' is of type 'unknown'.","category":1,"code":18046},{"start":4500,"length":28,"code":2322,"category":1,"messageText":{"messageText":"Type '({ htmlElement }: IProjectPageViewProps & { container?: HTMLElement | undefined; }) => Promise<{ htmlElement: any; }>' is not assignable to type '(state: IProjectPageViewProps & { container?: HTMLElement | undefined; }) => IProjectPageViewProps & { container?: HTMLElement | undefined; }'.","category":1,"code":2322,"next":[{"messageText":"Type 'Promise<{ htmlElement: any; }>' is not assignable to type 'IProjectPageViewProps & { container?: HTMLElement | undefined; }'.","category":1,"code":2322,"next":[{"messageText":"Type 'Promise<{ htmlElement: any; }>' is missing the following properties from type 'IProjectPageViewProps': summary, nodeLogs, webLogs, pureLogs, and 6 more.","category":1,"code":2740,"canonicalHead":{"code":2322,"messageText":"Type 'Promise<{ htmlElement: any; }>' is not assignable to type 'IProjectPageViewProps'."}}],"canonicalHead":{"code":2322,"messageText":"Type '({ htmlElement }: IProjectPageViewProps & { container?: HTMLElement | undefined; }) => Promise<{ htmlElement: any; }>' is not assignable to type '(state: IProjectPageViewProps & { container?: HTMLElement | undefined; }) => IProjectPageViewProps & { container?: HTMLElement | undefined; }'."}}]},"relatedInformation":[{"file":"../../src/components/pure/projectpageview.test/types.ts","start":2304,"length":159,"messageText":"The expected type comes from the return type of this signature.","category":3,"code":6502}]},{"start":4509,"length":11,"messageText":"Property 'htmlElement' does not exist on type 'IProjectPageViewProps & { container?: HTMLElement | undefined; }'.","category":1,"code":2339},{"start":4862,"length":14,"code":2322,"category":1,"messageText":{"messageText":"Type '(name: string) => ({ htmlElement }: { htmlElement: any; }, pm: any) => Promise<{ htmlElement: any; }>' is not assignable to type '(...args: any[]) => (state: IProjectPageViewProps & { container?: HTMLElement | undefined; }) => IProjectPageViewProps & { ...; }'.","category":1,"code":2322,"next":[{"messageText":"Type '({ htmlElement }: { htmlElement: any; }, pm: any) => Promise<{ htmlElement: any; }>' is not assignable to type '(state: IProjectPageViewProps & { container?: HTMLElement | undefined; }) => IProjectPageViewProps & { container?: HTMLElement | undefined; }'.","category":1,"code":2322,"next":[{"messageText":"Target signature provides too few arguments. Expected 2 or more, but got 1.","category":1,"code":2849}],"canonicalHead":{"code":2322,"messageText":"Type '(name: string) => ({ htmlElement }: { htmlElement: any; }, pm: any) => Promise<{ htmlElement: any; }>' is not assignable to type '(...args: any[]) => (state: IProjectPageViewProps & { container?: HTMLElement | undefined; }) => IProjectPageViewProps & { ...; }'."}}]},"relatedInformation":[{"file":"../../src/components/pure/projectpageview.test/types.ts","start":1928,"length":14,"messageText":"The expected type comes from property 'takeScreenshot' which is declared here on type '{ hasContainerFluid: (...args: any[]) => (state: IProjectPageViewProps & { container?: HTMLElement | undefined; }) => IProjectPageViewProps & { ...; }; ... 6 more ...; takeScreenshot: (...args: any[]) => (state: IProjectPageViewProps & { ...; }) => IProjectPageViewProps & { ...; }; }'","category":3,"code":6500}]}]],[852,[{"start":321,"length":21,"messageText":"Cannot find module './../../../App.scss' or its corresponding type declarations.","category":1,"code":2307},{"start":392,"length":12,"code":2786,"category":1,"messageText":{"messageText":"'MemoryRouter' cannot be used as a JSX component.","category":1,"code":2786,"next":[{"messageText":"Its type '({ basename, children, initialEntries, initialIndex, }: MemoryRouterProps) => ReactElement<any, string | JSXElementConstructor<any>>' is not a valid JSX element type.","category":1,"code":18053,"next":[{"messageText":"Type '({ basename, children, initialEntries, initialIndex, }: MemoryRouterProps) => ReactElement<any, string | JSXElementConstructor<any>>' is not assignable to type '(props: any, deprecatedLegacyContext?: any) => ReactNode'.","category":1,"code":2322,"next":[{"messageText":"Type 'ReactElement<any, string | JSXElementConstructor<any>>' is not assignable to type 'ReactNode'.","category":1,"code":2322,"next":[{"messageText":"Property 'children' is missing in type 'ReactElement<any, string | JSXElementConstructor<any>>' but required in type 'ReactPortal'.","category":1,"code":2741,"canonicalHead":{"code":2322,"messageText":"Type 'ReactElement<any, string | JSXElementConstructor<any>>' is not assignable to type 'ReactPortal'."}}],"canonicalHead":{"code":2322,"messageText":"Type '({ basename, children, initialEntries, initialIndex, }: MemoryRouterProps) => ReactElement<any, string | JSXElementConstructor<any>>' is not assignable to type '(props: any, deprecatedLegacyContext?: any) => ReactNode'."}}]}]}]},"relatedInformation":[{"file":"../../../testeranto-react/node_modules/@types/react/index.d.ts","start":10658,"length":8,"messageText":"'children' is declared here.","category":3,"code":2728}]},{"start":411,"length":15,"code":2786,"category":1,"messageText":{"messageText":"'ProjectPageView' cannot be used as a JSX component.","category":1,"code":2786,"next":[{"messageText":"Its type '({ summary, nodeLogs, webLogs, pureLogs, config, loading, error, projectName, activeTab, setActiveTab }: IProjectPageViewProps) => JSX.Element' is not a valid JSX element type.","category":1,"code":18053,"next":[{"messageText":"Type '({ summary, nodeLogs, webLogs, pureLogs, config, loading, error, projectName, activeTab, setActiveTab }: IProjectPageViewProps) => JSX.Element' is not assignable to type '(props: any, deprecatedLegacyContext?: any) => ReactNode'.","category":1,"code":2322,"next":[{"messageText":"Type 'Element' is not assignable to type 'ReactNode'.","category":1,"code":2322,"next":[{"messageText":"Property 'children' is missing in type 'Element' but required in type 'ReactPortal'.","category":1,"code":2741,"canonicalHead":{"code":2322,"messageText":"Type 'Element' is not assignable to type 'ReactPortal'."}}],"canonicalHead":{"code":2322,"messageText":"Type '({ summary, nodeLogs, webLogs, pureLogs, config, loading, error, projectName, activeTab, setActiveTab }: IProjectPageViewProps) => JSX.Element' is not assignable to type '(props: any, deprecatedLegacyContext?: any) => ReactNode'."}}]}]}]},"relatedInformation":[{"file":"../../../testeranto-react/node_modules/@types/react/index.d.ts","start":10658,"length":8,"messageText":"'children' is declared here.","category":3,"code":2728}]},{"start":527,"length":13,"code":2345,"category":1,"messageText":{"messageText":"Argument of type 'import(\"/Users/adam/Code/testeranto/src/CoreTypes\").ITestSpecification<import(\"/Users/adam/Code/testeranto/src/components/pure/ProjectPageView.test/types\").I, import(\"/Users/adam/Code/testeranto/src/components/pure/ProjectPageView.test/types\").O>' is not assignable to parameter of type 'import(\"/Users/adam/Code/testeranto/src/CoreTypes\").ITestSpecification<import(\"/Users/adam/Code/testeranto-react/src/react-dom/component/dynamic\").I, import(\"/Users/adam/Code/testeranto/src/components/pure/ProjectPageView.test/types\").O>'.","category":1,"code":2345,"next":[{"messageText":"Types of parameters 'Suite' and 'Suite' are incompatible.","category":1,"code":2328,"next":[{"messageText":"Type 'import(\"/Users/adam/Code/testeranto/src/Types\").SuiteSpecification<import(\"/Users/adam/Code/testeranto-react/src/react-dom/component/dynamic\").I, import(\"/Users/adam/Code/testeranto/src/components/pure/ProjectPageView.test/types\").O>' is not assignable to type 'import(\"/Users/adam/Code/testeranto/src/Types\").SuiteSpecification<import(\"/Users/adam/Code/testeranto/src/components/pure/ProjectPageView.test/types\").I, import(\"/Users/adam/Code/testeranto/src/components/pure/ProjectPageView.test/types\").O>'.","category":1,"code":2322,"next":[{"messageText":"Types of property 'Default' are incompatible.","category":1,"code":2326,"next":[{"messageText":"Type '(name: string, givens: import(\"/Users/adam/Code/testeranto/src/lib/abstractBase\").IGivens<import(\"/Users/adam/Code/testeranto-react/src/react-dom/component/dynamic\").I>) => import(\"/Users/adam/Code/testeranto/src/lib/BaseSuite\").BaseSuite<...>' is not assignable to type '(name: string, givens: import(\"/Users/adam/Code/testeranto/src/lib/abstractBase\").IGivens<import(\"/Users/adam/Code/testeranto/src/components/pure/ProjectPageView.test/types\").I>) => import(\"/Users/adam/Code/testeranto/src/lib/BaseSuite\").BaseSuite<...>'.","category":1,"code":2322,"next":[{"messageText":"Types of parameters 'givens' and 'givens' are incompatible.","category":1,"code":2328,"next":[{"messageText":"Type 'import(\"/Users/adam/Code/testeranto/src/lib/abstractBase\").IGivens<import(\"/Users/adam/Code/testeranto/src/components/pure/ProjectPageView.test/types\").I>' is not assignable to type 'import(\"/Users/adam/Code/testeranto/src/lib/abstractBase\").IGivens<import(\"/Users/adam/Code/testeranto-react/src/react-dom/component/dynamic\").I>'.","category":1,"code":2322,"next":[{"messageText":"Type 'import(\"/Users/adam/Code/testeranto/src/components/pure/ProjectPageView.test/types\").I' is not assignable to type 'import(\"/Users/adam/Code/testeranto-react/src/react-dom/component/dynamic\").I'.","category":1,"code":2322,"next":[{"messageText":"Types of property 'iinput' are incompatible.","category":1,"code":2326,"next":[{"messageText":"Property 'prototype' is missing in type 'IProjectPageViewProps' but required in type 'typeof Component'.","category":1,"code":2741,"canonicalHead":{"code":2322,"messageText":"Type 'import(\"/Users/adam/Code/testeranto/src/components/pure/ProjectPageView.test/types\").I' is not assignable to type 'import(\"/Users/adam/Code/testeranto-react/src/react-dom/component/dynamic\").I'."}}]}]}]}]}],"canonicalHead":{"code":2322,"messageText":"Type 'import(\"/Users/adam/Code/testeranto/src/Types\").SuiteSpecification<import(\"/Users/adam/Code/testeranto-react/src/react-dom/component/dynamic\").I, import(\"/Users/adam/Code/testeranto/src/components/pure/ProjectPageView.test/types\").O>' is not assignable to type 'import(\"/Users/adam/Code/testeranto/src/Types\").SuiteSpecification<import(\"/Users/adam/Code/testeranto/src/components/pure/ProjectPageView.test/types\").I, import(\"/Users/adam/Code/testeranto/src/components/pure/ProjectPageView.test/types\").O>'."}}]}]}]}]}}]],[854,[{"start":406,"length":6,"code":2741,"category":1,"messageText":"Property 'assertThis' is missing in type '{ beforeAll: (prototype: IInput, artificer: ITTestResourceConfiguration) => Promise<HTMLElement>; beforeEach: () => Promise<...>; andWhen: (s: HTMLElement, whenCB: any) => Promise<...>; butThen: (s: HTMLElement) => Promise<...>; afterEach: (store: HTMLElement, ndx: string, artificer: IPM) => Promise<...>; afterAll: ...' but required in type 'ITestAdapter<I>'.","relatedInformation":[{"file":"../../src/coretypes.ts","start":545,"length":10,"messageText":"'assertThis' is declared here.","category":3,"code":2728}],"canonicalHead":{"code":2322,"messageText":"Type '{ beforeAll: (prototype: IInput, artificer: ITTestResourceConfiguration) => Promise<HTMLElement>; beforeEach: () => Promise<...>; andWhen: (s: HTMLElement, whenCB: any) => Promise<...>; butThen: (s: HTMLElement) => Promise<...>; afterEach: (store: HTMLElement, ndx: string, artificer: IPM) => Promise<...>; afterAll: ...' is not assignable to type 'ITestAdapter<I>'."}},{"start":531,"length":4,"code":2345,"category":1,"messageText":"Argument of type 'null' is not assignable to parameter of type 'HTMLElement | PromiseLike<HTMLElement>'."},{"start":646,"length":24,"code":2345,"category":1,"messageText":"Argument of type 'DetailedReactHTMLElement<InputHTMLAttributes<HTMLInputElement>, HTMLInputElement>' is not assignable to parameter of type 'HTMLElement | PromiseLike<HTMLElement>'."},{"start":660,"length":9,"code":2769,"category":1,"messageText":{"messageText":"No overload matches this call.","category":1,"code":2769,"next":[{"messageText":"The last overload gave the following error.","category":1,"code":2770,"next":[{"messageText":"Argument of type 'IInput' is not assignable to parameter of type 'string | ComponentClass<any, any> | FunctionComponent<any>'.","category":1,"code":2345,"next":[{"messageText":"Type 'IInput' is not assignable to type 'FunctionComponent<any>'.","category":1,"code":2322,"next":[{"messageText":"Type 'Element' is not assignable to type 'ReactNode'.","category":1,"code":2322,"next":[{"messageText":"Property 'children' is missing in type 'Element' but required in type 'ReactPortal'.","category":1,"code":2741,"canonicalHead":{"code":2322,"messageText":"Type 'Element' is not assignable to type 'ReactPortal'."}}],"canonicalHead":{"code":2322,"messageText":"Type 'IInput' is not assignable to type 'FunctionComponent<any>'."}}]}]}]}]},"relatedInformation":[{"file":"../../../testeranto-react/node_modules/@types/react/index.d.ts","start":10658,"length":8,"messageText":"'children' is declared here.","category":3,"code":2728},{"file":"../../../testeranto-react/node_modules/@types/react/index.d.ts","start":16721,"length":13,"messageText":"The last overload is declared here.","category":1,"code":2771}]}]],[856,[{"start":365,"length":12,"code":2786,"category":1,"messageText":{"messageText":"'MemoryRouter' cannot be used as a JSX component.","category":1,"code":2786,"next":[{"messageText":"Its type '({ basename, children, initialEntries, initialIndex, }: MemoryRouterProps) => ReactElement<any, string | JSXElementConstructor<any>>' is not a valid JSX element type.","category":1,"code":18053,"next":[{"messageText":"Type '({ basename, children, initialEntries, initialIndex, }: MemoryRouterProps) => ReactElement<any, string | JSXElementConstructor<any>>' is not assignable to type '(props: any, deprecatedLegacyContext?: any) => ReactNode'.","category":1,"code":2322,"next":[{"messageText":"Type 'ReactElement<any, string | JSXElementConstructor<any>>' is not assignable to type 'ReactNode'.","category":1,"code":2322,"next":[{"messageText":"Property 'children' is missing in type 'ReactElement<any, string | JSXElementConstructor<any>>' but required in type 'ReactPortal'.","category":1,"code":2741,"canonicalHead":{"code":2322,"messageText":"Type 'ReactElement<any, string | JSXElementConstructor<any>>' is not assignable to type 'ReactPortal'."}}],"canonicalHead":{"code":2322,"messageText":"Type '({ basename, children, initialEntries, initialIndex, }: MemoryRouterProps) => ReactElement<any, string | JSXElementConstructor<any>>' is not assignable to type '(props: any, deprecatedLegacyContext?: any) => ReactNode'."}}]}]}]},"relatedInformation":[{"file":"../../../testeranto-react/node_modules/@types/react/index.d.ts","start":10658,"length":8,"messageText":"'children' is declared here.","category":3,"code":2728}]},{"start":384,"length":12,"code":2786,"category":1,"messageText":{"messageText":"'TestPageView' cannot be used as a JSX component.","category":1,"code":2786,"next":[{"messageText":"Its type '({ projectName, testName, decodedTestPath, runtime, testsExist, errorCounts, logs, }: TestPageViewProps) => JSX.Element' is not a valid JSX element type.","category":1,"code":18053,"next":[{"messageText":"Type '({ projectName, testName, decodedTestPath, runtime, testsExist, errorCounts, logs, }: TestPageViewProps) => JSX.Element' is not assignable to type '(props: any, deprecatedLegacyContext?: any) => ReactNode'.","category":1,"code":2322,"next":[{"messageText":"Type 'Element' is not assignable to type 'ReactNode'.","category":1,"code":2322,"next":[{"messageText":"Property 'children' is missing in type 'Element' but required in type 'ReactPortal'.","category":1,"code":2741,"canonicalHead":{"code":2322,"messageText":"Type 'Element' is not assignable to type 'ReactPortal'."}}],"canonicalHead":{"code":2322,"messageText":"Type '({ projectName, testName, decodedTestPath, runtime, testsExist, errorCounts, logs, }: TestPageViewProps) => JSX.Element' is not assignable to type '(props: any, deprecatedLegacyContext?: any) => ReactNode'."}}]}]}]},"relatedInformation":[{"file":"../../../testeranto-react/node_modules/@types/react/index.d.ts","start":10658,"length":8,"messageText":"'children' is declared here.","category":3,"code":2728}]},{"start":480,"length":13,"code":2345,"category":1,"messageText":{"messageText":"Argument of type 'ITestSpecification<{ iinput: any; isubject: any; istore: ISelection; iselection: ISelection; given: any; when: any; then: any; }, O>' is not assignable to parameter of type 'ITestSpecification<I, O>'.","category":1,"code":2345,"next":[{"messageText":"Types of parameters 'Suite' and 'Suite' are incompatible.","category":1,"code":2328,"next":[{"messageText":"Type 'SuiteSpecification<I, O>' is not assignable to type 'SuiteSpecification<{ iinput: any; isubject: any; istore: ISelection; iselection: ISelection; given: any; when: any; then: any; }, O>'.","category":1,"code":2322,"next":[{"messageText":"Types of property 'Default' are incompatible.","category":1,"code":2326,"next":[{"messageText":"Type '(name: string, givens: IGivens<I>) => BaseSuite<I, O>' is not assignable to type '(name: string, givens: IGivens<{ iinput: any; isubject: any; istore: ISelection; iselection: ISelection; given: any; when: any; then: any; }>) => BaseSuite<{ iinput: any; ... 5 more ...; then: any; }, O>'.","category":1,"code":2322,"next":[{"messageText":"Types of parameters 'givens' and 'givens' are incompatible.","category":1,"code":2328,"next":[{"messageText":"Type 'IGivens<{ iinput: any; isubject: any; istore: ISelection; iselection: ISelection; given: any; when: any; then: any; }>' is not assignable to type 'IGivens<I>'.","category":1,"code":2322,"next":[{"messageText":"Type '{ iinput: any; isubject: any; istore: ISelection; iselection: ISelection; given: any; when: any; then: any; }' is not assignable to type 'I'.","category":1,"code":2322,"next":[{"messageText":"Types of property 'istore' are incompatible.","category":1,"code":2326,"next":[{"messageText":"Type 'ISelection' is missing the following properties from type 'HTMLElement': accessKey, accessKeyLabel, autocapitalize, autocorrect, and 314 more.","category":1,"code":2740,"canonicalHead":{"code":2322,"messageText":"Type '{ iinput: any; isubject: any; istore: ISelection; iselection: ISelection; given: any; when: any; then: any; }' is not assignable to type 'I'."}}]}]}]}]}],"canonicalHead":{"code":2322,"messageText":"Type 'SuiteSpecification<I, O>' is not assignable to type 'SuiteSpecification<{ iinput: any; isubject: any; istore: ISelection; iselection: ISelection; given: any; when: any; then: any; }, O>'."}}]}]}]}]}}]],[857,[{"start":649,"length":2,"messageText":"'React' refers to a UMD global, but the current file is a module. Consider adding an import instead.","category":1,"code":2686},{"start":711,"length":2,"messageText":"'React' refers to a UMD global, but the current file is a module. Consider adding an import instead.","category":1,"code":2686},{"start":775,"length":4,"messageText":"'React' refers to a UMD global, but the current file is a module. Consider adding an import instead.","category":1,"code":2686},{"start":851,"length":2,"messageText":"'React' refers to a UMD global, but the current file is a module. Consider adding an import instead.","category":1,"code":2686},{"start":867,"length":4,"messageText":"'React' refers to a UMD global, but the current file is a module. Consider adding an import instead.","category":1,"code":2686}]]],"version":"5.9.2"}
|
|
1
|
+
{"fileNames":["../../node_modules/typescript/lib/lib.es5.d.ts","../../node_modules/typescript/lib/lib.es2015.d.ts","../../node_modules/typescript/lib/lib.es2016.d.ts","../../node_modules/typescript/lib/lib.es2017.d.ts","../../node_modules/typescript/lib/lib.es2018.d.ts","../../node_modules/typescript/lib/lib.es2019.d.ts","../../node_modules/typescript/lib/lib.es2020.d.ts","../../node_modules/typescript/lib/lib.es2021.d.ts","../../node_modules/typescript/lib/lib.es2022.d.ts","../../node_modules/typescript/lib/lib.es2023.d.ts","../../node_modules/typescript/lib/lib.es2024.d.ts","../../node_modules/typescript/lib/lib.esnext.d.ts","../../node_modules/typescript/lib/lib.dom.d.ts","../../node_modules/typescript/lib/lib.dom.iterable.d.ts","../../node_modules/typescript/lib/lib.es2015.core.d.ts","../../node_modules/typescript/lib/lib.es2015.collection.d.ts","../../node_modules/typescript/lib/lib.es2015.generator.d.ts","../../node_modules/typescript/lib/lib.es2015.iterable.d.ts","../../node_modules/typescript/lib/lib.es2015.promise.d.ts","../../node_modules/typescript/lib/lib.es2015.proxy.d.ts","../../node_modules/typescript/lib/lib.es2015.reflect.d.ts","../../node_modules/typescript/lib/lib.es2015.symbol.d.ts","../../node_modules/typescript/lib/lib.es2015.symbol.wellknown.d.ts","../../node_modules/typescript/lib/lib.es2016.array.include.d.ts","../../node_modules/typescript/lib/lib.es2016.intl.d.ts","../../node_modules/typescript/lib/lib.es2017.arraybuffer.d.ts","../../node_modules/typescript/lib/lib.es2017.date.d.ts","../../node_modules/typescript/lib/lib.es2017.object.d.ts","../../node_modules/typescript/lib/lib.es2017.sharedmemory.d.ts","../../node_modules/typescript/lib/lib.es2017.string.d.ts","../../node_modules/typescript/lib/lib.es2017.intl.d.ts","../../node_modules/typescript/lib/lib.es2017.typedarrays.d.ts","../../node_modules/typescript/lib/lib.es2018.asyncgenerator.d.ts","../../node_modules/typescript/lib/lib.es2018.asynciterable.d.ts","../../node_modules/typescript/lib/lib.es2018.intl.d.ts","../../node_modules/typescript/lib/lib.es2018.promise.d.ts","../../node_modules/typescript/lib/lib.es2018.regexp.d.ts","../../node_modules/typescript/lib/lib.es2019.array.d.ts","../../node_modules/typescript/lib/lib.es2019.object.d.ts","../../node_modules/typescript/lib/lib.es2019.string.d.ts","../../node_modules/typescript/lib/lib.es2019.symbol.d.ts","../../node_modules/typescript/lib/lib.es2019.intl.d.ts","../../node_modules/typescript/lib/lib.es2020.bigint.d.ts","../../node_modules/typescript/lib/lib.es2020.date.d.ts","../../node_modules/typescript/lib/lib.es2020.promise.d.ts","../../node_modules/typescript/lib/lib.es2020.sharedmemory.d.ts","../../node_modules/typescript/lib/lib.es2020.string.d.ts","../../node_modules/typescript/lib/lib.es2020.symbol.wellknown.d.ts","../../node_modules/typescript/lib/lib.es2020.intl.d.ts","../../node_modules/typescript/lib/lib.es2020.number.d.ts","../../node_modules/typescript/lib/lib.es2021.promise.d.ts","../../node_modules/typescript/lib/lib.es2021.string.d.ts","../../node_modules/typescript/lib/lib.es2021.weakref.d.ts","../../node_modules/typescript/lib/lib.es2021.intl.d.ts","../../node_modules/typescript/lib/lib.es2022.array.d.ts","../../node_modules/typescript/lib/lib.es2022.error.d.ts","../../node_modules/typescript/lib/lib.es2022.intl.d.ts","../../node_modules/typescript/lib/lib.es2022.object.d.ts","../../node_modules/typescript/lib/lib.es2022.string.d.ts","../../node_modules/typescript/lib/lib.es2022.regexp.d.ts","../../node_modules/typescript/lib/lib.es2023.array.d.ts","../../node_modules/typescript/lib/lib.es2023.collection.d.ts","../../node_modules/typescript/lib/lib.es2023.intl.d.ts","../../node_modules/typescript/lib/lib.es2024.arraybuffer.d.ts","../../node_modules/typescript/lib/lib.es2024.collection.d.ts","../../node_modules/typescript/lib/lib.es2024.object.d.ts","../../node_modules/typescript/lib/lib.es2024.promise.d.ts","../../node_modules/typescript/lib/lib.es2024.regexp.d.ts","../../node_modules/typescript/lib/lib.es2024.sharedmemory.d.ts","../../node_modules/typescript/lib/lib.es2024.string.d.ts","../../node_modules/typescript/lib/lib.esnext.array.d.ts","../../node_modules/typescript/lib/lib.esnext.collection.d.ts","../../node_modules/typescript/lib/lib.esnext.intl.d.ts","../../node_modules/typescript/lib/lib.esnext.disposable.d.ts","../../node_modules/typescript/lib/lib.esnext.promise.d.ts","../../node_modules/typescript/lib/lib.esnext.decorators.d.ts","../../node_modules/typescript/lib/lib.esnext.iterator.d.ts","../../node_modules/typescript/lib/lib.esnext.float16.d.ts","../../node_modules/typescript/lib/lib.esnext.error.d.ts","../../node_modules/typescript/lib/lib.esnext.sharedmemory.d.ts","../../node_modules/typescript/lib/lib.decorators.d.ts","../../node_modules/typescript/lib/lib.decorators.legacy.d.ts","../../node_modules/@types/node/compatibility/iterators.d.ts","../../node_modules/@types/node/globals.typedarray.d.ts","../../node_modules/@types/node/buffer.buffer.d.ts","../../node_modules/undici-types/utility.d.ts","../../node_modules/undici-types/header.d.ts","../../node_modules/undici-types/readable.d.ts","../../node_modules/undici-types/fetch.d.ts","../../node_modules/undici-types/formdata.d.ts","../../node_modules/undici-types/connector.d.ts","../../node_modules/undici-types/client-stats.d.ts","../../node_modules/undici-types/client.d.ts","../../node_modules/undici-types/errors.d.ts","../../node_modules/undici-types/dispatcher.d.ts","../../node_modules/undici-types/global-dispatcher.d.ts","../../node_modules/undici-types/global-origin.d.ts","../../node_modules/undici-types/pool-stats.d.ts","../../node_modules/undici-types/pool.d.ts","../../node_modules/undici-types/handlers.d.ts","../../node_modules/undici-types/balanced-pool.d.ts","../../node_modules/undici-types/h2c-client.d.ts","../../node_modules/undici-types/agent.d.ts","../../node_modules/undici-types/mock-interceptor.d.ts","../../node_modules/undici-types/mock-call-history.d.ts","../../node_modules/undici-types/mock-agent.d.ts","../../node_modules/undici-types/mock-client.d.ts","../../node_modules/undici-types/mock-pool.d.ts","../../node_modules/undici-types/mock-errors.d.ts","../../node_modules/undici-types/proxy-agent.d.ts","../../node_modules/undici-types/env-http-proxy-agent.d.ts","../../node_modules/undici-types/retry-handler.d.ts","../../node_modules/undici-types/retry-agent.d.ts","../../node_modules/undici-types/api.d.ts","../../node_modules/undici-types/cache-interceptor.d.ts","../../node_modules/undici-types/interceptors.d.ts","../../node_modules/undici-types/util.d.ts","../../node_modules/undici-types/cookies.d.ts","../../node_modules/undici-types/patch.d.ts","../../node_modules/undici-types/websocket.d.ts","../../node_modules/undici-types/eventsource.d.ts","../../node_modules/undici-types/diagnostics-channel.d.ts","../../node_modules/undici-types/content-type.d.ts","../../node_modules/undici-types/cache.d.ts","../../node_modules/undici-types/index.d.ts","../../node_modules/@types/node/globals.d.ts","../../node_modules/@types/node/assert.d.ts","../../node_modules/@types/node/assert/strict.d.ts","../../node_modules/@types/node/async_hooks.d.ts","../../node_modules/@types/node/buffer.d.ts","../../node_modules/@types/node/child_process.d.ts","../../node_modules/@types/node/cluster.d.ts","../../node_modules/@types/node/console.d.ts","../../node_modules/@types/node/constants.d.ts","../../node_modules/@types/node/crypto.d.ts","../../node_modules/@types/node/dgram.d.ts","../../node_modules/@types/node/diagnostics_channel.d.ts","../../node_modules/@types/node/dns.d.ts","../../node_modules/@types/node/dns/promises.d.ts","../../node_modules/@types/node/domain.d.ts","../../node_modules/@types/node/dom-events.d.ts","../../node_modules/@types/node/events.d.ts","../../node_modules/@types/node/fs.d.ts","../../node_modules/@types/node/fs/promises.d.ts","../../node_modules/@types/node/http.d.ts","../../node_modules/@types/node/http2.d.ts","../../node_modules/@types/node/https.d.ts","../../node_modules/@types/node/inspector.d.ts","../../node_modules/@types/node/module.d.ts","../../node_modules/@types/node/net.d.ts","../../node_modules/@types/node/os.d.ts","../../node_modules/@types/node/path.d.ts","../../node_modules/@types/node/perf_hooks.d.ts","../../node_modules/@types/node/process.d.ts","../../node_modules/@types/node/punycode.d.ts","../../node_modules/@types/node/querystring.d.ts","../../node_modules/@types/node/readline.d.ts","../../node_modules/@types/node/readline/promises.d.ts","../../node_modules/@types/node/repl.d.ts","../../node_modules/@types/node/sea.d.ts","../../node_modules/@types/node/sqlite.d.ts","../../node_modules/@types/node/stream.d.ts","../../node_modules/@types/node/stream/promises.d.ts","../../node_modules/@types/node/stream/consumers.d.ts","../../node_modules/@types/node/stream/web.d.ts","../../node_modules/@types/node/string_decoder.d.ts","../../node_modules/@types/node/test.d.ts","../../node_modules/@types/node/timers.d.ts","../../node_modules/@types/node/timers/promises.d.ts","../../node_modules/@types/node/tls.d.ts","../../node_modules/@types/node/trace_events.d.ts","../../node_modules/@types/node/tty.d.ts","../../node_modules/@types/node/url.d.ts","../../node_modules/@types/node/util.d.ts","../../node_modules/@types/node/v8.d.ts","../../node_modules/@types/node/vm.d.ts","../../node_modules/@types/node/wasi.d.ts","../../node_modules/@types/node/worker_threads.d.ts","../../node_modules/@types/node/zlib.d.ts","../../node_modules/@types/node/index.d.ts","../../node_modules/typed-query-selector/parser.d.ts","../../node_modules/puppeteer-core/node_modules/devtools-protocol/types/protocol.d.ts","../../node_modules/puppeteer-core/node_modules/devtools-protocol/types/protocol-mapping.d.ts","../../node_modules/puppeteer-core/node_modules/chromium-bidi/lib/cjs/protocol/generated/webdriver-bidi.d.ts","../../node_modules/puppeteer-core/node_modules/chromium-bidi/lib/cjs/protocol/cdp.d.ts","../../node_modules/puppeteer-core/node_modules/chromium-bidi/lib/cjs/protocol/generated/webdriver-bidi-bluetooth.d.ts","../../node_modules/puppeteer-core/node_modules/chromium-bidi/lib/cjs/protocol/generated/webdriver-bidi-permissions.d.ts","../../node_modules/puppeteer-core/node_modules/chromium-bidi/lib/cjs/protocol/chromium-bidi.d.ts","../../node_modules/puppeteer-core/node_modules/chromium-bidi/lib/cjs/protocol/errorresponse.d.ts","../../node_modules/puppeteer-core/node_modules/chromium-bidi/lib/cjs/protocol/protocol.d.ts","../../node_modules/puppeteer-core/lib/types.d.ts","../../node_modules/puppeteer-core/lib/esm/puppeteer/common/connectiontransport.d.ts","../../node_modules/puppeteer-core/lib/esm/puppeteer/common/downloadbehavior.d.ts","../../node_modules/puppeteer-core/lib/esm/puppeteer/common/viewport.d.ts","../../node_modules/puppeteer-core/lib/esm/puppeteer/common/connectoptions.d.ts","../../node_modules/puppeteer-core/lib/esm/puppeteer/common/cookie.d.ts","../../node_modules/mitt/index.d.ts","../../node_modules/puppeteer-core/lib/esm/third_party/mitt/mitt.d.ts","../../node_modules/puppeteer-core/lib/esm/puppeteer/util/disposable.d.ts","../../node_modules/puppeteer-core/lib/esm/puppeteer/common/eventemitter.d.ts","../../node_modules/puppeteer-core/lib/esm/puppeteer/util/mutex.d.ts","../../../../node_modules/rxjs/dist/types/internal/subscription.d.ts","../../../../node_modules/rxjs/dist/types/internal/subscriber.d.ts","../../../../node_modules/rxjs/dist/types/internal/operator.d.ts","../../../../node_modules/rxjs/dist/types/internal/observable.d.ts","../../../../node_modules/rxjs/dist/types/internal/types.d.ts","../../../../node_modules/rxjs/dist/types/internal/operators/audit.d.ts","../../../../node_modules/rxjs/dist/types/internal/operators/audittime.d.ts","../../../../node_modules/rxjs/dist/types/internal/operators/buffer.d.ts","../../../../node_modules/rxjs/dist/types/internal/operators/buffercount.d.ts","../../../../node_modules/rxjs/dist/types/internal/operators/buffertime.d.ts","../../../../node_modules/rxjs/dist/types/internal/operators/buffertoggle.d.ts","../../../../node_modules/rxjs/dist/types/internal/operators/bufferwhen.d.ts","../../../../node_modules/rxjs/dist/types/internal/operators/catcherror.d.ts","../../../../node_modules/rxjs/dist/types/internal/operators/combinelatestall.d.ts","../../../../node_modules/rxjs/dist/types/internal/operators/combineall.d.ts","../../../../node_modules/rxjs/dist/types/internal/operators/combinelatest.d.ts","../../../../node_modules/rxjs/dist/types/internal/operators/combinelatestwith.d.ts","../../../../node_modules/rxjs/dist/types/internal/operators/concat.d.ts","../../../../node_modules/rxjs/dist/types/internal/operators/concatall.d.ts","../../../../node_modules/rxjs/dist/types/internal/operators/concatmap.d.ts","../../../../node_modules/rxjs/dist/types/internal/operators/concatmapto.d.ts","../../../../node_modules/rxjs/dist/types/internal/operators/concatwith.d.ts","../../../../node_modules/rxjs/dist/types/internal/operators/connect.d.ts","../../../../node_modules/rxjs/dist/types/internal/operators/count.d.ts","../../../../node_modules/rxjs/dist/types/internal/operators/debounce.d.ts","../../../../node_modules/rxjs/dist/types/internal/operators/debouncetime.d.ts","../../../../node_modules/rxjs/dist/types/internal/operators/defaultifempty.d.ts","../../../../node_modules/rxjs/dist/types/internal/operators/delay.d.ts","../../../../node_modules/rxjs/dist/types/internal/operators/delaywhen.d.ts","../../../../node_modules/rxjs/dist/types/internal/operators/dematerialize.d.ts","../../../../node_modules/rxjs/dist/types/internal/operators/distinct.d.ts","../../../../node_modules/rxjs/dist/types/internal/operators/distinctuntilchanged.d.ts","../../../../node_modules/rxjs/dist/types/internal/operators/distinctuntilkeychanged.d.ts","../../../../node_modules/rxjs/dist/types/internal/operators/elementat.d.ts","../../../../node_modules/rxjs/dist/types/internal/operators/endwith.d.ts","../../../../node_modules/rxjs/dist/types/internal/operators/every.d.ts","../../../../node_modules/rxjs/dist/types/internal/operators/exhaustall.d.ts","../../../../node_modules/rxjs/dist/types/internal/operators/exhaust.d.ts","../../../../node_modules/rxjs/dist/types/internal/operators/exhaustmap.d.ts","../../../../node_modules/rxjs/dist/types/internal/operators/expand.d.ts","../../../../node_modules/rxjs/dist/types/internal/operators/filter.d.ts","../../../../node_modules/rxjs/dist/types/internal/operators/finalize.d.ts","../../../../node_modules/rxjs/dist/types/internal/operators/find.d.ts","../../../../node_modules/rxjs/dist/types/internal/operators/findindex.d.ts","../../../../node_modules/rxjs/dist/types/internal/operators/first.d.ts","../../../../node_modules/rxjs/dist/types/internal/subject.d.ts","../../../../node_modules/rxjs/dist/types/internal/operators/groupby.d.ts","../../../../node_modules/rxjs/dist/types/internal/operators/ignoreelements.d.ts","../../../../node_modules/rxjs/dist/types/internal/operators/isempty.d.ts","../../../../node_modules/rxjs/dist/types/internal/operators/last.d.ts","../../../../node_modules/rxjs/dist/types/internal/operators/map.d.ts","../../../../node_modules/rxjs/dist/types/internal/operators/mapto.d.ts","../../../../node_modules/rxjs/dist/types/internal/notification.d.ts","../../../../node_modules/rxjs/dist/types/internal/operators/materialize.d.ts","../../../../node_modules/rxjs/dist/types/internal/operators/max.d.ts","../../../../node_modules/rxjs/dist/types/internal/operators/merge.d.ts","../../../../node_modules/rxjs/dist/types/internal/operators/mergeall.d.ts","../../../../node_modules/rxjs/dist/types/internal/operators/mergemap.d.ts","../../../../node_modules/rxjs/dist/types/internal/operators/flatmap.d.ts","../../../../node_modules/rxjs/dist/types/internal/operators/mergemapto.d.ts","../../../../node_modules/rxjs/dist/types/internal/operators/mergescan.d.ts","../../../../node_modules/rxjs/dist/types/internal/operators/mergewith.d.ts","../../../../node_modules/rxjs/dist/types/internal/operators/min.d.ts","../../../../node_modules/rxjs/dist/types/internal/observable/connectableobservable.d.ts","../../../../node_modules/rxjs/dist/types/internal/operators/multicast.d.ts","../../../../node_modules/rxjs/dist/types/internal/operators/observeon.d.ts","../../../../node_modules/rxjs/dist/types/internal/operators/onerrorresumenextwith.d.ts","../../../../node_modules/rxjs/dist/types/internal/operators/pairwise.d.ts","../../../../node_modules/rxjs/dist/types/internal/operators/partition.d.ts","../../../../node_modules/rxjs/dist/types/internal/operators/pluck.d.ts","../../../../node_modules/rxjs/dist/types/internal/operators/publish.d.ts","../../../../node_modules/rxjs/dist/types/internal/operators/publishbehavior.d.ts","../../../../node_modules/rxjs/dist/types/internal/operators/publishlast.d.ts","../../../../node_modules/rxjs/dist/types/internal/operators/publishreplay.d.ts","../../../../node_modules/rxjs/dist/types/internal/operators/race.d.ts","../../../../node_modules/rxjs/dist/types/internal/operators/racewith.d.ts","../../../../node_modules/rxjs/dist/types/internal/operators/reduce.d.ts","../../../../node_modules/rxjs/dist/types/internal/operators/repeat.d.ts","../../../../node_modules/rxjs/dist/types/internal/operators/repeatwhen.d.ts","../../../../node_modules/rxjs/dist/types/internal/operators/retry.d.ts","../../../../node_modules/rxjs/dist/types/internal/operators/retrywhen.d.ts","../../../../node_modules/rxjs/dist/types/internal/operators/refcount.d.ts","../../../../node_modules/rxjs/dist/types/internal/operators/sample.d.ts","../../../../node_modules/rxjs/dist/types/internal/operators/sampletime.d.ts","../../../../node_modules/rxjs/dist/types/internal/operators/scan.d.ts","../../../../node_modules/rxjs/dist/types/internal/operators/sequenceequal.d.ts","../../../../node_modules/rxjs/dist/types/internal/operators/share.d.ts","../../../../node_modules/rxjs/dist/types/internal/operators/sharereplay.d.ts","../../../../node_modules/rxjs/dist/types/internal/operators/single.d.ts","../../../../node_modules/rxjs/dist/types/internal/operators/skip.d.ts","../../../../node_modules/rxjs/dist/types/internal/operators/skiplast.d.ts","../../../../node_modules/rxjs/dist/types/internal/operators/skipuntil.d.ts","../../../../node_modules/rxjs/dist/types/internal/operators/skipwhile.d.ts","../../../../node_modules/rxjs/dist/types/internal/operators/startwith.d.ts","../../../../node_modules/rxjs/dist/types/internal/operators/subscribeon.d.ts","../../../../node_modules/rxjs/dist/types/internal/operators/switchall.d.ts","../../../../node_modules/rxjs/dist/types/internal/operators/switchmap.d.ts","../../../../node_modules/rxjs/dist/types/internal/operators/switchmapto.d.ts","../../../../node_modules/rxjs/dist/types/internal/operators/switchscan.d.ts","../../../../node_modules/rxjs/dist/types/internal/operators/take.d.ts","../../../../node_modules/rxjs/dist/types/internal/operators/takelast.d.ts","../../../../node_modules/rxjs/dist/types/internal/operators/takeuntil.d.ts","../../../../node_modules/rxjs/dist/types/internal/operators/takewhile.d.ts","../../../../node_modules/rxjs/dist/types/internal/operators/tap.d.ts","../../../../node_modules/rxjs/dist/types/internal/operators/throttle.d.ts","../../../../node_modules/rxjs/dist/types/internal/operators/throttletime.d.ts","../../../../node_modules/rxjs/dist/types/internal/operators/throwifempty.d.ts","../../../../node_modules/rxjs/dist/types/internal/operators/timeinterval.d.ts","../../../../node_modules/rxjs/dist/types/internal/operators/timeout.d.ts","../../../../node_modules/rxjs/dist/types/internal/operators/timeoutwith.d.ts","../../../../node_modules/rxjs/dist/types/internal/operators/timestamp.d.ts","../../../../node_modules/rxjs/dist/types/internal/operators/toarray.d.ts","../../../../node_modules/rxjs/dist/types/internal/operators/window.d.ts","../../../../node_modules/rxjs/dist/types/internal/operators/windowcount.d.ts","../../../../node_modules/rxjs/dist/types/internal/operators/windowtime.d.ts","../../../../node_modules/rxjs/dist/types/internal/operators/windowtoggle.d.ts","../../../../node_modules/rxjs/dist/types/internal/operators/windowwhen.d.ts","../../../../node_modules/rxjs/dist/types/internal/operators/withlatestfrom.d.ts","../../../../node_modules/rxjs/dist/types/internal/operators/zip.d.ts","../../../../node_modules/rxjs/dist/types/internal/operators/zipall.d.ts","../../../../node_modules/rxjs/dist/types/internal/operators/zipwith.d.ts","../../../../node_modules/rxjs/dist/types/operators/index.d.ts","../../../../node_modules/rxjs/dist/types/internal/scheduler/action.d.ts","../../../../node_modules/rxjs/dist/types/internal/scheduler.d.ts","../../../../node_modules/rxjs/dist/types/internal/testing/testmessage.d.ts","../../../../node_modules/rxjs/dist/types/internal/testing/subscriptionlog.d.ts","../../../../node_modules/rxjs/dist/types/internal/testing/subscriptionloggable.d.ts","../../../../node_modules/rxjs/dist/types/internal/testing/coldobservable.d.ts","../../../../node_modules/rxjs/dist/types/internal/testing/hotobservable.d.ts","../../../../node_modules/rxjs/dist/types/internal/scheduler/asyncscheduler.d.ts","../../../../node_modules/rxjs/dist/types/internal/scheduler/timerhandle.d.ts","../../../../node_modules/rxjs/dist/types/internal/scheduler/asyncaction.d.ts","../../../../node_modules/rxjs/dist/types/internal/scheduler/virtualtimescheduler.d.ts","../../../../node_modules/rxjs/dist/types/internal/testing/testscheduler.d.ts","../../../../node_modules/rxjs/dist/types/testing/index.d.ts","../../../../node_modules/rxjs/dist/types/internal/symbol/observable.d.ts","../../../../node_modules/rxjs/dist/types/internal/observable/dom/animationframes.d.ts","../../../../node_modules/rxjs/dist/types/internal/behaviorsubject.d.ts","../../../../node_modules/rxjs/dist/types/internal/replaysubject.d.ts","../../../../node_modules/rxjs/dist/types/internal/asyncsubject.d.ts","../../../../node_modules/rxjs/dist/types/internal/scheduler/asapscheduler.d.ts","../../../../node_modules/rxjs/dist/types/internal/scheduler/asap.d.ts","../../../../node_modules/rxjs/dist/types/internal/scheduler/async.d.ts","../../../../node_modules/rxjs/dist/types/internal/scheduler/queuescheduler.d.ts","../../../../node_modules/rxjs/dist/types/internal/scheduler/queue.d.ts","../../../../node_modules/rxjs/dist/types/internal/scheduler/animationframescheduler.d.ts","../../../../node_modules/rxjs/dist/types/internal/scheduler/animationframe.d.ts","../../../../node_modules/rxjs/dist/types/internal/util/identity.d.ts","../../../../node_modules/rxjs/dist/types/internal/util/pipe.d.ts","../../../../node_modules/rxjs/dist/types/internal/util/noop.d.ts","../../../../node_modules/rxjs/dist/types/internal/util/isobservable.d.ts","../../../../node_modules/rxjs/dist/types/internal/lastvaluefrom.d.ts","../../../../node_modules/rxjs/dist/types/internal/firstvaluefrom.d.ts","../../../../node_modules/rxjs/dist/types/internal/util/argumentoutofrangeerror.d.ts","../../../../node_modules/rxjs/dist/types/internal/util/emptyerror.d.ts","../../../../node_modules/rxjs/dist/types/internal/util/notfounderror.d.ts","../../../../node_modules/rxjs/dist/types/internal/util/objectunsubscribederror.d.ts","../../../../node_modules/rxjs/dist/types/internal/util/sequenceerror.d.ts","../../../../node_modules/rxjs/dist/types/internal/util/unsubscriptionerror.d.ts","../../../../node_modules/rxjs/dist/types/internal/observable/bindcallback.d.ts","../../../../node_modules/rxjs/dist/types/internal/observable/bindnodecallback.d.ts","../../../../node_modules/rxjs/dist/types/internal/anycatcher.d.ts","../../../../node_modules/rxjs/dist/types/internal/observable/combinelatest.d.ts","../../../../node_modules/rxjs/dist/types/internal/observable/concat.d.ts","../../../../node_modules/rxjs/dist/types/internal/observable/connectable.d.ts","../../../../node_modules/rxjs/dist/types/internal/observable/defer.d.ts","../../../../node_modules/rxjs/dist/types/internal/observable/empty.d.ts","../../../../node_modules/rxjs/dist/types/internal/observable/forkjoin.d.ts","../../../../node_modules/rxjs/dist/types/internal/observable/from.d.ts","../../../../node_modules/rxjs/dist/types/internal/observable/fromevent.d.ts","../../../../node_modules/rxjs/dist/types/internal/observable/fromeventpattern.d.ts","../../../../node_modules/rxjs/dist/types/internal/observable/generate.d.ts","../../../../node_modules/rxjs/dist/types/internal/observable/iif.d.ts","../../../../node_modules/rxjs/dist/types/internal/observable/interval.d.ts","../../../../node_modules/rxjs/dist/types/internal/observable/merge.d.ts","../../../../node_modules/rxjs/dist/types/internal/observable/never.d.ts","../../../../node_modules/rxjs/dist/types/internal/observable/of.d.ts","../../../../node_modules/rxjs/dist/types/internal/observable/onerrorresumenext.d.ts","../../../../node_modules/rxjs/dist/types/internal/observable/pairs.d.ts","../../../../node_modules/rxjs/dist/types/internal/observable/partition.d.ts","../../../../node_modules/rxjs/dist/types/internal/observable/race.d.ts","../../../../node_modules/rxjs/dist/types/internal/observable/range.d.ts","../../../../node_modules/rxjs/dist/types/internal/observable/throwerror.d.ts","../../../../node_modules/rxjs/dist/types/internal/observable/timer.d.ts","../../../../node_modules/rxjs/dist/types/internal/observable/using.d.ts","../../../../node_modules/rxjs/dist/types/internal/observable/zip.d.ts","../../../../node_modules/rxjs/dist/types/internal/scheduled/scheduled.d.ts","../../../../node_modules/rxjs/dist/types/internal/config.d.ts","../../../../node_modules/rxjs/dist/types/index.d.ts","../../node_modules/puppeteer-core/lib/esm/third_party/rxjs/rxjs.d.ts","../../node_modules/puppeteer-core/lib/esm/puppeteer/common/errors.d.ts","../../node_modules/puppeteer-core/lib/esm/puppeteer/common/callbackregistry.d.ts","../../node_modules/puppeteer-core/lib/esm/puppeteer/common/timeoutsettings.d.ts","../../node_modules/puppeteer-core/lib/esm/puppeteer/common/securitydetails.d.ts","../../node_modules/puppeteer-core/lib/esm/puppeteer/api/httpresponse.d.ts","../../node_modules/puppeteer-core/lib/esm/puppeteer/common/waittask.d.ts","../../node_modules/puppeteer-core/lib/esm/puppeteer/api/environment.d.ts","../../node_modules/puppeteer-core/lib/esm/puppeteer/api/jshandle.d.ts","../../node_modules/puppeteer-core/lib/esm/puppeteer/api/realm.d.ts","../../node_modules/puppeteer-core/lib/esm/puppeteer/cdp/accessibility.d.ts","../../node_modules/puppeteer-core/lib/esm/puppeteer/cdp/devicerequestprompt.d.ts","../../node_modules/puppeteer-core/lib/esm/puppeteer/util/deferred.d.ts","../../node_modules/puppeteer-core/lib/esm/puppeteer/common/queryhandler.d.ts","../../node_modules/puppeteer-core/lib/esm/puppeteer/common/customqueryhandler.d.ts","../../node_modules/puppeteer-core/lib/esm/puppeteer/injected/customqueryselector.d.ts","../../node_modules/puppeteer-core/lib/esm/puppeteer/injected/poller.d.ts","../../node_modules/puppeteer-core/lib/esm/puppeteer/injected/pqueryselector.d.ts","../../node_modules/puppeteer-core/lib/esm/puppeteer/injected/textcontent.d.ts","../../node_modules/puppeteer-core/lib/esm/puppeteer/injected/injected.d.ts","../../node_modules/puppeteer-core/lib/esm/puppeteer/cdp/isolatedworlds.d.ts","../../node_modules/puppeteer-core/lib/esm/puppeteer/cdp/elementhandle.d.ts","../../node_modules/puppeteer-core/lib/esm/puppeteer/cdp/jshandle.d.ts","../../node_modules/puppeteer-core/lib/esm/puppeteer/cdp/webworker.d.ts","../../node_modules/puppeteer-core/lib/esm/puppeteer/cdp/isolatedworld.d.ts","../../node_modules/puppeteer-core/lib/esm/puppeteer/cdp/executioncontext.d.ts","../../node_modules/puppeteer-core/lib/esm/puppeteer/cdp/binding.d.ts","../../node_modules/puppeteer-core/lib/esm/puppeteer/cdp/cdppreloadscript.d.ts","../../node_modules/puppeteer-core/lib/esm/puppeteer/cdp/framemanagerevents.d.ts","../../node_modules/puppeteer-core/lib/esm/puppeteer/cdp/frametree.d.ts","../../node_modules/puppeteer-core/lib/esm/puppeteer/common/networkmanagerevents.d.ts","../../node_modules/puppeteer-core/lib/esm/puppeteer/cdp/networkmanager.d.ts","../../node_modules/puppeteer-core/lib/esm/puppeteer/common/filechooser.d.ts","../../node_modules/puppeteer-core/lib/esm/puppeteer/common/pdfoptions.d.ts","../../node_modules/puppeteer-core/lib/esm/puppeteer/cdp/coverage.d.ts","../../node_modules/puppeteer-core/lib/esm/puppeteer/common/uskeyboardlayout.d.ts","../../node_modules/puppeteer-core/lib/esm/puppeteer/util/incremental-id-generator.d.ts","../../node_modules/puppeteer-core/lib/esm/puppeteer/api/input.d.ts","../../node_modules/puppeteer-core/lib/esm/puppeteer/cdp/input.d.ts","../../node_modules/puppeteer-core/lib/esm/puppeteer/cdp/tracing.d.ts","../../node_modules/puppeteer-core/lib/esm/puppeteer/cdp/page.d.ts","../../node_modules/puppeteer-core/lib/esm/puppeteer/cdp/framemanager.d.ts","../../node_modules/puppeteer-core/lib/esm/puppeteer/cdp/frame.d.ts","../../node_modules/puppeteer-core/lib/esm/puppeteer/cdp/lifecyclewatcher.d.ts","../../node_modules/puppeteer-core/lib/esm/puppeteer/api/locators/locators.d.ts","../../node_modules/puppeteer-core/lib/esm/puppeteer/api/frame.d.ts","../../node_modules/puppeteer-core/lib/esm/puppeteer/api/elementhandlesymbol.d.ts","../../node_modules/puppeteer-core/lib/esm/puppeteer/api/elementhandle.d.ts","../../node_modules/puppeteer-core/lib/esm/puppeteer/common/lazyarg.d.ts","../../node_modules/puppeteer-core/lib/esm/puppeteer/common/types.d.ts","../../node_modules/puppeteer-core/lib/esm/puppeteer/api/webworker.d.ts","../../node_modules/puppeteer-core/lib/esm/puppeteer/api/target.d.ts","../../node_modules/puppeteer-core/lib/esm/puppeteer/cdp/targetmanageevents.d.ts","../../node_modules/puppeteer-core/lib/esm/puppeteer/cdp/targetmanager.d.ts","../../node_modules/puppeteer-core/lib/esm/puppeteer/cdp/target.d.ts","../../node_modules/puppeteer-core/lib/esm/puppeteer/cdp/cdpsession.d.ts","../../node_modules/puppeteer-core/lib/esm/puppeteer/cdp/connection.d.ts","../../node_modules/puppeteer-core/lib/esm/puppeteer/api/cdpsession.d.ts","../../node_modules/puppeteer-core/lib/esm/puppeteer/api/httprequest.d.ts","../../node_modules/puppeteer-core/lib/esm/puppeteer/common/consolemessage.d.ts","../../node_modules/puppeteer-core/lib/esm/puppeteer/common/device.d.ts","../../node_modules/puppeteer-core/lib/esm/puppeteer/node/screenrecorder.d.ts","../../node_modules/puppeteer-core/lib/esm/puppeteer/api/dialog.d.ts","../../node_modules/puppeteer-core/lib/esm/puppeteer/api/page.d.ts","../../node_modules/puppeteer-core/lib/esm/puppeteer/api/browsercontext.d.ts","../../node_modules/puppeteer-core/lib/esm/puppeteer/api/browser.d.ts","../../node_modules/puppeteer-core/lib/esm/puppeteer/api/api.d.ts","../../node_modules/puppeteer-core/lib/esm/puppeteer/cdp/ariaqueryhandler.d.ts","../../node_modules/puppeteer-core/lib/esm/puppeteer/cdp/browsercontext.d.ts","../../node_modules/puppeteer-core/lib/esm/puppeteer/cdp/browser.d.ts","../../node_modules/puppeteer-core/lib/esm/puppeteer/cdp/browserconnector.d.ts","../../node_modules/puppeteer-core/lib/esm/puppeteer/cdp/dialog.d.ts","../../node_modules/puppeteer-core/lib/esm/puppeteer/cdp/emulationmanager.d.ts","../../node_modules/puppeteer-core/lib/esm/puppeteer/cdp/extensiontransport.d.ts","../../node_modules/puppeteer-core/lib/esm/puppeteer/cdp/httpresponse.d.ts","../../node_modules/puppeteer-core/lib/esm/puppeteer/cdp/httprequest.d.ts","../../node_modules/puppeteer-core/lib/esm/puppeteer/cdp/networkeventmanager.d.ts","../../node_modules/puppeteer-core/lib/esm/puppeteer/cdp/predefinednetworkconditions.d.ts","../../node_modules/puppeteer-core/lib/esm/puppeteer/cdp/utils.d.ts","../../node_modules/puppeteer-core/lib/esm/puppeteer/cdp/cdp.d.ts","../../node_modules/puppeteer-core/lib/esm/puppeteer/common/browserwebsockettransport.d.ts","../../node_modules/puppeteer-core/lib/esm/puppeteer/common/supportedbrowser.d.ts","../../node_modules/puppeteer-core/lib/esm/puppeteer/common/configuration.d.ts","../../node_modules/@types/ms/index.d.ts","../../node_modules/@types/debug/index.d.ts","../../node_modules/puppeteer-core/lib/esm/puppeteer/common/debug.d.ts","../../node_modules/puppeteer-core/lib/esm/puppeteer/common/getqueryhandler.d.ts","../../node_modules/puppeteer-core/lib/esm/puppeteer/common/handleiterator.d.ts","../../node_modules/puppeteer-core/lib/esm/puppeteer/common/piercequeryhandler.d.ts","../../node_modules/puppeteer-core/lib/esm/puppeteer/common/pqueryhandler.d.ts","../../node_modules/puppeteer-core/lib/esm/puppeteer/common/pselectorparser.d.ts","../../node_modules/puppeteer-core/lib/esm/puppeteer/common/puppeteer.d.ts","../../node_modules/puppeteer-core/lib/esm/puppeteer/common/scriptinjector.d.ts","../../node_modules/puppeteer-core/lib/esm/puppeteer/common/taskqueue.d.ts","../../node_modules/puppeteer-core/lib/esm/puppeteer/common/textqueryhandler.d.ts","../../node_modules/puppeteer-core/lib/esm/puppeteer/common/util.d.ts","../../node_modules/puppeteer-core/lib/esm/puppeteer/common/xpathqueryhandler.d.ts","../../node_modules/puppeteer-core/lib/esm/puppeteer/common/common.d.ts","../../node_modules/puppeteer-core/lib/esm/puppeteer/revisions.d.ts","../../node_modules/puppeteer-core/lib/esm/puppeteer/util/assert.d.ts","../../node_modules/puppeteer-core/lib/esm/puppeteer/util/errorlike.d.ts","../../node_modules/puppeteer-core/lib/esm/puppeteer/util/asynciterableutil.d.ts","../../node_modules/puppeteer-core/lib/esm/puppeteer/util/util.d.ts","../../node_modules/puppeteer-core/lib/esm/puppeteer/index-browser.d.ts","../../node_modules/puppeteer-core/node_modules/@puppeteer/browsers/lib/cjs/browser-data/types.d.ts","../../node_modules/puppeteer-core/node_modules/@puppeteer/browsers/lib/cjs/browser-data/chrome.d.ts","../../node_modules/puppeteer-core/node_modules/@puppeteer/browsers/lib/cjs/browser-data/chrome-headless-shell.d.ts","../../node_modules/puppeteer-core/node_modules/@puppeteer/browsers/lib/cjs/browser-data/chromedriver.d.ts","../../node_modules/puppeteer-core/node_modules/@puppeteer/browsers/lib/cjs/browser-data/chromium.d.ts","../../node_modules/puppeteer-core/node_modules/@puppeteer/browsers/lib/cjs/browser-data/firefox.d.ts","../../node_modules/puppeteer-core/node_modules/@puppeteer/browsers/lib/cjs/browser-data/browser-data.d.ts","../../node_modules/puppeteer-core/node_modules/@puppeteer/browsers/lib/cjs/launch.d.ts","../../node_modules/puppeteer-core/node_modules/@puppeteer/browsers/lib/cjs/cache.d.ts","../../node_modules/puppeteer-core/node_modules/@puppeteer/browsers/lib/cjs/install.d.ts","../../node_modules/puppeteer-core/node_modules/@puppeteer/browsers/lib/cjs/detectplatform.d.ts","../../node_modules/puppeteer-core/node_modules/@puppeteer/browsers/lib/cjs/cli.d.ts","../../node_modules/puppeteer-core/node_modules/@puppeteer/browsers/lib/cjs/main.d.ts","../../node_modules/puppeteer-core/lib/esm/puppeteer/node/launchoptions.d.ts","../../node_modules/puppeteer-core/lib/esm/puppeteer/node/puppeteernode.d.ts","../../node_modules/puppeteer-core/lib/esm/puppeteer/node/browserlauncher.d.ts","../../node_modules/puppeteer-core/lib/esm/puppeteer/node/chromelauncher.d.ts","../../node_modules/puppeteer-core/lib/esm/puppeteer/node/firefoxlauncher.d.ts","../../node_modules/puppeteer-core/lib/esm/puppeteer/node/pipetransport.d.ts","../../node_modules/puppeteer-core/lib/esm/puppeteer/node/node.d.ts","../../node_modules/puppeteer-core/lib/esm/puppeteer/index.d.ts","../../src/pm/index.ts","../../src/pm/node.ts","../../src/pm/pure.ts","../../src/pm/web.ts","../../node_modules/esbuild/lib/main.d.ts","../../src/lib/pmproxy.ts","../../src/lib/basesuite.ts","../../src/lib/types.ts","../../src/lib/abstractbase.ts","../../src/types.ts","../../src/lib/index.ts","../../src/coretypes.ts","../../src/init.ts","../../node_modules/type-fest/source/primitive.d.ts","../../node_modules/type-fest/source/typed-array.d.ts","../../node_modules/type-fest/source/basic.d.ts","../../node_modules/type-fest/source/observable-like.d.ts","../../node_modules/type-fest/source/union-to-intersection.d.ts","../../node_modules/type-fest/source/keys-of-union.d.ts","../../node_modules/type-fest/source/distributed-omit.d.ts","../../node_modules/type-fest/source/distributed-pick.d.ts","../../node_modules/type-fest/source/empty-object.d.ts","../../node_modules/type-fest/source/if-empty-object.d.ts","../../node_modules/type-fest/source/optional-keys-of.d.ts","../../node_modules/type-fest/source/required-keys-of.d.ts","../../node_modules/type-fest/source/has-required-keys.d.ts","../../node_modules/type-fest/source/is-never.d.ts","../../node_modules/type-fest/source/if-never.d.ts","../../node_modules/type-fest/source/unknown-array.d.ts","../../node_modules/type-fest/source/internal/array.d.ts","../../node_modules/type-fest/source/internal/characters.d.ts","../../node_modules/type-fest/source/is-any.d.ts","../../node_modules/type-fest/source/is-float.d.ts","../../node_modules/type-fest/source/is-integer.d.ts","../../node_modules/type-fest/source/numeric.d.ts","../../node_modules/type-fest/source/is-literal.d.ts","../../node_modules/type-fest/source/trim.d.ts","../../node_modules/type-fest/source/is-equal.d.ts","../../node_modules/type-fest/source/and.d.ts","../../node_modules/type-fest/source/or.d.ts","../../node_modules/type-fest/source/greater-than.d.ts","../../node_modules/type-fest/source/greater-than-or-equal.d.ts","../../node_modules/type-fest/source/less-than.d.ts","../../node_modules/type-fest/source/internal/tuple.d.ts","../../node_modules/type-fest/source/internal/string.d.ts","../../node_modules/type-fest/source/internal/keys.d.ts","../../node_modules/type-fest/source/internal/numeric.d.ts","../../node_modules/type-fest/source/simplify.d.ts","../../node_modules/type-fest/source/omit-index-signature.d.ts","../../node_modules/type-fest/source/pick-index-signature.d.ts","../../node_modules/type-fest/source/merge.d.ts","../../node_modules/type-fest/source/if-any.d.ts","../../node_modules/type-fest/source/internal/type.d.ts","../../node_modules/type-fest/source/internal/object.d.ts","../../node_modules/type-fest/source/internal/index.d.ts","../../node_modules/type-fest/source/except.d.ts","../../node_modules/type-fest/source/require-at-least-one.d.ts","../../node_modules/type-fest/source/non-empty-object.d.ts","../../node_modules/type-fest/source/non-empty-string.d.ts","../../node_modules/type-fest/source/unknown-record.d.ts","../../node_modules/type-fest/source/unknown-set.d.ts","../../node_modules/type-fest/source/unknown-map.d.ts","../../node_modules/type-fest/source/tagged-union.d.ts","../../node_modules/type-fest/source/writable.d.ts","../../node_modules/type-fest/source/writable-deep.d.ts","../../node_modules/type-fest/source/conditional-simplify.d.ts","../../node_modules/type-fest/source/non-empty-tuple.d.ts","../../node_modules/type-fest/source/array-tail.d.ts","../../node_modules/type-fest/source/enforce-optional.d.ts","../../node_modules/type-fest/source/simplify-deep.d.ts","../../node_modules/type-fest/source/merge-deep.d.ts","../../node_modules/type-fest/source/merge-exclusive.d.ts","../../node_modules/type-fest/source/require-exactly-one.d.ts","../../node_modules/type-fest/source/require-all-or-none.d.ts","../../node_modules/type-fest/source/require-one-or-none.d.ts","../../node_modules/type-fest/source/single-key-object.d.ts","../../node_modules/type-fest/source/partial-deep.d.ts","../../node_modules/type-fest/source/required-deep.d.ts","../../node_modules/type-fest/source/subtract.d.ts","../../node_modules/type-fest/source/paths.d.ts","../../node_modules/type-fest/source/pick-deep.d.ts","../../node_modules/type-fest/source/array-splice.d.ts","../../node_modules/type-fest/source/literal-union.d.ts","../../node_modules/type-fest/source/union-to-tuple.d.ts","../../node_modules/type-fest/source/omit-deep.d.ts","../../node_modules/type-fest/source/is-null.d.ts","../../node_modules/type-fest/source/is-unknown.d.ts","../../node_modules/type-fest/source/if-unknown.d.ts","../../node_modules/type-fest/source/partial-on-undefined-deep.d.ts","../../node_modules/type-fest/source/undefined-on-partial-deep.d.ts","../../node_modules/type-fest/source/readonly-deep.d.ts","../../node_modules/type-fest/source/promisable.d.ts","../../node_modules/type-fest/source/arrayable.d.ts","../../node_modules/type-fest/source/tagged.d.ts","../../node_modules/type-fest/source/invariant-of.d.ts","../../node_modules/type-fest/source/set-optional.d.ts","../../node_modules/type-fest/source/set-readonly.d.ts","../../node_modules/type-fest/source/set-required.d.ts","../../node_modules/type-fest/source/set-required-deep.d.ts","../../node_modules/type-fest/source/set-non-nullable.d.ts","../../node_modules/type-fest/source/set-non-nullable-deep.d.ts","../../node_modules/type-fest/source/value-of.d.ts","../../node_modules/type-fest/source/async-return-type.d.ts","../../node_modules/type-fest/source/conditional-keys.d.ts","../../node_modules/type-fest/source/conditional-except.d.ts","../../node_modules/type-fest/source/conditional-pick.d.ts","../../node_modules/type-fest/source/conditional-pick-deep.d.ts","../../node_modules/type-fest/source/stringified.d.ts","../../node_modules/type-fest/source/join.d.ts","../../node_modules/type-fest/source/sum.d.ts","../../node_modules/type-fest/source/less-than-or-equal.d.ts","../../node_modules/type-fest/source/array-slice.d.ts","../../node_modules/type-fest/source/string-slice.d.ts","../../node_modules/type-fest/source/fixed-length-array.d.ts","../../node_modules/type-fest/source/multidimensional-array.d.ts","../../node_modules/type-fest/source/multidimensional-readonly-array.d.ts","../../node_modules/type-fest/source/iterable-element.d.ts","../../node_modules/type-fest/source/entry.d.ts","../../node_modules/type-fest/source/entries.d.ts","../../node_modules/type-fest/source/set-return-type.d.ts","../../node_modules/type-fest/source/set-parameter-type.d.ts","../../node_modules/type-fest/source/asyncify.d.ts","../../node_modules/type-fest/source/jsonify.d.ts","../../node_modules/type-fest/source/jsonifiable.d.ts","../../node_modules/type-fest/source/find-global-type.d.ts","../../node_modules/type-fest/source/structured-cloneable.d.ts","../../node_modules/type-fest/source/schema.d.ts","../../node_modules/type-fest/source/literal-to-primitive.d.ts","../../node_modules/type-fest/source/literal-to-primitive-deep.d.ts","../../node_modules/type-fest/source/string-key-of.d.ts","../../node_modules/type-fest/source/exact.d.ts","../../node_modules/type-fest/source/readonly-tuple.d.ts","../../node_modules/type-fest/source/override-properties.d.ts","../../node_modules/type-fest/source/has-optional-keys.d.ts","../../node_modules/type-fest/source/writable-keys-of.d.ts","../../node_modules/type-fest/source/readonly-keys-of.d.ts","../../node_modules/type-fest/source/has-readonly-keys.d.ts","../../node_modules/type-fest/source/has-writable-keys.d.ts","../../node_modules/type-fest/source/spread.d.ts","../../node_modules/type-fest/source/is-tuple.d.ts","../../node_modules/type-fest/source/tuple-to-object.d.ts","../../node_modules/type-fest/source/tuple-to-union.d.ts","../../node_modules/type-fest/source/int-range.d.ts","../../node_modules/type-fest/source/int-closed-range.d.ts","../../node_modules/type-fest/source/array-indices.d.ts","../../node_modules/type-fest/source/array-values.d.ts","../../node_modules/type-fest/source/set-field-type.d.ts","../../node_modules/type-fest/source/shared-union-fields.d.ts","../../node_modules/type-fest/source/all-union-fields.d.ts","../../node_modules/type-fest/source/shared-union-fields-deep.d.ts","../../node_modules/type-fest/source/if-null.d.ts","../../node_modules/type-fest/source/words.d.ts","../../node_modules/type-fest/source/camel-case.d.ts","../../node_modules/type-fest/source/camel-cased-properties.d.ts","../../node_modules/type-fest/source/camel-cased-properties-deep.d.ts","../../node_modules/type-fest/source/delimiter-case.d.ts","../../node_modules/type-fest/source/kebab-case.d.ts","../../node_modules/type-fest/source/delimiter-cased-properties.d.ts","../../node_modules/type-fest/source/kebab-cased-properties.d.ts","../../node_modules/type-fest/source/delimiter-cased-properties-deep.d.ts","../../node_modules/type-fest/source/kebab-cased-properties-deep.d.ts","../../node_modules/type-fest/source/pascal-case.d.ts","../../node_modules/type-fest/source/pascal-cased-properties.d.ts","../../node_modules/type-fest/source/pascal-cased-properties-deep.d.ts","../../node_modules/type-fest/source/snake-case.d.ts","../../node_modules/type-fest/source/snake-cased-properties.d.ts","../../node_modules/type-fest/source/snake-cased-properties-deep.d.ts","../../node_modules/type-fest/source/screaming-snake-case.d.ts","../../node_modules/type-fest/source/split.d.ts","../../node_modules/type-fest/source/replace.d.ts","../../node_modules/type-fest/source/string-repeat.d.ts","../../node_modules/type-fest/source/includes.d.ts","../../node_modules/type-fest/source/get.d.ts","../../node_modules/type-fest/source/last-array-element.d.ts","../../node_modules/type-fest/source/global-this.d.ts","../../node_modules/type-fest/source/package-json.d.ts","../../node_modules/type-fest/source/tsconfig-json.d.ts","../../node_modules/type-fest/index.d.ts","../../src/lib/basebuilder.ts","../../src/lib/classbuilder.ts","../../src/lib/core.ts","../../src/node.ts","../../src/lib/sidecar.ts","../../src/pm/sidecar.ts","../../src/pm/nodesidecar.ts","../../src/nodesidecar.ts","../../src/pure.ts","../../src/pm/base.ts","../../src/lib/pmproxy.test/mockpmbase.ts","../../src/pure.test.ts","../../src/pm/puresidecar.ts","../../src/puresidecar.ts","../../node_modules/@types/mime/index.d.ts","../../node_modules/@types/node-static/index.d.ts","../../src/reportserverlib.ts","../../node_modules/@types/ws/index.d.ts","../../design-editor/server.ts","../../src/reportserver.ts","../../src/web.ts","../../src/pm/websidecar.ts","../../src/websidecar.ts","../../node_modules/ansi-colors/types/index.d.ts","../../src/utils.ts","../../src/utils/buildtemplates.ts","../../src/esbuildconfigs/index.ts","../../src/esbuildconfigs/inputfilesplugin.ts","../../src/esbuildconfigs/featuresplugin.ts","../../src/esbuildconfigs/rebuildplugin.ts","../../src/esbuildconfigs/node.ts","../../node_modules/esbuild-plugin-polyfill-node/dist/index.d.ts","../../src/esbuildconfigs/web.ts","../../src/esbuildconfigs/consoledetectorplugin.ts","../../src/esbuildconfigs/nativeimportdetectorplugin.ts","../../src/esbuildconfigs/pure.ts","../../src/web.html.ts","../../src/build.ts","../../src/defaultconfig.ts","../../src/init-docs.ts","../../src/utils/queue.ts","../../node_modules/typescript/lib/typescript.d.ts","../../node_modules/@types/estree/index.d.ts","../../node_modules/@types/json-schema/index.d.ts","../../node_modules/@eslint/core/dist/esm/types.d.ts","../../node_modules/eslint/lib/types/use-at-your-own-risk.d.ts","../../node_modules/eslint/lib/types/index.d.ts","../../node_modules/tsc-prog/dist/index.d.ts","../../src/utils/logfiles.ts","../../src/utils/makeprompt.ts","../../src/pm/pm_witheslintandtsc.ts","../../src/pm/main.ts","../../src/run.ts","../../src/pm/types.ts","../../src/pm/__tests__/nodesidecar.testeranto.ts","../../src/pm/__tests__/puresidecar.testeranto.ts","../../src/pm/__tests__/websidecar.testeranto.ts","../../node_modules/@types/deep-eql/index.d.ts","../../node_modules/@types/chai/index.d.ts","../../src/reportserver.test.ts/index.ts","../../src/components/sunriseanimation.test/implementation.ts","../../src/components/sunriseanimation.test/index.ts","../../node_modules/@types/react/global.d.ts","../../node_modules/csstype/index.d.ts","../../node_modules/@types/prop-types/index.d.ts","../../node_modules/@types/react/index.d.ts","../../node_modules/@types/react-dom/node_modules/@types/react/global.d.ts","../../node_modules/@types/react-dom/node_modules/@types/react/index.d.ts","../../node_modules/@types/react-dom/client.d.ts","../../src/components/sunriseanimation.test/types.ts","../../src/components/sunriseanimation.test/interface.ts","../../src/components/sunriseanimation.test/specification.ts","../../src/components/pure/appframe.test/types.ts","../../src/components/pure/appframe.test/specification.ts","../../src/types/features.ts","../../src/components/pure/featuresreporterview.test/types.ts","../../src/components/pure/featuresreporterview.test/specification.ts","../../node_modules/react-bootstrap/esm/accordioncontext.d.ts","../../node_modules/@restart/ui/esm/types.d.ts","../../node_modules/react-bootstrap/esm/helpers.d.ts","../../node_modules/react-bootstrap/esm/accordionbutton.d.ts","../../node_modules/@types/react-transition-group/transition.d.ts","../../node_modules/react-bootstrap/esm/collapse.d.ts","../../node_modules/react-bootstrap/esm/accordioncollapse.d.ts","../../node_modules/react-bootstrap/esm/accordionitem.d.ts","../../node_modules/react-bootstrap/esm/accordionheader.d.ts","../../node_modules/react-bootstrap/esm/accordionbody.d.ts","../../node_modules/react-bootstrap/esm/accordion.d.ts","../../node_modules/react-bootstrap/esm/closebutton.d.ts","../../node_modules/@popperjs/core/lib/enums.d.ts","../../node_modules/@popperjs/core/lib/modifiers/popperoffsets.d.ts","../../node_modules/@popperjs/core/lib/modifiers/flip.d.ts","../../node_modules/@popperjs/core/lib/modifiers/hide.d.ts","../../node_modules/@popperjs/core/lib/modifiers/offset.d.ts","../../node_modules/@popperjs/core/lib/modifiers/eventlisteners.d.ts","../../node_modules/@popperjs/core/lib/modifiers/computestyles.d.ts","../../node_modules/@popperjs/core/lib/modifiers/arrow.d.ts","../../node_modules/@popperjs/core/lib/modifiers/preventoverflow.d.ts","../../node_modules/@popperjs/core/lib/modifiers/applystyles.d.ts","../../node_modules/@popperjs/core/lib/types.d.ts","../../node_modules/@popperjs/core/lib/modifiers/index.d.ts","../../node_modules/@popperjs/core/lib/utils/detectoverflow.d.ts","../../node_modules/@popperjs/core/lib/createpopper.d.ts","../../node_modules/@popperjs/core/lib/popper-lite.d.ts","../../node_modules/@popperjs/core/lib/popper.d.ts","../../node_modules/@popperjs/core/lib/index.d.ts","../../node_modules/@popperjs/core/index.d.ts","../../node_modules/@restart/ui/esm/usepopper.d.ts","../../node_modules/react-bootstrap/esm/types.d.ts","../../node_modules/react-bootstrap/esm/alertlink.d.ts","../../node_modules/react-bootstrap/esm/alertheading.d.ts","../../node_modules/react-bootstrap/esm/alert.d.ts","../../node_modules/@restart/ui/esm/anchor.d.ts","../../node_modules/react-bootstrap/esm/anchor.d.ts","../../node_modules/react-bootstrap/esm/badge.d.ts","../../node_modules/react-bootstrap/esm/breadcrumbitem.d.ts","../../node_modules/react-bootstrap/esm/breadcrumb.d.ts","../../node_modules/@restart/ui/esm/button.d.ts","../../node_modules/react-bootstrap/esm/button.d.ts","../../node_modules/react-bootstrap/esm/buttongroup.d.ts","../../node_modules/react-bootstrap/esm/buttontoolbar.d.ts","../../node_modules/react-bootstrap/esm/cardimg.d.ts","../../node_modules/react-bootstrap/esm/cardtitle.d.ts","../../node_modules/react-bootstrap/esm/cardsubtitle.d.ts","../../node_modules/react-bootstrap/esm/cardbody.d.ts","../../node_modules/react-bootstrap/esm/cardlink.d.ts","../../node_modules/react-bootstrap/esm/cardtext.d.ts","../../node_modules/react-bootstrap/esm/cardheader.d.ts","../../node_modules/react-bootstrap/esm/cardfooter.d.ts","../../node_modules/react-bootstrap/esm/cardimgoverlay.d.ts","../../node_modules/react-bootstrap/esm/card.d.ts","../../node_modules/react-bootstrap/esm/cardgroup.d.ts","../../node_modules/react-bootstrap/esm/carouselcaption.d.ts","../../node_modules/react-bootstrap/esm/carouselitem.d.ts","../../node_modules/react-bootstrap/esm/carousel.d.ts","../../node_modules/react-bootstrap/esm/col.d.ts","../../node_modules/react-bootstrap/esm/container.d.ts","../../node_modules/@restart/ui/esm/dropdowncontext.d.ts","../../node_modules/@restart/ui/esm/useclickoutside.d.ts","../../node_modules/@restart/ui/esm/dropdownmenu.d.ts","../../node_modules/@restart/ui/esm/dropdowntoggle.d.ts","../../node_modules/@restart/ui/esm/dropdownitem.d.ts","../../node_modules/@restart/ui/esm/dropdown.d.ts","../../node_modules/react-bootstrap/esm/dropdowncontext.d.ts","../../node_modules/react-bootstrap/esm/dropdowntoggle.d.ts","../../node_modules/react-bootstrap/esm/dropdownmenu.d.ts","../../node_modules/react-bootstrap/esm/dropdownitem.d.ts","../../node_modules/react-bootstrap/esm/dropdownitemtext.d.ts","../../node_modules/react-bootstrap/esm/dropdowndivider.d.ts","../../node_modules/react-bootstrap/esm/dropdownheader.d.ts","../../node_modules/react-bootstrap/esm/dropdown.d.ts","../../node_modules/react-bootstrap/esm/dropdownbutton.d.ts","../../node_modules/react-bootstrap/esm/fade.d.ts","../../node_modules/react-bootstrap/esm/image.d.ts","../../node_modules/react-bootstrap/esm/figurecaption.d.ts","../../node_modules/react-bootstrap/esm/figure.d.ts","../../node_modules/react-bootstrap/esm/figureimage.d.ts","../../node_modules/react-bootstrap/esm/formgroup.d.ts","../../node_modules/react-bootstrap/esm/feedback.d.ts","../../node_modules/react-bootstrap/esm/formcontrol.d.ts","../../node_modules/react-bootstrap/esm/formfloating.d.ts","../../node_modules/react-bootstrap/esm/formcheckinput.d.ts","../../node_modules/react-bootstrap/esm/formchecklabel.d.ts","../../node_modules/react-bootstrap/esm/formcheck.d.ts","../../node_modules/react-bootstrap/esm/formlabel.d.ts","../../node_modules/react-bootstrap/esm/formtext.d.ts","../../node_modules/react-bootstrap/esm/formrange.d.ts","../../node_modules/react-bootstrap/esm/formselect.d.ts","../../node_modules/react-bootstrap/esm/floatinglabel.d.ts","../../node_modules/react-bootstrap/esm/form.d.ts","../../node_modules/react-bootstrap/esm/inputgrouptext.d.ts","../../node_modules/@types/react/jsx-runtime.d.ts","../../node_modules/react-bootstrap/esm/inputgroup.d.ts","../../node_modules/@restart/ui/esm/navitem.d.ts","../../node_modules/@restart/ui/esm/nav.d.ts","../../node_modules/react-bootstrap/esm/listgroupitem.d.ts","../../node_modules/react-bootstrap/esm/listgroup.d.ts","../../node_modules/@restart/ui/esm/modalmanager.d.ts","../../node_modules/@restart/ui/esm/usewaitfordomref.d.ts","../../node_modules/@restart/ui/esm/imperativetransition.d.ts","../../node_modules/@restart/ui/esm/modal.d.ts","../../node_modules/react-bootstrap/esm/modalbody.d.ts","../../node_modules/react-bootstrap/esm/abstractmodalheader.d.ts","../../node_modules/react-bootstrap/esm/modalheader.d.ts","../../node_modules/react-bootstrap/esm/modaltitle.d.ts","../../node_modules/react-bootstrap/esm/modalfooter.d.ts","../../node_modules/react-bootstrap/esm/modaldialog.d.ts","../../node_modules/react-bootstrap/esm/modal.d.ts","../../node_modules/react-bootstrap/esm/navitem.d.ts","../../node_modules/react-bootstrap/esm/navlink.d.ts","../../node_modules/react-bootstrap/esm/nav.d.ts","../../node_modules/react-bootstrap/esm/navbarbrand.d.ts","../../node_modules/react-bootstrap/esm/navbarcollapse.d.ts","../../node_modules/react-bootstrap/esm/offcanvasbody.d.ts","../../node_modules/react-bootstrap/esm/offcanvasheader.d.ts","../../node_modules/react-bootstrap/esm/offcanvastitle.d.ts","../../node_modules/react-bootstrap/esm/offcanvas.d.ts","../../node_modules/react-bootstrap/esm/navbaroffcanvas.d.ts","../../node_modules/react-bootstrap/esm/navbartext.d.ts","../../node_modules/react-bootstrap/esm/navbartoggle.d.ts","../../node_modules/react-bootstrap/esm/navbar.d.ts","../../node_modules/react-bootstrap/esm/navdropdown.d.ts","../../node_modules/react-bootstrap/esm/offcanvastoggling.d.ts","../../node_modules/@restart/ui/esm/userootclose.d.ts","../../node_modules/@restart/ui/esm/overlay.d.ts","../../node_modules/react-bootstrap/esm/overlay.d.ts","../../node_modules/react-bootstrap/esm/overlaytrigger.d.ts","../../node_modules/react-bootstrap/esm/pageitem.d.ts","../../node_modules/react-bootstrap/esm/pagination.d.ts","../../node_modules/react-bootstrap/esm/useplaceholder.d.ts","../../node_modules/react-bootstrap/esm/placeholderbutton.d.ts","../../node_modules/react-bootstrap/esm/placeholder.d.ts","../../node_modules/react-bootstrap/esm/popoverheader.d.ts","../../node_modules/react-bootstrap/esm/popoverbody.d.ts","../../node_modules/react-bootstrap/esm/popover.d.ts","../../node_modules/react-bootstrap/esm/progressbar.d.ts","../../node_modules/react-bootstrap/esm/ratio.d.ts","../../node_modules/react-bootstrap/esm/row.d.ts","../../node_modules/react-bootstrap/esm/spinner.d.ts","../../node_modules/react-bootstrap/esm/splitbutton.d.ts","../../node_modules/@react-aria/ssr/dist/types.d.ts","../../node_modules/@restart/ui/esm/ssr.d.ts","../../node_modules/react-bootstrap/esm/ssrprovider.d.ts","../../node_modules/react-bootstrap/esm/createutilityclasses.d.ts","../../node_modules/react-bootstrap/esm/stack.d.ts","../../node_modules/react-bootstrap/esm/tabpane.d.ts","../../node_modules/@restart/ui/esm/tabpanel.d.ts","../../node_modules/@restart/ui/esm/tabs.d.ts","../../node_modules/react-bootstrap/esm/tabcontainer.d.ts","../../node_modules/react-bootstrap/esm/tabcontent.d.ts","../../node_modules/react-bootstrap/esm/tab.d.ts","../../node_modules/react-bootstrap/esm/table.d.ts","../../node_modules/react-bootstrap/esm/tabs.d.ts","../../node_modules/react-bootstrap/esm/themeprovider.d.ts","../../node_modules/react-bootstrap/esm/toastbody.d.ts","../../node_modules/react-bootstrap/esm/toastheader.d.ts","../../node_modules/react-bootstrap/esm/toast.d.ts","../../node_modules/react-bootstrap/esm/toastcontainer.d.ts","../../node_modules/react-bootstrap/esm/togglebutton.d.ts","../../node_modules/react-bootstrap/esm/togglebuttongroup.d.ts","../../node_modules/react-bootstrap/esm/tooltip.d.ts","../../node_modules/react-bootstrap/esm/index.d.ts","../../src/components/pure/themecard.tsx","../../src/components/pure/modalcontent.tsx","../../src/components/pure/modalcontent.test/types.ts","../../src/components/pure/modalcontent.test/specification.ts","../../src/components/teststatusbadge.tsx","../../node_modules/react-router/dist/development/routemodules-c3oqzppi.d.ts","../../node_modules/react-router/dist/development/index-react-server-client-bq6fxda_.d.ts","../../node_modules/react-router/node_modules/cookie/dist/index.d.ts","../../node_modules/react-router/dist/development/register-dioileq5.d.ts","../../node_modules/react-router/dist/development/index.d.ts","../../node_modules/react-router-dom/dist/index.d.ts","../../src/components/pure/navbar.tsx","../../src/components/pure/projectpageview.tsx","../../src/components/pure/projectpageview.test/types.ts","../../src/components/pure/projectpageview.test/specification.ts","../../src/components/pure/testpageview.test/types.ts","../../src/components/pure/testpageview.test/implementation.ts","../../src/components/pure/testpageview.test/specification.ts","../../src/esbuildconfigs/eslint-formatter-testeranto.ts","../../src/lib/mocks.test.ts","../../src/lib/basesuite.test/test.ts","../../src/lib/basesuite.test/mock.ts","../../src/lib/basesuite.test/node.test.ts","../../src/lib/basesuite.test/pure.test.ts","../../src/lib/basesuite.test/web.test.ts","../../src/lib/abstractbase.test/mockgiven.ts","../../src/lib/abstractbase.test/mockthen.ts","../../src/lib/abstractbase.test/mockwhen.ts","../../src/lib/abstractbase.test/types.ts","../../src/lib/abstractbase.test/adapter.ts","../../src/lib/abstractbase.test/implementation.ts","../../src/lib/abstractbase.test/specification.ts","../../src/lib/abstractbase.test/index.ts","../../src/lib/basebuilder.test/basebuilder.test.types.ts","../../src/lib/basebuilder.test/basebuilder.test.adapter.ts","../../src/lib/basebuilder.test/basebuilder.test.mock.ts","../../src/lib/basebuilder.test/basebuilder.test.implementation.ts","../../src/lib/basebuilder.test/basebuilder.test.specification.ts","../../src/lib/basebuilder.test/basebuilder.test.node.ts","../../src/lib/basebuilder.test/basebuilder.test.pure.ts","../../src/lib/basebuilder.test/basebuilder.test.web.ts","../../src/lib/classbuilder.test/classbuilder.test.adapter.ts","../../src/lib/classbuilder.test/mock.ts","../../src/lib/classbuilder.test/classbuilder.test.types.ts","../../src/lib/classbuilder.test/classbuilder.test.specification.ts","../../src/lib/classbuilder.test/classbuilder.test.implementation.ts","../../src/lib/classbuilder.test/classbuilder.test.ts","../../src/lib/core.test/mockcore.ts","../../src/lib/core.test/core.test.types.ts","../../src/lib/core.test/core.test.adapter.ts","../../src/lib/core.test/core.test.implementation.ts","../../src/lib/core.test/core.test.specification.ts","../../src/lib/core.test/core.test.ts","../../src/lib/pmproxy.test/implementation.ts","../../src/lib/pmproxy.test/specification.ts","../../src/lib/pmproxy.test/index.ts","../../src/lib/pmproxy.test/types.ts","../../src/lib/pmproxy.test/adapter.ts","../../src/lib/pmproxy.test/mockpm.ts","../../node_modules/@types/send/index.d.ts","../../node_modules/@types/qs/index.d.ts","../../node_modules/@types/range-parser/index.d.ts","../../node_modules/@types/express-serve-static-core/index.d.ts","../../node_modules/@types/http-errors/index.d.ts","../../node_modules/@types/serve-static/index.d.ts","../../node_modules/@types/connect/index.d.ts","../../node_modules/@types/body-parser/index.d.ts","../../node_modules/@types/express/index.d.ts","../../src/mothership/index.ts","../../src/mothership/test.ts","../../src/utils/api.ts","../../node_modules/fabric/dist/src/filters/glprobes/glprobe.d.ts","../../node_modules/fabric/dist/src/shapes/object/fabricobjectsvgexportmixin.d.ts","../../node_modules/fabric/dist/src/shadow.d.ts","../../node_modules/fabric/dist/src/shapes/object/types/borderprops.d.ts","../../node_modules/fabric/dist/src/shapes/object/types/controlprops.d.ts","../../node_modules/fabric/dist/src/shapes/object/types/lockinteractionprops.d.ts","../../node_modules/fabric/dist/src/canvas/staticcanvasoptions.d.ts","../../node_modules/fabric/dist/src/canvas/canvasoptions.d.ts","../../node_modules/fabric/dist/src/observable.d.ts","../../node_modules/fabric/dist/src/commonmethods.d.ts","../../node_modules/fabric/dist/src/filters/webglfilterbackend.d.ts","../../node_modules/fabric/dist/src/filters/canvas2dfilterbackend.d.ts","../../node_modules/fabric/dist/src/filters/typedefs.d.ts","../../node_modules/fabric/dist/src/filters/basefilter.d.ts","../../node_modules/fabric/dist/src/util/misc/objectenlive.d.ts","../../node_modules/fabric/dist/src/canvas/dommanagers/util.d.ts","../../node_modules/fabric/dist/src/canvas/dommanagers/staticcanvasdommanager.d.ts","../../node_modules/fabric/dist/src/canvas/staticcanvas.d.ts","../../node_modules/fabric/dist/src/brushes/typedefs.d.ts","../../node_modules/fabric/dist/src/brushes/basebrush.d.ts","../../node_modules/fabric/dist/src/canvas/dommanagers/canvasdommanager.d.ts","../../node_modules/fabric/dist/src/canvas/selectablecanvas.d.ts","../../node_modules/fabric/dist/src/util/misc/textstyles.d.ts","../../node_modules/fabric/dist/src/util/path/typedefs.d.ts","../../node_modules/fabric/dist/src/parser/typedefs.d.ts","../../node_modules/fabric/dist/src/gradient/typedefs.d.ts","../../node_modules/fabric/dist/src/gradient/index.d.ts","../../node_modules/fabric/dist/src/pattern/types.d.ts","../../node_modules/fabric/dist/src/pattern/pattern.d.ts","../../node_modules/fabric/dist/src/pattern/index.d.ts","../../node_modules/fabric/dist/src/shapes/path.d.ts","../../node_modules/fabric/dist/src/shapes/text/constants.d.ts","../../node_modules/fabric/dist/src/shapes/text/text.d.ts","../../node_modules/fabric/dist/src/color/color.d.ts","../../node_modules/fabric/dist/src/color/typedefs.d.ts","../../node_modules/fabric/dist/src/util/animation/types.d.ts","../../node_modules/fabric/dist/src/util/animation/animationbase.d.ts","../../node_modules/fabric/dist/src/util/animation/valueanimation.d.ts","../../node_modules/fabric/dist/src/shapes/itext/itextbehavior.d.ts","../../node_modules/fabric/dist/src/canvas/texteditingmanager.d.ts","../../node_modules/fabric/dist/src/canvas/canvas.d.ts","../../node_modules/fabric/dist/src/shapes/object/types/objecttransformprops.d.ts","../../node_modules/fabric/dist/src/shapes/object/types/baseprops.d.ts","../../node_modules/fabric/dist/src/shapes/object/types/fillstrokeprops.d.ts","../../node_modules/fabric/dist/src/shapes/object/types/serializedobjectprops.d.ts","../../node_modules/fabric/dist/src/shapes/object/types/objectprops.d.ts","../../node_modules/fabric/dist/src/shapes/object/types/fabricobjectprops.d.ts","../../node_modules/fabric/dist/src/shapes/object/types/index.d.ts","../../node_modules/fabric/dist/src/layoutmanager/layoutstrategies/layoutstrategy.d.ts","../../node_modules/fabric/dist/src/layoutmanager/constants.d.ts","../../node_modules/fabric/dist/src/layoutmanager/types.d.ts","../../node_modules/fabric/dist/src/layoutmanager/layoutmanager.d.ts","../../node_modules/fabric/dist/src/shapes/group.d.ts","../../node_modules/fabric/dist/src/filters/resize.d.ts","../../node_modules/fabric/dist/src/shapes/image.d.ts","../../node_modules/fabric/dist/src/util/animation/arrayanimation.d.ts","../../node_modules/fabric/dist/src/util/animation/coloranimation.d.ts","../../node_modules/fabric/dist/src/util/animation/animate.d.ts","../../node_modules/fabric/dist/src/shapes/object/objectgeometry.d.ts","../../node_modules/fabric/dist/src/shapes/object/object.d.ts","../../node_modules/fabric/dist/src/util/misc/matrix.d.ts","../../node_modules/fabric/dist/src/controls/controlrendering.d.ts","../../node_modules/fabric/dist/src/shapes/object/interactiveobject.d.ts","../../node_modules/fabric/dist/src/shapes/object/defaultvalues.d.ts","../../node_modules/fabric/dist/src/shapes/object/fabricobject.d.ts","../../node_modules/fabric/dist/src/gradient/gradient.d.ts","../../node_modules/fabric/dist/src/typedefs.d.ts","../../node_modules/fabric/dist/src/point.d.ts","../../node_modules/fabric/dist/src/controls/control.d.ts","../../node_modules/fabric/dist/src/util/misc/objecttransforms.d.ts","../../node_modules/fabric/dist/src/shapes/itext/draggabletextdelegate.d.ts","../../node_modules/fabric/dist/src/shapes/itext/constants.d.ts","../../node_modules/fabric/dist/src/shapes/itext/itextkeybehavior.d.ts","../../node_modules/fabric/dist/src/shapes/itext/itextclickbehavior.d.ts","../../node_modules/fabric/dist/src/shapes/itext/itext.d.ts","../../node_modules/fabric/dist/src/constants.d.ts","../../node_modules/fabric/dist/src/eventtypedefs.d.ts","../../node_modules/fabric/dist/src/shapes/text/styledtext.d.ts","../../node_modules/fabric/dist/src/env/types.d.ts","../../node_modules/fabric/dist/src/env/index.d.ts","../../node_modules/fabric/dist/src/cache.d.ts","../../node_modules/fabric/dist/src/config.d.ts","../../node_modules/fabric/dist/src/classregistry.d.ts","../../node_modules/fabric/dist/src/util/animation/animationregistry.d.ts","../../node_modules/fabric/dist/src/intersection.d.ts","../../node_modules/fabric/dist/src/brushes/pencilbrush.d.ts","../../node_modules/fabric/dist/src/brushes/circlebrush.d.ts","../../node_modules/fabric/dist/src/brushes/spraybrush.d.ts","../../node_modules/fabric/dist/src/brushes/patternbrush.d.ts","../../node_modules/fabric/dist/src/shapes/line.d.ts","../../node_modules/fabric/dist/src/shapes/circle.d.ts","../../node_modules/fabric/dist/src/shapes/triangle.d.ts","../../node_modules/fabric/dist/src/shapes/ellipse.d.ts","../../node_modules/fabric/dist/src/shapes/rect.d.ts","../../node_modules/fabric/dist/src/util/misc/projectstroke/types.d.ts","../../node_modules/fabric/dist/src/shapes/polyline.d.ts","../../node_modules/fabric/dist/src/shapes/polygon.d.ts","../../node_modules/fabric/dist/src/shapes/textbox.d.ts","../../node_modules/fabric/dist/src/layoutmanager/layoutstrategies/clippathlayout.d.ts","../../node_modules/fabric/dist/src/layoutmanager/layoutstrategies/fitcontentlayout.d.ts","../../node_modules/fabric/dist/src/layoutmanager/layoutstrategies/fixedlayout.d.ts","../../node_modules/fabric/dist/src/layoutmanager/index.d.ts","../../node_modules/fabric/dist/src/layoutmanager/activeselectionlayoutmanager.d.ts","../../node_modules/fabric/dist/src/shapes/activeselection.d.ts","../../node_modules/fabric/dist/src/collection.d.ts","../../node_modules/fabric/dist/src/util/misc/cos.d.ts","../../node_modules/fabric/dist/src/util/misc/sin.d.ts","../../node_modules/fabric/dist/src/util/misc/vectors.d.ts","../../node_modules/fabric/dist/src/util/misc/radiansdegreesconversion.d.ts","../../node_modules/fabric/dist/src/util/misc/rotatepoint.d.ts","../../node_modules/fabric/dist/src/util/misc/projectstroke/index.d.ts","../../node_modules/fabric/dist/src/util/misc/dom.d.ts","../../node_modules/fabric/dist/src/util/misc/tofixed.d.ts","../../node_modules/fabric/dist/src/util/misc/svgparsing.d.ts","../../node_modules/fabric/dist/src/util/misc/svgexport.d.ts","../../node_modules/fabric/dist/src/util/misc/groupsvgelements.d.ts","../../node_modules/fabric/dist/src/util/misc/findscaleto.d.ts","../../node_modules/fabric/dist/src/util/misc/capvalue.d.ts","../../node_modules/fabric/dist/src/util/misc/boundingboxfrompoints.d.ts","../../node_modules/fabric/dist/src/util/misc/planechange.d.ts","../../node_modules/fabric/dist/src/util/lang_string.d.ts","../../node_modules/fabric/dist/src/util/misc/pick.d.ts","../../node_modules/fabric/dist/src/util/path/index.d.ts","../../node_modules/fabric/dist/src/util/dom_style.d.ts","../../node_modules/fabric/dist/src/util/dom_event.d.ts","../../node_modules/fabric/dist/src/util/misc/istransparent.d.ts","../../node_modules/fabric/dist/src/util/misc/mergeclippaths.d.ts","../../node_modules/fabric/dist/src/util/animation/index.d.ts","../../node_modules/fabric/dist/src/util/animation/easing.d.ts","../../node_modules/fabric/dist/src/util/animation/animationframeprovider.d.ts","../../node_modules/fabric/dist/src/util/internals/removefromarray.d.ts","../../node_modules/fabric/dist/src/util/internals/getrandomint.d.ts","../../node_modules/fabric/dist/src/util/internals/dom_request.d.ts","../../node_modules/fabric/dist/src/util/transform_matrix_removal.d.ts","../../node_modules/fabric/dist/src/util/index.d.ts","../../node_modules/fabric/dist/src/parser/loadsvgfromstring.d.ts","../../node_modules/fabric/dist/src/parser/loadsvgfromurl.d.ts","../../node_modules/fabric/dist/src/parser/parsesvgdocument.d.ts","../../node_modules/fabric/dist/src/parser/parseattributes.d.ts","../../node_modules/fabric/dist/src/parser/parsestyleattribute.d.ts","../../node_modules/fabric/dist/src/parser/parsepointsattribute.d.ts","../../node_modules/fabric/dist/src/parser/parsetransformattribute.d.ts","../../node_modules/fabric/dist/src/parser/getcssrules.d.ts","../../node_modules/fabric/dist/src/parser/parsefontdeclaration.d.ts","../../node_modules/fabric/dist/src/controls/changewidth.d.ts","../../node_modules/fabric/dist/src/controls/commoncontrols.d.ts","../../node_modules/fabric/dist/src/controls/drag.d.ts","../../node_modules/fabric/dist/src/controls/polycontrol.d.ts","../../node_modules/fabric/dist/src/controls/rotate.d.ts","../../node_modules/fabric/dist/src/controls/scale.d.ts","../../node_modules/fabric/dist/src/controls/scaleskew.d.ts","../../node_modules/fabric/dist/src/controls/skew.d.ts","../../node_modules/fabric/dist/src/controls/util.d.ts","../../node_modules/fabric/dist/src/controls/wrapwithfireevent.d.ts","../../node_modules/fabric/dist/src/controls/wrapwithfixedanchor.d.ts","../../node_modules/fabric/dist/src/controls/pathcontrol.d.ts","../../node_modules/fabric/dist/src/controls/index.d.ts","../../node_modules/fabric/dist/src/filters/blendcolor.d.ts","../../node_modules/fabric/dist/src/filters/blendimage.d.ts","../../node_modules/fabric/dist/src/filters/blur.d.ts","../../node_modules/fabric/dist/src/filters/brightness.d.ts","../../node_modules/fabric/dist/src/filters/colormatrix.d.ts","../../node_modules/fabric/dist/src/filters/colormatrixfilters.d.ts","../../node_modules/fabric/dist/src/filters/composed.d.ts","../../node_modules/fabric/dist/src/filters/contrast.d.ts","../../node_modules/fabric/dist/src/filters/shaders/convolute.d.ts","../../node_modules/fabric/dist/src/filters/convolute.d.ts","../../node_modules/fabric/dist/src/filters/gamma.d.ts","../../node_modules/fabric/dist/src/filters/grayscale.d.ts","../../node_modules/fabric/dist/src/filters/huerotation.d.ts","../../node_modules/fabric/dist/src/filters/invert.d.ts","../../node_modules/fabric/dist/src/filters/noise.d.ts","../../node_modules/fabric/dist/src/filters/pixelate.d.ts","../../node_modules/fabric/dist/src/filters/removecolor.d.ts","../../node_modules/fabric/dist/src/filters/saturation.d.ts","../../node_modules/fabric/dist/src/filters/vibrance.d.ts","../../node_modules/fabric/dist/src/filters/filters.d.ts","../../node_modules/fabric/dist/src/filters/filterbackend.d.ts","../../node_modules/fabric/dist/src/filters/utils.d.ts","../../node_modules/fabric/dist/src/filters/index.d.ts","../../node_modules/fabric/dist/fabric.d.ts","../../node_modules/fabric/dist/index.d.ts","../../node_modules/html-to-image/lib/types.d.ts","../../node_modules/html-to-image/lib/index.d.ts","../../design-editor/designeditor.tsx","../../node_modules/monaco-editor/esm/vs/editor/editor.api.d.ts","../../node_modules/@monaco-editor/loader/lib/types.d.ts","../../node_modules/@monaco-editor/react/dist/index.d.ts","../../src/components/pure/testpageview.tsx","../../src/components/stateful/testpage.tsx","../../src/components/stateful/projectpage.tsx","../../src/components/pure/projectspageview.tsx","../../src/components/stateful/projectspage.tsx","../../src/components/pure/appframe.tsx","../../src/components/pure/featuresreporterview.tsx","../../src/components/stateful/featuresreporter.tsx","../../node_modules/@types/file-saver/index.d.ts","../../src/components/designeditorpage.tsx","../../src/components/stateful/filetree.tsx","../../src/components/stateful/texteditorpage.tsx","../../src/components/pure/processmanagerview.tsx","../../src/components/stateful/processmanagerpage.tsx","../../src/components/pure/singleprocessview.tsx","../../src/components/stateful/singleprocesspage.tsx","../../src/components/stateful/settingspage.tsx","../../src/app.tsx","../../src/components/sunriseanimation.tsx","../../src/components/pure/processmanager.tsx","../../src/components/pure/settingsbutton.tsx","../../src/components/pure/appframe.test/implementation.tsx","../../node_modules/testeranto-react/src/react-dom/component/dynamic.ts","../../node_modules/testeranto-react/src/react/component/index.ts","../../node_modules/testeranto-react/src/mocks/mockreactcomponent.tsx","../../node_modules/testeranto-react/src/react-dom/component/web.ts","../../src/components/pure/appframe.test/index.tsx","../../src/components/pure/featuresreporterview.test/implementation.tsx","../../src/components/pure/featuresreporterview.test/index.tsx","../../src/components/pure/modalcontent.test/implementation.tsx","../../src/components/pure/modalcontent.test/index.tsx","../../src/components/pure/projectpageview.test/implementation.tsx","../../src/components/pure/projectpageview.test/index.tsx","../../node_modules/testeranto-react/src/react-dom/jsx/index.ts","../../node_modules/testeranto-react/src/react-dom/jsx/dynamic.ts","../../node_modules/testeranto-react/src/react-dom/jsx/web.ts","../../src/components/pure/testpageview.test/index.tsx","../../src/utils/featureutils.tsx","../../index.d.ts","../../node_modules/@types/aws-lambda/common/api-gateway.d.ts","../../node_modules/@types/aws-lambda/common/cloudfront.d.ts","../../node_modules/@types/aws-lambda/handler.d.ts","../../node_modules/@types/aws-lambda/trigger/alb.d.ts","../../node_modules/@types/aws-lambda/trigger/api-gateway-proxy.d.ts","../../node_modules/@types/aws-lambda/trigger/api-gateway-authorizer.d.ts","../../node_modules/@types/aws-lambda/trigger/appsync-resolver.d.ts","../../node_modules/@types/aws-lambda/trigger/autoscaling.d.ts","../../node_modules/@types/aws-lambda/trigger/cloudformation-custom-resource.d.ts","../../node_modules/@types/aws-lambda/trigger/cdk-custom-resource.d.ts","../../node_modules/@types/aws-lambda/trigger/cloudfront-request.d.ts","../../node_modules/@types/aws-lambda/trigger/cloudfront-response.d.ts","../../node_modules/@types/aws-lambda/trigger/cloudwatch-alarm.d.ts","../../node_modules/@types/aws-lambda/trigger/eventbridge.d.ts","../../node_modules/@types/aws-lambda/trigger/cloudwatch-events.d.ts","../../node_modules/@types/aws-lambda/trigger/cloudwatch-logs.d.ts","../../node_modules/@types/aws-lambda/trigger/codebuild-cloudwatch-state.d.ts","../../node_modules/@types/aws-lambda/trigger/codecommit.d.ts","../../node_modules/@types/aws-lambda/trigger/codepipeline.d.ts","../../node_modules/@types/aws-lambda/trigger/codepipeline-cloudwatch-action.d.ts","../../node_modules/@types/aws-lambda/trigger/codepipeline-cloudwatch-pipeline.d.ts","../../node_modules/@types/aws-lambda/trigger/codepipeline-cloudwatch-stage.d.ts","../../node_modules/@types/aws-lambda/trigger/codepipeline-cloudwatch.d.ts","../../node_modules/@types/aws-lambda/trigger/cognito-user-pool-trigger/_common.d.ts","../../node_modules/@types/aws-lambda/trigger/cognito-user-pool-trigger/create-auth-challenge.d.ts","../../node_modules/@types/aws-lambda/trigger/cognito-user-pool-trigger/custom-email-sender.d.ts","../../node_modules/@types/aws-lambda/trigger/cognito-user-pool-trigger/custom-message.d.ts","../../node_modules/@types/aws-lambda/trigger/cognito-user-pool-trigger/custom-sms-sender.d.ts","../../node_modules/@types/aws-lambda/trigger/cognito-user-pool-trigger/define-auth-challenge.d.ts","../../node_modules/@types/aws-lambda/trigger/cognito-user-pool-trigger/post-authentication.d.ts","../../node_modules/@types/aws-lambda/trigger/cognito-user-pool-trigger/post-confirmation.d.ts","../../node_modules/@types/aws-lambda/trigger/cognito-user-pool-trigger/pre-authentication.d.ts","../../node_modules/@types/aws-lambda/trigger/cognito-user-pool-trigger/pre-signup.d.ts","../../node_modules/@types/aws-lambda/trigger/cognito-user-pool-trigger/pre-token-generation.d.ts","../../node_modules/@types/aws-lambda/trigger/cognito-user-pool-trigger/pre-token-generation-v2.d.ts","../../node_modules/@types/aws-lambda/trigger/cognito-user-pool-trigger/pre-token-generation-v3.d.ts","../../node_modules/@types/aws-lambda/trigger/cognito-user-pool-trigger/user-migration.d.ts","../../node_modules/@types/aws-lambda/trigger/cognito-user-pool-trigger/verify-auth-challenge-response.d.ts","../../node_modules/@types/aws-lambda/trigger/cognito-user-pool-trigger/index.d.ts","../../node_modules/@types/aws-lambda/trigger/connect-contact-flow.d.ts","../../node_modules/@types/aws-lambda/trigger/dynamodb-stream.d.ts","../../node_modules/@types/aws-lambda/trigger/guard-duty-event-notification.d.ts","../../node_modules/@types/aws-lambda/trigger/iot.d.ts","../../node_modules/@types/aws-lambda/trigger/iot-authorizer.d.ts","../../node_modules/@types/aws-lambda/trigger/kinesis-firehose-transformation.d.ts","../../node_modules/@types/aws-lambda/trigger/kinesis-stream.d.ts","../../node_modules/@types/aws-lambda/trigger/lambda-function-url.d.ts","../../node_modules/@types/aws-lambda/trigger/lex.d.ts","../../node_modules/@types/aws-lambda/trigger/lex-v2.d.ts","../../node_modules/@types/aws-lambda/trigger/amplify-resolver.d.ts","../../node_modules/@types/aws-lambda/trigger/msk.d.ts","../../node_modules/@types/aws-lambda/trigger/s3.d.ts","../../node_modules/@types/aws-lambda/trigger/s3-batch.d.ts","../../node_modules/@types/aws-lambda/trigger/s3-event-notification.d.ts","../../node_modules/@types/aws-lambda/trigger/secretsmanager.d.ts","../../node_modules/@types/aws-lambda/trigger/self-managed-kafka.d.ts","../../node_modules/@types/aws-lambda/trigger/ses.d.ts","../../node_modules/@types/aws-lambda/trigger/sns.d.ts","../../node_modules/@types/aws-lambda/trigger/sqs.d.ts","../../node_modules/@types/aws-lambda/trigger/transfer-family-authorizer.d.ts","../../node_modules/@types/aws-lambda/index.d.ts","../../node_modules/keyv/src/index.d.ts","../../node_modules/@types/http-cache-semantics/index.d.ts","../../node_modules/@types/responselike/index.d.ts","../../node_modules/@types/cacheable-request/index.d.ts","../../node_modules/@types/d3-array/index.d.ts","../../node_modules/@types/d3-selection/index.d.ts","../../node_modules/@types/d3-axis/index.d.ts","../../node_modules/@types/d3-brush/index.d.ts","../../node_modules/@types/d3-chord/index.d.ts","../../node_modules/@types/d3-color/index.d.ts","../../node_modules/@types/geojson/index.d.ts","../../node_modules/@types/d3-contour/index.d.ts","../../node_modules/@types/d3-delaunay/index.d.ts","../../node_modules/@types/d3-dispatch/index.d.ts","../../node_modules/@types/d3-drag/index.d.ts","../../node_modules/@types/d3-dsv/index.d.ts","../../node_modules/@types/d3-ease/index.d.ts","../../node_modules/@types/d3-fetch/index.d.ts","../../node_modules/@types/d3-force/index.d.ts","../../node_modules/@types/d3-format/index.d.ts","../../node_modules/@types/d3-geo/index.d.ts","../../node_modules/@types/d3-hierarchy/index.d.ts","../../node_modules/@types/d3-interpolate/index.d.ts","../../node_modules/@types/d3-path/index.d.ts","../../node_modules/@types/d3-polygon/index.d.ts","../../node_modules/@types/d3-quadtree/index.d.ts","../../node_modules/@types/d3-random/index.d.ts","../../node_modules/@types/d3-time/index.d.ts","../../node_modules/@types/d3-scale/index.d.ts","../../node_modules/@types/d3-scale-chromatic/index.d.ts","../../node_modules/@types/d3-shape/index.d.ts","../../node_modules/@types/d3-time-format/index.d.ts","../../node_modules/@types/d3-timer/index.d.ts","../../node_modules/@types/d3-transition/index.d.ts","../../node_modules/@types/d3-zoom/index.d.ts","../../node_modules/@types/d3/index.d.ts","../../node_modules/@types/eslint/use-at-your-own-risk.d.ts","../../node_modules/@types/eslint/index.d.ts","../../node_modules/@types/express-session/index.d.ts","../../node_modules/@types/fabric/fabric-impl.d.ts","../../node_modules/@types/fabric/index.d.ts","../../node_modules/@types/history/domutils.d.ts","../../node_modules/@types/history/createbrowserhistory.d.ts","../../node_modules/@types/history/createhashhistory.d.ts","../../node_modules/@types/history/creatememoryhistory.d.ts","../../node_modules/@types/history/locationutils.d.ts","../../node_modules/@types/history/pathutils.d.ts","../../node_modules/@types/history/index.d.ts","../../node_modules/@types/istanbul-lib-coverage/index.d.ts","../../node_modules/@types/istanbul-lib-report/index.d.ts","../../node_modules/@types/istanbul-reports/index.d.ts","../../node_modules/@types/json5/index.d.ts","../../node_modules/@types/keyv/index.d.ts","../../node_modules/marked/lib/marked.d.ts","../../node_modules/@types/mz/child_process.d.ts","../../node_modules/@types/mz/crypto.d.ts","../../node_modules/@types/mz/dns.d.ts","../../node_modules/@types/mz/fs.d.ts","../../node_modules/@types/mz/readline.d.ts","../../node_modules/@types/mz/zlib.d.ts","../../node_modules/@types/mz/index.d.ts","../../node_modules/@types/react-dom/index.d.ts","../../node_modules/@types/react-router/node_modules/@types/react/index.d.ts","../../node_modules/@types/react-router/index.d.ts","../../node_modules/@types/react-router-dom/node_modules/@types/react/index.d.ts","../../node_modules/@types/react-router-dom/index.d.ts","../../node_modules/@types/react-test-renderer/node_modules/@types/react/index.d.ts","../../node_modules/@types/react-test-renderer/index.d.ts","../../node_modules/@types/react-transition-group/config.d.ts","../../node_modules/@types/react-transition-group/csstransition.d.ts","../../node_modules/@types/react-transition-group/switchtransition.d.ts","../../node_modules/@types/react-transition-group/transitiongroup.d.ts","../../node_modules/@types/react-transition-group/index.d.ts","../../node_modules/@types/recursive-readdir/index.d.ts","../../node_modules/@types/scheduler/index.d.ts","../../node_modules/@types/semver/classes/semver.d.ts","../../node_modules/@types/semver/functions/parse.d.ts","../../node_modules/@types/semver/functions/valid.d.ts","../../node_modules/@types/semver/functions/clean.d.ts","../../node_modules/@types/semver/functions/inc.d.ts","../../node_modules/@types/semver/functions/diff.d.ts","../../node_modules/@types/semver/functions/major.d.ts","../../node_modules/@types/semver/functions/minor.d.ts","../../node_modules/@types/semver/functions/patch.d.ts","../../node_modules/@types/semver/functions/prerelease.d.ts","../../node_modules/@types/semver/functions/compare.d.ts","../../node_modules/@types/semver/functions/rcompare.d.ts","../../node_modules/@types/semver/functions/compare-loose.d.ts","../../node_modules/@types/semver/functions/compare-build.d.ts","../../node_modules/@types/semver/functions/sort.d.ts","../../node_modules/@types/semver/functions/rsort.d.ts","../../node_modules/@types/semver/functions/gt.d.ts","../../node_modules/@types/semver/functions/lt.d.ts","../../node_modules/@types/semver/functions/eq.d.ts","../../node_modules/@types/semver/functions/neq.d.ts","../../node_modules/@types/semver/functions/gte.d.ts","../../node_modules/@types/semver/functions/lte.d.ts","../../node_modules/@types/semver/functions/cmp.d.ts","../../node_modules/@types/semver/functions/coerce.d.ts","../../node_modules/@types/semver/classes/comparator.d.ts","../../node_modules/@types/semver/classes/range.d.ts","../../node_modules/@types/semver/functions/satisfies.d.ts","../../node_modules/@types/semver/ranges/max-satisfying.d.ts","../../node_modules/@types/semver/ranges/min-satisfying.d.ts","../../node_modules/@types/semver/ranges/to-comparators.d.ts","../../node_modules/@types/semver/ranges/min-version.d.ts","../../node_modules/@types/semver/ranges/valid.d.ts","../../node_modules/@types/semver/ranges/outside.d.ts","../../node_modules/@types/semver/ranges/gtr.d.ts","../../node_modules/@types/semver/ranges/ltr.d.ts","../../node_modules/@types/semver/ranges/intersects.d.ts","../../node_modules/@types/semver/ranges/simplify.d.ts","../../node_modules/@types/semver/ranges/subset.d.ts","../../node_modules/@types/semver/internals/identifiers.d.ts","../../node_modules/@types/semver/index.d.ts","../../node_modules/@types/stack-utils/index.d.ts","../../node_modules/@types/trusted-types/lib/index.d.ts","../../node_modules/@types/trusted-types/index.d.ts","../../node_modules/@types/uuid/index.d.ts","../../node_modules/@types/warning/index.d.ts","../../node_modules/@types/xmldom/index.d.ts","../../node_modules/@types/yargs-parser/index.d.ts","../../node_modules/@types/yargs/index.d.ts","../../node_modules/@types/yauzl/index.d.ts","../../node_modules/@types/react-router-dom/node_modules/@types/react/global.d.ts","../../node_modules/@types/react-router/node_modules/@types/react/global.d.ts","../../node_modules/@types/react-test-renderer/node_modules/@types/react/global.d.ts"],"fileIdsList":[[85,130,759,1188,1190],[85,130,143,152,711],[85,130],[85,130,737],[85,130,1192],[85,130,759,1192,1193],[85,130,799],[85,130,793,795],[85,130,783,793,794,796,797,798],[85,130,793],[85,130,783,793],[85,130,784,785,786,787,788,789,790,791,792],[85,130,784,788,789,792,793,796],[85,130,784,785,786,787,788,789,790,791,792,793,794,796,797],[85,130,783,784,785,786,787,788,789,790,791,792],[85,130,759],[85,130,759,772,801,811,833,834,835],[85,130,759,801],[85,130,759,772,811],[85,130,759,801,831,832],[85,130,759,831],[85,130,759,772],[85,130,759,772,871,872,873],[85,130,759,772,811,867],[85,130,759,772,801,872,873,897],[85,130,914],[85,130,759,772,920],[85,130,800],[85,130,759,832],[85,130,759,800,801],[85,130,162],[85,130,1234,1235,1236,1237,1238,1239,1240,1241,1242,1243,1244,1245,1246,1247,1248,1249,1250,1251,1252,1253,1254,1255,1256,1272,1273,1274,1275,1276,1277,1278,1279,1280,1281,1282,1283,1284,1285,1286,1287,1288,1289,1290,1291,1292,1293],[85,130,1236],[85,130,1236,1240],[85,130,1234,1236,1238],[85,130,1234,1236],[85,130,1236,1242],[85,130,1235,1236],[85,130,1247],[85,130,1236,1253,1254,1255],[85,130,1236,1257],[85,130,1236,1258,1259,1260,1261,1262,1263,1264,1265,1266,1267,1268,1269,1270,1271],[85,130,1236,1239],[85,130,1236,1238],[85,130,1236,1247],[85,130,145,180,1001],[85,130,142,145,173,180,1295,1296,1297],[85,130,751],[85,130,145,180],[85,130,1300,1328],[85,130,1299,1305],[85,130,1310],[85,130,1305],[85,130,1304],[85,130,1322],[85,130,1318],[85,130,1300,1317,1328],[85,130,1299,1300,1301,1302,1303,1304,1306,1307,1308,1309,1310,1311,1312,1313,1314,1315,1316,1317,1318,1319,1320,1321,1322,1323,1324,1325,1326,1327,1328,1329],[85,130,474],[85,130,736,737,1331],[85,130,1332],[85,130,142,145,180,995,996,997],[85,130,135,142,1003],[85,130,998,1000,1002],[85,130,1334],[85,130,1336,1342],[85,130,1337,1338,1339,1340,1341],[85,130,1342],[85,130,1343],[85,130,1344],[85,130,142,180],[85,130,131,180],[85,130,135,180],[85,130,138,180],[85,130,143,180],[85,130,180,1349,1350,1351,1352,1353,1354],[85,130,157,180],[85,130,179,180],[85,130,142,143,145,180,708],[85,127,130],[85,129,130],[130],[85,130,135,165],[85,130,131,136,142,150,162,173],[85,130,131,132,142,150],[85,130,133,174],[85,130,134,135,143,151],[85,130,135,162,170],[85,130,136,138,142,150],[85,129,130,137],[85,130,138,139],[85,130,140,142],[85,129,130,142],[85,130,142,143,144,162,173],[85,130,142,143,144,157,162,165],[85,125,130],[85,125,130,138,142,145,150,162,173],[85,130,142,143,145,146,150,162,170,173],[85,130,145,147,162,170,173],[83,84,85,126,127,128,129,130,131,132,133,134,135,136,137,138,139,140,141,142,143,144,145,146,147,148,149,150,151,152,153,154,155,156,157,158,159,160,161,162,163,164,165,166,167,168,169,170,171,172,173,174,175,176,177,178,179],[85,130,142,148],[85,130,149,173],[85,130,138,142,150,162],[85,130,151],[85,130,152],[85,129,130,153],[85,127,128,129,130,131,132,133,134,135,136,137,138,139,140,142,143,144,145,146,147,148,149,150,151,152,153,154,155,156,157,158,159,160,161,162,163,164,165,166,167,168,169,170,171,172,173,174,175,176,177,178,179],[85,130,155],[85,130,156],[85,130,142,157,158],[85,130,157,159,174,176],[85,130,142,162,163,165],[85,130,164,165],[85,130,162,163],[85,130,165],[85,130,166],[85,127,130,162,167],[85,130,142,168,169],[85,130,168,169],[85,130,135,150,162,170],[85,130,171],[85,130,150,172],[85,130,145,156,173],[85,130,135,174],[85,130,162,175],[85,130,149,176],[85,130,177],[85,130,142,144,153,162,165,173,175,176,178],[85,130,162,179],[85,130,761],[85,130,757,760],[85,130,761,945,1342],[85,130,757,1419],[85,130,761,1342],[85,130,757,1420],[85,130,757,1421],[85,130,759,775],[85,130,775,1363,1364,1365,1366],[85,130,756,757,758],[85,130,145,162,180],[85,130,1370,1409],[85,130,1370,1394,1409],[85,130,1409],[85,130,1370],[85,130,1370,1395,1409],[85,130,1370,1371,1372,1373,1374,1375,1376,1377,1378,1379,1380,1381,1382,1383,1384,1385,1386,1387,1388,1389,1390,1391,1392,1393,1394,1395,1396,1397,1398,1399,1400,1401,1402,1403,1404,1405,1406,1407,1408],[85,130,1395,1409],[85,130,143,162,180,708],[85,130,145,180,995,999],[85,130,1411],[85,130,142,145,147,150,162,170,173,179,180],[85,130,1416],[85,130,142,162,180],[85,130,520],[85,130,736,737,738,739],[85,130,740],[85,130,1009,1013,1014,1015,1023,1024,1025,1026,1027,1030,1033,1036,1037,1039,1040,1041,1045,1047,1054,1059,1061,1066,1069,1071,1073,1074,1075,1081,1082,1083,1084,1086,1087,1088,1089,1090,1091,1092,1093,1094,1095,1096,1097,1098,1099,1100,1102,1103,1104,1108,1110,1111,1141,1142,1143,1144,1145,1146,1147,1148,1149,1150,1163,1186],[85,130,1187],[85,130,1009,1025,1047,1074],[85,130,1025,1026,1047,1074],[85,130,1030,1047,1083,1092,1188],[85,130,1026,1030,1037,1047,1074,1083],[85,130,1074,1083],[85,130,1073],[85,130,1014,1028,1046,1071,1074,1083,1188],[85,130,1013,1073,1083],[85,130,1022,1023,1073],[85,130,1022,1073],[85,130,1014,1024,1026,1027,1071,1073,1074,1083],[85,130,1013,1016,1021,1022,1023,1066,1071,1073,1074,1083,1188],[85,130,1071,1073],[85,130,1045,1047,1083],[85,130,1059,1069,1071,1073,1083,1110,1188],[85,130,1041],[85,130,1040],[85,130,1015],[85,130,1083],[85,130,1075],[85,130,1068,1069,1073,1074,1083],[85,130,1069,1075],[85,130,1068,1151,1152,1153,1154,1155,1156,1157,1158,1159,1160,1161,1162],[85,130,1037,1075],[85,130,1073,1074,1075,1083,1102],[85,130,1071,1073,1083],[85,130,1073,1083],[85,130,1071,1073,1074,1075,1083],[85,130,1085],[85,130,1007,1084],[85,130,1024,1047,1057,1059,1071,1073,1074,1075,1076,1081,1082],[85,130,1019,1073],[85,130,1019,1020],[85,130,1017,1019,1020,1061],[85,130,1019,1168],[85,130,1019,1020,1172],[85,130,1017,1018],[85,130,1020,1060,1164,1165,1166,1167,1168,1169,1170,1171,1173,1174,1175,1176,1177,1178,1179,1180,1181,1182],[85,130,1017,1018,1019,1183,1184,1185],[85,130,1019],[85,130,1032,1071,1073],[85,130,1032,1072],[85,130,1074],[85,130,1057,1058],[85,130,1055,1057,1058,1105,1106,1107],[85,130,1055,1057,1071],[85,130,1055,1057],[85,130,1055,1057,1074],[85,130,1057,1071,1074],[85,130,1045,1055,1056,1059,1071,1074,1083],[85,130,1031],[85,130,1021,1031],[85,130,1071],[85,130,1034,1035],[85,130,1034,1073],[85,130,1035],[85,130,1059,1068,1071,1109],[85,130,1031,1054,1071,1073,1083],[85,130,1052,1054,1057,1058,1066,1069,1071,1073,1083,1188],[85,130,1020,1021,1031,1054,1060,1066,1071,1073,1083],[85,130,1081,1083],[85,130,1039,1045,1066,1071,1073,1080,1084],[85,130,1039,1042,1044,1071,1073,1083,1084],[85,130,1039,1045,1073,1077,1079,1083],[85,130,1039,1045,1073,1078],[85,130,1031,1054,1071,1073,1074,1083],[85,130,1066,1069,1073],[85,130,1008,1053,1054,1069,1070,1083],[85,130,1047,1053,1054,1066,1067,1068,1073,1074,1075,1083],[85,130,1009,1024,1041,1042,1051,1052,1059,1061,1064,1065,1073,1074,1083],[85,130,1011,1016,1024,1047,1049,1050,1059,1073,1074,1083],[85,130,1010,1011,1012,1052],[85,130,1051,1053,1073],[85,130,1009,1024,1047,1048,1051,1066,1073],[85,130,1009,1049,1050],[85,130,1009,1030,1031,1033,1036,1054,1066,1071,1073,1074,1083,1188],[85,130,1054,1073,1083,1102],[85,130,1031,1054,1071,1073,1074,1083,1101],[85,130,1039,1073],[85,130,1038,1039,1054,1071,1073,1083],[85,130,1029,1031,1037,1038,1054,1073,1083,1084],[85,130,1039,1045,1073,1075,1081,1084],[85,130,1054,1071,1073,1083],[85,130,1036,1066,1072,1074],[85,130,1041,1042,1044,1062,1063],[85,130,1042],[85,130,1024,1043],[85,130,1042,1043],[85,130,1041,1042,1043],[85,130,1042,1064],[85,130,1021,1029,1030,1067,1076,1112,1113,1114,1115,1116,1117,1118,1119,1120,1121,1122,1123,1124,1125,1126,1127,1128,1129,1130,1131,1132,1133,1134,1135,1136,1137,1138,1139,1140],[85,130,1073,1074],[85,130,1059,1071,1083,1188],[85,130,1059,1071],[85,130,1009,1020,1066,1071,1073,1083,1188],[85,130,1066,1073,1074],[85,130,1074,1101],[85,130,1084],[85,130,1030,1073,1074],[85,130,1189],[85,130,142],[85,130,396,398,399,400,428,435,436,438,441,442,448,449,453,454,455,456],[85,130,131,180,182,193,195,196,199,200,442,454,455],[85,130,196,199,200,201,442,454,456],[85,130,183,200,447],[85,130,182],[85,130,182,399,426,428,436,437,440,454],[85,130,400,448],[85,130,182,200,396,400,401,402,428,434,435,438,440,448,454],[85,130,182,392,396,436,448],[85,130,182,395,436,449],[85,130,182,426,427,438],[85,130,182,199,400,438,440],[85,130,200,391,436,438,440,454],[85,130,182,194,196,199,200,391,394,396,399,401,402,422,423,424,425,428,430,435,436,438,440,441,442,448,449,450,451,452,453,455,456],[85,130,199,394,397,398,399,438,440],[85,130,441,448,454,455,456],[85,130,200,394,400,440,448],[85,130,400,438],[85,130,404,438,440],[85,130,416],[85,130,131,193,194,444,445,447,454,456,459],[85,130,192,195,460],[85,130,193,196,445,447,454,455,456,460],[85,130,401,402,411,412,413,414,415,416,417,418,419,420,422,425,429,430,431,432,433,434,444,445,446,447,458,459,460,461,462,463,464,465,466,467,468,469],[85,130,433],[85,130,183,445,447,448],[85,130,182,183,192,200,393,446,448],[85,130,182,448],[85,130,182,394,448,454],[85,130,182,448,453],[85,130,182,413,415,433,438,440,448],[85,130,182,194,448,454],[85,130,182,199,200,399,410,415,440,448],[85,130,192],[85,130,182,199,396,401,402,415,417,418,431,432,434,436,438,448,454],[85,130,200,394,402,417,419,420,422,431,433,445,446,448,454],[85,130,182,200,415,433],[85,130,436],[85,130,182,436,448,449,465],[85,130,182,395,396,436,466],[85,130,182,426,428,438,448],[85,130,182,199,200,394,399,400,411,414,416,433,438,440,448],[85,130,182,399,412,415,448],[85,130,392,396,422,433],[85,130,182,466],[85,130,182,200,421,436,448,454],[85,130,182,194,196,396,399,402,414,422,423,424,425,429,430,433,436,445,446,448,454,455,456],[85,130,422],[85,130,182,194,403,414,442,444,446,454,455,456],[85,130,182,200,445],[85,130,182,200,443,445,446,447,456],[85,130,448],[85,130,182,400,413,441,442,448],[85,130,392],[85,130,192,193,194,195,196,200,392,393,394,395,397,404,405,421,423,424,426,439,440,450,451,471,472,473,476,477,478,479,480,481,482,483,484,485,486,487],[85,130,472],[85,130,190,192,193,194,456],[85,130,399,436],[85,130,404],[85,130,475],[85,130,194],[85,130,198,199],[85,130,182,438],[85,130,399,440],[85,130,399,410],[85,130,200,396,449],[85,130,404,410],[85,130,408],[85,130,195,405,456],[85,130,410,436,438,440,454],[85,130,181,399,438,439],[85,130,200,391,424,448],[85,130,400,438,440],[85,130,182,190,457,470,488,489,493],[85,130,494,514],[85,130,405,440],[85,130,403,406,407,408,409,515],[85,130,440],[85,130,194,447,456,472,507,508,509],[85,130,456,508,509,510],[85,130,508,509,510],[85,130,195,472],[85,130,452,508,509,510,511,512,513],[85,130,195,456,472,473,482,508],[85,130,162,199,438,454],[85,130,199],[85,130,199,201,403,490,491,492],[85,130,197],[85,130,390],[85,130,131,162,180,181,182,183,190],[85,130,495,496,497,498,499,500],[85,130,495,496],[85,130,495],[85,130,501],[85,130,157,501],[85,130,501,503],[85,130,131,501],[85,130,501,502,503,504,505,506],[85,130,182,183,184],[85,130,184,185,186,187],[85,130,184],[85,130,184,185,186,187,188,189],[85,130,759,782],[85,130,759,771,773,774,777,778,779,780],[85,130,759,772,773],[85,130,759,773],[85,130,773,776],[85,130,759,773,782,802,803,804],[85,130,806],[85,130,759,773,802],[85,130,759,773,809],[85,130,773,802,811],[85,130,759,773,802,815,816,817,818,819,820,821,822,823],[85,130,759,773,826,827],[85,130,759,772,775],[85,130,758],[85,130,759,773,802,836,837,838,839,840,841,842,843],[85,130,759,773,838,839,844],[85,130,759,802],[85,130,773,835],[85,130,759,773,802,833,837],[85,130,759,773,812],[85,130,759,773,847,848],[85,130,759,847],[85,130,759,773,851],[85,130,759,773,851,852,853,854,855,856,857,858,859,860,861,862],[85,130,759,773,852,855,856],[85,130,759,773,852],[85,130,759,773,829],[85,130,758,759,773],[85,130,771,774,776,777,778,779,780,781,782,803,804,805,807,808,809,810,812,813,814,815,816,817,818,819,820,821,822,823,824,825,826,827,828,829,830,838,839,840,841,842,843,844,845,846,847,848,849,850,851,853,854,857,858,859,861,862,863,866,869,870,875,877,878,879,880,881,882,883,884,885,886,887,888,889,890,891,892,893,894,895,896,899,900,901,902,904,905,906,907,908,909,910,911,912,913,916,918,919,922,923,924,925,926,927,928,929,930,931,932,933,934],[85,130,759,773,855,864,865],[85,130,772,773,868,869],[85,130,759,773,802,867],[85,130,759,773,874,875,877,878,879,880],[85,130,759,773,876],[85,130,772,773,868,882,883],[85,130,759,772,773,885,886,891,892,893],[85,130,759,773,776],[85,130,759,890],[85,130,759,773,839,840,841,842,843,844],[85,130,773,867],[85,130,759,773,874,887,888,889],[85,130,759,772,773,775],[85,130,759,773,802,898],[85,130,759,802,899],[85,130,759,773,901],[85,130,773,903,904],[85,130,773,802,903],[85,130,759,773,802,898,906,907],[85,130,759,773,811,838,844],[85,130,915],[85,130,759,773,802,917],[85,130,758,759,773,865,919,922,923],[85,130,758,773,865,921],[85,130,759,773,884,921],[85,130,759,865],[85,130,759,772,773,802,928,929],[85,130,759,773,782],[85,130,759,812],[85,130,759,773,813,932],[85,130,758,801],[85,130,802,829],[85,130,945],[85,130,759,941],[85,130,759,941,942,943,944],[85,130,527,759,1218],[85,130,527,759,762],[85,130,527,714,752,762,1217,1219],[85,130,759,1228],[85,130,1228,1229],[85,130,735],[85,130,529,530,531,532,533,534,535,536,537,538,539,540,541,542,543,544,547,548,549,550,551,552,553,554,555,556,557,558,563,564,565,566,567,571,572,573,574,575,576,577,578,579,580,582,583,585,586,587,588,589,590,591,592,593,594,595,596,597,598,599,600,601,602,603,604,605,606,607,608,609,610,611,612,613,614,615,616,617,618,619,620,621,622,623,624,625,626,627,628,629,630,631,632,633,634,635,636,637,638,639,640,641,642,643,644,645,646,647,648,649,650,651,652,653,654,655,656,657,658,659,660,661,662,663,664,665,666,667,668,669,670,671,672,673,674,675,676,677,678,679,680,681,682,683,684,685,686,687,688,689,690,691,692],[85,130,534,544,563,570,663],[85,130,553],[85,130,550,553,554,556,557,570,597,625,626],[85,130,544,557,570,594],[85,130,544,570],[85,130,635],[85,130,570,667],[85,130,544,570,668],[85,130,570,668],[85,130,571,619],[85,130,543],[85,130,537,553,570,575,581,620],[85,130,619],[85,130,551,566,570,667],[85,130,544,570,667,671],[85,130,570,667,671],[85,130,534],[85,130,563],[85,130,633],[85,130,529,534,553,570,602],[85,130,553,570],[85,130,570,595,598,645,684],[85,130,556],[85,130,550,553,554,555,570],[85,130,539],[85,130,651],[85,130,540],[85,130,650],[85,130,547],[85,130,537],[85,130,542],[85,130,601],[85,130,602],[85,130,625,658],[85,130,570,594],[85,130,543,544],[85,130,545,546,559,560,561,562,568,569],[85,130,547,551,560],[85,130,542,544,550,560],[85,130,534,539,540,543,544,553,560,561,563,566,567,568],[85,130,546,550,552,559],[85,130,544,550,556,558],[85,130,529,542,547],[85,130,548,550,570],[85,130,529,542,543,550,570],[85,130,543,544,567,570],[85,130,531],[85,130,530,531,537,542,544,547,550,570,602],[85,130,570,667,671,675],[85,130,570,667,671,673],[85,130,533],[85,130,557],[85,130,564,643],[85,130,529],[85,130,544,564,565,566,570,575,581,582,583,584,585],[85,130,563,564,565],[85,130,553,594],[85,130,541,572],[85,130,548,549],[85,130,542,544,553,570,585,595,597,598,599],[85,130,566],[85,130,531,598],[85,130,542,570],[85,130,566,570,603],[85,130,570,668,677],[85,130,537,544,547,556,570,594],[85,130,533,542,544,563,570,595],[85,130,570],[85,130,543,567,570],[85,130,543,567,570,571],[85,130,543,567,570,588],[85,130,570,667,671,680],[85,130,563,570],[85,130,544,563,570,595,599,615],[85,130,563,570,571],[85,130,544,570,602],[85,130,544,547,570,585,593,595,599,613],[85,130,539,544,563,570,571],[85,130,542,544,570],[85,130,542,544,563,570],[85,130,570,581],[85,130,538,570],[85,130,551,554,555,570],[85,130,540,563],[85,130,550,551],[85,130,570,624,627],[85,130,530,640],[85,130,550,558,570],[85,130,550,570,594],[85,130,544,567,655],[85,130,533,542],[85,130,563,571],[85,92,95,98,99,130,173],[85,95,130,162,173],[85,95,99,130,173],[85,89,130],[85,93,130],[85,91,92,95,130,173],[85,130,150,170],[85,130,180],[85,89,130,180],[85,91,95,130,150,173],[85,86,87,88,90,94,130,142,162,173],[85,95,103,130],[85,87,93,130],[85,95,119,120,130],[85,87,90,95,130,165,173,180],[85,95,130],[85,91,95,130,173],[85,86,130],[85,89,90,91,93,94,95,96,97,99,100,101,102,103,104,105,106,107,108,109,110,111,112,113,114,115,116,117,118,120,121,122,123,124,130],[85,95,112,115,130,138],[85,95,103,104,105,130],[85,93,95,104,106,130],[85,94,130],[85,87,89,95,130],[85,95,99,104,106,130],[85,99,130],[85,93,95,98,130,173],[85,87,91,95,103,130],[85,95,112,130],[85,89,95,119,130,165,178,180],[85,130,759,762,946,1196,1197,1199,1200,1202,1204,1206,1208,1210,1211],[85,130,143,152,157,520,525,526,717,718,719,724,726,729,730],[85,130,759,935,1191,1203],[85,130,527,752,759,766],[85,130,759,767,1200,1216,1220],[85,130,527,766],[85,130,759,935,946],[85,130,527,752,768,769],[85,130,759,770,946,1201,1220,1222],[85,130,527,769],[85,130,527,762,768],[85,130,759,768],[85,130,523,527,752,937,938],[85,130,523,527,759,762,937,938,939,1220,1224],[85,130,527,938],[85,130,527,762,937],[85,130,759,935,936],[85,130,759,935],[85,130,527,752,949],[85,130,759,946,948,950,1220,1226],[85,130,527,949],[85,130,527,762,948],[85,130,759,935,940,947],[85,130,526,527,752,759,762,951],[85,130,759,946,952,953,1195,1230],[85,130,527,951],[85,130,742,759,935,940,946,947,1194],[85,130,759,768,1201],[85,130,759,1206],[85,130,759,946,1200,1207],[85,130,525,759,946,948],[85,130,525,759,946,1198],[85,130,759,946,1207],[85,130,759,946,1006,1191,1195],[85,130,759,1194,1205],[85,130,527,759,762,763],[85,130,522,523,525,526],[85,130,526],[85,130,143,520],[85,130,520,526],[85,130,143,520,526],[85,130,149,520],[85,130,520,526,720,721,722,723],[85,130,149,520,526,720,721,722,723,727,728],[85,130,143,526],[85,130,152,520,526,720,721,722,723,725],[85,130,528],[85,130,143],[85,130,527,964],[85,130,697,961,962,963,964,965,966,967],[85,130,524,527],[85,130,527],[85,130,521,523,526,527],[85,130,523,526,527,969],[85,130,523,526,527,694,969,971],[85,130,523,526,527,694],[85,130,697,969,970,971,972,973],[85,130,702,969,970,971,972,973],[85,130,527,969],[85,130,527,694],[85,130,714,969,970,971,972,973],[85,130,162,522,523,524,526,527],[85,130,522,523,524,956],[85,130,522,697,956],[85,130,522,702,956],[85,130,522,523,526,527,957],[85,130,522,714,956],[85,130,521,523,524,526,527],[85,130,162,526,527,695,957,978,979,980],[85,130,527,979,981],[85,130,695,697,977,979,980,981],[85,130,526,527,695],[85,130,523,526,527,695],[85,130,523,526,527,693,694],[85,130,527,983,984],[85,130,526,527,983,984],[85,130,527,984],[85,130,702,983,984,985,986,987],[85,130,526,527,983],[85,130,526,527,696],[85,130,522,523,524,526,527,695],[85,130,517,518,519,522,523,524,525,527],[85,130,521,523,527,704,752,992],[85,130,521,523,527,704,992],[85,130,521,697,989,990,992,993],[85,130,704],[85,130,191,519,526,703],[85,130,527,992],[85,130,521,523,527,991],[85,130,523],[85,130,517,518,519,522,524,527],[85,130,1003],[85,130,516,523,526,527,697,1003,1004],[85,130,517,526,527,696],[85,130,698,700],[85,130,150,526,527,697,700],[85,130,150,526,527,697,706],[85,130,150,526,527,697,715],[85,130,143,152,162,191,519,525,526],[85,130,191,515,519,526],[85,130,131,135,143,145,150,152,173,191,515,519,525,526,698,711,717,718,734,744],[85,130,143,150,152,162,191,516,519,526],[85,130,150,162,526,699],[85,130,143,525,703,717,718,735,740,741,743],[85,130,191,515,516,519,526],[85,130,150,526,699],[85,130,162,191,516,519,526],[85,130,523,527,702,704],[85,130,518,526,527,696],[85,130,526,698,706],[85,130,145,516,517,523,526,527,697,710,752],[85,130,710,712],[85,130,143,145,152,709],[85,130,157,525,717,745],[85,130,516,520,522,524,526,527],[85,130,152,525,526],[85,130,525,742],[85,130,143,152,525,718,742],[85,130,519,526,527,696],[85,130,526,698,715],[85,130,202,203,204,205,206,207,208,209,210,211,212,213,214,215,216,218,220,221,222,223,224,225,226,227,228,229,230,231,232,233,234,235,236,237,238,239,240,241,242,243,244,245,246,247,248,249,250,251,252,253,254,255,256,258,259,260,261,262,263,264,265,266,267,268,269,271,272,273,274,275,277,278,279,280,281,282,283,284,285,286,287,288,289,290,291,292,293,294,295,296,297,298,299,300,301,302,303,304,305,306,307,308,309,310,311,312,313,314,315,316,317,318,319,321,322,323,325,334,336,337,338,339,340,341,343,344,346,348,349,350,351,352,353,354,355,356,357,358,359,360,361,362,364,365,366,367,368,369,370,371,372,373,374,375,376,377,378,379,380,381,382,383,384,385,386,387,388,389],[85,130,247],[85,130,203,206],[85,130,205],[85,130,205,206],[85,130,202,203,204,206],[85,130,203,205,206,363],[85,130,206],[85,130,202,205,247],[85,130,205,206,363],[85,130,205,371],[85,130,203,205,206],[85,130,215],[85,130,238],[85,130,259],[85,130,205,206,247],[85,130,206,254],[85,130,205,206,247,265],[85,130,205,206,265],[85,130,206,306],[85,130,206,247],[85,130,202,206,324],[85,130,202,206,325],[85,130,347],[85,130,331,333],[85,130,342],[85,130,331],[85,130,202,206,324,331,332],[85,130,324,325,333],[85,130,345],[85,130,202,206,331,332,333],[85,130,204,205,206],[85,130,202,206],[85,130,203,205,325,326,327,328],[85,130,247,325,326,327,328],[85,130,325,327],[85,130,205,326,327,329,330,334],[85,130,202,205],[85,130,206,349],[85,130,207,208,209,210,211,212,213,214,215,216,217,218,219,220,221,222,223,224,225,226,227,228,229,230,231,232,233,234,235,236,237,238,239,240,241,242,243,244,245,246,248,249,250,251,252,253,255,256,257,258,259,260,261,262,263,264,266,267,268,269,270,271,272,273,274,275,276,277,278,279,280,281,282,283,284,285,286,287,288,289,290,291,292,293,294,295,296,297,298,299,300,301,302,303,304,305,306,307,308,309,310,311,312,313,314,315,316,317,318,319,320,321,322],[85,130,335]],"fileInfos":[{"version":"c430d44666289dae81f30fa7b2edebf186ecc91a2d4c71266ea6ae76388792e1","affectsGlobalScope":true,"impliedFormat":1},{"version":"45b7ab580deca34ae9729e97c13cfd999df04416a79116c3bfb483804f85ded4","impliedFormat":1},{"version":"3facaf05f0c5fc569c5649dd359892c98a85557e3e0c847964caeb67076f4d75","impliedFormat":1},{"version":"e44bb8bbac7f10ecc786703fe0a6a4b952189f908707980ba8f3c8975a760962","impliedFormat":1},{"version":"5e1c4c362065a6b95ff952c0eab010f04dcd2c3494e813b493ecfd4fcb9fc0d8","impliedFormat":1},{"version":"68d73b4a11549f9c0b7d352d10e91e5dca8faa3322bfb77b661839c42b1ddec7","impliedFormat":1},{"version":"5efce4fc3c29ea84e8928f97adec086e3dc876365e0982cc8479a07954a3efd4","impliedFormat":1},{"version":"feecb1be483ed332fad555aff858affd90a48ab19ba7272ee084704eb7167569","impliedFormat":1},{"version":"ee7bad0c15b58988daa84371e0b89d313b762ab83cb5b31b8a2d1162e8eb41c2","impliedFormat":1},{"version":"27bdc30a0e32783366a5abeda841bc22757c1797de8681bbe81fbc735eeb1c10","impliedFormat":1},{"version":"8fd575e12870e9944c7e1d62e1f5a73fcf23dd8d3a321f2a2c74c20d022283fe","impliedFormat":1},{"version":"2ab096661c711e4a81cc464fa1e6feb929a54f5340b46b0a07ac6bbf857471f0","impliedFormat":1},{"version":"080941d9f9ff9307f7e27a83bcd888b7c8270716c39af943532438932ec1d0b9","affectsGlobalScope":true,"impliedFormat":1},{"version":"2e80ee7a49e8ac312cc11b77f1475804bee36b3b2bc896bead8b6e1266befb43","affectsGlobalScope":true,"impliedFormat":1},{"version":"c57796738e7f83dbc4b8e65132f11a377649c00dd3eee333f672b8f0a6bea671","affectsGlobalScope":true,"impliedFormat":1},{"version":"dc2df20b1bcdc8c2d34af4926e2c3ab15ffe1160a63e58b7e09833f616efff44","affectsGlobalScope":true,"impliedFormat":1},{"version":"515d0b7b9bea2e31ea4ec968e9edd2c39d3eebf4a2d5cbd04e88639819ae3b71","affectsGlobalScope":true,"impliedFormat":1},{"version":"0559b1f683ac7505ae451f9a96ce4c3c92bdc71411651ca6ddb0e88baaaad6a3","affectsGlobalScope":true,"impliedFormat":1},{"version":"0dc1e7ceda9b8b9b455c3a2d67b0412feab00bd2f66656cd8850e8831b08b537","affectsGlobalScope":true,"impliedFormat":1},{"version":"ce691fb9e5c64efb9547083e4a34091bcbe5bdb41027e310ebba8f7d96a98671","affectsGlobalScope":true,"impliedFormat":1},{"version":"8d697a2a929a5fcb38b7a65594020fcef05ec1630804a33748829c5ff53640d0","affectsGlobalScope":true,"impliedFormat":1},{"version":"4ff2a353abf8a80ee399af572debb8faab2d33ad38c4b4474cff7f26e7653b8d","affectsGlobalScope":true,"impliedFormat":1},{"version":"fb0f136d372979348d59b3f5020b4cdb81b5504192b1cacff5d1fbba29378aa1","affectsGlobalScope":true,"impliedFormat":1},{"version":"d15bea3d62cbbdb9797079416b8ac375ae99162a7fba5de2c6c505446486ac0a","affectsGlobalScope":true,"impliedFormat":1},{"version":"68d18b664c9d32a7336a70235958b8997ebc1c3b8505f4f1ae2b7e7753b87618","affectsGlobalScope":true,"impliedFormat":1},{"version":"eb3d66c8327153d8fa7dd03f9c58d351107fe824c79e9b56b462935176cdf12a","affectsGlobalScope":true,"impliedFormat":1},{"version":"38f0219c9e23c915ef9790ab1d680440d95419ad264816fa15009a8851e79119","affectsGlobalScope":true,"impliedFormat":1},{"version":"69ab18c3b76cd9b1be3d188eaf8bba06112ebbe2f47f6c322b5105a6fbc45a2e","affectsGlobalScope":true,"impliedFormat":1},{"version":"a680117f487a4d2f30ea46f1b4b7f58bef1480456e18ba53ee85c2746eeca012","affectsGlobalScope":true,"impliedFormat":1},{"version":"2f11ff796926e0832f9ae148008138ad583bd181899ab7dd768a2666700b1893","affectsGlobalScope":true,"impliedFormat":1},{"version":"4de680d5bb41c17f7f68e0419412ca23c98d5749dcaaea1896172f06435891fc","affectsGlobalScope":true,"impliedFormat":1},{"version":"954296b30da6d508a104a3a0b5d96b76495c709785c1d11610908e63481ee667","affectsGlobalScope":true,"impliedFormat":1},{"version":"ac9538681b19688c8eae65811b329d3744af679e0bdfa5d842d0e32524c73e1c","affectsGlobalScope":true,"impliedFormat":1},{"version":"0a969edff4bd52585473d24995c5ef223f6652d6ef46193309b3921d65dd4376","affectsGlobalScope":true,"impliedFormat":1},{"version":"9e9fbd7030c440b33d021da145d3232984c8bb7916f277e8ffd3dc2e3eae2bdb","affectsGlobalScope":true,"impliedFormat":1},{"version":"811ec78f7fefcabbda4bfa93b3eb67d9ae166ef95f9bff989d964061cbf81a0c","affectsGlobalScope":true,"impliedFormat":1},{"version":"717937616a17072082152a2ef351cb51f98802fb4b2fdabd32399843875974ca","affectsGlobalScope":true,"impliedFormat":1},{"version":"d7e7d9b7b50e5f22c915b525acc5a49a7a6584cf8f62d0569e557c5cfc4b2ac2","affectsGlobalScope":true,"impliedFormat":1},{"version":"71c37f4c9543f31dfced6c7840e068c5a5aacb7b89111a4364b1d5276b852557","affectsGlobalScope":true,"impliedFormat":1},{"version":"576711e016cf4f1804676043e6a0a5414252560eb57de9faceee34d79798c850","affectsGlobalScope":true,"impliedFormat":1},{"version":"89c1b1281ba7b8a96efc676b11b264de7a8374c5ea1e6617f11880a13fc56dc6","affectsGlobalScope":true,"impliedFormat":1},{"version":"74f7fa2d027d5b33eb0471c8e82a6c87216223181ec31247c357a3e8e2fddc5b","affectsGlobalScope":true,"impliedFormat":1},{"version":"d6d7ae4d1f1f3772e2a3cde568ed08991a8ae34a080ff1151af28b7f798e22ca","affectsGlobalScope":true,"impliedFormat":1},{"version":"063600664504610fe3e99b717a1223f8b1900087fab0b4cad1496a114744f8df","affectsGlobalScope":true,"impliedFormat":1},{"version":"934019d7e3c81950f9a8426d093458b65d5aff2c7c1511233c0fd5b941e608ab","affectsGlobalScope":true,"impliedFormat":1},{"version":"52ada8e0b6e0482b728070b7639ee42e83a9b1c22d205992756fe020fd9f4a47","affectsGlobalScope":true,"impliedFormat":1},{"version":"3bdefe1bfd4d6dee0e26f928f93ccc128f1b64d5d501ff4a8cf3c6371200e5e6","affectsGlobalScope":true,"impliedFormat":1},{"version":"59fb2c069260b4ba00b5643b907ef5d5341b167e7d1dbf58dfd895658bda2867","affectsGlobalScope":true,"impliedFormat":1},{"version":"639e512c0dfc3fad96a84caad71b8834d66329a1f28dc95e3946c9b58176c73a","affectsGlobalScope":true,"impliedFormat":1},{"version":"368af93f74c9c932edd84c58883e736c9e3d53cec1fe24c0b0ff451f529ceab1","affectsGlobalScope":true,"impliedFormat":1},{"version":"af3dd424cf267428f30ccfc376f47a2c0114546b55c44d8c0f1d57d841e28d74","affectsGlobalScope":true,"impliedFormat":1},{"version":"995c005ab91a498455ea8dfb63aa9f83fa2ea793c3d8aa344be4a1678d06d399","affectsGlobalScope":true,"impliedFormat":1},{"version":"959d36cddf5e7d572a65045b876f2956c973a586da58e5d26cde519184fd9b8a","affectsGlobalScope":true,"impliedFormat":1},{"version":"965f36eae237dd74e6cca203a43e9ca801ce38824ead814728a2807b1910117d","affectsGlobalScope":true,"impliedFormat":1},{"version":"3925a6c820dcb1a06506c90b1577db1fdbf7705d65b62b99dce4be75c637e26b","affectsGlobalScope":true,"impliedFormat":1},{"version":"0a3d63ef2b853447ec4f749d3f368ce642264246e02911fcb1590d8c161b8005","affectsGlobalScope":true,"impliedFormat":1},{"version":"8cdf8847677ac7d20486e54dd3fcf09eda95812ac8ace44b4418da1bbbab6eb8","affectsGlobalScope":true,"impliedFormat":1},{"version":"8444af78980e3b20b49324f4a16ba35024fef3ee069a0eb67616ea6ca821c47a","affectsGlobalScope":true,"impliedFormat":1},{"version":"3287d9d085fbd618c3971944b65b4be57859f5415f495b33a6adc994edd2f004","affectsGlobalScope":true,"impliedFormat":1},{"version":"b4b67b1a91182421f5df999988c690f14d813b9850b40acd06ed44691f6727ad","affectsGlobalScope":true,"impliedFormat":1},{"version":"df83c2a6c73228b625b0beb6669c7ee2a09c914637e2d35170723ad49c0f5cd4","affectsGlobalScope":true,"impliedFormat":1},{"version":"436aaf437562f276ec2ddbee2f2cdedac7664c1e4c1d2c36839ddd582eeb3d0a","affectsGlobalScope":true,"impliedFormat":1},{"version":"8e3c06ea092138bf9fa5e874a1fdbc9d54805d074bee1de31b99a11e2fec239d","affectsGlobalScope":true,"impliedFormat":1},{"version":"87dc0f382502f5bbce5129bdc0aea21e19a3abbc19259e0b43ae038a9fc4e326","affectsGlobalScope":true,"impliedFormat":1},{"version":"b1cb28af0c891c8c96b2d6b7be76bd394fddcfdb4709a20ba05a7c1605eea0f9","affectsGlobalScope":true,"impliedFormat":1},{"version":"2fef54945a13095fdb9b84f705f2b5994597640c46afeb2ce78352fab4cb3279","affectsGlobalScope":true,"impliedFormat":1},{"version":"ac77cb3e8c6d3565793eb90a8373ee8033146315a3dbead3bde8db5eaf5e5ec6","affectsGlobalScope":true,"impliedFormat":1},{"version":"56e4ed5aab5f5920980066a9409bfaf53e6d21d3f8d020c17e4de584d29600ad","affectsGlobalScope":true,"impliedFormat":1},{"version":"4ece9f17b3866cc077099c73f4983bddbcb1dc7ddb943227f1ec070f529dedd1","affectsGlobalScope":true,"impliedFormat":1},{"version":"0a6282c8827e4b9a95f4bf4f5c205673ada31b982f50572d27103df8ceb8013c","affectsGlobalScope":true,"impliedFormat":1},{"version":"1c9319a09485199c1f7b0498f2988d6d2249793ef67edda49d1e584746be9032","affectsGlobalScope":true,"impliedFormat":1},{"version":"e3a2a0cee0f03ffdde24d89660eba2685bfbdeae955a6c67e8c4c9fd28928eeb","affectsGlobalScope":true,"impliedFormat":1},{"version":"811c71eee4aa0ac5f7adf713323a5c41b0cf6c4e17367a34fbce379e12bbf0a4","affectsGlobalScope":true,"impliedFormat":1},{"version":"51ad4c928303041605b4d7ae32e0c1ee387d43a24cd6f1ebf4a2699e1076d4fa","affectsGlobalScope":true,"impliedFormat":1},{"version":"60037901da1a425516449b9a20073aa03386cce92f7a1fd902d7602be3a7c2e9","affectsGlobalScope":true,"impliedFormat":1},{"version":"d4b1d2c51d058fc21ec2629fff7a76249dec2e36e12960ea056e3ef89174080f","affectsGlobalScope":true,"impliedFormat":1},{"version":"22adec94ef7047a6c9d1af3cb96be87a335908bf9ef386ae9fd50eeb37f44c47","affectsGlobalScope":true,"impliedFormat":1},{"version":"4245fee526a7d1754529d19227ecbf3be066ff79ebb6a380d78e41648f2f224d","affectsGlobalScope":true,"impliedFormat":1},{"version":"73f78680d4c08509933daf80947902f6ff41b6230f94dd002ae372620adb0f60","affectsGlobalScope":true,"impliedFormat":1},{"version":"c5239f5c01bcfa9cd32f37c496cf19c61d69d37e48be9de612b541aac915805b","affectsGlobalScope":true,"impliedFormat":1},{"version":"8e7f8264d0fb4c5339605a15daadb037bf238c10b654bb3eee14208f860a32ea","affectsGlobalScope":true,"impliedFormat":1},{"version":"782dec38049b92d4e85c1585fbea5474a219c6984a35b004963b00beb1aab538","affectsGlobalScope":true,"impliedFormat":1},{"version":"d153a11543fd884b596587ccd97aebbeed950b26933ee000f94009f1ab142848","affectsGlobalScope":true,"impliedFormat":1},{"version":"c0671b50bb99cc7ad46e9c68fa0e7f15ba4bc898b59c31a17ea4611fab5095da","affectsGlobalScope":true,"impliedFormat":1},{"version":"d802f0e6b5188646d307f070d83512e8eb94651858de8a82d1e47f60fb6da4e2","affectsGlobalScope":true,"impliedFormat":1},{"version":"cdcf9ea426ad970f96ac930cd176d5c69c6c24eebd9fc580e1572d6c6a88f62c","impliedFormat":1},{"version":"23cd712e2ce083d68afe69224587438e5914b457b8acf87073c22494d706a3d0","impliedFormat":1},{"version":"487b694c3de27ddf4ad107d4007ad304d29effccf9800c8ae23c2093638d906a","impliedFormat":1},{"version":"e525f9e67f5ddba7b5548430211cae2479070b70ef1fd93550c96c10529457bd","impliedFormat":1},{"version":"ccf4552357ce3c159ef75f0f0114e80401702228f1898bdc9402214c9499e8c0","impliedFormat":1},{"version":"c6fd2c5a395f2432786c9cb8deb870b9b0e8ff7e22c029954fabdd692bff6195","impliedFormat":1},{"version":"68834d631c8838c715f225509cfc3927913b9cc7a4870460b5b60c8dbdb99baf","impliedFormat":1},{"version":"4bc0794175abedf989547e628949888c1085b1efcd93fc482bccd77ee27f8b7c","impliedFormat":1},{"version":"3c8e93af4d6ce21eb4c8d005ad6dc02e7b5e6781f429d52a35290210f495a674","impliedFormat":1},{"version":"2c9875466123715464539bfd69bcaccb8ff6f3e217809428e0d7bd6323416d01","impliedFormat":1},{"version":"ea6bc8de8b59f90a7a3960005fd01988f98fd0784e14bc6922dde2e93305ec7d","impliedFormat":1},{"version":"36107995674b29284a115e21a0618c4c2751b32a8766dd4cb3ba740308b16d59","impliedFormat":1},{"version":"914a0ae30d96d71915fc519ccb4efbf2b62c0ddfb3a3fc6129151076bc01dc60","impliedFormat":1},{"version":"33e981bf6376e939f99bd7f89abec757c64897d33c005036b9a10d9587d80187","impliedFormat":1},{"version":"6c8e442ba33b07892169a14f7757321e49ab0f1032d676d321a1fdab8a67d40c","impliedFormat":1},{"version":"b41767d372275c154c7ea6c9d5449d9a741b8ce080f640155cc88ba1763e35b3","impliedFormat":1},{"version":"1cd673d367293fc5cb31cd7bf03d598eb368e4f31f39cf2b908abbaf120ab85a","impliedFormat":1},{"version":"af13e99445f37022c730bfcafcdc1761e9382ce1ea02afb678e3130b01ce5676","impliedFormat":1},{"version":"3825bf209f1662dfd039010a27747b73d0ef379f79970b1d05601ec8e8a4249f","impliedFormat":1},{"version":"0b6e25234b4eec6ed96ab138d96eb70b135690d7dd01f3dd8a8ab291c35a683a","impliedFormat":1},{"version":"9666f2f84b985b62400d2e5ab0adae9ff44de9b2a34803c2c5bd3c8325b17dc0","impliedFormat":1},{"version":"da52342062e70c77213e45107921100ba9f9b3a30dd019444cf349e5fb3470c4","impliedFormat":1},{"version":"e9ace91946385d29192766bf783b8460c7dbcbfc63284aa3c9cae6de5155c8bc","impliedFormat":1},{"version":"40b463c6766ca1b689bfcc46d26b5e295954f32ad43e37ee6953c0a677e4ae2b","impliedFormat":1},{"version":"249b9cab7f5d628b71308c7d9bb0a808b50b091e640ba3ed6e2d0516f4a8d91d","impliedFormat":1},{"version":"1e30c045732e7db8f7a82cf90b516ebe693d2f499ce2250a977ec0d12e44a529","impliedFormat":1},{"version":"84b736594d8760f43400202859cda55607663090a43445a078963031d47e25e7","impliedFormat":1},{"version":"499e5b055a5aba1e1998f7311a6c441a369831c70905cc565ceac93c28083d53","impliedFormat":1},{"version":"54c3e2371e3d016469ad959697fd257e5621e16296fa67082c2575d0bf8eced0","impliedFormat":1},{"version":"beb8233b2c220cfa0feea31fbe9218d89fa02faa81ef744be8dce5acb89bb1fd","impliedFormat":1},{"version":"78b29846349d4dfdd88bd6650cc5d2baaa67f2e89dc8a80c8e26ef7995386583","impliedFormat":1},{"version":"5d0375ca7310efb77e3ef18d068d53784faf62705e0ad04569597ae0e755c401","impliedFormat":1},{"version":"59af37caec41ecf7b2e76059c9672a49e682c1a2aa6f9d7dc78878f53aa284d6","impliedFormat":1},{"version":"addf417b9eb3f938fddf8d81e96393a165e4be0d4a8b6402292f9c634b1cb00d","impliedFormat":1},{"version":"e38d4fdf79e1eadd92ed7844c331dbaa40f29f21541cfee4e1acff4db09cda33","impliedFormat":1},{"version":"8bd86b8e8f6a6aa6c49b71e14c4ffe1211a0e97c80f08d2c8cc98838006e4b88","impliedFormat":1},{"version":"7c10a32ae6f3962672e6869ee2c794e8055d8225ef35c91c0228e354b4e5d2d3","impliedFormat":1},{"version":"2e85db9e6fd73cfa3d7f28e0ab6b55417ea18931423bd47b409a96e4a169e8e6","impliedFormat":1},{"version":"c46e079fe54c76f95c67fb89081b3e399da2c7d109e7dca8e4b58d83e332e605","impliedFormat":1},{"version":"99f569b42ea7e7c5fe404b2848c0893f3e1a56e0547c1cd0f74d5dbb9a9de27e","impliedFormat":1},{"version":"f4b4faedc57701ae727d78ba4a83e466a6e3bdcbe40efbf913b17e860642897c","affectsGlobalScope":true,"impliedFormat":1},{"version":"bbcfd9cd76d92c3ee70475270156755346c9086391e1b9cb643d072e0cf576b8","impliedFormat":1},{"version":"7394959e5a741b185456e1ef5d64599c36c60a323207450991e7a42e08911419","impliedFormat":1},{"version":"72c1f5e0a28e473026074817561d1bc9647909cf253c8d56c41d1df8d95b85f7","impliedFormat":1},{"version":"003ec918ec442c3a4db2c36dc0c9c766977ea1c8bcc1ca7c2085868727c3d3f6","affectsGlobalScope":true,"impliedFormat":1},{"version":"a6310806c6aa3154773976dd083a15659d294700d9ad8f6b8a2e10c3dc461ff1","impliedFormat":1},{"version":"c4e8e8031808b158cfb5ac5c4b38d4a26659aec4b57b6a7e2ba0a141439c208c","impliedFormat":1},{"version":"2c91d8366ff2506296191c26fd97cc1990bab3ee22576275d28b654a21261a44","affectsGlobalScope":true,"impliedFormat":1},{"version":"5524481e56c48ff486f42926778c0a3cce1cc85dc46683b92b1271865bcf015a","impliedFormat":1},{"version":"db39d9a16e4ddcd8a8f2b7b3292b362cc5392f92ad7ccd76f00bccf6838ac7de","affectsGlobalScope":true,"impliedFormat":1},{"version":"289e9894a4668c61b5ffed09e196c1f0c2f87ca81efcaebdf6357cfb198dac14","impliedFormat":1},{"version":"25a1105595236f09f5bce42398be9f9ededc8d538c258579ab662d509aa3b98e","impliedFormat":1},{"version":"5078cd62dbdf91ae8b1dc90b1384dec71a9c0932d62bdafb1a811d2a8e26bef2","impliedFormat":1},{"version":"a2e2bbde231b65c53c764c12313897ffdfb6c49183dd31823ee2405f2f7b5378","impliedFormat":1},{"version":"ad1cc0ed328f3f708771272021be61ab146b32ecf2b78f3224959ff1e2cd2a5c","impliedFormat":1},{"version":"71450bbc2d82821d24ca05699a533e72758964e9852062c53b30f31c36978ab8","affectsGlobalScope":true,"impliedFormat":1},{"version":"62f572306e0b173cc5dfc4c583471151f16ef3779cf27ab96922c92ec82a3bc8","affectsGlobalScope":true,"impliedFormat":1},{"version":"622b67a408a881e15ab38043547563b9d29ca4b46f5b7a7e4a4fc3123d25d19f","impliedFormat":1},{"version":"2617f1d06b32c7b4dfd0a5c8bc7b5de69368ec56788c90f3d7f3e3d2f39f0253","impliedFormat":1},{"version":"bd8b644c5861b94926687618ec2c9e60ad054d334d6b7eb4517f23f53cb11f91","impliedFormat":1},{"version":"bcbabfaca3f6b8a76cb2739e57710daf70ab5c9479ab70f5351c9b4932abf6bd","impliedFormat":1},{"version":"77fced47f495f4ff29bb49c52c605c5e73cd9b47d50080133783032769a9d8a6","impliedFormat":1},{"version":"966dd0793b220e22344c944e0f15afafdc9b0c9201b6444ea0197cd176b96893","impliedFormat":1},{"version":"c54f0b30a787b3df16280f4675bd3d9d17bf983ae3cd40087409476bc50b922d","affectsGlobalScope":true,"impliedFormat":1},{"version":"0f5cda0282e1d18198e2887387eb2f026372ebc4e11c4e4516fef8a19ee4d514","impliedFormat":1},{"version":"e99b0e71f07128fc32583e88ccd509a1aaa9524c290efb2f48c22f9bf8ba83b1","impliedFormat":1},{"version":"76957a6d92b94b9e2852cf527fea32ad2dc0ef50f67fe2b14bd027c9ceef2d86","impliedFormat":1},{"version":"5e9f8c1e042b0f598a9be018fc8c3cb670fe579e9f2e18e3388b63327544fe16","affectsGlobalScope":true,"impliedFormat":1},{"version":"a8a99a5e6ed33c4a951b67cc1fd5b64fd6ad719f5747845c165ca12f6c21ba16","affectsGlobalScope":true,"impliedFormat":1},{"version":"a58a15da4c5ba3df60c910a043281256fa52d36a0fcdef9b9100c646282e88dd","impliedFormat":1},{"version":"b36beffbf8acdc3ebc58c8bb4b75574b31a2169869c70fc03f82895b93950a12","impliedFormat":1},{"version":"de263f0089aefbfd73c89562fb7254a7468b1f33b61839aafc3f035d60766cb4","impliedFormat":1},{"version":"70b57b5529051497e9f6482b76d91c0dcbb103d9ead8a0549f5bab8f65e5d031","impliedFormat":1},{"version":"8c81fd4a110490c43d7c578e8c6f69b3af01717189196899a6a44f93daa57a3a","impliedFormat":1},{"version":"1013eb2e2547ad8c100aca52ef9df8c3f209edee32bb387121bb3227f7c00088","impliedFormat":1},{"version":"e07c573ac1971ea89e2c56ff5fd096f6f7bba2e6dbcd5681d39257c8d954d4a8","impliedFormat":1},{"version":"363eedb495912790e867da6ff96e81bf792c8cfe386321e8163b71823a35719a","impliedFormat":1},{"version":"37ba7b45141a45ce6e80e66f2a96c8a5ab1bcef0fc2d0f56bb58df96ec67e972","impliedFormat":1},{"version":"125d792ec6c0c0f657d758055c494301cc5fdb327d9d9d5960b3f129aff76093","impliedFormat":1},{"version":"dba28a419aec76ed864ef43e5f577a5c99a010c32e5949fe4e17a4d57c58dd11","affectsGlobalScope":true,"impliedFormat":1},{"version":"ea713aa14a670b1ea0fbaaca4fd204e645f71ca7653a834a8ec07ee889c45de6","impliedFormat":1},{"version":"07199a85560f473f37363d8f1300fac361cda2e954caf8a40221f83a6bfa7ade","impliedFormat":1},{"version":"9705cd157ffbb91c5cab48bdd2de5a437a372e63f870f8a8472e72ff634d47c1","affectsGlobalScope":true,"impliedFormat":1},{"version":"ae86f30d5d10e4f75ce8dcb6e1bd3a12ecec3d071a21e8f462c5c85c678efb41","impliedFormat":1},{"version":"982efeb2573605d4e6d5df4dc7e40846bda8b9e678e058fc99522ab6165c479e","impliedFormat":1},{"version":"e03460fe72b259f6d25ad029f085e4bedc3f90477da4401d8fbc1efa9793230e","impliedFormat":1},{"version":"4286a3a6619514fca656089aee160bb6f2e77f4dd53dc5a96b26a0b4fc778055","impliedFormat":1},{"version":"c9231cf03fd7e8cfd78307eecbd24ff3f0fa55d0f6d1108c4003c124d168adc4","affectsGlobalScope":true,"impliedFormat":1},{"version":"2d5d50cd0667d9710d4d2f6e077cc4e0f9dc75e106cccaea59999b36873c5a0d","affectsGlobalScope":true,"impliedFormat":1},{"version":"784490137935e1e38c49b9289110e74a1622baf8a8907888dcbe9e476d7c5e44","impliedFormat":1},{"version":"42180b657831d1b8fead051698618b31da623fb71ff37f002cb9d932cfa775f1","impliedFormat":1},{"version":"4f98d6fb4fe7cbeaa04635c6eaa119d966285d4d39f0eb55b2654187b0b27446","impliedFormat":1},{"version":"f8529fe0645fd9af7441191a4961497cc7638f75a777a56248eac6a079bb275d","affectsGlobalScope":true,"impliedFormat":1},{"version":"4445f6ce6289c5b2220398138da23752fd84152c5c95bb8b58dedefc1758c036","impliedFormat":1},{"version":"a51f786b9f3c297668f8f322a6c58f85d84948ef69ade32069d5d63ec917221c","impliedFormat":1},{"version":"f21ce049835dad382b22691fb6b34076d0717307d46d92320893765be010cd56","impliedFormat":1},{"version":"ab189eb5d2f2bd7434f174b6d0e955ba75e7d1758d343a74932a96f19e04b510","impliedFormat":1},{"version":"ceb14714d9447ad60d32aaabd14ab532cf925d39ba1630795dfe3e9f74bc88a6","impliedFormat":1},{"version":"282bde3263fe03c8cd5ac013ae0b447a8a15a7d3f0b2488f3a212d14384e480f","impliedFormat":1},{"version":"213805012624f870635688113e692773d20b167717662e5b6e481945d4add36d","impliedFormat":1},{"version":"ab86380ba77855c05b584c881ad115c4b8886f7173e68480e0de4ef11d854cf3","impliedFormat":1},{"version":"665f83fc3e9992c7a5e15a470e4b9e10e8b588c35593b0058c8d1a9eca487c56","impliedFormat":1},{"version":"158b9645b5b124b8993dab9815a06df7b6e31d874e989603a26a76608ab764cf","impliedFormat":1},{"version":"dd36b144e0e70b4e38f588913af663ed959b10b5cf80952a4beb22a10255bf08","impliedFormat":1},{"version":"d064b43717b5b5dfca0d6cd738022ab377c90e45f05edbcd5a0c8753e6627d88","impliedFormat":1},{"version":"5c443fbbfcd5c0085974c10c9f4dd454b92f183b1b00a5ef447ac2ebc90f9704","impliedFormat":1},{"version":"66e24869ef897fb27f3ec23ea3cf11f14aaaf91fb8c3659629df10e398dd7e29","impliedFormat":99},{"version":"2ce2ca1f7c7a9f015db841d47c6f21c972cea76e99831f11a61a6ce1b0f5f16f","impliedFormat":99},{"version":"4c9f30805ce0df33a43c9c808bb944e6e7465eff2b12702f5927a82c884cc2c1","impliedFormat":99},{"version":"3364ad5f99ec377a531ba9b3b0d593421ee667a7b6c230bfd5ccd39a4fd86502","impliedFormat":99},{"version":"d9e68cab5f4764ebee80c813b3250d601b8da57930bf3942424569ace3e94d31","impliedFormat":99},{"version":"980d84ab65a61d1979a22e5cd3322672e75fb148392b6903d08ccef59bbf530c","impliedFormat":1},{"version":"c5912556b159da556c53c353183ffddadaeaab1c9d63aef12e525ae6c5bf270b","impliedFormat":99},{"version":"8f17661a6876cfb9db909c7df9b373e31070f6ee8b30294855a951aadf0345a0","affectsGlobalScope":true,"impliedFormat":99},{"version":"5d96d95bfd651462604fe8e134911618aaa252c77baf50f852aacd00f925cd72","impliedFormat":99},{"version":"4fb848207d794f656b267f0dd6273a65e664cbfc752059d3f32c3ce73f005b52","impliedFormat":99},{"version":"073ca26c96184db9941b5ec0ddea6981c9b816156d9095747809e524fdd90e35","impliedFormat":1},{"version":"e41d17a2ec23306d953cda34e573ed62954ca6ea9b8c8b74e013d07a6886ce47","impliedFormat":1},{"version":"241bd4add06f06f0699dcd58f3b334718d85e3045d9e9d4fa556f11f4d1569c1","impliedFormat":1},{"version":"2ae3787e1498b20aad1b9c2ee9ea517ec30e89b70d242d8e3e52d1e091039695","impliedFormat":1},{"version":"c7c72c4cffb1bc83617eefed71ed68cc89df73cab9e19507ccdecb3e72b4967e","affectsGlobalScope":true,"impliedFormat":1},{"version":"b8bff8a60af0173430b18d9c3e5c443eaa3c515617210c0c7b3d2e1743c19ecb","impliedFormat":1},{"version":"38b38db08e7121828294dec10957a7a9ff263e33e2a904b346516d4a4acca482","impliedFormat":1},{"version":"a76ebdf2579e68e4cfe618269c47e5a12a4e045c2805ed7f7ab37af8daa6b091","impliedFormat":1},{"version":"8a2aaea564939c22be05d665cc955996721bad6d43148f8fa21ae8f64afecd37","impliedFormat":1},{"version":"e59d36b7b6e8ba2dd36d032a5f5c279d2460968c8b4e691ca384f118fb09b52a","impliedFormat":1},{"version":"e96885c0684c9042ec72a9a43ef977f6b4b4a2728f4b9e737edcbaa0c74e5bf6","impliedFormat":1},{"version":"95950a187596e206d32d5d9c7b932901088c65ed8f9040e614aa8e321e0225ef","impliedFormat":1},{"version":"89e061244da3fc21b7330f4bd32f47c1813dd4d7f1dc3d0883d88943f035b993","impliedFormat":1},{"version":"e46558c2e04d06207b080138678020448e7fc201f3d69c2601b0d1456105f29a","impliedFormat":1},{"version":"71549375db52b1163411dba383b5f4618bdf35dc57fa327a1c7d135cf9bf67d1","impliedFormat":1},{"version":"7e6b2d61d6215a4e82ea75bc31a80ebb8ad0c2b37a60c10c70dd671e8d9d6d5d","impliedFormat":1},{"version":"78bea05df2896083cca28ed75784dde46d4b194984e8fc559123b56873580a23","impliedFormat":1},{"version":"5dd04ced37b7ea09f29d277db11f160df7fd73ba8b9dba86cb25552e0653a637","impliedFormat":1},{"version":"f74b81712e06605677ae1f061600201c425430151f95b5ef4d04387ad7617e6a","impliedFormat":1},{"version":"9a72847fcf4ac937e352d40810f7b7aec7422d9178451148296cf1aa19467620","impliedFormat":1},{"version":"3ae18f60e0b96fa1e025059b7d25b3247ba4dcb5f4372f6d6e67ce2adac74eac","impliedFormat":1},{"version":"2b9260f44a2e071450ae82c110f5dc8f330c9e5c3e85567ed97248330f2bf639","impliedFormat":1},{"version":"4f196e13684186bda6f5115fc4677a87cf84a0c9c4fc17b8f51e0984f3697b6d","impliedFormat":1},{"version":"61419f2c5822b28c1ea483258437c1faab87d00c6f84481aa22afb3380d8e9a4","impliedFormat":1},{"version":"64479aee03812264e421c0bf5104a953ca7b02740ba80090aead1330d0effe91","impliedFormat":1},{"version":"0521108c9f8ddb17654a0a54dae6ba9667c99eddccfd6af5748113e022d1c37a","impliedFormat":1},{"version":"c5570e504be103e255d80c60b56c367bf45d502ca52ee35c55dec882f6563b5c","impliedFormat":1},{"version":"ee764e6e9a7f2b987cc1a2c0a9afd7a8f4d5ebc4fdb66ad557a7f14a8c2bd320","impliedFormat":1},{"version":"0520b5093712c10c6ef23b5fea2f833bf5481771977112500045e5ea7e8e2b69","impliedFormat":1},{"version":"5c3cf26654cf762ac4d7fd7b83f09acfe08eef88d2d6983b9a5a423cb4004ca3","impliedFormat":1},{"version":"e60fa19cf7911c1623b891155d7eb6b7e844e9afdf5738e3b46f3b687730a2bd","impliedFormat":1},{"version":"b1fd72ff2bb0ba91bb588f3e5329f8fc884eb859794f1c4657a2bfa122ae54d0","impliedFormat":1},{"version":"6cf42a4f3cfec648545925d43afaa8bb364ac10a839ffed88249da109361b275","impliedFormat":1},{"version":"d7058e75920120b142a9d57be25562a3cd9a936269fd52908505f530105f2ec4","impliedFormat":1},{"version":"6df52b70d7f7702202f672541a5f4a424d478ee5be51a9d37b8ccbe1dbf3c0f2","impliedFormat":1},{"version":"0ca7f997e9a4d8985e842b7c882e521b6f63233c4086e9fe79dd7a9dc4742b5e","impliedFormat":1},{"version":"91046b5c6b55d3b194c81fd4df52f687736fad3095e9d103ead92bb64dc160ee","impliedFormat":1},{"version":"db5704fdad56c74dfc5941283c1182ed471bd17598209d3ac4a49faa72e43cfc","impliedFormat":1},{"version":"758e8e89559b02b81bc0f8fd395b17ad5aff75490c862cbe369bb1a3d1577c40","impliedFormat":1},{"version":"2ee64342c077b1868f1834c063f575063051edd6e2964257d34aad032d6b657c","impliedFormat":1},{"version":"6f6b4b3d670b6a5f0e24ea001c1b3d36453c539195e875687950a178f1730fa7","impliedFormat":1},{"version":"a472a1d3f25ce13a1d44911cd3983956ac040ce2018e155435ea34afb25f864c","impliedFormat":1},{"version":"b48b83a86dd9cfe36f8776b3ff52fcd45b0e043c0538dc4a4b149ba45fe367b9","impliedFormat":1},{"version":"792de5c062444bd2ee0413fb766e57e03cce7cdaebbfc52fc0c7c8e95069c96b","impliedFormat":1},{"version":"a79e3e81094c7a04a885bad9b049c519aace53300fb8a0fe4f26727cb5a746ce","impliedFormat":1},{"version":"93181bac0d90db185bb730c95214f6118ae997fe836a98a49664147fbcaf1988","impliedFormat":1},{"version":"8a4e89564d8ea66ad87ee3762e07540f9f0656a62043c910d819b4746fc429c5","impliedFormat":1},{"version":"b9011d99942889a0f95e120d06b698c628b0b6fdc3e6b7ecb459b97ed7d5bcc6","impliedFormat":1},{"version":"4d639cbbcc2f8f9ce6d55d5d503830d6c2556251df332dc5255d75af53c8a0e7","impliedFormat":1},{"version":"cdb48277f600ab5f429ecf1c5ea046683bc6b9f73f3deab9a100adac4b34969c","impliedFormat":1},{"version":"75be84956a29040a1afbe864c0a7a369dfdb739380072484eff153905ef867ee","impliedFormat":1},{"version":"b06b4adc2ae03331a92abd1b19af8eb91ec2bf8541747ee355887a167d53145e","impliedFormat":1},{"version":"c54166a85bd60f86d1ebb90ce0117c0ecb850b8a33b366691629fdf26f1bbbd8","impliedFormat":1},{"version":"0d417c15c5c635384d5f1819cc253a540fe786cc3fda32f6a2ae266671506a21","impliedFormat":1},{"version":"80f23f1d60fbed356f726b3b26f9d348dddbb34027926d10d59fad961e70a730","impliedFormat":1},{"version":"cb59317243a11379a101eb2f27b9df1022674c3df1df0727360a0a3f963f523b","impliedFormat":1},{"version":"cc20bb2227dd5de0aab0c8d697d1572f8000550e62c7bf5c92f212f657dd88c5","impliedFormat":1},{"version":"06b8a7d46195b6b3980e523ef59746702fd210b71681a83a5cf73799623621f9","impliedFormat":1},{"version":"860e4405959f646c101b8005a191298b2381af8f33716dc5f42097e4620608f8","impliedFormat":1},{"version":"f7e32adf714b8f25d3c1783473abec3f2e82d5724538d8dcf6f51baaaff1ca7a","impliedFormat":1},{"version":"d0da80c845999a16c24d0783033fb5366ada98df17867c98ad433ede05cd87fd","impliedFormat":1},{"version":"bfbf80f9cd4558af2d7b2006065340aaaced15947d590045253ded50aabb9bc5","impliedFormat":1},{"version":"fd9a991b51870325e46ebb0e6e18722d313f60cd8e596e645ec5ac15b96dbf4e","impliedFormat":1},{"version":"c3bd2b94e4298f81743d92945b80e9b56c1cdfb2bef43c149b7106a2491b1fc9","impliedFormat":1},{"version":"a246cce57f558f9ebaffd55c1e5673da44ea603b4da3b2b47eb88915d30a9181","impliedFormat":1},{"version":"d993eacc103c5a065227153c9aae8acea3a4322fe1a169ee7c70b77015bf0bb2","impliedFormat":1},{"version":"fc2b03d0c042aa1627406e753a26a1eaad01b3c496510a78016822ef8d456bb6","impliedFormat":1},{"version":"063c7ebbe756f0155a8b453f410ca6b76ffa1bbc1048735bcaf9c7c81a1ce35f","impliedFormat":1},{"version":"314e402cd481370d08f63051ae8b8c8e6370db5ee3b8820eeeaaf8d722a6dac6","impliedFormat":1},{"version":"9669075ac38ce36b638b290ba468233980d9f38bdc62f0519213b2fd3e2552ec","impliedFormat":1},{"version":"4d123de012c24e2f373925100be73d50517ac490f9ed3578ac82d0168bfbd303","impliedFormat":1},{"version":"656c9af789629aa36b39092bee3757034009620439d9a39912f587538033ce28","impliedFormat":1},{"version":"3ac3f4bdb8c0905d4c3035d6f7fb20118c21e8a17bee46d3735195b0c2a9f39f","impliedFormat":1},{"version":"1f453e6798ed29c86f703e9b41662640d4f2e61337007f27ac1c616f20093f69","impliedFormat":1},{"version":"af43b7871ff21c62bf1a54ec5c488e31a8d3408d5b51ff2e9f8581b6c55f2fc7","impliedFormat":1},{"version":"70550511d25cbb0b6a64dcac7fffc3c1397fd4cbeb6b23ccc7f9b794ab8a6954","impliedFormat":1},{"version":"af0fbf08386603a62f2a78c42d998c90353b1f1d22e05a384545f7accf881e0a","impliedFormat":1},{"version":"cefc20054d20b85b534206dbcedd509bb74f87f3d8bc45c58c7be3a76caa45e1","impliedFormat":1},{"version":"ad6eee4877d0f7e5244d34bc5026fd6e9cf8e66c5c79416b73f9f6ebf132f924","impliedFormat":1},{"version":"4888fd2bcfee9a0ce89d0df860d233e0cee8ee9c479b6bd5a5d5f9aae98342fe","impliedFormat":1},{"version":"f4749c102ced952aa6f40f0b579865429c4869f6d83df91000e98005476bee87","impliedFormat":1},{"version":"56654d2c5923598384e71cb808fac2818ca3f07dd23bb018988a39d5e64f268b","impliedFormat":1},{"version":"8b6719d3b9e65863da5390cb26994602c10a315aa16e7d70778a63fee6c4c079","impliedFormat":1},{"version":"05f56cd4b929977d18df8f3d08a4c929a2592ef5af083e79974b20a063f30940","impliedFormat":1},{"version":"547d3c406a21b30e2b78629ecc0b2ddaf652d9e0bdb2d59ceebce5612906df33","impliedFormat":1},{"version":"b3a4f9385279443c3a5568ec914a9492b59a723386161fd5ef0619d9f8982f97","impliedFormat":1},{"version":"3fe66aba4fbe0c3ba196a4f9ed2a776fe99dc4d1567a558fb11693e9fcc4e6ed","impliedFormat":1},{"version":"140eef237c7db06fc5adcb5df434ee21e81ee3a6fd57e1a75b8b3750aa2df2d8","impliedFormat":1},{"version":"0944ec553e4744efae790c68807a461720cff9f3977d4911ac0d918a17c9dd99","impliedFormat":1},{"version":"cb46b38d5e791acaa243bf342b8b5f8491639847463ac965b93896d4fb0af0d9","impliedFormat":1},{"version":"7c7d9e116fe51100ff766703e6b5e4424f51ad8977fe474ddd8d0959aa6de257","impliedFormat":1},{"version":"af70a2567e586be0083df3938b6a6792e6821363d8ef559ad8d721a33a5bcdaf","impliedFormat":1},{"version":"006cff3a8bcb92d77953f49a94cd7d5272fef4ab488b9052ef82b6a1260d870b","impliedFormat":1},{"version":"7d44bfdc8ee5e9af70738ff652c622ae3ad81815e63ab49bdc593d34cb3a68e5","impliedFormat":1},{"version":"339814517abd4dbc7b5f013dfd3b5e37ef0ea914a8bbe65413ecffd668792bc6","impliedFormat":1},{"version":"34d5bc0a6958967ec237c99f980155b5145b76e6eb927c9ffc57d8680326b5d8","impliedFormat":1},{"version":"9eae79b70c9d8288032cbe1b21d0941f6bd4f315e14786b2c1d10bccc634e897","impliedFormat":1},{"version":"18ce015ed308ea469b13b17f99ce53bbb97975855b2a09b86c052eefa4aa013a","impliedFormat":1},{"version":"5a931bc4106194e474be141e0bc1046629510dc95b9a0e4b02a3783847222965","impliedFormat":1},{"version":"5e5f371bf23d5ced2212a5ff56675aefbd0c9b3f4d4fdda1b6123ac6e28f058c","impliedFormat":1},{"version":"907c17ad5a05eecb29b42b36cc8fec6437be27cc4986bb3a218e4f74f606911c","impliedFormat":1},{"version":"ce60a562cd2a92f37a88f2ddd99a3abfbc5848d7baf38c48fb8d3243701fcb75","impliedFormat":1},{"version":"a726ad2d0a98bfffbe8bc1cd2d90b6d831638c0adc750ce73103a471eb9a891c","impliedFormat":1},{"version":"f44c0c8ce58d3dacac016607a1a90e5342d830ea84c48d2e571408087ae55894","impliedFormat":1},{"version":"75a315a098e630e734d9bc932d9841b64b30f7a349a20cf4717bf93044eff113","impliedFormat":1},{"version":"9131d95e32b3d4611d4046a613e022637348f6cebfe68230d4e81b691e4761a1","impliedFormat":1},{"version":"b03aa292cfdcd4edc3af00a7dbd71136dd067ec70a7536b655b82f4dd444e857","impliedFormat":1},{"version":"b6e2b0448ced813b8c207810d96551a26e7d7bb73255eea4b9701698f78846d6","impliedFormat":1},{"version":"8ae10cd85c1bd94d2f2d17c4cbd25c068a4b2471c70c2d96434239f97040747a","impliedFormat":1},{"version":"9ed5b799c50467b0c9f81ddf544b6bcda3e34d92076d6cab183c84511e45c39f","impliedFormat":1},{"version":"b4fa87cc1833839e51c49f20de71230e259c15b2c9c3e89e4814acc1d1ef10de","impliedFormat":1},{"version":"e90ac9e4ac0326faa1bc39f37af38ace0f9d4a655cd6d147713c653139cf4928","impliedFormat":1},{"version":"ea27110249d12e072956473a86fd1965df8e1be985f3b686b4e277afefdde584","impliedFormat":1},{"version":"8776a368617ce51129b74db7d55c3373dadcce5d0701e61d106e99998922a239","impliedFormat":1},{"version":"5666075052877fe2fdddd5b16de03168076cf0f03fbca5c1d4a3b8f43cba570c","impliedFormat":1},{"version":"9108ab5af05418f599ab48186193b1b07034c79a4a212a7f73535903ba4ca249","impliedFormat":1},{"version":"bb4e2cdcadf9c9e6ee2820af23cee6582d47c9c9c13b0dca1baaffe01fbbcb5f","impliedFormat":1},{"version":"6e30d0b5a1441d831d19fe02300ab3d83726abd5141cbcc0e2993fa0efd33db4","impliedFormat":1},{"version":"423f28126b2fc8d8d6fa558035309000a1297ed24473c595b7dec52e5c7ebae5","impliedFormat":1},{"version":"fb30734f82083d4790775dae393cd004924ebcbfde49849d9430bf0f0229dd16","impliedFormat":1},{"version":"2c92b04a7a4a1cd9501e1be338bf435738964130fb2ad5bd6c339ee41224ac4c","impliedFormat":1},{"version":"c5c5f0157b41833180419dacfbd2bcce78fb1a51c136bd4bcba5249864d8b9b5","impliedFormat":1},{"version":"02ae43d5bae42efcd5a00d3923e764895ce056bca005a9f4e623aa6b4797c8af","impliedFormat":1},{"version":"db6e01f17012a9d7b610ae764f94a1af850f5d98c9c826ad61747dca0fb800bd","impliedFormat":1},{"version":"8a44b424edee7bb17dc35a558cc15f92555f14a0441205613e0e50452ab3a602","impliedFormat":1},{"version":"24a00d0f98b799e6f628373249ece352b328089c3383b5606214357e9107e7d5","impliedFormat":1},{"version":"33637e3bc64edd2075d4071c55d60b32bdb0d243652977c66c964021b6fc8066","impliedFormat":1},{"version":"0f0ad9f14dedfdca37260931fac1edf0f6b951c629e84027255512f06a6ebc4c","impliedFormat":1},{"version":"16ad86c48bf950f5a480dc812b64225ca4a071827d3d18ffc5ec1ae176399e36","impliedFormat":1},{"version":"8cbf55a11ff59fd2b8e39a4aa08e25c5ddce46e3af0ed71fb51610607a13c505","impliedFormat":1},{"version":"d5bc4544938741f5daf8f3a339bfbf0d880da9e89e79f44a6383aaf056fe0159","impliedFormat":1},{"version":"97f9169882d393e6f303f570168ca86b5fe9aab556e9a43672dae7e6bb8e6495","impliedFormat":1},{"version":"7c9adb3fcd7851497818120b7e151465406e711d6a596a71b807f3a17853cb58","impliedFormat":1},{"version":"6752d402f9282dd6f6317c8c048aaaac27295739a166eed27e00391b358fed9a","impliedFormat":1},{"version":"9fd7466b77020847dbc9d2165829796bf7ea00895b2520ff3752ffdcff53564b","impliedFormat":1},{"version":"fbfc12d54a4488c2eb166ed63bab0fb34413e97069af273210cf39da5280c8d6","impliedFormat":1},{"version":"85a84240002b7cf577cec637167f0383409d086e3c4443852ca248fc6e16711e","impliedFormat":1},{"version":"84794e3abd045880e0fadcf062b648faf982aa80cfc56d28d80120e298178626","impliedFormat":1},{"version":"053d8b827286a16a669a36ffc8ccc8acdf8cc154c096610aa12348b8c493c7b8","impliedFormat":1},{"version":"3cce4ce031710970fe12d4f7834375f5fd455aa129af4c11eb787935923ff551","impliedFormat":1},{"version":"8f62cbd3afbd6a07bb8c934294b6bfbe437021b89e53a4da7de2648ecfc7af25","impliedFormat":1},{"version":"62c3621d34fb2567c17a2c4b89914ebefbfbd1b1b875b070391a7d4f722e55dc","impliedFormat":1},{"version":"c05ac811542e0b59cb9c2e8f60e983461f0b0e39cea93e320fad447ff8e474f3","impliedFormat":1},{"version":"8e7a5b8f867b99cc8763c0b024068fb58e09f7da2c4810c12833e1ca6eb11c4f","impliedFormat":1},{"version":"132351cbd8437a463757d3510258d0fa98fd3ebef336f56d6f359cf3e177a3ce","impliedFormat":1},{"version":"df877050b04c29b9f8409aa10278d586825f511f0841d1ec41b6554f8362092b","impliedFormat":1},{"version":"33d1888c3c27d3180b7fd20bac84e97ecad94b49830d5dd306f9e770213027d1","impliedFormat":1},{"version":"ee942c58036a0de88505ffd7c129f86125b783888288c2389330168677d6347f","impliedFormat":1},{"version":"a3f317d500c30ea56d41501632cdcc376dae6d24770563a5e59c039e1c2a08ec","impliedFormat":1},{"version":"eb21ddc3a8136a12e69176531197def71dc28ffaf357b74d4bf83407bd845991","impliedFormat":1},{"version":"0c1651a159995dfa784c57b4ea9944f16bdf8d924ed2d8b3db5c25d25749a343","impliedFormat":1},{"version":"aaa13958e03409d72e179b5d7f6ec5c6cc666b7be14773ae7b6b5ee4921e52db","impliedFormat":1},{"version":"0a86e049843ad02977a94bb9cdfec287a6c5a0a4b6b5391a6648b1a122072c5a","impliedFormat":1},{"version":"40f06693e2e3e58526b713c937895c02e113552dc8ba81ecd49cdd9596567ddb","impliedFormat":1},{"version":"4ed5e1992aedb174fb8f5aa8796aa6d4dcb8bd819b4af1b162a222b680a37fa0","impliedFormat":1},{"version":"d7f4bd46a8b97232ea6f8c28012b8d2b995e55e729d11405f159d3e00c51420a","impliedFormat":1},{"version":"d604d413aff031f4bfbdae1560e54ebf503d374464d76d50a2c6ded4df525712","impliedFormat":1},{"version":"e4f4f9cf1e3ac9fd91ada072e4d428ecbf0aa6dc57138fb797b8a0ca3a1d521c","impliedFormat":1},{"version":"12bfd290936824373edda13f48a4094adee93239b9a73432db603127881a300d","impliedFormat":1},{"version":"340ceb3ea308f8e98264988a663640e567c553b8d6dc7d5e43a8f3b64f780374","impliedFormat":1},{"version":"c5a769564e530fba3ec696d0a5cff1709b9095a0bdf5b0826d940d2fc9786413","impliedFormat":1},{"version":"7124ef724c3fc833a17896f2d994c368230a8d4b235baed39aa8037db31de54f","impliedFormat":1},{"version":"5de1c0759a76e7710f76899dcae601386424eab11fb2efaf190f2b0f09c3d3d3","impliedFormat":1},{"version":"9c5ee8f7e581f045b6be979f062a61bf076d362bf89c7f966b993a23424e8b0d","impliedFormat":1},{"version":"1a11df987948a86aa1ec4867907c59bdf431f13ed2270444bf47f788a5c7f92d","impliedFormat":1},{"version":"8018dd2e95e7ce6e613ddd81672a54532614dc745520a2f9e3860ff7fb1be0ca","impliedFormat":1},{"version":"b756781cd40d465da57d1fc6a442c34ae61fe8c802d752aace24f6a43fedacee","impliedFormat":1},{"version":"0fe76167c87289ea094e01616dcbab795c11b56bad23e1ef8aba9aa37e93432a","impliedFormat":1},{"version":"3a45029dba46b1f091e8dc4d784e7be970e209cd7d4ff02bd15270a98a9ba24b","impliedFormat":1},{"version":"032c1581f921f8874cf42966f27fd04afcabbb7878fa708a8251cac5415a2a06","impliedFormat":1},{"version":"69c68ed9652842ce4b8e495d63d2cd425862104c9fb7661f72e7aa8a9ef836f8","impliedFormat":1},{"version":"0e704ee6e9fd8b6a5a7167886f4d8915f4bc22ed79f19cb7b32bd28458f50643","impliedFormat":1},{"version":"06f62a14599a68bcde148d1efd60c2e52e8fa540cc7dcfa4477af132bb3de271","impliedFormat":1},{"version":"904a96f84b1bcee9a7f0f258d17f8692e6652a0390566515fe6741a5c6db8c1c","impliedFormat":1},{"version":"11f19ce32d21222419cecab448fa335017ebebf4f9e5457c4fa9df42fa2dcca7","impliedFormat":1},{"version":"2e8ee2cbb5e9159764e2189cf5547aebd0e6b0d9a64d479397bb051cd1991744","impliedFormat":1},{"version":"1b0471d75f5adb7f545c1a97c02a0f825851b95fe6e069ac6ecaa461b8bb321d","impliedFormat":1},{"version":"1d157c31a02b1e5cca9bc495b3d8d39f4b42b409da79f863fb953fbe3c7d4884","impliedFormat":1},{"version":"07baaceaec03d88a4b78cb0651b25f1ae0322ac1aa0b555ae3749a79a41cba86","impliedFormat":1},{"version":"619a132f634b4ebe5b4b4179ea5870f62f2cb09916a25957bff17b408de8b56d","impliedFormat":1},{"version":"f60fa446a397eb1aead9c4e568faf2df8068b4d0306ebc075fb4be16ed26b741","impliedFormat":1},{"version":"f3cb784be4d9e91f966a0b5052a098d9b53b0af0d341f690585b0cc05c6ca412","impliedFormat":1},{"version":"350f63439f8fe2e06c97368ddc7fb6d6c676d54f59520966f7dbbe6a4586014e","impliedFormat":1},{"version":"eba613b9b357ac8c50a925fa31dc7e65ff3b95a07efbaa684b624f143d8d34ba","impliedFormat":1},{"version":"45b74185005ed45bec3f07cac6e4d68eaf02ead9ff5a66721679fb28020e5e7c","impliedFormat":1},{"version":"0f6199602df09bdb12b95b5434f5d7474b1490d2cd8cc036364ab3ba6fd24263","impliedFormat":1},{"version":"c8ca7fd9ec7a3ec82185bfc8213e4a7f63ae748fd6fced931741d23ef4ea3c0f","impliedFormat":1},{"version":"5c6a8a3c2a8d059f0592d4eab59b062210a1c871117968b10797dee36d991ef7","impliedFormat":1},{"version":"ad77fd25ece8e09247040826a777dc181f974d28257c9cd5acb4921b51967bd8","impliedFormat":1},{"version":"543f3fad9ebec896d424f0871ea0a268d2658fda5ad75d9cbccd7ca8bb51bc5e","impliedFormat":99},{"version":"e835c2e3462358e42ce5900346178da16ce2f727f48af88f1264717c17c9c1c4","impliedFormat":99},{"version":"2755f3a9529301df202c11d2408065375c6e7686610195cfad94346c8cff51c7","impliedFormat":99},{"version":"67a84b3270bd6325c3cec69af36364ecf0b57d758bfce8b88038ca106438fe50","impliedFormat":99},{"version":"03df83f3c54307ca0659a5c21165348ed2c1f52fdc7207914dc0a05caee525b4","impliedFormat":99},{"version":"01db68e7f740ac65ec3a24c4581618e0f8203ee3c1acd6346a551f8055812f21","impliedFormat":99},{"version":"80a9ad99b09328b9e875138faf66486086392f03fb6a9ce07b704a4d53153c0a","impliedFormat":99},{"version":"41632e181c0b5e8fbfb122777ec30e45cf1177f84879aa2bdbfc7cd66d5e6356","impliedFormat":99},{"version":"4cec0506af265ac8176523b6a75a9c06d5d69618855781d0191dc52b60c018a8","impliedFormat":99},{"version":"48d3a8f9239ed151cc200cf7985ea92b28249513c41dbdfeadf78357c5f18ec1","impliedFormat":99},{"version":"6aaa8267f4ece7dd4d836296de15b9529f93fd4e5c4f3c4d065c03a3122580dc","impliedFormat":99},{"version":"abbaf1d2815b4b99d8bc0d3029adf39d2d1588d5539865ce5fc63455b168d959","impliedFormat":99},{"version":"ab7c6ca3f1371e8ce477377bd9cdadff7f84b1317ebc66726c64d1af26b681e1","impliedFormat":99},{"version":"c796a2795dc3d049893220db1e12a25bfaf06a44e230d4d2c4bf72fa3e460896","impliedFormat":99},{"version":"39e00ffa6bf29d992db5c3efff1cf96d0c20904b9524462971739593d5b8dbec","impliedFormat":99},{"version":"42b652e8c90509675c18f90a860d3f158cc70ee6a7f2ae6c2eda114c2c9ca952","impliedFormat":99},{"version":"bc055e255b285142f6d0f0c7cb3b8125e2d9e7373433bee4c5060e8a73c7b3ff","impliedFormat":99},{"version":"aafb22df14bead42801f624d917c944bf60cc47ff3fd644b8decce0dd8d49e8b","impliedFormat":99},{"version":"b2a618b9134f6be213a67b79a8bd3513d2ca0e9c4719480657e6adaed9f61867","impliedFormat":99},{"version":"ca437f09f6649a7ee5b13267251b4303e51bb0aea5d0ae7a8fa5021943ecb7c7","impliedFormat":99},{"version":"c4fb6dcd777546f5970fa4353417a6d5c9039d32d3fb0f8de224fb3092a9c41c","impliedFormat":99},{"version":"b8eea8cb0e3b23f078b0be89b9592c58ba0c737fbc174c41f4830691475cf339","impliedFormat":99},{"version":"790d7a4f424f2029d1234e832938d9c0ba1137cf8b7a4b127f3536f8062a1765","impliedFormat":99},{"version":"8a2d033e62ab4486a0016092c4b667525a4bbd6b7b68159e45ecaadaf4a71099","impliedFormat":99},{"version":"eff91c86be0270d5544352eaafae38768c59222d84a1e440b0a96ef0b36facaa","impliedFormat":99},{"version":"c84277a02c432a56a79f5257153a8261e30236dc7082e6c054808e5bd4d81a33","impliedFormat":99},{"version":"4ab0c0d9285b30fdccdcd8a4d79f38981722da5c4997377c3b7e9360b0e9a887","impliedFormat":99},{"version":"4b5b4edd9cf9d826871a13b0c1d9cc43865e64eec8696f8fce5baf7a9c3fabbc","impliedFormat":99},{"version":"cc3612d56cd439a886cd08f8de12b4443b7bdf24e6d2a29fae32f904b311b9f9","impliedFormat":99},{"version":"b9f115277f53061e076f6c6a89303f713867e7bf2d32f8b5967d505ae13932bb","impliedFormat":99},{"version":"f46ce75eb31246017422e2c9a001836eae839cd62c1060daf0611c6dca85ca64","impliedFormat":99},{"version":"76d8a8bccc71072c5169786f40d4c278bfb34388ccdf9de9587865d188fd7a6e","impliedFormat":99},{"version":"bd300890069151b61740ea3dbf88ddf8ab1303af5154b12cbcc06147d6aa7c17","impliedFormat":99},{"version":"b24fc3dfbdc15f7daa6cf8b6ffe457fd872c2564a60264901340ebb830aa8826","impliedFormat":99},{"version":"4d25694ae20937f2f6e90eff01160afb884cdae11daa672174fd7d325700843b","impliedFormat":99},{"version":"b15dae63d349652d8019f015719225a0a584497dfa31146c347c0cf3cf1a93b0","impliedFormat":99},{"version":"6ec873465202bc7831876711fdb8826b597e2d8c91c7d3e3c8ed0b6518998c52","impliedFormat":99},{"version":"d8352a30103a7cc55eb6c3415e9b59ea3db731fcf82ecb68a57efb8dc6899700","impliedFormat":99},{"version":"cb1c9ca3571a0f74b54ecb468d54a438726b0bc330c418289e35fae569e43276","impliedFormat":99},{"version":"cd91681e132149b4c662f653bb31e67a4df87d9d799fe0a42a6736e7130e4597","impliedFormat":99},{"version":"e476a8fe1533a00bcc1619fd5921645ccc978c5be63e3d2230da0c3546b84608","impliedFormat":99},{"version":"c8cff3d3d801ddc09830695e29661fcef3ac89c85997da2b10ae9bbe0732622a","impliedFormat":99},{"version":"f3762af9bbe8f13f7074a64ed712111a111b1668354459e4908071abb1c60456","impliedFormat":99},{"version":"a5e005bd18ef0c5bd74d74eaacc6e41151d24805a7656b8b639e970ef20f398f","impliedFormat":99},{"version":"d5c719f2e1561dc51cd8921a9d68490a06512e05df5da91032bb8bef71c4714b","impliedFormat":99},{"version":"979613d0d260f469f989aa03fe318cb68ba9261b3b5c893ec934c939c64034e3","impliedFormat":99},{"version":"3b32a93b2b78c966dfdf4af6d1c061855afaaff41904b0386b61ef832160dd4a","impliedFormat":99},{"version":"ffde16611e80cdec293fbab87f112728b996baa6149f9ba73144e523f7b60aba","impliedFormat":99},{"version":"c12b5db6235e766b112a9f7f7486c82a1b760552459aa70ef6340aabf1f40990","impliedFormat":99},{"version":"609445891450fd10ea82b6355c82c6c4710b209d84f8921f4e7a87b8c7017c1d","impliedFormat":99},{"version":"d5e3bce3a3e1abef3c3340347569a458e17c9a9283da52877b0a087adbbdba94","impliedFormat":99},{"version":"70a9d7a02d83dc1ebd55f9ff1476bb55d54e03c320526106055c41bf925e7437","impliedFormat":99},{"version":"dfdf7d2c615a0f6b18eebce57bcab7f03db0ea06d7595b2a4d66c981a3fe0629","impliedFormat":99},{"version":"375715b05f6f36e5fb1f620bdf0baa16265aa12ccfedd40b56e60eec2dc391c4","impliedFormat":99},{"version":"92bc808ad1f6952b2b6bd534c84b6af5357ca9f1f545fb99475db8b7c4c41007","impliedFormat":99},{"version":"e273c75ddf2d5c345606c33c3532588d33904b17eb46ca9931fb1e827f5bcaa2","impliedFormat":99},{"version":"1b2ad38b5fcca22c21c7fac461520f0cd3eb9403a2379d63547f9dc3317640f7","impliedFormat":99},{"version":"86aaa6b8d841a1413afeeef5ccee745ef0223e5cc16d03569f327415f7a2e95e","impliedFormat":99},{"version":"a80189bd551b8e5c7486a87a14ea438eb1882c80fae4419da5b94a9a7b8e1f09","impliedFormat":99},{"version":"a6324d9b09d0c8bcb468d62f142a0a95c17ff2f47dd032d865d22064cbb27d0e","impliedFormat":99},{"version":"b4cab94ecea75824f576e27228597db1d79e9f50dbb0f1ae217e9b153e0f8906","impliedFormat":99},{"version":"6ee5a153cc635a7deb917662819e5a896acc4578ee5f4da5b16276f9509a2c48","impliedFormat":99},{"version":"2072403b5b423c48b50a3c7f8b29bd410c60f96ca7f3de9ac13e1e90820959e4","impliedFormat":99},{"version":"83357c1d786d68887cae5e5ca80a8d97e2b2f21d45014dfdf5ad0a9cdf198848","impliedFormat":99},{"version":"ebf90678b741111bf86fea0a44c375c4d1336de637a3870c0e457a96b9b92c34","impliedFormat":99},{"version":"0544cdc281df534d935b610eb0a5d6e7397f1a848659ef7ba0a4f8cf9c8b073d","impliedFormat":99},{"version":"eee704ee98537ccb50f7d25dda0e994c07c162420df40b62f31c6e8d0128fc6d","impliedFormat":99},{"version":"a7c1d8ad5907766aac16ac47df232321e17b2e6413a07bd012d2c5106ced317b","impliedFormat":99},{"version":"577eeb11be17aff5b821b6ed7fe33c3b4b4502362b020bfc4a953f6b16bb155f","impliedFormat":99},{"version":"601ea57354ba67f4bc9220705127facb65ae174e5e75c17deb772f6cf4f1dff0","impliedFormat":99},{"version":"7ace44b3150c4b19a8ce98eb1d140e2bca6aa4d5b8d9e0eeaa3946088f9253b9","impliedFormat":99},{"version":"0fde30fe0d6b596420c23a1b91dec4e4566a64d73d08c138d5b934ef02c56b8e","impliedFormat":99},{"version":"b2beca8c167fe40671e8344d138f9e4b2d062efe450f406785e83d55a18a2b8a","impliedFormat":99},{"version":"81f645dfc0dc460374c3403cb54833494444553141aee0bf8ab2fab2c77ba70b","impliedFormat":99},{"version":"5a9e48eb3e8b5ff8548c80fef1c810b61736aef336b6115ecbba2457063e9ea6","impliedFormat":99},{"version":"53b648c4bbb7c4a2c3c1748194e9d0040b549cbf856be3b4a2b076fc24900a74","impliedFormat":99},{"version":"990ea60933da554badc81b722051f2377178977651cdd59d7f202cfaabe54cc6","impliedFormat":99},{"version":"8462c6bff909082dedda26d6248be5032e35f30b275f914166da91e3a88d4d7b","impliedFormat":99},{"version":"c0b2de0d467c4edb02f0f1c00b7e05534344a431d70b118f97aaa67967cc3bfa","impliedFormat":99},{"version":"7728e17087415d870614b695f8a62319a63f56e325f00b81de0f4c54ea8408c9","impliedFormat":99},{"version":"28816ff4b2e67e516e9d9e2ea1593e3583f991d9ad7ff804f906058c6b557267","impliedFormat":99},{"version":"6ab79b1a124c55e6e687c5bf7095503e764ea1f17d5c0d908647fb0560483f4a","impliedFormat":99},{"version":"82370a2f3cbc9099b243bc47b47069a82d1e9f942b3c7c9e7a7ae22242c9b549","impliedFormat":99},{"version":"fb893a0dfc3c9fb0f9ca93d0648694dd95f33cbad2c0f2c629f842981dfd4e2e","impliedFormat":1},{"version":"3eb11dbf3489064a47a2e1cf9d261b1f100ef0b3b50ffca6c44dd99d6dd81ac1","impliedFormat":1},{"version":"4b94de93372389a3dcc1fc060ed9717a5a11efe9a28947aa923d8b10d7ae0946","affectsGlobalScope":true,"impliedFormat":99},{"version":"bb297de74be1722d326f523b61fd4247f1bb1e24a415b42e02552e54c01089f7","impliedFormat":99},{"version":"65d518c2571e520a3bf1ea2385d6e9cb62e5d22876b6b5a26cde1776be005df9","impliedFormat":99},{"version":"f32781757f9183d38acea75f488944af7d96042b657fb2f6d763fbfda4a586ad","impliedFormat":99},{"version":"d94ad86c8ec63a3062fb8ffdc288bc41c6d5d508fce08ec850f40def04bee4f0","impliedFormat":99},{"version":"0a9e4cabb0c96c58f8728b2b372eba812ee6f1265385534efbc5da6945580810","impliedFormat":99},{"version":"534dabcb6a41c85a2c22ac71d6c0ade74b8abd4d9c64675e4aaa64b6df9b4af2","impliedFormat":99},{"version":"22df486c37dc0f82387b17d3c354423dbc33f53660dcff3dd797a50f38e11808","impliedFormat":99},{"version":"66316257d8770fa2cfc3ceeaf154eecdb1d0b92674088437218a1c9d6dcbf179","impliedFormat":99},{"version":"54c878d17b12130136b3ca88092719e909ed7f9d9dad568f333da07821f30a93","impliedFormat":99},{"version":"c3c81ec172911af3225e67af92b80d54aa18081b097f32cad76f21f5ca2e3111","impliedFormat":99},{"version":"a7160c4eee8103fa34e486d469892cb341295659290303cdc84f5f362b94dde2","impliedFormat":99},{"version":"fdccda7abcf75ff0d40c0598ba964ff0c36c86b4d345f06ced4aab7f2aef17fc","impliedFormat":99},{"version":"88d0cee37ed173e56f639077be8e659583d80b4af302b21caa2a60c943f0d0f2","impliedFormat":99},{"version":"ab175a6055a330ae85db197c62a729dc7852b8cef528307089d18346a053a31c","impliedFormat":99},{"version":"f4f75bf9d3b0c40438731d5d8a8f2d5743403101f11618a574d1f882d23fe416","impliedFormat":99},{"version":"9c6d0beddf34c99d2726a96fa020bb19bf46711083c7659df22e57e88497ba77","impliedFormat":99},{"version":"87de3b1f06af37d4a9fdcafdf576a1b5d511e6f80007cbcbae6fad63d1496b81","impliedFormat":99},{"version":"5f59db6bfea99e031aa57bf46a411e44f10cd6c9f3f89b2ea7e34d500ad88da6","impliedFormat":99},{"version":"dec3eea620eb3b6a92f34a3b0eacd2ce380b3ee1534dfeb3fdf87292d60a7662","impliedFormat":1},{"version":"43d0b9e548423d5b3e18da5a730a4b88bf79de0da9ee86074ae7407d2d0a3a30","impliedFormat":1},{"version":"926436925f92ab0dc9fa79b2b017ac8021c67bc9e67733b0dccf40f7d4641444","impliedFormat":1},{"version":"926436925f92ab0dc9fa79b2b017ac8021c67bc9e67733b0dccf40f7d4641444","impliedFormat":1},{"version":"8a1aadc9be97a4585462c8f47da805ac76b0d097e735ea7e96cda052ea5d0aa4","impliedFormat":1},{"version":"c7b4e4a9b6385ba6da1c96424422aeed5173dbb4b04d412d5ec7f2364293d906","impliedFormat":1},{"version":"d6affb3b1bb702998a2c688746777657cd67ef8d414a0d1febc0a69c46610219","impliedFormat":1},{"version":"3311f573c7a2c973cb121f9b5936d883791a6c2a8c71edffb423138d387637d4","impliedFormat":1},{"version":"da433bdc883124501021e0a7214d73927aeffbd97e99b10288f491a5c51ba142","impliedFormat":1},{"version":"369b016417b3c87952cb5e74d7d49a28c9478c63e3edacebef0d8ecfff276665","impliedFormat":1},{"version":"c13bd0c085ca142129f97a360a93e9ed3df8ec2800669fecfd89bb9c0f49ce08","impliedFormat":1},{"version":"6804de6b44b809ffb0344ccb983582ef32f7eba5b31bcd5e196260678e5fb9ce","impliedFormat":1},{"version":"c1f982bf2fa1fc66145a71e1e99b6f86e1659ddb83515f19ea0c8c3964460221","impliedFormat":1},{"version":"b15370690bd0acbd4c34f427402709e493bf59bb89d165f4ae26fc11d60f53e0","impliedFormat":99},{"version":"623f1f64df738f2c1d7b1531873615fe59e024da589d4879f128e2127b3c7070","impliedFormat":99},{"version":"16288962b259ee75ca703d7541a86df925bd4b5bcbd2e45028364b378887591f","impliedFormat":99},{"version":"c523702f6ad123ce1173ff021975cdd2ad4d879c3ee85be996c7901daa07b523","impliedFormat":99},{"version":"1133c05460176f978a30053012ceff309789521c11d63b244d1a4b0b088ce5dc","impliedFormat":99},{"version":"09ea5fea1ce56b3b04d6ba0e0cfb0aef4bb57fce267aac10f7ce2bf56de6ead1","impliedFormat":99},{"version":"b981bc12fbea03bc9e6ad625e106ac62747fe85f7b0aafe59af3854d61fc51a5","impliedFormat":99},{"version":"429a3a553dbee1644ceb2536d6f4fac7b9365d943ffd1bb31a9d4cd67f2c6ad4","impliedFormat":99},{"version":"0b687191bf128ddced56ce10b22c70a7f207b155543c7aa2137d3e3bec9f27b8","signature":"03fa7a9f5c62e89b48e8eed670902b550b297a38d38ef9e5cceca9b22b1aa820"},{"version":"7a5b12e5f97d865a7fae32f29574b3fbc80339ad7bfda85b399574c1ea0dab81","signature":"9a41d8487ab9beba32e3de8fc80dcfa265737519d44c4dee27cedd3f9e3494ec"},{"version":"18cb7bb89fd29d849395ea50e75df824a6b9ba5ba69268cbdc0ffa08821b5688","signature":"0d5dd2114621e1d00989c3f1e0f67227daa219c435a0b9d7151bfbbc3f3695f8"},{"version":"898f0e7474def67af2d2b54c9f15cebf262898e971d19cbb37b97f218bdf6c11","signature":"6819f6a016bea98ba47006e8797366e2494a6a1acde0020d3e905f46bde3dba7"},{"version":"99d951629f7096dcd79adbaa83a85e3be57613005533bd23029b3aba4ce9383e","impliedFormat":1},{"version":"10d5918cd1b230ee72e41321ec1ee22ba401cae3e76b416984778b8678d0eca7","signature":"f031e166a503cfd7e7d6cec46b29b62be27ab4ea483708969c26ed2b0e11df23"},{"version":"f9a1176806d001784a0b04a5750c1ef30d5bd188d12025f1d7146a40c0372f90","signature":"0e2febf56253e2b6dcad2a75b85fd325846fa673c0c824788270b230a09a90b7"},{"version":"5ceb756f4f46ada59bbf77fdf0feabb9c1bd2ed819225c9ca9530dba22ef4a89","signature":"90693f65bab901c3214a3724786c4bbcb35eb39f1458b8e45b102219f2a89c20"},{"version":"7f6bf0b651687b704984ee745aeeb84d61bb36bd3312430e8955413a3857f8c4","signature":"f4d57b555060323511cf94f54993db2c270fe0054d26eb6822c6e712f261fa13"},{"version":"005bf2550cb9835d324efaa921162912ce1de1195edfffe077b3d7d67943abb1","signature":"2cc27eaaf47ebf0007c7bf5dec0c705ce819e3f10f40df9231b1bb2dbb6153c9"},{"version":"263ce23d3c3cdbb03d5259bcb3f8815bf210e67d84b93d7223fed31779394f8f","signature":"1dc0858c14bd547434ab1a08cf1909ea61024d403b5bb478c44440ccb0417e22"},{"version":"27b82680ee1a76420d43c78e804f8e3c30837557b81e0c4009ff0008379d42a2","signature":"7f12bbb52c7f18025f7adc2dac344f90efd83a6ab77fd24034346a0afe38fef9"},{"version":"30003732e8fa05e370a59646ab0af6728dcc0fd8f6b08a1a23e3198617f055d3","signature":"fefaf643ad02c05059e06244a8291c4cb3a2693ec928c843599c25d00ee9f574"},{"version":"cd51ceafea7762ad639afb3ca5b68e1e4ffeaacaa402d7ef2cae17016e29e098","impliedFormat":1},{"version":"1b8357b3fef5be61b5de6d6a4805a534d68fe3e040c11f1944e27d4aec85936a","impliedFormat":1},{"version":"130ec22c8432ade59047e0225e552c62a47683d870d44785bee95594c8d65408","impliedFormat":1},{"version":"4f24c2781b21b6cd65eede543669327d68a8cf0c6d9cf106a1146b164a7c8ef9","affectsGlobalScope":true,"impliedFormat":1},{"version":"928f96b9948742cbaec33e1c34c406c127c2dad5906edb7df08e92b963500a41","impliedFormat":1},{"version":"56613f2ebdd34d4527ca1ee969ab7e82333c3183fc715e5667c999396359e478","impliedFormat":1},{"version":"d9720d542df1d7feba0aa80ed11b4584854951f9064232e8d7a76e65dc676136","impliedFormat":1},{"version":"d0fb3d0c64beba3b9ab25916cc018150d78ccb4952fac755c53721d9d624ba0d","impliedFormat":1},{"version":"86b484bcf6344a27a9ee19dd5cef1a5afbbd96aeb07708cc6d8b43d7dfa8466c","impliedFormat":1},{"version":"ba93f0192c9c30d895bee1141dd0c307b75df16245deef7134ac0152294788cc","impliedFormat":1},{"version":"fca7cd7512b19d38254171fb5e35d2b16ac56710b7915b7801994612953da16c","impliedFormat":1},{"version":"7e43693f6ea74c3866659265e0ce415b4da6ed7fabd2920ad7ea8a5e746c6a94","impliedFormat":1},{"version":"eb31477c87de3309cbe4e9984fa74a052f31581edb89103f8590f01874b4e271","impliedFormat":1},{"version":"4e251317bb109337e4918e5d7bcda7ef2d88f106cac531dcea03f7eee1dd2240","impliedFormat":1},{"version":"0f2c77683296ca2d0e0bee84f8aa944a05df23bc4c5b5fef31dda757e75f660f","impliedFormat":1},{"version":"1a67ba5891772a62706335b59a50720d89905196c90719dad7cec9c81c2990e6","impliedFormat":1},{"version":"cf41091fcbf45daff9aba653406b83d11a3ec163ff9d7a71890035117e733d98","impliedFormat":1},{"version":"aa514fadda13ad6ddadc2342e835307b962254d994f45a0cb495cc76eca13eff","impliedFormat":1},{"version":"ce92e662f86a36fc38c5aaa2ec6e6d6eed0bc6cf231bd06a9cb64cc652487550","impliedFormat":1},{"version":"3821c8180abb683dcf4ba833760764a79e25bc284dc9b17d32e138c34ada1939","impliedFormat":1},{"version":"0ef2a86ec84da6b2b06f830b441889c5bb8330a313691d4edbe85660afa97c44","impliedFormat":1},{"version":"b2a793bde18962a2e1e0f9fa5dce43dd3e801331d36d3e96a7451727185fb16f","impliedFormat":1},{"version":"9d8fc1d9b6b4b94127eec180183683a6ef4735b0e0a770ba9f7e2d98dd571e0c","impliedFormat":1},{"version":"8504003e88870caa5474ab8bd270f318d0985ba7ede4ee30fe37646768b5362a","impliedFormat":1},{"version":"892abbe1081799073183bab5dc771db813938e888cf49eb166f0e0102c0c1473","impliedFormat":1},{"version":"65465a64d5ee2f989ad4cf8db05f875204a9178f36b07a1e4d3a09a39f762e2e","impliedFormat":1},{"version":"2878f694f7d3a13a88a5e511da7ac084491ca0ddde9539e5dad76737ead9a5a9","impliedFormat":1},{"version":"d21c5f692d23afa03113393088bcb1ef90a69272a774950a9f69c58131ac5b7e","impliedFormat":1},{"version":"0915ce92bb54e905387b7907e98982620cb7143f7b44291974fb2e592602fe00","impliedFormat":1},{"version":"9dfb317a36a813f4356dc1488e26a36d95e3ac7f38a05fbf9dda97cfd13ef6ea","impliedFormat":1},{"version":"7c0a4d3819fb911cdb5a6759c0195c72b0c54094451949ebaa89ffceadd129ca","impliedFormat":1},{"version":"4733c832fb758f546a4246bc62f2e9d68880eb8abf0f08c6bec484decb774dc9","impliedFormat":1},{"version":"58d91c410f31f4dd6fa8d50ad10b4ae9a8d1789306e73a5fbe8abea6a593099b","impliedFormat":1},{"version":"3aea7345c25f1060791fc83a6466b889924db87389e5c344fa0c27b75257ebe4","impliedFormat":1},{"version":"a8289d1d525cf4a3a2d5a8db6b8e14e19f43d122cc47f8fb6b894b0aa2e2bde6","impliedFormat":1},{"version":"e6804515ba7c8f647e145ecc126138dd9d27d3e6283291d0f50050700066a0ea","impliedFormat":1},{"version":"9420a04edbe321959de3d1aab9fa88b45951a14c22d8a817f75eb4c0a80dba02","impliedFormat":1},{"version":"6927ceeb41bb451f47593de0180c8ff1be7403965d10dc9147ee8d5c91372fff","impliedFormat":1},{"version":"d9c6f10eebf03d123396d4fee1efbe88bc967a47655ec040ffe7e94271a34fc7","impliedFormat":1},{"version":"f2a392b336e55ccbeb8f8a07865c86857f1a5fc55587c1c7d79e4851b0c75c9a","impliedFormat":1},{"version":"fd53e2a54dae7bb3a9c3b061715fff55a0bb3878472d4a93b2da6f0f62262c9f","impliedFormat":1},{"version":"1f129869a0ee2dcb7ea9a92d6bc8ddf2c2cdaf2d244eec18c3a78efeb5e05c83","impliedFormat":1},{"version":"554962080d3195cae300341a8b472fb0553f354f658344ae181b9aa02d351dbd","impliedFormat":1},{"version":"89cd9ab3944b306e790b148dd0a13ca120daf7379a98729964ea6288a54a1beb","impliedFormat":1},{"version":"28fa41063a242eafcf51e1a62013fccdd9fd5d6760ded6e3ff5ce10a13c2ab31","impliedFormat":1},{"version":"e53a8b6e43f20fa792479f8069c41b1a788a15ffdfd56be1ab8ef46ea01bd43e","impliedFormat":1},{"version":"ada60ff3698e7fd0c7ed0e4d93286ee28aed87f648f6748e668a57308fde5a67","impliedFormat":1},{"version":"f65e0341f11f30b47686efab11e1877b1a42cf9b1a232a61077da2bdeee6d83e","impliedFormat":1},{"version":"e6918b864e3c2f3a7d323f1bb31580412f12ab323f6c3a55fb5dc532c827e26d","impliedFormat":1},{"version":"5d6f919e1966d45ea297c2478c1985d213e41e2f9a6789964cdb53669e3f7a6f","impliedFormat":1},{"version":"d7735a9ccd17767352ab6e799d76735016209aadd5c038a2fc07a29e7b235f02","impliedFormat":1},{"version":"843e98d09268e2b5b9e6ff60487cf68f4643a72c2e55f7c29b35d1091a4ee4e9","impliedFormat":1},{"version":"ef4c9ef3ec432ccbf6508f8aa12fbb8b7f4d535c8b484258a3888476de2c6c36","impliedFormat":1},{"version":"77ff2aeb024d9e1679c00705067159c1b98ccac8310987a0bdaf0e38a6ca7333","impliedFormat":1},{"version":"8f9effea32088f37d15858a890e1a7ccf9af8d352d47fea174f6b95448072956","impliedFormat":1},{"version":"952c4a8d2338e19ef26c1c0758815b1de6c082a485f88368f5bece1e555f39d4","impliedFormat":1},{"version":"1d953cb875c69aeb1ec8c58298a5226241c6139123b1ff885cedf48ac57b435c","impliedFormat":1},{"version":"1a80e164acd9ee4f3e2a919f9a92bfcdb3412d1fe680b15d60e85eadbaa460f8","impliedFormat":1},{"version":"f981ffdbd651f67db134479a5352dac96648ca195f981284e79dc0a1dbc53fd5","impliedFormat":1},{"version":"019c29de7d44d84684e65bdabb53ee8cc08f28b150ac0083d00e31a8fe2727d8","impliedFormat":1},{"version":"e35738485bf670f13eab658ea34d27ef2b875f3aae8fc00fb783d29e5737786d","impliedFormat":1},{"version":"bcd951d1a489d00e432c73760ce7f39adb0ef4e6a9c8ffef5dd7f093325a8377","impliedFormat":1},{"version":"672c1ebc4fa15a1c9b4911f1c68de2bc889f4d166a68c5be8f1e61f94014e9d8","impliedFormat":1},{"version":"b0378c1bc3995a1e7b40528dcd81670b2429d8c1dcc1f8d1dc8f76f33d3fc1b8","impliedFormat":1},{"version":"5a0d920468aa4e792285943cadad77bcb312ba2acf1c665e364ada1b1ee56264","impliedFormat":1},{"version":"c27c5144d294ba5e38f0cd483196f911047500a735490f85f318b4d5eb8ac2cc","impliedFormat":1},{"version":"900d1889110107cea3e40b30217c6e66f19db8683964a57afd9a72ecc821fe21","impliedFormat":1},{"version":"a2e4333bf0c330ae26b90c68e395ad0a8af06121f1c977979c75c4a5f9f6bc29","impliedFormat":1},{"version":"08c027d3d6e294b5607341125d1c4689b4fece03bdb9843bd048515fe496a73e","impliedFormat":1},{"version":"2cbf557a03f80df74106cb7cfb38386db82725b720b859e511bdead881171c32","impliedFormat":1},{"version":"918956b37f3870f02f0659d14bba32f7b0e374fd9c06a241db9da7f5214dcd79","impliedFormat":1},{"version":"260e6d25185809efc852e9c002600ad8a85f8062fa24801f30bead41de98c609","impliedFormat":1},{"version":"dd9694eecd70a405490ad23940ccd8979a628f1d26928090a4b05a943ac61714","impliedFormat":1},{"version":"42ca885a3c8ffdffcd9df252582aef9433438cf545a148e3a5e7568ca8575a56","impliedFormat":1},{"version":"309586820e31406ed70bb03ea8bca88b7ec15215e82d0aa85392da25d0b68630","impliedFormat":1},{"version":"db436ca96e762259f14cb74d62089c7ca513f2fc725e7dcfbac0716602547898","impliedFormat":1},{"version":"1410d60fe495685e97ed7ca6ff8ac6552b8c609ebe63bd97e51b7afe3c75b563","impliedFormat":1},{"version":"c6843fd4514c67ab4caf76efab7772ceb990fbb1a09085fbcf72b4437a307cf7","impliedFormat":1},{"version":"03ed68319c97cd4ce8f1c4ded110d9b40b8a283c3242b9fe934ccfa834e45572","impliedFormat":1},{"version":"956618754d139c7beb3c97df423347433473163d424ff8248af18851dd7d772a","impliedFormat":1},{"version":"7d8f40a7c4cc81db66ac8eaf88f192996c8a5542c192fdebb7a7f2498c18427d","impliedFormat":1},{"version":"c69ecf92a8a9fb3e4019e6c520260e4074dc6cb0044a71909807b8e7cc05bb65","impliedFormat":1},{"version":"07d0370c85ac112aa6f1715dc88bafcee4bcea1483bc6b372be5191d6c1a15c7","impliedFormat":1},{"version":"7fb0164ebb34ead4b1231eca7b691f072acf357773b6044b26ee5d2874c5f296","impliedFormat":1},{"version":"9e4fc88d0f62afc19fa5e8f8c132883378005c278fdb611a34b0d03f5eb6c20c","impliedFormat":1},{"version":"cc9bf8080004ee3d8d9ef117c8df0077d6a76b13cb3f55fd3eefbb3e8fcd1e63","impliedFormat":1},{"version":"1f0ee5ddb64540632c6f9a5b63e242b06e49dd6472f3f5bd7dfeb96d12543e15","impliedFormat":1},{"version":"b6aa8c6f2f5ebfb17126492623691e045468533ec2cc7bd47303ce48de7ab8aa","impliedFormat":1},{"version":"18b86125c67d99150f54225df07349ddd07acde086b55f3eeac1c34c81e424d8","impliedFormat":1},{"version":"68434152ef6e484df25a9bd0f4c9abdfb0d743f5a39bff2b2dc2a0f94ed5f391","impliedFormat":1},{"version":"b848b40bfeb73dfe2e782c5b7588ef521010a3d595297e69386670cbde6b4d82","impliedFormat":1},{"version":"aa79b64f5b3690c66892f292e63dfe3e84eb678a886df86521f67c109d57a0c5","impliedFormat":1},{"version":"a692e092c3b9860c9554698d84baf308ba51fc8f32ddd6646e01a287810b16c6","impliedFormat":1},{"version":"18076e7597cd9baa305cd85406551f28e3450683a699b7152ce7373b6b4a1db7","impliedFormat":1},{"version":"1848ebe5252ccb5ca1ca4ff52114516bdbbc7512589d6d0839beeea768bfb400","impliedFormat":1},{"version":"d2e3a1de4fde9291f9fb3b43672a8975a83e79896466f1af0f50066f78dbf39e","impliedFormat":1},{"version":"d0d03f7d2ba2cf425890e0f35391f1904d0d152c77179ddfc28dfad9d4a09c03","impliedFormat":1},{"version":"e37650b39727a6cf036c45a2b6df055e9c69a0afdd6dbab833ab957eb7f1a389","impliedFormat":1},{"version":"c58d6d730e95e67a62ebd7ba324e04bcde907ef6ba0f41922f403097fe54dd78","impliedFormat":1},{"version":"0f5773d0dd61aff22d2e3223be3b4b9c4a8068568918fb29b3f1ba3885cf701f","impliedFormat":1},{"version":"31073e7d0e51f33b1456ff2ab7f06546c95e24e11c29d5b39a634bc51f86d914","impliedFormat":1},{"version":"9ce0473b0fbaf7287afb01b6a91bd38f73a31093e59ee86de1fd3f352f3fc817","impliedFormat":1},{"version":"6f0d708924c3c4ee64b0fef8f10ad2b4cb87aa70b015eb758848c1ea02db0ed7","impliedFormat":1},{"version":"6addbb18f70100a2de900bace1c800b8d760421cdd33c1d69ee290b71e28003d","impliedFormat":1},{"version":"37569cc8f21262ca62ec9d3aa8eb5740f96e1f325fad3d6aa00a19403bd27b96","impliedFormat":1},{"version":"e0ef70ca30cdc08f55a9511c51a91415e814f53fcc355b14fc8947d32ce9e1aa","impliedFormat":1},{"version":"14be139e0f6d380a3d24aaf9b67972add107bea35cf7f2b1b1febac6553c3ede","impliedFormat":1},{"version":"23195b09849686462875673042a12b7f4cd34b4e27d38e40ca9c408dae8e6656","impliedFormat":1},{"version":"ff1731974600a4dad7ec87770e95fc86ca3d329b1ce200032766340f83585e47","impliedFormat":1},{"version":"91bc53a57079cf32e1a10ccf1a1e4a068e9820aa2fc6abc9af6bd6a52f590ffb","impliedFormat":1},{"version":"8dd284442b56814717e70f11ca22f4ea5b35feeca680f475bfcf8f65ba4ba296","impliedFormat":1},{"version":"a304e0af52f81bd7e6491e890fd480f3dc2cb0541dec3c7bd440dba9fea5c34e","impliedFormat":1},{"version":"c60fd0d7a1ba07631dfae8b757be0bffd5ef329e563f9a213e4a5402351c679f","impliedFormat":1},{"version":"02687b095a01969e6e300d246c9566a62fa87029ce2c7634439af940f3b09334","impliedFormat":1},{"version":"e79e530a8216ee171b4aca8fc7b99bd37f5e84555cba57dc3de4cd57580ff21a","impliedFormat":1},{"version":"ceb2c0bc630cca2d0fdd48b0f48915d1e768785efaabf50e31c8399926fee5b1","impliedFormat":1},{"version":"f351eaa598ba2046e3078e5480a7533be7051e4db9212bb40f4eeb84279aa24d","impliedFormat":1},{"version":"12aeda564ee3f1d96ac759553d6749534fafeb2e5142ea2867f22ed39f9d3260","impliedFormat":1},{"version":"4ce53edb8fb1d2f8b2f6814084b773cdf5846f49bf5a426fbe4029327bda95bf","impliedFormat":1},{"version":"85d63aaff358e8390b666a6bc68d3f56985f18764ab05f750cb67910f7bccb1a","impliedFormat":1},{"version":"0a0bf0cb43af5e0ac1703b48325ebc18ad86f6bf796bdbe96a429c0e95ca4486","impliedFormat":1},{"version":"563573a23a61b147358ddee42f88f887817f0de1fc5dbc4be7603d53cbd467ad","impliedFormat":1},{"version":"dd0cad0db617f71019108686cf5caabcad13888b2ae22f889a4c83210e4ba008","impliedFormat":1},{"version":"f08d2151bd91cdaa152532d51af04e29201cfc5d1ea40f8f7cfca0eb4f0b7cf3","impliedFormat":1},{"version":"b9c889d8a4595d02ebb3d3a72a335900b2fe9e5b5c54965da404379002b4ac44","impliedFormat":1},{"version":"a3cd30ebae3d0217b6b3204245719fc2c2f29d03b626905cac7127e1fb70e79c","impliedFormat":1},{"version":"bd56c2399a7eadccfca7398ca2244830911bdbb95b8ab7076e5a9210e9754696","impliedFormat":1},{"version":"f52fb387ac45e7b8cdc98209714c4aedc78d59a70f92e9b5041309b6b53fc880","impliedFormat":1},{"version":"1502a23e43fd7e9976a83195dc4eaf54acaff044687e0988a3bd4f19fc26b02b","impliedFormat":1},{"version":"5faa3d4b828440882a089a3f8514f13067957f6e5e06ec21ddd0bc2395df1c33","impliedFormat":1},{"version":"f0f95d40b0b5a485b3b97bd99931230e7bf3cbbe1c692bd4d65c69d0cdd6fa9d","impliedFormat":1},{"version":"380b4fe5dac74984ac6a58a116f7726bede1bdca7cec5362034c0b12971ac9c1","impliedFormat":1},{"version":"00de72aa7abede86b016f0b3bfbf767a08b5cff060991b0722d78b594a4c2105","impliedFormat":1},{"version":"965759788855797f61506f53e05c613afb95b16002c60a6f8653650317870bc3","impliedFormat":1},{"version":"f70a315e029dacf595f025d13fa7599e8585d5ccfc44dd386db2aa6596aaf553","impliedFormat":1},{"version":"f385a078ad649cc24f8c31e4f2e56a5c91445a07f25fbdc4a0a339c964b55679","impliedFormat":1},{"version":"08599363ef46d2c59043a8aeec3d5e0d87e32e606c7b1acf397e43f8acadc96a","impliedFormat":1},{"version":"4f5bbef956920cfd90f2cbffccb3c34f8dfc64faaba368d9d41a46925511b6b0","impliedFormat":1},{"version":"0ae9d5bbf4239616d06c50e49fc21512278171c1257a1503028fc4a95ada3ed0","impliedFormat":1},{"version":"cba49e77f6c1737f7a3ce9a50b484d21980665fff93c1c64e0ee0b5086ea460a","impliedFormat":1},{"version":"9c686df0769cca468ebf018749df4330d5ff9414e0d226c1956ebaf45c85ff61","impliedFormat":1},{"version":"89d5970d28f207d30938563e567e67395aa8c1789c43029fe03fe1d07893c74c","impliedFormat":1},{"version":"869e789f7a8abcc769f08ba70b96df561e813a4001b184d3feb8c3d13b095261","impliedFormat":1},{"version":"392f3eb64f9c0f761eb7a391d9fbef26ffa270351d451d11bd70255664170acc","impliedFormat":1},{"version":"f829212a0e8e4fd1b079645d4e97e6ec73734dd21aae4dfc921d2958774721d0","impliedFormat":1},{"version":"5e20af039b2e87736fd7c9e4b47bf143c46918856e78ce21da02a91c25d817e8","impliedFormat":1},{"version":"f321514602994ba6e0ab622ef52debd4e9f64a7b4494c03ee017083dc1965753","impliedFormat":1},{"version":"cc8734156129aa6230a71987d94bdfac723045459da707b1804ecec321e60937","impliedFormat":1},{"version":"bb89466514349b86260efdee9850e497d874e4098334e9b06a146f1e305fca3f","impliedFormat":1},{"version":"fc0ee9d0476dec3d1b37a0f968e371a3d23aac41742bc6706886e1c6ac486749","impliedFormat":1},{"version":"f7da03d84ce7121bc17adca0af1055021b834e861326462a90dbf6154cf1e106","impliedFormat":1},{"version":"fed8c2c205f973bfb03ef3588750f60c1f20e2362591c30cd2c850213115163b","impliedFormat":1},{"version":"32a2b99a3aacda16747447cc9589e33c363a925d221298273912ecf93155e184","impliedFormat":1},{"version":"07bfa278367913dd253117ec68c31205825b2626e1cb4c158f2112e995923ee8","impliedFormat":1},{"version":"6a76e6141ff2fe28e88e63e0d06de686f31184ab68b04ae16f0f92103295cc2a","impliedFormat":1},{"version":"f05d5d16d85abe57eb713bc12efefc00675c09016e3292360e2de0790f51fa48","impliedFormat":1},{"version":"2e3ceed776a470729c084f3a941101d681dd1867babbaf6e1ca055d738dd3878","impliedFormat":1},{"version":"3d9fb85cc7089ca54873c9924ff47fcf05d570f3f8a3a2349906d6d953fa2ccf","impliedFormat":1},{"version":"d82c245bfb76da44dd573948eca299ff75759b9714f8410468d2d055145a4b64","impliedFormat":1},{"version":"6b5b31af3f5cfcf5635310328f0a3a94f612902024e75dc484eb79123f5b8ebe","impliedFormat":1},{"version":"db08c1807e3ae065930d88a3449d926273816d019e6c2a534e82da14e796686d","impliedFormat":1},{"version":"9e5c7463fc0259a38938c9afbdeda92e802cff87560277fd3e385ad24663f214","impliedFormat":1},{"version":"ef83477cca76be1c2d0539408c32b0a2118abcd25c9004f197421155a4649c37","impliedFormat":1},{"version":"2c3936b0f811f38ab1a4f0311993bf599c27c2da5750e76aa5dfbed8193c9922","impliedFormat":1},{"version":"c253c7ea2877126b1c3311dc70b7664fe4d696cb09215857b9d7ea8b7fdce1f0","impliedFormat":1},{"version":"332dfac79cd245f6dd595be9ce23ff02ba94f1836118746cab40a6415d4fa362","signature":"baa48b5167d7758da17c1d42e189ca54fec7686ba1e708ed723eb8925b279b97"},{"version":"67d663ebaac889fe2078375954ca6576dc2f17106cd82545ca35fb958d9f944c","signature":"6ee156ded710046a44efb0815ac661195b99add6dc130a359c611e69bd18c294"},{"version":"9ee7400572d8c9ac5431f22522670e21c43fd28ad2d2d3ef5c82564e2fa6e576","signature":"fbe048bb2cba576d08927c1a2bbeb324d715239ce328e693a267c69f522c8458"},{"version":"6ddef3de7f7a6f0a7a9c9334930123711d1cd34a9bb5abb1eab62841add72dd0","signature":"6d3d84ba75527d23478add5f48bc2691334c5eae7ea5c803f37a8ca4e1b95ad3"},{"version":"a4a28da045178db6765d8db0c037a0a092cea994029a4b85b548a979cd0ec5ad","signature":"e64cfde3f954fd44d1a475c7f926361b18ebe51f5ce29a3a7e51480a77398a10"},{"version":"caa86a423586839e03bd358acf1afdbf61a3bdd3d19de9ac40fb773b4f4aa945","signature":"6868ea1d216d96c5a7ace4deef218c2be8c6db80eef960a688fa4a082431417f"},{"version":"4e4c1f346434f385abbb762e48434930889edd661bda602f6693867dafe25240","signature":"e398809466f97801f1c9b29acbe2d29be349d7b9bdf2563a506c5605740aa58a"},{"version":"ef914f5968b91a1dd8e40ec57a6ee35253e6358129a754bb78c5dc01f54fae9a","signature":"595ce5e674e6cedb8d0e8291f588d187e130d12c1be9e9381cd5888a9dff87fb"},{"version":"bae05b31e0448ffc2a9d3a5528432410781493cfa29253f2d230421564d4bb43","signature":"091082c4a7669c340403c44a614eceae1fe81473e8b253ce1355d6a9868d3f0a"},{"version":"30445ccf3edad11ace5eaf7a46b3c3bc64a44a8f9e0032e1d5444e665d10bf4d","signature":"fbeb4b9d0dfd0970989239bde8bea8e914e9239a6e1bbf134b824320b21f6c9f"},{"version":"fcb6958b0e492fb1082ea67c9359dc15fb6391e0f2a45af96455dcdf57df4e38","signature":"984f8b8f00e048a588c1237d37b61026ebc9f32bccbb8615268b927c6f02b557"},{"version":"576380a60158b8d1e3db62aede81d547e79344e4aa33b01ddddbfb3f8c3116cd","signature":"442a38e651d273faa6a3e50995d87e34da0ab463c141483053dba5514d86dc8d"},{"version":"911b5cc6d381721238763df07666ae64c0e02f722c8a00117f1c2d222f616312","signature":"70973ccbc92f59fe897d117aafcb64964fa1e5cce80f0539b9ee4ac037090d56"},{"version":"451ff3f6d191b63c6a5cc63201a34579ec3a3433fe4ffd30fa19c2502078a75a","signature":"bbe19a5a131382ff7ec86973c386fd446e426af370b03aeb591b8990d4d0ec1a"},{"version":"d3f2d715f57df3f04bf7b16dde01dec10366f64fce44503c92b8f78f614c1769","impliedFormat":1},{"version":"9a8467579929d729fe377a449d68ccb3b1795414716e4b3d31adeca3c2dbc915","impliedFormat":1},{"version":"e2929f4f3c0dcd2aa89636f59ff304b89998d63cc3be3d6eb9c638e8a27566e1","signature":"9871d05ac208242b874c607c5e87c7878b725d1e5b7010d61086d6106394893c"},{"version":"1ba59c8bbeed2cb75b239bb12041582fa3e8ef32f8d0bd0ec802e38442d3f317","impliedFormat":1},{"version":"672d8da4b8220a64834e531dd1353610cc8af4603550843b342a6638ee5247ca","signature":"b6fede823d380aabe8fd8759a5f05cb0b60b42f02a69a811bee511e900eff2d1"},{"version":"fca4dc68dcd1b0e5b3db27c3201484a4ccb25c246bda675e723542a025ecac00","signature":"8e609bb71c20b858c77f0e9f90bb1319db8477b13f9f965f1a1e18524bf50881"},{"version":"2c075fcf629713a7092582a33e7345a8a1282336b175dc687a9ba5bcbbf2c1d9","signature":"7184f6dcd9c868f2bec500ad7661841458f1c65e6828a835472eaa656d043b7d"},{"version":"4f1f2067a1649d72c0c265e0ba0996a199fcff281baeb1b4fc89bdfcd1d7d978","signature":"4a3da342795df706df18105d0c45447f57c0519d39dac069636cd1b55e14355b"},{"version":"8704edae14745b05be645cdb4d4a387ec47c2500b9ca506b2921509a7fea5a86","signature":"be1ffeefaf211154b3073865786f53df627646f93b38bd61c1b01a40638147ef"},{"version":"a3a48fbe8782048f74752a1ef300ade63777f62bca44aadd9bd99a4ebdf9b9eb","impliedFormat":1},{"version":"88e6ddbf1bb445b1d072414f1768f121c4094c56b6ce9c92db99fda74bb763ba","signature":"168bcdbbedf9cc0b18bf0f946d4fe81d646d3434c20d0b00bc59788164835f97"},{"version":"4fa8f53004747bc2051f43424e4ec38bc54ce4229d4f0fd78bfc52ec884fd7c6","signature":"68692d420dd00165582fc487f4a18010e0cc887ff6cb6ff6b0a2830091bec3f8"},{"version":"506c8aac5efecd12a7992cce4ab0cbbb3465b2f2a1a4e97c2046990670e5f524","signature":"a178e93f7372ac72e13589cafa3de2d6cd916f1a8bdf21b2f30adeedc0f0a166"},{"version":"e45ce3f87ed330b01197c9b5e5fc43efbe85954d192f348e7a3bfbe2d1b1abcb","signature":"406f393436e36b7f67c55ac27c8cbf6cb9b42950f354090d1eae37e628e2e8ee"},{"version":"99754e0aecbc2259ec46128ec6f789f4ba156b30b10e3dc77ad9bb2ffa3816cb","signature":"f4f4d057da00affdfc4baca22ab373f7545c7b7689aa57212865cffeb00e72c6"},{"version":"c67182e85143e829114970108944bce4b7a191f1276e14871fc0c84d94816ee3","signature":"190606b13cb4ea65b54c174fbcddb88065c4f1f0f2df639c4bf5cd9c92f8492f"},{"version":"4c2678347e27421f685df1b746dc765e0cac8e22161724503e39a0f69ba9e7f3","signature":"dffccd14974beb74f84efd173f8ddb090f676a3638076ad05704b2249b5ab2f7"},{"version":"05d39d0921be6d0d6bba3e27b7d8e87b0cdc1a32bc18f58c709730affafc3df0","impliedFormat":99},{"version":"743dc2ad038c6334eb345e678558dee6a82276657b8097baa53f3a21dd183250","signature":"dffccd14974beb74f84efd173f8ddb090f676a3638076ad05704b2249b5ab2f7"},{"version":"fb6bb86654fb9b526391996b6ff76f4ffdb7bdea6be5845ac0bc08475e014013","signature":"48d0329de7dac59a18c3dc030fe1e6aacdf5017444df7fbe0071071ee5a083ae"},{"version":"23b5d416bc4d5abf5d869c72eaf1ad1dcec0d97d05a29ac7baac0ea93fdec6a8","signature":"6c7ccbfb47a36c757130dd9b97ba1df56929bf5d99cedc6c251d4928b4fef019"},{"version":"f74c17ddf087e66c92a1603b742faf9cc78480e7ad472f18afab5b7a547fed02","signature":"dffccd14974beb74f84efd173f8ddb090f676a3638076ad05704b2249b5ab2f7"},{"version":"23bbca29d9036a994f0b362654ecfd41e6959d5f12394d9baa33211e6bb2c3c6","signature":"812199d11b8c1d84b704e1c3a66ac1e1f681f10e4e3529f5668991220741b65b"},{"version":"794e2832ae16249aadd382e7b6755b3ebb7ff59f0d31584473e6924940734249","signature":"8e609bb71c20b858c77f0e9f90bb1319db8477b13f9f965f1a1e18524bf50881"},{"version":"2b0b153fd4059da8d8f964c8bc9bbc3b989f92742854be59524f72ac0036e74e","signature":"b208d4247dfbd9d5d9c5f1b23fb47d16cb0aaefe0363aa60e42eca816e993f48"},{"version":"5e475f93321a19ab58d2c98054d50e88ab81fabcacd6532162ba9086027caba6","signature":"8e609bb71c20b858c77f0e9f90bb1319db8477b13f9f965f1a1e18524bf50881"},{"version":"1fcee44be848a6a354db60c3b4d766ced8b8874393d3e6e1ec19f2e7a554942b","signature":"60016b81be78c97ee4b427cc4c89bf330dbe8db0f977a4f6aac649d0e32931b8"},{"version":"bddc8143c3b0fe2a6462f9811d3b28ea422ffee80d75d3d97d65d6b69f583fad","impliedFormat":1},{"version":"151ff381ef9ff8da2da9b9663ebf657eac35c4c9a19183420c05728f31a6761d","impliedFormat":1},{"version":"f3d8c757e148ad968f0d98697987db363070abada5f503da3c06aefd9d4248c1","impliedFormat":1},{"version":"851fe8b694793c8e4c48c154847712e940694e960e33ac68b73e94557d6aff8d","impliedFormat":99},{"version":"8a190298d0ff502ad1c7294ba6b0abb3a290fc905b3a00603016a97c363a4c7a","impliedFormat":1},{"version":"ed1441df2b8bbbd907f603490cb207f44141fe191b20be2f270e8de69bfa194a","impliedFormat":1},{"version":"aa5e0d12e17c49e183e908cf0e106e9d0d9f667a18f507822aeac4f664fa5825","impliedFormat":1},{"version":"44250e445c91e1fd3088fe6c88fe183fd6954fdc41d3bb198bae35924b611699","signature":"4f19aa0f308fa24addb3c8d447675533ab4347617130770c342f80a7991ae204"},{"version":"73654b61c6426f80d714e629f72c002eebb3e96b3073a484bcd497019cf143e5","signature":"faa15451f167dadb23b46302bbc7d35605e0f0a34919a837095e6dbdf7c08e27"},{"version":"9434cedc48fdd2d17ebf49efef91785512d7a6f0220edfcd66b699cdd5b86faf","signature":"5ff296746aa8981b8b279c2aa7f1ab6cfc50b1f6b2203cef0acedb131dabd07f"},{"version":"5c408b25cd8465ad88e39c055eab8db6ae1ddc16a6cc34165ac92e28a04179f7","signature":"2969bce2d7202d9a8ac217a6f9768eae438230d8610b55f88f804fbf2c719b62"},{"version":"b7665b932ddbd9e6528c65f6d52eb16fce2c169cf5a2b810c5b80a8a64a668a1","signature":"8e609bb71c20b858c77f0e9f90bb1319db8477b13f9f965f1a1e18524bf50881"},"e3b0c44298fc1c149afbf4c8996fb92427ae41e4649b934ca495991b7852b855",{"version":"dccc2fba20d0aa23bbd6d7e99b10d4250987a150555f0f4baaacfc41b497ef23","signature":"bcda5412ccb8e6d1ecfe2b560375fdc46bd84f2981b2bf849b5a5ef7db43dc69"},{"version":"2da43e6bf5fec3037497607ce3a0db0abe1067035e951d24dd1763c1eb031765","signature":"bcda5412ccb8e6d1ecfe2b560375fdc46bd84f2981b2bf849b5a5ef7db43dc69"},{"version":"3dddab8cb67a9e578de64b0a5ba241eee32f09c5b42be9780cda05eedf6d1626","signature":"bcda5412ccb8e6d1ecfe2b560375fdc46bd84f2981b2bf849b5a5ef7db43dc69"},{"version":"427fe2004642504828c1476d0af4270e6ad4db6de78c0b5da3e4c5ca95052a99","impliedFormat":1},{"version":"c8905dbea83f3220676a669366cd8c1acef56af4d9d72a8b2241b1d044bb4302","affectsGlobalScope":true,"impliedFormat":99},{"version":"5250ac9de18846ed8fa771d2f0fd710c6e2e3f2f8a507781d8e0f2ab007ef4b1","signature":"844f26a122b37b60d79708a0044597315e740e8b984ffdc3bfd5151918dff41c"},"e3b0c44298fc1c149afbf4c8996fb92427ae41e4649b934ca495991b7852b855","e3b0c44298fc1c149afbf4c8996fb92427ae41e4649b934ca495991b7852b855",{"version":"549df62b64a71004aee17685b445a8289013daf96246ce4d9b087d13d7a27a61","affectsGlobalScope":true,"impliedFormat":1},{"version":"8a8eb4ebffd85e589a1cc7c178e291626c359543403d58c9cd22b81fab5b1fb9","impliedFormat":1},{"version":"87d9d29dbc745f182683f63187bf3d53fd8673e5fca38ad5eaab69798ed29fbc","impliedFormat":1},{"version":"f6c80864402c15ee5477383b4503cabf80976913c5a789995a529fdb45264950","affectsGlobalScope":true,"impliedFormat":1},{"version":"170d4db14678c68178ee8a3d5a990d5afb759ecb6ec44dbd885c50f6da6204f6","affectsGlobalScope":true,"impliedFormat":1},{"version":"d4d7d3f832882a4b2d611a7eaaa80c780c3342b5732090130fa9af4a40bd051e","impliedFormat":1},{"version":"f0255fc627076156b2d8daf73e118fb8ba22290e78d1217933ae228d92a9784d","impliedFormat":1},{"version":"bb04fc85a6130c5b624494e5dee1c2047f0ecfbc1e94d224a7e9f1947332a26f","signature":"107925194bbf97d278b9e787423c689dcdf12f5c3a188bf9452559bd2fb57c5f"},{"version":"246fcebda9af5f5100e6e935f1a0a083be9c3472139b431a102340f128b89a0a","signature":"a277f29aa59692de3e3343b700a687568e0b8ef378f03656da2fd64addcf3882"},"e3b0c44298fc1c149afbf4c8996fb92427ae41e4649b934ca495991b7852b855",{"version":"d78fd6f24b8bed81accb9c8b0ddb854530a127e9ec85f6f67eda8ba11071f9a1","signature":"913bf9c63733fd2fa7950db719632fc4ef50c50123523d4559d9db373816fd54"},{"version":"1076e89a22d37fe1d6aa81c7c81e65c662cefc22058bc0ccc2afc0ad82e3b7a0","signature":"30c568cfe18ad936c9007496d25be515296e75987dcdb9f0feee2b3cd8e5dbcd"},{"version":"3853ce82c0dad022d13e160035f56e152978bf1ec713cb2be1dc71dab7e9a584","signature":"edaeb8ade86d6f7d0fc263d69844408febd6c957db660af38ccce2a008d30815"},{"version":"594eacf1a670bda94a3aa695ec97e3ad5d9437f643179c57a87282cc9eb3cc77","signature":"a5b4ce65566b8cfd80b9c8f737827d54cf1116039ba31a621d981d383fae86f5"},{"version":"8167ca674594819d2e3aba4f1e794f0165dcfa5a589ae3bc5a7cf1c358d9dac1","signature":"30c568cfe18ad936c9007496d25be515296e75987dcdb9f0feee2b3cd8e5dbcd"},{"version":"905e543f34d5b01a7683c21b7174e86553add789e8e73322574e8986a01320bd","impliedFormat":1},{"version":"68ef0b6784a7d4508e8099a8fbaa1836a023676589b76eb1463973dff39645f6","impliedFormat":1},{"version":"95c78cf183c5e9111e91d895a481dbf13ee29a0a95ef1c1d37513e1cfe913735","impliedFormat":1},{"version":"23e847832c900bd2360edc9a42a056137344f79aa1b43d72fa8ea3ee107aae73","impliedFormat":1},{"version":"7c52a6d05a6e68269e63bc63fad6e869368a141ad23a20e2350c831dc499c5f2","impliedFormat":1},{"version":"4fb9e98536b7318332003b303f87c18f82767ee03a5ea45a24d4d5a52c0aa4ce","impliedFormat":1},{"version":"4f04aea27052a12a002f0fbd11232480d96271061535402a41ab07ccc653c24e","impliedFormat":1},{"version":"e5b63a24ca97f2f112ad6ee4907c69da2da1bb17d88bc78d661caab7ec752137","impliedFormat":1},{"version":"d4066357a89663d4c2f3ad413215114fc0913127c92e1f53b18b8fa834f868c6","impliedFormat":1},{"version":"6b83014e919aa4065dcd1f3979e4a36615515809344e9091e6fac7f8a49806b0","impliedFormat":1},{"version":"dbc06330145e5a66bf5e581cf5756d8fcc4f1759ceb54a2dc5bac0b5ebfa8d68","impliedFormat":1},{"version":"b32e93ba638ba1264c051966d9722733dbfedff365d38fdb982ea5bf7c5ed56c","impliedFormat":1},{"version":"70a29119482d358ab4f28d28ee2dcd05d6cbf8e678068855d016e10a9256ec12","impliedFormat":1},{"version":"869ac759ae8f304536d609082732cb025a08dcc38237fe619caf3fcdd41dde6f","impliedFormat":1},{"version":"0ea900fe6565f9133e06bce92e3e9a4b5a69234e83d40b7df2e1752b8d2b5002","impliedFormat":1},{"version":"e5408f95ca9ac5997c0fea772d68b1bf390e16c2a8cad62858553409f2b12412","impliedFormat":1},{"version":"3c1332a48695617fc5c8a1aead8f09758c2e73018bd139882283fb5a5b8536a6","impliedFormat":1},{"version":"9260b03453970e98ce9b1ad851275acd9c7d213c26c7d86bae096e8e9db4e62b","impliedFormat":1},{"version":"083838d2f5fea0c28f02ce67087101f43bd6e8697c51fd48029261653095080c","impliedFormat":1},{"version":"969132719f0f5822e669f6da7bd58ea0eb47f7899c1db854f8f06379f753b365","impliedFormat":1},{"version":"94ca5d43ff6f9dc8b1812b0770b761392e6eac1948d99d2da443dc63c32b2ec1","impliedFormat":1},{"version":"2cbc88cf54c50e74ee5642c12217e6fd5415e1b35232d5666d53418bae210b3b","impliedFormat":1},{"version":"ccb226557417c606f8b1bba85d178f4bcea3f8ae67b0e86292709a634a1d389d","impliedFormat":1},{"version":"5ea98f44cc9de1fe05d037afe4813f3dcd3a8c5de43bdd7db24624a364fad8e6","impliedFormat":1},{"version":"5260a62a7d326565c7b42293ed427e4186b9d43d6f160f50e134a18385970d02","impliedFormat":1},{"version":"0b3fc2d2d41ad187962c43cb38117d0aee0d3d515c8a6750aaea467da76b42aa","impliedFormat":1},{"version":"ed219f328224100dad91505388453a8c24a97367d1bc13dcec82c72ab13012b7","impliedFormat":1},{"version":"6847b17c96eb44634daa112849db0c9ade344fe23e6ced190b7eeb862beca9f4","impliedFormat":1},{"version":"d479a5128f27f63b58d57a61e062bd68fa43b684271449a73a4d3e3666a599a7","impliedFormat":1},{"version":"6f308b141358ac799edc3e83e887441852205dc1348310d30b62c69438b93ca0","impliedFormat":1},{"version":"f16aba91e2c61a7212ad4168386e272a871a351887e39115a36d25f770eb4c52","impliedFormat":1},{"version":"2d3f369fb236a9f726e00a3c5ca3e72f7b32ef56b2f542bed834d43a8ee300af","impliedFormat":1},{"version":"819cef4173bb37e7e8d523e88154af2329a4a258ccc036720cfcb217791b3868","impliedFormat":1},{"version":"e7cbe066de1dee3ea5fe58926aea6f1a07b1e71778fd8ff7144d4285574c7ed2","impliedFormat":1},{"version":"0d04b6c350398090d56a4e5bda575a560c95fdea6106f9744b5cc0905aab2553","impliedFormat":1},{"version":"e90f8bf88ed262c122d7f30c06e7f67c446e6e5236baed71ebafec7998b3f645","impliedFormat":1},{"version":"1ee226af7851d92c2fdc09c7ba8f84036d991edbda398a217e173821d62ad379","impliedFormat":1},{"version":"dd277157cf6aa8e937ad497026495adac453a064d7f9637c63a81b74d70d84e0","impliedFormat":1},{"version":"b84d5aeda18459510f6da1b821bce917622c51e184d1d58415ee3dc48d6180ef","impliedFormat":1},{"version":"bbe2b0d328e116df2e8cf8c2de9a078758fd422e6f0e117a3c73ac2e02855a2f","impliedFormat":1},{"version":"64eb63ecf54f8771bbadf72043ed4e6e47eed4b11bd24e3ef9937663b9911e43","impliedFormat":1},{"version":"7837dda0e930b2849976141cd7ad0637703f4cca76ff8539e4c76ac07dd678ca","impliedFormat":1},{"version":"04008a524815b9509d7d64dda18bf4594311a415dbbb271521d1078cb1c7850b","impliedFormat":1},{"version":"86c3a40fa2deabd9d08b8d835f12d2e6fb8bc2e572006c4f3302a2b4589ad9db","impliedFormat":1},{"version":"8f306dabdc2e130f1926f6abd04d233fd84ccf071e3d745a971112dcc87e591b","impliedFormat":1},{"version":"f41b3bea6012d76f83097c1079d99406054a22d04156afc9eb3955f9b288f8eb","impliedFormat":1},{"version":"f37d987a6b846dd948d310bf165ab4ac2327bc0d06182323920ef17a1852bec3","impliedFormat":1},{"version":"16a0a00c9b190a519950aadf21f16a7df1baf2346d64c4c054ad5f7fb71ea8ee","impliedFormat":1},{"version":"a228c6353575a3d21c2f579a4e860e6542950577f451062fdc578b02c95c22e3","impliedFormat":1},{"version":"90ed0b14083410a072cbf480a863e7f8ed7202ffb9ba625420a1b2455add33bb","impliedFormat":1},{"version":"1a75cca03c3c8f71f1a37618b2d3be5649630476761b59137245ec21110bfedf","impliedFormat":1},{"version":"9751ea85dad9ad6ceeae8fe142daf4d83ea78bede9d5424a326ad0869900ccf7","impliedFormat":1},{"version":"59cbc2704d281fce3f397e90e823117835deb20535ca8212f153f3bc74d811c6","impliedFormat":1},{"version":"74c20308aeb6da88368e0418a437d9718d10256ea50b6f428f56e0b982ec3229","impliedFormat":1},{"version":"21d78bad604829fe443eb962b7f00a17343fe621c2ac57114c7175bec879e17b","impliedFormat":1},{"version":"a0b27ac9a3c290c7281f922c1dd62afa02f76be63d1fff952f6348ffb019dce3","impliedFormat":1},{"version":"0b2cf5124c5f89d443dfdd7cae61a6a0b528a8e951ce6a00f3c7ab1ba0d2d534","impliedFormat":1},{"version":"e012ff0c33485d340ab68fa820d3372296b17efdb6e5cdc29ec99b82a8b159b0","impliedFormat":1},{"version":"3f563bff747def979af181255d09daf1566829c5817266ad4c289118e3cb39ae","impliedFormat":1},{"version":"51057e067bc5db4f55572329981b9ecd0e3d3b96c2b62fdb1dd0ccead1088e43","impliedFormat":1},{"version":"82f64bdecc73474993d9a44dec8ef0d3c02121580aa02072045bedab11ec882e","impliedFormat":1},{"version":"b7db045ad68ab5695ea97e40865a5981f146a62aa86f1261ad1aab59dd76e3c0","impliedFormat":1},{"version":"e90591e0e9e1b3ed53963b26c307bfe74f09131581f5ce6ed76a87f748d99991","impliedFormat":1},{"version":"52af945810b09a08235b252421270e767303cdf9b932bc5f957b2538f38a02d1","impliedFormat":1},{"version":"53029155e358b3b324dd5e38332f1809848e601057823892a9e77b6b3a9d140e","impliedFormat":1},{"version":"313f55101d2baeb5f01dc30f100d136190debad5ffa4453581843efa3219689a","impliedFormat":1},{"version":"05e638a171f5969fca61933d6d89f30f5acbbc70b74d2539957a688a5292b55c","impliedFormat":1},{"version":"43dd0f8de489f3111652b6c425cd01bb9259234bef62761440d2a982cb9d958e","impliedFormat":1},{"version":"0a36bd27b6af811f763d5f1254637ce9300574f02e875f5e1b23110829357e38","impliedFormat":1},{"version":"3ea0e65a45f7006261c963f7abcac37a91513eadf72aeef909cb2ad7676cc4f1","impliedFormat":1},{"version":"5637b24d008a13b63ac8e76579e3c0e595db5c4052bc052414a5fc4f57545bf5","impliedFormat":1},{"version":"909d0a3ae5c7e3aa435f53cbbeaec617a489283076c61f0cc0f73452e0c6232f","impliedFormat":1},{"version":"e75c93d9068a6664e2e2827a720def5d5bf6532af5952a6b8fe3eee440ca6b5c","impliedFormat":1},{"version":"62f95fcace684999ebca0823e7751a39c8738c4fc01dfa4d1334c1b32b026466","impliedFormat":1},{"version":"f5f29a11cc28ee80696a7210b16e263fd5136ff04a79bf5df55ede3a4e68b3e9","impliedFormat":1},{"version":"cf3e2bee2220a6805904d14bf54d2c9e0ad3bf6d76add9244535f8ac34b919e4","impliedFormat":1},{"version":"98d88c8fd633d0054e791714742e9537b74a68d38a7ff81374e6a61242cea221","impliedFormat":1},{"version":"fcc19e67c9aa935dfd3e3d38d2b3d2b8215ccb28bc6106d159ed1ae65d667f73","impliedFormat":1},{"version":"e6f249463d9c5f898b1d0511c58dee7c3e3fe521fd6758749bf12be49e4e937f","impliedFormat":1},{"version":"3cf11201c92c4e7caf2696e144fa3fb524c6cb25157bb253a2beded585f410cf","impliedFormat":1},{"version":"d3c220e75847aa7bc24784572947bd48b843d094b22ae4899a45788f2ba70a43","impliedFormat":1},{"version":"818ea1645d3b08a7c3c4b84c32b4a18eb9f217e46dc8860fc751795ed14bdee0","impliedFormat":1},{"version":"943a5d4c85180884f41e96002f86848bb8c3dab9eb03c57c97aec80569e75957","impliedFormat":1},{"version":"d85d01cb4e957275b938d81e3cba52cefdda8b9c8bf84bbc5c70723b11aae30c","impliedFormat":1},{"version":"283b61717cf35dd0e5cea0726939556d12cd2b42317df2c58bebea511af0b2d5","impliedFormat":1},{"version":"3e612b62fb8e14ddff1770c41973c96eed5b6f9e5f01993f466f59af57f58f61","impliedFormat":1},{"version":"3923de820ed7c8998bd8170c8adb87721cbbe21637ba02c9c2dcb5e7d95b789b","impliedFormat":1},{"version":"aa25eafdac0666baec3e57ec29c08f06b9e21a584cff8d02455afb6e87be152d","impliedFormat":1},{"version":"e01827704d246accce473fe8e52cae498035950d9fa1673969502d65cd009295","impliedFormat":1},{"version":"a558a5b0db5e2a479a788d428012fd9172b20f51b4002523ca2ed40380ed7f24","impliedFormat":1},{"version":"5cd0a91bb8dccc1987e7cf77e5329de6388b5b14eb63d128607cc0465047ffe8","impliedFormat":1},{"version":"ba779307aa6dcbf7212d09d38e9776e923dcb367ed64f829e5b281b60bc658db","impliedFormat":1},{"version":"ce90309f156c74316186ddaa1384db82cc6d4ef0f0211ee8d07513aaaa3bd1e3","impliedFormat":1},{"version":"c58f4a7ebfa3c20f5892b2c363072bc78667f6b7ffa218c8e3898f98a0990064","impliedFormat":1},{"version":"af7fd2870746deed40e130fc0a3966de74e8f52a97ec114d0fbb35876ab05ca9","impliedFormat":1},{"version":"0166ee5d09e966ff268ccc6ee9a40a025409a18d2114a73fc7612d8fd730927a","impliedFormat":1},{"version":"264f4b5c51f7d901df3ee079949634e339b5fe157ae309ceed45192c63f9af8b","impliedFormat":1},{"version":"9869582ad4db8288b337d2aa1d0f6a44ac1f6d37e72f19f53188c520b652055a","impliedFormat":1},{"version":"04ef38fa44488af63b6927e529ccd1092532d5d8a17c8edf96d1d288d1897616","impliedFormat":1},{"version":"b2d00031dbf4cae85311aaac009fbba3d1b0b4f2e72ab690a86526e740427623","impliedFormat":1},{"version":"1122f8ac0822eeeb7cf7de02886c71109237d940be5234bc878e9f74a314cb47","impliedFormat":1},{"version":"0cf348cf10db213803bc6f041183db473759ab1e8676d826bc6139ddcad84665","impliedFormat":1},{"version":"047719aed544e716b2243212264bc2e14a1da0d1c710fe6209e228981dc82ae4","impliedFormat":1},{"version":"47a03bf1241779ad40a0cd2982526cf7547557d720d4db2df410ee166c60aa89","impliedFormat":1},{"version":"922248fee358d198745ea609ed4c2b2d87a49299fb6be7a1d229a184bbf66fd5","impliedFormat":1},{"version":"4b4cd67fd08f4a39397ad27ea21468efe758b6e58606984db94e49e6c9186b96","impliedFormat":1},{"version":"223aff866672813df1b2caafd82b5dbbbbbff07e6994bbd5747df7549c75c427","impliedFormat":1},{"version":"a37a6e239d0aae9d850b48e4cb55b548162fabadb92beb6d7d0579abc61f5bf0","impliedFormat":1},{"version":"a06aded6e43b0e09545f26957e5c0a5b4514d327f4b962d97828539a1dd5552a","impliedFormat":1},{"version":"349250884d48cb12c72dbe59a2843affb6904f8429e3f7556d138db40ec8bcd0","impliedFormat":1},{"version":"65b6cc74c86bf2d5385fb9e10bc4ad5ad09fff05a6d6e872ca4db044bb46fb3a","impliedFormat":1},{"version":"e2efe68376a25ad9bc5af48ba3888cfb9355d004c561b0b2465c4e661bdee46b","impliedFormat":1},{"version":"5399098207d4cc8d407f49c932da771ed6ceb4434d7f20e56135bd7015f331ed","impliedFormat":1},{"version":"ab8287edb8dfcccefd318ad76a5849b3c80c6bf0caed154be12dfe1112cf936c","impliedFormat":1},{"version":"cd2200fbb1d1271782654fb7fdb6d8dca7db15f7b8db2a38e7143662d491d586","impliedFormat":1},{"version":"674d7208c85a0d903f7d3f1d2fda966d00bf0886ab3e5cefb96a8f1643540a1a","impliedFormat":1},{"version":"41ab5f4e8bcaddc43ce23a691011e897b1e50355fdcbafc8cba04b286e6f1c49","impliedFormat":1},{"version":"38fe031b36c5de94bb3b1b3ad390041f74aefb61df99746de85381c7ecda75f3","impliedFormat":1},{"version":"47277bb3b4bbda8c0326fe702b9f676e8f51f883b2a90a442f5dbcdabe252ad6","impliedFormat":1},{"version":"65b02d4c494f394f8988d4a6faa4aaab5347bf963b8792f7a2b2552b78120bab","impliedFormat":1},{"version":"025a67cb489d57f4363fbeff45ce51ba807884988d0d0aba65c892376be38bfe","impliedFormat":1},{"version":"897a6a62d6b6a5c0c806a4d5f1c223a9bf41f8c97fe86e648c5b20efa3a3c25c","impliedFormat":1},{"version":"8d8d909792777b0df3d5c6846e6cac0b300dd4e99ca0cc9e0047f14fd09a8704","impliedFormat":1},{"version":"532894363916c4b9d8f8d8647f2d9b98723ab959f6cfe5209ab92ad1d128e658","impliedFormat":1},{"version":"d492ab701db274e6005df9202d2a9370df12fa0bd6191885156894407e721f58","impliedFormat":1},{"version":"a71ecc5545c1ac3fff470887c1a20bb06e3cb0e36676dedffd20d14588578e6a","impliedFormat":1},{"version":"1e5c3d857b594638715e557a713925d82a462edf7adf912cace8c384ee88688a","impliedFormat":1},{"version":"b487c070d4da4c0210fc1069f3a7663b504ca85ba8a071568939c2237eab2988","impliedFormat":1},{"version":"89bc7b5b169ed78edf3e732f70558bbb0b309bdeddfe293dd99fc8a3857fe588","impliedFormat":1},{"version":"39dd82696ddb6a0a3b64b6dd737cab9ffef6e130ddb96a571daf504e868b7dd4","impliedFormat":1},{"version":"0cd6916333ffdc9899ba3d87c0b71c341d66c21fde10091188278e8e2dbefecc","impliedFormat":1},{"version":"927a6bd9f0344c2d3e897b182a685adeab1bbb48c2cc5a134c0ecf2596752282","impliedFormat":1},{"version":"3930c95340f3e3d08276b14659bafdc9e1d93afa1d4c649a9d353f377e4c83b4","impliedFormat":1},{"version":"23211a9818220e2fbffbb3c4f53ab2bb2dac9cc3ca998607e56e90c961c134f2","impliedFormat":1},{"version":"4372899ea8be93b7d1b0a21b487c5b726f91a6c1c0785f9ae7b851738bde88b0","impliedFormat":1},{"version":"59c1a9f97666d459ebaba5f5dacdb453ae0c671b317467697764c2e0e44bf196","impliedFormat":1},{"version":"ee72eb60620acd1c765a3c5a6919fdd6786fa1e04193f33c248118d17ad01378","impliedFormat":1},{"version":"f07d5eb6281efe08966d422297f256990f79ca31aa8bbce41510a8c67e4d9b26","impliedFormat":1},{"version":"8f33a2e973c015d4fb8ac6d0682adf9412770687912351d6f467b57716d86862","impliedFormat":1},{"version":"7048fec24c26de6df7c70332b201ee3752cc1077c300de2bf015ff4e17d8b3c2","impliedFormat":1},{"version":"92f2155186acb48c1c08fb8a9076e12b24111d660461b077b28b2d43472ee519","impliedFormat":1},{"version":"3fe4a676fc45b2369d84e7cec5516bfeaeb219e65f074f3dec5c33620cb53ca6","impliedFormat":1},{"version":"890e772f577db50212f462fb39c10eacc4cd169996d2955adc1676bcbf54520d","impliedFormat":1},{"version":"fc921b38250c2ffd339af991bb6541781cc4531238ddf70806bc56f467a8a7b9","impliedFormat":1},{"version":"8c1d7fe8d40405e39e8f7d3817b4ae399433bf08adcfb3582ae97618a7138375","impliedFormat":1},{"version":"3d6ca77f1d7bbf66fc0f967c3186eee8cb30acd4e2f41385193bdfab1d429ca9","impliedFormat":1},{"version":"fc9f3067d0496769c3426f19e8d901e954033dacc1f988af8196640470e56d7b","impliedFormat":1},{"version":"30df6f853d3f6f2ebc5b2c7e2bd173f002ae66f51b7fca3949832320b4eae141","impliedFormat":1},{"version":"203b67e6d33c81b74a8858fdee4f4d0a99e557121db927c96cbb2f305b17111e","impliedFormat":1},{"version":"29c9c6cb20d54a225e9de60cb924d4d40d29d1edb98c4859d1a2b2e8e8e95950","impliedFormat":1},{"version":"e20f5d1774ccd75f556033ae1400f0bf228c384f0f4c2c0264fa093e33dc2484","impliedFormat":1},{"version":"686cc00a3582645bc207c03c8dd62b14fa3e2647574d50a9166edae25b7953e4","impliedFormat":1},{"version":"a663713aa6a9cc2295d94b0c137e8a80070c96c541fbc9987dd87e7a6dc5e0b2","impliedFormat":1},{"version":"0e306b441cefc4fbfcd84f168cfc19919c998a5c5a75271d5ee0ac2546c749e0","impliedFormat":1},{"version":"74bdd55516600d729e13503865eb67e94efea6af92851f250bf4586e805e562c","impliedFormat":1},{"version":"6fc661fc602ab817015df974f6c1258aef4010de01c76a550286609b9cb721ec","impliedFormat":1},{"version":"4093918e4ea19a0faf71146b00d2c72b6207eecb26b69c89de6fc6894f8248a2","impliedFormat":1},{"version":"96642332c1c2c450579775f18df0cc08c373b0f1df69f678cdc95a1ad8813bb4","impliedFormat":1},{"version":"cd344619cb6fad71c80c120d38cd2ac51ba72975326b1b46e3e88d4c5adc3eb0","impliedFormat":1},{"version":"3f3823dc063ce069c9bbdc198d981a1e2ea8784c053b297ed3ca9bbbc3a80af5","impliedFormat":1},{"version":"c9abf080bfa07e56f7da30fbd043cabe4ea4758ae529f8c70c232bbcb17a3aee","impliedFormat":1},{"version":"6df354f6d3210b77d03ce7c5ab27ad0914fee60568996c570d20c9ad9f324845","impliedFormat":1},{"version":"35ecf5e5d1d0038c37a259a6bac12687887977afdea7fd5d60982013e4360755","impliedFormat":1},{"version":"9f7f86921e90060af47419bcafb12f3de4f2251c01de2f152510fa1d4feb972b","impliedFormat":1},{"version":"7106bf0f55dadff8c02b3ab28e5ff6e007baa02fc26cf58d1994eb6482114588","impliedFormat":1},{"version":"667213d5ddeb5db6f2405f612903b8438a6809b3e0410cee7efb2374f2210643","signature":"53ecbb5d0d5f7b24a56b5bd8857bd07cb1b046dbaa9f9bb1ce47085f78a2bbc8"},{"version":"580e6e94d79a078af1ae1659dbe11509f1f639c66abc56a81865444af631e342","signature":"d2a3b2942991e306f2ff37bddeaa4b9df205f0631dbedfff5f2d4e755a2bff18"},{"version":"b3a63c26729fdc3d287fbad171f11209225f599e280c9d1d494a19974d06a48d","signature":"8ce3f829fecdaf18ec48beb3ac88542b30fd14fa70b8d38a98456d30dcf78eaa"},{"version":"8e2af299af9a39a4ae913291e3be73b70ccebd7bb21ee69024d28938410dea4e","signature":"30c568cfe18ad936c9007496d25be515296e75987dcdb9f0feee2b3cd8e5dbcd"},{"version":"d4d2e445bfb51c5272fd49fa07aa5e9548c1ffc173040772008d8d7e23172887","signature":"d1ac5dd0f58b5f58e18a12a4b79274f99875ef5c8c6d7b1c536b1f12ff46dee0"},{"version":"98cfc0040ca016372676c2822a26e5fed6e2e1df395a0c9730a9be8f19a15bca","impliedFormat":1},{"version":"efe74648f611b6f4949fc4da29dca5f221483bf196d124a6a44ffa1e9a69efad","impliedFormat":1},{"version":"5a7ebcf5fe8ac590dd03af1bbe426dfed639a3490fb1e5d6b934e45643b8ea1b","impliedFormat":1},{"version":"b7e1119637195dffe2cf05b0807d5afff3d89d20e05c8aff85a003386013e9bd","impliedFormat":1},{"version":"e8ac715686fc4aca4c0b9ea415180ffa4449db2e432adfb6202d4bbda165df01","affectsGlobalScope":true,"impliedFormat":1},{"version":"9f49b8064f63b7b3275a8247692967da2458734ea9afcf5ffd86b5c177674740","impliedFormat":1},{"version":"0d9113f842324b9af1ed7b4f656c1e3d0c2aa8fc6f12c095574f64e833b20d26","signature":"082e4987ee64eeedd944ee9b470cdee9e6c215c2d9412f16ce3de3083373effc"},{"version":"685a12c301f22a9d6304cc11f9c1c09619a68aca7171b11259d4335c6d77a22a","signature":"cf28b75852f654ba0d4653723202a074c1c0136b5923d6b848e5932c21016789"},{"version":"22ccd5838b49541e7f6bedb3802626ff06d4f1bde72fa2b6585202d4e86d3a9a","signature":"ad4dbecd6e5148ea842d36a69bc832d221e45524852ddd8de8c2b106ae4e924d"},{"version":"029572deeb55036a36838cfc0f02ad2eae8c2fe3774dfbc8af84fba4335e8e9f","signature":"30c568cfe18ad936c9007496d25be515296e75987dcdb9f0feee2b3cd8e5dbcd"},{"version":"9d95513e603028d784bfd8632fe82c0090d56bb9465669fede6df41061821114","signature":"c29b039ef30cf327e1b9eaf3d7cea9fb925f1acd621086a970728db337623a39"},{"version":"997d74763d598e745ba1d386b7c73b96538221d456d70f080de53cc2fc0c0c65","signature":"7b61b2daeebbb39b0e6cfe7b122f0d6cc433a262a418b554ac8ac3c1de054534"},{"version":"923ce3f0c8b9c98613abaa72a0fcaac4bfa57e80868850c105774db9cb39726c","signature":"7da23deb3b1f8f7ef37e8ccabbcdb7cd057ad1cd0202efd86ede5139d65f910f"},{"version":"d0766281e5cf0632a2fd45ec71b0bfe328c815d33446f7001c07ef00d0f42eda","signature":"8503734626ba9a52131f0032dfaf039a29a7fe2c70512e28a44720114fbb0c44"},{"version":"aa22c1cc20c9d9d2bf060553957378a7285dd37df547bcf6116a53887b98c4b4","signature":"a3fa879b475a03917e3f898d8327be77f7a2ae3b0f993770afefba061795b428"},{"version":"55951b0e208d53a635364b89b2c8f0e467d9b7f4c3ee370fac0c66a670c68a04","signature":"a68c304565a559b3f9b1f9723e1b7e803aaec2a1defcd2865968cb2746ae9dba"},{"version":"06487b6335f05637734575586a9ca9ff781aefff4f49f80becd796b4d20726bc","signature":"43d4a80984622e3f38d769a9f5c51e2b102dee632e2c797cd9b91f17e5b35265"},{"version":"b995780d3bdebc6309c1ebd175b87b3b3ee0ed59359992d9b164507af0f38504","signature":"c364e739fd531c4158dd07fee7c4d1f649a2bf276c8bf5002761dede827ba877"},{"version":"945c03b45ad56b33d2ce612497467011f195b59b5303af03f27f2d4d0b0933b1","signature":"374b6260a6c337006f0ea56b520f4a643f26f76f820112117b042792f15dfdd3"},{"version":"40e65b7f4e4d1470c0f39b9b4fcdf735c0f794b8be1a0a602a999e158a529c47","signature":"c364e739fd531c4158dd07fee7c4d1f649a2bf276c8bf5002761dede827ba877"},{"version":"31b4291404d901de66e57b768f431560d3c831e65bd25ad4253d79237a373f72","signature":"5c7442fadc9c501c1f543cf00148c7501f9b32a9bbb33701e2507c370d1d5986"},{"version":"bc8e357f34add2a1b1c4938a7d0447ecc791411f4741af8b8f40f3bf1fdeca79","signature":"d8a9ecc4a16dccb6458e882c2fce032f7c46c1834321d2e0a6a933e32e7935a7"},{"version":"2aae249e71b20db3f340a7cb4d198d8cf9f193ba5c275e75ec47c5c72a56d466","signature":"863ab6d53c89011490d74363a800af2982b52988cd0e1be95e5a8714e5ff7398"},{"version":"503eebe32c001dc6c0b9d0f18031ca8c21335b023eb725366ae2f0b6e5c282b3","signature":"9a9e5e2d007f9930d16b9d83773fac42fd51021d6458493761fe8c1d166c22c3"},{"version":"3d392e50b132e2bc296d689dc4b8b63d8003a9ca5bc3ecca2432bb26dc8d0ad6","signature":"24e64c48b4913d502e987eb42f63b0ae8db39630ed01e37ab5ca1461464853e4"},{"version":"92bb8b3fae0782500371974279efa8898466df594d4f90471ea8403faf6c4893","signature":"2d6d77b8a6d536f3be637be7353c532319f7becc1b8c62e65a786c78cead6389"},{"version":"4331bda54161842efc86731b055527cc7852491c0ba2fe8cd3674abb2e69bd79","signature":"82b1d3d9dc193595eef359d445467fbcc705b4fbd56b1ccb4543659669439c49"},{"version":"68f429be47f4763235a23de2ac6f3e14609c05abe669504d008726c85e5a2d10","signature":"eaa29a9555724087a4782cac15d45424626d14311a61e772ee7f01205776a12f"},{"version":"19cdf31f2bcecd027efacb79b2c579f096a0a0813e22ab72e2bbc35e5fb91fe6","signature":"4240f2255228e9aa18fa604b832f1bb28555ddb1dd573f9b4054b239ecbb1e1b"},{"version":"8af91477921752bb5f0361a978da37b11d5036240382c95f3c33be7068e90698","signature":"ba706b0e4f0092cdefd41c58e5aebd4640e9e110f54d439cafb676fefa3c578b"},{"version":"2eb9691659e22c5fb39bc4ec0aa81a817a12243f784c27d1833ad8816b3cb5f6","signature":"481389173b289683604ff7714922a79f6d437c107359f7e6cb4cef697738ec7c"},{"version":"bf890915c52a6e5d82d78b47e010ff5102680ba9875cc03f390a14f92ea317fe","signature":"7babf517bceda52b21eef3e081ffbd0583800c78b7dc04b5c6244aeaf101e506"},{"version":"91c66355fd1fa92491be7c73d77a050da379d36d653d6903e2d4fb0b5e44afca","signature":"12c7a98c492b9d0b800b4ddfec276d85f96ba7ed130ce07c9f0f73bc5813e566"},{"version":"10d2a2a435a2aa548f1556d35120d2701c7fe33b20ddae858504b4806a23475f","signature":"8f7964e51033c4e2b1098f445568ad36c9eba421154cec910f120b973dbb0330"},{"version":"5d8116261e796f5392f3c1b54b83cb25de4683ea29b0c5c904e261b810d21c85","signature":"711c4cba6544e7c2452a22dc16103c4f679c45c36d7ca39b728f2266c298ef5d"},{"version":"c4ded561c6f595bbe084361ebeb531c2430bdc2961f3e18369d846af9998ab0a","signature":"8f7964e51033c4e2b1098f445568ad36c9eba421154cec910f120b973dbb0330"},{"version":"fcb367f21fa130bedd1b30d5b446d06b959964ee2a0237b413e7bd988d494fdd","signature":"d91a8f80450f44ff97bcd67c051a1379a42d99f7234072a437fc196670386752"},{"version":"ade406a413a8e8e854a5948bf404cda4bfffc0212308457b7687e57c7b73ac4d","signature":"e4f56505831d3d5403e6c0997a182446194c644015a420c999f003361a588056"},{"version":"ba98d09f5c0bf1c0fb8876dc9fdc5f43ef34fa831cfb84f91939d551bd2d78d9","signature":"28d624b273edd226713d69e9081cacbcffbc130ceda63e96217a4dfccf718d2e"},{"version":"efe5b05c155ef627c06cce269f88de6577e9f8aa32e9be19507ed1fd886a77b4","signature":"e6f028be4acfc71ac1dd6a4f93bc5ee70b9724d2e9b7d90923b8d9cbd36d0fed"},{"version":"a7ef1d6444793d9bf807a9f656f8ad44015c3cf3f7743e44d724912dce6b9729","signature":"0f6e9df79b2f0d5a4bca1808016172b85b8e627861e840a915cc245a7faf1590"},{"version":"7abc7c3915b16eb960e47e0d3ec40f4bb7cd398c7b3326b7953722ec61c336c3","signature":"a0390ee97dae180c18c6d83fd039a5d568d48739cd96229957d2cbdab859d439"},{"version":"f6980bf706d272bd57ed0c0fc5a41beeb9aa11b4bfac4bfb92d21fbcd2f02a8e","signature":"f86f54d34210c4b912b1f4e777f591f64dead6be4a64c1c2960f36a7d0163843"},{"version":"1fc2700ab1ff1975735a4326f5bc90cba69be6dc48a4536bb2ab2df55cf65116","signature":"704e4eb866de69e0b810ca33fa29ad64e8a614e1298b559cec9d46266a43bf93"},{"version":"d3fe89bf5084628c57e6e764cbbff57045500a18f23fcb89bf4f5bca47d965f2","signature":"d5add8632bcf2e805bf1f8f1d123095e62592ae3d35fe63bcd0789d32930f1aa"},{"version":"0a9ac399cdec5e5d213cf8af630f3ec99646eedcc9c8c7d07eca8c95d72472c0","signature":"331325bac37b224f6442d59ed912c0ed37d291e12e602b99ef511431ae5d06c3"},{"version":"8bbebbbec4209ee21cbcb00f3e9ad1d1e0d62f26c5b70caf373b2d476e2b2d96","signature":"e232e4b9dc29935f5e3cf7c73aba65b15f00ba21e8bdc28977fb86dfe62f782e"},{"version":"47771e884435c5e747839caec5bc0d5e3cfe733573124869eef931304cdd9362","signature":"d5dcc4491b98b6d0ffff6e757846215bc34b6b1677182576fd9e4b46022ebc75"},{"version":"5eb7c59373e60cf1f5616320d85751fd4e7120cc868c6463eff77036a2ac8d3d","signature":"10dcceb6880d8607a34f8e9914a274a49ac91fd2787db91bae2cccca193b360c"},{"version":"04792aabeee56a1dd8ae28556975e4707a9242c813ee9c69b9b9b807b2d35c60","signature":"82b1d3d9dc193595eef359d445467fbcc705b4fbd56b1ccb4543659669439c49"},{"version":"b1670b31a31bd4f4219ec31174479445fe2460b69b8e1e22bdae75d454cbf27d","signature":"41d729fd74acd55c32dc862d31a2e4eb0d48644ceee7af2b6d5a70597a7fc9a6"},{"version":"fcba2080e1cc5bbf4804d2a3c1f041f46169695656a1d8664760c38f4ab3d8e7","signature":"cadc16b12ac090fcc26bf577314e1366425398346c66b45268072f616a024fb9"},{"version":"89e11ff90e32e74c29af8e801b452cbd5fcb6c1a05f38e4186724711ff202f23","signature":"7e1bab68ccaacedc5ea1a70bfe33be54e880f4a260a56e6abff8fdd6b3b98c9a"},{"version":"575b831733c547e51d5a0ad07bfa33217a8900246cb294e90458a73d42bb4bb8","signature":"909185c14c6ee5e1601591ef6139cf41af465296b419518aab7d146aaeeba3dc"},{"version":"b78cd10245a90e27e62d0558564f5d9a16576294eee724a59ae21b91f9269e4a","impliedFormat":1},{"version":"baac9896d29bcc55391d769e408ff400d61273d832dd500f21de766205255acb","impliedFormat":1},{"version":"2f5747b1508ccf83fad0c251ba1e5da2f5a30b78b09ffa1cfaf633045160afed","impliedFormat":1},{"version":"a8932b7a5ef936687cc5b2492b525e2ad5e7ed321becfea4a17d5a6c80f49e92","affectsGlobalScope":true,"impliedFormat":1},{"version":"b71c603a539078a5e3a039b20f2b0a0d1708967530cf97dec8850a9ca45baa2b","impliedFormat":1},{"version":"0e13570a7e86c6d83dd92e81758a930f63747483e2cd34ef36fcdb47d1f9726a","impliedFormat":1},{"version":"104c67f0da1bdf0d94865419247e20eded83ce7f9911a1aa75fc675c077ca66e","impliedFormat":1},{"version":"cc0d0b339f31ce0ab3b7a5b714d8e578ce698f1e13d7f8c60bfb766baeb1d35c","impliedFormat":1},{"version":"d26a79f97f25eb1c5fc36a8552e4decc7ad11104a016d31b1307c3afaf48feb1","impliedFormat":1},{"version":"24fee6aca4978801bc840cf77e4b9fd1f5b60791b6f242b1c73dcb9fd541e5ec","signature":"985169c130a91f5ce934015b7b3e062987a2ddbf26c34fa17a8ace77af155833"},{"version":"2daf752990526dd6436955951884e56c4e600ee12ea3692c1dd3cf32157397e8","signature":"6dbe8eb7d0387cd60523af27e8b20ad4f04745128bff7a98ec14dab7c9522c86"},{"version":"13bfd75edeb26701d06893ca1f14f07e6d3df72ec600b237c31b3b7a03c00cb0","signature":"468d3750d12f596e8b4453a93f67bc60e838c7f4f3f8dc9dae64a41994807336"},{"version":"30cce17059796396e4bb6a3662713860a2df6a12534fa56e79e53c0b9c7ecc9d","impliedFormat":1},{"version":"30a1da23f3d054ffde61c0ba2f6a67be75268ff148065287482aa283aa2b56e1","impliedFormat":1},{"version":"a0d2ca6725257bc134adcf32df87d30d34cfdeead350d99a096f0a2bee757c8e","impliedFormat":1},{"version":"efc6b7f9dcb8b4b26fe844fe344499a0c7184f41e783affafb2b8424fba664f6","impliedFormat":1},{"version":"5f78fd026018429db3494f313f451a174d47f16ab4d13f0804b691221f7f3e13","impliedFormat":1},{"version":"e841c0f5171c30f89c829e90b6c9b555aa55e9ea7fad573e350a6aa229e246d7","impliedFormat":1},{"version":"6cc30739e53a8fbaea59cadb4922404a3ce1a9a73bcfc0a683ca88bf0e7afba6","impliedFormat":1},{"version":"b5bae77b0bbd191e30f5bd078baabbbcd39b369259c673befdf8006daf4933c2","impliedFormat":1},{"version":"b277f54844cba4ebea713792654510d1371dc6e9d22a2829e377934a81ea4f6d","impliedFormat":1},{"version":"f642222e5e4e271ebfe67d1db3cb4d61d34c5d402c4fee07ba506702b1e89010","impliedFormat":1},{"version":"cce25a25d6834cb07a4009f6d044832d1c52e50f9fc70aad305927a0b3ecb2a6","impliedFormat":1},{"version":"4711acda6d41fb442ec545a8a9aaf1316d3a5a1316e2c8711787db40410c9f60","impliedFormat":1},{"version":"d1593ceeae2a580ba14a879a02227981b0c76d055f01a0134bd92518dde8738b","impliedFormat":1},{"version":"0c1c013745b603c8ddb83316c096dea6f66f25ff274e203ee91c35ee2ed2fa64","impliedFormat":1},{"version":"3ad9d49ff7a612868d43a3a9526bea001740a4d80d7c6a7bbeb10eae08d3c170","impliedFormat":1},{"version":"fc5bd7db96571d7d45d3b2e33fbc53a88ef6173b07975a97c8631b0b3a8d0de7","impliedFormat":1},{"version":"e54f543a2e2b4f2161df4fe0c120e8e59faef963d3b0d8a42fca222154237c95","impliedFormat":1},{"version":"1010f8f10e89d52c8e11be076c6ba270f5db176a586be5b634ff7a515e6e3752","impliedFormat":1},{"version":"7f85c40ebae4caeafa6a6374059dd0914c1ae059eb18423585f58cafc31a64fa","impliedFormat":1},{"version":"9bbba4376cbda122c297fd09c6a68397ccb245724eac058b759a5e1e6a0485cc","impliedFormat":1},{"version":"21ae750ca1c5c099874ca5c2192e19a5ccc281d649c3834a8c801c1ea273cdd5","impliedFormat":1},{"version":"4bdebae4a9aa13721887efe1d59aca61e80706ca89327872b953cc3b550c3d97","impliedFormat":1},{"version":"cbded1395e55928a3c8f6974642bc44cc72ff2509abb5b0b1279fde358e7abdd","impliedFormat":1},{"version":"83a344c42e41f862ecc85357db508df61fa81832e7248dcba2e7a158a53fc850","impliedFormat":1},{"version":"1349ff47cadc87211847915067ef741b2abdadf9fc30f955d8ab30eaf11bd0a7","impliedFormat":1},{"version":"cad08c39e73b4d9840dd1d9b4209e97fc9efb64869d11f109cf91c35265518f8","impliedFormat":1},{"version":"06b02dcfbd4182d1962203a0fad8c826b12bd173f339245cc6062df70a8a96a9","impliedFormat":1},{"version":"30d4af7c6c25ec4e0cd41750ec7059bf5716d06386f475f92353156ac87957dc","impliedFormat":1},{"version":"16e40f37c30879e5afff79c373e45414c833a714776f34c24d49d4c7a0843d1f","impliedFormat":1},{"version":"f8aedf7b7afc4c247b00b2aa798dcaf8f96c5b892e7670a9bf30d4edb7793afc","impliedFormat":1},{"version":"7e2d411cc4fe20b4b7f3f561888b79ab8344d7a56b872381a5c98bdba8b3d829","impliedFormat":1},{"version":"e47a022dc97ca1355489c1e618db7861f373ab6039961b69bd5166a2206448ea","impliedFormat":1},{"version":"21b6bba84e85e779222c320f23e39e528e9cecfce20cc82dc5e7ac5918cd7065","impliedFormat":1},{"version":"a529fcfd25763eae42a5ae602348c08f3ec9a429738f7c01cf4aa0dae0d21df1","impliedFormat":1},{"version":"8f047de77bfea32ca332c4e647310ea4b78d4326c350cc7e47362ce66a9a7061","impliedFormat":1},{"version":"649a60b12c7c5a952038909be77a56b627e38b3bac4395bfcf2c85385c18951f","impliedFormat":1},{"version":"f87f3d6a3843055db3b8dfd2954618d35e25f02714cb60844f14ef7f10a4e14a","impliedFormat":1},{"version":"e533381be67d9c2a5acdcaaaed10cd7da8344e17e3f260497b2a8ee08e3fc042","impliedFormat":1},{"version":"cffa9c14e61bd9820a9c4fdb30bdf37825a0738dc9515729fbf3b395b95804df","impliedFormat":1},{"version":"146e29f6a7bced0e3b603895304fa181428728e6abfb66814d54b80c22682b9f","impliedFormat":1},{"version":"e00c072bab63c35f0f7f866823339da68573e5f477a42cf1998fd68850856725","impliedFormat":1},{"version":"9a7ff594218d860f1634cb4db5988de467d4b535b29e3f401cf1a18389f77f36","impliedFormat":1},{"version":"f2126c63b3dfb7bbf19a6e1616faa70deac9a4510f4addf16902b6bd1c3e8d4e","impliedFormat":1},{"version":"375a274981ac7fc7f90c381e6d5bfec1697ce6b72c0a3b206af10075348fbda1","impliedFormat":1},{"version":"339159625ab20089659508c1c76639c10462d72f5bc5a1170e656c50489d1f2b","impliedFormat":1},{"version":"6a54b29b7b773cc9464b4ce085e1bbadeac55d13671e16494ed83e044d64060f","impliedFormat":1},{"version":"74f3cd40478078a1ccb71feede218b86b4a68a67cd81b86c8ff36da36c7de3a2","impliedFormat":1},{"version":"9210c031931cf6b3add96a13cc8727842d2c4147a64d272b0d1aa4b34b59c3cd","impliedFormat":1},{"version":"edcfafe7ed290774303817fec772ae609ffcbc3f4ff1bef55debfe9d5b81f5de","impliedFormat":1},{"version":"89c9d78562647f377a73cd4c3e9dc0321242c87c02255a127973173a5c393cce","impliedFormat":1},{"version":"4b8f8e0b03265e15509fc5732a3bb667a6d5e2cb18130b05d5def55bc4c5fd4a","impliedFormat":1},{"version":"8311db19ad517c29d606d187942aab1c86e6f7409b48b856dfe8e6b326ec65a9","impliedFormat":1},{"version":"e3e239b45eb6253369d91e02802deefc65f00ebf652956a17ddc102145cc8016","impliedFormat":1},{"version":"6595cfde89cd6579bb0a286fcd56f9f9b6ae1d8c5d48dbd3a07c4a5035f91321","impliedFormat":1},{"version":"ffbd32479a660c787ef064ec84978dceb1030797a3b1f73d0c4188e0e59eaee9","impliedFormat":1},{"version":"bd5dc5690daf518e908717cf46015d8624e84ec0e9ae998f60a244b9dfdc8bf0","impliedFormat":1},{"version":"24ff544df7ea141bf34acdbe8aa79d66a21c2aa012c74f6bb596c7bb312dd0fb","impliedFormat":1},{"version":"cfa7839fb804abc0e9c8dad7d0dbd856f56ff7fa84ed0f048617ec6ab5dbcc01","impliedFormat":1},{"version":"01a7d67c1c297d61aa9c898f4f656b4499b7eefae4e7ac6ab8eb95c30604883b","impliedFormat":1},{"version":"6102b3761bda65be9f714b8391d01732f72533d133cf88597a49f2619b966ecf","impliedFormat":1},{"version":"5410a9983053381edc3aab1ab4f41da94a00774caf3d8a26dd9eacd93f3c774e","impliedFormat":1},{"version":"8a87d32a2925c7a518e94a135c3a2b532239a826edc9a42aa64b104f1f42cf2e","impliedFormat":1},{"version":"127f121792f4ace70dedecf0fc7267898a34e41200feb2a6612dbf44a9dd1f98","impliedFormat":1},{"version":"4ec4784708a7cae8a0526d632b4055f38e323ea0634aecb92329136f4108ec61","impliedFormat":1},{"version":"0aceb582f4725991e0c9873784377e3dc2741e76c14f451effcb1e7d20a6d971","impliedFormat":1},{"version":"00f52aa87b0887a0c3094ba79b2bb8dc1749e8efeb9606b89bc446f1474ff31f","impliedFormat":1},{"version":"b2ee78ea60a1d65bf53e577307514485f1453133c3829147927325217321bd80","impliedFormat":1},{"version":"e338945d53a6b368094285feb0aeee7caeaaf01a320aa8cd04c39d4b892160cc","impliedFormat":1},{"version":"8bb94848d7740bb94ae3dbbdfece2596139c09c4c0d3a5b04fb6c196bc40c675","impliedFormat":1},{"version":"c34ec91e7213647dbf1a58605388d3766babd8eb7b0450bf89b1b48c040978ed","impliedFormat":1},{"version":"1c07966efc70912b1b885f2991fa0ac1c23244b008c6f76e1f35e347bade607f","impliedFormat":1},{"version":"d06cb2ab950b10d9f3ad198027b03fa4f54c91b8d517df999816be7af6398d5e","impliedFormat":1},{"version":"3449be6b6f78894101e2ef4983a1fad957fe1036c23ea0374560999280ac8499","impliedFormat":1},{"version":"71b47e5caf53fc9f4c54851fa6a1c1dcc0e4105c296d538da8c4181d2c543bdb","impliedFormat":1},{"version":"e6253a1541cffd4ba99d3343a56f8cdeddaec78722cdedac047963ca26c4d227","impliedFormat":1},{"version":"d8298c8a544f4463ef72da57117a3da5b8634516fc87d199d4849d464e7df255","impliedFormat":1},{"version":"08f2cdf3c38036d8a5abd3953eb561ef15893cd5fba34f8ae96dddd74725ba03","impliedFormat":1},{"version":"371e1f6520748a86b4f3ad67e9079dc830f1c253b14f8f8e579561b212b8728b","impliedFormat":1},{"version":"c644c1c6addc7a9f214b3c138083b60db527f6f9db7ae0e8ffe836d699030939","impliedFormat":1},{"version":"871c5d08c375044d573077a337550381ec3b05792822bfd2f427e7346a6db716","impliedFormat":1},{"version":"84e7714ac910ef33cb244c2c45b90856155cbf89f5de1e04252de2c3229e4c25","impliedFormat":1},{"version":"abfc085ae7f1511f733eb515d1bffe13d5398bf8084f3137e0c7dba6fe8ac6dd","impliedFormat":1},{"version":"b4a990205393b5a84e9683477877fd683619104b042129ceed0591834ba9bf42","impliedFormat":1},{"version":"4dc06f6c234a6a766255b2f0b6ee464642e502ae3458afba81cb2701699816b5","impliedFormat":1},{"version":"4f526272b9d8bd4d953f1c92a0e5941752c97cde8c7d96eb94395e625fc7654d","impliedFormat":1},{"version":"dada40fdabd948efe78f2d9bc60cc72608f2065d89cbd61538cfca203aac869c","impliedFormat":1},{"version":"105e736a47eee97cd0e328d3a7dc220a35b0f5ad06e62bd4a4e0cb0d6c2926bf","impliedFormat":1},{"version":"91f145d7c2fd749c04bf7fbbc3583cfe799c0e8fc2ce064e5449f79a2960aff3","impliedFormat":1},{"version":"ffd651e09c0b7d3c1621d005693e15eda8bb428fc82e6ca8cca4d3308bf570c7","impliedFormat":1},{"version":"23256760e2cf8289b3efee2154cafb39eca0d4da24bd28b0d2940dc7cc966acf","impliedFormat":1},{"version":"67567a72719d3c7afa10f32e3bd62354360d2fcafa0038579403a4771333d802","impliedFormat":1},{"version":"79622ffba415e2d99eb905f17f1484a200a51d07d3e3f66802e123cb1d5e462a","impliedFormat":1},{"version":"51764f08d548e53cc1e0666bd52c6af67be4fce5593b7982d978f453185381d5","impliedFormat":1},{"version":"43eec2a9c9239cf30dd5de60dc7543b4201038b6fcbea6f6a85469a8ae593665","impliedFormat":1},{"version":"43f57c3a965d3be81205b78cfd0fcec88d55838e18040c8a9b7a878d8ca0829c","impliedFormat":1},{"version":"ff25098f23cd73d81184aaaacb1b011ebd455e26ef28373ea15197b38cb65ab4","impliedFormat":1},{"version":"5db94b4af5187acd17d822dd4f4718f8bccee07306c0106e7cd1754813b69405","impliedFormat":1},{"version":"62e6b6c19838a97a5338396663f23e9ac28188af7c6e2140213408635ae9a29f","impliedFormat":1},{"version":"14470b35213f9558f8128a307c51c081a0cc46b7bce273c3e3db7379fc46b3a4","impliedFormat":1},{"version":"f266721810cb9306751f22e428a9c4816686ef4bc275e0d1421008f6c74af273","impliedFormat":1},{"version":"63ac269ccbf68516995968373b64f330ca614a2bb775ff719b3844a17f896124","impliedFormat":1},{"version":"6373fe92bc45a14f99404991fef859627bed27b2e7b22952af6462a7f6034625","impliedFormat":1},{"version":"12df076d450d5a86baac50ba79271e36d00249b24b6ef09b09cf0b7e544e78a7","impliedFormat":1},{"version":"ce2a71900355d7642bec9806be2fa6799066fd6f358a546bb5b3cdcb5856fa3a","impliedFormat":1},{"version":"aad8fd8de6cbe2223ce7d8d1a8f07b54b1a3f2eba0656722594681fb3206903e","impliedFormat":1},{"version":"5c2069c73edafcd18a02c94422bfa6afe44a37cffd767d855e6de31885a503bb","impliedFormat":1},{"version":"a2a84c339ae62fe03af5df0dff64c6874532b79d92db7e4de4f67628356de276","impliedFormat":1},{"version":"6897df0753e9066ac127a583867a8047ffa6ac160d489bae47fe62ba629ffa36","impliedFormat":1},{"version":"22208a98ecba32c58ff6fa1441e7eb25916371c8a70c780f46a7046a14a8713e","impliedFormat":1},{"version":"caaf61b29eea8ce65544d09b50b25fbf288499ebfbbc660f2cd96eb8d3a3807c","impliedFormat":1},{"version":"40d7b7644f3f530b7cb649c9fd686cf33457d8fa1b7c126cf212ed1abed38617","impliedFormat":1},{"version":"2983b445eb5d26e8876e8eb56796d5b17b01c9224dfffd6fcbe49f253c4cf0c0","impliedFormat":1},{"version":"b5e8b2696f7f099587520ccaea7d79f91d008bc1b8d264e1abb2324e0f4deebf","impliedFormat":1},{"version":"84fcd39b7e8cbd0a9f558debe206d3632b5f92b8461c46cc99a66cc0f0364325","impliedFormat":1},{"version":"de9a208c7ba6f7cda2b3d59de7393c547090328f9f76af4c048ca4f9a6d96cf2","impliedFormat":1},{"version":"27d46ab03b7b5acea26221bb6009cb35633c5d8444d5ee9e3be076d3acecadcc","impliedFormat":1},{"version":"662200b56d3b7d9a0602bf7987df804c80ba96aeeb1cff33d7e175fa6529418f","impliedFormat":1},{"version":"c75ffddfa72c73a00362cbf27d60592885c0af4939bef2a7849f753378cba015","impliedFormat":1},{"version":"86af6cabd7881dfcdd98e82860a85ab7a005b17937ceab5e6dab485d0c838669","impliedFormat":1},{"version":"0d5ac9a4583358f0ab9561c851bc1d1b142738308e75f1915f2d40a52a6c8cb9","impliedFormat":1},{"version":"055561660c8705eb04c2089751e97d6b072303a3bc6f9efce7e6076e6f6fbf20","impliedFormat":1},{"version":"157736592d4cc052daa292b4de96fc88e02107859365b863769a37a803add7af","impliedFormat":1},{"version":"48927852e80469c33b4b45e1f835296a749697e3bb4afe2efb5013352afda1e9","impliedFormat":1},{"version":"27eeaeddd094cdfbb024d8df156aa68c705b9416485bfacecdccb389c8eac0f4","impliedFormat":1},{"version":"0376e558a4bc8a05a747bab58a1bf54bf085822ff6f4cb86352379252a5da18b","impliedFormat":1},{"version":"c5183accd889234f3b9cbe4282bcbdb45b77d021216c7c282969db2d71cb1db9","impliedFormat":1},{"version":"c42a68201bd646ec41323584aa76e08bedca254740ea663d5925ba64526af227","impliedFormat":1},{"version":"c1b178830e8c06d110eab77cc8985f6a04ebcb2cb2e0fc2a4ed3a6f42816ca95","impliedFormat":1},{"version":"3e8bf9a3ac4fc995ec2c63b3d0aa92ae6aec80680dfa0f4ecbc90ab5c1edb9dd","impliedFormat":1},{"version":"50022e76925f410056df1e0f0a13a310680283fbe41f49a69a9388581f80e82a","impliedFormat":1},{"version":"2caf6b3aba8fd35b628e3db2ed59be021a8241acd1500079bec976fa47fe5d68","impliedFormat":1},{"version":"76c4deff6b1bf78fe81f6a704c731d7f4cc0cd6b335fc765c5407a1784ec58cf","impliedFormat":1},{"version":"516024c91e5e345e44f5ddeea85b0d17dc16399f001ab7f720c669f5488f2423","impliedFormat":1},{"version":"44c42942ecac54a8df285f04237bde32458f3e3a9f217eb05485ffcb7bae047f","impliedFormat":1},{"version":"c9a10c6131718cae46b3582013d8a4493a4c4158087002dd235b66d53713df2b","impliedFormat":1},{"version":"fac6e3f27d7ad0af3343b3ed0a9f00eb3da3698d66401e2f34f38321355b250c","impliedFormat":1},{"version":"a5c2b83d1c082016d046f8124d5d1250b72d227e4e66c21f0b57c50adec196d3","impliedFormat":1},{"version":"398f2eca205b3b8f658535f39620c751ab637b8fe10219db2af8151da7c54332","impliedFormat":1},{"version":"e39c25bd671f8dbbca1f09da2f831f98e6a8a6fc68277240677d690f17c4c22d","impliedFormat":1},{"version":"267c5252e5ea4cde854a99e46621e4f71e518dd935dc2d6f27c6f3544b544940","impliedFormat":1},{"version":"d36324e126b7de3deda4f9ad78e0bc32ff8aff4f785cfe16759024843ca0ad61","impliedFormat":1},{"version":"361047e30c0173548b03cc0017d20e47f715a26601e88fab2ad41078d6b3948b","impliedFormat":1},{"version":"b47d308d2c87b9d8ac74f5449c9cc229958b4487c1dae41e45a11f709a861d21","impliedFormat":1},{"version":"117b517a81d8e96ace349619fad9bf2445f55701de07b8efeefb1f2ec8ec967e","impliedFormat":1},{"version":"42ce23204b40b0a8e4df914a83f796d82b40db4a38d3fdbaf6c24d45dccb1000","impliedFormat":1},{"version":"722979de9ce5cc9a0fa3de9f7336fbcea60fdbb192597d2dc61626d78a9df100","impliedFormat":1},{"version":"e1c45d3030e6019685064f6051c61c01ad1004e368773921997bc743793942bf","impliedFormat":1},{"version":"a99af934e8e0fe1c64c03de729e1921ab7b7eaf38006f50cc08710bb95a33476","impliedFormat":1},{"version":"bdd06253db1bec775373652429314c5b98700f408aaca1047971f3d1b4cbd058","impliedFormat":1},{"version":"11c3b13258abc8818a829a66e10032f2f940911bfa790a7477618f4aa8a1520d","impliedFormat":1},{"version":"14953ae8ae905e93dee4f72bd1fe7bd63434e970fd5e85942c794eaefd0f03de","impliedFormat":1},{"version":"5a3894565d0f3a3c6a5973af92c00c58d760cb4cbe7edd6abe3154f6375afec6","impliedFormat":1},{"version":"49d60ef130a016aeb31462683d5d246a32705ea369238f33b23386a7d5a3e650","impliedFormat":1},{"version":"7a136da94358083c2ca175fcbea6862878ca8f4b70635afdd1ad21da2c62d239","impliedFormat":1},{"version":"5a07135561d24fc9d199ea530714a8c3081943f47701777a352245fd7855f9c0","impliedFormat":1},{"version":"7c48c2d6470228cd7e70a68e0ae8bc53d8d7e03ce6d57036657f21996ec67f4d","impliedFormat":1},{"version":"e69dd8715dbac9879b8a79c0b346717f3c6db295a0c5652808ca7cfe7c1b1c5a","impliedFormat":1},{"version":"286cd5784ad7849bc2b6ee6a9fe4c50f602baa136c3b7151bbe287508462802d","impliedFormat":1},{"version":"4a8662fcf9d6070b70cfdb7e40c416d3ece896a91b7f06e51bc3d9de8d2e608d","impliedFormat":1},{"version":"983b76e84ae1930f00e9014c2952cca7c6a84f80febc3a91e9cd8e3285181af5","impliedFormat":1},{"version":"28320aea613543f00be5e3a5be4b38e0a9d90c4b02b1918db7c16c41b145cef8","impliedFormat":1},{"version":"66387af5d6cf789e0776b3a75138de91a4eb8f8d5d6eba082208a12aada390ca","impliedFormat":1},{"version":"3bea8e5d6c103f64b1e4b59e457ac097552c08af109873c650aac8cac2f8246e","impliedFormat":1},{"version":"6bf36c10c836a5cc604adad053ee4044fdd2fe486c72a10261474742d4285800","impliedFormat":1},{"version":"cb3772cafbfd167c276a416a9ff39512f8ac89f419c47f49ec704a18504b6b94","impliedFormat":1},{"version":"583467b6e0a54517fca35d73d9c9d814ab807b11833d2a656a978ec353b2439c","impliedFormat":1},{"version":"d79fcfd0490ef4ac6b90b38e85ffa07adfdf1ee91a9a769e12589f4e209286b7","impliedFormat":1},{"version":"7dc457818a7128fe29851d48f5fd779d7a450cf17ef4e2df5abed48edbb2ec0c","impliedFormat":1},{"version":"3ce990ad9a93ec5cc10a8e257c9cb130178b82a6973244aa41b531801af39905","impliedFormat":1},{"version":"606cea42ed2534675c530a0168a0bf3ac292910dd5982b0eed3a02257d60f7fd","impliedFormat":1},{"version":"792943c505728ac867cdda8fe60b22258a8e237b6175d93bae022f455c395602","impliedFormat":1},{"version":"0e867e777385dd01821b5cd08dca3e1ba92e6e2d96da267ae1a428940e40f53e","impliedFormat":1},{"version":"4c17756a05615442fcdd69b7f18cd9890b2f1970371c0bdb7c30d6249e20e099","impliedFormat":1},{"version":"e0c819473ea1ad0aedc65eeda3bcec5990155f2ef79c9d9623e00c203e42011d","impliedFormat":1},{"version":"8c89fb790cf331e3296b1ddd6dee5c68271b9c478e44e8a81f400816ea3127b2","impliedFormat":1},{"version":"7ba24cc5c5bfb05dd4a13fbf400c86016416452b2938b2281250e31215f86fb3","impliedFormat":1},{"version":"569f6fc55ef3fe0ac80e66bf1a81ca5f9ba6a2e183d9bc52d31dbfdb633224ef","impliedFormat":1},{"version":"b31d6f2780f81bd061c71ef8f3107123550992f33a87b6842cdf7c7a34b3c808","impliedFormat":1},{"version":"c3a1b92342571178deaad2fd1dd4cde01b18359d0c5d0527a9e4188c572bbc8c","impliedFormat":1},{"version":"2ac42c533aee867302aeb31e355ee49e8c34cb4034bbcd1823f4c3b46cdc0a31","impliedFormat":1},{"version":"109fc4f977581b1318dd17ba22e50f030d3fe32939fd3aa309a2d6dd13fbd2a3","impliedFormat":1},{"version":"079ed1d37b5594f2f22a15a34a51883cb4f2a8ad937a67cbb03d701550108eb3","impliedFormat":1},{"version":"ee09b9348d02aec6cd1cebb94c27896c10d47efa042a3fbc9c90dd6a7f6af752","impliedFormat":1},{"version":"bf673997a66d2225f43fe1b51cdddd497d0a8c08a990ee331457f2d017563075","impliedFormat":1},{"version":"24751a7e0ddf4fa35f91ba2c605bc7cd6ce1eab1e92f6d0bfdda1100eb7aee6d","signature":"50c44ef5032d1b8b0fa5b56bba233261ab0dab31fb9a6ccc1eef550f80b99a69"},{"version":"a7a36248b5b8f32d63b233e644df7922ab80b4fa29c14dfda711f64c986691de","affectsGlobalScope":true,"impliedFormat":1},{"version":"2e5c41e56098ae93bc42a15473acb1a176f28b2ba95c38f3c67820434acd85b6","impliedFormat":1},{"version":"0f263eeea7877199808b1bc220df95b25a72695ec214eb96d740d4b06c7cc868","impliedFormat":1},{"version":"2769f5286cfa6fc7a95782e25d7069377ed009cf29109090ec1f76ae2a82ae97","signature":"d8b1a628e3b769ed0221693da1b5e921cf9f045fe80759f3bd1114b304e94fea"},{"version":"a9db136fa07fe71c73cb51c7ccb47c02280dea6eecbabf785ab86107238a818d","signature":"f00bfe63bb653414510f79fd131ff8a961772e2512d5e7cb04d9a6eb356ccb09"},{"version":"d7e97afebcc48eda4069aac73080e7a5efb5397a33778ac746107a4b914e0d6b","signature":"f57c723c48e7772f344a9a47334d29f55c2b837817dc19611ffc32581f3312ac"},{"version":"4e16afb92408cce9252eee9d944f34c1378a625062aad46313f2832a904651ee","signature":"01c71233c0245e932708f6a4bdce4a79c005dd0a5ad69ef6b8edfb9676d38df7"},{"version":"7a673298a7d7a21efc4a3ca49fdbda7782e61cf7385b21b6ee391671b45d943e","signature":"1daf5e786bf1d9fad3947ddebf5e3eef8e4079d1efa2c988b599e8a592276b01"},{"version":"b14ada2b91029d84ff9c280a6256d9d03592505d61e27e8bfd4b06f2b60ae91a","signature":"a8e87da742f767286cc92e1a42b15f52644d8d762a7dee5fd9c45105985a4336"},{"version":"abdf527fc37fa47435427e351c248cba3c7bd56d7acf7e578efb6be4f547e5ff","signature":"24c751cffe7607dc92af99b117100c11bed7f7800571a9e524cec8cd849ab8bc"},{"version":"7493920f87a90f3e2d11823dc22efc20889644d947d0cf61839359726547eb1d","signature":"fad131a4f74fb8064dc55d6164f3ec3fb816b69b1b00f08f54dc8be2b3a6590e"},{"version":"ba854883a418fca4343b51cb93718d481770f3b81e978bbf6378a2385264e55c","impliedFormat":1},{"version":"67786f76d49f3d71438d2e1bc0b3c2af577c4caa6b2a877f192047306f0578d7","signature":"4780cf54c1663ebc3a2de84b4dafebd6b0fccf40f451277e3484f66c1683546f"},{"version":"a932db18ecb2e724ffaefb27d39870b5ea8d022ab222796009db85da46930231","signature":"f1bd267d0f170a4feabee9b131187f60e8028a53f4386e29566d454e74164252"},{"version":"bf9ad1cb41383255a1863f8f728bad8df1b74a3f8d2da46b840b7b932229a724","signature":"5163246b39325dfd82b1e81adf5b6d97d68c4a058c317d5fb4d653d495787525"},{"version":"58135e7118fffc09368901ad5164d51a255f5567bef309a00e5d26758a167bdc","signature":"fdec17a01430b1e5de3c577cd6d44bf4b99da5ee21a334155a5883815471c72f"},{"version":"8a5fa4445d97cf555100f86ae0871323e1e5ef7fd8c150012b721447eff127f7","signature":"d2b7c16fbc99daf06715d6d9a00055e274cdce589efe5a0dc9e7b195ab49e85c"},{"version":"874876e14f3faa783fbd8c056a661718c47fd6f5f0fce7aac121af667efb7ebf","signature":"e3b0c44298fc1c149afbf4c8996fb92427ae41e4649b934ca495991b7852b855"},{"version":"1813e7049109d70180a4e53f64963a8554471a163b922cdb3c838ceaf839b55b","signature":"70756dc033c830f0339b9a130e8a60df71775d5ede06ff802de71d0620363aa4"},{"version":"ba8ea464475b360e31282a8c1416b0640872ab24831dd113847a56175bfded63","signature":"49c1375c9b70bba069020506f4bc2064b671980f2737731d9e4a0913410fbbb1"},{"version":"f54908026e355c2ee1314ea1f2e3f7791597ddc488f12c5a8ef5d7d4fbad42c5","signature":"c8a9438898a39e51872c7cfaeaa047c16e35fd2bfbb16b88d65f539159db9068"},{"version":"8bf3b1b3f2e6cde636de6956efaafc87c2d93a84c77f93ca281f070512c0c458","signature":"225fe2bcd00eadaea6d3a2556dcf59565b948f7c8fd75abd798fc71fede39654"},{"version":"5694412c426e8375ef7648d6c3ed612eedda979d33b9688da028763c85c9ca08","signature":"e7e191902c9f6fc6f135f79048c1685d2ca6d50390258aa839c6c3dfbbd42930"},{"version":"da6246db79abce4d33ba8691fc679fa8a11abf4323cc6aa3d4b6fbbdf2e8a46b","signature":"29e4a25bfce034a523f52bcf455bfed67aef3910ddd68623c7f19ea330dbb657"},{"version":"5698b99be1a0c353f24d2451bb3e260fc04b616ab560fee5f5bc7ecb26608d64","signature":"7d71f65db32bebb0d148a19c87f59668a71ba6e4b4be780985c8b52665343d1a"},{"version":"c9bc073f6540583608b4c3840417a23cede2662646d89b26ac1fee4e088dc6f6","impliedFormat":1},{"version":"b6bce30a00fdd1343964562046da2f854b1dd4f3b4c60cc25dca63c60bb27e93","impliedFormat":1},{"version":"b2ec3d4c0334c43ac706a1a6a9fd8db28a948a9c2c26d5dd3d63c820005278d7","impliedFormat":1},{"version":"291ea50d7c1849242c5705da2d4f57d618f0d3e8e160ddf6e1cabe6c83687a84","impliedFormat":1},{"version":"daf14648a043435e1da90cb4ba7ef005081d16de6c94e64f5dae10a86a986770","signature":"06bc3e0fd2665ccc12f38f6aff4b0412d567fad42fd318230967c2d134ba519b"},{"version":"46e60fb553b35552186d4c82a72dc7d842a95d9c9a763cd45dccfc43699337c4","signature":"994562391024ea1232292702f2cf266cb854d7844eb4d6287b378205ed2171f3"},{"version":"8318a3e945e03969383dbee7eec6e800f4117c97712bee1a6692f4ad827eff52","signature":"80e31aa42bcd02d57aa7f183fd6ec499be043c6e445efc359f5be98c838b6617"},{"version":"739f2c4a6e012dcdf5108a928e4ddb62085054d2ffea603db2dacce53720f55e","signature":"994562391024ea1232292702f2cf266cb854d7844eb4d6287b378205ed2171f3"},{"version":"5c6742b3353685909eae0201dbd1e0d9e19ad7eb376d732565aefec60ae4a001","signature":"a112fcba61822db10363a11c34e534b5018ef1def029e56a87af02081b23c95c"},{"version":"dffb5d10b8190822c35f9e2b38f7844752ff01fd1f133f2ac66bcf340892a32b","signature":"994562391024ea1232292702f2cf266cb854d7844eb4d6287b378205ed2171f3"},{"version":"20768ac94d15a96e1dd2b20af07f7730a91d7c61df1e65e81392cb06d116023a","signature":"80e31aa42bcd02d57aa7f183fd6ec499be043c6e445efc359f5be98c838b6617"},{"version":"9612e2d47aea7b077356ee1718bf9590ac844a339a4f85b8a039fa59ae00b6b2","impliedFormat":1},{"version":"fbba89c411682928e3b0d50a63df918c06d55a32ceaf444c5f97feb8d595f360","impliedFormat":1},{"version":"e8e9c77ee9c1c4af9d367d9fb5edd172c45acdbb7829dbd9ffc33c658ca21e07","impliedFormat":1},{"version":"59c9e7b26836a5d0805f9875a7afa85980249f7cf818f7a8a68a72a8b2fa21c5","signature":"7798ca44fc12ba63978700f61e8ca187c604ca41ee9d466e30ce4e53b5a4d8b9"},{"version":"dc02c9ed3e87c58176ed9a16431b8e9d696a93b1ab6eb9176c30dcee5ed3a984","signature":"f765bfa6f28d899e905e2b96842d0777a25947f24e2bee42dcbbf24e617055ea"},{"version":"559a0a6ef5f18ac88eee8562eccc5a4b1431ff7ec600f209c31262355042f839","affectsGlobalScope":true},{"version":"78ef0198c323d0f7b16f993ada3459f0e7e20567e7f56fe0c5ee78f31cb0840c","impliedFormat":1},{"version":"01dea450d742aa55ce9b8ab8877bbda8eb73bf88609e440cc34f6f59f35080db","impliedFormat":1},{"version":"2c8285467489bceb54f466371800d0fa24231ab47ec596c4186fd6d216a84324","affectsGlobalScope":true,"impliedFormat":1},{"version":"b788ef070e70003842cbd03c3e04f87d46b67a47b71e9e7d8713fd8c58c5f5ec","impliedFormat":1},{"version":"583d365dc19f813f1e2767771e844c7c4ea9ab1a01e85e0119f2e083488379c2","impliedFormat":1},{"version":"b82fc3869c625b828dd3feac4b5ebf335ed007d586dc16176602db73bc4e7c65","impliedFormat":1},{"version":"05e30605274c26f405c411eebed776fa2102418c05beec885e5c9bd0fa716f32","impliedFormat":1},{"version":"58c7f7820dc027a539b0437be7e1f8bdf663f91fbc9e861d80bb9368a38d4a94","impliedFormat":1},{"version":"d67d6b779d0dece9450d7a4170d3ee58ea7fcae0af2ab5e1d0ad711474b4f7f5","impliedFormat":1},{"version":"1066c11177d085898185548e1b38ed15fcea50061508f7c313ab8bec35d46b95","impliedFormat":1},{"version":"bbc49fd9dc6ee162ba3d270c834398e0c1d44e657ac4edfa55ac837902b7e0da","impliedFormat":1},{"version":"ada7b3ac06dabcd6a410bd2bc416d1e50e7a0dcd8ce36201689759b061f7341e","impliedFormat":1},{"version":"f11eb1fb4e569b293a7cae9e7cdae57e13efc12b0e4510e927868c93ec055e82","impliedFormat":1},{"version":"715682cddbefe50e27e5e7896acf4af0ffc48f9e18f64b0a0c2f8041e3ea869b","impliedFormat":1},{"version":"6d2f5a67bfe2034aa77b38f10977a57e762fd64e53c14372bcc5f1d3175ca322","impliedFormat":1},{"version":"4ff4add7b8cf26df217f2c883292778205847aefb0fd2aee64f5a229d0ffd399","impliedFormat":1},{"version":"33859aa36b264dd91bef77c279a5a0d259c6b63684d0c6ad538e515c69a489ec","impliedFormat":1},{"version":"33fa69f400b34c83e541dd5f4474f1c6fb2788614a1790c6c7b346b5c7eaa7dd","impliedFormat":1},{"version":"be213d7cbc3e5982b22df412cf223c2ac9d841c75014eae4c263761cd9d5e4c0","impliedFormat":1},{"version":"66451f9540fdf68a5fd93898257ccd7428cf7e49029f2e71b8ce70c8d927b87a","impliedFormat":1},{"version":"8a051690018330af516fd9ea42b460d603f0839f44d3946ebb4b551fe3bc7703","impliedFormat":1},{"version":"301fb04ef91ae1340bec1ebc3acdd223861c887a4a1127303d8eef7638b2d893","impliedFormat":1},{"version":"06236dfec90a14b0c3db8249831069ea3f90b004d73d496a559a4466e5a344a4","impliedFormat":1},{"version":"fc26991e51514bfc82e0f20c25132268b1d41e8928552dbaed7cc6f3d08fc3ac","impliedFormat":1},{"version":"5d82bb58dec5014c02aaeb3da465d34f4b7d5c724afea07559e3dfca6d8da5bc","impliedFormat":1},{"version":"44448f58f4d731dc28a02b5987ab6f20b9f77ad407dcf57b68c853fe52195cd7","impliedFormat":1},{"version":"b2818e8d05d6e6ad0f1899abf90a70309240a15153ea4b8d5e0c151e117b7338","impliedFormat":1},{"version":"1c708c15bb96473ce8ec2a946bd024ecded341169a0b84846931f979172244ba","impliedFormat":1},{"version":"ed0f5e1f45dc7c3f40356e0a855e8594aa57c125a5d8dfeef118e0a3024f98ff","impliedFormat":1},{"version":"dc187f457333356ddc1ab8ec7833cd836f85e0bbcade61290dc55116244867cb","impliedFormat":1},{"version":"25525e173de74143042e824eaa786fa18c6b19e9dafb64da71a5faacc5bd2a5c","impliedFormat":1},{"version":"7a3d649f2de01db4b316cf4a0ce5d96832ee83641f1dc84d3e9981accf29c3a1","impliedFormat":1},{"version":"26e4260ee185d4af23484d8c11ef422807fb8f51d33aa68d83fab72eb568f228","impliedFormat":1},{"version":"c4d52d78e3fb4f66735d81663e351cf56037270ed7d00a9b787e35c1fc7183ce","impliedFormat":1},{"version":"864a5505d0e9db2e1837dce8d8aae8b7eeaa5450754d8a1967bf2843124cc262","impliedFormat":1},{"version":"c132dd6e7e719abe5a9882eca297056d233099f0f928c2bb700f574872223697","impliedFormat":1},{"version":"2d045f00292ac7a14ead30d1f83269f1f0ad3e75d1f8e5a245ab87159523cf98","impliedFormat":1},{"version":"54bcb32ab0c7c72b61becd622499a0ae1c309af381801a30878667e21cba85bb","impliedFormat":1},{"version":"106f1d8b7ac71ddc5e1aa2463c9a04d617e3874a992841fb83c20bba9329ed26","impliedFormat":1},{"version":"28439c9ebd31185ae3353dd8524115eaf595375cd94ca157eefcf1280920436a","impliedFormat":1},{"version":"84344d56f84577d4ac1d0d59749bb2fde14c0fb460d0bfb04e57c023748c48a6","impliedFormat":1},{"version":"89bcaf21b0531640604ca9e0796f54a6e1b4e2d43c07422ffa1e3d2e1bb0e456","impliedFormat":1},{"version":"66738976a7aa2d5fb2770a1b689f8bc643af958f836b7bc08e412d4092de3ab9","impliedFormat":1},{"version":"35a0eac48984d20f6da39947cf81cd71e0818feefc03dcb28b4ac7b87a636cfd","impliedFormat":1},{"version":"f6c226d8222108b3485eb0745e8b0ee48b0b901952660db20e983741e8852654","impliedFormat":1},{"version":"93c3b758c4dc64ea499c9416b1ed0e69725133644b299b86c5435e375d823c75","impliedFormat":1},{"version":"4e85f443714cff4858fdaffed31052492fdd03ff7883b22ed938fc0e34b48093","impliedFormat":1},{"version":"0146912d3cad82e53f779a0b7663f181824bba60e32715adb0e9bd02c560b8c6","impliedFormat":1},{"version":"70754650d1eba1fc96a4ed9bbbc8458b341b41063fe79f8fa828db7059696712","impliedFormat":1},{"version":"220783c7ca903c6ce296b210fae5d7e5c5cc1942c5a469b23d537f0fbd37eb18","impliedFormat":1},{"version":"0974c67cf3e2d539d0046c84a5e816e235b81c8516b242ece2ed1bdbb5dbd3d6","impliedFormat":1},{"version":"b4186237e7787a397b6c5ae64e155e70ac2a43fdd13ff24dfb6c1e3d2f930570","impliedFormat":1},{"version":"2647784fffa95a08af418c179b7b75cf1d20c3d32ed71418f0a13259bf505c54","impliedFormat":1},{"version":"0480102d1a385b96c05316b10de45c3958512bb9e834dbecbbde9cc9c0b22db3","impliedFormat":1},{"version":"eea44cfed69c9b38cc6366bd149a5cfa186776ca2a9fb87a3746e33b7e4f5e74","impliedFormat":1},{"version":"7f375e5ef1deb2c2357cba319b51a8872063d093cab750675ac2eb1cef77bee9","impliedFormat":1},{"version":"b7f06aec971823244f909996a30ef2bbeae69a31c40b0b208d0dfd86a8c16d4f","impliedFormat":1},{"version":"0421510c9570dfae34b3911e1691f606811818df00354df7abd028cee454979f","impliedFormat":1},{"version":"1517236728263863a79500653cc15ceb286f048907b3dba3141a482ca6946bd7","impliedFormat":1},{"version":"7c7b418e467a88a714b4c6dac321923b933f82875f063f48abf952021a2c2df1","impliedFormat":1},{"version":"33120063a7e106818ce109be9238569edca74d4e8530f853bd30d298d1375fd8","impliedFormat":1},{"version":"42baf4ca38c38deaf411ea73f37bc39ff56c6e5c761a968b64ac1b25c92b5cd8","impliedFormat":1},{"version":"d7dbe0ad36bdca8a6ecf143422a48e72cc8927bab7b23a1a2485c2f78a7022c6","impliedFormat":1},{"version":"8718fa41d7cf4aa91de4e8f164c90f88e0bf343aa92a1b9b725a9c675c64e16b","impliedFormat":1},{"version":"f992cd6cc0bcbaa4e6c810468c90f2d8595f8c6c3cf050c806397d3de8585562","impliedFormat":1},{"version":"e0c868a08451c879984ccf4d4e3c1240b3be15af8988d230214977a3a3dad4ce","impliedFormat":1},{"version":"469532350a366536390c6eb3bde6839ec5c81fe1227a6b7b6a70202954d70c40","impliedFormat":1},{"version":"17c9f569be89b4c3c17dc17a9fb7909b6bab34f73da5a9a02d160f502624e2e8","impliedFormat":1},{"version":"003df7b9a77eaeb7a524b795caeeb0576e624e78dea5e362b053cb96ae89132a","impliedFormat":1},{"version":"7ba17571f91993b87c12b5e4ecafe66b1a1e2467ac26fcb5b8cee900f6cf8ff4","impliedFormat":1},{"version":"6fc1a4f64372593767a9b7b774e9b3b92bf04e8785c3f9ea98973aa9f4bbe490","impliedFormat":1},{"version":"d30e67059f5c545c5f8f0cc328a36d2e03b8c4a091b4301bc1d6afb2b1491a3a","impliedFormat":1},{"version":"8b219399c6a743b7c526d4267800bd7c84cf8e27f51884c86ad032d662218a9d","impliedFormat":1},{"version":"bad6d83a581dbd97677b96ee3270a5e7d91b692d220b87aab53d63649e47b9ad","impliedFormat":1},{"version":"324726a1827e34c0c45c43c32ecf73d235b01e76ef6d0f44c2c0270628df746a","impliedFormat":1},{"version":"54e79224429e911b5d6aeb3cf9097ec9fd0f140d5a1461bbdece3066b17c232c","impliedFormat":1},{"version":"e1b666b145865bc8d0d843134b21cf589c13beba05d333c7568e7c30309d933a","impliedFormat":1},{"version":"ff09b6fbdcf74d8af4e131b8866925c5e18d225540b9b19ce9485ca93e574d84","impliedFormat":1},{"version":"c836b5d8d84d990419548574fc037c923284df05803b098fe5ddaa49f88b898a","impliedFormat":1},{"version":"3a2b8ed9d6b687ab3e1eac3350c40b1624632f9e837afe8a4b5da295acf491cb","impliedFormat":1},{"version":"189266dd5f90a981910c70d7dfa05e2bca901a4f8a2680d7030c3abbfb5b1e23","impliedFormat":1},{"version":"5ec8dcf94c99d8f1ed7bb042cdfa4ef6a9810ca2f61d959be33bcaf3f309debe","impliedFormat":1},{"version":"a80e02af710bdac31f2d8308890ac4de4b6a221aafcbce808123bfc2903c5dc2","impliedFormat":1},{"version":"d5895252efa27a50f134a9b580aa61f7def5ab73d0a8071f9b5bf9a317c01c2d","impliedFormat":1},{"version":"2c378d9368abcd2eba8c29b294d40909845f68557bc0b38117e4f04fc56e5f9c","impliedFormat":1},{"version":"0f345151cece7be8d10df068b58983ea8bcbfead1b216f0734037a6c63d8af87","impliedFormat":1},{"version":"37fd7bde9c88aa142756d15aeba872498f45ad149e0d1e56f3bccc1af405c520","impliedFormat":1},{"version":"2a920fd01157f819cf0213edfb801c3fb970549228c316ce0a4b1885020bad35","impliedFormat":1},{"version":"56208c500dcb5f42be7e18e8cb578f257a1a89b94b3280c506818fed06391805","impliedFormat":1},{"version":"0c94c2e497e1b9bcfda66aea239d5d36cd980d12a6d9d59e66f4be1fa3da5d5a","impliedFormat":1},{"version":"a67774ceb500c681e1129b50a631fa210872bd4438fae55e5e8698bac7036b19","impliedFormat":1},{"version":"bb220eaac1677e2ad82ac4e7fd3e609a0c7b6f2d6d9c673a35068c97f9fcd5cd","affectsGlobalScope":true,"impliedFormat":1},{"version":"dd8936160e41420264a9d5fade0ff95cc92cab56032a84c74a46b4c38e43121e","impliedFormat":1},{"version":"1f366bde16e0513fa7b64f87f86689c4d36efd85afce7eb24753e9c99b91c319","impliedFormat":1},{"version":"421c3f008f6ef4a5db2194d58a7b960ef6f33e94b033415649cd557be09ef619","impliedFormat":1},{"version":"57568ff84b8ba1a4f8c817141644b49252cc39ec7b899e4bfba0ec0557c910a0","impliedFormat":1},{"version":"e6f10f9a770dedf552ca0946eef3a3386b9bfb41509233a30fc8ca47c49db71c","impliedFormat":1},{"version":"a4a39b5714adfcadd3bbea6698ca2e942606d833bde62ad5fb6ec55f5e438ff8","impliedFormat":1},{"version":"bbc1d029093135d7d9bfa4b38cbf8761db505026cc458b5e9c8b74f4000e5e75","impliedFormat":1},{"version":"cc137d7ea6ad91ac1579463f2d25c0df4853c4e068e7fd9be5b6c27088760797","affectsGlobalScope":true,"impliedFormat":1},{"version":"4eb2c9b67892c43cbc7720c9c237d094cd009c369bab7b92ef6c83e1ece2ecb1","impliedFormat":1},{"version":"97dafd589bb47b0eebd56cd95fe8083d2b30270567107001ac1e570d78ab1e85","impliedFormat":1},{"version":"271cde49dfd9b398ccc91bb3aaa43854cf76f4d14e10fed91cbac649aa6cbc63","affectsGlobalScope":true,"impliedFormat":1},{"version":"2bcecd31f1b4281710c666843fc55133a0ee25b143e59f35f49c62e168123f4b","impliedFormat":1},{"version":"a6273756fa05f794b64fe1aff45f4371d444f51ed0257f9364a8b25f3501915d","impliedFormat":1},{"version":"9c4e644fe9bf08d93c93bd892705842189fe345163f8896849d5964d21b56b78","impliedFormat":1},{"version":"25d91fb9ed77a828cc6c7a863236fb712dafcd52f816eec481bd0c1f589f4404","impliedFormat":1},{"version":"4cd14cea22eed1bfb0dc76183e56989f897ac5b14c0e2a819e5162eafdcfe243","impliedFormat":1},{"version":"8d32432f68ca4ce93ad717823976f2db2add94c70c19602bf87ee67fe51df48b","impliedFormat":1},{"version":"035a5df183489c2e22f3cf59fc1ed2b043d27f357eecc0eb8d8e840059d44245","impliedFormat":1},{"version":"a4809f4d92317535e6b22b01019437030077a76fec1d93b9881c9ed4738fcc54","impliedFormat":1},{"version":"5f53fa0bd22096d2a78533f94e02c899143b8f0f9891a46965294ee8b91a9434","impliedFormat":1},{"version":"96d14f21b7652903852eef49379d04dbda28c16ed36468f8c9fa08f7c14c9538","impliedFormat":1},{"version":"fec943fdb3275eb6e006b35e04a8e2e99e9adf3f4b969ddf15315ac7575a93e4","impliedFormat":1},{"version":"72a98fa95ff072e18d5558e5e0f6c3abeb70d41521e593b6c8494deea12c79d2","impliedFormat":99},{"version":"c4494ef0db9a14d77401bf1703c28b72c8423354b33749729be1cab9ce710ebc","impliedFormat":1},{"version":"1ef1ce00d53ea0e647b86c38980e774cf39d9893fab23d0c1efcf440c9988ed2","impliedFormat":1},{"version":"2d4e59ab3a1fcdec40ad09ef2e5c6a40f67856b6c06919d3e1b4981fe61d9d01","impliedFormat":1},{"version":"08b5422b6fcc160d099df9d710cff2a1142175d4a4bf5dcc9808ddcea577043f","impliedFormat":1},{"version":"4f80ee53bba81c3742f1dc5e6cb053d54a877aac74f7a620af4da73a4ba86828","impliedFormat":1},{"version":"817c03c1b48aef1e718f84549e6dfd285ad10ee0bb6b8109f6920f6082db3d1d","impliedFormat":1},{"version":"ad1f3ffcde31019536358bab477c4dd6146e8a5ff10952b5b87051c22d10a839","impliedFormat":1},{"version":"a95b76aef31395752eb5cb7b386be2e287fdc32dfdf7bdbbb666e333133b1ef7","impliedFormat":1},{"version":"d4d7d3f832882a4b2d611a7eaaa80c780c3342b5732090130fa9af4a40bd051e","impliedFormat":1},{"version":"1d4bc73751d6ec6285331d1ca378904f55d9e5e8aeaa69bc45b675c3df83e778","impliedFormat":1},{"version":"d4d7d3f832882a4b2d611a7eaaa80c780c3342b5732090130fa9af4a40bd051e","impliedFormat":1},{"version":"8017277c3843df85296d8730f9edf097d68d7d5f9bc9d8124fcacf17ecfd487e","impliedFormat":1},{"version":"d4d7d3f832882a4b2d611a7eaaa80c780c3342b5732090130fa9af4a40bd051e","impliedFormat":1},{"version":"df508df6a1aadae4499d327c2360816978e28839560c044099e4acffcde5489d","impliedFormat":1},{"version":"960a68ced7820108787135bdae5265d2cc4b511b7dcfd5b8f213432a8483daf1","impliedFormat":1},{"version":"2e7ebdc7d8af978c263890bbde991e88d6aa31cc29d46735c9c5f45f0a41243b","impliedFormat":1},{"version":"b57fd1c0a680d220e714b76d83eff51a08670f56efcc5d68abc82f5a2684f0c0","impliedFormat":1},{"version":"8cf121e98669f724256d06bebafec912b92bb042a06d4944f7fb27a56c545109","impliedFormat":1},{"version":"1084565c68b2aed5d6d5cea394799bd688afdf4dc99f4e3615957857c15bb231","impliedFormat":1},{"version":"d11fa46d7f23e3401b91365c332417529a0965ee7a3a1f94caf4dc8edcfda7c7","impliedFormat":1},{"version":"4ef960df4f672e93b479f88211ed8b5cfa8a598b97aafa3396cacdc3341e3504","impliedFormat":1},{"version":"cf3d384d082b933d987c4e2fe7bfb8710adfd9dc8155190056ed6695a25a559e","impliedFormat":1},{"version":"9871b7ee672bc16c78833bdab3052615834b08375cb144e4d2cba74473f4a589","impliedFormat":1},{"version":"c863198dae89420f3c552b5a03da6ed6d0acfa3807a64772b895db624b0de707","impliedFormat":1},{"version":"8b03a5e327d7db67112ebbc93b4f744133eda2c1743dbb0a990c61a8007823ef","impliedFormat":1},{"version":"86c73f2ee1752bac8eeeece234fd05dfcf0637a4fbd8032e4f5f43102faa8eec","impliedFormat":1},{"version":"42fad1f540271e35ca37cecda12c4ce2eef27f0f5cf0f8dd761d723c744d3159","impliedFormat":1},{"version":"ff3743a5de32bee10906aff63d1de726f6a7fd6ee2da4b8229054dfa69de2c34","impliedFormat":1},{"version":"83acd370f7f84f203e71ebba33ba61b7f1291ca027d7f9a662c6307d74e4ac22","impliedFormat":1},{"version":"1445cec898f90bdd18b2949b9590b3c012f5b7e1804e6e329fb0fe053946d5ec","impliedFormat":1},{"version":"0e5318ec2275d8da858b541920d9306650ae6ac8012f0e872fe66eb50321a669","impliedFormat":1},{"version":"cf530297c3fb3a92ec9591dd4fa229d58b5981e45fe6702a0bd2bea53a5e59be","impliedFormat":1},{"version":"c1f6f7d08d42148ddfe164d36d7aba91f467dbcb3caa715966ff95f55048b3a4","impliedFormat":1},{"version":"f4e9bf9103191ef3b3612d3ec0044ca4044ca5be27711fe648ada06fad4bcc85","impliedFormat":1},{"version":"0c1ee27b8f6a00097c2d6d91a21ee4d096ab52c1e28350f6362542b55380059a","impliedFormat":1},{"version":"7677d5b0db9e020d3017720f853ba18f415219fb3a9597343b1b1012cfd699f7","impliedFormat":1},{"version":"bc1c6bc119c1784b1a2be6d9c47addec0d83ef0d52c8fbe1f14a51b4dfffc675","impliedFormat":1},{"version":"52cf2ce99c2a23de70225e252e9822a22b4e0adb82643ab0b710858810e00bf1","impliedFormat":1},{"version":"770625067bb27a20b9826255a8d47b6b5b0a2d3dfcbd21f89904c731f671ba77","impliedFormat":1},{"version":"d1ed6765f4d7906a05968fb5cd6d1db8afa14dbe512a4884e8ea5c0f5e142c80","impliedFormat":1},{"version":"799c0f1b07c092626cf1efd71d459997635911bb5f7fc1196efe449bba87e965","impliedFormat":1},{"version":"2a184e4462b9914a30b1b5c41cf80c6d3428f17b20d3afb711fff3f0644001fd","impliedFormat":1},{"version":"9eabde32a3aa5d80de34af2c2206cdc3ee094c6504a8d0c2d6d20c7c179503cc","impliedFormat":1},{"version":"397c8051b6cfcb48aa22656f0faca2553c5f56187262135162ee79d2b2f6c966","impliedFormat":1},{"version":"a8ead142e0c87dcd5dc130eba1f8eeed506b08952d905c47621dc2f583b1bff9","impliedFormat":1},{"version":"a02f10ea5f73130efca046429254a4e3c06b5475baecc8f7b99a0014731be8b3","impliedFormat":1},{"version":"c2576a4083232b0e2d9bd06875dd43d371dee2e090325a9eac0133fd5650c1cb","impliedFormat":1},{"version":"4c9a0564bb317349de6a24eb4efea8bb79898fa72ad63a1809165f5bd42970dd","impliedFormat":1},{"version":"f40ac11d8859092d20f953aae14ba967282c3bb056431a37fced1866ec7a2681","impliedFormat":1},{"version":"cc11e9e79d4746cc59e0e17473a59d6f104692fd0eeea1bdb2e206eabed83b03","impliedFormat":1},{"version":"b444a410d34fb5e98aa5ee2b381362044f4884652e8bc8a11c8fe14bbd85518e","impliedFormat":1},{"version":"c35808c1f5e16d2c571aa65067e3cb95afeff843b259ecfa2fc107a9519b5392","impliedFormat":1},{"version":"14d5dc055143e941c8743c6a21fa459f961cbc3deedf1bfe47b11587ca4b3ef5","impliedFormat":1},{"version":"a3ad4e1fc542751005267d50a6298e6765928c0c3a8dce1572f2ba6ca518661c","impliedFormat":1},{"version":"f237e7c97a3a89f4591afd49ecb3bd8d14f51a1c4adc8fcae3430febedff5eb6","impliedFormat":1},{"version":"3ffdfbec93b7aed71082af62b8c3e0cc71261cc68d796665faa1e91604fbae8f","impliedFormat":1},{"version":"662201f943ed45b1ad600d03a90dffe20841e725203ced8b708c91fcd7f9379a","impliedFormat":1},{"version":"c9ef74c64ed051ea5b958621e7fb853fe3b56e8787c1587aefc6ea988b3c7e79","impliedFormat":1},{"version":"2462ccfac5f3375794b861abaa81da380f1bbd9401de59ffa43119a0b644253d","impliedFormat":1},{"version":"34baf65cfee92f110d6653322e2120c2d368ee64b3c7981dff08ed105c4f19b0","impliedFormat":1},{"version":"844ab83672160ca57a2a2ea46da4c64200d8c18d4ebb2087819649cad099ff0e","impliedFormat":1},{"version":"ab82804a14454734010dcdcd43f564ff7b0389bee4c5692eec76ff5b30d4cf66","impliedFormat":1},{"version":"15fe687c59d62741b4494d5e623d497d55eb38966ecf5bea7f36e48fc3fbe15e","impliedFormat":1},{"version":"2c3b8be03577c98530ef9cb1a76e2c812636a871f367e9edf4c5f3ce702b77f8","affectsGlobalScope":true,"impliedFormat":1},{"version":"f874ea4d0091b0a44362a5f74d26caab2e66dec306c2bf7e8965f5106e784c3b","impliedFormat":1},{"version":"f05afa17cfc95a95923f48614bf3eb5ab2598850ee27a7c29f1b116a71090c5d","impliedFormat":1},{"version":"c2eb1bc18bcba42184bd385ae433db3657f9f0f2804c40a3df3b233e448f6899","impliedFormat":1},{"version":"bae8d023ef6b23df7da26f51cea44321f95817c190342a36882e93b80d07a960","impliedFormat":1},{"version":"26a770cec4bd2e7dbba95c6e536390fffe83c6268b78974a93727903b515c4e7","impliedFormat":1},{"version":"74d5a87c3616cd5d8691059d531504403aa857e09cbaecb1c64dfb9ace0db185","impliedFormat":1}],"root":[[516,519],[521,528],[694,707],710,[713,716],[718,724],[726,734],[742,750],[753,755],[763,770],[936,940],[947,994],[1004,1006],[1195,1202],[1204,1216],[1221,1227],[1231,1233]],"options":{"allowJs":true,"allowSyntheticDefaultImports":true,"alwaysStrict":true,"declaration":true,"emitDeclarationOnly":true,"emitDecoratorMetadata":true,"esModuleInterop":true,"experimentalDecorators":true,"jsx":2,"module":99,"noImplicitAny":false,"outDir":"./","skipLibCheck":true,"strict":false,"strictNullChecks":true,"target":4,"useDefineForClassFields":false},"referencedMap":[[1191,1],[712,2],[1233,3],[738,4],[1193,5],[1194,6],[800,7],[796,8],[783,3],[799,9],[792,10],[790,11],[789,11],[788,10],[785,11],[786,10],[794,12],[787,11],[784,10],[791,11],[797,13],[798,14],[793,15],[795,11],[914,16],[806,16],[811,16],[836,17],[831,18],[835,19],[833,20],[834,21],[873,22],[874,23],[871,3],[868,24],[867,19],[898,25],[915,26],[920,22],[921,27],[772,16],[832,16],[801,28],[897,29],[872,30],[1234,3],[1235,3],[1236,31],[1294,32],[1237,33],[1283,34],[1239,35],[1238,36],[1240,33],[1241,33],[1243,37],[1242,33],[1244,38],[1245,38],[1246,33],[1248,39],[1249,33],[1250,39],[1251,33],[1253,33],[1254,33],[1255,33],[1256,40],[1252,33],[1257,3],[1258,41],[1259,41],[1260,41],[1261,41],[1262,41],[1272,42],[1263,41],[1264,41],[1265,41],[1266,41],[1268,41],[1269,41],[1267,41],[1270,41],[1271,41],[1273,33],[1274,33],[1247,33],[1275,39],[1277,43],[1276,33],[1278,33],[1279,33],[1280,44],[1282,33],[1281,33],[1284,33],[1286,33],[1287,45],[1285,33],[1288,33],[1289,33],[1290,33],[1291,33],[1292,33],[1293,33],[1002,46],[1298,47],[752,48],[1001,49],[1299,3],[1301,50],[1302,50],[1303,3],[1304,3],[1306,51],[1307,3],[1308,3],[1309,50],[1310,3],[1311,3],[1312,52],[1313,3],[1314,3],[1315,53],[1316,3],[1317,54],[1318,3],[1319,3],[1320,3],[1321,3],[1324,3],[1323,55],[1300,3],[1325,56],[1326,3],[1322,3],[1327,3],[1328,50],[1329,57],[1330,58],[475,59],[751,3],[1332,60],[1331,61],[736,3],[998,62],[1333,63],[1003,64],[1334,3],[1335,65],[1203,3],[1305,3],[1337,66],[1338,66],[1339,66],[1336,3],[1342,67],[1340,68],[1341,68],[1296,3],[999,3],[1343,3],[1344,69],[1345,70],[737,3],[1346,3],[1347,71],[708,3],[474,3],[1349,72],[1350,73],[1351,74],[1352,75],[1355,76],[1353,77],[1354,78],[709,79],[127,80],[128,80],[129,81],[85,82],[130,83],[131,84],[132,85],[83,3],[133,86],[134,87],[135,88],[136,89],[137,90],[138,91],[139,91],[141,3],[140,92],[142,93],[143,94],[144,95],[126,96],[84,3],[145,97],[146,98],[147,99],[180,100],[148,101],[149,102],[150,103],[151,104],[152,105],[153,106],[154,107],[155,108],[156,109],[157,110],[158,110],[159,111],[160,3],[161,3],[162,112],[164,113],[163,114],[165,115],[166,116],[167,117],[168,118],[169,119],[170,120],[171,121],[172,122],[173,123],[174,124],[175,125],[176,126],[177,127],[178,128],[179,129],[758,3],[996,3],[997,3],[762,130],[1356,130],[760,3],[761,131],[1360,132],[1359,133],[1358,134],[1357,135],[1362,130],[1361,136],[1363,3],[1364,137],[1367,138],[1365,16],[775,16],[1366,137],[756,3],[759,139],[865,16],[1368,75],[1297,140],[1369,3],[1394,141],[1395,142],[1370,143],[1373,143],[1392,141],[1393,141],[1383,141],[1382,144],[1380,141],[1375,141],[1388,141],[1386,141],[1390,141],[1374,141],[1387,141],[1391,141],[1376,141],[1377,141],[1389,141],[1371,141],[1378,141],[1379,141],[1381,141],[1385,141],[1396,145],[1384,141],[1372,141],[1409,146],[1408,3],[1403,145],[1405,147],[1404,145],[1397,145],[1398,145],[1400,145],[1402,145],[1406,147],[1407,147],[1399,147],[1401,147],[995,148],[1000,149],[1410,3],[1412,150],[1411,3],[1413,3],[1414,3],[711,151],[1415,3],[1416,3],[1417,152],[1418,153],[717,3],[757,3],[725,154],[520,3],[740,155],[739,156],[1187,157],[1188,158],[1026,159],[1093,160],[1095,161],[1092,162],[1094,160],[1025,163],[1087,164],[1047,165],[1014,166],[1027,167],[1023,168],[1022,164],[1028,169],[1024,170],[1013,171],[1046,172],[1089,3],[1111,173],[1040,174],[1041,175],[1016,176],[1088,3],[1082,164],[1151,177],[1152,178],[1075,179],[1068,180],[1153,177],[1163,181],[1162,182],[1154,183],[1155,177],[1156,184],[1157,185],[1158,177],[1159,186],[1160,177],[1161,177],[1086,187],[1085,188],[1083,189],[1020,190],[1164,191],[1165,192],[1166,191],[1167,191],[1018,191],[1168,191],[1169,193],[1170,191],[1171,191],[1173,194],[1184,195],[1183,196],[1174,191],[1007,3],[1175,191],[1176,193],[1186,197],[1177,191],[1178,191],[1179,191],[1180,191],[1060,191],[1181,191],[1172,3],[1019,195],[1185,198],[1182,191],[1017,191],[1072,199],[1033,200],[1032,164],[1091,201],[1109,202],[1056,3],[1108,203],[1058,204],[1105,204],[1106,205],[1107,206],[1055,207],[1057,208],[1015,3],[1149,209],[1142,210],[1143,210],[1145,209],[1150,3],[1147,201],[1146,3],[1144,210],[1148,164],[1031,211],[1036,212],[1035,213],[1034,214],[1074,164],[1009,171],[1110,215],[1097,216],[1099,216],[1059,217],[1061,218],[1078,3],[1077,219],[1081,220],[1045,221],[1080,222],[1079,223],[1096,224],[1070,225],[1071,226],[1008,171],[1069,227],[1066,228],[1065,229],[1049,164],[1010,3],[1011,3],[1053,230],[1050,164],[1054,231],[1012,3],[1052,232],[1048,164],[1051,233],[1037,234],[1103,235],[1102,236],[1100,216],[1038,237],[1084,238],[1039,239],[1104,240],[1098,241],[1073,242],[1064,243],[1043,244],[1136,3],[1090,245],[1062,246],[1063,247],[1135,244],[1134,248],[1042,174],[1044,246],[1131,163],[1130,3],[1141,249],[1139,164],[1138,3],[1137,3],[1127,3],[1125,250],[1124,3],[1112,164],[1118,164],[1123,164],[1122,251],[1132,3],[1067,250],[1133,252],[1021,253],[1076,254],[1128,3],[1126,254],[1117,255],[1101,250],[1115,164],[1116,250],[1113,164],[1121,164],[1120,164],[1029,256],[1119,3],[1114,250],[1129,257],[1030,250],[1140,171],[1190,258],[1189,3],[1295,259],[1348,3],[197,3],[1192,3],[457,260],[456,261],[455,262],[448,263],[453,264],[438,265],[437,3],[398,266],[436,267],[449,268],[396,269],[428,270],[399,271],[435,272],[454,273],[400,274],[442,275],[441,276],[401,277],[458,278],[417,279],[460,280],[461,281],[459,282],[470,283],[418,284],[446,285],[447,286],[425,287],[402,288],[462,289],[412,290],[463,291],[416,292],[464,293],[433,294],[432,295],[419,296],[420,297],[466,298],[465,299],[429,300],[415,301],[411,3],[413,302],[434,303],[467,304],[422,305],[431,306],[468,307],[445,308],[443,309],[444,310],[430,311],[469,264],[414,312],[471,293],[393,313],[488,314],[473,315],[192,3],[195,316],[450,317],[196,3],[405,318],[476,319],[451,320],[193,3],[392,3],[200,321],[423,322],[477,318],[478,323],[439,324],[421,325],[424,3],[479,326],[480,318],[481,327],[482,328],[404,329],[483,3],[395,264],[472,3],[484,3],[485,318],[394,3],[440,330],[426,3],[486,331],[194,3],[397,332],[487,318],[494,333],[515,334],[406,335],[410,336],[407,3],[408,337],[409,3],[510,338],[511,339],[512,340],[508,341],[514,342],[513,293],[509,343],[452,344],[489,3],[490,3],[492,337],[403,313],[199,3],[491,313],[427,3],[201,345],[493,346],[198,347],[391,348],[191,349],[501,350],[497,351],[496,352],[498,351],[499,352],[500,352],[495,3],[503,353],[506,354],[505,353],[504,355],[502,356],[507,357],[185,358],[188,359],[189,360],[186,3],[187,3],[184,3],[190,361],[183,264],[182,3],[876,362],[781,363],[780,364],[774,365],[777,366],[771,16],[779,365],[778,365],[805,367],[804,365],[803,365],[807,368],[808,369],[810,370],[809,365],[812,371],[813,365],[814,365],[824,372],[818,365],[822,365],[825,365],[821,365],[815,365],[823,365],[819,365],[817,365],[820,365],[816,365],[828,373],[826,365],[827,365],[782,16],[829,365],[776,374],[830,365],[917,375],[844,376],[845,377],[837,378],[842,365],[843,365],[840,379],[841,365],[839,380],[838,381],[846,374],[852,365],[849,382],[848,365],[850,383],[862,384],[863,385],[857,386],[855,365],[856,365],[853,387],[854,365],[851,365],[858,388],[860,365],[861,365],[859,365],[773,22],[847,389],[935,390],[866,391],[864,365],[870,392],[869,393],[881,394],[875,365],[880,365],[879,365],[877,395],[878,365],[884,396],[894,397],[885,365],[886,398],[891,399],[892,365],[893,365],[895,400],[882,365],[883,401],[890,402],[887,365],[888,395],[889,365],[896,403],[899,404],[900,405],[901,365],[902,406],[905,407],[904,408],[908,409],[907,365],[906,365],[909,365],[910,365],[911,365],[912,369],[913,410],[916,411],[918,412],[924,413],[922,414],[923,365],[925,365],[919,364],[926,415],[927,416],[930,417],[928,365],[931,365],[929,418],[932,419],[933,420],[934,404],[802,421],[903,422],[946,423],[942,424],[945,425],[944,3],[941,16],[943,3],[1219,426],[1217,427],[1220,428],[1229,429],[1228,3],[1230,430],[1218,16],[741,431],[693,432],[664,433],[554,434],[660,3],[627,435],[597,436],[583,437],[661,3],[608,3],[618,3],[637,438],[531,3],[668,439],[670,440],[669,441],[620,442],[619,443],[622,444],[621,445],[581,3],[671,446],[675,447],[673,448],[535,449],[536,449],[537,3],[584,450],[634,451],[633,3],[646,452],[571,453],[640,3],[629,3],[688,454],[690,3],[557,455],[556,456],[649,457],[652,458],[541,459],[653,460],[567,461],[538,462],[543,463],[666,464],[603,465],[687,434],[659,466],[658,467],[545,468],[546,3],[570,469],[561,470],[562,471],[569,472],[560,473],[559,474],[568,475],[610,3],[547,3],[553,3],[548,3],[549,476],[551,477],[542,3],[601,3],[655,478],[602,464],[632,3],[624,3],[639,479],[638,480],[672,448],[676,481],[674,482],[534,483],[689,3],[626,455],[558,484],[644,485],[643,3],[598,486],[586,487],[587,3],[566,488],[630,489],[631,489],[573,490],[574,3],[582,3],[550,491],[532,3],[600,492],[564,3],[539,3],[555,434],[648,493],[691,494],[592,495],[604,496],[677,441],[679,497],[678,497],[595,498],[596,499],[565,3],[529,3],[607,3],[606,500],[651,460],[647,3],[685,500],[589,501],[572,502],[588,501],[590,503],[593,500],[540,457],[642,3],[683,504],[662,505],[616,506],[615,3],[611,507],[636,508],[612,507],[614,509],[613,510],[635,465],[665,511],[663,512],[585,513],[563,3],[591,514],[680,448],[682,481],[681,482],[684,515],[654,516],[645,3],[686,517],[628,518],[623,3],[641,519],[594,520],[625,521],[578,3],[609,3],[552,500],[692,3],[656,522],[657,3],[530,3],[605,500],[533,3],[599,523],[544,3],[577,3],[575,3],[576,3],[617,3],[667,500],[580,500],[650,434],[579,524],[181,3],[81,3],[82,3],[13,3],[14,3],[16,3],[15,3],[2,3],[17,3],[18,3],[19,3],[20,3],[21,3],[22,3],[23,3],[24,3],[3,3],[25,3],[26,3],[4,3],[27,3],[31,3],[28,3],[29,3],[30,3],[32,3],[33,3],[34,3],[5,3],[35,3],[36,3],[37,3],[38,3],[6,3],[42,3],[39,3],[40,3],[41,3],[43,3],[7,3],[44,3],[49,3],[50,3],[45,3],[46,3],[47,3],[48,3],[8,3],[54,3],[51,3],[52,3],[53,3],[55,3],[9,3],[56,3],[57,3],[58,3],[60,3],[59,3],[61,3],[62,3],[10,3],[63,3],[64,3],[65,3],[11,3],[66,3],[67,3],[68,3],[69,3],[70,3],[1,3],[71,3],[72,3],[12,3],[76,3],[74,3],[79,3],[78,3],[73,3],[77,3],[75,3],[80,3],[735,3],[103,525],[114,526],[101,527],[115,31],[124,528],[92,529],[93,530],[91,531],[123,532],[118,533],[122,534],[95,535],[111,536],[94,537],[121,538],[89,539],[90,533],[96,540],[97,3],[102,541],[100,540],[87,542],[125,543],[116,544],[106,545],[105,540],[107,546],[109,547],[104,548],[108,549],[119,532],[98,550],[99,551],[110,552],[88,31],[113,553],[112,540],[117,3],[86,3],[120,554],[1212,555],[731,556],[1204,557],[1216,558],[1221,559],[767,560],[766,427],[1200,561],[1222,562],[1223,563],[770,564],[769,565],[1201,566],[1224,567],[1225,568],[939,569],[938,570],[937,571],[947,561],[1214,572],[1207,561],[1226,573],[1227,574],[950,575],[949,576],[948,577],[1198,572],[1215,561],[1209,3],[952,578],[1231,579],[953,580],[951,576],[1195,581],[936,16],[1202,582],[1205,583],[1208,584],[1197,585],[1199,586],[1211,572],[1210,587],[1196,588],[1206,589],[754,3],[755,3],[764,590],[765,3],[763,427],[1213,16],[940,572],[527,591],[732,592],[727,593],[954,3],[722,105],[720,594],[721,595],[728,596],[724,597],[729,598],[723,599],[726,600],[733,601],[528,602],[965,603],[966,603],[968,604],[961,605],[962,605],[963,605],[967,603],[964,606],[524,607],[970,608],[972,609],[971,610],[974,611],[975,612],[973,613],[969,614],[976,615],[694,616],[957,617],[958,618],[959,619],[956,620],[960,621],[522,622],[977,613],[981,623],[980,624],[982,625],[979,626],[978,627],[695,628],[985,629],[986,630],[987,631],[988,632],[984,633],[983,634],[696,635],[526,636],[955,606],[993,637],[989,638],[991,639],[994,640],[704,641],[990,642],[992,643],[521,644],[698,592],[523,645],[1004,646],[1005,647],[697,648],[701,649],[748,650],[749,651],[750,652],[703,653],[516,654],[745,655],[517,656],[700,657],[744,658],[518,659],[706,660],[699,592],[747,3],[519,661],[715,660],[705,662],[702,663],[707,664],[753,665],[713,666],[710,667],[746,668],[525,669],[768,3],[718,670],[1006,671],[719,3],[1232,3],[742,3],[743,672],[734,3],[730,3],[714,673],[716,674],[390,675],[363,3],[341,676],[339,676],[389,677],[354,678],[353,678],[254,679],[205,680],[361,679],[362,679],[364,681],[365,679],[366,682],[265,683],[367,679],[338,679],[368,679],[369,684],[370,679],[371,678],[372,685],[373,679],[374,679],[375,679],[376,679],[377,678],[378,679],[379,679],[380,679],[381,679],[382,686],[383,679],[384,679],[385,679],[386,679],[387,679],[204,677],[207,682],[208,682],[209,682],[210,682],[211,682],[212,682],[213,682],[214,679],[216,687],[217,682],[215,682],[218,682],[219,682],[220,682],[221,682],[222,682],[223,682],[224,679],[225,682],[226,682],[227,682],[228,682],[229,682],[230,679],[231,682],[232,682],[233,682],[234,682],[235,682],[236,682],[237,679],[239,688],[238,682],[240,682],[241,682],[242,682],[243,682],[244,686],[245,679],[246,679],[260,689],[248,690],[249,682],[250,682],[251,679],[252,682],[253,682],[255,691],[256,682],[257,682],[258,682],[259,682],[261,682],[262,682],[263,682],[264,682],[266,692],[267,682],[268,682],[269,682],[270,679],[271,682],[272,693],[273,693],[274,693],[275,679],[276,682],[277,682],[278,682],[283,682],[279,682],[280,679],[281,682],[282,679],[284,682],[285,682],[286,682],[287,682],[288,682],[289,682],[290,679],[291,682],[292,682],[293,682],[294,682],[295,682],[296,682],[297,682],[298,682],[299,682],[300,682],[301,682],[302,682],[303,682],[304,682],[305,682],[306,682],[307,694],[308,682],[309,682],[310,682],[311,682],[312,682],[313,682],[314,679],[315,679],[316,679],[317,679],[318,679],[319,682],[320,682],[321,682],[322,682],[340,695],[388,679],[325,696],[324,697],[348,698],[347,699],[343,700],[342,699],[344,701],[333,702],[331,703],[346,704],[345,701],[332,3],[334,705],[247,706],[203,707],[202,682],[337,3],[329,708],[330,709],[327,3],[328,710],[326,682],[335,711],[206,712],[355,3],[356,3],[349,3],[352,678],[351,3],[357,3],[358,3],[350,713],[359,3],[360,3],[323,714],[336,715]],"semanticDiagnosticsPerFile":[[519,[{"start":1558,"length":9,"code":2339,"category":1,"messageText":{"messageText":"Property 'mainFrame' does not exist on type 'string | Page'.","category":1,"code":2339,"next":[{"messageText":"Property 'mainFrame' does not exist on type 'string'.","category":1,"code":2339}]}}]],[524,[{"start":8357,"length":7,"messageText":"A spread argument must either have a tuple type or be passed to a rest parameter.","category":1,"code":2556}]],[526,[{"start":1335,"length":6,"code":2349,"category":1,"messageText":{"messageText":"This expression is not callable.","category":1,"code":2349,"next":[{"messageText":"Type 'unknown' has no call signatures.","category":1,"code":2757}]}},{"start":1504,"length":6,"code":2349,"category":1,"messageText":{"messageText":"This expression is not callable.","category":1,"code":2349,"next":[{"messageText":"Type 'unknown' has no call signatures.","category":1,"code":2757}]}}]],[694,[{"start":2354,"length":24,"messageText":"Function lacks ending return statement and return type does not include 'undefined'.","category":1,"code":2366},{"start":3663,"length":59,"messageText":"Expected 1 arguments, but got 3.","category":1,"code":2554}]],[696,[{"start":1356,"length":18,"code":2345,"category":1,"messageText":{"messageText":"Argument of type 'Omit<{ suites: import(\"/Users/adam/Code/testeranto/src/Types\").TestSuiteImplementation<O>; givens: import(\"/Users/adam/Code/testeranto/src/Types\").TestGivenImplementation<I, O>; whens: import(\"/Users/adam/Code/testeranto/src/Types\").TestWhenImplementation<...>; thens: import(\"/Users/adam/Code/testeranto/src/Types\")....' is not assignable to parameter of type 'Omit<{ suites: import(\"/Users/adam/Code/testeranto/src/Types\").TestSuiteImplementation<O>; givens: import(\"/Users/adam/Code/testeranto/src/Types\").TestGivenImplementation<I, O>; whens: import(\"/Users/adam/Code/testeranto/src/Types\").TestWhenImplementation<...>; thens: import(\"/Users/adam/Code/testeranto/src/Types\")....'.","category":1,"code":2345,"next":[{"messageText":"Type 'Omit<{ suites: TestSuiteImplementation<O>; givens: TestGivenImplementation<I, O>; whens: TestWhenImplementation<I, O>; thens: TestThenImplementation<...>; }, keyof M> & M & { ...; }' is not assignable to type '{ suites: Record<string, never>; givens: Record<string, any>; whens: Record<string, any>; thens: Record<string, any>; }'.","category":1,"code":2322,"next":[{"messageText":"Types of property 'suites' are incompatible.","category":1,"code":2326,"next":[{"messageText":"Type 'Record<string, any>' is not assignable to type 'Record<string, never>'.","category":1,"code":2322,"next":[{"messageText":"'string' index signatures are incompatible.","category":1,"code":2634,"next":[{"messageText":"Type 'any' is not assignable to type 'never'.","category":1,"code":2322}]}],"canonicalHead":{"code":2322,"messageText":"Type 'Omit<{ suites: TestSuiteImplementation<O>; givens: TestGivenImplementation<I, O>; whens: TestWhenImplementation<I, O>; thens: TestThenImplementation<...>; }, keyof M> & M & { ...; }' is not assignable to type '{ suites: Record<string, never>; givens: Record<string, any>; whens: Record<string, any>; thens: Record<string, any>; }'."}}]}]}]}}]],[697,[{"start":739,"length":18,"code":2345,"category":1,"messageText":{"messageText":"Argument of type 'ITestImplementation<I, O, M>' is not assignable to parameter of type 'Omit<{ suites: TestSuiteImplementation<O>; givens: TestGivenImplementation<I, O>; whens: TestWhenImplementation<I, O>; thens: TestThenImplementation<...>; }, keyof M> & M & { ...; }'.","category":1,"code":2345,"next":[{"messageText":"Type 'Omit<{ suites: TestSuiteImplementation<O>; givens: TestGivenImplementation<I, O>; whens: TestWhenImplementation<I, O>; thens: TestThenImplementation<...>; }, keyof M>' is missing the following properties from type '{ suites: Record<string, any>; givens: Record<string, any>; whens: Record<string, any>; thens: Record<string, any>; }': suites, givens, whens, thens","category":1,"code":2739,"canonicalHead":{"code":2322,"messageText":"Type 'ITestImplementation<I, O, M>' is not assignable to type '{ suites: Record<string, any>; givens: Record<string, any>; whens: Record<string, any>; thens: Record<string, any>; }'."}}]}}]],[702,[{"start":737,"length":18,"code":2345,"category":1,"messageText":{"messageText":"Argument of type 'ITestImplementation<I, O, M>' is not assignable to parameter of type 'Omit<{ suites: TestSuiteImplementation<O>; givens: TestGivenImplementation<I, O>; whens: TestWhenImplementation<I, O>; thens: TestThenImplementation<...>; }, keyof M> & M & { ...; }'.","category":1,"code":2345,"next":[{"messageText":"Type 'Omit<{ suites: TestSuiteImplementation<O>; givens: TestGivenImplementation<I, O>; whens: TestWhenImplementation<I, O>; thens: TestThenImplementation<...>; }, keyof M>' is missing the following properties from type '{ suites: Record<string, any>; givens: Record<string, any>; whens: Record<string, any>; thens: Record<string, any>; }': suites, givens, whens, thens","category":1,"code":2739,"canonicalHead":{"code":2322,"messageText":"Type 'ITestImplementation<I, O, M>' is not assignable to type '{ suites: Record<string, any>; givens: Record<string, any>; whens: Record<string, any>; thens: Record<string, any>; }'."}}]}}]],[705,[{"start":1829,"length":7,"code":2322,"category":1,"messageText":{"messageText":"Type '() => { pm: IPM; config: {}; proxies: { butThenProxy: (pm: IPM, path: string) => { writeFileSync: (p: string, c: string) => any; testResourceConfiguration: ITTestResourceConfiguration; client: Socket; server: any; } | { ...; } | { ...; }; andWhenProxy: (pm: IPM, path: string) => { ...; } | ... 1 more ... | { ...; };...' is not assignable to type '() => () => { pm: IPM; config: {}; proxies: any; }'.","category":1,"code":2322,"next":[{"messageText":"Type '{ pm: IPM; config: {}; proxies: { butThenProxy: (pm: IPM, path: string) => { writeFileSync: (p: string, c: string) => any; testResourceConfiguration: ITTestResourceConfiguration; client: Socket; server: any; } | { ...; } | { ...; }; andWhenProxy: (pm: IPM, path: string) => { ...; } | ... 1 more ... | { ...; }; befor...' is not assignable to type '() => { pm: IPM; config: {}; proxies: any; }'.","category":1,"code":2322,"next":[{"messageText":"Type '{ pm: IPM; config: {}; proxies: { butThenProxy: (pm: IPM, path: string) => { writeFileSync: (p: string, c: string) => any; testResourceConfiguration: ITTestResourceConfiguration; client: Socket; server: any; } | { ...; } | { ...; }; andWhenProxy: (pm: IPM, path: string) => { ...; } | ... 1 more ... | { ...; }; befor...' provides no match for the signature '(): { pm: IPM; config: {}; proxies: any; }'.","category":1,"code":2658}],"canonicalHead":{"code":2322,"messageText":"Type '() => { pm: IPM; config: {}; proxies: { butThenProxy: (pm: IPM, path: string) => { writeFileSync: (p: string, c: string) => any; testResourceConfiguration: ITTestResourceConfiguration; client: Socket; server: any; } | { ...; } | { ...; }; andWhenProxy: (pm: IPM, path: string) => { ...; } | ... 1 more ... | { ...; };...' is not assignable to type '() => () => { pm: IPM; config: {}; proxies: any; }'."}}]},"relatedInformation":[{"start":1035,"length":7,"messageText":"The expected type comes from property 'Default' which is declared here on type 'TestGivenImplementation<I, O>'","category":3,"code":6500}]},{"start":2723,"length":10,"code":2322,"category":1,"messageText":{"messageText":"Type '(proxyType: string) => (store: { pm: IPM; }, tr: ITTestResourceConfiguration, utils: PM) => Promise<{ pm: IPM; } | { largePayload: boolean; pm: IPM; }>' is not assignable to type '(Iw_0: string) => (zel: { pm: IPM; }, tr: ITTestResourceConfiguration, utils: PM) => Promise<(store: { [key: string]: any; pm: IPM; }) => { [key: string]: any; pm: IPM; }>'.","category":1,"code":2322,"next":[{"messageText":"Call signature return types '(store: { pm: IPM; }, tr: ITTestResourceConfiguration, utils: PM) => Promise<{ pm: IPM; } | { largePayload: boolean; pm: IPM; }>' and '(zel: { pm: IPM; }, tr: ITTestResourceConfiguration, utils: PM) => Promise<(store: { [key: string]: any; pm: IPM; }) => { [key: string]: any; pm: IPM; }>' are incompatible.","category":1,"code":2202,"next":[{"messageText":"Type 'Promise<{ pm: IPM; } | { largePayload: boolean; pm: IPM; }>' is not assignable to type 'Promise<(store: { [key: string]: any; pm: IPM; }) => { [key: string]: any; pm: IPM; }>'.","category":1,"code":2322,"next":[{"messageText":"Type '{ pm: IPM; } | { largePayload: boolean; pm: IPM; }' is not assignable to type '(store: { [key: string]: any; pm: IPM; }) => { [key: string]: any; pm: IPM; }'.","category":1,"code":2322,"next":[{"messageText":"Type '{ pm: IPM; }' is not assignable to type '(store: { [key: string]: any; pm: IPM; }) => { [key: string]: any; pm: IPM; }'.","category":1,"code":2322,"next":[{"messageText":"Type '{ pm: IPM; }' provides no match for the signature '(store: { [key: string]: any; pm: IPM; }): { [key: string]: any; pm: IPM; }'.","category":1,"code":2658}]}]}],"canonicalHead":{"code":2322,"messageText":"Type '(proxyType: string) => (store: { pm: IPM; }, tr: ITTestResourceConfiguration, utils: PM) => Promise<{ pm: IPM; } | { largePayload: boolean; pm: IPM; }>' is not assignable to type '(Iw_0: string) => (zel: { pm: IPM; }, tr: ITTestResourceConfiguration, utils: PM) => Promise<(store: { [key: string]: any; pm: IPM; }) => { [key: string]: any; pm: IPM; }>'."}}]}]},"relatedInformation":[{"start":1058,"length":10,"messageText":"The expected type comes from property 'applyProxy' which is declared here on type 'TestWhenImplementation<I, O>'","category":3,"code":6500}]},{"start":3698,"length":11,"code":2322,"category":1,"messageText":{"messageText":"Type '(artifact: Promise<string>) => (store: { pm: IPM; }) => Promise<{ artifacts: any[]; pm: IPM; }>' is not assignable to type '(Iw_0: Promise<string>) => (zel: { pm: IPM; }, tr: ITTestResourceConfiguration, utils: PM) => Promise<(store: { [key: string]: any; pm: IPM; }) => { ...; }>'.","category":1,"code":2322,"next":[{"messageText":"Call signature return types '(store: { pm: IPM; }) => Promise<{ artifacts: any[]; pm: IPM; }>' and '(zel: { pm: IPM; }, tr: ITTestResourceConfiguration, utils: PM) => Promise<(store: { [key: string]: any; pm: IPM; }) => { [key: string]: any; pm: IPM; }>' are incompatible.","category":1,"code":2202,"next":[{"messageText":"Type 'Promise<{ artifacts: any[]; pm: IPM; }>' is not assignable to type 'Promise<(store: { [key: string]: any; pm: IPM; }) => { [key: string]: any; pm: IPM; }>'.","category":1,"code":2322,"next":[{"messageText":"Type '{ artifacts: any[]; pm: IPM; }' is not assignable to type '(store: { [key: string]: any; pm: IPM; }) => { [key: string]: any; pm: IPM; }'.","category":1,"code":2322,"next":[{"messageText":"Type '{ artifacts: any[]; pm: IPM; }' provides no match for the signature '(store: { [key: string]: any; pm: IPM; }): { [key: string]: any; pm: IPM; }'.","category":1,"code":2658}]}],"canonicalHead":{"code":2322,"messageText":"Type '(artifact: Promise<string>) => (store: { pm: IPM; }) => Promise<{ artifacts: any[]; pm: IPM; }>' is not assignable to type '(Iw_0: Promise<string>) => (zel: { pm: IPM; }, tr: ITTestResourceConfiguration, utils: PM) => Promise<(store: { [key: string]: any; pm: IPM; }) => { ...; }>'."}}]}]},"relatedInformation":[{"start":1164,"length":11,"messageText":"The expected type comes from property 'addArtifact' which is declared here on type 'TestWhenImplementation<I, O>'","category":3,"code":6500}]},{"start":3824,"length":9,"code":2339,"category":1,"messageText":"Property 'artifacts' does not exist on type '{ pm: IPM; }'."},{"start":3873,"length":11,"code":2322,"category":1,"messageText":{"messageText":"Type '(jobs: any[]) => (store: { pm: IPM; }) => Promise<{ testJobs: any[]; pm: IPM; }>' is not assignable to type '(Iw_0: any[]) => (zel: { pm: IPM; }, tr: ITTestResourceConfiguration, utils: PM) => Promise<(store: { [key: string]: any; pm: IPM; }) => { [key: string]: any; pm: IPM; }>'.","category":1,"code":2322,"next":[{"messageText":"Call signature return types '(store: { pm: IPM; }) => Promise<{ testJobs: any[]; pm: IPM; }>' and '(zel: { pm: IPM; }, tr: ITTestResourceConfiguration, utils: PM) => Promise<(store: { [key: string]: any; pm: IPM; }) => { [key: string]: any; pm: IPM; }>' are incompatible.","category":1,"code":2202,"next":[{"messageText":"Type 'Promise<{ testJobs: any[]; pm: IPM; }>' is not assignable to type 'Promise<(store: { [key: string]: any; pm: IPM; }) => { [key: string]: any; pm: IPM; }>'.","category":1,"code":2322,"next":[{"messageText":"Type '{ testJobs: any[]; pm: IPM; }' is not assignable to type '(store: { [key: string]: any; pm: IPM; }) => { [key: string]: any; pm: IPM; }'.","category":1,"code":2322,"next":[{"messageText":"Type '{ testJobs: any[]; pm: IPM; }' provides no match for the signature '(store: { [key: string]: any; pm: IPM; }): { [key: string]: any; pm: IPM; }'.","category":1,"code":2658}]}],"canonicalHead":{"code":2322,"messageText":"Type '(jobs: any[]) => (store: { pm: IPM; }) => Promise<{ testJobs: any[]; pm: IPM; }>' is not assignable to type '(Iw_0: any[]) => (zel: { pm: IPM; }, tr: ITTestResourceConfiguration, utils: PM) => Promise<(store: { [key: string]: any; pm: IPM; }) => { [key: string]: any; pm: IPM; }>'."}}]}]},"relatedInformation":[{"start":1200,"length":11,"messageText":"The expected type comes from property 'setTestJobs' which is declared here on type 'TestWhenImplementation<I, O>'","category":3,"code":6500}]},{"start":3999,"length":11,"code":2322,"category":1,"messageText":{"messageText":"Type '(modifier: (specs: any) => any[]) => (store: { pm: IPM; }) => Promise<{ specs: any[]; pm: IPM; }>' is not assignable to type '(Iw_0: (specs: any) => any[]) => (zel: { pm: IPM; }, tr: ITTestResourceConfiguration, utils: PM) => Promise<(store: { [key: string]: any; pm: IPM; }) => { ...; }>'.","category":1,"code":2322,"next":[{"messageText":"Call signature return types '(store: { pm: IPM; }) => Promise<{ specs: any[]; pm: IPM; }>' and '(zel: { pm: IPM; }, tr: ITTestResourceConfiguration, utils: PM) => Promise<(store: { [key: string]: any; pm: IPM; }) => { [key: string]: any; pm: IPM; }>' are incompatible.","category":1,"code":2202,"next":[{"messageText":"Type 'Promise<{ specs: any[]; pm: IPM; }>' is not assignable to type 'Promise<(store: { [key: string]: any; pm: IPM; }) => { [key: string]: any; pm: IPM; }>'.","category":1,"code":2322,"next":[{"messageText":"Type '{ specs: any[]; pm: IPM; }' is not assignable to type '(store: { [key: string]: any; pm: IPM; }) => { [key: string]: any; pm: IPM; }'.","category":1,"code":2322,"next":[{"messageText":"Type '{ specs: any[]; pm: IPM; }' provides no match for the signature '(store: { [key: string]: any; pm: IPM; }): { [key: string]: any; pm: IPM; }'.","category":1,"code":2658}]}],"canonicalHead":{"code":2322,"messageText":"Type '(modifier: (specs: any) => any[]) => (store: { pm: IPM; }) => Promise<{ specs: any[]; pm: IPM; }>' is not assignable to type '(Iw_0: (specs: any) => any[]) => (zel: { pm: IPM; }, tr: ITTestResourceConfiguration, utils: PM) => Promise<(store: { [key: string]: any; pm: IPM; }) => { ...; }>'."}}]}]},"relatedInformation":[{"start":1226,"length":11,"messageText":"The expected type comes from property 'modifySpecs' which is declared here on type 'TestWhenImplementation<I, O>'","category":3,"code":6500}]},{"start":4131,"length":5,"code":2339,"category":1,"messageText":"Property 'specs' does not exist on type '{ pm: IPM; }'."},{"start":4209,"length":29,"code":2322,"category":1,"messageText":{"messageText":"Type '(store: any, tr: any, utils: any) => Promise<any>' is not assignable to type '(ssel: { pm: IPM; }, utils: PM) => (store: { [key: string]: any; pm: IPM; }) => { [key: string]: any; pm: IPM; }'.","category":1,"code":2322,"next":[{"messageText":"Target signature provides too few arguments. Expected 3 or more, but got 2.","category":1,"code":2849}]},"relatedInformation":[{"file":"../../src/types.ts","start":3762,"length":81,"messageText":"The expected type comes from the return type of this signature.","category":3,"code":6502}]},{"start":4370,"length":29,"code":2322,"category":1,"messageText":{"messageText":"Type '(store: any, tr: any, utils: any) => Promise<any>' is not assignable to type '(ssel: { pm: IPM; }, utils: PM) => (store: { [key: string]: any; pm: IPM; }) => { [key: string]: any; pm: IPM; }'.","category":1,"code":2322,"next":[{"messageText":"Target signature provides too few arguments. Expected 3 or more, but got 2.","category":1,"code":2849}]},"relatedInformation":[{"file":"../../src/types.ts","start":3762,"length":81,"messageText":"The expected type comes from the return type of this signature.","category":3,"code":6502}]},{"start":4450,"length":29,"code":2322,"category":1,"messageText":{"messageText":"Type '(store: any, tr: any, utils: any) => Promise<any>' is not assignable to type '(ssel: { pm: IPM; }, utils: PM) => (store: { [key: string]: any; pm: IPM; }) => { [key: string]: any; pm: IPM; }'.","category":1,"code":2322,"next":[{"messageText":"Target signature provides too few arguments. Expected 3 or more, but got 2.","category":1,"code":2849}]},"relatedInformation":[{"file":"../../src/types.ts","start":3762,"length":81,"messageText":"The expected type comes from the return type of this signature.","category":3,"code":6502}]},{"start":4535,"length":29,"code":2322,"category":1,"messageText":{"messageText":"Type '(store: any, tr: any, utils: any) => Promise<any>' is not assignable to type '(ssel: { pm: IPM; }, utils: PM) => (store: { [key: string]: any; pm: IPM; }) => { [key: string]: any; pm: IPM; }'.","category":1,"code":2322,"next":[{"messageText":"Target signature provides too few arguments. Expected 3 or more, but got 2.","category":1,"code":2849}]},"relatedInformation":[{"file":"../../src/types.ts","start":3762,"length":81,"messageText":"The expected type comes from the return type of this signature.","category":3,"code":6502}]},{"start":4621,"length":29,"code":2322,"category":1,"messageText":{"messageText":"Type '(store: any, tr: any, utils: any) => Promise<any>' is not assignable to type '(ssel: { pm: IPM; }, utils: PM) => (store: { [key: string]: any; pm: IPM; }) => { [key: string]: any; pm: IPM; }'.","category":1,"code":2322,"next":[{"messageText":"Target signature provides too few arguments. Expected 3 or more, but got 2.","category":1,"code":2849}]},"relatedInformation":[{"file":"../../src/types.ts","start":3762,"length":81,"messageText":"The expected type comes from the return type of this signature.","category":3,"code":6502}]},{"start":4682,"length":13,"code":2322,"category":1,"messageText":{"messageText":"Type '(expectedCount: number) => (store: any, tr: any, utils: any) => Promise<any>' is not assignable to type '(It_0: number) => (ssel: { pm: IPM; }, utils: PM) => (store: { [key: string]: any; pm: IPM; }) => { [key: string]: any; pm: IPM; }'.","category":1,"code":2322,"next":[{"messageText":"Type '(store: any, tr: any, utils: any) => Promise<any>' is not assignable to type '(ssel: { pm: IPM; }, utils: PM) => (store: { [key: string]: any; pm: IPM; }) => { [key: string]: any; pm: IPM; }'.","category":1,"code":2322,"next":[{"messageText":"Target signature provides too few arguments. Expected 3 or more, but got 2.","category":1,"code":2849}],"canonicalHead":{"code":2322,"messageText":"Type '(expectedCount: number) => (store: any, tr: any, utils: any) => Promise<any>' is not assignable to type '(It_0: number) => (ssel: { pm: IPM; }, utils: PM) => (store: { [key: string]: any; pm: IPM; }) => { [key: string]: any; pm: IPM; }'."}}]},"relatedInformation":[{"start":1625,"length":13,"messageText":"The expected type comes from property 'specsModified' which is declared here on type 'TestThenImplementation<I, O>'","category":3,"code":6500}]},{"start":4785,"length":11,"code":2322,"category":1,"messageText":{"messageText":"Type '(expectedPath: string) => (store: any, tr: any, utils: any) => Promise<any>' is not assignable to type '(It_0: string) => (ssel: { pm: IPM; }, utils: PM) => (store: { [key: string]: any; pm: IPM; }) => { [key: string]: any; pm: IPM; }'.","category":1,"code":2322,"next":[{"messageText":"Type '(store: any, tr: any, utils: any) => Promise<any>' is not assignable to type '(ssel: { pm: IPM; }, utils: PM) => (store: { [key: string]: any; pm: IPM; }) => { [key: string]: any; pm: IPM; }'.","category":1,"code":2322,"next":[{"messageText":"Target signature provides too few arguments. Expected 3 or more, but got 2.","category":1,"code":2849}],"canonicalHead":{"code":2322,"messageText":"Type '(expectedPath: string) => (store: any, tr: any, utils: any) => Promise<any>' is not assignable to type '(It_0: string) => (ssel: { pm: IPM; }, utils: PM) => (store: { [key: string]: any; pm: IPM; }) => { [key: string]: any; pm: IPM; }'."}}]},"relatedInformation":[{"start":1277,"length":11,"messageText":"The expected type comes from property 'verifyProxy' which is declared here on type 'TestThenImplementation<I, O>'","category":3,"code":6500}]},{"start":4906,"length":29,"code":2322,"category":1,"messageText":{"messageText":"Type '(store: any, tr: any, utils: any) => Promise<any>' is not assignable to type '(ssel: { pm: IPM; }, utils: PM) => (store: { [key: string]: any; pm: IPM; }) => { [key: string]: any; pm: IPM; }'.","category":1,"code":2322,"next":[{"messageText":"Target signature provides too few arguments. Expected 3 or more, but got 2.","category":1,"code":2849}]},"relatedInformation":[{"file":"../../src/types.ts","start":3762,"length":81,"messageText":"The expected type comes from the return type of this signature.","category":3,"code":6502}]},{"start":4967,"length":11,"code":2322,"category":1,"messageText":{"messageText":"Type '(expectedError: string) => (store: any, tr: any, utils: any) => Promise<any>' is not assignable to type '(It_0: string) => (ssel: { pm: IPM; }, utils: PM) => (store: { [key: string]: any; pm: IPM; }) => { [key: string]: any; pm: IPM; }'.","category":1,"code":2322,"next":[{"messageText":"Type '(store: any, tr: any, utils: any) => Promise<any>' is not assignable to type '(ssel: { pm: IPM; }, utils: PM) => (store: { [key: string]: any; pm: IPM; }) => { [key: string]: any; pm: IPM; }'.","category":1,"code":2322,"next":[{"messageText":"Target signature provides too few arguments. Expected 3 or more, but got 2.","category":1,"code":2849}],"canonicalHead":{"code":2322,"messageText":"Type '(expectedError: string) => (store: any, tr: any, utils: any) => Promise<any>' is not assignable to type '(It_0: string) => (ssel: { pm: IPM; }, utils: PM) => (store: { [key: string]: any; pm: IPM; }) => { [key: string]: any; pm: IPM; }'."}}]},"relatedInformation":[{"start":1417,"length":11,"messageText":"The expected type comes from property 'verifyError' which is declared here on type 'TestThenImplementation<I, O>'","category":3,"code":6500}]},{"start":5096,"length":29,"code":2322,"category":1,"messageText":{"messageText":"Type '(store: any, tr: any, utils: any) => Promise<any>' is not assignable to type '(ssel: { pm: IPM; }, utils: PM) => (store: { [key: string]: any; pm: IPM; }) => { [key: string]: any; pm: IPM; }'.","category":1,"code":2322,"next":[{"messageText":"Target signature provides too few arguments. Expected 3 or more, but got 2.","category":1,"code":2849}]},"relatedInformation":[{"file":"../../src/types.ts","start":3762,"length":81,"messageText":"The expected type comes from the return type of this signature.","category":3,"code":6502}]},{"start":5183,"length":29,"code":2322,"category":1,"messageText":{"messageText":"Type '(store: any, tr: any, utils: any) => Promise<any>' is not assignable to type '(ssel: { pm: IPM; }, utils: PM) => (store: { [key: string]: any; pm: IPM; }) => { [key: string]: any; pm: IPM; }'.","category":1,"code":2322,"next":[{"messageText":"Target signature provides too few arguments. Expected 3 or more, but got 2.","category":1,"code":2849}]},"relatedInformation":[{"file":"../../src/types.ts","start":3762,"length":81,"messageText":"The expected type comes from the return type of this signature.","category":3,"code":6502}]},{"start":5268,"length":29,"code":2322,"category":1,"messageText":{"messageText":"Type '(store: any, tr: any, utils: any) => Promise<any>' is not assignable to type '(ssel: { pm: IPM; }, utils: PM) => (store: { [key: string]: any; pm: IPM; }) => { [key: string]: any; pm: IPM; }'.","category":1,"code":2322,"next":[{"messageText":"Target signature provides too few arguments. Expected 3 or more, but got 2.","category":1,"code":2849}]},"relatedInformation":[{"file":"../../src/types.ts","start":3762,"length":81,"messageText":"The expected type comes from the return type of this signature.","category":3,"code":6502}]},{"start":9452,"length":12,"messageText":"Cannot find name 'ITestAdapter'.","category":1,"code":2304}]],[710,[{"start":3476,"length":6,"code":2339,"category":1,"messageText":"Property 'status' does not exist on type 'Error'."}]],[713,[{"start":269,"length":4,"code":2345,"category":1,"messageText":{"messageText":"Argument of type 'string | 3000' is not assignable to parameter of type 'number'.","category":1,"code":2345,"next":[{"messageText":"Type 'string' is not assignable to type 'number'.","category":1,"code":2322}]}}]],[714,[{"start":1068,"length":18,"code":2345,"category":1,"messageText":{"messageText":"Argument of type 'ITestImplementation<I, O, M>' is not assignable to parameter of type 'Omit<{ suites: TestSuiteImplementation<O>; givens: TestGivenImplementation<I, O>; whens: TestWhenImplementation<I, O>; thens: TestThenImplementation<...>; }, keyof M> & M & { ...; }'.","category":1,"code":2345,"next":[{"messageText":"Type 'Omit<{ suites: TestSuiteImplementation<O>; givens: TestGivenImplementation<I, O>; whens: TestWhenImplementation<I, O>; thens: TestThenImplementation<...>; }, keyof M>' is missing the following properties from type '{ suites: Record<string, any>; givens: Record<string, any>; whens: Record<string, any>; thens: Record<string, any>; }': suites, givens, whens, thens","category":1,"code":2739,"canonicalHead":{"code":2322,"messageText":"Type 'ITestImplementation<I, O, M>' is not assignable to type '{ suites: Record<string, any>; givens: Record<string, any>; whens: Record<string, any>; thens: Record<string, any>; }'."}}]}}]],[743,[{"start":1509,"length":7,"code":2345,"category":1,"messageText":{"messageText":"Argument of type 'IRunTime' is not assignable to parameter of type 'RuntimeName'.","category":1,"code":2345,"next":[{"messageText":"Type '\"spawn\"' is not assignable to type 'RuntimeName'.","category":1,"code":2322}]}}]],[744,[{"start":6890,"length":9,"code":2339,"category":1,"messageText":"Property 'broadcast' does not exist on type 'PM_WithEslintAndTsc'."}]],[745,[{"start":12001,"length":8,"code":2322,"category":1,"messageText":{"messageText":"Type 'number | null' is not assignable to type 'number | undefined'.","category":1,"code":2322,"next":[{"messageText":"Type 'null' is not assignable to type 'number | undefined'.","category":1,"code":2322}]},"relatedInformation":[{"start":7366,"length":8,"messageText":"The expected type comes from property 'exitCode' which is declared here on type '{ child?: ChildProcess | undefined; status: \"error\" | \"running\" | \"exited\"; exitCode?: number | undefined; error?: string | undefined; command: string; pid?: number | undefined; timestamp: string; }'","category":3,"code":6500}]},{"start":17245,"length":6,"code":2322,"category":1,"messageText":{"messageText":"Type '[number, Page]' is not assignable to type '[number, ITTestResourceConfiguration]'.","category":1,"code":2322,"next":[{"messageText":"Type at position 1 in source is not compatible with type at position 1 in target.","category":1,"code":2626,"next":[{"messageText":"Type 'Page' is missing the following properties from type 'ITTestResourceConfiguration': name, fs, ports","category":1,"code":2739,"canonicalHead":{"code":2322,"messageText":"Type '[number, Page]' is not assignable to type '[number, ITTestResourceConfiguration]'."}}]}]}},{"start":33715,"length":4,"messageText":"Cannot find name 'argz'.","category":1,"code":2304},{"start":41463,"length":4,"code":2322,"category":1,"messageText":{"messageText":"Type 'import(\"/Users/adam/Code/testeranto/node_modules/puppeteer-core/lib/types\").Page' is not assignable to type 'import(\"/Users/adam/Code/testeranto/node_modules/puppeteer-core/lib/esm/puppeteer/api/Page\").Page'.","category":1,"code":2322,"next":[{"messageText":"Property '#private' in type 'Page' refers to a different member that cannot be accessed from within type 'Page'.","category":1,"code":18015}]}},{"start":41556,"length":46,"messageText":"Function lacks ending return statement and return type does not include 'undefined'.","category":1,"code":2366},{"start":48123,"length":4,"messageText":"Variable 'argz' is used before being assigned.","category":1,"code":2454},{"start":55719,"length":37,"messageText":"Object is possibly 'undefined'.","category":1,"code":2532},{"start":57099,"length":9,"code":2322,"category":1,"messageText":"Type 'string' is not assignable to type 'null'."}]],[748,[{"start":1202,"length":1,"messageText":"Cannot find name 'I'.","category":1,"code":2304},{"start":1224,"length":18,"code":2322,"category":1,"messageText":"Type '(x: any) => any' is not assignable to type 'string'.","relatedInformation":[{"start":421,"length":18,"messageText":"The expected type comes from property 'SidecarInitialized' which is declared here on type 'TestSuiteImplementation<O>'","category":3,"code":6500}]},{"start":2356,"length":10,"messageText":"Variable 'callbackFn' is used before being assigned.","category":1,"code":2454},{"start":3203,"length":20,"messageText":"Property 'removeListenerCalled' does not exist on type 'PM'.","category":1,"code":2339},{"start":3406,"length":19,"messageText":"Cannot find name 'IPartialNodeAdapter'.","category":1,"code":2304},{"start":3426,"length":1,"messageText":"Cannot find name 'I'.","category":1,"code":2304}]],[749,[{"start":1090,"length":1,"messageText":"Cannot find name 'I'.","category":1,"code":2304},{"start":1112,"length":18,"code":2322,"category":1,"messageText":"Type '(x: any) => any' is not assignable to type 'string'.","relatedInformation":[{"start":304,"length":18,"messageText":"The expected type comes from property 'SidecarInitialized' which is declared here on type 'TestSuiteImplementation<O>'","category":3,"code":6500}]},{"start":1527,"length":10,"code":2322,"category":1,"messageText":{"messageText":"Type '(event: string, callback: Function) => void' is not assignable to type '{ (event: \"beforeExit\", listener: BeforeExitListener): Process; (event: \"disconnect\", listener: DisconnectListener): Process; (event: \"exit\", listener: ExitListener): Process; (event: \"rejectionHandled\", listener: RejectionHandledListener): Process; (event: \"uncaughtException\", listener: UncaughtExceptionListener): ...'.","category":1,"code":2322,"next":[{"messageText":"Type 'void' is not assignable to type 'Process'.","category":1,"code":2322,"canonicalHead":{"code":2322,"messageText":"Type '(event: string, callback: Function) => void' is not assignable to type '{ (event: \"beforeExit\", listener: BeforeExitListener): Process; (event: \"disconnect\", listener: DisconnectListener): Process; (event: \"exit\", listener: ExitListener): Process; (event: \"rejectionHandled\", listener: RejectionHandledListener): Process; (event: \"uncaughtException\", listener: UncaughtExceptionListener): ...'."}}]}},{"start":2027,"length":10,"messageText":"Variable 'callbackFn' is used before being assigned.","category":1,"code":2454},{"start":2223,"length":26,"code":2322,"category":1,"messageText":"Type 'boolean' is not assignable to type 'Process'.","relatedInformation":[{"file":"../../node_modules/@types/node/process.d.ts","start":98930,"length":69,"messageText":"The expected type comes from the return type of this signature.","category":3,"code":6502}]},{"start":2288,"length":29,"code":2322,"category":1,"messageText":"Type 'boolean' is not assignable to type 'Process'.","relatedInformation":[{"file":"../../node_modules/@types/node/events.d.ts","start":33704,"length":73,"messageText":"The expected type comes from the return type of this signature.","category":3,"code":6502}]},{"start":2691,"length":20,"messageText":"Property 'removeListenerCalled' does not exist on type 'PM'.","category":1,"code":2339},{"start":2894,"length":19,"messageText":"Cannot find name 'IPartialNodeAdapter'.","category":1,"code":2304},{"start":2914,"length":1,"messageText":"Cannot find name 'I'.","category":1,"code":2304}]],[750,[{"start":1086,"length":1,"messageText":"Cannot find name 'I'.","category":1,"code":2304},{"start":1108,"length":18,"code":2322,"category":1,"messageText":"Type '(x: any) => any' is not assignable to type 'string'.","relatedInformation":[{"start":301,"length":18,"messageText":"The expected type comes from property 'SidecarInitialized' which is declared here on type 'TestSuiteImplementation<O>'","category":3,"code":6500}]},{"start":1520,"length":10,"code":2322,"category":1,"messageText":{"messageText":"Type '(event: string, callback: Function) => void' is not assignable to type '{ (event: \"beforeExit\", listener: BeforeExitListener): Process; (event: \"disconnect\", listener: DisconnectListener): Process; (event: \"exit\", listener: ExitListener): Process; (event: \"rejectionHandled\", listener: RejectionHandledListener): Process; (event: \"uncaughtException\", listener: UncaughtExceptionListener): ...'.","category":1,"code":2322,"next":[{"messageText":"Type 'void' is not assignable to type 'Process'.","category":1,"code":2322,"canonicalHead":{"code":2322,"messageText":"Type '(event: string, callback: Function) => void' is not assignable to type '{ (event: \"beforeExit\", listener: BeforeExitListener): Process; (event: \"disconnect\", listener: DisconnectListener): Process; (event: \"exit\", listener: ExitListener): Process; (event: \"rejectionHandled\", listener: RejectionHandledListener): Process; (event: \"uncaughtException\", listener: UncaughtExceptionListener): ...'."}}]}},{"start":2020,"length":10,"messageText":"Variable 'callbackFn' is used before being assigned.","category":1,"code":2454},{"start":2215,"length":26,"code":2322,"category":1,"messageText":"Type 'boolean' is not assignable to type 'Process'.","relatedInformation":[{"file":"../../node_modules/@types/node/process.d.ts","start":98930,"length":69,"messageText":"The expected type comes from the return type of this signature.","category":3,"code":6502}]},{"start":2280,"length":29,"code":2322,"category":1,"messageText":"Type 'boolean' is not assignable to type 'Process'.","relatedInformation":[{"file":"../../node_modules/@types/node/events.d.ts","start":33704,"length":73,"messageText":"The expected type comes from the return type of this signature.","category":3,"code":6502}]},{"start":2683,"length":20,"messageText":"Property 'removeListenerCalled' does not exist on type 'PM'.","category":1,"code":2339},{"start":2886,"length":19,"messageText":"Cannot find name 'IPartialNodeAdapter'.","category":1,"code":2304},{"start":2906,"length":1,"messageText":"Cannot find name 'I'.","category":1,"code":2304}]],[753,[{"start":3413,"length":7,"code":2719,"category":1,"messageText":{"messageText":"Type '(store: import(\"http\").Server<typeof import(\"http\").IncomingMessage, typeof import(\"http\").ServerResponse>, thenCB: import(\"http\").Server<typeof import(\"http\").IncomingMessage, typeof import(\"http\").ServerResponse>, testResource: import(\"/Users/adam/Code/testeranto/src/lib/index\").ITTestResourceConfiguration, pm: im...' is not assignable to type '(store: import(\"http\").Server<typeof import(\"http\").IncomingMessage, typeof import(\"http\").ServerResponse>, thenCB: import(\"http\").Server<typeof import(\"http\").IncomingMessage, typeof import(\"http\").ServerResponse>, testResource: import(\"/Users/adam/Code/testeranto/src/lib/index\").ITTestResourceConfiguration, pm: im...'. Two different types with this name exist, but they are unrelated.","category":1,"code":2719,"next":[{"messageText":"Type 'Promise<Server<typeof IncomingMessage, typeof ServerResponse>>' is not assignable to type 'Promise<number>'.","category":1,"code":2322,"next":[{"messageText":"Type 'Server<typeof IncomingMessage, typeof ServerResponse>' is not assignable to type 'number'.","category":1,"code":2322}],"canonicalHead":{"code":2719,"messageText":"Type '(store: import(\"http\").Server<typeof import(\"http\").IncomingMessage, typeof import(\"http\").ServerResponse>, thenCB: import(\"http\").Server<typeof import(\"http\").IncomingMessage, typeof import(\"http\").ServerResponse>, testResource: import(\"/Users/adam/Code/testeranto/src/lib/index\").ITTestResourceConfiguration, pm: im...' is not assignable to type '(store: import(\"http\").Server<typeof import(\"http\").IncomingMessage, typeof import(\"http\").ServerResponse>, thenCB: import(\"http\").Server<typeof import(\"http\").IncomingMessage, typeof import(\"http\").ServerResponse>, testResource: import(\"/Users/adam/Code/testeranto/src/lib/index\").ITTestResourceConfiguration, pm: im...'. Two different types with this name exist, but they are unrelated."}}]},"relatedInformation":[{"file":"../../src/coretypes.ts","start":730,"length":7,"messageText":"The expected type comes from property 'butThen' which is declared here on type 'ITestAdapter<I>'","category":3,"code":6500}]},{"start":5256,"length":21,"messageText":"Cannot find name 'IProjectPageViewProps'.","category":1,"code":2304},{"start":5371,"length":21,"messageText":"Cannot find name 'IProjectPageViewProps'.","category":1,"code":2304},{"start":5420,"length":21,"messageText":"Cannot find name 'IProjectPageViewProps'.","category":1,"code":2304},{"start":5602,"length":18,"code":2345,"category":1,"messageText":{"messageText":"Argument of type '(port: number) => void' is not assignable to parameter of type '(port: number) => Server<typeof IncomingMessage, typeof ServerResponse>'.","category":1,"code":2345,"next":[{"messageText":"Type 'void' is not assignable to type 'Server<typeof IncomingMessage, typeof ServerResponse>'.","category":1,"code":2322}]}}]],[764,[{"start":253,"length":9,"messageText":"Identifier expected. 'interface' is a reserved word in strict mode. Modules are automatically in strict mode.","category":1,"code":1214},{"start":65,"length":14,"messageText":"Module '\"../../CoreTypes\"' has no exported member 'ITestInterface'.","category":1,"code":2305},{"start":217,"length":20,"messageText":"Cannot find module './SunriseAnimation' or its corresponding type declarations.","category":1,"code":2307},{"start":810,"length":12,"code":2345,"category":1,"messageText":{"messageText":"Argument of type 'CElement<any, Component<any, any, any>>' is not assignable to parameter of type 'ReactNode'.","category":1,"code":2345,"next":[{"messageText":"Property 'children' is missing in type 'ComponentElement<any, Component<any, any, any>>' but required in type 'ReactPortal'.","category":1,"code":2741,"canonicalHead":{"code":2322,"messageText":"Type 'ComponentElement<any, Component<any, any, any>>' is not assignable to type 'ReactPortal'."}}]},"relatedInformation":[{"file":"../../node_modules/@types/react-dom/node_modules/@types/react/index.d.ts","start":12792,"length":8,"messageText":"'children' is declared here.","category":3,"code":2728}]}]],[939,[{"start":498,"length":9,"messageText":"Expected 0 arguments, but got 1.","category":1,"code":2554},{"start":539,"length":9,"messageText":"Expected 0 arguments, but got 1.","category":1,"code":2554}]],[947,[{"start":2502,"length":2,"code":2322,"category":1,"messageText":{"messageText":"Type '{ children: (ReactNode | Element)[]; key: number; as: \"div\" | ForwardRefExoticComponent<LinkProps & RefAttributes<HTMLAnchorElement>>; to: string | undefined; active: boolean | undefined; className: string; title: string | undefined; }' is not assignable to type 'IntrinsicAttributes & Omit<(Omit<DetailedHTMLProps<HTMLAttributes<HTMLDivElement>, HTMLDivElement>, \"ref\"> & { ...; }) | (LinkProps & RefAttributes<...>), BsPrefixProps<...> & NavLinkProps> & BsPrefixProps<...> & NavLinkProps & { ...; }'.","category":1,"code":2322,"next":[{"messageText":"Property 'to' does not exist on type 'IntrinsicAttributes & Omit<(Omit<DetailedHTMLProps<HTMLAttributes<HTMLDivElement>, HTMLDivElement>, \"ref\"> & { ...; }) | (LinkProps & RefAttributes<...>), BsPrefixProps<...> & NavLinkProps> & BsPrefixProps<...> & NavLinkProps & { ...; }'.","category":1,"code":2339}]}}]],[952,[{"start":273,"length":3,"messageText":"Module '\"../../../lib\"' declares 'IPM' locally, but it is not exported.","category":1,"code":2459,"relatedInformation":[{"file":"../../src/lib/index.ts","start":535,"length":3,"messageText":"'IPM' is declared here.","category":3,"code":2728}]},{"start":940,"length":20,"code":2322,"category":1,"messageText":{"messageText":"Type '(props: IInput) => { summary: any; nodeLogs: any; webLogs: any; pureLogs: any; config: any; loading: boolean; error: string | null; projectName: string; activeTab: string; setActiveTab: (tab: string) => void; container: HTMLDivElement; reactElement: React.DetailedReactHTMLElement<...>; domRoot: ReactDom.Root; }' is not assignable to type '(props: IProjectPageViewProps) => ISelection'.","category":1,"code":2322,"next":[{"messageText":"Property 'htmlElement' is missing in type '{ summary: any; nodeLogs: any; webLogs: any; pureLogs: any; config: any; loading: boolean; error: string | null; projectName: string; activeTab: string; setActiveTab: (tab: string) => void; container: HTMLDivElement; reactElement: React.DetailedReactHTMLElement<...>; domRoot: ReactDom.Root; }' but required in type 'ISelection'.","category":1,"code":2741,"canonicalHead":{"code":2322,"messageText":"Type '(props: IInput) => { summary: any; nodeLogs: any; webLogs: any; pureLogs: any; config: any; loading: boolean; error: string | null; projectName: string; activeTab: string; setActiveTab: (tab: string) => void; container: HTMLDivElement; reactElement: React.DetailedReactHTMLElement<...>; domRoot: ReactDom.Root; }' is not assignable to type '(props: IProjectPageViewProps) => ISelection'."}}]},"relatedInformation":[{"file":"../../src/components/pure/testpageview.test/types.ts","start":351,"length":11,"messageText":"'htmlElement' is declared here.","category":3,"code":2728},{"file":"../../src/types.ts","start":3337,"length":37,"messageText":"The expected type comes from the return type of this signature.","category":3,"code":6502}]},{"start":1167,"length":5,"code":2769,"category":1,"messageText":{"messageText":"No overload matches this call.","category":1,"code":2769,"next":[{"messageText":"The last overload gave the following error.","category":1,"code":2770,"next":[{"messageText":"Argument of type 'IProjectPageViewProps' is not assignable to parameter of type 'string | FunctionComponent<{}> | ComponentClass<{}, any>'.","category":1,"code":2345}]}]},"relatedInformation":[{"file":"../../node_modules/@types/react/index.d.ts","start":13618,"length":13,"messageText":"The last overload is declared here.","category":1,"code":2771}]},{"start":1250,"length":12,"code":2345,"category":1,"messageText":{"messageText":"Argument of type 'DetailedReactHTMLElement<InputHTMLAttributes<HTMLInputElement>, HTMLInputElement>' is not assignable to parameter of type 'ReactNode'.","category":1,"code":2345,"next":[{"messageText":"Property 'children' is missing in type 'DetailedReactHTMLElement<InputHTMLAttributes<HTMLInputElement>, HTMLInputElement>' but required in type 'ReactPortal'.","category":1,"code":2741,"canonicalHead":{"code":2322,"messageText":"Type 'DetailedReactHTMLElement<InputHTMLAttributes<HTMLInputElement>, HTMLInputElement>' is not assignable to type 'ReactPortal'."}}]},"relatedInformation":[{"file":"../../node_modules/@types/react-dom/node_modules/@types/react/index.d.ts","start":12792,"length":8,"messageText":"'children' is declared here.","category":3,"code":2728}]},{"start":1400,"length":20,"code":2322,"category":1,"messageText":{"messageText":"Type '(props: IInput) => { errorCounts: { runTimeErrors: number; typeErrors: number; staticErrors: number; }; summary: any; nodeLogs: any; webLogs: any; pureLogs: any; config: any; loading: boolean; ... 6 more ...; domRoot: ReactDom.Root; }' is not assignable to type '(props: IProjectPageViewProps) => ISelection'.","category":1,"code":2322,"next":[{"messageText":"Property 'htmlElement' is missing in type '{ errorCounts: { runTimeErrors: number; typeErrors: number; staticErrors: number; }; summary: any; nodeLogs: any; webLogs: any; pureLogs: any; config: any; loading: boolean; error: string | null; ... 5 more ...; domRoot: ReactDom.Root; }' but required in type 'ISelection'.","category":1,"code":2741,"canonicalHead":{"code":2322,"messageText":"Type '(props: IInput) => { errorCounts: { runTimeErrors: number; typeErrors: number; staticErrors: number; }; summary: any; nodeLogs: any; webLogs: any; pureLogs: any; config: any; loading: boolean; ... 6 more ...; domRoot: ReactDom.Root; }' is not assignable to type '(props: IProjectPageViewProps) => ISelection'."}}]},"relatedInformation":[{"file":"../../src/components/pure/testpageview.test/types.ts","start":351,"length":11,"messageText":"'htmlElement' is declared here.","category":3,"code":2728},{"file":"../../src/types.ts","start":3337,"length":37,"messageText":"The expected type comes from the return type of this signature.","category":3,"code":6502}]},{"start":1574,"length":5,"code":2769,"category":1,"messageText":{"messageText":"No overload matches this call.","category":1,"code":2769,"next":[{"messageText":"The last overload gave the following error.","category":1,"code":2770,"next":[{"messageText":"Argument of type 'IProjectPageViewProps' is not assignable to parameter of type 'string | FunctionComponent<{}> | ComponentClass<{}, any>'.","category":1,"code":2345}]}]},"relatedInformation":[{"file":"../../node_modules/@types/react/index.d.ts","start":13618,"length":13,"messageText":"The last overload is declared here.","category":1,"code":2771}]},{"start":1657,"length":12,"code":2345,"category":1,"messageText":{"messageText":"Argument of type 'DetailedReactHTMLElement<InputHTMLAttributes<HTMLInputElement>, HTMLInputElement>' is not assignable to parameter of type 'ReactNode'.","category":1,"code":2345,"next":[{"messageText":"Property 'children' is missing in type 'DetailedReactHTMLElement<InputHTMLAttributes<HTMLInputElement>, HTMLInputElement>' but required in type 'ReactPortal'.","category":1,"code":2741,"canonicalHead":{"code":2322,"messageText":"Type 'DetailedReactHTMLElement<InputHTMLAttributes<HTMLInputElement>, HTMLInputElement>' is not assignable to type 'ReactPortal'."}}]},"relatedInformation":[{"file":"../../node_modules/@types/react-dom/node_modules/@types/react/index.d.ts","start":12792,"length":8,"messageText":"'children' is declared here.","category":3,"code":2728}]},{"start":1918,"length":20,"code":2322,"category":1,"messageText":{"messageText":"Type '(props: IInput) => { logs: { 'tests.json': string; 'stdout.log': string; }; summary: any; nodeLogs: any; webLogs: any; pureLogs: any; config: any; loading: boolean; error: string | null; projectName: string; ... 4 more ...; domRoot: ReactDom.Root; }' is not assignable to type '(props: IProjectPageViewProps) => ISelection'.","category":1,"code":2322,"next":[{"messageText":"Property 'htmlElement' is missing in type '{ logs: { 'tests.json': string; 'stdout.log': string; }; summary: any; nodeLogs: any; webLogs: any; pureLogs: any; config: any; loading: boolean; error: string | null; projectName: string; activeTab: string; setActiveTab: (tab: string) => void; container: HTMLDivElement; reactElement: React.DetailedReactHTMLElement<...' but required in type 'ISelection'.","category":1,"code":2741,"canonicalHead":{"code":2322,"messageText":"Type '(props: IInput) => { logs: { 'tests.json': string; 'stdout.log': string; }; summary: any; nodeLogs: any; webLogs: any; pureLogs: any; config: any; loading: boolean; error: string | null; projectName: string; ... 4 more ...; domRoot: ReactDom.Root; }' is not assignable to type '(props: IProjectPageViewProps) => ISelection'."}}]},"relatedInformation":[{"file":"../../src/components/pure/testpageview.test/types.ts","start":351,"length":11,"messageText":"'htmlElement' is declared here.","category":3,"code":2728},{"file":"../../src/types.ts","start":3337,"length":37,"messageText":"The expected type comes from the return type of this signature.","category":3,"code":6502}]},{"start":2092,"length":5,"code":2769,"category":1,"messageText":{"messageText":"No overload matches this call.","category":1,"code":2769,"next":[{"messageText":"The last overload gave the following error.","category":1,"code":2770,"next":[{"messageText":"Argument of type 'IProjectPageViewProps' is not assignable to parameter of type 'string | FunctionComponent<{}> | ComponentClass<{}, any>'.","category":1,"code":2345}]}]},"relatedInformation":[{"file":"../../node_modules/@types/react/index.d.ts","start":13618,"length":13,"messageText":"The last overload is declared here.","category":1,"code":2771}]},{"start":2175,"length":12,"code":2345,"category":1,"messageText":{"messageText":"Argument of type 'DetailedReactHTMLElement<InputHTMLAttributes<HTMLInputElement>, HTMLInputElement>' is not assignable to parameter of type 'ReactNode'.","category":1,"code":2345,"next":[{"messageText":"Property 'children' is missing in type 'DetailedReactHTMLElement<InputHTMLAttributes<HTMLInputElement>, HTMLInputElement>' but required in type 'ReactPortal'.","category":1,"code":2741,"canonicalHead":{"code":2322,"messageText":"Type 'DetailedReactHTMLElement<InputHTMLAttributes<HTMLInputElement>, HTMLInputElement>' is not assignable to type 'ReactPortal'."}}]},"relatedInformation":[{"file":"../../node_modules/@types/react-dom/node_modules/@types/react/index.d.ts","start":12792,"length":8,"messageText":"'children' is declared here.","category":3,"code":2728}]},{"start":2424,"length":11,"code":2322,"category":1,"messageText":{"messageText":"Type '(tabName: string) => (selection: ISelection, tr: ITTestResourceConfiguration, utils: IPM) => Promise<(sel: ISelection) => { reactElement: React.ReactElement<any, string | React.JSXElementConstructor<any>>; activeTab: string; htmlElement: HTMLElement; domRoot: ReactDom.Root; }>' is not assignable to type '(Iw_0: string) => (zel: ISelection, tr: ITTestResourceConfiguration, utils: PM) => Promise<(sel: ISelection, tr: ITTestResourceConfiguration, utils: IPM) => Promise<...>>'.","category":1,"code":2322,"next":[{"messageText":"Call signature return types '(selection: ISelection, tr: ITTestResourceConfiguration, utils: IPM) => Promise<(sel: ISelection) => { reactElement: ReactElement<any, string | JSXElementConstructor<...>>; activeTab: string; htmlElement: HTMLElement; domRoot: Root; }>' and '(zel: ISelection, tr: ITTestResourceConfiguration, utils: PM) => Promise<(sel: ISelection, tr: ITTestResourceConfiguration, utils: IPM) => Promise<...>>' are incompatible.","category":1,"code":2202,"next":[{"messageText":"Type 'Promise<(sel: ISelection) => { reactElement: ReactElement<any, string | JSXElementConstructor<any>>; activeTab: string; htmlElement: HTMLElement; domRoot: Root; }>' is not assignable to type 'Promise<(sel: ISelection, tr: ITTestResourceConfiguration, utils: IPM) => Promise<(sel: ISelection) => ISelection>>'.","category":1,"code":2322,"next":[{"messageText":"Type '(sel: ISelection) => { reactElement: React.ReactElement<any, string | React.JSXElementConstructor<any>>; activeTab: string; htmlElement: HTMLElement; domRoot: ReactDom.Root; }' is not assignable to type '(sel: ISelection, tr: ITTestResourceConfiguration, utils: IPM) => Promise<(sel: ISelection) => ISelection>'.","category":1,"code":2322,"next":[{"messageText":"Type '{ reactElement: ReactElement<any, string | JSXElementConstructor<any>>; activeTab: string; htmlElement: HTMLElement; domRoot: Root; }' is missing the following properties from type 'Promise<(sel: ISelection) => ISelection>': then, catch, finally, [Symbol.toStringTag]","category":1,"code":2739,"canonicalHead":{"code":2322,"messageText":"Type '(sel: ISelection) => { reactElement: React.ReactElement<any, string | React.JSXElementConstructor<any>>; activeTab: string; htmlElement: HTMLElement; domRoot: ReactDom.Root; }' is not assignable to type '(sel: ISelection, tr: ITTestResourceConfiguration, utils: IPM) => Promise<(sel: ISelection) => ISelection>'."}}]}],"canonicalHead":{"code":2322,"messageText":"Type '(tabName: string) => (selection: ISelection, tr: ITTestResourceConfiguration, utils: IPM) => Promise<(sel: ISelection) => { reactElement: React.ReactElement<any, string | React.JSXElementConstructor<any>>; activeTab: string; htmlElement: HTMLElement; domRoot: ReactDom.Root; }>' is not assignable to type '(Iw_0: string) => (zel: ISelection, tr: ITTestResourceConfiguration, utils: PM) => Promise<(sel: ISelection, tr: ITTestResourceConfiguration, utils: IPM) => Promise<...>>'."}}]}]},"relatedInformation":[{"file":"../../src/components/pure/testpageview.test/types.ts","start":1336,"length":11,"messageText":"The expected type comes from property 'SwitchToTab' which is declared here on type 'TestWhenImplementation<{ iinput: IProjectPageViewProps; isubject: ISubject; istore: ISelection; iselection: ISelection; given: (props: IProjectPageViewProps) => ISelection; when: (sel: ISelection, tr: ITTestResourceConfiguration, utils: IPM) => Promise<...>; then: (sel: ISelection, tr: ITTestResourceConfiguration, u...'","category":3,"code":6500}]},{"start":2761,"length":15,"code":2345,"category":1,"messageText":{"messageText":"Argument of type 'ReactElement<any, string | JSXElementConstructor<any>>' is not assignable to parameter of type 'ReactNode'.","category":1,"code":2345,"next":[{"messageText":"Property 'children' is missing in type 'ReactElement<any, string | JSXElementConstructor<any>>' but required in type 'ReactPortal'.","category":1,"code":2741,"canonicalHead":{"code":2322,"messageText":"Type 'ReactElement<any, string | JSXElementConstructor<any>>' is not assignable to type 'ReactPortal'."}}]},"relatedInformation":[{"file":"../../node_modules/@types/react-dom/node_modules/@types/react/index.d.ts","start":12792,"length":8,"messageText":"'children' is declared here.","category":3,"code":2728}]},{"start":2943,"length":79,"code":2322,"category":1,"messageText":{"messageText":"Type '(selection: ISelection, tr: ITTestResourceConfiguration, utils: IPM) => Promise<(sel: ISelection) => ISelection>' is not assignable to type '(zel: ISelection, tr: ITTestResourceConfiguration, utils: PM) => Promise<(sel: ISelection, tr: ITTestResourceConfiguration, utils: IPM) => Promise<...>>'.","category":1,"code":2322,"next":[{"messageText":"Type 'Promise<(sel: ISelection) => ISelection>' is not assignable to type 'Promise<(sel: ISelection, tr: ITTestResourceConfiguration, utils: IPM) => Promise<(sel: ISelection) => ISelection>>'.","category":1,"code":2322,"next":[{"messageText":"Type '(sel: ISelection) => ISelection' is not assignable to type '(sel: ISelection, tr: ITTestResourceConfiguration, utils: IPM) => Promise<(sel: ISelection) => ISelection>'.","category":1,"code":2322,"next":[{"messageText":"Type 'ISelection' is missing the following properties from type 'Promise<(sel: ISelection) => ISelection>': then, catch, finally, [Symbol.toStringTag]","category":1,"code":2739,"canonicalHead":{"code":2322,"messageText":"Type '(sel: ISelection) => ISelection' is not assignable to type '(sel: ISelection, tr: ITTestResourceConfiguration, utils: IPM) => Promise<(sel: ISelection) => ISelection>'."}}]}],"canonicalHead":{"code":2322,"messageText":"Type '(selection: ISelection, tr: ITTestResourceConfiguration, utils: IPM) => Promise<(sel: ISelection) => ISelection>' is not assignable to type '(zel: ISelection, tr: ITTestResourceConfiguration, utils: PM) => Promise<(sel: ISelection, tr: ITTestResourceConfiguration, utils: IPM) => Promise<...>>'."}}]},"relatedInformation":[{"file":"../../src/types.ts","start":3499,"length":138,"messageText":"The expected type comes from the return type of this signature.","category":3,"code":6502}]},{"start":3095,"length":9,"code":2339,"category":1,"messageText":"Property 'container' does not exist on type 'ISelection'."},{"start":3249,"length":14,"code":2322,"category":1,"messageText":{"messageText":"Type '(name: string) => (ssel: ISelection, utils: IPM) => Promise<(sel: ISelection) => Promise<ISelection>>' is not assignable to type '(It_0: string) => (ssel: ISelection, utils: PM) => (sel: ISelection, tr: ITTestResourceConfiguration, utils: IPM) => Promise<...>'.","category":1,"code":2322,"next":[{"messageText":"Call signature return types '(ssel: ISelection, utils: IPM) => Promise<(sel: ISelection) => Promise<ISelection>>' and '(ssel: ISelection, utils: PM) => (sel: ISelection, tr: ITTestResourceConfiguration, utils: IPM) => Promise<(sel: ISelection) => ISelection>' are incompatible.","category":1,"code":2202,"next":[{"messageText":"Type 'Promise<(sel: ISelection) => Promise<ISelection>>' is not assignable to type '(sel: ISelection, tr: ITTestResourceConfiguration, utils: IPM) => Promise<(sel: ISelection) => ISelection>'.","category":1,"code":2322,"next":[{"messageText":"Type 'Promise<(sel: ISelection) => Promise<ISelection>>' provides no match for the signature '(sel: ISelection, tr: ITTestResourceConfiguration, utils: IPM): Promise<(sel: ISelection) => ISelection>'.","category":1,"code":2658}],"canonicalHead":{"code":2322,"messageText":"Type '(name: string) => (ssel: ISelection, utils: IPM) => Promise<(sel: ISelection) => Promise<ISelection>>' is not assignable to type '(It_0: string) => (ssel: ISelection, utils: PM) => (sel: ISelection, tr: ITTestResourceConfiguration, utils: IPM) => Promise<...>'."}}]}]},"relatedInformation":[{"file":"../../src/components/pure/testpageview.test/types.ts","start":1556,"length":14,"messageText":"The expected type comes from property 'takeScreenshot' which is declared here on type 'TestThenImplementation<{ iinput: IProjectPageViewProps; isubject: ISubject; istore: ISelection; iselection: ISelection; given: (props: IProjectPageViewProps) => ISelection; when: (sel: ISelection, tr: ITTestResourceConfiguration, utils: IPM) => Promise<...>; then: (sel: ISelection, tr: ITTestResourceConfiguration, u...'","category":3,"code":6500}]},{"start":3473,"length":225,"code":2322,"category":1,"messageText":{"messageText":"Type '(ssel: ISelection, utils: IPM) => Promise<(sel: ISelection) => Promise<ISelection>>' is not assignable to type '(ssel: ISelection, utils: PM) => (sel: ISelection, tr: ITTestResourceConfiguration, utils: IPM) => Promise<(sel: ISelection) => ISelection>'.","category":1,"code":2322,"next":[{"messageText":"Type 'Promise<(sel: ISelection) => Promise<ISelection>>' is not assignable to type '(sel: ISelection, tr: ITTestResourceConfiguration, utils: IPM) => Promise<(sel: ISelection) => ISelection>'.","category":1,"code":2322,"next":[{"messageText":"Type 'Promise<(sel: ISelection) => Promise<ISelection>>' provides no match for the signature '(sel: ISelection, tr: ITTestResourceConfiguration, utils: IPM): Promise<(sel: ISelection) => ISelection>'.","category":1,"code":2658}],"canonicalHead":{"code":2322,"messageText":"Type '(ssel: ISelection, utils: IPM) => Promise<(sel: ISelection) => Promise<ISelection>>' is not assignable to type '(ssel: ISelection, utils: PM) => (sel: ISelection, tr: ITTestResourceConfiguration, utils: IPM) => Promise<(sel: ISelection) => ISelection>'."}}]},"relatedInformation":[{"file":"../../src/types.ts","start":3762,"length":81,"messageText":"The expected type comes from the return type of this signature.","category":3,"code":6502}]},{"start":3561,"length":9,"code":2339,"category":1,"messageText":"Property 'container' does not exist on type 'ISelection'."},{"start":3704,"length":14,"code":2322,"category":1,"messageText":{"messageText":"Type '(tabName: string) => (ssel: ISelection, utils: IPM) => Promise<(sel: ISelection) => Promise<ISelection>>' is not assignable to type '(It_0: string) => (ssel: ISelection, utils: PM) => (sel: ISelection, tr: ITTestResourceConfiguration, utils: IPM) => Promise<...>'.","category":1,"code":2322,"next":[{"messageText":"Call signature return types '(ssel: ISelection, utils: IPM) => Promise<(sel: ISelection) => Promise<ISelection>>' and '(ssel: ISelection, utils: PM) => (sel: ISelection, tr: ITTestResourceConfiguration, utils: IPM) => Promise<(sel: ISelection) => ISelection>' are incompatible.","category":1,"code":2202,"next":[{"messageText":"Type 'Promise<(sel: ISelection) => Promise<ISelection>>' is not assignable to type '(sel: ISelection, tr: ITTestResourceConfiguration, utils: IPM) => Promise<(sel: ISelection) => ISelection>'.","category":1,"code":2322,"next":[{"messageText":"Type 'Promise<(sel: ISelection) => Promise<ISelection>>' provides no match for the signature '(sel: ISelection, tr: ITTestResourceConfiguration, utils: IPM): Promise<(sel: ISelection) => ISelection>'.","category":1,"code":2658}],"canonicalHead":{"code":2322,"messageText":"Type '(tabName: string) => (ssel: ISelection, utils: IPM) => Promise<(sel: ISelection) => Promise<ISelection>>' is not assignable to type '(It_0: string) => (ssel: ISelection, utils: PM) => (sel: ISelection, tr: ITTestResourceConfiguration, utils: IPM) => Promise<...>'."}}]}]},"relatedInformation":[{"file":"../../src/components/pure/testpageview.test/types.ts","start":1473,"length":14,"messageText":"The expected type comes from property 'ShowsActiveTab' which is declared here on type 'TestThenImplementation<{ iinput: IProjectPageViewProps; isubject: ISubject; istore: ISelection; iselection: ISelection; given: (props: IProjectPageViewProps) => ISelection; when: (sel: ISelection, tr: ITTestResourceConfiguration, utils: IPM) => Promise<...>; then: (sel: ISelection, tr: ITTestResourceConfiguration, u...'","category":3,"code":6500}]},{"start":3868,"length":9,"code":2339,"category":1,"messageText":"Property 'activeTab' does not exist on type 'ISelection'."},{"start":3994,"length":274,"code":2322,"category":1,"messageText":{"messageText":"Type '(ssel: ISelection, utils: IPM) => Promise<(sel: ISelection) => Promise<ISelection>>' is not assignable to type '(ssel: ISelection, utils: PM) => (sel: ISelection, tr: ITTestResourceConfiguration, utils: IPM) => Promise<(sel: ISelection) => ISelection>'.","category":1,"code":2322,"next":[{"messageText":"Type 'Promise<(sel: ISelection) => Promise<ISelection>>' is not assignable to type '(sel: ISelection, tr: ITTestResourceConfiguration, utils: IPM) => Promise<(sel: ISelection) => ISelection>'.","category":1,"code":2322,"next":[{"messageText":"Type 'Promise<(sel: ISelection) => Promise<ISelection>>' provides no match for the signature '(sel: ISelection, tr: ITTestResourceConfiguration, utils: IPM): Promise<(sel: ISelection) => ISelection>'.","category":1,"code":2658}],"canonicalHead":{"code":2322,"messageText":"Type '(ssel: ISelection, utils: IPM) => Promise<(sel: ISelection) => Promise<ISelection>>' is not assignable to type '(ssel: ISelection, utils: PM) => (sel: ISelection, tr: ITTestResourceConfiguration, utils: IPM) => Promise<(sel: ISelection) => ISelection>'."}}]},"relatedInformation":[{"file":"../../src/types.ts","start":3762,"length":81,"messageText":"The expected type comes from the return type of this signature.","category":3,"code":6502}]},{"start":4114,"length":9,"code":2339,"category":1,"messageText":"Property 'container' does not exist on type 'ISelection'."},{"start":4298,"length":342,"code":2322,"category":1,"messageText":{"messageText":"Type '(ssel: ISelection, utils: IPM) => Promise<(sel: ISelection) => Promise<ISelection>>' is not assignable to type '(ssel: ISelection, utils: PM) => (sel: ISelection, tr: ITTestResourceConfiguration, utils: IPM) => Promise<(sel: ISelection) => ISelection>'.","category":1,"code":2322,"next":[{"messageText":"Type 'Promise<(sel: ISelection) => Promise<ISelection>>' is not assignable to type '(sel: ISelection, tr: ITTestResourceConfiguration, utils: IPM) => Promise<(sel: ISelection) => ISelection>'.","category":1,"code":2322,"next":[{"messageText":"Type 'Promise<(sel: ISelection) => Promise<ISelection>>' provides no match for the signature '(sel: ISelection, tr: ITTestResourceConfiguration, utils: IPM): Promise<(sel: ISelection) => ISelection>'.","category":1,"code":2658}],"canonicalHead":{"code":2322,"messageText":"Type '(ssel: ISelection, utils: IPM) => Promise<(sel: ISelection) => Promise<ISelection>>' is not assignable to type '(ssel: ISelection, utils: PM) => (sel: ISelection, tr: ITTestResourceConfiguration, utils: IPM) => Promise<(sel: ISelection) => ISelection>'."}}]},"relatedInformation":[{"file":"../../src/types.ts","start":3762,"length":81,"messageText":"The expected type comes from the return type of this signature.","category":3,"code":6502}]},{"start":4416,"length":10,"code":2339,"category":1,"messageText":"Property 'testsExist' does not exist on type 'ISelection'."},{"start":4462,"length":9,"code":2339,"category":1,"messageText":"Property 'container' does not exist on type 'ISelection'."},{"start":4663,"length":245,"code":2322,"category":1,"messageText":{"messageText":"Type '(ssel: ISelection, utils: IPM) => Promise<(sel: ISelection) => Promise<ISelection>>' is not assignable to type '(ssel: ISelection, utils: PM) => (sel: ISelection, tr: ITTestResourceConfiguration, utils: IPM) => Promise<(sel: ISelection) => ISelection>'.","category":1,"code":2322,"next":[{"messageText":"Type 'Promise<(sel: ISelection) => Promise<ISelection>>' is not assignable to type '(sel: ISelection, tr: ITTestResourceConfiguration, utils: IPM) => Promise<(sel: ISelection) => ISelection>'.","category":1,"code":2322,"next":[{"messageText":"Type 'Promise<(sel: ISelection) => Promise<ISelection>>' provides no match for the signature '(sel: ISelection, tr: ITTestResourceConfiguration, utils: IPM): Promise<(sel: ISelection) => ISelection>'.","category":1,"code":2658}],"canonicalHead":{"code":2322,"messageText":"Type '(ssel: ISelection, utils: IPM) => Promise<(sel: ISelection) => Promise<ISelection>>' is not assignable to type '(ssel: ISelection, utils: PM) => (sel: ISelection, tr: ITTestResourceConfiguration, utils: IPM) => Promise<(sel: ISelection) => ISelection>'."}}]},"relatedInformation":[{"file":"../../src/types.ts","start":3762,"length":81,"messageText":"The expected type comes from the return type of this signature.","category":3,"code":6502}]},{"start":4782,"length":9,"code":2339,"category":1,"messageText":"Property 'container' does not exist on type 'ISelection'."},{"start":4937,"length":295,"code":2322,"category":1,"messageText":{"messageText":"Type '(ssel: ISelection, utils: IPM) => Promise<(sel: ISelection) => Promise<ISelection>>' is not assignable to type '(ssel: ISelection, utils: PM) => (sel: ISelection, tr: ITTestResourceConfiguration, utils: IPM) => Promise<(sel: ISelection) => ISelection>'.","category":1,"code":2322,"next":[{"messageText":"Type 'Promise<(sel: ISelection) => Promise<ISelection>>' is not assignable to type '(sel: ISelection, tr: ITTestResourceConfiguration, utils: IPM) => Promise<(sel: ISelection) => ISelection>'.","category":1,"code":2322,"next":[{"messageText":"Type 'Promise<(sel: ISelection) => Promise<ISelection>>' provides no match for the signature '(sel: ISelection, tr: ITTestResourceConfiguration, utils: IPM): Promise<(sel: ISelection) => ISelection>'.","category":1,"code":2658}],"canonicalHead":{"code":2322,"messageText":"Type '(ssel: ISelection, utils: IPM) => Promise<(sel: ISelection) => Promise<ISelection>>' is not assignable to type '(ssel: ISelection, utils: PM) => (sel: ISelection, tr: ITTestResourceConfiguration, utils: IPM) => Promise<(sel: ISelection) => ISelection>'."}}]},"relatedInformation":[{"file":"../../src/types.ts","start":3762,"length":81,"messageText":"The expected type comes from the return type of this signature.","category":3,"code":6502}]},{"start":5069,"length":9,"code":2339,"category":1,"messageText":"Property 'container' does not exist on type 'ISelection'."},{"start":5261,"length":295,"code":2322,"category":1,"messageText":{"messageText":"Type '(ssel: ISelection, utils: IPM) => Promise<(sel: ISelection) => Promise<ISelection>>' is not assignable to type '(ssel: ISelection, utils: PM) => (sel: ISelection, tr: ITTestResourceConfiguration, utils: IPM) => Promise<(sel: ISelection) => ISelection>'.","category":1,"code":2322,"next":[{"messageText":"Type 'Promise<(sel: ISelection) => Promise<ISelection>>' is not assignable to type '(sel: ISelection, tr: ITTestResourceConfiguration, utils: IPM) => Promise<(sel: ISelection) => ISelection>'.","category":1,"code":2322,"next":[{"messageText":"Type 'Promise<(sel: ISelection) => Promise<ISelection>>' provides no match for the signature '(sel: ISelection, tr: ITTestResourceConfiguration, utils: IPM): Promise<(sel: ISelection) => ISelection>'.","category":1,"code":2658}],"canonicalHead":{"code":2322,"messageText":"Type '(ssel: ISelection, utils: IPM) => Promise<(sel: ISelection) => Promise<ISelection>>' is not assignable to type '(ssel: ISelection, utils: PM) => (sel: ISelection, tr: ITTestResourceConfiguration, utils: IPM) => Promise<(sel: ISelection) => ISelection>'."}}]},"relatedInformation":[{"file":"../../src/types.ts","start":3762,"length":81,"messageText":"The expected type comes from the return type of this signature.","category":3,"code":6502}]},{"start":5393,"length":9,"code":2339,"category":1,"messageText":"Property 'container' does not exist on type 'ISelection'."},{"start":5594,"length":300,"code":2322,"category":1,"messageText":{"messageText":"Type '(ssel: ISelection, utils: IPM) => Promise<(sel: ISelection) => Promise<ISelection>>' is not assignable to type '(ssel: ISelection, utils: PM) => (sel: ISelection, tr: ITTestResourceConfiguration, utils: IPM) => Promise<(sel: ISelection) => ISelection>'.","category":1,"code":2322,"next":[{"messageText":"Type 'Promise<(sel: ISelection) => Promise<ISelection>>' is not assignable to type '(sel: ISelection, tr: ITTestResourceConfiguration, utils: IPM) => Promise<(sel: ISelection) => ISelection>'.","category":1,"code":2322,"next":[{"messageText":"Type 'Promise<(sel: ISelection) => Promise<ISelection>>' provides no match for the signature '(sel: ISelection, tr: ITTestResourceConfiguration, utils: IPM): Promise<(sel: ISelection) => ISelection>'.","category":1,"code":2658}],"canonicalHead":{"code":2322,"messageText":"Type '(ssel: ISelection, utils: IPM) => Promise<(sel: ISelection) => Promise<ISelection>>' is not assignable to type '(ssel: ISelection, utils: PM) => (sel: ISelection, tr: ITTestResourceConfiguration, utils: IPM) => Promise<(sel: ISelection) => ISelection>'."}}]},"relatedInformation":[{"file":"../../src/types.ts","start":3762,"length":81,"messageText":"The expected type comes from the return type of this signature.","category":3,"code":6502}]},{"start":5725,"length":9,"code":2339,"category":1,"messageText":"Property 'container' does not exist on type 'ISelection'."}]],[955,[{"start":209,"length":9,"messageText":"Cannot find name 'BaseSuite'.","category":1,"code":2304}]],[956,[{"start":3724,"length":8,"code":2345,"category":1,"messageText":"Argument of type 'Promise<unknown>' is not assignable to parameter of type 'string'."},{"start":3908,"length":5,"code":2339,"category":1,"messageText":"Property 'specs' does not exist on type 'MockSuite'."},{"start":3931,"length":5,"code":2339,"category":1,"messageText":"Property 'specs' does not exist on type 'MockSuite'."},{"start":4110,"length":8,"code":2339,"category":1,"messageText":"Property 'testJobs' does not exist on type 'MockSuite'."},{"start":4136,"length":8,"code":2339,"category":1,"messageText":"Property 'testJobs' does not exist on type 'MockSuite'."},{"start":4255,"length":29,"code":2322,"category":1,"messageText":{"messageText":"Type '(suite: MockSuite) => Promise<MockSuite>' is not assignable to type '(zel: TestSelection, tr: ITTestResourceConfiguration, utils: PM) => Promise<(store: TestStore) => Promise<TestStore>>'.","category":1,"code":2322,"next":[{"messageText":"Types of parameters 'suite' and 'zel' are incompatible.","category":1,"code":2328,"next":[{"messageText":"Type 'TestSelection' is missing the following properties from type 'MockSuite': name, givens, store, testResourceConfiguration, and 11 more.","category":1,"code":2740,"canonicalHead":{"code":2322,"messageText":"Type 'TestSelection' is not assignable to type 'MockSuite'."}}]}]},"relatedInformation":[{"file":"../../src/types.ts","start":3499,"length":138,"messageText":"The expected type comes from the return type of this signature.","category":3,"code":6502}]},{"start":4850,"length":25,"code":2322,"category":1,"messageText":{"messageText":"Type '() => void' is not assignable to type '((tLog: ITLog, callback: (p: Promise<void>) => void) => (fPath: string, value: string | Buffer<ArrayBufferLike> | PassThrough) => void) | ((tLog: ITLog, callback: (promise: Promise<...>) => void) => (fPath: string, value: any) => void) | ((tLog: ITLog, callback: (Promise: any) => void) => (fPath: any, value: string ...'.","category":1,"code":2322,"next":[{"messageText":"Type '() => void' is not assignable to type '(tLog: ITLog, callback: (p: Promise<void>) => void) => (fPath: string, value: string | Buffer<ArrayBufferLike> | PassThrough) => void'.","category":1,"code":2322,"next":[{"messageText":"Type 'void' is not assignable to type '(fPath: string, value: string | Buffer | PassThrough) => void'.","category":1,"code":2322,"canonicalHead":{"code":2322,"messageText":"Type '() => void' is not assignable to type '(tLog: ITLog, callback: (p: Promise<void>) => void) => (fPath: string, value: string | Buffer<ArrayBufferLike> | PassThrough) => void'."}}]}]},"relatedInformation":[{"file":"../../src/pm/node.ts","start":5294,"length":25,"messageText":"The expected type comes from property 'testArtiFactoryfileWriter' which is declared here on type 'IPM'","category":3,"code":6500}]},{"start":4897,"length":1,"code":2322,"category":1,"messageText":{"messageText":"Type '() => void' is not assignable to type '((selector: string) => boolean) | ((selector: string) => boolean) | ((selector: string, page: string) => Promise<unknown>)'.","category":1,"code":2322,"next":[{"messageText":"Type '() => void' is not assignable to type '(selector: string) => boolean'.","category":1,"code":2322,"next":[{"messageText":"Type 'void' is not assignable to type 'boolean'.","category":1,"code":2322,"canonicalHead":{"code":2322,"messageText":"Type '() => void' is not assignable to type '(selector: string) => boolean'."}}]}]},"relatedInformation":[{"file":"../../src/pm/node.ts","start":2552,"length":1,"messageText":"The expected type comes from property '$' which is declared here on type 'IPM'","category":3,"code":6500}]},{"start":4947,"length":9,"code":2322,"category":1,"messageText":{"messageText":"Type '() => void' is not assignable to type '((p: any) => string) | ((p: any) => string) | ((p: any) => Promise<unknown>)'.","category":1,"code":2322,"next":[{"messageText":"Type '() => void' is not assignable to type '(p: any) => string'.","category":1,"code":2322,"next":[{"messageText":"Type 'void' is not assignable to type 'string'.","category":1,"code":2322,"canonicalHead":{"code":2322,"messageText":"Type '() => void' is not assignable to type '(p: any) => string'."}}]}]},"relatedInformation":[{"file":"../../src/pm/node.ts","start":2224,"length":9,"messageText":"The expected type comes from property 'closePage' which is declared here on type 'IPM'","category":3,"code":6500}]},{"start":5067,"length":4,"code":2345,"category":1,"messageText":"Argument of type 'null' is not assignable to parameter of type 'typeof BaseSuite'."},{"start":5400,"length":4,"code":2345,"category":1,"messageText":"Argument of type 'null' is not assignable to parameter of type 'typeof BaseSuite'."},{"start":7641,"length":23,"code":2322,"category":1,"messageText":{"messageText":"Type '(suite: MockSuite) => MockSuite' is not assignable to type '(ssel: TestSelection, utils: PM) => (store: TestStore) => Promise<TestSelection>'.","category":1,"code":2322,"next":[{"messageText":"Types of parameters 'suite' and 'ssel' are incompatible.","category":1,"code":2328,"next":[{"messageText":"Type 'TestSelection' is missing the following properties from type 'MockSuite': name, givens, store, testResourceConfiguration, and 11 more.","category":1,"code":2740,"canonicalHead":{"code":2322,"messageText":"Type 'TestSelection' is not assignable to type 'MockSuite'."}}]}]},"relatedInformation":[{"file":"../../src/types.ts","start":3762,"length":81,"messageText":"The expected type comes from the return type of this signature.","category":3,"code":6502}]},{"start":9190,"length":5,"code":2339,"category":1,"messageText":"Property 'specs' does not exist on type 'MockSuite'."},{"start":9471,"length":8,"code":2339,"category":1,"messageText":"Property 'testJobs' does not exist on type 'MockSuite'."},{"start":10595,"length":5,"code":2339,"category":1,"messageText":"Property 'index' does not exist on type '() => Promise<TestStore>'."},{"start":10675,"length":5,"code":2339,"category":1,"messageText":"Property 'store' does not exist on type '() => Promise<TestStore>'."},{"start":11162,"length":17,"code":2349,"category":1,"messageText":{"messageText":"This expression is not callable.","category":1,"code":2349,"next":[{"messageText":"Type 'Promise<TestStore>' has no call signatures.","category":1,"code":2757}]}},{"start":11169,"length":9,"code":2345,"category":1,"messageText":{"messageText":"Argument of type 'TestSelection' is not assignable to parameter of type 'TestStore'.","category":1,"code":2345,"next":[{"messageText":"Property 'testStore' is missing in type 'TestSelection' but required in type 'TestStore'.","category":1,"code":2741}]},"relatedInformation":[{"start":530,"length":9,"messageText":"'testStore' is declared here.","category":3,"code":2728}]},{"start":11265,"length":7,"code":2322,"category":1,"messageText":{"messageText":"Type '(store: TestStore, thenCB: (s: TestSelection) => Promise<BaseSuite<any, any>>, testResource: ITTestResourceConfiguration, pm: IPM) => Promise<TestSelection>' is not assignable to type '(store: TestStore, thenCB: (store: TestStore) => Promise<TestSelection>, testResource: ITTestResourceConfiguration, pm: IPM) => Promise<...>'.","category":1,"code":2322,"next":[{"messageText":"Types of parameters 'thenCB' and 'thenCB' are incompatible.","category":1,"code":2328,"next":[{"messageText":"Type '(store: TestStore) => Promise<TestSelection>' is not assignable to type '(s: TestSelection) => Promise<BaseSuite<any, any>>'.","category":1,"code":2322,"next":[{"messageText":"Types of parameters 'store' and 's' are incompatible.","category":1,"code":2328,"next":[{"messageText":"Property 'testStore' is missing in type 'TestSelection' but required in type 'TestStore'.","category":1,"code":2741,"canonicalHead":{"code":2322,"messageText":"Type 'TestSelection' is not assignable to type 'TestStore'."}}]}]}]}]},"relatedInformation":[{"start":530,"length":9,"messageText":"'testStore' is declared here.","category":3,"code":2728},{"file":"../../src/coretypes.ts","start":730,"length":7,"messageText":"The expected type comes from property 'butThen' which is declared here on type 'ITestAdapter<I>'","category":3,"code":6500}]},{"start":11733,"length":9,"code":2322,"category":1,"messageText":{"messageText":"Type '(store: I[\"istore\"]) => I[\"istore\"]' is not assignable to type '(store: TestStore, key: string, pm: IPM) => Promise<unknown>'.","category":1,"code":2322,"next":[{"messageText":"Type 'TestStore' is missing the following properties from type 'Promise<unknown>': then, catch, finally, [Symbol.toStringTag]","category":1,"code":2739,"canonicalHead":{"code":2322,"messageText":"Type '(store: I[\"istore\"]) => I[\"istore\"]' is not assignable to type '(store: TestStore, key: string, pm: IPM) => Promise<unknown>'."}}]},"relatedInformation":[{"file":"../../src/coretypes.ts","start":932,"length":9,"messageText":"The expected type comes from property 'afterEach' which is declared here on type 'ITestAdapter<I>'","category":3,"code":6500}]}]],[957,[{"start":1201,"length":6,"code":2322,"category":1,"messageText":{"messageText":"Type '{ testSelection: boolean; error?: boolean | Error | undefined; name?: string; index?: number; testStore: boolean; }' is not assignable to type 'TestStore'.","category":1,"code":2322,"next":[{"messageText":"Types of property 'error' are incompatible.","category":1,"code":2326,"next":[{"messageText":"Type 'boolean | Error | undefined' is not assignable to type 'Error | undefined'.","category":1,"code":2322,"next":[{"messageText":"Type 'boolean' is not assignable to type 'Error'.","category":1,"code":2322}],"canonicalHead":{"code":2322,"messageText":"Type '{ testSelection: boolean; error?: boolean | Error | undefined; name?: string; index?: number; testStore: boolean; }' is not assignable to type 'TestStore'."}}]}]}},{"start":2095,"length":40,"code":2322,"category":1,"messageText":{"messageText":"Type 'Promise<{ testSelection: boolean; }>' is not assignable to type '(store: TestStore) => Promise<TestSelection>'.","category":1,"code":2322,"next":[{"messageText":"Type 'Promise<{ testSelection: boolean; }>' provides no match for the signature '(store: TestStore): Promise<TestSelection>'.","category":1,"code":2658}]},"relatedInformation":[{"file":"../../src/lib/abstractbase.ts","start":5030,"length":35,"messageText":"The expected type comes from the return type of this signature.","category":3,"code":6502}]},{"start":2224,"length":35,"messageText":"Cannot create an instance of an abstract class.","category":1,"code":2511}]],[961,[{"start":620,"length":7,"code":2349,"category":1,"messageText":{"messageText":"This expression is not callable.","category":1,"code":2349,"next":[{"messageText":"Type 'unknown' has no call signatures.","category":1,"code":2757}]}}]],[964,[{"start":364,"length":233,"messageText":"Generic type 'Ibdd_out' requires between 0 and 4 type arguments.","category":1,"code":2707}]],[965,[{"start":170,"length":13,"code":2322,"category":1,"messageText":{"messageText":"Type 'Promise<() => { testStore: { value: string; }; }>' is not assignable to type 'Promise<{ testStore: { value: string; }; error?: Error | undefined; }>'.","category":1,"code":2322,"next":[{"messageText":"Type '() => { testStore: { value: string; }; }' is not assignable to type '{ testStore: { value: string; }; error?: Error | undefined; }'.","category":1,"code":2322}]},"relatedInformation":[{"file":"../../src/coretypes.ts","start":1150,"length":172,"messageText":"The expected type comes from the return type of this signature.","category":3,"code":6502}]},{"start":311,"length":5,"code":2739,"category":1,"messageText":"Type '{ testStore: { value: string; }; error?: Error | undefined; }' is missing the following properties from type 'Promise<unknown>': then, catch, finally, [Symbol.toStringTag]","relatedInformation":[{"file":"../../src/coretypes.ts","start":943,"length":62,"messageText":"The expected type comes from the return type of this signature.","category":3,"code":6502},{"start":300,"length":16,"messageText":"Did you mean to mark this function as 'async'?","category":1,"code":1356}],"canonicalHead":{"code":2322,"messageText":"Type '{ testStore: { value: string; }; error?: Error | undefined; }' is not assignable to type 'Promise<unknown>'."}}]],[966,[{"start":238,"length":89,"code":2322,"category":1,"messageText":{"messageText":"Type '{ testStore: { value: string; }; testSelection: { selected: boolean; }; }' is not assignable to type '() => { testStore: { value: string; }; }'.","category":1,"code":2322,"next":[{"messageText":"Type '{ testStore: { value: string; }; testSelection: { selected: boolean; }; }' provides no match for the signature '(): { testStore: { value: string; }; }'.","category":1,"code":2658}]},"relatedInformation":[{"file":"../../src/types.ts","start":3337,"length":37,"messageText":"The expected type comes from the return type of this signature.","category":3,"code":6502}]},{"start":350,"length":88,"code":2322,"category":1,"messageText":{"messageText":"Type '{ testStore: { value: string; }; testSelection: { selected: boolean; }; }' is not assignable to type '() => { testStore: { value: string; }; }'.","category":1,"code":2322,"next":[{"messageText":"Type '{ testStore: { value: string; }; testSelection: { selected: boolean; }; }' provides no match for the signature '(): { testStore: { value: string; }; }'.","category":1,"code":2658}]},"relatedInformation":[{"file":"../../src/types.ts","start":3337,"length":37,"messageText":"The expected type comes from the return type of this signature.","category":3,"code":6502}]},{"start":461,"length":11,"code":2322,"category":1,"messageText":{"messageText":"Type '(newValue: string) => (store: { testSelection: { selected: boolean; }; }) => { testStore: { value: string; }; testSelection: { selected: boolean; }; }' is not assignable to type '(...Iw: any) => (zel: { testSelection: { selected: boolean; }; }, tr: ITTestResourceConfiguration, utils: PM) => Promise<(store: any) => any>'.","category":1,"code":2322,"next":[{"messageText":"Call signature return types '(store: { testSelection: { selected: boolean; }; }) => { testStore: { value: string; }; testSelection: { selected: boolean; }; }' and '(zel: { testSelection: { selected: boolean; }; }, tr: ITTestResourceConfiguration, utils: PM) => Promise<(store: any) => any>' are incompatible.","category":1,"code":2202,"next":[{"messageText":"Type '{ testStore: { value: string; }; testSelection: { selected: boolean; }; }' is missing the following properties from type 'Promise<(store: any) => any>': then, catch, finally, [Symbol.toStringTag]","category":1,"code":2739,"canonicalHead":{"code":2322,"messageText":"Type '(newValue: string) => (store: { testSelection: { selected: boolean; }; }) => { testStore: { value: string; }; testSelection: { selected: boolean; }; }' is not assignable to type '(...Iw: any) => (zel: { testSelection: { selected: boolean; }; }, tr: ITTestResourceConfiguration, utils: PM) => Promise<(store: any) => any>'."}}]}]},"relatedInformation":[{"file":"../../src/types.ts","start":3470,"length":170,"messageText":"The expected type comes from property 'modifyStore' which is declared here on type 'TestWhenImplementation<I, any>'","category":3,"code":6500}]},{"start":667,"length":11,"code":2322,"category":1,"messageText":{"messageText":"Type '(expected: string) => (store: { testSelection: { selected: boolean; }; }) => { testSelection: { selected: boolean; }; }' is not assignable to type '(...It: any) => (ssel: { testSelection: { selected: boolean; }; }, utils: PM) => (store: any) => any'.","category":1,"code":2322,"next":[{"messageText":"Call signature return types '(store: { testSelection: { selected: boolean; }; }) => { testSelection: { selected: boolean; }; }' and '(ssel: { testSelection: { selected: boolean; }; }, utils: PM) => (store: any) => any' are incompatible.","category":1,"code":2202,"next":[{"messageText":"Type '{ testSelection: { selected: boolean; }; }' is not assignable to type '(store: any) => any'.","category":1,"code":2322,"next":[{"messageText":"Type '{ testSelection: { selected: boolean; }; }' provides no match for the signature '(store: any): any'.","category":1,"code":2658}],"canonicalHead":{"code":2322,"messageText":"Type '(expected: string) => (store: { testSelection: { selected: boolean; }; }) => { testSelection: { selected: boolean; }; }' is not assignable to type '(...It: any) => (ssel: { testSelection: { selected: boolean; }; }, utils: PM) => (store: any) => any'."}}]}]},"relatedInformation":[{"file":"../../src/types.ts","start":3733,"length":113,"messageText":"The expected type comes from property 'verifyStore' which is declared here on type 'TestThenImplementation<I, any>'","category":3,"code":6500}]},{"start":731,"length":9,"code":2339,"category":1,"messageText":"Property 'testStore' does not exist on type '{ testSelection: { selected: boolean; }; }'."},{"start":822,"length":9,"code":2339,"category":1,"messageText":"Property 'testStore' does not exist on type '{ testSelection: { selected: boolean; }; }'."},{"start":881,"length":11,"code":2322,"category":1,"messageText":{"messageText":"Type '(expected: string) => (store: { testSelection: { selected: boolean; }; }) => { testSelection: { selected: boolean; }; }' is not assignable to type '(...It: any) => (ssel: { testSelection: { selected: boolean; }; }, utils: PM) => (store: any) => any'.","category":1,"code":2322,"next":[{"messageText":"Call signature return types '(store: { testSelection: { selected: boolean; }; }) => { testSelection: { selected: boolean; }; }' and '(ssel: { testSelection: { selected: boolean; }; }, utils: PM) => (store: any) => any' are incompatible.","category":1,"code":2202,"next":[{"messageText":"Type '{ testSelection: { selected: boolean; }; }' is not assignable to type '(store: any) => any'.","category":1,"code":2322,"next":[{"messageText":"Type '{ testSelection: { selected: boolean; }; }' provides no match for the signature '(store: any): any'.","category":1,"code":2658}],"canonicalHead":{"code":2322,"messageText":"Type '(expected: string) => (store: { testSelection: { selected: boolean; }; }) => { testSelection: { selected: boolean; }; }' is not assignable to type '(...It: any) => (ssel: { testSelection: { selected: boolean; }; }, utils: PM) => (store: any) => any'."}}]}]},"relatedInformation":[{"file":"../../src/types.ts","start":3733,"length":113,"messageText":"The expected type comes from property 'verifyError' which is declared here on type 'TestThenImplementation<I, any>'","category":3,"code":6500}]},{"start":946,"length":5,"code":2339,"category":1,"messageText":"Property 'error' does not exist on type '{ testSelection: { selected: boolean; }; }'."},{"start":962,"length":5,"code":2339,"category":1,"messageText":"Property 'error' does not exist on type '{ testSelection: { selected: boolean; }; }'."}]],[970,[{"start":336,"length":9,"code":2322,"category":1,"messageText":{"messageText":"Type '(input: {}, testResource: ITTestResourceConfiguration, pm: IPM) => Promise<{}>' is not assignable to type '(input: {}, testResource: ITTestResourceConfiguration, pm: IPM) => Promise<BaseBuilder<any, any, any, any, any, any>>'.","category":1,"code":2322,"next":[{"messageText":"Type 'Promise<{}>' is not assignable to type 'Promise<BaseBuilder<any, any, any, any, any, any>>'.","category":1,"code":2322,"next":[{"messageText":"Type '{}' is missing the following properties from type 'BaseBuilder<any, any, any, any, any, any>': specs, assertThis, testResourceRequirement, artifacts, and 12 more.","category":1,"code":2740,"canonicalHead":{"code":2322,"messageText":"Type '{}' is not assignable to type 'BaseBuilder<any, any, any, any, any, any>'."}}],"canonicalHead":{"code":2322,"messageText":"Type '(input: {}, testResource: ITTestResourceConfiguration, pm: IPM) => Promise<{}>' is not assignable to type '(input: {}, testResource: ITTestResourceConfiguration, pm: IPM) => Promise<BaseBuilder<any, any, any, any, any, any>>'."}}]},"relatedInformation":[{"file":"../../src/coretypes.ts","start":1009,"length":9,"messageText":"The expected type comes from property 'beforeAll' which is declared here on type 'ITestAdapter<I>'","category":3,"code":6500}]},{"start":640,"length":5,"messageText":"Expected 1 arguments, but got 2.","category":1,"code":2554},{"start":761,"length":2,"messageText":"Expected 1 arguments, but got 2.","category":1,"code":2554}]],[972,[{"start":971,"length":30,"code":2322,"category":1,"messageText":{"messageText":"Type '(input: any) => () => MockBaseBuilder<Ibdd_in_any, Ibdd_out_any, {}, {}, {}, {}>' is not assignable to type '() => () => BaseBuilder<any, any, any, any, any, any>'.","category":1,"code":2322,"next":[{"messageText":"Target signature provides too few arguments. Expected 1 or more, but got 0.","category":1,"code":2849}]},"relatedInformation":[{"file":"../../src/lib/basebuilder.test/basebuilder.test.types.ts","start":679,"length":30,"messageText":"The expected type comes from property 'a BaseBuilder with TestInput' which is declared here on type 'TestGivenImplementation<I, O>'","category":3,"code":6500}]},{"start":1134,"length":5,"code":2322,"category":1,"messageText":"Type 'never[]' is not assignable to type 'number'."},{"start":1184,"length":47,"code":2322,"category":1,"messageText":{"messageText":"Type '(requirements: ITTestResourceRequest) => () => MockBaseBuilder<Ibdd_in_any, Ibdd_out_any, {}, {}, {}, {}>' is not assignable to type '() => () => BaseBuilder<any, any, any, any, any, any>'.","category":1,"code":2322,"next":[{"messageText":"Target signature provides too few arguments. Expected 1 or more, but got 0.","category":1,"code":2849}]},"relatedInformation":[{"file":"../../src/lib/basebuilder.test/basebuilder.test.types.ts","start":719,"length":47,"messageText":"The expected type comes from property 'a BaseBuilder with Test Resource Requirements' which is declared here on type 'TestGivenImplementation<I, O>'","category":3,"code":6500}]},{"start":1737,"length":39,"code":2322,"category":1,"messageText":{"messageText":"Type '(builder: TestSubject, utils: IPM) => TestSubject' is not assignable to type '(ssel: BaseBuilder<any, any, any, any, any, any>, utils: PM) => (store: any) => any'.","category":1,"code":2322,"next":[{"messageText":"Type 'TestSubject' is not assignable to type '(store: any) => any'.","category":1,"code":2322,"next":[{"messageText":"Type 'MockBaseBuilder<any, any, any, any, any, any>' provides no match for the signature '(store: any): any'.","category":1,"code":2658}],"canonicalHead":{"code":2322,"messageText":"Type '(builder: TestSubject, utils: IPM) => TestSubject' is not assignable to type '(ssel: BaseBuilder<any, any, any, any, any, any>, utils: PM) => (store: any) => any'."}}]},"relatedInformation":[{"file":"../../src/types.ts","start":3762,"length":81,"messageText":"The expected type comes from the return type of this signature.","category":3,"code":6502}]},{"start":1816,"length":7,"messageText":"Expected 1 arguments, but got 2.","category":1,"code":2554},{"start":2051,"length":11,"code":2339,"category":1,"messageText":"Property 'constructor' does not exist on type 'never'."},{"start":2529,"length":39,"code":2322,"category":1,"messageText":{"messageText":"Type '(builder: TestSubject, utils: IPM) => TestSubject' is not assignable to type '(ssel: BaseBuilder<any, any, any, any, any, any>, utils: PM) => (store: any) => any'.","category":1,"code":2322,"next":[{"messageText":"Type 'TestSubject' is not assignable to type '(store: any) => any'.","category":1,"code":2322,"next":[{"messageText":"Type 'MockBaseBuilder<any, any, any, any, any, any>' provides no match for the signature '(store: any): any'.","category":1,"code":2658}],"canonicalHead":{"code":2322,"messageText":"Type '(builder: TestSubject, utils: IPM) => TestSubject' is not assignable to type '(ssel: BaseBuilder<any, any, any, any, any, any>, utils: PM) => (store: any) => any'."}}]},"relatedInformation":[{"file":"../../src/types.ts","start":3762,"length":81,"messageText":"The expected type comes from the return type of this signature.","category":3,"code":6502}]},{"start":2731,"length":39,"code":2322,"category":1,"messageText":{"messageText":"Type '(builder: TestSubject, utils: IPM) => TestSubject' is not assignable to type '(ssel: BaseBuilder<any, any, any, any, any, any>, utils: PM) => (store: any) => any'.","category":1,"code":2322,"next":[{"messageText":"Type 'TestSubject' is not assignable to type '(store: any) => any'.","category":1,"code":2322,"next":[{"messageText":"Type 'MockBaseBuilder<any, any, any, any, any, any>' provides no match for the signature '(store: any): any'.","category":1,"code":2658}],"canonicalHead":{"code":2322,"messageText":"Type '(builder: TestSubject, utils: IPM) => TestSubject' is not assignable to type '(ssel: BaseBuilder<any, any, any, any, any, any>, utils: PM) => (store: any) => any'."}}]},"relatedInformation":[{"file":"../../src/types.ts","start":3762,"length":81,"messageText":"The expected type comes from the return type of this signature.","category":3,"code":6502}]},{"start":2942,"length":39,"code":2322,"category":1,"messageText":{"messageText":"Type '(builder: TestSubject, utils: IPM) => TestSubject' is not assignable to type '(ssel: BaseBuilder<any, any, any, any, any, any>, utils: PM) => (store: any) => any'.","category":1,"code":2322,"next":[{"messageText":"Type 'TestSubject' is not assignable to type '(store: any) => any'.","category":1,"code":2322,"next":[{"messageText":"Type 'MockBaseBuilder<any, any, any, any, any, any>' provides no match for the signature '(store: any): any'.","category":1,"code":2658}],"canonicalHead":{"code":2322,"messageText":"Type '(builder: TestSubject, utils: IPM) => TestSubject' is not assignable to type '(ssel: BaseBuilder<any, any, any, any, any, any>, utils: PM) => (store: any) => any'."}}]},"relatedInformation":[{"file":"../../src/types.ts","start":3762,"length":81,"messageText":"The expected type comes from the return type of this signature.","category":3,"code":6502}]},{"start":3183,"length":6,"messageText":"Expected 1 arguments, but got 2.","category":1,"code":2554}]],[977,[{"start":274,"length":9,"code":2322,"category":1,"messageText":{"messageText":"Type '() => Promise<void>' is not assignable to type '(input: {}, testResource: ITTestResourceConfiguration, pm: IPM) => Promise<BaseBuilder<any, any, any, any, any, any>>'.","category":1,"code":2322,"next":[{"messageText":"Type 'Promise<void>' is not assignable to type 'Promise<BaseBuilder<any, any, any, any, any, any>>'.","category":1,"code":2322,"next":[{"messageText":"Type 'void' is not assignable to type 'BaseBuilder<any, any, any, any, any, any>'.","category":1,"code":2322}],"canonicalHead":{"code":2322,"messageText":"Type '() => Promise<void>' is not assignable to type '(input: {}, testResource: ITTestResourceConfiguration, pm: IPM) => Promise<BaseBuilder<any, any, any, any, any, any>>'."}}]},"relatedInformation":[{"file":"../../src/coretypes.ts","start":1009,"length":9,"messageText":"The expected type comes from property 'beforeAll' which is declared here on type 'ITestAdapter<I>'","category":3,"code":6500}]},{"start":303,"length":10,"code":2322,"category":1,"messageText":{"messageText":"Type '(subject: BaseBuilder<any, any, any, any, any, any>, initializer: (c?: any) => () => BaseBuilder<any, any, any, any, any, any>) => Promise<() => BaseBuilder<any, any, any, any, any, any>>' is not assignable to type '(subject: BaseBuilder<any, any, any, any, any, any>, initializer: (c?: any) => () => BaseBuilder<any, any, any, any, any, any>, testResource: ITTestResourceConfiguration, initialValues: any, pm: IPM) => Promise<...>'.","category":1,"code":2322,"next":[{"messageText":"Type 'Promise<() => BaseBuilder<any, any, any, any, any, any>>' is not assignable to type 'Promise<BaseBuilder<any, any, any, any, any, any>>'.","category":1,"code":2322,"next":[{"messageText":"Type '() => BaseBuilder<any, any, any, any, any, any>' is not assignable to type 'BaseBuilder<any, any, any, any, any, any>'.","category":1,"code":2322}],"canonicalHead":{"code":2322,"messageText":"Type '(subject: BaseBuilder<any, any, any, any, any, any>, initializer: (c?: any) => () => BaseBuilder<any, any, any, any, any, any>) => Promise<() => BaseBuilder<any, any, any, any, any, any>>' is not assignable to type '(subject: BaseBuilder<any, any, any, any, any, any>, initializer: (c?: any) => () => BaseBuilder<any, any, any, any, any, any>, testResource: ITTestResourceConfiguration, initialValues: any, pm: IPM) => Promise<...>'."}}]},"relatedInformation":[{"file":"../../src/coretypes.ts","start":1138,"length":10,"messageText":"The expected type comes from property 'beforeEach' which is declared here on type 'ITestAdapter<I>'","category":3,"code":6500}]},{"start":617,"length":5,"messageText":"Expected 1 arguments, but got 2.","category":1,"code":2554},{"start":711,"length":2,"messageText":"Expected 1 arguments, but got 2.","category":1,"code":2554},{"start":745,"length":5,"code":2739,"category":1,"messageText":"Type 'BaseBuilder<any, any, any, any, any, any>' is missing the following properties from type 'Promise<unknown>': then, catch, finally, [Symbol.toStringTag]","relatedInformation":[{"file":"../../src/coretypes.ts","start":943,"length":62,"messageText":"The expected type comes from the return type of this signature.","category":3,"code":6502},{"start":734,"length":16,"messageText":"Did you mean to mark this function as 'async'?","category":1,"code":1356}],"canonicalHead":{"code":2322,"messageText":"Type 'BaseBuilder<any, any, any, any, any, any>' is not assignable to type 'Promise<unknown>'."}}]],[978,[{"start":1067,"length":18,"code":2345,"category":1,"messageText":{"messageText":"Argument of type 'ITestImplementation<I, O, M>' is not assignable to parameter of type 'Omit<{ suites: TestSuiteImplementation<O>; givens: TestGivenImplementation<I, O>; whens: TestWhenImplementation<I, O>; thens: TestThenImplementation<...>; }, keyof M> & M & { ...; }'.","category":1,"code":2345,"next":[{"messageText":"Type 'Omit<{ suites: TestSuiteImplementation<O>; givens: TestGivenImplementation<I, O>; whens: TestWhenImplementation<I, O>; thens: TestThenImplementation<...>; }, keyof M>' is missing the following properties from type '{ suites: Record<string, never>; givens: Record<string, any>; whens: Record<string, any>; thens: Record<string, any>; }': suites, givens, whens, thens","category":1,"code":2739,"canonicalHead":{"code":2322,"messageText":"Type 'ITestImplementation<I, O, M>' is not assignable to type '{ suites: Record<string, never>; givens: Record<string, any>; whens: Record<string, any>; thens: Record<string, any>; }'."}}]}}]],[980,[{"start":558,"length":15,"messageText":"Expected 4 arguments, but got 3.","category":1,"code":2554,"relatedInformation":[{"file":"../../src/types.ts","start":2626,"length":25,"messageText":"Arguments for the rest parameter 'xtrasB' were not provided.","category":1,"code":6236}]},{"start":696,"length":24,"messageText":"Expected 4 arguments, but got 3.","category":1,"code":2554,"relatedInformation":[{"file":"../../src/types.ts","start":2626,"length":25,"messageText":"Arguments for the rest parameter 'xtrasB' were not provided.","category":1,"code":6236}]},{"start":1804,"length":24,"messageText":"Expected 4 arguments, but got 3.","category":1,"code":2554,"relatedInformation":[{"file":"../../src/types.ts","start":2626,"length":25,"messageText":"Arguments for the rest parameter 'xtrasB' were not provided.","category":1,"code":6236}]},{"start":1970,"length":23,"messageText":"Expected 4 arguments, but got 3.","category":1,"code":2554,"relatedInformation":[{"file":"../../src/types.ts","start":2626,"length":25,"messageText":"Arguments for the rest parameter 'xtrasB' were not provided.","category":1,"code":6236}]},{"start":2456,"length":8,"messageText":"Cannot find name 'ITestJob'.","category":1,"code":2304},{"start":2917,"length":2,"messageText":"Expected 2 arguments, but got 3.","category":1,"code":2554}]],[981,[{"start":261,"length":16,"messageText":"'\"../classBuilder\"' has no exported member named 'TestClassBuilder'. Did you mean 'ClassBuilder'?","category":1,"code":2724,"relatedInformation":[{"file":"../../src/lib/classbuilder.ts","start":607,"length":12,"messageText":"'ClassBuilder' is declared here.","category":3,"code":2728}]},{"start":975,"length":9,"code":2345,"category":1,"messageText":{"messageText":"Argument of type 'typeof MockSuite' is not assignable to parameter of type 'ISuiteKlasser<I, O>'.","category":1,"code":2345,"next":[{"messageText":"Type 'typeof MockSuite' provides no match for the signature '(name: string, index: number, givens: IGivens<I>): BaseSuite<I, O>'.","category":1,"code":2658}]}},{"start":1449,"length":13,"messageText":"Expected 8 arguments, but got 9.","category":1,"code":2554},{"start":1732,"length":12,"messageText":"Expected 8 arguments, but got 9.","category":1,"code":2554},{"start":2004,"length":13,"messageText":"Expected 8 arguments, but got 9.","category":1,"code":2554},{"start":2276,"length":13,"messageText":"Expected 8 arguments, but got 9.","category":1,"code":2554},{"start":5914,"length":20,"code":2322,"category":1,"messageText":{"messageText":"Type '(builder: ClassBuilder<any, any, any>) => Promise<ClassBuilder<any, any, any>>' is not assignable to type '(builder: ClassBuilder<any, any, any>) => ClassBuilder<any, any, any>'.","category":1,"code":2322,"next":[{"messageText":"Type 'Promise<ClassBuilder<any, any, any>>' is missing the following properties from type 'ClassBuilder<any, any, any>': specs, assertThis, testResourceRequirement, artifacts, and 12 more.","category":1,"code":2740,"canonicalHead":{"code":2322,"messageText":"Type '(builder: ClassBuilder<any, any, any>) => Promise<ClassBuilder<any, any, any>>' is not assignable to type '(builder: ClassBuilder<any, any, any>) => ClassBuilder<any, any, any>'."}}]},"relatedInformation":[{"file":"../../src/lib/classbuilder.test/classbuilder.test.types.ts","start":2032,"length":109,"messageText":"The expected type comes from the return type of this signature.","category":3,"code":6502}]},{"start":5969,"length":7,"code":2339,"category":1,"messageText":"Property 'testRun' does not exist on type 'ClassBuilder<any, any, any>'."}]],[983,[{"start":925,"length":5,"code":2322,"category":1,"messageText":"Type 'never[]' is not assignable to type 'number'.","relatedInformation":[{"file":"../../src/lib/index.ts","start":2112,"length":5,"messageText":"The expected type comes from property 'ports' which is declared here on type 'ITTestResourceRequest'","category":3,"code":6500}]},{"start":1495,"length":18,"code":2345,"category":1,"messageText":{"messageText":"Argument of type 'ITestImplementation<I, O, M>' is not assignable to parameter of type 'Omit<{ suites: TestSuiteImplementation<O>; givens: TestGivenImplementation<I, O>; whens: TestWhenImplementation<I, O>; thens: TestThenImplementation<...>; }, keyof M> & M & { ...; }'.","category":1,"code":2345,"next":[{"messageText":"Type 'Omit<{ suites: TestSuiteImplementation<O>; givens: TestGivenImplementation<I, O>; whens: TestWhenImplementation<I, O>; thens: TestThenImplementation<...>; }, keyof M>' is missing the following properties from type '{ suites: Record<string, any>; givens: Record<string, any>; whens: Record<string, any>; thens: Record<string, any>; }': suites, givens, whens, thens","category":1,"code":2739,"canonicalHead":{"code":2322,"messageText":"Type 'ITestImplementation<I, O, M>' is not assignable to type '{ suites: Record<string, any>; givens: Record<string, any>; whens: Record<string, any>; thens: Record<string, any>; }'."}}]}}]],[984,[{"start":432,"length":777,"messageText":"Generic type 'Ibdd_out' requires between 0 and 4 type arguments.","category":1,"code":2707}]],[985,[{"start":874,"length":2,"messageText":"Expected 1 arguments, but got 2.","category":1,"code":2554},{"start":965,"length":2,"messageText":"Expected 1 arguments, but got 2.","category":1,"code":2554},{"start":999,"length":5,"code":2739,"category":1,"messageText":"Type 'MockCore<any, any, any>' is missing the following properties from type 'Promise<unknown>': then, catch, finally, [Symbol.toStringTag]","relatedInformation":[{"file":"../../src/coretypes.ts","start":943,"length":62,"messageText":"The expected type comes from the return type of this signature.","category":3,"code":6502},{"start":988,"length":16,"messageText":"Did you mean to mark this function as 'async'?","category":1,"code":1356}],"canonicalHead":{"code":2322,"messageText":"Type 'MockCore<any, any, any>' is not assignable to type 'Promise<unknown>'."}}]],[986,[{"start":597,"length":13,"messageText":"Cannot find name 'specification'.","category":1,"code":2304},{"start":648,"length":11,"code":2345,"category":1,"messageText":{"messageText":"Argument of type '{ ports: number[]; }' is not assignable to parameter of type 'ITTestResourceRequest'.","category":1,"code":2345,"next":[{"messageText":"Types of property 'ports' are incompatible.","category":1,"code":2326,"next":[{"messageText":"Type 'number[]' is not assignable to type 'number'.","category":1,"code":2322}]}]}},{"start":671,"length":11,"messageText":"Cannot find name 'testAdapter'.","category":1,"code":2304},{"start":948,"length":13,"messageText":"Cannot find name 'specification'.","category":1,"code":2304},{"start":997,"length":5,"code":2322,"category":1,"messageText":"Type 'never[]' is not assignable to type 'number'."},{"start":1018,"length":11,"messageText":"Cannot find name 'testAdapter'.","category":1,"code":2304},{"start":1188,"length":13,"messageText":"Cannot find name 'specification'.","category":1,"code":2304},{"start":1257,"length":11,"messageText":"Cannot find name 'testAdapter'.","category":1,"code":2304},{"start":1426,"length":13,"messageText":"Cannot find name 'specification'.","category":1,"code":2304},{"start":1475,"length":5,"code":2322,"category":1,"messageText":"Type 'never[]' is not assignable to type 'number'."},{"start":1501,"length":11,"messageText":"Cannot find name 'testAdapter'.","category":1,"code":2304},{"start":2512,"length":11,"code":2339,"category":1,"messageText":"Property 'constructor' does not exist on type 'never'."},{"start":3836,"length":20,"code":2322,"category":1,"messageText":{"messageText":"Type '(builder: MockCore<any, any, any>) => Promise<MockCore<any, any, any>>' is not assignable to type '(builder: MockCore<any, any, any>) => MockCore<any, any, any>'.","category":1,"code":2322,"next":[{"messageText":"Type 'Promise<MockCore<any, any, any>>' is missing the following properties from type 'MockCore<any, any, any>': specs, testJobs, artifacts, testResourceRequirement, and 14 more.","category":1,"code":2740,"canonicalHead":{"code":2322,"messageText":"Type '(builder: MockCore<any, any, any>) => Promise<MockCore<any, any, any>>' is not assignable to type '(builder: MockCore<any, any, any>) => MockCore<any, any, any>'."}}]},"relatedInformation":[{"file":"../../src/lib/core.test/core.test.types.ts","start":1531,"length":101,"messageText":"The expected type comes from the return type of this signature.","category":3,"code":6502}]}]],[987,[{"start":593,"length":1384,"messageText":"Expected 2 arguments, but got 4.","category":1,"code":2554},{"start":988,"length":4,"code":2353,"category":1,"messageText":"Object literal may only specify known properties, and 'test' does not exist in type 'string[]'."},{"start":1169,"length":5,"code":2353,"category":1,"messageText":"Object literal may only specify known properties, and 'ports' does not exist in type 'string[]'."},{"start":1334,"length":10,"code":2353,"category":1,"messageText":"Object literal may only specify known properties, and 'assertThis' does not exist in type 'string[]'."},{"start":2090,"length":876,"messageText":"Expected 2 arguments, but got 3.","category":1,"code":2554}]],[989,[{"start":1444,"length":21,"code":2322,"category":1,"messageText":{"messageText":"Type '(method: string, expectedPath: string) => (store: { pathRewriter: PathRewriter; }) => Promise<string | undefined>' is not assignable to type '(...It: any) => (ssel: { proxies: ITestProxies; filepath: string; mockPm: IPM; }, utils: PM) => [IPM, \"string\"]'.","category":1,"code":2322,"next":[{"messageText":"Type '(store: { pathRewriter: PathRewriter; }) => Promise<string | undefined>' is not assignable to type '(ssel: { proxies: ITestProxies; filepath: string; mockPm: IPM; }, utils: PM) => [IPM, \"string\"]'.","category":1,"code":2322,"next":[{"messageText":"Types of parameters 'store' and 'ssel' are incompatible.","category":1,"code":2328,"next":[{"messageText":"Property 'pathRewriter' is missing in type '{ proxies: ITestProxies; filepath: string; mockPm: IPM; }' but required in type '{ pathRewriter: PathRewriter; }'.","category":1,"code":2741,"canonicalHead":{"code":2322,"messageText":"Type '{ proxies: ITestProxies; filepath: string; mockPm: IPM; }' is not assignable to type '{ pathRewriter: PathRewriter; }'."}}]}],"canonicalHead":{"code":2322,"messageText":"Type '(method: string, expectedPath: string) => (store: { pathRewriter: PathRewriter; }) => Promise<string | undefined>' is not assignable to type '(...It: any) => (ssel: { proxies: ITestProxies; filepath: string; mockPm: IPM; }, utils: PM) => [IPM, \"string\"]'."}}]},"relatedInformation":[{"start":1537,"length":12,"messageText":"'pathRewriter' is declared here.","category":3,"code":2728},{"file":"../../src/types.ts","start":3733,"length":113,"messageText":"The expected type comes from property 'theButTheProxyReturns' which is declared here on type 'TestThenImplementation<I, any>'","category":3,"code":6500}]},{"start":1872,"length":20,"code":2322,"category":1,"messageText":{"messageText":"Type '(path: string, content: string, testName?: string) => Promise<any>' is not assignable to type '((x: any) => Promise<boolean>) | (() => Promise<boolean>) | ((x: any) => any)'.","category":1,"code":2322,"next":[{"messageText":"Type '(path: string, content: string, testName?: string) => Promise<any>' is not assignable to type '(x: any) => Promise<boolean>'.","category":1,"code":2322,"next":[{"messageText":"Target signature provides too few arguments. Expected 2 or more, but got 1.","category":1,"code":2849}]}]}},{"start":3144,"length":33,"messageText":"Expected 1 arguments, but got 3.","category":1,"code":2554},{"start":3535,"length":4,"code":2322,"category":1,"messageText":"Type '\"screen.png\"' is not assignable to type '`${string}.webm`'.","relatedInformation":[{"file":"../../node_modules/puppeteer-core/lib/types.d.ts","start":250999,"length":4,"messageText":"The expected type comes from property 'path' which is declared here on type 'ScreencastOptions'","category":3,"code":6500}]},{"start":4176,"length":13,"code":2322,"category":1,"messageText":{"messageText":"Type '(expectedContent: any) => (result: any[]) => any[]' is not assignable to type '(...It: any) => (ssel: { proxies: ITestProxies; filepath: string; mockPm: IPM; }, utils: PM) => [IPM, \"string\"]'.","category":1,"code":2322,"next":[{"messageText":"Type '(result: any[]) => any[]' is not assignable to type '(ssel: { proxies: ITestProxies; filepath: string; mockPm: IPM; }, utils: PM) => [IPM, \"string\"]'.","category":1,"code":2322,"next":[{"messageText":"Types of parameters 'result' and 'ssel' are incompatible.","category":1,"code":2328,"next":[{"messageText":"Type '{ proxies: ITestProxies; filepath: string; mockPm: IPM; }' is missing the following properties from type 'any[]': length, pop, push, concat, and 35 more.","category":1,"code":2740,"canonicalHead":{"code":2322,"messageText":"Type '{ proxies: ITestProxies; filepath: string; mockPm: IPM; }' is not assignable to type 'any[]'."}}]}],"canonicalHead":{"code":2322,"messageText":"Type '(expectedContent: any) => (result: any[]) => any[]' is not assignable to type '(...It: any) => (ssel: { proxies: ITestProxies; filepath: string; mockPm: IPM; }, utils: PM) => [IPM, \"string\"]'."}}]},"relatedInformation":[{"file":"../../src/types.ts","start":3733,"length":113,"messageText":"The expected type comes from property 'verifyContent' which is declared here on type 'TestThenImplementation<I, any>'","category":3,"code":6500}]},{"start":4658,"length":50,"code":2322,"category":1,"messageText":{"messageText":"Type '(store: { pathRewriter: PathRewriter; }) => Promise<string>' is not assignable to type '(ssel: { proxies: ITestProxies; filepath: string; mockPm: IPM; }, utils: PM) => [IPM, \"string\"]'.","category":1,"code":2322,"next":[{"messageText":"Types of parameters 'store' and 'ssel' are incompatible.","category":1,"code":2328,"next":[{"messageText":"Property 'pathRewriter' is missing in type '{ proxies: ITestProxies; filepath: string; mockPm: IPM; }' but required in type '{ pathRewriter: PathRewriter; }'.","category":1,"code":2741,"canonicalHead":{"code":2322,"messageText":"Type '{ proxies: ITestProxies; filepath: string; mockPm: IPM; }' is not assignable to type '{ pathRewriter: PathRewriter; }'."}}]}]},"relatedInformation":[{"start":4674,"length":12,"messageText":"'pathRewriter' is declared here.","category":3,"code":2728},{"file":"../../src/types.ts","start":3762,"length":81,"messageText":"The expected type comes from the return type of this signature.","category":3,"code":6502}]}]],[991,[{"start":482,"length":14,"code":2345,"category":1,"messageText":{"messageText":"Argument of type 'ITestImplementation<I, any, M>' is not assignable to parameter of type 'Omit<{ suites: TestSuiteImplementation<any>; givens: TestGivenImplementation<I, any>; whens: TestWhenImplementation<I, any>; thens: TestThenImplementation<...>; }, never>'.","category":1,"code":2345,"next":[{"messageText":"Types of property 'givens' are incompatible.","category":1,"code":2326,"next":[{"messageText":"Type '{ [x: string]: (...Iw: any) => string; }' is not assignable to type 'TestGivenImplementation<I, any>'.","category":1,"code":2322,"next":[{"messageText":"'string' index signatures are incompatible.","category":1,"code":2634,"next":[{"messageText":"Type '(...Iw: any) => string' is not assignable to type '(...Ig: any) => [string, string]'.","category":1,"code":2322,"next":[{"messageText":"Type 'string' is not assignable to type '[string, string]'.","category":1,"code":2322,"canonicalHead":{"code":2322,"messageText":"Type '(...Iw: any) => string' is not assignable to type '(...Ig: any) => [string, string]'."}}]}]}]}]}]}}]],[992,[{"start":531,"length":188,"messageText":"Generic type 'Ibdd_out' requires between 0 and 4 type arguments.","category":1,"code":2707}]],[993,[{"start":423,"length":10,"code":2719,"category":1,"messageText":{"messageText":"Type '(subject: { proxies: import(\"/Users/adam/Code/testeranto/src/lib/pmProxy.test/index\").ITestProxies; filepath: string; mockPm: import(\"/Users/adam/Code/testeranto/src/lib/types\").IPM; }, initializer: (c?: any) => [...], testResource: import(\"/Users/adam/Code/testeranto/src/lib/index\").ITTestResourceConfiguration, ini...' is not assignable to type '(subject: { proxies: import(\"/Users/adam/Code/testeranto/src/lib/pmProxy.test/index\").ITestProxies; filepath: string; mockPm: import(\"/Users/adam/Code/testeranto/src/lib/types\").IPM; }, initializer: (c?: any) => [...], testResource: import(\"/Users/adam/Code/testeranto/src/lib/index\").ITTestResourceConfiguration, ini...'. Two different types with this name exist, but they are unrelated.","category":1,"code":2719,"next":[{"messageText":"Type 'Promise<{ proxies: ITestProxies; filepath: string; mockPm: IPM; }>' is not assignable to type 'Promise<{ butThenProxy: IProxy; }>'.","category":1,"code":2322,"next":[{"messageText":"Property 'butThenProxy' is missing in type '{ proxies: ITestProxies; filepath: string; mockPm: IPM; }' but required in type '{ butThenProxy: IProxy; }'.","category":1,"code":2741,"canonicalHead":{"code":2322,"messageText":"Type '{ proxies: ITestProxies; filepath: string; mockPm: IPM; }' is not assignable to type '{ butThenProxy: IProxy; }'."}}],"canonicalHead":{"code":2719,"messageText":"Type '(subject: { proxies: import(\"/Users/adam/Code/testeranto/src/lib/pmProxy.test/index\").ITestProxies; filepath: string; mockPm: import(\"/Users/adam/Code/testeranto/src/lib/types\").IPM; }, initializer: (c?: any) => [...], testResource: import(\"/Users/adam/Code/testeranto/src/lib/index\").ITTestResourceConfiguration, ini...' is not assignable to type '(subject: { proxies: import(\"/Users/adam/Code/testeranto/src/lib/pmProxy.test/index\").ITestProxies; filepath: string; mockPm: import(\"/Users/adam/Code/testeranto/src/lib/types\").IPM; }, initializer: (c?: any) => [...], testResource: import(\"/Users/adam/Code/testeranto/src/lib/index\").ITTestResourceConfiguration, ini...'. Two different types with this name exist, but they are unrelated."}}]},"relatedInformation":[{"file":"../../src/lib/pmproxy.test/types.ts","start":294,"length":12,"messageText":"'butThenProxy' is declared here.","category":3,"code":2728},{"file":"../../src/coretypes.ts","start":1138,"length":10,"messageText":"The expected type comes from property 'beforeEach' which is declared here on type 'ITestAdapter<I>'","category":3,"code":6500}]},{"start":722,"length":7,"code":2719,"category":1,"messageText":{"messageText":"Type '(store: { butThenProxy: import(\"/Users/adam/Code/testeranto/src/lib/pmProxy\").IProxy; }, whenCB: (...args: any[]) => (proxies: { butThenProxy: import(\"/Users/adam/Code/testeranto/src/lib/pmProxy\").IProxy; }) => { ...; }, testResource: import(\"/Users/adam/Code/testeranto/src/lib/index\").ITTestResourceConfiguration, p...' is not assignable to type '(store: { butThenProxy: import(\"/Users/adam/Code/testeranto/src/lib/pmProxy\").IProxy; }, whenCB: (...args: any[]) => (proxies: { butThenProxy: import(\"/Users/adam/Code/testeranto/src/lib/pmProxy\").IProxy; }) => { ...; }, testResource: import(\"/Users/adam/Code/testeranto/src/lib/index\").ITTestResourceConfiguration, p...'. Two different types with this name exist, but they are unrelated.","category":1,"code":2719,"next":[{"messageText":"Type 'Promise<(proxies: { butThenProxy: IProxy; }) => { butThenProxy: IProxy; }>' is not assignable to type 'Promise<{ butThenProxy: IProxy; }>'.","category":1,"code":2322,"next":[{"messageText":"Type '(proxies: { butThenProxy: IProxy; }) => { butThenProxy: IProxy; }' is not assignable to type '{ butThenProxy: IProxy; }'.","category":1,"code":2322}],"canonicalHead":{"code":2719,"messageText":"Type '(store: { butThenProxy: import(\"/Users/adam/Code/testeranto/src/lib/pmProxy\").IProxy; }, whenCB: (...args: any[]) => (proxies: { butThenProxy: import(\"/Users/adam/Code/testeranto/src/lib/pmProxy\").IProxy; }) => { ...; }, testResource: import(\"/Users/adam/Code/testeranto/src/lib/index\").ITTestResourceConfiguration, p...' is not assignable to type '(store: { butThenProxy: import(\"/Users/adam/Code/testeranto/src/lib/pmProxy\").IProxy; }, whenCB: (...args: any[]) => (proxies: { butThenProxy: import(\"/Users/adam/Code/testeranto/src/lib/pmProxy\").IProxy; }) => { ...; }, testResource: import(\"/Users/adam/Code/testeranto/src/lib/index\").ITTestResourceConfiguration, p...'. Two different types with this name exist, but they are unrelated."}}]},"relatedInformation":[{"file":"../../src/coretypes.ts","start":582,"length":7,"messageText":"The expected type comes from property 'andWhen' which is declared here on type 'ITestAdapter<I>'","category":3,"code":6500}]},{"start":1156,"length":6,"code":2349,"category":1,"messageText":{"messageText":"This expression is not callable.","category":1,"code":2349,"next":[{"messageText":"Type '[IPM, \"string\"]' has no call signatures.","category":1,"code":2757}]}},{"start":1273,"length":9,"code":2322,"category":1,"messageText":{"messageText":"Type '(input: any, testResource: any, pm: any, theGivenString: any) => Promise<{ beforeEachProxy: any; }>' is not assignable to type '(input: { butThenProxy: IProxy; }, testResource: ITTestResourceConfiguration, pm: IPM) => Promise<{ proxies: ITestProxies; filepath: string; mockPm: IPM; }>'.","category":1,"code":2322,"next":[{"messageText":"Target signature provides too few arguments. Expected 4 or more, but got 3.","category":1,"code":2849}]},"relatedInformation":[{"file":"../../src/coretypes.ts","start":1009,"length":9,"messageText":"The expected type comes from property 'beforeAll' which is declared here on type 'ITestAdapter<I>'","category":3,"code":6500}]},{"start":1484,"length":10,"code":2322,"category":1,"messageText":{"messageText":"Type '(actualResult: any, expectedResult: any) => void' is not assignable to type '(x: [IPM, \"string\"]) => any'.","category":1,"code":2322,"next":[{"messageText":"Target signature provides too few arguments. Expected 2 or more, but got 1.","category":1,"code":2849}]},"relatedInformation":[{"file":"../../src/coretypes.ts","start":545,"length":10,"messageText":"The expected type comes from property 'assertThis' which is declared here on type 'ITestAdapter<I>'","category":3,"code":6500}]}]],[994,[{"start":435,"length":13,"code":2416,"category":1,"messageText":{"messageText":"Property 'launchSideCar' in type 'MockPM' is not assignable to the same property in base type 'MockPMBase'.","category":1,"code":2416,"next":[{"messageText":"Type '(n: number) => Promise<[number, any]>' is not assignable to type '(n: number, testName: string, projectName: string) => Promise<void>'.","category":1,"code":2322,"next":[{"messageText":"Type 'Promise<[number, any]>' is not assignable to type 'Promise<void>'.","category":1,"code":2322,"next":[{"messageText":"Type '[number, any]' is not assignable to type 'void'.","category":1,"code":2322}],"canonicalHead":{"code":2322,"messageText":"Type '(n: number) => Promise<[number, any]>' is not assignable to type '(n: number, testName: string, projectName: string) => Promise<void>'."}}]}]}}]],[1005,[{"start":1282,"length":2,"messageText":"Expected 2 arguments, but got 3.","category":1,"code":2554},{"start":1365,"length":13,"code":2322,"category":1,"messageText":"Type '(x: any) => any' is not assignable to type 'string'.","relatedInformation":[{"start":596,"length":13,"messageText":"The expected type comes from property 'TheMothership' which is declared here on type 'TestSuiteImplementation<O>'","category":3,"code":6500}]}]],[1006,[{"start":861,"length":7,"code":2345,"category":1,"messageText":"Argument of type 'string' is not assignable to parameter of type 'RuntimeName'."}]],[1191,[{"start":1160,"length":17,"code":2740,"category":1,"messageText":"Type 'Canvas' is missing the following properties from type 'Canvas': initialize, containsPoint, restorePointerVpt, _setObjectScale, and 17 more.","canonicalHead":{"code":2322,"messageText":"Type 'import(\"/Users/adam/Code/testeranto/node_modules/fabric/dist/src/canvas/Canvas\").Canvas' is not assignable to type 'fabric.Canvas'."}},{"start":2978,"length":36,"code":2352,"category":1,"messageText":{"messageText":"Conversion of type '{ version: string; objects: Object[]; }' to type 'Design' may be a mistake because neither type sufficiently overlaps with the other. If this was intentional, convert the expression to 'unknown' first.","category":1,"code":2352,"next":[{"messageText":"Property 'background' is missing in type '{ version: string; objects: Object[]; }' but required in type 'Design'.","category":1,"code":2741}]},"relatedInformation":[{"start":315,"length":10,"messageText":"'background' is declared here.","category":3,"code":2728}]}]],[1195,[{"start":1675,"length":4,"messageText":"'node' is of type 'unknown'.","category":1,"code":18046},{"start":1943,"length":4,"messageText":"'node' is of type 'unknown'.","category":1,"code":18046},{"start":35127,"length":9,"code":2322,"category":1,"messageText":{"messageText":"Type '{ testName: string; testsExist: boolean; runTimeErrors: number; typeErrors: number; staticErrors: number; variant: \"compact\"; className: string; }' is not assignable to type 'IntrinsicAttributes & TestStatusBadgeProps'.","category":1,"code":2322,"next":[{"messageText":"Property 'className' does not exist on type 'IntrinsicAttributes & TestStatusBadgeProps'.","category":1,"code":2339}]}}]],[1196,[{"start":2980,"length":6,"messageText":"'output' is of type 'unknown'.","category":1,"code":18046},{"start":3314,"length":6,"messageText":"'output' is of type 'unknown'.","category":1,"code":18046},{"start":5944,"length":28,"code":2322,"category":1,"messageText":"Type '{}' is not assignable to type 'string'."},{"start":7699,"length":52,"code":2345,"category":1,"messageText":"Argument of type 'string' is not assignable to parameter of type 'SetStateAction<null>'."},{"start":8018,"length":5,"code":2322,"category":1,"messageText":{"messageText":"Type '{ route: \"coverage\" | \"results\" | \"logs\" | \"types\" | \"lint\"; setRoute: Dispatch<SetStateAction<string>>; navigate: NavigateFunction; ... 6 more ...; errorCounts: { ...; }; }' is not assignable to type 'IntrinsicAttributes & TestPageViewProps'.","category":1,"code":2322,"next":[{"messageText":"Property 'route' does not exist on type 'IntrinsicAttributes & TestPageViewProps'.","category":1,"code":2339}]}}]],[1199,[{"start":3525,"length":9,"code":2322,"category":1,"messageText":{"messageText":"Type 'Record<string, ISummary>' is not assignable to type 'TestSummary'.","category":1,"code":2322,"next":[{"messageText":"'string' index signatures are incompatible.","category":1,"code":2634,"next":[{"messageText":"Type 'ISummary' has no properties in common with type '{ testsExist?: boolean | undefined; runTimeErrors?: number | undefined; typeErrors?: number | undefined; staticErrors?: number | undefined; }'.","category":1,"code":2559}]}]},"relatedInformation":[{"file":"../../src/components/pure/projectspageview.tsx","start":507,"length":9,"messageText":"The expected type comes from property 'summaries' which is declared here on type 'IntrinsicAttributes & ProjectsPageViewProps'","category":3,"code":6500}]},{"start":3553,"length":7,"code":2322,"category":1,"messageText":{"messageText":"Type 'Record<string, object>' is not assignable to type 'ProjectConfig'.","category":1,"code":2322,"next":[{"messageText":"'string' index signatures are incompatible.","category":1,"code":2634,"next":[{"messageText":"Property 'tests' is missing in type '{}' but required in type '{ tests: [string, string][]; }'.","category":1,"code":2741,"canonicalHead":{"code":2322,"messageText":"Type 'object' is not assignable to type '{ tests: [string, string][]; }'."}}]}]},"relatedInformation":[{"file":"../../src/components/pure/projectspageview.tsx","start":392,"length":5,"messageText":"'tests' is declared here.","category":3,"code":2728},{"file":"../../src/components/pure/projectspageview.tsx","start":533,"length":7,"messageText":"The expected type comes from property 'configs' which is declared here on type 'IntrinsicAttributes & ProjectsPageViewProps'","category":3,"code":6500}]}]],[1204,[{"start":1938,"length":6,"messageText":"Cannot find name 'Design'.","category":1,"code":2304},{"start":2122,"length":18,"code":2339,"category":1,"messageText":"Property 'showOpenFilePicker' does not exist on type 'Window & typeof globalThis'."},{"start":2326,"length":18,"code":2339,"category":1,"messageText":"Property 'showOpenFilePicker' does not exist on type 'Window & typeof globalThis'."}]],[1205,[{"start":36,"length":8,"messageText":"Module '\"./TextEditorPage\"' declares 'FileType' locally, but it is not exported.","category":1,"code":2459,"relatedInformation":[{"file":"../../src/components/stateful/texteditorpage.tsx","start":247,"length":8,"messageText":"'FileType' is declared here.","category":3,"code":2728}]},{"start":1203,"length":8,"messageText":"'dirFiles' is of type 'unknown'.","category":1,"code":18046}]],[1206,[{"start":3084,"length":10,"code":2322,"category":1,"messageText":{"messageText":"Type 'string | undefined' is not assignable to type 'string | null'.","category":1,"code":2322,"next":[{"messageText":"Type 'undefined' is not assignable to type 'string | null'.","category":1,"code":2322}]},"relatedInformation":[{"file":"../../src/components/stateful/filetree.tsx","start":155,"length":10,"messageText":"The expected type comes from property 'activeFile' which is declared here on type 'IntrinsicAttributes & FileTreeProps'","category":3,"code":6500}]}]],[1210,[{"start":159,"length":27,"messageText":"File '/Users/adam/Code/testeranto/src/components/pure/SingleProcessView.tsx' is not a module.","category":1,"code":2306}]],[1212,[{"start":1892,"length":10,"code":2339,"category":1,"messageText":"Property 'createRoot' does not exist on type 'typeof import(\"/Users/adam/Code/testeranto/node_modules/@types/react-dom/index\")'."},{"start":2130,"length":3,"code":2339,"category":1,"messageText":"Property 'App' does not exist on type 'Window & typeof globalThis'."},{"start":2167,"length":15,"code":2740,"category":1,"messageText":"Type 'typeof import(\"/Users/adam/Code/testeranto/node_modules/@types/react-dom/client\")' is missing the following properties from type 'typeof import(\"/Users/adam/Code/testeranto/node_modules/@types/react-dom/index\")': findDOMNode, unmountComponentAtNode, createPortal, flushSync, and 5 more.","canonicalHead":{"code":2322,"messageText":"Type 'typeof import(\"/Users/adam/Code/testeranto/node_modules/@types/react-dom/client\")' is not assignable to type 'typeof import(\"/Users/adam/Code/testeranto/node_modules/@types/react-dom/index\")'."}}]],[1216,[{"start":470,"length":109,"code":2322,"category":1,"messageText":{"messageText":"Type '(children: React.ReactNode) => () => (selection: ISelection) => { children: React.ReactNode; htmlElement: HTMLElement; reactElement: React.ReactElement; domRoot: HTMLElement | null; container?: HTMLElement; testId?: string; }' is not assignable to type '(Ig_0: ReactNode) => (s: ISelection) => ISelection'.","category":1,"code":2322,"next":[{"messageText":"Call signature return types '() => (selection: ISelection) => { children: ReactNode; htmlElement: HTMLElement; reactElement: ReactElement<any, string | JSXElementConstructor<any>>; domRoot: HTMLElement | null; container?: HTMLElement | undefined; testId?: string | undefined; }' and '(s: ISelection) => ISelection' are incompatible.","category":1,"code":2202,"next":[{"messageText":"Type '(selection: ISelection) => { children: React.ReactNode; htmlElement: HTMLElement; reactElement: React.ReactElement; domRoot: HTMLElement | null; container?: HTMLElement; testId?: string; }' is not assignable to type 'ISelection'.","category":1,"code":2322,"canonicalHead":{"code":2322,"messageText":"Type '(children: React.ReactNode) => () => (selection: ISelection) => { children: React.ReactNode; htmlElement: HTMLElement; reactElement: React.ReactElement; domRoot: HTMLElement | null; container?: HTMLElement; testId?: string; }' is not assignable to type '(Ig_0: ReactNode) => (s: ISelection) => ISelection'."}}]}]},"relatedInformation":[{"start":470,"length":109,"messageText":"Did you mean to call this expression?","category":3,"code":6212}]}]],[1217,[{"start":643,"length":7,"code":2322,"category":1,"messageText":{"messageText":"Type '(testInput: typeof Component) => { beforeAll: (subject: typeof Component, artificer: ITTestResourceConfiguration) => Promise<{ htmlElement: HTMLElement; }>; ... 5 more ...; assertThis: (x: (s: ISelection) => ISelection) => (s: ISelection) => ISelection; }' is not assignable to type '(testInput: typeof Component) => ITestAdapter<I>'.","category":1,"code":2322,"next":[{"messageText":"Call signature return types '{ beforeAll: (subject: typeof Component, artificer: ITTestResourceConfiguration) => Promise<{ htmlElement: HTMLElement; }>; ... 5 more ...; assertThis: (x: (s: ISelection) => ISelection) => (s: ISelection) => ISelection; }' and 'ITestAdapter<I>' are incompatible.","category":1,"code":2202,"next":[{"messageText":"The types returned by 'beforeAll(...)' are incompatible between these types.","category":1,"code":2201,"next":[{"messageText":"Type 'Promise<{ htmlElement: HTMLElement; }>' is not assignable to type 'Promise<ISubject>'.","category":1,"code":2322,"next":[{"messageText":"Property 'domRoot' is missing in type '{ htmlElement: HTMLElement; }' but required in type 'ISubject'.","category":1,"code":2741,"canonicalHead":{"code":2322,"messageText":"Type '{ htmlElement: HTMLElement; }' is not assignable to type 'ISubject'."}}],"canonicalHead":{"code":2322,"messageText":"Type '(testInput: typeof Component) => { beforeAll: (subject: typeof Component, artificer: ITTestResourceConfiguration) => Promise<{ htmlElement: HTMLElement; }>; ... 5 more ...; assertThis: (x: (s: ISelection) => ISelection) => (s: ISelection) => ISelection; }' is not assignable to type '(testInput: typeof Component) => ITestAdapter<I>'."}}]}]}]},"relatedInformation":[{"start":453,"length":7,"messageText":"'domRoot' is declared here.","category":3,"code":2728}]},{"start":1074,"length":7,"code":2339,"category":1,"messageText":"Property 'subject' does not exist on type 'Readonly<{}>'."},{"start":2552,"length":7,"code":2345,"category":1,"messageText":{"messageText":"Argument of type 'CElement<any, TesterantoComponent>' is not assignable to parameter of type 'ReactNode'.","category":1,"code":2345,"next":[{"messageText":"Property 'children' is missing in type 'ComponentElement<any, TesterantoComponent>' but required in type 'ReactPortal'.","category":1,"code":2741,"canonicalHead":{"code":2322,"messageText":"Type 'ComponentElement<any, TesterantoComponent>' is not assignable to type 'ReactPortal'."}}]},"relatedInformation":[{"file":"../../node_modules/@types/react-dom/node_modules/@types/react/index.d.ts","start":12792,"length":8,"messageText":"'children' is declared here.","category":3,"code":2728}]},{"start":2744,"length":6,"messageText":"Expected 1 arguments, but got 3.","category":1,"code":2554}]],[1218,[{"start":71,"length":16,"messageText":"Cannot find module '../../../Types' or its corresponding type declarations.","category":1,"code":2307}]],[1221,[{"start":482,"length":14,"code":2345,"category":1,"messageText":{"messageText":"Argument of type 'ITestImplementation<I, O>' is not assignable to parameter of type 'ITestImplementation<I, O, { whens: TestWhenImplementation<I, O>; }>'.","category":1,"code":2345,"next":[{"messageText":"Type 'ITestImplementation<I, O>' is not assignable to type 'Omit<{ suites: TestSuiteImplementation<O>; givens: TestGivenImplementation<I, O>; whens: TestWhenImplementation<I, O>; thens: TestThenImplementation<...>; }, \"whens\">'.","category":1,"code":2322,"next":[{"messageText":"The types returned by 'givens.Default(...)' are incompatible between these types.","category":1,"code":2201,"next":[{"messageText":"Type '(s: import(\"/Users/adam/Code/testeranto/src/components/pure/AppFrame.test/types\").ISelection) => import(\"/Users/adam/Code/testeranto/src/components/pure/AppFrame.test/types\").ISelection' is not assignable to type '(s: import(\"/Users/adam/Code/testeranto/node_modules/testeranto-react/src/react-dom/component/dynamic\").ISelection) => import(\"/Users/adam/Code/testeranto/node_modules/testeranto-react/src/react-dom/component/dynamic\").ISelection'.","category":1,"code":2322,"next":[{"messageText":"Types of parameters 's' and 's' are incompatible.","category":1,"code":2328,"next":[{"messageText":"Type 'import(\"/Users/adam/Code/testeranto/node_modules/testeranto-react/src/react-dom/component/dynamic\").ISelection' is not assignable to type 'import(\"/Users/adam/Code/testeranto/src/components/pure/AppFrame.test/types\").ISelection'.","category":1,"code":2322,"next":[{"messageText":"Types of property 'domRoot' are incompatible.","category":1,"code":2326,"next":[{"messageText":"Type 'Root' is missing the following properties from type 'HTMLElement': accessKey, accessKeyLabel, autocapitalize, autocorrect, and 314 more.","category":1,"code":2740,"canonicalHead":{"code":2322,"messageText":"Type 'import(\"/Users/adam/Code/testeranto/node_modules/testeranto-react/src/react-dom/component/dynamic\").ISelection' is not assignable to type 'import(\"/Users/adam/Code/testeranto/src/components/pure/AppFrame.test/types\").ISelection'."}}]}]}]}],"canonicalHead":{"code":2322,"messageText":"Type 'ITestImplementation<I, O>' is not assignable to type 'Omit<{ suites: TestSuiteImplementation<O>; givens: TestGivenImplementation<I, O>; whens: TestWhenImplementation<I, O>; thens: TestThenImplementation<...>; }, \"whens\">'."}}]}]}]}}]],[1222,[{"start":447,"length":4,"code":2322,"category":1,"messageText":"Type '\"test\"' is not assignable to type '\"project\" | \"file\"'.","relatedInformation":[{"file":"../../src/types/features.ts","start":43,"length":4,"messageText":"The expected type comes from property 'type' which is declared here on type 'TreeNode'","category":3,"code":6500}]},{"start":579,"length":4,"code":2322,"category":1,"messageText":"Type '\"given\"' is not assignable to type '\"project\" | \"file\"'.","relatedInformation":[{"file":"../../src/types/features.ts","start":43,"length":4,"messageText":"The expected type comes from property 'type' which is declared here on type 'TreeNode'","category":3,"code":6500}]},{"start":731,"length":4,"code":2322,"category":1,"messageText":"Type '\"then\"' is not assignable to type '\"project\" | \"file\"'.","relatedInformation":[{"file":"../../src/types/features.ts","start":43,"length":4,"messageText":"The expected type comes from property 'type' which is declared here on type 'TreeNode'","category":3,"code":6500}]},{"start":1218,"length":28,"code":2322,"category":1,"messageText":{"messageText":"Type '({ htmlElement }: IInput & { container?: HTMLElement | undefined; }) => Promise<{ htmlElement: any; }>' is not assignable to type '(state: IInput & { container?: HTMLElement | undefined; }) => IInput & { container?: HTMLElement | undefined; }'.","category":1,"code":2322,"next":[{"messageText":"Type 'Promise<{ htmlElement: any; }>' is not assignable to type 'IInput & { container?: HTMLElement | undefined; }'.","category":1,"code":2322,"next":[{"messageText":"Property 'treeData' is missing in type 'Promise<{ htmlElement: any; }>' but required in type 'IInput'.","category":1,"code":2741,"canonicalHead":{"code":2322,"messageText":"Type 'Promise<{ htmlElement: any; }>' is not assignable to type 'IInput'."}}],"canonicalHead":{"code":2322,"messageText":"Type '({ htmlElement }: IInput & { container?: HTMLElement | undefined; }) => Promise<{ htmlElement: any; }>' is not assignable to type '(state: IInput & { container?: HTMLElement | undefined; }) => IInput & { container?: HTMLElement | undefined; }'."}}]},"relatedInformation":[{"file":"../../src/components/pure/featuresreporterview.test/types.ts","start":175,"length":8,"messageText":"'treeData' is declared here.","category":3,"code":2728},{"file":"../../src/components/pure/featuresreporterview.test/types.ts","start":1470,"length":129,"messageText":"The expected type comes from the return type of this signature.","category":3,"code":6502}]},{"start":1227,"length":11,"messageText":"Property 'htmlElement' does not exist on type 'IInput & { container?: HTMLElement | undefined; }'.","category":1,"code":2339},{"start":1495,"length":28,"code":2322,"category":1,"messageText":{"messageText":"Type '({ htmlElement }: IInput & { container?: HTMLElement | undefined; }) => Promise<{ htmlElement: any; }>' is not assignable to type '(state: IInput & { container?: HTMLElement | undefined; }) => IInput & { container?: HTMLElement | undefined; }'.","category":1,"code":2322,"next":[{"messageText":"Type 'Promise<{ htmlElement: any; }>' is not assignable to type 'IInput & { container?: HTMLElement | undefined; }'.","category":1,"code":2322,"next":[{"messageText":"Property 'treeData' is missing in type 'Promise<{ htmlElement: any; }>' but required in type 'IInput'.","category":1,"code":2741,"canonicalHead":{"code":2322,"messageText":"Type 'Promise<{ htmlElement: any; }>' is not assignable to type 'IInput'."}}],"canonicalHead":{"code":2322,"messageText":"Type '({ htmlElement }: IInput & { container?: HTMLElement | undefined; }) => Promise<{ htmlElement: any; }>' is not assignable to type '(state: IInput & { container?: HTMLElement | undefined; }) => IInput & { container?: HTMLElement | undefined; }'."}}]},"relatedInformation":[{"file":"../../src/components/pure/featuresreporterview.test/types.ts","start":175,"length":8,"messageText":"'treeData' is declared here.","category":3,"code":2728},{"file":"../../src/components/pure/featuresreporterview.test/types.ts","start":1470,"length":129,"messageText":"The expected type comes from the return type of this signature.","category":3,"code":6502}]},{"start":1504,"length":11,"messageText":"Property 'htmlElement' does not exist on type 'IInput & { container?: HTMLElement | undefined; }'.","category":1,"code":2339},{"start":1760,"length":28,"code":2322,"category":1,"messageText":{"messageText":"Type '({ htmlElement }: IInput & { container?: HTMLElement | undefined; }) => Promise<{ htmlElement: any; }>' is not assignable to type '(state: IInput & { container?: HTMLElement | undefined; }) => IInput & { container?: HTMLElement | undefined; }'.","category":1,"code":2322,"next":[{"messageText":"Type 'Promise<{ htmlElement: any; }>' is not assignable to type 'IInput & { container?: HTMLElement | undefined; }'.","category":1,"code":2322,"next":[{"messageText":"Property 'treeData' is missing in type 'Promise<{ htmlElement: any; }>' but required in type 'IInput'.","category":1,"code":2741,"canonicalHead":{"code":2322,"messageText":"Type 'Promise<{ htmlElement: any; }>' is not assignable to type 'IInput'."}}],"canonicalHead":{"code":2322,"messageText":"Type '({ htmlElement }: IInput & { container?: HTMLElement | undefined; }) => Promise<{ htmlElement: any; }>' is not assignable to type '(state: IInput & { container?: HTMLElement | undefined; }) => IInput & { container?: HTMLElement | undefined; }'."}}]},"relatedInformation":[{"file":"../../src/components/pure/featuresreporterview.test/types.ts","start":175,"length":8,"messageText":"'treeData' is declared here.","category":3,"code":2728},{"file":"../../src/components/pure/featuresreporterview.test/types.ts","start":1470,"length":129,"messageText":"The expected type comes from the return type of this signature.","category":3,"code":6502}]},{"start":1769,"length":11,"messageText":"Property 'htmlElement' does not exist on type 'IInput & { container?: HTMLElement | undefined; }'.","category":1,"code":2339},{"start":2028,"length":28,"code":2322,"category":1,"messageText":{"messageText":"Type '({ htmlElement }: IInput & { container?: HTMLElement | undefined; }) => Promise<{ htmlElement: any; }>' is not assignable to type '(state: IInput & { container?: HTMLElement | undefined; }) => IInput & { container?: HTMLElement | undefined; }'.","category":1,"code":2322,"next":[{"messageText":"Type 'Promise<{ htmlElement: any; }>' is not assignable to type 'IInput & { container?: HTMLElement | undefined; }'.","category":1,"code":2322,"next":[{"messageText":"Property 'treeData' is missing in type 'Promise<{ htmlElement: any; }>' but required in type 'IInput'.","category":1,"code":2741,"canonicalHead":{"code":2322,"messageText":"Type 'Promise<{ htmlElement: any; }>' is not assignable to type 'IInput'."}}],"canonicalHead":{"code":2322,"messageText":"Type '({ htmlElement }: IInput & { container?: HTMLElement | undefined; }) => Promise<{ htmlElement: any; }>' is not assignable to type '(state: IInput & { container?: HTMLElement | undefined; }) => IInput & { container?: HTMLElement | undefined; }'."}}]},"relatedInformation":[{"file":"../../src/components/pure/featuresreporterview.test/types.ts","start":175,"length":8,"messageText":"'treeData' is declared here.","category":3,"code":2728},{"file":"../../src/components/pure/featuresreporterview.test/types.ts","start":1470,"length":129,"messageText":"The expected type comes from the return type of this signature.","category":3,"code":6502}]},{"start":2037,"length":11,"messageText":"Property 'htmlElement' does not exist on type 'IInput & { container?: HTMLElement | undefined; }'.","category":1,"code":2339},{"start":2305,"length":28,"code":2322,"category":1,"messageText":{"messageText":"Type '({ htmlElement }: IInput & { container?: HTMLElement | undefined; }) => Promise<{ htmlElement: any; }>' is not assignable to type '(state: IInput & { container?: HTMLElement | undefined; }) => IInput & { container?: HTMLElement | undefined; }'.","category":1,"code":2322,"next":[{"messageText":"Type 'Promise<{ htmlElement: any; }>' is not assignable to type 'IInput & { container?: HTMLElement | undefined; }'.","category":1,"code":2322,"next":[{"messageText":"Property 'treeData' is missing in type 'Promise<{ htmlElement: any; }>' but required in type 'IInput'.","category":1,"code":2741,"canonicalHead":{"code":2322,"messageText":"Type 'Promise<{ htmlElement: any; }>' is not assignable to type 'IInput'."}}],"canonicalHead":{"code":2322,"messageText":"Type '({ htmlElement }: IInput & { container?: HTMLElement | undefined; }) => Promise<{ htmlElement: any; }>' is not assignable to type '(state: IInput & { container?: HTMLElement | undefined; }) => IInput & { container?: HTMLElement | undefined; }'."}}]},"relatedInformation":[{"file":"../../src/components/pure/featuresreporterview.test/types.ts","start":175,"length":8,"messageText":"'treeData' is declared here.","category":3,"code":2728},{"file":"../../src/components/pure/featuresreporterview.test/types.ts","start":1470,"length":129,"messageText":"The expected type comes from the return type of this signature.","category":3,"code":6502}]},{"start":2314,"length":11,"messageText":"Property 'htmlElement' does not exist on type 'IInput & { container?: HTMLElement | undefined; }'.","category":1,"code":2339},{"start":2528,"length":14,"code":2322,"category":1,"messageText":{"messageText":"Type '(name: string) => ({ htmlElement }: { htmlElement: any; }, pm: any) => Promise<{ htmlElement: any; }>' is not assignable to type '(...args: any[]) => (state: IInput & { container?: HTMLElement | undefined; }) => IInput & { container?: HTMLElement | undefined; }'.","category":1,"code":2322,"next":[{"messageText":"Type '({ htmlElement }: { htmlElement: any; }, pm: any) => Promise<{ htmlElement: any; }>' is not assignable to type '(state: IInput & { container?: HTMLElement | undefined; }) => IInput & { container?: HTMLElement | undefined; }'.","category":1,"code":2322,"next":[{"messageText":"Target signature provides too few arguments. Expected 2 or more, but got 1.","category":1,"code":2849}],"canonicalHead":{"code":2322,"messageText":"Type '(name: string) => ({ htmlElement }: { htmlElement: any; }, pm: any) => Promise<{ htmlElement: any; }>' is not assignable to type '(...args: any[]) => (state: IInput & { container?: HTMLElement | undefined; }) => IInput & { container?: HTMLElement | undefined; }'."}}]},"relatedInformation":[{"file":"../../src/components/pure/featuresreporterview.test/types.ts","start":1139,"length":14,"messageText":"The expected type comes from property 'takeScreenshot' which is declared here on type '{ hasProjectNames: (...args: any[]) => (state: IInput & { container?: HTMLElement | undefined; }) => IInput & { container?: HTMLElement | undefined; }; ... 4 more ...; takeScreenshot: (...args: any[]) => (state: IInput & { ...; }) => IInput & { ...; }; }'","category":3,"code":6500}]}]],[1223,[{"start":487,"length":13,"code":2345,"category":1,"messageText":{"messageText":"Argument of type 'import(\"/Users/adam/Code/testeranto/src/CoreTypes\").ITestSpecification<import(\"/Users/adam/Code/testeranto/src/components/pure/FeaturesReporterView.test/types\").I, import(\"/Users/adam/Code/testeranto/src/components/pure/FeaturesReporterView.test/types\").O>' is not assignable to parameter of type 'import(\"/Users/adam/Code/testeranto/src/CoreTypes\").ITestSpecification<import(\"/Users/adam/Code/testeranto/node_modules/testeranto-react/src/react-dom/component/dynamic\").I, import(\"/Users/adam/Code/testeranto/src/components/pure/FeaturesReporterView.test/types\").O>'.","category":1,"code":2345,"next":[{"messageText":"Types of parameters 'Suite' and 'Suite' are incompatible.","category":1,"code":2328,"next":[{"messageText":"Type 'import(\"/Users/adam/Code/testeranto/src/Types\").SuiteSpecification<import(\"/Users/adam/Code/testeranto/node_modules/testeranto-react/src/react-dom/component/dynamic\").I, import(\"/Users/adam/Code/testeranto/src/components/pure/FeaturesReporterView.test/types\").O>' is not assignable to type 'import(\"/Users/adam/Code/testeranto/src/Types\").SuiteSpecification<import(\"/Users/adam/Code/testeranto/src/components/pure/FeaturesReporterView.test/types\").I, import(\"/Users/adam/Code/testeranto/src/components/pure/FeaturesReporterView.test/types\").O>'.","category":1,"code":2322,"next":[{"messageText":"Types of property 'Default' are incompatible.","category":1,"code":2326,"next":[{"messageText":"Type '(name: string, givens: import(\"/Users/adam/Code/testeranto/src/lib/abstractBase\").IGivens<import(\"/Users/adam/Code/testeranto/node_modules/testeranto-react/src/react-dom/component/dynamic\").I>) => import(\"/Users/adam/Code/testeranto/src/lib/BaseSuite\").BaseSuite<...>' is not assignable to type '(name: string, givens: import(\"/Users/adam/Code/testeranto/src/lib/abstractBase\").IGivens<import(\"/Users/adam/Code/testeranto/src/components/pure/FeaturesReporterView.test/types\").I>) => import(\"/Users/adam/Code/testeranto/src/lib/BaseSuite\").BaseSuite<...>'.","category":1,"code":2322,"next":[{"messageText":"Types of parameters 'givens' and 'givens' are incompatible.","category":1,"code":2328,"next":[{"messageText":"Type 'import(\"/Users/adam/Code/testeranto/src/lib/abstractBase\").IGivens<import(\"/Users/adam/Code/testeranto/src/components/pure/FeaturesReporterView.test/types\").I>' is not assignable to type 'import(\"/Users/adam/Code/testeranto/src/lib/abstractBase\").IGivens<import(\"/Users/adam/Code/testeranto/node_modules/testeranto-react/src/react-dom/component/dynamic\").I>'.","category":1,"code":2322,"next":[{"messageText":"Type 'import(\"/Users/adam/Code/testeranto/src/components/pure/FeaturesReporterView.test/types\").I' is not assignable to type 'import(\"/Users/adam/Code/testeranto/node_modules/testeranto-react/src/react-dom/component/dynamic\").I'.","category":1,"code":2322,"next":[{"messageText":"Types of property 'iinput' are incompatible.","category":1,"code":2326,"next":[{"messageText":"Property 'prototype' is missing in type 'IInput' but required in type 'typeof Component'.","category":1,"code":2741,"canonicalHead":{"code":2322,"messageText":"Type 'import(\"/Users/adam/Code/testeranto/src/components/pure/FeaturesReporterView.test/types\").I' is not assignable to type 'import(\"/Users/adam/Code/testeranto/node_modules/testeranto-react/src/react-dom/component/dynamic\").I'."}}]}]}]}]}],"canonicalHead":{"code":2322,"messageText":"Type 'import(\"/Users/adam/Code/testeranto/src/Types\").SuiteSpecification<import(\"/Users/adam/Code/testeranto/node_modules/testeranto-react/src/react-dom/component/dynamic\").I, import(\"/Users/adam/Code/testeranto/src/components/pure/FeaturesReporterView.test/types\").O>' is not assignable to type 'import(\"/Users/adam/Code/testeranto/src/Types\").SuiteSpecification<import(\"/Users/adam/Code/testeranto/src/components/pure/FeaturesReporterView.test/types\").I, import(\"/Users/adam/Code/testeranto/src/components/pure/FeaturesReporterView.test/types\").O>'."}}]}]}]}]}}]],[1224,[{"start":570,"length":11,"code":2339,"category":1,"messageText":"Property 'htmlElement' does not exist on type 'IModalContentProps & { container?: HTMLElement | undefined; }'."},{"start":799,"length":11,"code":2339,"category":1,"messageText":"Property 'htmlElement' does not exist on type 'IModalContentProps & { container?: HTMLElement | undefined; }'."},{"start":974,"length":14,"code":2322,"category":1,"messageText":{"messageText":"Type '(name: string) => (state: any, pm: IPM) => Promise<any>' is not assignable to type '(...args: any[]) => (state: IModalContentProps & { container?: HTMLElement | undefined; }) => IModalContentProps & { container?: HTMLElement | undefined; }'.","category":1,"code":2322,"next":[{"messageText":"Type '(state: any, pm: IPM) => Promise<any>' is not assignable to type '(state: IModalContentProps & { container?: HTMLElement | undefined; }) => IModalContentProps & { container?: HTMLElement | undefined; }'.","category":1,"code":2322,"next":[{"messageText":"Target signature provides too few arguments. Expected 2 or more, but got 1.","category":1,"code":2849}],"canonicalHead":{"code":2322,"messageText":"Type '(name: string) => (state: any, pm: IPM) => Promise<any>' is not assignable to type '(...args: any[]) => (state: IModalContentProps & { container?: HTMLElement | undefined; }) => IModalContentProps & { container?: HTMLElement | undefined; }'."}}]},"relatedInformation":[{"file":"../../src/components/pure/modalcontent.test/types.ts","start":1005,"length":14,"messageText":"The expected type comes from property 'takeScreenshot' which is declared here on type '{ hasModalHeader: (...args: any[]) => (state: IModalContentProps & { container?: HTMLElement | undefined; }) => IModalContentProps & { ...; }; hasThemeCards: (...args: any[]) => (state: IModalContentProps & { ...; }) => IModalContentProps & { ...; }; takeScreenshot: (...args: any[]) => (state: IModalContentProps & {...'","category":3,"code":6500}]}]],[1225,[{"start":331,"length":14,"messageText":"Module '\"../../../CoreTypes\"' has no exported member 'ITestInterface'.","category":1,"code":2305},{"start":1015,"length":12,"code":2345,"category":1,"messageText":{"messageText":"Argument of type 'CElement<any, Component<any, any, any>>' is not assignable to parameter of type 'ReactNode'.","category":1,"code":2345,"next":[{"messageText":"Property 'children' is missing in type 'ComponentElement<any, Component<any, any, any>>' but required in type 'ReactPortal'.","category":1,"code":2741,"canonicalHead":{"code":2322,"messageText":"Type 'ComponentElement<any, Component<any, any, any>>' is not assignable to type 'ReactPortal'."}}]},"relatedInformation":[{"file":"../../node_modules/@types/react-dom/node_modules/@types/react/index.d.ts","start":12792,"length":8,"messageText":"'children' is declared here.","category":3,"code":2728}]},{"start":1977,"length":7,"messageText":"Expected 2 type arguments, but got 3.","category":1,"code":2558}]],[1226,[{"start":247,"length":6,"code":2741,"category":1,"messageText":"Property 'Navigation' is missing in type '{ Default: () => { summary: { \"test-suite-1\": { testsExist: boolean; runTimeErrors: number; typeErrors: number; staticErrors: number; }; \"test-suite-2\": { testsExist: boolean; runTimeErrors: number; typeErrors: number; staticErrors: number; }; }; ... 14 more ...; domRoot: any; }; WithError: () => { ...; }; }' but required in type '{ Default: (...args: any[]) => IProjectPageViewProps; WithError: (...args: any[]) => IProjectPageViewProps; Navigation: (...args: any[]) => IProjectPageViewProps; }'.","relatedInformation":[{"file":"../../src/components/pure/projectpageview.test/types.ts","start":1726,"length":10,"messageText":"'Navigation' is declared here.","category":3,"code":2728},{"file":"../../src/components/pure/projectpageview.test/types.ts","start":1982,"length":6,"messageText":"The expected type comes from property 'givens' which is declared here on type 'ITestImplementation<I, O, M>'","category":3,"code":6500}],"canonicalHead":{"code":2322,"messageText":"Type '{ Default: () => { summary: { \"test-suite-1\": { testsExist: boolean; runTimeErrors: number; typeErrors: number; staticErrors: number; }; \"test-suite-2\": { testsExist: boolean; runTimeErrors: number; typeErrors: number; staticErrors: number; }; }; ... 14 more ...; domRoot: any; }; WithError: () => { ...; }; }' is not assignable to type '{ Default: (...args: any[]) => IProjectPageViewProps; WithError: (...args: any[]) => IProjectPageViewProps; Navigation: (...args: any[]) => IProjectPageViewProps; }'."}},{"start":3638,"length":11,"code":2339,"category":1,"messageText":"Property 'htmlElement' does not exist on type 'IProjectPageViewProps & { container?: HTMLElement | undefined; }'."},{"start":3917,"length":11,"code":2339,"category":1,"messageText":"Property 'htmlElement' does not exist on type 'IProjectPageViewProps & { container?: HTMLElement | undefined; }'."},{"start":4188,"length":11,"code":2339,"category":1,"messageText":"Property 'htmlElement' does not exist on type 'IProjectPageViewProps & { container?: HTMLElement | undefined; }'."},{"start":4492,"length":11,"code":2339,"category":1,"messageText":"Property 'htmlElement' does not exist on type 'IProjectPageViewProps & { container?: HTMLElement | undefined; }'."},{"start":4761,"length":11,"code":2339,"category":1,"messageText":"Property 'htmlElement' does not exist on type 'IProjectPageViewProps & { container?: HTMLElement | undefined; }'."},{"start":4955,"length":2,"messageText":"'el' is of type 'unknown'.","category":1,"code":18046},{"start":5183,"length":11,"code":2339,"category":1,"messageText":"Property 'htmlElement' does not exist on type 'IProjectPageViewProps & { container?: HTMLElement | undefined; }'."},{"start":5377,"length":2,"messageText":"'el' is of type 'unknown'.","category":1,"code":18046},{"start":5598,"length":11,"code":2339,"category":1,"messageText":"Property 'htmlElement' does not exist on type 'IProjectPageViewProps & { container?: HTMLElement | undefined; }'."},{"start":5934,"length":14,"code":2322,"category":1,"messageText":{"messageText":"Type '(name: string) => (state: any, pm: any) => Promise<any>' is not assignable to type '(...args: any[]) => (state: IProjectPageViewProps & { container?: HTMLElement | undefined; }) => IProjectPageViewProps & { ...; }'.","category":1,"code":2322,"next":[{"messageText":"Type '(state: any, pm: any) => Promise<any>' is not assignable to type '(state: IProjectPageViewProps & { container?: HTMLElement | undefined; }) => IProjectPageViewProps & { container?: HTMLElement | undefined; }'.","category":1,"code":2322,"next":[{"messageText":"Target signature provides too few arguments. Expected 2 or more, but got 1.","category":1,"code":2849}],"canonicalHead":{"code":2322,"messageText":"Type '(name: string) => (state: any, pm: any) => Promise<any>' is not assignable to type '(...args: any[]) => (state: IProjectPageViewProps & { container?: HTMLElement | undefined; }) => IProjectPageViewProps & { ...; }'."}}]},"relatedInformation":[{"file":"../../src/components/pure/projectpageview.test/types.ts","start":1928,"length":14,"messageText":"The expected type comes from property 'takeScreenshot' which is declared here on type '{ hasContainerFluid: (...args: any[]) => (state: IProjectPageViewProps & { container?: HTMLElement | undefined; }) => IProjectPageViewProps & { ...; }; ... 6 more ...; takeScreenshot: (...args: any[]) => (state: IProjectPageViewProps & { ...; }) => IProjectPageViewProps & { ...; }; }'","category":3,"code":6500}]}]],[1227,[{"start":484,"length":13,"code":2345,"category":1,"messageText":{"messageText":"Argument of type 'import(\"/Users/adam/Code/testeranto/src/CoreTypes\").ITestSpecification<import(\"/Users/adam/Code/testeranto/src/components/pure/ProjectPageView.test/types\").I, import(\"/Users/adam/Code/testeranto/src/components/pure/ProjectPageView.test/types\").O>' is not assignable to parameter of type 'import(\"/Users/adam/Code/testeranto/src/CoreTypes\").ITestSpecification<import(\"/Users/adam/Code/testeranto/node_modules/testeranto-react/src/react-dom/component/dynamic\").I, import(\"/Users/adam/Code/testeranto/src/components/pure/ProjectPageView.test/types\").O>'.","category":1,"code":2345,"next":[{"messageText":"Types of parameters 'Suite' and 'Suite' are incompatible.","category":1,"code":2328,"next":[{"messageText":"Type 'import(\"/Users/adam/Code/testeranto/src/Types\").SuiteSpecification<import(\"/Users/adam/Code/testeranto/node_modules/testeranto-react/src/react-dom/component/dynamic\").I, import(\"/Users/adam/Code/testeranto/src/components/pure/ProjectPageView.test/types\").O>' is not assignable to type 'import(\"/Users/adam/Code/testeranto/src/Types\").SuiteSpecification<import(\"/Users/adam/Code/testeranto/src/components/pure/ProjectPageView.test/types\").I, import(\"/Users/adam/Code/testeranto/src/components/pure/ProjectPageView.test/types\").O>'.","category":1,"code":2322,"next":[{"messageText":"Types of property 'Default' are incompatible.","category":1,"code":2326,"next":[{"messageText":"Type '(name: string, givens: import(\"/Users/adam/Code/testeranto/src/lib/abstractBase\").IGivens<import(\"/Users/adam/Code/testeranto/node_modules/testeranto-react/src/react-dom/component/dynamic\").I>) => import(\"/Users/adam/Code/testeranto/src/lib/BaseSuite\").BaseSuite<...>' is not assignable to type '(name: string, givens: import(\"/Users/adam/Code/testeranto/src/lib/abstractBase\").IGivens<import(\"/Users/adam/Code/testeranto/src/components/pure/ProjectPageView.test/types\").I>) => import(\"/Users/adam/Code/testeranto/src/lib/BaseSuite\").BaseSuite<...>'.","category":1,"code":2322,"next":[{"messageText":"Types of parameters 'givens' and 'givens' are incompatible.","category":1,"code":2328,"next":[{"messageText":"Type 'import(\"/Users/adam/Code/testeranto/src/lib/abstractBase\").IGivens<import(\"/Users/adam/Code/testeranto/src/components/pure/ProjectPageView.test/types\").I>' is not assignable to type 'import(\"/Users/adam/Code/testeranto/src/lib/abstractBase\").IGivens<import(\"/Users/adam/Code/testeranto/node_modules/testeranto-react/src/react-dom/component/dynamic\").I>'.","category":1,"code":2322,"next":[{"messageText":"Type 'import(\"/Users/adam/Code/testeranto/src/components/pure/ProjectPageView.test/types\").I' is not assignable to type 'import(\"/Users/adam/Code/testeranto/node_modules/testeranto-react/src/react-dom/component/dynamic\").I'.","category":1,"code":2322,"next":[{"messageText":"Types of property 'iinput' are incompatible.","category":1,"code":2326,"next":[{"messageText":"Property 'prototype' is missing in type 'IProjectPageViewProps' but required in type 'typeof Component'.","category":1,"code":2741,"canonicalHead":{"code":2322,"messageText":"Type 'import(\"/Users/adam/Code/testeranto/src/components/pure/ProjectPageView.test/types\").I' is not assignable to type 'import(\"/Users/adam/Code/testeranto/node_modules/testeranto-react/src/react-dom/component/dynamic\").I'."}}]}]}]}]}],"canonicalHead":{"code":2322,"messageText":"Type 'import(\"/Users/adam/Code/testeranto/src/Types\").SuiteSpecification<import(\"/Users/adam/Code/testeranto/node_modules/testeranto-react/src/react-dom/component/dynamic\").I, import(\"/Users/adam/Code/testeranto/src/components/pure/ProjectPageView.test/types\").O>' is not assignable to type 'import(\"/Users/adam/Code/testeranto/src/Types\").SuiteSpecification<import(\"/Users/adam/Code/testeranto/src/components/pure/ProjectPageView.test/types\").I, import(\"/Users/adam/Code/testeranto/src/components/pure/ProjectPageView.test/types\").O>'."}}]}]}]}]}}]],[1229,[{"start":83,"length":16,"messageText":"Cannot find module '../../../Types' or its corresponding type declarations.","category":1,"code":2307}]],[1230,[{"start":23,"length":17,"messageText":"Cannot find module '../../../Web.js' or its corresponding type declarations.","category":1,"code":2307},{"start":102,"length":16,"messageText":"Cannot find module '../../../Types' or its corresponding type declarations.","category":1,"code":2307}]],[1232,[{"start":649,"length":2,"messageText":"'React' refers to a UMD global, but the current file is a module. Consider adding an import instead.","category":1,"code":2686},{"start":711,"length":2,"messageText":"'React' refers to a UMD global, but the current file is a module. Consider adding an import instead.","category":1,"code":2686},{"start":775,"length":4,"messageText":"'React' refers to a UMD global, but the current file is a module. Consider adding an import instead.","category":1,"code":2686},{"start":851,"length":2,"messageText":"'React' refers to a UMD global, but the current file is a module. Consider adding an import instead.","category":1,"code":2686},{"start":867,"length":4,"messageText":"'React' refers to a UMD global, but the current file is a module. Consider adding an import instead.","category":1,"code":2686}]]],"version":"5.9.2"}
|