@progressive-development/pd-spa-helper 0.2.5 → 0.2.7
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- package/dist/src/PdSpaHelper.d.ts +1 -15
- package/dist/src/PdSpaHelper.js +48 -45
- package/dist/src/PdSpaHelper.js.map +1 -1
- package/dist/src/model/spa-model.d.ts +1 -0
- package/dist/src/model/spa-model.js.map +1 -1
- package/dist/src/store/spa-app-selector.js +15 -1
- package/dist/src/store/spa-app-selector.js.map +1 -1
- package/dist/tsconfig.tsbuildinfo +1 -1
- package/package.json +1 -1
- package/src/PdSpaHelper.ts +50 -48
- package/src/model/spa-model.ts +1 -0
- package/src/store/spa-app-selector.ts +19 -1
|
@@ -2,8 +2,7 @@ import { LitElement, CSSResultGroup, TemplateResult } from 'lit';
|
|
|
2
2
|
import { Subscription } from 'rxjs';
|
|
3
3
|
import '@progressive-development/pd-page/pd-menu.js';
|
|
4
4
|
import '@progressive-development/pd-page/pd-footer.js';
|
|
5
|
-
import {
|
|
6
|
-
import { AppConfiguration, Footer, FunctionResult, NavigationPage } from './service-provider/service-provider-model.js';
|
|
5
|
+
import { AppConfiguration, Footer, NavigationPage } from './service-provider/service-provider-model.js';
|
|
7
6
|
import { LoadingState } from './model/spa-model.js';
|
|
8
7
|
import './router/AppMain.js';
|
|
9
8
|
import './defaultpage/default-login.js';
|
|
@@ -25,7 +24,6 @@ declare const PdSpaHelper_base: import("lit-element-router").Constructor<import(
|
|
|
25
24
|
* Abstract class for SPAs. Extend within the app main class.
|
|
26
25
|
*/
|
|
27
26
|
export declare abstract class PdSpaHelper extends PdSpaHelper_base {
|
|
28
|
-
protected functionsController: ServiceCallController;
|
|
29
27
|
protected abstract _appConfiguration: any;
|
|
30
28
|
title: string;
|
|
31
29
|
/**
|
|
@@ -77,18 +75,6 @@ export declare abstract class PdSpaHelper extends PdSpaHelper_base {
|
|
|
77
75
|
_renderTopMenu(pageConfig: NavigationPage, hideTeaser: boolean): "" | TemplateResult<1>;
|
|
78
76
|
_renderTeaser(): TemplateResult | string;
|
|
79
77
|
_renderFooter(): TemplateResult<1>;
|
|
80
|
-
/**
|
|
81
|
-
* Called when (any) cloud function call was finished.
|
|
82
|
-
*/
|
|
83
|
-
_renderSuccessResultInfo(result: FunctionResult): TemplateResult<1>;
|
|
84
|
-
/**
|
|
85
|
-
* Called when (any) cloud function is currently running.
|
|
86
|
-
*/
|
|
87
|
-
_renderPendingInfo(): TemplateResult<1>;
|
|
88
|
-
/**
|
|
89
|
-
* Called when (any) cloud function stopped with errors.
|
|
90
|
-
*/
|
|
91
|
-
_renderErrorInfo(error: any): TemplateResult<1>;
|
|
92
78
|
protected abstract _getTeaserContent(): Array<TemplateResult>;
|
|
93
79
|
protected abstract _getFooter(): Footer;
|
|
94
80
|
protected abstract _getAppLogo(): TemplateResult;
|
package/dist/src/PdSpaHelper.js
CHANGED
|
@@ -4,7 +4,6 @@ import { router, navigator } from 'lit-element-router';
|
|
|
4
4
|
import { property } from 'lit/decorators.js';
|
|
5
5
|
import '@progressive-development/pd-page/pd-menu.js';
|
|
6
6
|
import '@progressive-development/pd-page/pd-footer.js';
|
|
7
|
-
import { ServiceCallController } from './service-call-controller2.js';
|
|
8
7
|
import { initializeStore, pdStore } from './store/mini-rx.store.js';
|
|
9
8
|
import { authStateChangedImpl, initAppImpl, isAuthenticatedImpl, setServiceProvider } from './service-provider/service-provider-impl.js';
|
|
10
9
|
import { getLoadingSelector } from './store/spa-app-selector.js';
|
|
@@ -106,7 +105,6 @@ const TOP_MENU_HEIGHT = 50;
|
|
|
106
105
|
export class PdSpaHelper extends router(navigator(LitElement)) {
|
|
107
106
|
constructor() {
|
|
108
107
|
super();
|
|
109
|
-
this.functionsController = new ServiceCallController(this);
|
|
110
108
|
// not used at the moment
|
|
111
109
|
this.title = 'Hey there';
|
|
112
110
|
this._loadingState = [];
|
|
@@ -233,14 +231,7 @@ export class PdSpaHelper extends router(navigator(LitElement)) {
|
|
|
233
231
|
${navigationConfig.includeLogin ? html `
|
|
234
232
|
<default-login ?active="${this.route === "login"}" route="login"></default-login>` : ''}
|
|
235
233
|
</app-main>
|
|
236
|
-
</main>
|
|
237
|
-
|
|
238
|
-
${this.functionsController.render({
|
|
239
|
-
complete: (result) => this._renderSuccessResultInfo(result),
|
|
240
|
-
initial: () => '',
|
|
241
|
-
pending: () => this._renderPendingInfo(),
|
|
242
|
-
error: (e) => this._renderErrorInfo(e),
|
|
243
|
-
})}
|
|
234
|
+
</main>
|
|
244
235
|
|
|
245
236
|
${(pageConf === null || pageConf === void 0 ? void 0 : pageConf.withFooter) ? html `
|
|
246
237
|
<footer class="default-footer">
|
|
@@ -322,39 +313,6 @@ export class PdSpaHelper extends router(navigator(LitElement)) {
|
|
|
322
313
|
</pd-footer>
|
|
323
314
|
`;
|
|
324
315
|
}
|
|
325
|
-
/**
|
|
326
|
-
* Called when (any) cloud function call was finished.
|
|
327
|
-
*/
|
|
328
|
-
// eslint-disable-next-line class-methods-use-this, @typescript-eslint/no-unused-vars
|
|
329
|
-
_renderSuccessResultInfo(result) {
|
|
330
|
-
var _a;
|
|
331
|
-
return html `
|
|
332
|
-
<pd-toast isSuccess duration="${TOAST_DURATION}">
|
|
333
|
-
${(_a = this.functionsController.callDataPromise) === null || _a === void 0 ? void 0 : _a.func.successTxt}
|
|
334
|
-
</pd-toast>`;
|
|
335
|
-
}
|
|
336
|
-
/**
|
|
337
|
-
* Called when (any) cloud function is currently running.
|
|
338
|
-
*/
|
|
339
|
-
_renderPendingInfo() {
|
|
340
|
-
var _a, _b, _c;
|
|
341
|
-
return ((_a = this.functionsController.callDataPromise) === null || _a === void 0 ? void 0 : _a.func.fadeWindow) ? html `
|
|
342
|
-
<p>Überblende und lade ${(_b = this.functionsController.callDataPromise) === null || _b === void 0 ? void 0 : _b.func.name}...</p>`
|
|
343
|
-
: html `
|
|
344
|
-
<pd-toast duration="-1">
|
|
345
|
-
${(_c = this.functionsController.callDataPromise) === null || _c === void 0 ? void 0 : _c.func.pendingTxt}
|
|
346
|
-
</pd-toast>`;
|
|
347
|
-
}
|
|
348
|
-
/**
|
|
349
|
-
* Called when (any) cloud function stopped with errors.
|
|
350
|
-
*/
|
|
351
|
-
// eslint-disable-next-line class-methods-use-this
|
|
352
|
-
_renderErrorInfo(error) {
|
|
353
|
-
return html `
|
|
354
|
-
<pd-toast isError duration="-1">
|
|
355
|
-
${error}
|
|
356
|
-
</pd-toast>`;
|
|
357
|
-
}
|
|
358
316
|
_localeChange(e) {
|
|
359
317
|
this._setLocale(e.detail);
|
|
360
318
|
this._selectedLocale = e.detail;
|
|
@@ -394,9 +352,9 @@ export class PdSpaHelper extends router(navigator(LitElement)) {
|
|
|
394
352
|
}
|
|
395
353
|
}
|
|
396
354
|
_createTemporaryToast(e) {
|
|
397
|
-
var _a;
|
|
398
355
|
// hide existing call function toast (old one still is visible for directly incoming errors)
|
|
399
|
-
this.functionsController.clear();
|
|
356
|
+
// this.functionsController.clear();
|
|
357
|
+
var _a;
|
|
400
358
|
const tmpToast = new PdToast();
|
|
401
359
|
tmpToast.isError = e.detail.isError;
|
|
402
360
|
tmpToast.isSuccess = e.detail.isSuccess;
|
|
@@ -536,4 +494,49 @@ __decorate([
|
|
|
536
494
|
__decorate([
|
|
537
495
|
property({ type: String, state: true })
|
|
538
496
|
], PdSpaHelper.prototype, "_selectedLocale", void 0);
|
|
497
|
+
// Refactor: deactivate functions controller unwanted with new loader
|
|
498
|
+
/*
|
|
499
|
+
protected functionsController = new ServiceCallController(this);
|
|
500
|
+
|
|
501
|
+
// from render
|
|
502
|
+
${this.functionsController.render({
|
|
503
|
+
complete: (result: FunctionResult) => this._renderSuccessResultInfo(result),
|
|
504
|
+
initial: () => '',
|
|
505
|
+
pending: () => this._renderPendingInfo(),
|
|
506
|
+
error: (e: any) => this._renderErrorInfo(e),
|
|
507
|
+
})}
|
|
508
|
+
/**
|
|
509
|
+
* Called when (any) cloud function call was finished.
|
|
510
|
+
|
|
511
|
+
// eslint-disable-next-line class-methods-use-this, @typescript-eslint/no-unused-vars
|
|
512
|
+
_renderSuccessResultInfo(result: FunctionResult) {
|
|
513
|
+
return html`
|
|
514
|
+
<pd-toast isSuccess duration="${TOAST_DURATION}">
|
|
515
|
+
${this.functionsController.callDataPromise?.func.successTxt}
|
|
516
|
+
</pd-toast>`;
|
|
517
|
+
}
|
|
518
|
+
|
|
519
|
+
/**
|
|
520
|
+
* Called when (any) cloud function is currently running.
|
|
521
|
+
|
|
522
|
+
_renderPendingInfo() {
|
|
523
|
+
return this.functionsController.callDataPromise?.func.fadeWindow ? html`
|
|
524
|
+
<p>Überblende und lade ${this.functionsController.callDataPromise?.func.name}...</p>`
|
|
525
|
+
: html`
|
|
526
|
+
<pd-toast duration="-1">
|
|
527
|
+
${this.functionsController.callDataPromise?.func.pendingTxt}
|
|
528
|
+
</pd-toast>`;
|
|
529
|
+
}
|
|
530
|
+
|
|
531
|
+
/**
|
|
532
|
+
* Called when (any) cloud function stopped with errors.
|
|
533
|
+
|
|
534
|
+
// eslint-disable-next-line class-methods-use-this
|
|
535
|
+
_renderErrorInfo(error:any) {
|
|
536
|
+
return html`
|
|
537
|
+
<pd-toast isError duration="-1">
|
|
538
|
+
${error}
|
|
539
|
+
</pd-toast>`;
|
|
540
|
+
}
|
|
541
|
+
*/
|
|
539
542
|
//# sourceMappingURL=PdSpaHelper.js.map
|
|
@@ -1 +1 @@
|
|
|
1
|
-
{"version":3,"file":"PdSpaHelper.js","sourceRoot":"","sources":["../../src/PdSpaHelper.ts"],"names":[],"mappings":"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","sourcesContent":["import { html, LitElement, css, CSSResultGroup, TemplateResult, unsafeCSS } from 'lit';\nimport { router, navigator } from 'lit-element-router';\nimport { property } from 'lit/decorators.js';\n\nimport { Subscription } from 'rxjs';\n\nimport { FirebaseApp } from 'firebase/app';\n\nimport '@progressive-development/pd-page/pd-menu.js';\nimport '@progressive-development/pd-page/pd-footer.js';\n\nimport { ServiceCallController } from './service-call-controller2.js';\nimport { initializeStore, pdStore } from './store/mini-rx.store.js';\n\nimport { authStateChangedImpl, initAppImpl, isAuthenticatedImpl, setServiceProvider } from './service-provider/service-provider-impl.js';\nimport { AppConfiguration, Footer, FunctionResult, MenuElement, NavigationConfig, NavigationPage } from './service-provider/service-provider-model.js';\n\nimport { getLoadingSelector } from './store/spa-app-selector.js';\nimport { setRouteElement } from './store/spa-app-effects.js';\nimport { APP_CONF_EVENT, LoadingState } from './model/spa-model.js';\nimport { loginSucess } from './store/spa-app-actions.js';\n\nimport './router/AppMain.js';\nimport './defaultpage/default-login.js';\nimport './tmpown/pd-panel-viewer.js';\nimport './tmpown/pd-panel.js';\n// eslint-disable-next-line import/no-duplicates\nimport './tmpown/pd-toast.js';\nimport './tmpown/pd-loading-state.js';\n\n// TODO: How to solve this import problem?\n// eslint-disable-next-line import/no-duplicates\nimport { PdToast } from './tmpown/pd-toast.js';\n\n\n// Footer Text\nconst MADE_BY = {\n txt: \"made by PD Progressive Development\",\n email: \"info@progressive-development.com\"};\n\n// Visible time for time-limited toast\nconst TOAST_DURATION = 6000;\n\n\n/**\n * Transformed routes, generated during startInit.\n */\nlet app:FirebaseApp | undefined;\nlet transformedRoutes:Array<any>;\nlet navigationConfig:NavigationConfig;\n\n/**\n * Internal helper functions to generate route elemets for lit-router. \n */\nconst transformRoutes = () => {\n\n const transformAuthConfig = (withAuth:boolean) => \n withAuth ? \n {\n unauthenticated: {\n name: 'login',\n },\n authenticate: () => new Promise((resolve, reject) => {\n resolve(isAuthenticatedImpl());\n }),\n } : undefined;\n\n let generatedRoutes:Array<any> = [];\n navigationConfig.pages.forEach(cfEntry => {\n const addAraay = cfEntry.pattern.map(routeMapPattern => (\n {\n name: cfEntry.name,\n pattern: routeMapPattern,\n authentication: transformAuthConfig(cfEntry.auth),\n }\n )); \n generatedRoutes = generatedRoutes.concat(addAraay);\n });\n \n // add not-found route\n generatedRoutes.push({\n name: 'not-found',\n pattern: '*',\n });\n\n return generatedRoutes;\n}\n\n\n/**\n * Init the firebase app and application services like\n * functions and firestore. Generate routes from navigationConfig.\n * \n * @param navigationConfig\n * @param firebaseConfig\n * @param functionsConfig\n */\nexport const startInit = (config: AppConfiguration) => {\n\n console.log(\"Start init for config: \", config);\n\n // set service provider\n setServiceProvider(config.serviceProvider);\n \n // init mini-rx store\n if (config.storeConfigParam) {\n initializeStore(config.storeConfigParam);\n }\n\n // init app\n initAppImpl(config);\n\n // add login route if set in config\n if (config.navigationConfigParam.includeLogin) {\n config.navigationConfigParam.pages.push({\n name: \"login\",\n menu: [\n {key: \"login\", name: \"Login\"}\n ],\n pattern: [\"login\"],\n auth: false\n });\n }\n\n // generate routes from navigation config\n navigationConfig = config.navigationConfigParam;\n transformedRoutes = transformRoutes(); \n\n // init ready, trigger by even (if getAuth is called before, error is thrown) \n document.dispatchEvent(new CustomEvent(\"init-app-event\"));\n console.log(\"Init done, Event created\");\n\n};\n\nconst TOP_MENU_HEIGHT = 50;\n\n/**\n * Abstract class for SPAs. Extend within the app main class.\n */\nexport abstract class PdSpaHelper extends router(navigator(LitElement)) {\n\n protected functionsController = new ServiceCallController(this);\n\n protected abstract _appConfiguration: any;\n\n // not used at the moment\n @property({ type: String }) \n title = 'Hey there';\n\n /**\n * Properties needed for login/profile data.\n */\n @property({ type: Object, state: true }) \n _user: unknown | undefined;\n\n @property({ type: Object, state: true }) \n _profile: any | undefined;\n\n @property({ type: Object, state: true }) \n _loadingState: LoadingState[] = [];\n \n /**\n * Properties needed for the router.\n */\n @property({ type: String, reflect: true }) \n route = \"\";\n\n @property({ type: Object }) \n params = {};\n\n @property({ type: Object }) \n query = {};\n\n /**\n * Indicates if the teaser should closed (depends on scroll position).\n */\n @property({ type: Boolean })\n _teaserClosed = false; \n\n\n @property({ type: String, state: true })\n abstract _selectedLocale: string;\n\n abstract _availableLocales: string[];\n\n protected _singleLocaleMenu: boolean = false;\n\n // subscription for loading-state selector\n _subscription?: Subscription; \n\n static styles = \n // Ref: Additional use classmap to add custom classes in concrete impl\n css`\n\n :host {\n display: flex;\n flex-flow: column;\n height: 100%;\n }\n\n header {\n flex-grow: 0;\n }\n\n main {\n flex-grow: 1;\n flex-basis: max-content;\n }\n\n footer {\n flex-grow: 0;\n }\n\n .default-header {\n width: 100%;\n position: fixed;\n top: 0;\n display: block;\n z-index: 99;\n }\n\n .default-teaser {\n --pd-panel-overflow: hidden;\n --pd-panel-height: var(--pd-teaser-height, 380px);\n --pd-panel-width: 100%; \n --pd-panel-border-radius: 0;\n --pd-panel-bg: var(--pd-default-col);\n --pd-panel-viewer-bg-col: var(--pd-default-col);\n }\n\n .default-menu { \n transition: background-color 2s;\n }\n\n .default-menu-withteaser { \n --pd-menu-bg-col: var(--pd-spa-menu-change-col, #AFC1D2);\n --pd-menu-font-col: var(--pd-spa-menu-change-font-col, #0A3A48);\n transition: background-color 2s;\n }\n\n .default-top-menu, .default-top-menu-withteaser { \n --pd-menu-height: ${unsafeCSS(TOP_MENU_HEIGHT)}px;\n --pd-menu-font-size: 0.8em; \n --pd-menu-shadow: 0;\n }\n\n .default-top-menu-withteaser { \n --pd-menu-bg-col: var(--pd-teaser-bg-col);\n }\n\n /* needed for pd-spa-padding-top, only for pages with teaser, check if refactor possible... */\n .default-main-padding {\n padding-top: calc(var(--pd-menu-height) + var(--pd-spa-padding-top, 120px)) ;\n transition: padding-top 2s;\n }\n\n .default-main {\n padding-top: calc(var(--pd-menu-height));\n transition: padding-top 2s;\n } \n\n .default-main-withteaser {\n padding-top: calc(var(--pd-menu-height) + var(--pd-teaser-height, 380px));\n transition: padding-top 2s;\n }\n\n ` as CSSResultGroup; \n\n constructor() {\n\n super(); \n\n setRouteElement(this);\n\n const doSomething = (scrollPos:number) => {\n if (scrollPos <= 50) {\n this._teaserClosed = false;\n } else {\n this._teaserClosed = true;\n }\n };\n\n let ticking = false;\n document.addEventListener('scroll', () => {\n const lastKnownScrollPosition = window.scrollY;\n if (!ticking) {\n window.requestAnimationFrame(() => {\n doSomething(lastKnownScrollPosition);\n ticking = false;\n });\n ticking = true;\n }\n });\n\n // add login handler after init => else error is thrown\n // document.addEventListener(\"init-app-event\", this.activateLoginHandler.bind(this));\n document.addEventListener(\"init-app-event\", () => {\n console.log(\"Init event catched\");\n });\n if (navigationConfig.includeLogin) {\n this.activateLoginHandler();\n }\n\n // For common toast messages (not for callfunction toasts => handelt by own controller)\n this.addEventListener(\"toast-event\", this._createTemporaryToast);\n this.addEventListener(\"route-event\", this._handleMenuRouteEvent);\n }\n\n connectedCallback(): void {\n super.connectedCallback();\n this.addEventListener(APP_CONF_EVENT, this._setConfInDetail);\n this._subscription = pdStore().select(getLoadingSelector)\n .subscribe((loadingState) => {\n console.log(\"Loading State: \", loadingState);\n this._loadingState = loadingState;\n });\n }\n\n disconnectedCallback(): void {\n this.removeEventListener(APP_CONF_EVENT, this._setConfInDetail);\n this._subscription?.unsubscribe();\n super.disconnectedCallback();\n }\n\n _setConfInDetail(event: Event) {\n const {detail} = event as CustomEvent;\n if (detail) {\n detail.appConf = {\n ...this._appConfiguration\n };\n } \n }\n\n /**\n * Non reactive private property for the index db class.\n */\n // private _indexDBClient?: YoIndexDBClient|null; \n\n /**\n * Needed for the router.\n * Return all configured routes.\n */\n static get routes() {\n return transformedRoutes; \n }\n\n /**\n * Needed for the router.\n * Set route params to internal members.\n */\n router(route:string, params:Object, query:Object) {\n this.route = route;\n this.params = params;\n this.query = query;\n } \n\n\n /**\n * Call to activate onAuthState change with profile request callbacks.\n * Only implemented for firebase provider.\n */\n activateLoginHandler() {\n console.log(\"Activate Login Handler\"); \n const callback = (user: unknown) => {\n console.log(\"My callback user:\", user);\n this._user = user;\n if (this._user) {\n pdStore().dispatch(loginSucess());\n this._loginSuccess(new CustomEvent(\"login-success\"));\n }\n };\n authStateChangedImpl(callback);\n }\n\n render() { \n const pageConf = navigationConfig.pages.filter(p => p.name === this.route)[0];\n const hideTeaser = this._teaserClosed || !pageConf?.withTeaser;\n return html`\n <header id=\"headerElementId\" class=\"default-header\">\n ${pageConf?.hideTopMenu ? '' : this._renderTopMenu(pageConf, hideTeaser)}\n ${hideTeaser ? '' : this._renderTeaser()}\n ${pageConf?.hideMenu ? '' : this._renderMenu(pageConf, hideTeaser)}\n </header> \n\n <main class=\"${this._getMainClass(hideTeaser, pageConf)}\">\n\n ${this._loadingState.map(ls => html`<pd-loading-state .loadingState=\"${ls}\"></pd-loading-state>`)}\n\n <app-main active-route=${this.route}\n @init-menu-sections=\"${this._initMenuSections}\"\n @login-success=\"${this._loginSuccess}\">\n ${this._renderRoutePages()}\n ${navigationConfig.includeLogin ? html`\n <default-login ?active=\"${this.route === \"login\"}\" route=\"login\"></default-login>` : ''}\n </app-main>\n </main>\n\n ${this.functionsController.render({\n complete: (result: FunctionResult) => this._renderSuccessResultInfo(result),\n initial: () => '',\n pending: () => this._renderPendingInfo(),\n error: (e: any) => this._renderErrorInfo(e),\n })}\n\n ${pageConf?.withFooter ? html`\n <footer class=\"default-footer\">\n ${this._renderFooter()}\n </footer>` : ''}\n `;\n } \n \n // eslint-disable-next-line class-methods-use-this\n private _getMainClass(hideTeaser: boolean, pageConf: NavigationPage): string {\n if (hideTeaser) { \n if (!pageConf) {\n return \"default-main\";\n }\n // eslint-disable-next-line no-nested-ternary\n return pageConf.mainClass ? pageConf.mainClass : (pageConf.withTeaser ? \"default-main-padding\" : \"default-main\");\n }\n return \"default-main-withteaser\";\n }\n\n _renderMenu(pageConfig:NavigationPage, hideTeaser:boolean) {\n const menuForPage = pageConfig ? (pageConfig.menu || []) : [];\n return menuForPage ? html`\n <pd-menu\n id=\"pdHelperMenuId\"\n class=\"${hideTeaser ? \"default-menu\" : \"default-menu-withteaser\"}\"\n @locale-change=\"${this._localeChange}\"\n selectedLocale=\"${this._selectedLocale}\"\n .locales=${this._singleLocaleMenu ? this._availableLocales : []}\n .menuItems=${menuForPage}\n .topMenuItems=${[]}\n activeRoute=\"${this.route}\"\n headerSize=\"${this._getHeaderSize(hideTeaser) + TOP_MENU_HEIGHT}\"\n >\n ${hideTeaser ? this._getAppLogo() : ''}\n </pd-menu>\n ` : '';\n } \n\n _renderTopMenu(pageConfig:NavigationPage, hideTeaser:boolean) {\n const topMenuForPage = pageConfig ? pageConfig.topMenuItems : undefined;\n return topMenuForPage ? html`\n <pd-menu \n id=\"pdHelperTopMenuId\"\n noBurgerMenu\n @locale-change=\"${this._localeChange}\"\n class=\"${hideTeaser ? \"default-top-menu\" : \"default-top-menu-withteaser\"}\" \n .locales=${this._availableLocales}\n selectedLocale=\"${this._selectedLocale}\"\n .topMenuItems=${topMenuForPage}\n activeRoute=\"${this.route}\"\n >\n </pd-menu>\n ` : '';\n }\n\n // eslint-disable-next-line class-methods-use-this\n _renderTeaser(): TemplateResult | string {\n const teaserContent = this._getTeaserContent();\n if (!teaserContent || teaserContent.length <= 0) {\n return '';\n }\n return html`\n <pd-panel-viewer class=\"default-teaser\" id=\"teaserPanelViewerId\" deltaCalc=\"4\">\n ${teaserContent.map(content => html`\n <pd-panel>\n ${content}\n </pd-panel>\n `)}\n </pd-panel-viewer>\n `;\n }\n\n _renderFooter() {\n const footer = this._getFooter();\n return html`\n <pd-footer \n class=\"default-footer\"\n .footerLinks=\"${footer.links}\"\n version=\"${footer.version}\" \n copyright=\"PD Progressive Developent UG\" \n .madeBy=\"${MADE_BY}\" \n @footer-link=\"${this._handleFooterRouteEvent}\">\n </pd-footer>\n `;\n }\n\n /**\n * Called when (any) cloud function call was finished. \n */\n // eslint-disable-next-line class-methods-use-this, @typescript-eslint/no-unused-vars\n _renderSuccessResultInfo(result: FunctionResult) {\n return html`\n <pd-toast isSuccess duration=\"${TOAST_DURATION}\">\n ${this.functionsController.callDataPromise?.func.successTxt}\n </pd-toast>`;\n }\n\n /**\n * Called when (any) cloud function is currently running. \n */\n _renderPendingInfo() {\n return this.functionsController.callDataPromise?.func.fadeWindow ? html`\n <p>Überblende und lade ${this.functionsController.callDataPromise?.func.name}...</p>` \n : html`\n <pd-toast duration=\"-1\">\n ${this.functionsController.callDataPromise?.func.pendingTxt}\n </pd-toast>`; \n }\n\n /**\n * Called when (any) cloud function stopped with errors.\n */\n // eslint-disable-next-line class-methods-use-this\n _renderErrorInfo(error:any) {\n return html`\n <pd-toast isError duration=\"-1\">\n ${error}\n </pd-toast>`;\n }\n\n protected abstract _getTeaserContent(): Array<TemplateResult>;\n\n protected abstract _getFooter(): Footer;\n\n protected abstract _getAppLogo(): TemplateResult;\n\n protected abstract _renderRoutePages(): any; \n\n protected abstract _loginSuccess(e: CustomEvent): void;\n\n protected abstract _setLocale(locale:string): void;\n\n protected abstract _getHeaderSize(hideTeaser: boolean): number;\n\n _localeChange(e: CustomEvent): void {\n this._setLocale(e.detail)\n this._selectedLocale = e.detail; \n } \n \n // eslint-disable-next-line class-methods-use-this\n _handleMenuRouteEvent(e:any) {\n // test with el, to handel jumps also here, not used at the moment, same postion link problems...\n if (e.detail.el) {\n this._scrollToContent(e.detail.el);\n } else {\n PdSpaHelper._scrollToTop();\n this.navigate(e.detail.route);\n }\n }\n\n // eslint-disable-next-line class-methods-use-this\n _handleFooterRouteEvent(e: CustomEvent) { \n const {linkObj} = e.detail; \n if (linkObj.link) {\n PdSpaHelper._scrollToTop();\n this.navigate(linkObj.link); \n }\n if (linkObj.action ) { \n linkObj.action();\n }\n }\n \n // eslint-disable-next-line class-methods-use-this\n _initMenuSections(e:any) {\n // add link to configuration object\n const menRefConf = navigationConfig.pages.filter(p => p.name === e.detail.name)[0];\n if (menRefConf) { \n menRefConf.menu = menRefConf.menu?.map((menuElement:MenuElement, index:number) => ({\n ...menuElement,\n ref: e.detail.menuRefs[index]\n }));\n }\n }\n\n _createTemporaryToast(e: any) {\n \n // hide existing call function toast (old one still is visible for directly incoming errors)\n this.functionsController.clear();\n \n const tmpToast = new PdToast(); \n tmpToast.isError = e.detail.isError;\n tmpToast.isSuccess = e.detail.isSuccess;\n const slotContent = document.createTextNode(e.detail.txt);\n tmpToast.appendChild(slotContent) \n\n this.shadowRoot?.appendChild(tmpToast);\n tmpToast.duration = TOAST_DURATION;\n\n // set timeout to remove toast (one second later)\n setTimeout(() => {\n this.shadowRoot?.removeChild(tmpToast);\n }, TOAST_DURATION + 1000);\n }\n\n static _scrollToTop() {\n window.scrollTo({\n top: 0,\n left: 0,\n behavior: 'smooth',\n });\n }\n\n // Test, not used at the moment, jump/menu problem...\n // eslint-disable-next-line class-methods-use-this\n _scrollToContent(el:HTMLElement) {\n if (el) {\n const rect = el.getBoundingClientRect();\n console.log(\"Rect: \", rect);\n console.log(\"Offset Top/Height: \", el.offsetTop, el.offsetHeight);\n window.scrollBy({\n top: rect.top - (this._teaserClosed ? 80 : 450),\n left: 0,\n behavior: 'smooth',\n });\n }\n }\n\n}"]}
|
|
1
|
+
{"version":3,"file":"PdSpaHelper.js","sourceRoot":"","sources":["../../src/PdSpaHelper.ts"],"names":[],"mappings":"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","sourcesContent":["import { html, LitElement, css, CSSResultGroup, TemplateResult, unsafeCSS } from 'lit';\nimport { router, navigator } from 'lit-element-router';\nimport { property } from 'lit/decorators.js';\n\nimport { Subscription } from 'rxjs';\n\nimport { FirebaseApp } from 'firebase/app';\n\nimport '@progressive-development/pd-page/pd-menu.js';\nimport '@progressive-development/pd-page/pd-footer.js';\n\nimport { initializeStore, pdStore } from './store/mini-rx.store.js';\n\nimport { authStateChangedImpl, initAppImpl, isAuthenticatedImpl, setServiceProvider } from './service-provider/service-provider-impl.js';\nimport { AppConfiguration, Footer, MenuElement, NavigationConfig, NavigationPage } from './service-provider/service-provider-model.js';\n\nimport { getLoadingSelector } from './store/spa-app-selector.js';\nimport { setRouteElement } from './store/spa-app-effects.js';\nimport { APP_CONF_EVENT, LoadingState } from './model/spa-model.js';\nimport { loginSucess } from './store/spa-app-actions.js';\n\nimport './router/AppMain.js';\nimport './defaultpage/default-login.js';\nimport './tmpown/pd-panel-viewer.js';\nimport './tmpown/pd-panel.js';\n// eslint-disable-next-line import/no-duplicates\nimport './tmpown/pd-toast.js';\nimport './tmpown/pd-loading-state.js';\n\n// TODO: How to solve this import problem?\n// eslint-disable-next-line import/no-duplicates\nimport { PdToast } from './tmpown/pd-toast.js';\n\n\n// Footer Text\nconst MADE_BY = {\n txt: \"made by PD Progressive Development\",\n email: \"info@progressive-development.com\"};\n\n// Visible time for time-limited toast\nconst TOAST_DURATION = 6000;\n\n\n/**\n * Transformed routes, generated during startInit.\n */\nlet app:FirebaseApp | undefined;\nlet transformedRoutes:Array<any>;\nlet navigationConfig:NavigationConfig;\n\n/**\n * Internal helper functions to generate route elemets for lit-router. \n */\nconst transformRoutes = () => {\n\n const transformAuthConfig = (withAuth:boolean) => \n withAuth ? \n {\n unauthenticated: {\n name: 'login',\n },\n authenticate: () => new Promise((resolve, reject) => {\n resolve(isAuthenticatedImpl());\n }),\n } : undefined;\n\n let generatedRoutes:Array<any> = [];\n navigationConfig.pages.forEach(cfEntry => {\n const addAraay = cfEntry.pattern.map(routeMapPattern => (\n {\n name: cfEntry.name,\n pattern: routeMapPattern,\n authentication: transformAuthConfig(cfEntry.auth),\n }\n )); \n generatedRoutes = generatedRoutes.concat(addAraay);\n });\n \n // add not-found route\n generatedRoutes.push({\n name: 'not-found',\n pattern: '*',\n });\n\n return generatedRoutes;\n}\n\n\n/**\n * Init the firebase app and application services like\n * functions and firestore. Generate routes from navigationConfig.\n * \n * @param navigationConfig\n * @param firebaseConfig\n * @param functionsConfig\n */\nexport const startInit = (config: AppConfiguration) => {\n\n console.log(\"Start init for config: \", config);\n\n // set service provider\n setServiceProvider(config.serviceProvider);\n \n // init mini-rx store\n if (config.storeConfigParam) {\n initializeStore(config.storeConfigParam);\n }\n\n // init app\n initAppImpl(config);\n\n // add login route if set in config\n if (config.navigationConfigParam.includeLogin) {\n config.navigationConfigParam.pages.push({\n name: \"login\",\n menu: [\n {key: \"login\", name: \"Login\"}\n ],\n pattern: [\"login\"],\n auth: false\n });\n }\n\n // generate routes from navigation config\n navigationConfig = config.navigationConfigParam;\n transformedRoutes = transformRoutes(); \n\n // init ready, trigger by even (if getAuth is called before, error is thrown) \n document.dispatchEvent(new CustomEvent(\"init-app-event\"));\n console.log(\"Init done, Event created\");\n\n};\n\nconst TOP_MENU_HEIGHT = 50;\n\n/**\n * Abstract class for SPAs. Extend within the app main class.\n */\nexport abstract class PdSpaHelper extends router(navigator(LitElement)) {\n\n protected abstract _appConfiguration: any;\n\n // not used at the moment\n @property({ type: String }) \n title = 'Hey there';\n\n /**\n * Properties needed for login/profile data.\n */\n @property({ type: Object, state: true }) \n _user: unknown | undefined;\n\n @property({ type: Object, state: true }) \n _profile: any | undefined;\n\n @property({ type: Object, state: true }) \n _loadingState: LoadingState[] = [];\n \n /**\n * Properties needed for the router.\n */\n @property({ type: String, reflect: true }) \n route = \"\";\n\n @property({ type: Object }) \n params = {};\n\n @property({ type: Object }) \n query = {};\n\n /**\n * Indicates if the teaser should closed (depends on scroll position).\n */\n @property({ type: Boolean })\n _teaserClosed = false; \n\n\n @property({ type: String, state: true })\n abstract _selectedLocale: string;\n\n abstract _availableLocales: string[];\n\n protected _singleLocaleMenu: boolean = false;\n\n // subscription for loading-state selector\n _subscription?: Subscription; \n\n static styles = \n // Ref: Additional use classmap to add custom classes in concrete impl\n css`\n\n :host {\n display: flex;\n flex-flow: column;\n height: 100%;\n }\n\n header {\n flex-grow: 0;\n }\n\n main {\n flex-grow: 1;\n flex-basis: max-content;\n }\n\n footer {\n flex-grow: 0;\n }\n\n .default-header {\n width: 100%;\n position: fixed;\n top: 0;\n display: block;\n z-index: 99;\n }\n\n .default-teaser {\n --pd-panel-overflow: hidden;\n --pd-panel-height: var(--pd-teaser-height, 380px);\n --pd-panel-width: 100%; \n --pd-panel-border-radius: 0;\n --pd-panel-bg: var(--pd-default-col);\n --pd-panel-viewer-bg-col: var(--pd-default-col);\n }\n\n .default-menu { \n transition: background-color 2s;\n }\n\n .default-menu-withteaser { \n --pd-menu-bg-col: var(--pd-spa-menu-change-col, #AFC1D2);\n --pd-menu-font-col: var(--pd-spa-menu-change-font-col, #0A3A48);\n transition: background-color 2s;\n }\n\n .default-top-menu, .default-top-menu-withteaser { \n --pd-menu-height: ${unsafeCSS(TOP_MENU_HEIGHT)}px;\n --pd-menu-font-size: 0.8em; \n --pd-menu-shadow: 0;\n }\n\n .default-top-menu-withteaser { \n --pd-menu-bg-col: var(--pd-teaser-bg-col);\n }\n\n /* needed for pd-spa-padding-top, only for pages with teaser, check if refactor possible... */\n .default-main-padding {\n padding-top: calc(var(--pd-menu-height) + var(--pd-spa-padding-top, 120px)) ;\n transition: padding-top 2s;\n }\n\n .default-main {\n padding-top: calc(var(--pd-menu-height));\n transition: padding-top 2s;\n } \n\n .default-main-withteaser {\n padding-top: calc(var(--pd-menu-height) + var(--pd-teaser-height, 380px));\n transition: padding-top 2s;\n }\n\n ` as CSSResultGroup; \n\n constructor() {\n\n super(); \n\n setRouteElement(this);\n\n const doSomething = (scrollPos:number) => {\n if (scrollPos <= 50) {\n this._teaserClosed = false;\n } else {\n this._teaserClosed = true;\n }\n };\n\n let ticking = false;\n document.addEventListener('scroll', () => {\n const lastKnownScrollPosition = window.scrollY;\n if (!ticking) {\n window.requestAnimationFrame(() => {\n doSomething(lastKnownScrollPosition);\n ticking = false;\n });\n ticking = true;\n }\n });\n\n // add login handler after init => else error is thrown\n // document.addEventListener(\"init-app-event\", this.activateLoginHandler.bind(this));\n document.addEventListener(\"init-app-event\", () => {\n console.log(\"Init event catched\");\n });\n if (navigationConfig.includeLogin) {\n this.activateLoginHandler();\n }\n\n // For common toast messages (not for callfunction toasts => handelt by own controller)\n this.addEventListener(\"toast-event\", this._createTemporaryToast);\n this.addEventListener(\"route-event\", this._handleMenuRouteEvent);\n }\n\n connectedCallback(): void {\n super.connectedCallback();\n this.addEventListener(APP_CONF_EVENT, this._setConfInDetail);\n this._subscription = pdStore().select(getLoadingSelector)\n .subscribe((loadingState) => {\n console.log(\"Loading State: \", loadingState);\n this._loadingState = loadingState;\n });\n }\n\n disconnectedCallback(): void {\n this.removeEventListener(APP_CONF_EVENT, this._setConfInDetail);\n this._subscription?.unsubscribe();\n super.disconnectedCallback();\n }\n\n _setConfInDetail(event: Event) {\n const {detail} = event as CustomEvent;\n if (detail) {\n detail.appConf = {\n ...this._appConfiguration\n };\n } \n }\n\n /**\n * Non reactive private property for the index db class.\n */\n // private _indexDBClient?: YoIndexDBClient|null; \n\n /**\n * Needed for the router.\n * Return all configured routes.\n */\n static get routes() {\n return transformedRoutes; \n }\n\n /**\n * Needed for the router.\n * Set route params to internal members.\n */\n router(route:string, params:Object, query:Object) {\n this.route = route;\n this.params = params;\n this.query = query;\n } \n\n\n /**\n * Call to activate onAuthState change with profile request callbacks.\n * Only implemented for firebase provider.\n */\n activateLoginHandler() {\n console.log(\"Activate Login Handler\"); \n const callback = (user: unknown) => {\n console.log(\"My callback user:\", user);\n this._user = user;\n if (this._user) {\n pdStore().dispatch(loginSucess());\n this._loginSuccess(new CustomEvent(\"login-success\"));\n }\n };\n authStateChangedImpl(callback);\n }\n\n render() { \n const pageConf = navigationConfig.pages.filter(p => p.name === this.route)[0];\n const hideTeaser = this._teaserClosed || !pageConf?.withTeaser;\n return html`\n <header id=\"headerElementId\" class=\"default-header\">\n ${pageConf?.hideTopMenu ? '' : this._renderTopMenu(pageConf, hideTeaser)}\n ${hideTeaser ? '' : this._renderTeaser()}\n ${pageConf?.hideMenu ? '' : this._renderMenu(pageConf, hideTeaser)}\n </header> \n\n <main class=\"${this._getMainClass(hideTeaser, pageConf)}\">\n\n ${this._loadingState.map(ls => html`<pd-loading-state .loadingState=\"${ls}\"></pd-loading-state>`)}\n\n <app-main active-route=${this.route}\n @init-menu-sections=\"${this._initMenuSections}\"\n @login-success=\"${this._loginSuccess}\">\n ${this._renderRoutePages()}\n ${navigationConfig.includeLogin ? html`\n <default-login ?active=\"${this.route === \"login\"}\" route=\"login\"></default-login>` : ''}\n </app-main>\n </main> \n\n ${pageConf?.withFooter ? html`\n <footer class=\"default-footer\">\n ${this._renderFooter()}\n </footer>` : ''}\n `;\n } \n \n // eslint-disable-next-line class-methods-use-this\n private _getMainClass(hideTeaser: boolean, pageConf: NavigationPage): string {\n if (hideTeaser) { \n if (!pageConf) {\n return \"default-main\";\n }\n // eslint-disable-next-line no-nested-ternary\n return pageConf.mainClass ? pageConf.mainClass : (pageConf.withTeaser ? \"default-main-padding\" : \"default-main\");\n }\n return \"default-main-withteaser\";\n }\n\n _renderMenu(pageConfig:NavigationPage, hideTeaser:boolean) {\n const menuForPage = pageConfig ? (pageConfig.menu || []) : [];\n return menuForPage ? html`\n <pd-menu\n id=\"pdHelperMenuId\"\n class=\"${hideTeaser ? \"default-menu\" : \"default-menu-withteaser\"}\"\n @locale-change=\"${this._localeChange}\"\n selectedLocale=\"${this._selectedLocale}\"\n .locales=${this._singleLocaleMenu ? this._availableLocales : []}\n .menuItems=${menuForPage}\n .topMenuItems=${[]}\n activeRoute=\"${this.route}\"\n headerSize=\"${this._getHeaderSize(hideTeaser) + TOP_MENU_HEIGHT}\"\n >\n ${hideTeaser ? this._getAppLogo() : ''}\n </pd-menu>\n ` : '';\n } \n\n _renderTopMenu(pageConfig:NavigationPage, hideTeaser:boolean) {\n const topMenuForPage = pageConfig ? pageConfig.topMenuItems : undefined;\n return topMenuForPage ? html`\n <pd-menu \n id=\"pdHelperTopMenuId\"\n noBurgerMenu\n @locale-change=\"${this._localeChange}\"\n class=\"${hideTeaser ? \"default-top-menu\" : \"default-top-menu-withteaser\"}\" \n .locales=${this._availableLocales}\n selectedLocale=\"${this._selectedLocale}\"\n .topMenuItems=${topMenuForPage}\n activeRoute=\"${this.route}\"\n >\n </pd-menu>\n ` : '';\n }\n\n // eslint-disable-next-line class-methods-use-this\n _renderTeaser(): TemplateResult | string {\n const teaserContent = this._getTeaserContent();\n if (!teaserContent || teaserContent.length <= 0) {\n return '';\n }\n return html`\n <pd-panel-viewer class=\"default-teaser\" id=\"teaserPanelViewerId\" deltaCalc=\"4\">\n ${teaserContent.map(content => html`\n <pd-panel>\n ${content}\n </pd-panel>\n `)}\n </pd-panel-viewer>\n `;\n }\n\n _renderFooter() {\n const footer = this._getFooter();\n return html`\n <pd-footer \n class=\"default-footer\"\n .footerLinks=\"${footer.links}\"\n version=\"${footer.version}\" \n copyright=\"PD Progressive Developent UG\" \n .madeBy=\"${MADE_BY}\" \n @footer-link=\"${this._handleFooterRouteEvent}\">\n </pd-footer>\n `;\n }\n\n protected abstract _getTeaserContent(): Array<TemplateResult>;\n\n protected abstract _getFooter(): Footer;\n\n protected abstract _getAppLogo(): TemplateResult;\n\n protected abstract _renderRoutePages(): any; \n\n protected abstract _loginSuccess(e: CustomEvent): void;\n\n protected abstract _setLocale(locale:string): void;\n\n protected abstract _getHeaderSize(hideTeaser: boolean): number;\n\n _localeChange(e: CustomEvent): void {\n this._setLocale(e.detail)\n this._selectedLocale = e.detail; \n } \n \n // eslint-disable-next-line class-methods-use-this\n _handleMenuRouteEvent(e:any) {\n // test with el, to handel jumps also here, not used at the moment, same postion link problems...\n if (e.detail.el) {\n this._scrollToContent(e.detail.el);\n } else {\n PdSpaHelper._scrollToTop();\n this.navigate(e.detail.route);\n }\n }\n\n // eslint-disable-next-line class-methods-use-this\n _handleFooterRouteEvent(e: CustomEvent) { \n const {linkObj} = e.detail; \n if (linkObj.link) {\n PdSpaHelper._scrollToTop();\n this.navigate(linkObj.link); \n }\n if (linkObj.action ) { \n linkObj.action();\n }\n }\n \n // eslint-disable-next-line class-methods-use-this\n _initMenuSections(e:any) {\n // add link to configuration object\n const menRefConf = navigationConfig.pages.filter(p => p.name === e.detail.name)[0];\n if (menRefConf) { \n menRefConf.menu = menRefConf.menu?.map((menuElement:MenuElement, index:number) => ({\n ...menuElement,\n ref: e.detail.menuRefs[index]\n }));\n }\n }\n\n _createTemporaryToast(e: any) {\n \n // hide existing call function toast (old one still is visible for directly incoming errors)\n // this.functionsController.clear();\n \n const tmpToast = new PdToast(); \n tmpToast.isError = e.detail.isError;\n tmpToast.isSuccess = e.detail.isSuccess;\n const slotContent = document.createTextNode(e.detail.txt);\n tmpToast.appendChild(slotContent) \n\n this.shadowRoot?.appendChild(tmpToast);\n tmpToast.duration = TOAST_DURATION;\n\n // set timeout to remove toast (one second later)\n setTimeout(() => {\n this.shadowRoot?.removeChild(tmpToast);\n }, TOAST_DURATION + 1000);\n }\n\n static _scrollToTop() {\n window.scrollTo({\n top: 0,\n left: 0,\n behavior: 'smooth',\n });\n }\n\n // Test, not used at the moment, jump/menu problem...\n // eslint-disable-next-line class-methods-use-this\n _scrollToContent(el:HTMLElement) {\n if (el) {\n const rect = el.getBoundingClientRect();\n console.log(\"Rect: \", rect);\n console.log(\"Offset Top/Height: \", el.offsetTop, el.offsetHeight);\n window.scrollBy({\n top: rect.top - (this._teaserClosed ? 80 : 450),\n left: 0,\n behavior: 'smooth',\n });\n }\n }\n\n}\n\n // Refactor: deactivate functions controller unwanted with new loader\n /* \n protected functionsController = new ServiceCallController(this);\n \n // from render\n ${this.functionsController.render({\n complete: (result: FunctionResult) => this._renderSuccessResultInfo(result),\n initial: () => '',\n pending: () => this._renderPendingInfo(),\n error: (e: any) => this._renderErrorInfo(e),\n })}\n /**\n * Called when (any) cloud function call was finished. \n \n // eslint-disable-next-line class-methods-use-this, @typescript-eslint/no-unused-vars\n _renderSuccessResultInfo(result: FunctionResult) {\n return html`\n <pd-toast isSuccess duration=\"${TOAST_DURATION}\">\n ${this.functionsController.callDataPromise?.func.successTxt}\n </pd-toast>`;\n }\n\n /**\n * Called when (any) cloud function is currently running. \n \n _renderPendingInfo() {\n return this.functionsController.callDataPromise?.func.fadeWindow ? html`\n <p>Überblende und lade ${this.functionsController.callDataPromise?.func.name}...</p>` \n : html`\n <pd-toast duration=\"-1\">\n ${this.functionsController.callDataPromise?.func.pendingTxt}\n </pd-toast>`; \n }\n\n /**\n * Called when (any) cloud function stopped with errors.\n \n // eslint-disable-next-line class-methods-use-this\n _renderErrorInfo(error:any) {\n return html`\n <pd-toast isError duration=\"-1\">\n ${error}\n </pd-toast>`;\n }\n */"]}
|
|
@@ -1 +1 @@
|
|
|
1
|
-
{"version":3,"file":"spa-model.js","sourceRoot":"","sources":["../../../src/model/spa-model.ts"],"names":[],"mappings":"AAAA,MAAM,CAAC,MAAM,cAAc,GAAG,cAAc,CAAC","sourcesContent":["export const APP_CONF_EVENT = \"get-app-conf\";\n\nexport interface LoadingSubTask {\n actionKey: string\n completed: boolean,\n loadingTxt: string, \n}\n\nexport interface LoadingState {\n isLoading: boolean,\n actionKey: string\n modal?: boolean,\n smallBackground?: boolean,\n loadingTxt?: string,\n subTask?: LoadingSubTask[],\n}\n\n"]}
|
|
1
|
+
{"version":3,"file":"spa-model.js","sourceRoot":"","sources":["../../../src/model/spa-model.ts"],"names":[],"mappings":"AAAA,MAAM,CAAC,MAAM,cAAc,GAAG,cAAc,CAAC","sourcesContent":["export const APP_CONF_EVENT = \"get-app-conf\";\n\nexport interface LoadingSubTask {\n actionKey: string\n completed: boolean,\n loadingTxt: string, \n}\n\nexport interface LoadingState {\n creation?: Date,\n isLoading: boolean,\n actionKey: string\n modal?: boolean,\n smallBackground?: boolean,\n loadingTxt?: string,\n subTask?: LoadingSubTask[],\n}\n\n"]}
|
|
@@ -1,6 +1,20 @@
|
|
|
1
1
|
import { createFeatureStateSelector, createSelector } from "mini-rx-store";
|
|
2
2
|
const getSpaAppFeatureState = createFeatureStateSelector('spaApp');
|
|
3
|
-
export const getLoadingSelector = createSelector(getSpaAppFeatureState, state =>
|
|
3
|
+
export const getLoadingSelector = createSelector(getSpaAppFeatureState, state => {
|
|
4
|
+
// filter add only the oldest for each typ
|
|
5
|
+
const orderByCreation = [...state.loadingState].sort((a, b) => { var _a, _b; return (((_a = a.creation) === null || _a === void 0 ? void 0 : _a.getMilliseconds()) || 0) - (((_b = b.creation) === null || _b === void 0 ? void 0 : _b.getMilliseconds()) || 0); });
|
|
6
|
+
// filter modal
|
|
7
|
+
const loadings = [];
|
|
8
|
+
const mainLoading = orderByCreation.filter(a => !a.smallBackground);
|
|
9
|
+
if (mainLoading.length > 0) {
|
|
10
|
+
loadings.push(mainLoading[0]);
|
|
11
|
+
}
|
|
12
|
+
const smallLoading = orderByCreation.filter(a => a.smallBackground);
|
|
13
|
+
if (smallLoading.length > 0) {
|
|
14
|
+
loadings.push(smallLoading[0]);
|
|
15
|
+
}
|
|
16
|
+
return loadings;
|
|
17
|
+
});
|
|
4
18
|
export const getOfflineSelector = createSelector(getSpaAppFeatureState, state => state.offline === true);
|
|
5
19
|
export const getInitStatusSelector = createSelector(getSpaAppFeatureState, state => ({
|
|
6
20
|
login: state.userLogin,
|
|
@@ -1 +1 @@
|
|
|
1
|
-
{"version":3,"file":"spa-app-selector.js","sourceRoot":"","sources":["../../../src/store/spa-app-selector.ts"],"names":[],"mappings":"AAAA,OAAO,EAAE,0BAA0B,EAAE,cAAc,EAAE,MAAM,eAAe,CAAC;AAI3E,MAAM,qBAAqB,GAAG,0BAA0B,CAAc,QAAQ,CAAC,CAAC;AAEhF,MAAM,CAAC,MAAM,kBAAkB,GAAG,cAAc,CAC9C,qBAAqB,EACrB,KAAK,CAAC,EAAE,CAAC,KAAK,CAAC,YAAY,
|
|
1
|
+
{"version":3,"file":"spa-app-selector.js","sourceRoot":"","sources":["../../../src/store/spa-app-selector.ts"],"names":[],"mappings":"AAAA,OAAO,EAAE,0BAA0B,EAAE,cAAc,EAAE,MAAM,eAAe,CAAC;AAI3E,MAAM,qBAAqB,GAAG,0BAA0B,CAAc,QAAQ,CAAC,CAAC;AAEhF,MAAM,CAAC,MAAM,kBAAkB,GAAG,cAAc,CAC9C,qBAAqB,EACrB,KAAK,CAAC,EAAE;IACN,0CAA0C;IAC1C,MAAM,eAAe,GAAG,CAAC,GAAG,KAAK,CAAC,YAAY,CAAC,CAAC,IAAI,CAClD,CAAC,CAAC,EAAE,CAAC,EAAE,EAAE,eAAC,OAAA,CAAC,CAAA,MAAA,CAAC,CAAC,QAAQ,0CAAE,eAAe,EAAE,KAAI,CAAC,CAAC,GAAG,CAAC,CAAA,MAAA,CAAC,CAAC,QAAQ,0CAAE,eAAe,EAAE,KAAI,CAAC,CAAC,CAAA,EAAA,CACtF,CAAC;IAEF,eAAe;IACf,MAAM,QAAQ,GAAG,EAAE,CAAC;IACpB,MAAM,WAAW,GAAG,eAAe,CAAC,MAAM,CAAC,CAAC,CAAC,EAAE,CAAC,CAAC,CAAC,CAAC,eAAe,CAAC,CAAC;IACpE,IAAI,WAAW,CAAC,MAAM,GAAG,CAAC,EAAE;QAC1B,QAAQ,CAAC,IAAI,CAAC,WAAW,CAAC,CAAC,CAAC,CAAC,CAAC;KAC/B;IACD,MAAM,YAAY,GAAG,eAAe,CAAC,MAAM,CAAC,CAAC,CAAC,EAAE,CAAC,CAAC,CAAC,eAAe,CAAC,CAAC;IACpE,IAAI,YAAY,CAAC,MAAM,GAAG,CAAC,EAAE;QAC3B,QAAQ,CAAC,IAAI,CAAC,YAAY,CAAC,CAAC,CAAC,CAAC,CAAC;KAChC;IAED,OAAO,QAAQ,CAAC;AAClB,CAAC,CACF,CAAC;AAEF,MAAM,CAAC,MAAM,kBAAkB,GAAG,cAAc,CAC9C,qBAAqB,EACrB,KAAK,CAAC,EAAE,CAAC,KAAK,CAAC,OAAO,KAAK,IAAI,CAChC,CAAC;AAEF,MAAM,CAAC,MAAM,qBAAqB,GAAG,cAAc,CACjD,qBAAqB,EACrB,KAAK,CAAC,EAAE,CAAC,CAAC;IACR,KAAK,EAAE,KAAK,CAAC,SAAS;IACtB,SAAS,EAAE,KAAK,CAAC,WAAW;CAC7B,CAAC,CACH,CAAC","sourcesContent":["import { createFeatureStateSelector, createSelector } from \"mini-rx-store\";\n\nimport { SpaAppState } from \"./spa-app-reducer.js\";\n\nconst getSpaAppFeatureState = createFeatureStateSelector<SpaAppState>('spaApp');\n\nexport const getLoadingSelector = createSelector(\n getSpaAppFeatureState,\n state => {\n // filter add only the oldest for each typ\n const orderByCreation = [...state.loadingState].sort(\n (a, b) => (a.creation?.getMilliseconds() || 0) - (b.creation?.getMilliseconds() || 0)\n );\n\n // filter modal\n const loadings = [];\n const mainLoading = orderByCreation.filter(a => !a.smallBackground);\n if (mainLoading.length > 0) {\n loadings.push(mainLoading[0]);\n }\n const smallLoading = orderByCreation.filter(a => a.smallBackground);\n if (smallLoading.length > 0) {\n loadings.push(smallLoading[0]);\n }\n\n return loadings;\n }\n);\n\nexport const getOfflineSelector = createSelector(\n getSpaAppFeatureState,\n state => state.offline === true\n);\n\nexport const getInitStatusSelector = createSelector(\n getSpaAppFeatureState,\n state => ({\n login: state.userLogin,\n indexedDB: state.initIndexDB\n })\n);"]}
|
|
@@ -1 +1 @@
|
|
|
1
|
-
{"program":{"fileNames":["../node_modules/typescript/lib/lib.es5.d.ts","../node_modules/typescript/lib/lib.es2015.d.ts","../node_modules/typescript/lib/lib.es2016.d.ts","../node_modules/typescript/lib/lib.es2017.d.ts","../node_modules/typescript/lib/lib.es2018.d.ts","../node_modules/typescript/lib/lib.es2019.d.ts","../node_modules/typescript/lib/lib.es2020.d.ts","../node_modules/typescript/lib/lib.dom.d.ts","../node_modules/typescript/lib/lib.es2015.core.d.ts","../node_modules/typescript/lib/lib.es2015.collection.d.ts","../node_modules/typescript/lib/lib.es2015.generator.d.ts","../node_modules/typescript/lib/lib.es2015.iterable.d.ts","../node_modules/typescript/lib/lib.es2015.promise.d.ts","../node_modules/typescript/lib/lib.es2015.proxy.d.ts","../node_modules/typescript/lib/lib.es2015.reflect.d.ts","../node_modules/typescript/lib/lib.es2015.symbol.d.ts","../node_modules/typescript/lib/lib.es2015.symbol.wellknown.d.ts","../node_modules/typescript/lib/lib.es2016.array.include.d.ts","../node_modules/typescript/lib/lib.es2017.object.d.ts","../node_modules/typescript/lib/lib.es2017.sharedmemory.d.ts","../node_modules/typescript/lib/lib.es2017.string.d.ts","../node_modules/typescript/lib/lib.es2017.intl.d.ts","../node_modules/typescript/lib/lib.es2017.typedarrays.d.ts","../node_modules/typescript/lib/lib.es2018.asyncgenerator.d.ts","../node_modules/typescript/lib/lib.es2018.asynciterable.d.ts","../node_modules/typescript/lib/lib.es2018.intl.d.ts","../node_modules/typescript/lib/lib.es2018.promise.d.ts","../node_modules/typescript/lib/lib.es2018.regexp.d.ts","../node_modules/typescript/lib/lib.es2019.array.d.ts","../node_modules/typescript/lib/lib.es2019.object.d.ts","../node_modules/typescript/lib/lib.es2019.string.d.ts","../node_modules/typescript/lib/lib.es2019.symbol.d.ts","../node_modules/typescript/lib/lib.es2019.intl.d.ts","../node_modules/typescript/lib/lib.es2020.bigint.d.ts","../node_modules/typescript/lib/lib.es2020.date.d.ts","../node_modules/typescript/lib/lib.es2020.promise.d.ts","../node_modules/typescript/lib/lib.es2020.sharedmemory.d.ts","../node_modules/typescript/lib/lib.es2020.string.d.ts","../node_modules/typescript/lib/lib.es2020.symbol.wellknown.d.ts","../node_modules/typescript/lib/lib.es2020.intl.d.ts","../node_modules/typescript/lib/lib.es2020.number.d.ts","../node_modules/typescript/lib/lib.esnext.intl.d.ts","../index.d.ts","../node_modules/tslib/tslib.d.ts","../node_modules/@lit/reactive-element/css-tag.d.ts","../node_modules/@lit/reactive-element/reactive-controller.d.ts","../node_modules/@lit/reactive-element/reactive-element.d.ts","../node_modules/@types/trusted-types/lib/index.d.ts","../node_modules/@types/trusted-types/index.d.ts","../node_modules/lit/node_modules/lit-html/directive.d.ts","../node_modules/lit/node_modules/lit-html/lit-html.d.ts","../node_modules/lit-element/node_modules/lit-html/lit-html.d.ts","../node_modules/lit-element/lit-element.d.ts","../node_modules/lit/node_modules/lit-html/is-server.d.ts","../node_modules/lit/index.d.ts","../node_modules/lit-element-router/lit-element-router.d.ts","../node_modules/@lit/reactive-element/decorators/base.d.ts","../node_modules/@lit/reactive-element/decorators/custom-element.d.ts","../node_modules/@lit/reactive-element/decorators/property.d.ts","../node_modules/@lit/reactive-element/decorators/state.d.ts","../node_modules/@lit/reactive-element/decorators/event-options.d.ts","../node_modules/@lit/reactive-element/decorators/query.d.ts","../node_modules/@lit/reactive-element/decorators/query-all.d.ts","../node_modules/@lit/reactive-element/decorators/query-async.d.ts","../node_modules/@lit/reactive-element/decorators/query-assigned-nodes.d.ts","../node_modules/@lit/reactive-element/decorators/query-assigned-elements.d.ts","../node_modules/lit/decorators.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/@firebase/component/dist/src/provider.d.ts","../node_modules/@firebase/component/dist/src/component_container.d.ts","../node_modules/@firebase/component/dist/src/types.d.ts","../node_modules/@firebase/component/dist/src/component.d.ts","../node_modules/@firebase/component/dist/index.d.ts","../node_modules/@firebase/util/dist/util-public.d.ts","../node_modules/@firebase/logger/dist/src/logger.d.ts","../node_modules/@firebase/logger/dist/index.d.ts","../node_modules/@firebase/app/dist/app-public.d.ts","../node_modules/firebase/app/dist/app/index.d.ts","../node_modules/@lit-labs/task/task.d.ts","../node_modules/@lit-labs/task/index.d.ts","../src/service-provider/service-provider-model.ts","../node_modules/firebase/node_modules/@firebase/auth/dist/auth-public.d.ts","../node_modules/firebase/auth/dist/auth/index.d.ts","../src/service-provider/firebase/auth.ts","../node_modules/mini-rx-store/lib/models.d.ts","../node_modules/mini-rx-store/lib/store.d.ts","../node_modules/mini-rx-store/lib/state.d.ts","../node_modules/mini-rx-store/lib/store-core.d.ts","../node_modules/mini-rx-store/lib/base-store.d.ts","../node_modules/mini-rx-store/lib/feature-store.d.ts","../node_modules/mini-rx-store/lib/component-store.d.ts","../node_modules/mini-rx-store/lib/selector.d.ts","../node_modules/mini-rx-store/lib/utils.d.ts","../node_modules/mini-rx-store/lib/extensions/redux-devtools.extension.d.ts","../node_modules/mini-rx-store/lib/extensions/logger.extension.d.ts","../node_modules/mini-rx-store/lib/extensions/immutable-state.extension.d.ts","../node_modules/mini-rx-store/lib/extensions/undo.extension.d.ts","../node_modules/mini-rx-store/lib/tap-response.d.ts","../node_modules/mini-rx-store/lib/map-response.d.ts","../node_modules/mini-rx-store/lib/create-effect.d.ts","../node_modules/mini-rx-store/lib/actions.d.ts","../node_modules/mini-rx-store/index.d.ts","../node_modules/ts-action/types.d.ts","../node_modules/ts-action/action.d.ts","../node_modules/ts-action/guard.d.ts","../node_modules/ts-action/isType.d.ts","../node_modules/ts-action/reducer.d.ts","../node_modules/ts-action/index.d.ts","../src/model/spa-model.ts","../src/store/spa-app-actions.ts","../src/store/spa-app-reducer.ts","../node_modules/ts-action-operators/ofType.d.ts","../node_modules/ts-action-operators/toPayload.d.ts","../node_modules/ts-action-operators/index.d.ts","../src/store/spa-app-effects.ts","../src/store/mini-rx.store.ts","../src/service-provider/mock/auth.ts","../node_modules/@firebase/functions/dist/functions-public.d.ts","../node_modules/firebase/functions/dist/functions/index.d.ts","../src/service-provider/firebase/functions-client.ts","../node_modules/@firebase/firestore/dist/index.d.ts","../node_modules/firebase/firestore/dist/firestore/index.d.ts","../src/service-provider/firebase/firestore-client.ts","../src/service-provider/mock/function-client.ts","../node_modules/@types/node/assert.d.ts","../node_modules/@types/node/assert/strict.d.ts","../node_modules/buffer/index.d.ts","../node_modules/undici-types/header.d.ts","../node_modules/undici-types/readable.d.ts","../node_modules/undici-types/file.d.ts","../node_modules/undici-types/fetch.d.ts","../node_modules/undici-types/formdata.d.ts","../node_modules/undici-types/connector.d.ts","../node_modules/undici-types/client.d.ts","../node_modules/undici-types/errors.d.ts","../node_modules/undici-types/dispatcher.d.ts","../node_modules/undici-types/global-dispatcher.d.ts","../node_modules/undici-types/global-origin.d.ts","../node_modules/undici-types/pool-stats.d.ts","../node_modules/undici-types/pool.d.ts","../node_modules/undici-types/handlers.d.ts","../node_modules/undici-types/balanced-pool.d.ts","../node_modules/undici-types/agent.d.ts","../node_modules/undici-types/mock-interceptor.d.ts","../node_modules/undici-types/mock-agent.d.ts","../node_modules/undici-types/mock-client.d.ts","../node_modules/undici-types/mock-pool.d.ts","../node_modules/undici-types/mock-errors.d.ts","../node_modules/undici-types/proxy-agent.d.ts","../node_modules/undici-types/api.d.ts","../node_modules/undici-types/cookies.d.ts","../node_modules/undici-types/patch.d.ts","../node_modules/undici-types/filereader.d.ts","../node_modules/undici-types/diagnostics-channel.d.ts","../node_modules/undici-types/websocket.d.ts","../node_modules/undici-types/content-type.d.ts","../node_modules/undici-types/cache.d.ts","../node_modules/undici-types/interceptors.d.ts","../node_modules/undici-types/index.d.ts","../node_modules/@types/node/globals.d.ts","../node_modules/@types/node/async_hooks.d.ts","../node_modules/@types/node/buffer.d.ts","../node_modules/@types/node/child_process.d.ts","../node_modules/@types/node/cluster.d.ts","../node_modules/@types/node/console.d.ts","../node_modules/@types/node/constants.d.ts","../node_modules/@types/node/crypto.d.ts","../node_modules/@types/node/dgram.d.ts","../node_modules/@types/node/diagnostics_channel.d.ts","../node_modules/@types/node/dns.d.ts","../node_modules/@types/node/dns/promises.d.ts","../node_modules/@types/node/domain.d.ts","../node_modules/@types/node/dom-events.d.ts","../node_modules/@types/node/events.d.ts","../node_modules/@types/node/fs.d.ts","../node_modules/@types/node/fs/promises.d.ts","../node_modules/@types/node/http.d.ts","../node_modules/@types/node/http2.d.ts","../node_modules/@types/node/https.d.ts","../node_modules/@types/node/inspector.d.ts","../node_modules/@types/node/module.d.ts","../node_modules/@types/node/net.d.ts","../node_modules/@types/node/os.d.ts","../node_modules/@types/node/path.d.ts","../node_modules/@types/node/perf_hooks.d.ts","../node_modules/@types/node/process.d.ts","../node_modules/@types/node/punycode.d.ts","../node_modules/@types/node/querystring.d.ts","../node_modules/@types/node/readline.d.ts","../node_modules/@types/node/readline/promises.d.ts","../node_modules/@types/node/repl.d.ts","../node_modules/@types/node/sea.d.ts","../node_modules/@types/node/stream.d.ts","../node_modules/@types/node/stream/promises.d.ts","../node_modules/@types/node/stream/consumers.d.ts","../node_modules/@types/node/stream/web.d.ts","../node_modules/@types/node/string_decoder.d.ts","../node_modules/@types/node/test.d.ts","../node_modules/@types/node/timers.d.ts","../node_modules/@types/node/timers/promises.d.ts","../node_modules/@types/node/tls.d.ts","../node_modules/@types/node/trace_events.d.ts","../node_modules/@types/node/tty.d.ts","../node_modules/@types/node/url.d.ts","../node_modules/@types/node/util.d.ts","../node_modules/@types/node/v8.d.ts","../node_modules/@types/node/vm.d.ts","../node_modules/@types/node/wasi.d.ts","../node_modules/@types/node/worker_threads.d.ts","../node_modules/@types/node/zlib.d.ts","../node_modules/@types/node/globals.global.d.ts","../node_modules/@types/node/index.d.ts","../node_modules/@firebase/storage/dist/storage-public.d.ts","../node_modules/firebase/storage/dist/storage/index.d.ts","../src/service-provider/firebase/firestorage-client.ts","../src/service-provider/mock/storage-client.ts","../src/service-provider/service-provider-impl.ts","../src/service-call-controller2.ts","../src/store/spa-app-selector.ts","../src/router/AppMain.ts","../src/tmpown/pd-login.ts","../node_modules/@lit/localize/internal/str-tag.d.ts","../node_modules/@lit/localize/internal/types.d.ts","../node_modules/@lit/localize/internal/locale-status-event.d.ts","../node_modules/@lit/localize/internal/localized-controller.d.ts","../node_modules/@lit/localize/internal/localized-decorator.d.ts","../node_modules/@lit/localize/init/runtime.d.ts","../node_modules/@lit/localize/init/transform.d.ts","../node_modules/@lit/localize/lit-localize.d.ts","../src/defaultpage/default-view-page.ts","../src/defaultpage/default-login.ts","../node_modules/lit/node_modules/lit-html/directives/class-map.d.ts","../node_modules/lit/directives/class-map.d.ts","../node_modules/@types/hammerjs/index.d.ts","../src/tmpown/pd-panel-viewer.ts","../src/tmpown/pd-panel.ts","../src/tmpown/pd-toast.ts","../src/tmpown/pd-loading-state.ts","../src/PdSpaHelper.ts","../src/helper/helper-utils.ts","../src/defaultpage/default-confirm-popup.ts","../src/defaultpage/default-dialog-popup.ts","../src/defaultpage/default-popup.ts","../src/defaultpage/default-wizard.ts","../src/defaultpage/default-wizard-step.ts","../src/defaultpage/default-step-address.ts","../src/defaultpage/default-step-summary.ts","../src/store/indexDB.ts","../src/generated/locales/be.ts","../src/generated/locale-wrapper/be-wrapper.ts","../src/generated/locales/de.ts","../src/generated/locale-wrapper/de-wrapper.ts","../src/generated/locales/en.ts","../src/generated/locale-wrapper/en-wrapper.ts","../src/index.ts","../src/pd-spa-helper.ts","../src/generated/locale-codes.ts","../node_modules/@types/react/ts5.0/global.d.ts","../node_modules/csstype/index.d.ts","../node_modules/@types/prop-types/index.d.ts","../node_modules/@types/react/ts5.0/index.d.ts","../node_modules/file-system-cache/lib/FileSystemCache.d.ts","../node_modules/file-system-cache/lib/index.d.ts","../node_modules/@babel/types/lib/index.d.ts","../node_modules/@types/babel__generator/index.d.ts","../node_modules/@babel/parser/typings/babel-parser.d.ts","../node_modules/@types/babel__template/index.d.ts","../node_modules/@types/babel__traverse/index.d.ts","../node_modules/@types/babel__core/index.d.ts","../node_modules/@types/mime/index.d.ts","../node_modules/@types/send/index.d.ts","../node_modules/@types/qs/index.d.ts","../node_modules/@types/range-parser/index.d.ts","../node_modules/@types/express-serve-static-core/index.d.ts","../node_modules/@types/http-errors/index.d.ts","../node_modules/@types/serve-static/index.d.ts","../node_modules/@types/connect/index.d.ts","../node_modules/@types/body-parser/index.d.ts","../node_modules/@types/express/index.d.ts","../node_modules/@storybook/channels/dist/main-c55d8855.d.ts","../node_modules/@storybook/channels/dist/postmessage/index.d.ts","../node_modules/@storybook/channels/dist/websocket/index.d.ts","../node_modules/@storybook/channels/dist/index.d.ts","../node_modules/@storybook/types/dist/index.d.ts","../node_modules/@storybook/web-components/dist/types-0360da9f.d.ts","../node_modules/@storybook/web-components/dist/index.d.ts","../src/stories/pd-loading-state.stories.ts","../node_modules/@types/chai/index.d.ts","../node_modules/@open-wc/semantic-dom-diff/get-diffable-html.d.ts","../node_modules/@open-wc/semantic-dom-diff/chai-dom-diff-plugin.d.ts","../node_modules/@open-wc/semantic-dom-diff/chai-dom-diff.d.ts","../node_modules/@open-wc/semantic-dom-diff/index.d.ts","../node_modules/chai-a11y-axe/chai-a11y-axe-plugin.d.ts","../node_modules/chai-a11y-axe/src/accessible.d.ts","../node_modules/chai-a11y-axe/index.d.ts","../node_modules/@types/chai-dom/index.d.ts","../node_modules/@types/sinonjs__fake-timers/index.d.ts","../node_modules/@types/sinon/index.d.ts","../node_modules/@types/sinon-chai/index.d.ts","../node_modules/@open-wc/testing/register-chai-plugins.d.ts","../node_modules/@open-wc/testing-helpers/types/src/elementUpdated.d.ts","../node_modules/lit-html/directive.d.ts","../node_modules/lit-html/lit-html.d.ts","../node_modules/lit-html/static.d.ts","../node_modules/@open-wc/testing-helpers/types/src/renderable.d.ts","../node_modules/@open-wc/dedupe-mixin/index.d.ts","../node_modules/@open-wc/scoped-elements/types/src/types.d.ts","../node_modules/@open-wc/scoped-elements/types/src/ScopedElementsMixin.d.ts","../node_modules/@open-wc/scoped-elements/types/index.d.ts","../node_modules/@open-wc/testing-helpers/types/src/fixture-no-side-effect.d.ts","../node_modules/@open-wc/testing-helpers/types/src/fixture.d.ts","../node_modules/@open-wc/testing-helpers/types/src/fixtureWrapper.d.ts","../node_modules/@open-wc/testing-helpers/types/src/helpers.d.ts","../node_modules/@open-wc/testing-helpers/types/src/scopedElementsWrapper.d.ts","../node_modules/@open-wc/testing-helpers/types/src/litFixture.d.ts","../node_modules/@open-wc/testing-helpers/types/src/stringFixture.d.ts","../node_modules/@open-wc/testing-helpers/types/index.d.ts","../node_modules/@open-wc/testing/index.d.ts","../test/pd-spa-helper.test.ts","../node_modules/@types/accepts/index.d.ts","../node_modules/@types/babel__code-frame/index.d.ts","../node_modules/@types/co-body/index.d.ts","../node_modules/@types/command-line-args/index.d.ts","../node_modules/@types/content-disposition/index.d.ts","../node_modules/@types/convert-source-map/index.d.ts","../node_modules/@types/keygrip/index.d.ts","../node_modules/@types/cookies/index.d.ts","../node_modules/@types/cross-spawn/index.d.ts","../node_modules/@types/debounce/index.d.ts","../node_modules/@types/detect-port/index.d.ts","../node_modules/@types/doctrine/index.d.ts","../node_modules/@types/ejs/index.d.ts","../node_modules/@types/emscripten/index.d.ts","../node_modules/@types/estree/index.d.ts","../node_modules/@types/find-cache-dir/index.d.ts","../node_modules/@types/graceful-fs/index.d.ts","../node_modules/@types/http-assert/index.d.ts","../node_modules/@types/istanbul-lib-coverage/index.d.ts","../node_modules/@types/istanbul-lib-report/index.d.ts","../node_modules/@types/istanbul-reports/index.d.ts","../node_modules/@types/json-schema/index.d.ts","../node_modules/@types/json5/index.d.ts","../node_modules/@types/koa-compose/index.d.ts","../node_modules/@types/koa/index.d.ts","../node_modules/@types/lodash/common/common.d.ts","../node_modules/@types/lodash/common/array.d.ts","../node_modules/@types/lodash/common/collection.d.ts","../node_modules/@types/lodash/common/date.d.ts","../node_modules/@types/lodash/common/function.d.ts","../node_modules/@types/lodash/common/lang.d.ts","../node_modules/@types/lodash/common/math.d.ts","../node_modules/@types/lodash/common/number.d.ts","../node_modules/@types/lodash/common/object.d.ts","../node_modules/@types/lodash/common/seq.d.ts","../node_modules/@types/lodash/common/string.d.ts","../node_modules/@types/lodash/common/util.d.ts","../node_modules/@types/lodash/index.d.ts","../node_modules/@types/mdx/types.d.ts","../node_modules/@types/mdx/index.d.ts","../node_modules/@types/mime-types/index.d.ts","../node_modules/@types/mocha/index.d.ts","../node_modules/form-data/index.d.ts","../node_modules/@types/node-fetch/externals.d.ts","../node_modules/@types/node-fetch/index.d.ts","../node_modules/@types/normalize-package-data/index.d.ts","../node_modules/@types/parse-json/index.d.ts","../node_modules/@types/parse5/lib/tree-adapters/default.d.ts","../node_modules/@types/parse5/index.d.ts","../node_modules/@types/pretty-hrtime/index.d.ts","../node_modules/@types/resolve/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/unist/index.d.ts","../node_modules/@types/uuid/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/@firebase/auth/dist/auth-public.d.ts","../node_modules/lit-html/directives/class-map.d.ts","../node_modules/lit-html/is-server.d.ts"],"fileInfos":[{"version":"8730f4bf322026ff5229336391a18bcaa1f94d4f82416c8b2f3954e2ccaae2ba","affectsGlobalScope":true},"dc47c4fa66b9b9890cf076304de2a9c5201e94b740cffdf09f87296d877d71f6","7a387c58583dfca701b6c85e0adaf43fb17d590fb16d5b2dc0a2fbd89f35c467","8a12173c586e95f4433e0c6dc446bc88346be73ffe9ca6eec7aa63c8f3dca7f9","5f4e733ced4e129482ae2186aae29fde948ab7182844c3a5a51dd346182c7b06","4b421cbfb3a38a27c279dec1e9112c3d1da296f77a1a85ddadf7e7a425d45d18","1fc5ab7a764205c68fa10d381b08417795fc73111d6dd16b5b1ed36badb743d9",{"version":"3aafcb693fe5b5c3bd277bd4c3a617b53db474fe498fc5df067c5603b1eebde7","affectsGlobalScope":true},{"version":"adb996790133eb33b33aadb9c09f15c2c575e71fb57a62de8bf74dbf59ec7dfb","affectsGlobalScope":true},{"version":"8cc8c5a3bac513368b0157f3d8b31cfdcfe78b56d3724f30f80ed9715e404af8","affectsGlobalScope":true},{"version":"cdccba9a388c2ee3fd6ad4018c640a471a6c060e96f1232062223063b0a5ac6a","affectsGlobalScope":true},{"version":"c5c05907c02476e4bde6b7e76a79ffcd948aedd14b6a8f56e4674221b0417398","affectsGlobalScope":true},{"version":"5f406584aef28a331c36523df688ca3650288d14f39c5d2e555c95f0d2ff8f6f","affectsGlobalScope":true},{"version":"22f230e544b35349cfb3bd9110b6ef37b41c6d6c43c3314a31bd0d9652fcec72","affectsGlobalScope":true},{"version":"7ea0b55f6b315cf9ac2ad622b0a7813315bb6e97bf4bb3fbf8f8affbca7dc695","affectsGlobalScope":true},{"version":"3013574108c36fd3aaca79764002b3717da09725a36a6fc02eac386593110f93","affectsGlobalScope":true},{"version":"eb26de841c52236d8222f87e9e6a235332e0788af8c87a71e9e210314300410a","affectsGlobalScope":true},{"version":"3be5a1453daa63e031d266bf342f3943603873d890ab8b9ada95e22389389006","affectsGlobalScope":true},{"version":"17bb1fc99591b00515502d264fa55dc8370c45c5298f4a5c2083557dccba5a2a","affectsGlobalScope":true},{"version":"7ce9f0bde3307ca1f944119f6365f2d776d281a393b576a18a2f2893a2d75c98","affectsGlobalScope":true},{"version":"6a6b173e739a6a99629a8594bfb294cc7329bfb7b227f12e1f7c11bc163b8577","affectsGlobalScope":true},{"version":"81cac4cbc92c0c839c70f8ffb94eb61e2d32dc1c3cf6d95844ca099463cf37ea","affectsGlobalScope":true},{"version":"b0124885ef82641903d232172577f2ceb5d3e60aed4da1153bab4221e1f6dd4e","affectsGlobalScope":true},{"version":"0eb85d6c590b0d577919a79e0084fa1744c1beba6fd0d4e951432fa1ede5510a","affectsGlobalScope":true},{"version":"da233fc1c8a377ba9e0bed690a73c290d843c2c3d23a7bd7ec5cd3d7d73ba1e0","affectsGlobalScope":true},{"version":"d154ea5bb7f7f9001ed9153e876b2d5b8f5c2bb9ec02b3ae0d239ec769f1f2ae","affectsGlobalScope":true},{"version":"bb2d3fb05a1d2ffbca947cc7cbc95d23e1d053d6595391bd325deb265a18d36c","affectsGlobalScope":true},{"version":"c80df75850fea5caa2afe43b9949338ce4e2de086f91713e9af1a06f973872b8","affectsGlobalScope":true},{"version":"9d57b2b5d15838ed094aa9ff1299eecef40b190722eb619bac4616657a05f951","affectsGlobalScope":true},{"version":"6c51b5dd26a2c31dbf37f00cfc32b2aa6a92e19c995aefb5b97a3a64f1ac99de","affectsGlobalScope":true},{"version":"6e7997ef61de3132e4d4b2250e75343f487903ddf5370e7ce33cf1b9db9a63ed","affectsGlobalScope":true},{"version":"2ad234885a4240522efccd77de6c7d99eecf9b4de0914adb9a35c0c22433f993","affectsGlobalScope":true},{"version":"5e5e095c4470c8bab227dbbc61374878ecead104c74ab9960d3adcccfee23205","affectsGlobalScope":true},{"version":"09aa50414b80c023553090e2f53827f007a301bc34b0495bfb2c3c08ab9ad1eb","affectsGlobalScope":true},{"version":"d7f680a43f8cd12a6b6122c07c54ba40952b0c8aa140dcfcf32eb9e6cb028596","affectsGlobalScope":true},{"version":"3787b83e297de7c315d55d4a7c546ae28e5f6c0a361b7a1dcec1f1f50a54ef11","affectsGlobalScope":true},{"version":"e7e8e1d368290e9295ef18ca23f405cf40d5456fa9f20db6373a61ca45f75f40","affectsGlobalScope":true},{"version":"faf0221ae0465363c842ce6aa8a0cbda5d9296940a8e26c86e04cc4081eea21e","affectsGlobalScope":true},{"version":"06393d13ea207a1bfe08ec8d7be562549c5e2da8983f2ee074e00002629d1871","affectsGlobalScope":true},{"version":"2768ef564cfc0689a1b76106c421a2909bdff0acbe87da010785adab80efdd5c","affectsGlobalScope":true},{"version":"b248e32ca52e8f5571390a4142558ae4f203ae2f94d5bac38a3084d529ef4e58","affectsGlobalScope":true},{"version":"52d1bb7ab7a3306fd0375c8bff560feed26ed676a5b0457fa8027b563aecb9a4","affectsGlobalScope":true},"d8bd288b412131749ae494705fc060ad44487a58a3a2af78f13ba617e6e88726","4a882ffbb4ed09d9b7734f784aebb1dfe488d63725c40759165c5d9c657ca029","52dd370c807255c61765347fc90a9bee3c522b8744dc222714e2bf6b5be3a823","1e5743b25a63fd34ffbae89adcbf248ee17db6ed08d90079ffa93803c3e80d2a","ccf8ea81b0ac699c220b874b804ad02b8aabc5b494e1c3bda0d255ec8d08694d","15fe687c59d62741b4494d5e623d497d55eb38966ecf5bea7f36e48fc3fbe15e",{"version":"2c3b8be03577c98530ef9cb1a76e2c812636a871f367e9edf4c5f3ce702b77f8","affectsGlobalScope":true},"c567d37119d6f56381af48eb7516030ccf35a36f9aca045e238d9c207a7c536c","b448dfbb5a6c4505f6b6beab587cf41f180ad62bcb506b44e3f2c09d20ba63a9","b448dfbb5a6c4505f6b6beab587cf41f180ad62bcb506b44e3f2c09d20ba63a9","eba7cf33380cc3a3cf614faf67300e14d0bdff9ea6c5cd6f4b040b1756a48ab1","5e7e090243bf203382a5cb04eabbdc38d78f6d5922f16f543e4da8fa007d5ff9","cd823094ded7c8ac4f94ab6dc387dab699293eb8323d9f948304efc07e4ae7b2","43fe650d6596e6f9bff164927de8f99918481899814a45a026e3262ee5ae01a6","d45c02bf8b85203f35de2971eafb8f8092090d150c7805a189b3e197f53b12b6","ac388c7c7a262213a3700451bc921e382a93fb27c0252c34ccf03540b4ce044b","097a7e3badfd1c4b35f72aa0f722f5714a4f6a84e53fca5a79dcfebbfc5e718d","fb0107c83e2e0e75b77dacd0c3c6c3ab6844e98dce2a8f858c6f0a57c12136a6","ea410c8280b0ec480acb195c7dd36c1f054403f5fccee0beca85717777cf8562","628bceb593b3a5b3d73ff44a808a347ec07d6ee397104a1d88b0f9a20d8b4599","57e25505a5de058216a8f4416ca850788bfc3a412c8e90109b2ef91f75fdd615","2ba453918c1fcf1cbb2836f731534f356d5fe65ed9628811f686e8de3920ed0e","4bcb813ea56182beaaab1e8274524eb9f1449b0d8e79efc4a0399de09e43f816","cc689acd4eff461c808e01225be6a16d1787e44d451310be5dd556dd7ab08457","f0380f581cb015778c0fe51e95b5b7f6dae237280654558469b2486c1572268a","fa3d0cd03fa17459d9ddd98b120b4bb084da39f0391cbdce480a6ef74be0cc7a","e3fd84e6470b7e0679c4073ee5ce971d324182486dde5a49b67cae29168b51d2","dd8331d0a5190a4735ce6c152e420230188c4966067a756673c36dd7ba72b10e","d6db3bf60a324f74ed9c1281acc1543734be70ac0ab9a8dc953a1d55f6906720",{"version":"34707bf55a38f69fdaaaaed74907c81a6b186fcb206cc50e6f8862b36c08730e","affectsGlobalScope":true},"0f882d4ae58f431454030289154feb0132e1b00ca5c3197c6b749bd098aed73a","7ff7f4632a6e7b6872fb1843f3c0df495b49840eae2a23c6fbc943f863da8c29","1e352dc6863536f881c894f17c46b5040db7c9423a18957a8fbc001dfe579b78","a78590b0efcef281236e3234520c348d63be1d4561b63b20e6c3b6fc18b37dfb","4d59c6a10b6c79a0927c79efa89b3c9f71d174ec14ec2792076cfd2330d0cf8e","a496f51933422872de22729b7a0233589325a1a1707cccd05cd914098944a202","75b6663bc569724017997481b6b3774065c204b316cb4f5ad7df3b5162d2dce1","06a38095ad4368314366bc08f7cbc0fe274ef7321ec611005d0bdd9c6565e4d5","4599793db9aed9b84677f0ca1cf7ef3c69bb91cda4fe4329cbab778ca4d80a58","ad0028f96921778931fb8419d8de33b10908314fa99699de1702020f69235da1","ccd2a35321c0786bd3808042dc43b960cac13f2cc660ac37a0087e12bc97d2fc","df524ed01de4f19efb44bded628dbba9f840148be4b6cfe096e29d4b01589de3","2e3981b9cee48174ff85ae15019fd72933f7023a4ed05094740f7e6f7775623c","836ebdc3b9e4c006acc4f405b7e558e56d47830e05c40d991b1e27fe8bc91157","2cc6b617c6120ba64b5778ccd4b74c951adc3a3941bb6b39f47d48701c44af39","eca02b99615a8f1652e21399d832618e38bf166c0747c9247349bc901a2f7741","7f7d6d42e5780e86f5b860a6f95179fae06a368b3af28c1c4230397c47021a59","4740a7d11ab3b381be0f269f1903fb3ff226a2fba55a01756b2997e67cd853f2","863dbc4e77f0353e6f9d6bc0e2b4622d5c07ff6f099ff66cafd7924b2ff4dd3f","bf034a18ed7e2a058f9e48c4c2480a124138fbd3586a80c77736a9ec079d12a8","f88758992a0bf13d095520aacd4381fb456ff121fb9aa184e6eb0eecb26cfadc","c249e9ae33bfcad97deec3c73c9ed2656e112fbdf22deace0b39724be6a5dcf0","d8b45924965c0c4fc0b946c0b6d597aa8d5de9cdf5c727e3d39422d17efec438","c6f72b9a53b7819f056268c221d7eeb14c26e2582aa1547b0f6922d65bcfde72","feddabf6ab0eb191e721f0126f3db8688db97c77a1234968bde7a2d70c4ae513","a968efe0db090c2ed75ee8c77162534f7ffde3dfa9d9ee9f79c47784c43df96e","cde0568b836865a24f4ee5859462004a326dfb76d514e6f56c8e78feedebed58","7f5cb3a03588ed46d52a6c2138315d930cd6ffb5c2134247cd07bc23cbea0b5a","7797f4c91491dcb0f21fa318fd8a1014990d5a72f8a32de2af06eb4d4476a3b5","f39fb20b83c3f9853c13d4ac95533760979d3023c0a5affe2c0a62d91ab3afd8","e4fca08aed8afb32bb8643d7469810bc8681115fe398e56a028df9e73b2d867f","8a59503e8c995d688174ab27cd32c3ab6afed7c41cb5282aee1e964f7d7b863d","078966067552650f44ca96c68eddbb8539f30ee48a9ab3f24abdcf0a4037b535","2cd6250c43dba360377481c98d48db6ab1532a7527339edb0deffddc28ba66b1","7a9d600990fbe263a23daebed9ba1bbc5761e45679a7e2b2774a42756ef077a2","66bc155515fbea8c31a4efccbbac44de7c037b01f3aa00b76312cf7252725d30","5703288ddbfc4f7845cdbf80c6af17c8cde2a228757479796c2378b1662fcd48","0dfd353f0c16dd5107a7e0713dc52d0a2538293b0a0eac6000a017f9c0a60b56","9cd683a4663ef4d9c6486f1b8a34c73bdbc344d69490931bfe2fbcada12ab35b","42f6a409bad5259ece69df25d2b8ace2ff2ade45fe6386ee45203bdd9329f971","d3b1a8b87a5e77d70056325e137a0e04d984b991546fdd3c1034ff4102d603c4","2eb162efd6dba5972b9f8f85141d900d09da4fba23864f287f98f9890a05e95f","3f878fb5be9ebe8bd0ac5c22515d42b8b72d3745ef7617e73e9b2548ccbdf54b","e9ed562b7599c8c8c01595891480a30f9945a93a46456d22ee67ebf346b7538a","e7bf975a98cecefe2e8902fb7da9314675ecdce553aea722aaec97327668e18b","3d36f93648518338c875d9f77a8eab52905365483dbb3afe43ed68f1b712b67c","4fa54df9184d291bd78b36f5063372042cd995460e906cb14014e40d1442a326","b4e32bd5e3b493e4ea6b5ec69a4c02aa1fdaa78e1df9a863bb07604de8f9d123","f6bd1aa152ca2b5064e06282ee3137842ae6825b6b09aa89a2ff063b976a56f3","bce2390bb3a76f8bf2ba4397c66db5277bf3e698ee614347e5eb79d7fc0942c6","fbdc8d7cc7daf4101bf567512c67fb990d8fe300e0ba7f213171192177f44aa0","298e0da6d858e39fc0c1eebfa4f5c8af487868c6f2e98c3ef800537d402fb5c3","3b6457fb3866562d279377f923cf3758c80ed7bfcc19414b72a24d0a98188e0c","4fb5d7efb3520b92c1b767ce18968057c5e70886d7fb3416c487231df9275af9","df2303a61eb57b2717d17123e82bc0f3fd60f6e4673cb5506192dfe23c9480bf","b104960f4c5f807535ab43282356b2fe29c5d14a02035c623ac2012be3d5f76c","a35ca245eb852b70b20300546443abb1fcbac6e5066e4baaa092af4ea614d9b5","55da140feab55f10a538a9879a97c4be3df4934cbd679665c91a7263a86095e1","1a39e51e3362aec7d4edec9b317ff83916fe0471f86ddf2d3ef3af5952e87d9e","4b3f36b96f129a8e125c91d41a05f711e73b3285f80bceb3a1aecb13c97c4502","852779920fc4220bc42ec6d3c9b6164e23ea9371a788531b48b4005fe0cb4392","6863aa26d38fb3c96d7b04547d677967d83ebe421a093e4dede6fd48ad23890d","515b97cede17d91c9669cc1c7fb7a8a5f0a5f2d8999f925a5f70b4ebea93723e","08e8e57241f874bdbf69ab2b65cb0ee18b4183d5c9452937da49b934fc679c4b","944af466f063d4bd090ab9d988c620b90a014e919d5f78963f6074a136ea225e","644addd4811636da491c9546654bc005ba8599f23df6d731d91eba86f3137fc2","a9249493114b181814728cbfeb7234738193a4169b654ec4705d48d7a4d25222","aad6f20d6eb01192ae02294361faa6e1f320d72447b56f433db853bbe80b15ca","876fbedec2f494eb6f834ce8636b07d581c657d205d81a3ba894eff0facc6b84","58527aa45f11c9b259a6a9d78b397f35020bfbb104f4d3bb177039b5c18146bd","91b8b61d45b5d22f3458a4ac82e03b464a0926bab795a920fe0eca805ec476eb","2744532f8fb960eb78497ac660db719f503a10c801f87131d26fd9cbef75dcef","6884287c54891ac19cfbe056f3ed29cab1732a00dec69bd3b140ce62c11783c6","223fdd3984d951378c7febea213b287ee04ee013f065a27905c3d75df85144c4","cb46657d3237f80742d5701ebcced8f6e5cf8938442354387d6c77d7048dfae6","3965c8ef8150ca688978430a13db460d29a50afc50c97315c723722b6f763369","661f322e45545a554e4ffc38db6c4068a66e1323baf66acb0d8a9fa28195a669","9d787416f04d0867e8a46c317056f6ad365e328074c73fa3a1612285fa24465d","ce978e20a6f26f606b535f0d6deb384ae6a73f8d0bd0dfca0925f5317cad1f25","f2d3567210ca4d559d8297d6c4402599c93e3bc7485054192d38db5e132fbc0a","50d22a2dfdbf2dda7b333edf980566feb3f61813695c8f3b52fc866c8d969404","bdb95f4b6e845ec1c0ae95eb448c55a68a2752473e1d2107348abe40421cc202","ea546a7ed9eaa71ba78d4d392509dadea4bafed283269dd6c4b09e7d8824e986","4ec0f2a141a9ae7d3557b8efe630ac2021bc3a9ac61238b59293f4cf2f196e82","b2db743c71652e03c52d51445af58d0af3316231faa92b66018b29c7ba975f6c","0863a5876c85fbaffbb8ec8aeda8b5042deb6932616139706d2b82cde9d3f7c7","12f8b72e3c3a333814f4fa87d5b9a7ef1ece703f3b7ec7919ad2ffb58c48c1db","ba9c46725e2a0bd9df59d3a1e801cc60f90db3ef7817131c53945dce2b8c0c56","281d373eeabf80c4851f8de991e6abe4d385c30379d80897bbc3df3dcac99cee","624c5dce95672d9dcca40d9d9d82ef855f5f902292f43aa265cc8fd963c6ce84","8a48d9c6184992d1c3ed5daa55f83d708c37582916926a5555a900608f804b60","605dd288c636cf9b5317fe76dec75d3c7fb855fdcd3ee8cb4fea7d7091ca6fb4","95addea67857d4e568a02e429b15458cec203876b2ea5f5ea18ccfeeb91b8ce0","b5a615b0ad865ffa562980a10bda162ac1744fd363b4edc2cfc664222071cbcf","bbccd721363897950a55ce09529503f25a69522e5c91a22679b66e941e5f8654","d3a1e70795c38d7851b6e4f3b441c5ffdae171d6e2576a2204b7d79059aeea66","d7b8d41887c5fccfe19802c4336d34348b752abf0d98839575699d71deff60be","063fe3004728b8516a4d799ee16f9a71801ba24e0443dd98638cef1bd4353a7c","0267341e780d4967cbd069ea57db7aa4e1fdfe74702ab0366a7a4c1da0ca332b","ec5a0291f1bcbd2662640e7a6ae0a632ce8f0fd55c02236bb43203f38436ca36","7ffd42ac60bedb9b97e7c35b48af9f71b0a2289f3324f414826eeaea937d144b","b20bc124abd8ee572d0d756713ff987b116cdae908a6fcbc40e80d4b999f56b4","a599f3f450ad62c3fdc0c3fd25cddcc9332ffb44327087947d48914a8da81364","645dff895168aa82350c9aa60aa0b3621b84289fef043be842f45a9c6c0ac6e2","f068ff5b7fb3bdc5380e0c677e21de829bd25cdac63a9b083fdc220fcb225280","09d2fdca6ea6c135897a26976ad3c0db724adaf23ef4e38ad852b1d8efef1ae6","15de5b7739bf7e40213a200853bf78455ee5958af08eda786605a54a7f25ade6","aa31b69fc0094a66e771e189d387ffed138b53b211903f96ca3737792f69abdf","37862e711637ebd927907a82cbf0143ea30e95eb165df554926c43936b1d77a9","89e253db2c2cc9a510c521f14dd2b1aae4de2556ee5159ad8d118d3587e3a880","3d0a172cee184a0f4111a7bd7fbb8729af3f54b30c06a2677d85c20ea9c811ab","d6a07e5e8dee6dc63c7ecd9c21756babf097e1537fbc91ddfec17328a063f65d","6fdc88b1287c276b55b7f7c4c7b49587813c763eea9751ce0baf0a7e61cd5d89","6a02443704052768bd021f24783aa104b02ae4444e9b735317bf13c6b857a11e","37987b0fe9800cf25473c882ce07bccdab2763c5681c1a2d16816aead46aa8d1","c84c03c721154068e1a60d83e9e85819bd3ef70b824ac2edc498aa31c06e5781","f4e5b4def2ccccfe43c0905074695c349230505faf6ae74a28b0c1090acfda7d","c96fb6a0c1e879f95634ab0ff439cbb6fff6227b26bbf0153bef9ed0aabba60d","db936079fe6396aad9bf7ad0479ffc9220cec808a26a745baebb5f9e2ef9dbc7","06bc0b9cc7bf0b92534f1517fe5adde1f23f60cc6cc5c59f8e1c65db48a40067","919a753b0cbb12ccc606c62e2d34884d75a48ba19b1dda497c72621b11dac088","2c27e33ee0bf722988da00abd582cc9b806ce3fd9153a864800a339ad13f3fcf","92d7b3a5aa5dc872e54cbad2a7094b3ea4f72c7901de1d07b4c334ff658297f0","7a52922b38e9686d5bdc6e75774929eec6688d26c1dfe4a03ddec77ede468e87","aa5efca2833d89b55248f1889a6433dab1b1f41768e9a75f8ce35f9bf56c5ec4","f3cb934699bea498259de69c44a4f93b461f079d72cddb041587afd9312efb6e","006855ddea8674d084173a768f88519dc154be94eba5e2120262a33709832b9b","17dd843a266f99ca4b3a1257538bd1cc69dc5c7f2f23c3891f0430615b8c9c1c","5430364886c721a30475253356162b6c27871718094cb3e69e2bcea71a17e533","1218398da7c8dc4add10bdb3aa2856aad54b123d847eaf574d1d694ac269bfb5","07886b8104556bcc9314b90cd2043f2286e54c1f6ba2ebbc953e1e43232e12be","b637cd92688a6cdf4f8f184ff529dc2bc7f15692828e2c0c66a60e6972f400c7","7061e83d6792897077bcac039fccf7325234004769f591c63a8cf8478bf551bb","51a74c09c3d3fc62fcfefed0a193c3d6388e3e0f8a574bb9d5c5b7cdaa32453a","277a358d61376fce7ac3392402909c96cf6a0a613146549fc0165ccff953e012","50614c808e099a1d4413786f3783d9eeaaa74b267f2c87fcf8a893287e91c301","f4cb6530f248e87cefa74ef623206fec805f6252f885f8e14ef3d1a5872cef2d","38c332caadd8391566552395d592076470a5e7423f70964620eabf05c02907cd","eb17b5bf1fc763a644c21d76572c0e41e351c3f6dfcde649428d5d829f7294d2","cb124162c87b29ff5121e3ee5bb29c782f101e0135d6c2644ab1b31d530a435e","406d6f5d3707c488362fb40d1c1f8a7b0a42b70554b427160185d93e430228f5","2e9776410c5bc290d9432a9215c67398a273e514a79b9e15f32ecddfde8a03be","313ff8df074b81d3e4f088ff3a3a06df3d9b0d0c7f55469ccc2ac887ecb6b867","c718475bca06806cc243e77777641cb67ba68f2c57321a4773ebb47760a3bcf2","96e6bf811343caab5112b68880905c5d20d9257054afac6c18e718a4c549ed27","a2793bc73ba63ca7d259cb0f0b61d0023820170d08a1f9715006c8042d060165","d5011b38165771fdf75a9a06d6d379a1fc7edd7eb695ebdc52319fb6e3c6d81f","88417fb19d339304e9616a38ea513251047c9e300c81f9467fc317df8a582e71","3e8e2d132f726dddbda57819f5391504e585cb3beab6b32203064e7e40618583","6e23627cd3f10418b5b2db102fdcf557b75f2837f266d88afac6b18f333bb1bc","866046dcea88f23d766a65487ee7870c4cf8285a4c75407c80a5c26ed250ef8d","019f4f1cbc781cc15c6173f8be5ef907405722194ab297127b3c3426e5368339","41f4413eac08210dfc1b1cdb5891ad08b05c79f5038bdf8c06e4aedaa85b943d","c79f1c8b51d8475dde8d2973f740f43ca34b1f0a95d93649cd76c1ee20abba19","35f0d2bd2c5c05c0cb19095bf5b7c44365b1c88efe6285370855b90417277a64","8264b129f4c4eb4799703f8e5ee2223a184d1cdbfc782158b1f40a88a4435a1f","527ddda6f8be1279f3294714534c49d6e90f238cea325519882ebf88d7ec5bd2","b23877792e8bd00271d0ec5d401b68e4228540a4316de3d9dfb697b955c161a4","35b2eb1de01633db90d41abe93730b29984856fcc840b4c2801bfd3761a2097b","95f0c9127b879c2fc7e31f8e09ff45bb4aae302e60f4b9ceaf4d9ee6bc51ec66","2a6b4655a6edce9e07c7d826848f72533c9991d40bc36e3f85558ad20e87ce2d","6e3d29fdc96ebbb2ac672d2dae710c689c1ea0d0e9469e0847616f3c38fd085f","d505055b8fadd42da235c85947911d8d198ad70c5f5775991e7821d4f89c90f5","8b5a5852099dca7d7e7a7cef6d681dc1586aafacdb963ca180fe5cabbfa3a24b","0d1aa3341d1ad2064adada71c5d01a2f572e4aac09410e5616d90894105a0eb9","52494ca5a884da3bf11b8165ab31429715f0970d9c6383240c5666f4bd713e01","162fafa2291749df2ab4516854aa781fcee1d9fca2ecd85fb48ae794c0700ce2","b4b9b51ee6f6309cda2e539245235a8caeca2b1d6bf12b5e5c162d17333c450f","d2ffe8356f060b88c1c5cf1fa874a4b779fb87fd1977084876e8be9eab6bf485","c76053984b39150d00ade365b096a8bc21a4a7f2ee9e0a926711b00f8e7bf701","956b510767e3d6f362ea5800510635197723737af5d19ae07ee987ea4a90bfa5","cd1a8ff61f5063d7e6e2094e25d35c90b499961b63911f2f4ae0ff5555c2b4d7","1cf09b5945779e9bc75c4dcd805fb149c28fc90da3335186ef620647a3c540e1","9cdc0b9a313090ec45b34ea1eb02fbace433f509e753634b043e9b83038261e6","c93474cff0088351a65d3cad24037874a26a5371a48528563e56efe31cb3d8bb","b4580df8ea7f62d7b06588001952bf69426e6b03cf3d2569f5f608e45f29ba08","de27f7bb9be9d8a2b4557ec6503b8a315f74d598ce9a0ab81b5ed5610e1a8e81","fe3c378dcefa7ed8b21bd6822f5d7838b1119836da75ae1e1fb485d27b8ffb62","7365bf3333d4277b6fe374ed055624e5ec080dbb919e2d78f1cb75a3f1a4b4f6","a5fbf3bc5c16ab5c84465ba7a043a4bee4c2b20bd3633d50d80118a3844edbaf","0923e4ac8c894ad507bd2daee0df66b699de88467201381ece011ba5a080e1ff","e4f6626f827ea509255647e1b6db82145a2eb1a6b46202655e7d9bb19145c33b","26e23972c40f378f0301d8d7025ea895557c2865a1a31c8ea9c3fff0dbc27075","818469e2f1c49f6cf6f220a81df013daf6e4dc4af7f9c0890ca63ce06d7d7299","e94b01c6c9221682a1ffd8577103408642c5433923420e517d8d8c695c4875c0","466a15bf7238ebd3900d136db38eec3af69d0761c0286ab59952870eedd6e319","9113ebe8d776516d3a302ec431d28915c9398a75beaef1eb38cd66ae0bfeb014","1f4df460bfe98e20fae494ade49e50c98ed1997143c7eae7a00a1cd93bfd4307","e179bf25417780781dc994f657e724419e6dcbe5a136dbfa55efefe36bdb4b63","359cc00faebf7c559a8e2e247fe03319a863eee5c307881fd55cb6e71ee99b9d","a0abcb32b7a9291276879912c9a3205fbd1d6930ae4f29e91fe30227e2762893","b67fb584ca2449669c113e75866d339ee4e6bc74a441efd00c1beac460412584","28810dc1e3da65bd19de2fa2c466620e18563203f8dd10ab3dbdf7893175d480","0f79f9784797e5358bbed18b363b220eaed94de7c1ed2f193465ac232fe48eb1","307f088012744cf2e7bd53f4165108d9f77576b37721c7bf1b7d2c336e6eef6e","456fd4db1a34732c4c4b51a43007c2a2747bdffad79f32c50a258e13c6cf089a",{"version":"9006404a0afaa796d3eaea62ace5dd6e1b2c91e16f5a38327dfa000c5a25ab8b","signature":"8bea35989069f4d91fca5d4ab4f419cb2a6d1f54a98af0c08e78ef6d18ccde8b"},"2304d9cad8c2cecbc5c810090e84986fa65b84fb083a546feb1fa8e43a86890e","6187d97d074e4a66a0179ff2cdd845e1809b70ff5d7b857e0c686f52a86f62f7",{"version":"8dfa0aceb8e6ae9397a3784f720a07d5ce5d133abd26fc146eaa13998f2c4e7e","signature":"f8ad24d3b21efb71918beb6ad06c3fe17674956d93a3220f9c1b40584cd2349a"},"f8167585a01d54b5d5639021a5460058a24c0757fcbcc03399f4188406d6992b","b3a981b18288deef4ebab7b377706695207a914d47013e917ef53e2329f190a8","a6ba2e360543309b68ec6fa3001f9a8a8f7e88f400d7841bd4e6e3ace1292689","63463ba828cfe926a65f723145e95838be675631808f759aa82e21fe69a67817","16c8799f066a9439654b5fe6a51b2837ae068e0c508985a2ebb8dbaf45217f6d","4967a2b3314359959a7489abb299a12d0482b52a3989a816640ee83cb0d2a14b","57c56cfe805fad92c7cbde235c0582f646c7389b0d1868931cf58a51a8647c31","a48e54efa77c04f86c474a8ae49f5043efe9e0df44347b54c1faa07d23a6c096","bef87db30d850bdaca996f64fc1bf3f7b56a4d61f3b93c64bfbc5f266f813c3b","9513cc7890a3a309879f56b0d593744a3351e855d0990259be3b3f9367033d0c","745c59dab1aeadfdc8d7fa72b219cf754ea204902495ee5b0760b695124a719c","c258cf2cb41d521679c7d4abfe780dea35bbe6685bc59da6bf6fcf6eddf0be31","54f64022721fb3d06404d54af359952abeab07039a86c639e8a6309d4f3db9e7","24ab5f67e497d2c2905e345fb4a6c8a3ab5d27c625ce6121d463f9336a66c420","595a5f486aeda3c5839aec852bfa5a4f323cc2225676711abfe11d9328f0f143","35acad8c4d5d645eda408afbbf7bb2153545c86d8c46adc05d8aafd15d5a1b1b","00d8707e8a50f0e45a21a28d36fc85c7fb96916ec40de1221d423c9ad55509aa","83d3ae63e18c8c1f018d891a12359d6cd942524c42fd08155da0988f4ca2608f","8650e6a16468f8edbad0ddb6455b5f6b413c0dde2297117cb881cebbf5f8d8cf","a83b330e3fa7e06cc764a8b5647e5e3fa32b24f1b4b96b3568e1c9bfe57a206b","07393ececbdcb9ba04465b9f5f09354e04a4056763e533fe046c18e2db4d5115","7606da6b0b1dae32360fcd409a1fea9540ef7e6784398c122518615c9e147419","178c24d837f5749fafb57b8f3c7e7e651194179b66e8b8133697612291826587","84a47b30a470bdb90a72f3bd8da4cba0914734aadc71c6ba1d873e1ccfa68216",{"version":"b2a6340d9965e20e5b5674dca65f018ef25aef5c779c2c11de4037c48a095978","signature":"ddeeec4ad6939f7041792f8e54b74179c2dd8302a44458c9ae8c72edc4c07df2"},{"version":"72952a4d4001c461399aa36bcccde68efc01aae9cb00b26673a2f39d37ce3823","signature":"1268919be0a764b26fc63374adb9864ee42486a099f81a45808e614cf557702b"},{"version":"7637eb0054d1602541fd861aafb326f49455ce6d5ca7c893a923009d89565a91","signature":"3eb8c9636c701654e6aeb30d8345464e77198281b5168f5c0c888cdc7127f20b"},"c194f25db7bac0eee4fcfd608b23a995b35f86f1f6f95695bb96abc7992c7496","1c94dc52d22fb68a30c4392feec3cb1b37e881de50e4117760bf13761a8522d6","6f3f99eb1d3a6097a713f13c76d6df2a2f3f59c3023f7de8ce7c47b8e222d315",{"version":"82119a8c2abf5b7ba0d881617ed9f4dbfd916652d3718f3bdda1529731d95dcf","signature":"c4ce1b45426c21960dec3cc436467fd252f09e6561545372c8f5b09fb1dd86cd"},{"version":"22c840e4c29d2f03a9ee4f2ec222963193cf1102c76ab641b7cc3e74a470813b","signature":"e018531501dde4dd0ec5b17569fcbf0cb3ca1a8c1439a34bd27f794535392eec"},{"version":"a75f0f9368e4eb98416c39eb32f1277eb15c2b8b5c4194c34c314ddde34c3aad","signature":"bed0ae76ea0b46e537f17d26c919ad852804c833321d11bc7830f680ab349e7d"},"0dc164463e333b02a0f92e23c54a4142e9b714954c912cebbd08a61b3098d0e8","5a8ea8f4b933fe2a58dad240bd625f3625b952aa3bb70c15b3a34c214d9c7c34",{"version":"9ea09c7aab0f7781eb309d47a203b50aeab2c8b600e8a842a59e6b199aa6480f","signature":"8566c804d009e9929b70bf749de48d7b9c5cae6293a348d04ccde8db740ebb49"},"b545e921a96c9170dc9f788050eb53cede7a5ba4ce243e4eec6bb87e2383ffaf","1e73e8d1bbef5f4b2cd652df6eacf50cbb9a91cd41f974320541d2cfe08ee316",{"version":"f5e34b89cceea7c3f2170eb2903da7989d1a8d8952620dc0ec9cab95b6c9b12e","signature":"cef2afeffdff1ca5b5bc09bd3b49c5c5540061ea64d2bb69331b2bc25052d185"},{"version":"3a4fe76efe65c0a70ef79e4d2943913b071571f5a69d540a5d91fa783ad21d3c","signature":"85adb50581010c9233818b20a36de0b9c35bc1d617b323861724ff48bc8af128"},"2db0dd3aaa2ed285950273ce96ae8a450b45423aa9da2d10e194570f1233fa6b","7394959e5a741b185456e1ef5d64599c36c60a323207450991e7a42e08911419","8e9c23ba78aabc2e0a27033f18737a6df754067731e69dc5f52823957d60a4b6","5929864ce17fba74232584d90cb721a89b7ad277220627cc97054ba15a98ea8f","7180c03fd3cb6e22f911ce9ba0f8a7008b1a6ddbe88ccf16a9c8140ef9ac1686","25c8056edf4314820382a5fdb4bb7816999acdcb929c8f75e3f39473b87e85bc","54cb85a47d760da1c13c00add10d26b5118280d44d58e6908d8e89abbd9d7725","3e4825171442666d31c845aeb47fcd34b62e14041bb353ae2b874285d78482aa","c6fd2c5a395f2432786c9cb8deb870b9b0e8ff7e22c029954fabdd692bff6195","a967bfe3ad4e62243eb604bf956101e4c740f5921277c60debaf325c1320bf88","e9775e97ac4877aebf963a0289c81abe76d1ec9a2a7778dbe637e5151f25c5f3","471e1da5a78350bc55ef8cef24eb3aca6174143c281b8b214ca2beda51f5e04a","cadc8aced301244057c4e7e73fbcae534b0f5b12a37b150d80e5a45aa4bebcbd","385aab901643aa54e1c36f5ef3107913b10d1b5bb8cbcd933d4263b80a0d7f20","9670d44354bab9d9982eca21945686b5c24a3f893db73c0dae0fd74217a4c219","db3435f3525cd785bf21ec6769bf8da7e8a776be1a99e2e7efb5f244a2ef5fee","c3b170c45fc031db31f782e612adf7314b167e60439d304b49e704010e7bafe5","40383ebef22b943d503c6ce2cb2e060282936b952a01bea5f9f493d5fb487cc7","4893a895ea92c85345017a04ed427cbd6a1710453338df26881a6019432febdd","3a84b7cb891141824bd00ef8a50b6a44596aded4075da937f180c90e362fe5f6","13f6f39e12b1518c6650bbb220c8985999020fe0f21d818e28f512b7771d00f9","9b5369969f6e7175740bf51223112ff209f94ba43ecd3bb09eefff9fd675624a","4fe9e626e7164748e8769bbf74b538e09607f07ed17c2f20af8d680ee49fc1da","24515859bc0b836719105bb6cc3d68255042a9f02a6022b3187948b204946bd2","33203609eba548914dc83ddf6cadbc0bcb6e8ef89f6d648ca0908ae887f9fcc5","0db18c6e78ea846316c012478888f33c11ffadab9efd1cc8bcc12daded7a60b6","89167d696a849fce5ca508032aabfe901c0868f833a8625d5a9c6e861ef935d2","e53a3c2a9f624d90f24bf4588aacd223e7bec1b9d0d479b68d2f4a9e6011147f","339dc5265ee5ed92e536a93a04c4ebbc2128f45eeec6ed29f379e0085283542c","9f0a92164925aa37d4a5d9dd3e0134cff8177208dba55fd2310cd74beea40ee2","8bfdb79bf1a9d435ec48d9372dc93291161f152c0865b81fc0b2694aedb4578d","2e85db9e6fd73cfa3d7f28e0ab6b55417ea18931423bd47b409a96e4a169e8e6","c46e079fe54c76f95c67fb89081b3e399da2c7d109e7dca8e4b58d83e332e605","d32275be3546f252e3ad33976caf8c5e842c09cb87d468cb40d5f4cf092d1acc","4a0c3504813a3289f7fb1115db13967c8e004aa8e4f8a9021b95285502221bd1",{"version":"e7be367719c613d580d4b27fdf8fe64c9736f48217f4b322c0d63b2971460918","affectsGlobalScope":true},"3d77c73be94570813f8cadd1f05ebc3dc5e2e4fdefe4d340ca20cd018724ee36",{"version":"392eadc2af403dd10b4debfbc655c089a7fa6a9750caeb770cfb30051e55e848","affectsGlobalScope":true},"62f1c00d3d246e0e3cf0224f91e122d560428ec1ccc36bb51d4574a84f1dbad0","53f0960fdcc53d097918adfd8861ffbe0db989c56ffc16c052197bf115da5ed6",{"version":"662163e5327f260b23ca0a1a1ad8a74078aabb587c904fcb5ef518986987eaff","affectsGlobalScope":true},"a40826e8476694e90da94aa008283a7de50d1dafd37beada623863f1901cb7fb",{"version":"c48c503c6b3f63baf18257e9a87559b5602a4e960107c762586d2a6a62b64a18","affectsGlobalScope":true},"b0c0d1d13be149f790a75b381b413490f98558649428bb916fd2d71a3f47a134","3c884d9d9ec454bdf0d5a0b8465bf8297d2caa4d853851d92cc417ac6f30b969","0364f8bb461d6e84252412d4e5590feda4eb582f77d47f7a024a7a9ff105dfdc","5433f7f77cd1fd53f45bd82445a4e437b2f6a72a32070e907530a4fea56c30c8","d0ca5d7df114035258a9d01165be309371fcccf0cccd9d57b1453204686d1ed0",{"version":"ee1ee365d88c4c6c0c0a5a5701d66ebc27ccd0bcfcfaa482c6e2e7fe7b98edf7","affectsGlobalScope":true},{"version":"9a30b7fefd7f8abbca4828d481c61c18e40fe5ff107e113b1c1fcd2c8dcf2743","affectsGlobalScope":true},"173b6275a81ebdb283b180654890f46516c21199734fed01a773b1c168b8c45c","304f66274aa8119e8d65a49b1cff84cbf803def6afe1b2cc987386e9a9890e22","1b9adafe8a7fefaeaf9099a0e06f602903f6268438147b843a33a5233ac71745","98273274f2dbb79b0b2009b20f74eca4a7146a3447c912d580cd5d2d94a7ae30","c933f7ba4b201c98b14275fd11a14abb950178afd2074703250fe3654fc10cd2","2eaa31492906bc8525aff3c3ec2236e22d90b0dfeee77089f196cd0adf0b3e3b",{"version":"ea455cc68871b049bcecd9f56d4cf27b852d6dafd5e3b54468ca87cc11604e4d","affectsGlobalScope":true},"8f5814f29dbaf8bacd1764aebdf1c8a6eb86381f6a188ddbac0fcbaab855ce52","a63d03de72adfb91777784015bd3b4125abd2f5ef867fc5a13920b5649e8f52b","d20e003f3d518a7c1f749dbe27c6ab5e3be7b3c905a48361b04a9557de4a6900",{"version":"1d4d78c8b23c9ddaaaa49485e6adc2ec01086dfe5d8d4d36ca4cdc98d2f7e74a","affectsGlobalScope":true},{"version":"44fc16356b81c0463cc7d7b2b35dcf324d8144136f5bc5ce73ced86f2b3475b5","affectsGlobalScope":true},"575fb200043b11b464db8e42cc64379c5fd322b6d787638e005b5ee98a64486d","6de2f225d942562733e231a695534b30039bdf1875b377bb7255881f0df8ede8","56249fd3ef1f6b90888e606f4ea648c43978ef43a7263aafad64f8d83cd3b8aa","139ad1dc93a503da85b7a0d5f615bddbae61ad796bc68fedd049150db67a1e26","7b166975fdbd3b37afb64707b98bca88e46577bbc6c59871f9383a7df2daacd1","9eece5e586312581ccd106d4853e861aaaa1a39f8e3ea672b8c3847eedd12f6e","81505c54d7cad0009352eaa21bd923ab7cdee7ec3405357a54d9a5da033a2084","269929a24b2816343a178008ac9ae9248304d92a8ba8e233055e0ed6dbe6ef71","93452d394fdd1dc551ec62f5042366f011a00d342d36d50793b3529bfc9bd633","3c1f19c7abcda6b3a4cf9438a15c7307a080bd3b51dfd56b198d9f86baf19447","2ee1645e0df9d84467cfe1d67b0ad3003c2f387de55874d565094464ee6f2927",{"version":"7da97d603bf3dd0000f56467c56cb6efaf5f94692980474925fae6c33412b12a","affectsGlobalScope":true},{"version":"9cf780e96b687e4bdfd1907ed26a688c18b89797490a00598fa8b8ab683335dd","affectsGlobalScope":true},"98e00f3613402504bc2a2c9a621800ab48e0a463d1eed062208a4ae98ad8f84c","9ae88ce9f73446c24b2d2452e993b676da1b31fca5ceb7276e7f36279f693ed1","e49d7625faff2a7842e4e7b9b197f972633fca685afcf6b4403400c97d087c36","b82c38abc53922b1b3670c3af6f333c21b735722a8f156e7d357a2da7c53a0a0",{"version":"b423f53647708043299ded4daa68d95c967a2ac30aa1437adc4442129d7d0a6c","affectsGlobalScope":true},{"version":"7245af181218216bacb01fbdf51095617a51661f20d77178c69a377e16fb69ed","affectsGlobalScope":true},"4f0fc7b7f54422bd97cfaf558ddb4bca86893839367b746a8f86b60ac7619673","4cdd8b6b51599180a387cc7c1c50f49eca5ce06595d781638fd0216520d98246","d91a7d8b5655c42986f1bdfe2105c4408f472831c8f20cf11a8c3345b6b56c8c",{"version":"8704423bf338bff381ebc951ed819935d0252d90cd6de7dffe5b0a5debb65d07","affectsGlobalScope":true},"7c6929fd7cbf38499b6a600b91c3b603d1d78395046dc3499b2b92d01418b94b",{"version":"ab9b9a36e5284fd8d3bf2f7d5fcbc60052f25f27e4d20954782099282c60d23e","affectsGlobalScope":true},"a42be67ed1ddaec743582f41fc219db96a1b69719fccac6d1464321178d610fc","37093325db9a56278c3e9e87e55aeda28b27533391282ec007c8655634af87d3","531bdea92e1212ddb7c6be94d3d1ca423d4ef5d289f3257eab979aacd9367938",{"version":"f08200becd251c8643635856312a6a3ce4ddb654d0b9ab12e9c20d19bae11f07","signature":"25d88962287a82f07e2348bccfa6a83393aebf0188c45d56704cd2fd45c8ecd2"},{"version":"59a1aed12d5250de987ca7dee3fc25ac8d8a3ab41bf989a5d7ab5cbc2621c9ed","signature":"ba813bf4d8a0aee137ca0689d47ac5934703197e333518292648cb0e5377e2e3"},{"version":"8c23de947d960f10dfb5dd8d1add44993c1743839d91aef1e3d99e2db8164e8e","signature":"a647fdc7aea1f617b81be8270151fb029495a4dd89867e9a94d88b94896feec6"},{"version":"8f1f73664f47c23b8c40b35e74b33f1035b64d8b164fedc669770021540ee426","signature":"7ddbbeb73c0f76255e7919aa0eb9e77a0afea4c2a0fdcdf48f9fb048ca0c1158"},{"version":"44e5cbe3d9c2f71dbb816d3def3088bb9195387b5c285aed1f06eabc2413b991","signature":"66babba14ed36e6fdc83acc24d51cc55e0df33e0e4137d7f1d582c3452047d61"},{"version":"ec008f4714666ae53f5e4603bb975fb73460cd4dcd71d69097fa0f052b7838f7","signature":"b932f86ac9d0f8c90d02b2c6d36509eac00a7607f8ba27f01b0723c0da828e01"},{"version":"b26e20e2bd5d77977acd0f2a33ea68cd763556b276220749bf4dca8399ed9ae7","signature":"2517449e92069163ad7996baa50c563bd9ad08d8a48fbbffdf9daf4ce06ee9c6"},"df6e892afe15e2f9083eb9e72812787e5b9157e403c2c04a731180873e0e8ee6","c2818eb73049331255121829762b8744d244949992be500fe7f4a5db6d3e18cb",{"version":"05d4f98d9f23b409cfaa36bb2270d62f2aacf89381022a1c806cc6b35c9ec999","affectsGlobalScope":true},"5840dd0c69df32d2f9a4726edfeb1e4304217c086390ee57fc3535f1edc967cb","a231722eed95fd2b9a74ab7693eff97efc6be97bdf8931221fbb94482bd3bfe9","14dd1d2088e5867dece3ef7b88c5d0fbef96f1ab1bcee27dceb3855a0f4319eb","f36b4a03d754d1eb9d6a31e08ab4bd1e74e851d17452fdfe61ec7d53040b1cb3","ea6b0f1d32646e8bc79096f20c34474aa2eca3fceb9b1a34d5e2c3c50c332acc",{"version":"8d607be0d4337c4f70ec2705fb077757a5f31731ed99a4a64d93f455b030b33f","signature":"94bd87b4258ed486d7ab2e5d8c17758718b909c34475c5627dcd9bc11424838b"},{"version":"5f1877f46427786a5b7dafc9dfcc3b85fe856daf940ff1efd0ff48f6bcb6d6d9","signature":"8fb0009c19a607394d3a66b43029031c784c58975116dddce49def23f1626458"},"147cb5b590b77c8c58e4ef0af1ff11ee90ee2b34262816df0665b6ff8fd50aad","6e0575b628aedce5db38c17569e5c909beead07f9052fe7944fb8bfccc3db92e",{"version":"9cd8a69c38b48159fc18e44b73a23c234a951bd7a50098230205e6982fd345c1","affectsGlobalScope":true},{"version":"da05cd112e7c5a02335c271fe8165d2f76abef86d59ab5dc2ba9fdc640c6f5f5","signature":"aa6eb1ed02a683d729cd9930163cb14446a23298efc45cf4f3dfbe81d6eb2587"},{"version":"9c5682b7737b276f87e16f2af0a008aa98632fba56c06b4209c1750f506c0566","signature":"c434a84d3d2fa84700fa039f7c5cba68a5555a6fa55334d86db1a5bf6954d603"},{"version":"7eda90d6b52470015aec43b28718bc509d4de340082cbe48e333eb000ee69ea9","signature":"26c609f9376919a5fdabbfcc6295eeeca415df625c14347e4014f1dc9f2a01e3"},{"version":"32101e01593f6d9d793e5c9d4d123cb92b1ee91688c0f97b17b9899c510896b2","signature":"d91567d00d5ef66ba733af0af2c0b275dca5e39986d60d584dd0751d401e33a4"},{"version":"b0a60911c21dd5c700950d46193bc6900b516185dbb9a8ed016a5690ab8d6ede","signature":"9dd6baad2de3294925201f97cf0a496f3f88379e5bfb097ff12f430d9f3d621e"},{"version":"f69f98bbf4298277f81055001a25c1946fc6bfe310559388d4815a0ef6cfe9dc","signature":"f93438a26bbbde17f0fe47a8240db8a9199e56d392a709553ee7687dcb2d69b4"},{"version":"2825e44db4dca2ec91c3261cbd89a5501713744b08b021aa11c449ca6f530596","signature":"ae80e0e5fc350015877854a259a9c720d2d5cefa1a0813627079eb34ecd43450"},{"version":"efbfb9ce2643cf9c30aa8e37d954416316012a8c097e35bf0cfe124bc2d37c8d","signature":"407910f69db1af89d108b14c07be8ac25fc67b12bf2790e5a8d9fa2e3f16947f"},{"version":"bcdf3698495c5466f41d3d16e3de6c44f4a69c03926c98efae5e330a0c122c3e","signature":"4d89e521e74ff6ccb88bd1c9c1a058132a1a8548186cdd214ad7875472826c91"},{"version":"9c17e7996e596f7f4bee6e379378daa346d2c8468d21af864e5f4acc0de384a5","signature":"39552898da0611d5157209a3406fff0e54ca8caa8dc7df13229a2cfc170df5e7"},{"version":"7de0a1dc6d0cd6c7b145f3f4e8e21ad4c4752624f5a733f3ea45efc0a0c4ab5a","signature":"e9cbdd60d300fea3ce0cc44293809303369ce19d1462da8dd86c8228264bb587"},{"version":"c4d70e90cda8a0f81219d060963fa9af1748b42a0955213efcbf3d06f11c6b0a","signature":"1521fe9bacd35682986b23dbfd9d00869db111906c034997315a4b9ed7493a83"},{"version":"f542fce7f0194259df5767108a11bb1baf3bb7c9c872411b376cdfa7d734570b","signature":"a15d533755b78cb986d61c63a0a1fce0a0fb83561a41949c5b77255c2cd0c26b"},{"version":"96ad0a2c60e5d3f666f379dc6d70986c5f9b5dcb3ab7e3338ca8ac31108694fc","signature":"6039c68fdb23471d32de494ce6484e8f4e96041b0d42855fd6293f81c2decaec"},{"version":"3d859b948257217ae4876c6d6685bea7c9a60e2adcd168159aa15a0af657a056","signature":"3b0c04691a3ba35302b7956d9f8ea919c898f76c745fc0231ddc53ada87f1efb"},{"version":"04dc380e08cc9c8c3f7369a78477c10fb135663b790b94c794bc247e810f3278","signature":"e7ab526470978a3520c94ea224deadd4e5b876b1cbec497e73bfe289848aa49a"},{"version":"553faaffd7bffd769269014acd264da424d01201b71b07808dd535fe2712d8c4","signature":"5982967283aa70bc89349bee4b7400a2eb8d05acdf35e4930dda2793d9c1052e"},{"version":"2a49673fc25bcd5c4fe4b874c1c167fb30d193267063d50fea4953b6095496d9","signature":"5982967283aa70bc89349bee4b7400a2eb8d05acdf35e4930dda2793d9c1052e"},{"version":"553faaffd7bffd769269014acd264da424d01201b71b07808dd535fe2712d8c4","signature":"5982967283aa70bc89349bee4b7400a2eb8d05acdf35e4930dda2793d9c1052e"},{"version":"8d05863301d3bb9d9d4ac93023d2458095ba527ed7efce525c2f857fbaac2abb","signature":"e7ab526470978a3520c94ea224deadd4e5b876b1cbec497e73bfe289848aa49a"},{"version":"0cc1ff8040d9851ffe3912256431052279e60f4012bd90532797d987f29477b9","signature":"ca536c508e3c6af4c4f9e677023bdb3ed55b6323fc2dceb096b9dc23d6d3bc52"},{"version":"5586f94aa197beba2d31e464cfc52ae8abcd143d53f5c93fd733ecd75910806d","signature":"e3b0c44298fc1c149afbf4c8996fb92427ae41e4649b934ca495991b7852b855"},{"version":"bdc006420e2e367de651270ebb429cc752399f08b2c293a17f742cc82321befe","signature":"37879103725670ad0da8dc68fdfe4c254a9ca327968e9c343e3764da4823c8a9"},{"version":"36a2e4c9a67439aca5f91bb304611d5ae6e20d420503e96c230cf8fcdc948d94","affectsGlobalScope":true},"8a8eb4ebffd85e589a1cc7c178e291626c359543403d58c9cd22b81fab5b1fb9","247a952efd811d780e5630f8cfd76f495196f5fa74f6f0fee39ac8ba4a3c9800",{"version":"f9d18c70a28d828e1a97294912064e28952c4481a3a12e6880a728f3508c29da","affectsGlobalScope":true},"76473bcf4c38aeed6cde4eaaf8dcc808741dbe5280b957b982603a85421163a6","40c4f089842382be316ea12fd4304184b83181ab0a6aa1050d3014d3a34c5f8f","55584873eae27c5607725f0a9b2123cdea9100fd47cd4bfd582b567a7c363877","2c8e55457aaf4902941dfdba4061935922e8ee6e120539c9801cd7b400fae050","5f02abbb1b17e3d1e68c5eea14adf4705696e6255e2982b010c0dc2a5417b606","670a76db379b27c8ff42f1ba927828a22862e2ab0b0908e38b671f0e912cc5ed","9e0cf651e8e2c5b9bebbabdff2f7c6f8cedd91b1d9afcc0a854cdff053a88f1b","069bebfee29864e3955378107e243508b163e77ab10de6a5ee03ae06939f0bb9","d3f2d715f57df3f04bf7b16dde01dec10366f64fce44503c92b8f78f614c1769","b78cd10245a90e27e62d0558564f5d9a16576294eee724a59ae21b91f9269e4a","17f0ae35f62a9586cade6c10e5a0d61362257b8e03e661c49ca417e4f3da857d","2f5747b1508ccf83fad0c251ba1e5da2f5a30b78b09ffa1cfaf633045160afed",{"version":"a45c25e77c911c1f2a04cade78f6f42b4d7d896a3882d4e226efd3a3fcd5f2c4","affectsGlobalScope":true},"b71c603a539078a5e3a039b20f2b0a0d1708967530cf97dec8850a9ca45baa2b","0e13570a7e86c6d83dd92e81758a930f63747483e2cd34ef36fcdb47d1f9726a","104c67f0da1bdf0d94865419247e20eded83ce7f9911a1aa75fc675c077ca66e","cc0d0b339f31ce0ab3b7a5b714d8e578ce698f1e13d7f8c60bfb766baeb1d35c","5c45abf1e13e4463eacfd5dedda06855da8748a6a6cb3334f582b52e219acc04","62f2d6b25ff2f5a3e73023781800892ff84ea55e9f97c1b23e1a32890a0d1487","858c5fcc43edd48a3795281bd611d0ccc0ff9d7fdce15007be9e30dad87feb8e","7d1466792b53ca98aa82a54dbed78b778a3996d4cbda4c1f3ba3e2ed7ba5683a","1828d8c12af983359ea7d8b87ec847bbaf0f7e6f3c62fb306098467720072354",{"version":"5e2485f40a10d12efc03acf267bee528620075f8dc9f0cb0b570bcb9709ba14e","affectsGlobalScope":true},"fbca1bcd16be145fc0078e6c4d52b12d14c713874994492f7ec4ed4e1e0f7f01","89922e827dec33f5049b5518e7276f999eea41bf28e9eac8dab981eb55f56613",{"version":"d03772741a32a7846bd4ac09c354a6083bfd611e5409646162e254d19e7dab9a","signature":"112d746cb784f7aa68010ec3abdcabe070c5aa5d105b991d02e6cff1f922fc59"},{"version":"eef204f061321360559bd19235ea32a9d55b3ec22a362cc78d14ef50d4db4490","affectsGlobalScope":true},"8a659f7d82d932649a78f89643c5b436953424a219d705d49b8b3d9ccd6e35ff",{"version":"2d412861573a672bd90fdcb1e48740593324565f3b3aaf6808c0e3e2f0d54ae8","affectsGlobalScope":true},{"version":"cd711db43a952f15464b571ac11b7a440332cd52342bc92c4bf908c70688f57f","affectsGlobalScope":true},"9d8709c916778cb34830708ed47b78e9a46d1fb2eb73a682b14eee990bed4aa6",{"version":"507e2131e89b515ce40c05c0c2fef6cc575ba8947703f92e8cdf36078747a9ff","affectsGlobalScope":true},"999a90d30a3183dcee987d0a5a7c586aba5bacbf6ce087ba8635124082ccfeea","8a5878edd52f4a720560b4c6e6247e9ddc3df6118ad9cf2f9927903b03d5f440",{"version":"e7be17cfcbe98809c052f384c230ecea9e1cee045edac9db0659e997a988ff9e","affectsGlobalScope":true},"7d2a0ba1297be385a89b5515b88cd31b4a1eeef5236f710166dc1b36b1741e1b","8e87660f5170c195ade218937e360484775be6a4e75a098665d9ba5a2e4cdc15",{"version":"525b52b38b44420fb1758c0917e7b67cf379f7f9477d2ba7343f3d5f50a44258","affectsGlobalScope":true},"65b91a3725399231d3469529b5e27b85bf2aa98013e607f308e5fe260b47eeff","a11181f6d68200e83ccb1fb48b262a7132a3257e0a230f41c9dc4c351964297a","2f84bc2655654a2d8c149f5086a7e99ba1f2807dfc3a5b4ab7ee6e01f5e40e8f","0c8bec80ec9f9c2280384f378658f7617e0cdec533ce73917924e56bedbad096","359f23bc7fccaec08632ee5c33eb333a5b207fc8ae17c881c7b69919aced4d58","51bce1535d9cb87390d75581866d79de7b2e2cb525a89fba84411c8bb5be52d2","88cda4269c54f0803834fd62b2fac61af8bff7a085693f7ca9df85c1f19dee8a",{"version":"4adff7bda52ad8e5570a03f896ddb148abf3a7305ba35cbbcfc880d0f4d0c664","affectsGlobalScope":true},"754006450e5de2b7dac5993194326e3a65c1474673f7304c20810f5eda18ca05","fdf0aa1a72ff0188a9013926201a391116ef6701cd439b89850786abdf755fb8","0b5817d9435c019648f2a2326eaf1086efb72e8e90e28eb53a58b2f31f61e161","abf9ea97b78a7b239186cf5b7ed59c4a593abac3c408c8c95fc5e604cfdfdb43","ae91c9161caf0af81c89e780a045fc5ea8382407e516342e409c5db9161d3b32","d30c69f9eb16583b0a406358224c312b865514a6a7c787a57f16ef08e49b1886","5e02756608c1ac8ddf96878c3af3d4db7ed4e272aef24837e255859ee0a4fb71","4a662115c4c7186cc027ef4a8163e48c7f1c57f05247f08d5acb2344fae2ca53","d598157512ae6e0d3aa6bb0dd261ae34845831dccf7bc7739695ee2589eb76f5","905fbc07f65451b05cb5594d162674eb3ef8f2bf5f13552a1702215664aae3e7","50f63746fc2a779d1f9c5657fd78e292045dc98b540e026799e039ea629f2943",{"version":"317da6b41e240cdc9e8e82289d6b34170e4bb65f9a7a5f37fcd060dd7856e7c5","signature":"e2163846f7c36dfc18f943ae762f94e730f7763853e04d89d37ba3e20e4ca6e5"},"87f287f296f3ff07dbd14ea7853c2400d995dccd7bd83206196d6c0974774e96","3dcefe176e6dce7a06bd345522e19f631f7fdb370335e2e93bc225b3afbb0bd0","7578ed901eec5f590609fc7a6ba9027be5735ad1aedef119aa56d53a22dfbe02","5b7206ca5f2f6eeaac6daa285664f424e0b728f3e31937da89deb8696c5f1dbc","0504070e7eaba788f5d0d5926782ed177f1db01cee28363c488fae94950c0bbc","1e87d58d3678958d89e2a94454afcc827f1aa6363abbcbd4f99729e65ab47995","6847334317c1bc1e6fc4b679b0095bbd2b6ee3b85fe3f26fc26bac462f68ef5e","2224f3072e3cc07906eeed5c71746779511fba2dd224addc5489bcdb489bdee5","c269a12e83c5ffc0332b1f245008e4e621e483dd2f8b9b77fc6a664fcde4969d","072099609280e6659eb29b1d2a601e95708c90b7db2aba2571ebda50d1be0dd5","72dff7d18139f0d579db7e4b904fb39f5740423f656edc1f84e4baa936b1fac0","febcc45f9517827496659c229a21b058831eef4cf9b71b77fd9a364ae12c3b9e","f2a60d253f7206372203b736144906bf135762100a2b3d1b415776ebf6575d07",{"version":"8deffe6a16ad21ba5787f738ef7f184fe5f4da9cd5ae948ffe853da2348e9aad","affectsGlobalScope":true},"89ccbe04e737ce613f5f04990271cfa84901446350b8551b0555ddf19319723b","19f1159e1fa24300e2eaf72cb53f0815f5879ec53cad3c606802f0c55f0917e9","afe73051ff6a03a9565cbd8ebb0e956ee3df5e913ad5c1ded64218aabfa3dcb5","3f841292a135503a4cc1a9029af59dae135595810cfad5ca62ec1b2ad9846e8e","035a5df183489c2e22f3cf59fc1ed2b043d27f357eecc0eb8d8e840059d44245","a4809f4d92317535e6b22b01019437030077a76fec1d93b9881c9ed4738fcc54","5f53fa0bd22096d2a78533f94e02c899143b8f0f9891a46965294ee8b91a9434","f3d8c757e148ad968f0d98697987db363070abada5f503da3c06aefd9d4248c1","96d14f21b7652903852eef49379d04dbda28c16ed36468f8c9fa08f7c14c9538","7e8d3f08435ad2cefe67f58182618bfc9a0a29db08cf2544b94cbcae754a9bd9","8cf9b9045a614f883b623c2f1a631ec6a93321747e933330b2eec0ee47164a34","ff81bffa4ecfceae2e86b5920c3fcb250b66b1d6ed72944dffdf58123be2481b","458111fc89d11d2151277c822dfdc1a28fa5b6b2493cf942e37d4cd0a6ee5f22","da2b6356b84a40111aaecb18304ea4e4fcb43d70efb1c13ca7d7a906445ee0d3","187119ff4f9553676a884e296089e131e8cc01691c546273b1d0089c3533ce42","aa2c18a1b5a086bbcaae10a4efba409cc95ba7287d8cf8f2591b53704fea3dea","6f294731b495c65ecf46a5694f0082954b961cf05463bea823f8014098eaffa0","0aaef8cded245bf5036a7a40b65622dd6c4da71f7a35343112edbe112b348a1e","00baffbe8a2f2e4875367479489b5d43b5fc1429ecb4a4cc98cfc3009095f52a","6c65d33115c7410ecbb59db5fcbb042fc6b831a258d028dbb06b42b75d8459c1","3c92b6dfd43cc1c2485d9eba5ff0b74a19bb8725b692773ef1d66dac48cda4bd","b03afe4bec768ae333582915146f48b161e567a81b5ebc31c4d78af089770ac9","df996e25faa505f85aeb294d15ebe61b399cf1d1e49959cdfaf2cc0815c203f9","4f6a12044ee6f458db11964153830abbc499e73d065c51c329ec97407f4b13dd","f8a6bb79327f4a6afc63d28624654522fc80f7536efa7a617ef48200b7a5f673","8e0733c50eaac49b4e84954106acc144ec1a8019922d6afcde3762523a3634af","169cc96316cacf8b489aaab4ac6bcef7b33e8779a8902bce57c737b4aa372d16",{"version":"5f186a758a616c107c70e8918db4630d063bd782f22e6e0b17573b125765b40b","affectsGlobalScope":true},"736097ddbb2903bef918bb3b5811ef1c9c5656f2a73bd39b22a91b9cc2525e50","4340936f4e937c452ae783514e7c7bbb7fc06d0c97993ff4865370d0962bb9cf","5fc6e6b8232254d80ed6b802372dba7f426f0a596f5fe26b7773acfdc8232926","22293bd6fa12747929f8dfca3ec1684a3fe08638aa18023dd286ab337e88a592","916be7d770b0ae0406be9486ac12eb9825f21514961dd050594c4b250617d5a8","fc37aca06f6b8b296c42412a2e75ab53d30cd1fa8a340a3bb328a723fd678377","5f2c582b9ef260cb9559a64221b38606378c1fabe17694592cdfe5975a6d7efa","d7c30ea636d7d7cbeba0795baa8ec1bbd06274bd19a23ec0d7c84d0610a5f0c7","8a19491eba2108d5c333c249699f40aff05ad312c04a17504573b27d91f0aede","cf3d384d082b933d987c4e2fe7bfb8710adfd9dc8155190056ed6695a25a559e","9871b7ee672bc16c78833bdab3052615834b08375cb144e4d2cba74473f4a589","c863198dae89420f3c552b5a03da6ed6d0acfa3807a64772b895db624b0de707","8b03a5e327d7db67112ebbc93b4f744133eda2c1743dbb0a990c61a8007823ef","86c73f2ee1752bac8eeeece234fd05dfcf0637a4fbd8032e4f5f43102faa8eec","42fad1f540271e35ca37cecda12c4ce2eef27f0f5cf0f8dd761d723c744d3159","ff3743a5de32bee10906aff63d1de726f6a7fd6ee2da4b8229054dfa69de2c34","83acd370f7f84f203e71ebba33ba61b7f1291ca027d7f9a662c6307d74e4ac22","1445cec898f90bdd18b2949b9590b3c012f5b7e1804e6e329fb0fe053946d5ec","0e5318ec2275d8da858b541920d9306650ae6ac8012f0e872fe66eb50321a669","cf530297c3fb3a92ec9591dd4fa229d58b5981e45fe6702a0bd2bea53a5e59be","c1f6f7d08d42148ddfe164d36d7aba91f467dbcb3caa715966ff95f55048b3a4","f4e9bf9103191ef3b3612d3ec0044ca4044ca5be27711fe648ada06fad4bcc85","0c1ee27b8f6a00097c2d6d91a21ee4d096ab52c1e28350f6362542b55380059a","7677d5b0db9e020d3017720f853ba18f415219fb3a9597343b1b1012cfd699f7","bc1c6bc119c1784b1a2be6d9c47addec0d83ef0d52c8fbe1f14a51b4dfffc675","52cf2ce99c2a23de70225e252e9822a22b4e0adb82643ab0b710858810e00bf1","770625067bb27a20b9826255a8d47b6b5b0a2d3dfcbd21f89904c731f671ba77","d1ed6765f4d7906a05968fb5cd6d1db8afa14dbe512a4884e8ea5c0f5e142c80","799c0f1b07c092626cf1efd71d459997635911bb5f7fc1196efe449bba87e965","2a184e4462b9914a30b1b5c41cf80c6d3428f17b20d3afb711fff3f0644001fd","9eabde32a3aa5d80de34af2c2206cdc3ee094c6504a8d0c2d6d20c7c179503cc","397c8051b6cfcb48aa22656f0faca2553c5f56187262135162ee79d2b2f6c966","a8ead142e0c87dcd5dc130eba1f8eeed506b08952d905c47621dc2f583b1bff9","a02f10ea5f73130efca046429254a4e3c06b5475baecc8f7b99a0014731be8b3","c2576a4083232b0e2d9bd06875dd43d371dee2e090325a9eac0133fd5650c1cb","4c9a0564bb317349de6a24eb4efea8bb79898fa72ad63a1809165f5bd42970dd","f40ac11d8859092d20f953aae14ba967282c3bb056431a37fced1866ec7a2681","cc11e9e79d4746cc59e0e17473a59d6f104692fd0eeea1bdb2e206eabed83b03","b444a410d34fb5e98aa5ee2b381362044f4884652e8bc8a11c8fe14bbd85518e","c35808c1f5e16d2c571aa65067e3cb95afeff843b259ecfa2fc107a9519b5392","14d5dc055143e941c8743c6a21fa459f961cbc3deedf1bfe47b11587ca4b3ef5","a3ad4e1fc542751005267d50a6298e6765928c0c3a8dce1572f2ba6ca518661c","f237e7c97a3a89f4591afd49ecb3bd8d14f51a1c4adc8fcae3430febedff5eb6","3ffdfbec93b7aed71082af62b8c3e0cc71261cc68d796665faa1e91604fbae8f","662201f943ed45b1ad600d03a90dffe20841e725203ced8b708c91fcd7f9379a","c9ef74c64ed051ea5b958621e7fb853fe3b56e8787c1587aefc6ea988b3c7e79","2462ccfac5f3375794b861abaa81da380f1bbd9401de59ffa43119a0b644253d","34baf65cfee92f110d6653322e2120c2d368ee64b3c7981dff08ed105c4f19b0","7d8ddf0f021c53099e34ee831a06c394d50371816caa98684812f089b4c6b3d4","6d09838b65c3c780513878793fc394ae29b8595d9e4729246d14ce69abc71140","7d2b7fe4adb76d8253f20e4dbdce044f1cdfab4902ec33c3604585f553883f7d","bc81aff061c53a7140270555f4b22da4ecfe8601e8027cf5aa175fbdc7927c31","bae8d023ef6b23df7da26f51cea44321f95817c190342a36882e93b80d07a960","5d30d04a14ed8527ac5d654dc345a4db11b593334c11a65efb6e4facc5484a0e","74d5a87c3616cd5d8691059d531504403aa857e09cbaecb1c64dfb9ace0db185"],"options":{"allowSyntheticDefaultImports":true,"declaration":true,"esModuleInterop":false,"experimentalDecorators":true,"importHelpers":true,"inlineSources":true,"module":99,"noEmitOnError":true,"outDir":"./","rootDir":"..","sourceMap":true,"strict":true,"target":5,"useDefineForClassFields":false},"fileIdsList":[[452],[261,262,264],[257,258,259,260],[259],[257,259,260],[258,259,260],[258],[262,264,265],[262,265],[263],[262,265,400],[267],[46],[411],[55],[47,57],[55,410],[410,411,412,413,414,415,416],[47],[57],[47,57,65],[45,46],[496],[47,494,495],[47,494],[476,477],[478],[477,479],[489,492,499,500,501,503,504],[493,497],[498],[494],[493,498,502],[493],[476,488,505],[480,483,484,487],[468,469,470],[468],[365,449,451,457,467,471],[55,472,473],[55,472],[365,400],[452,453,454,455,456],[452,454],[365,400,465],[476],[365,400,460],[365,400,465,467,514],[351,400],[362,365,400,459,460,461],[460,462,464,466],[363,400],[526],[527],[532],[349,362,365,366,370,376,392,400,463,508,512,514,515,525,531],[533,535,536,537,538,539,540,541,542,543,544,545],[533,534,536,537,538,539,540,541,542,543,544,545],[534,535,536,537,538,539,540,541,542,543,544,545],[533,534,535,537,538,539,540,541,542,543,544,545],[533,534,535,536,538,539,540,541,542,543,544,545],[533,534,535,536,537,539,540,541,542,543,544,545],[533,534,535,536,537,538,540,541,542,543,544,545],[533,534,535,536,537,538,539,541,542,543,544,545],[533,534,535,536,537,538,539,540,542,543,544,545],[533,534,535,536,537,538,539,540,541,543,544,545],[533,534,535,536,537,538,539,540,541,542,544,545],[533,534,535,536,537,538,539,540,541,542,543,545],[533,534,535,536,537,538,539,540,541,542,543,544],[546,547],[365,392,400,550,551],[313],[349],[350,355,384],[351,356,362,363,370,381,392],[351,352,362,370],[353,393],[354,355,363,371],[355,381,389],[356,358,362,370],[349,357],[358,359],[362],[360,362],[349,362],[362,363,364,381,392],[362,363,364,377,381,384],[347,350,397],[358,362,365,370,381,392],[362,363,365,366,370,381,389,392],[365,367,381,389,392],[313,314,348,349,350,351,352,353,354,355,356,357,358,359,360,361,362,363,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,390,391,392,393,394,395,396,397,398,399],[362,368],[369,392,397],[358,362,370,381],[371],[372],[349,373],[370,371,374,391,397],[375],[376],[362,377,378],[377,379,393,395],[350,362,381,382,383,384],[350,381,383],[381,382],[384],[385],[349,381],[362,387,388],[387,388],[355,370,381,389],[390],[370,391],[350,365,376,392],[355,393],[381,394],[369,395],[396],[350,355,362,364,373,381,392,395,397],[381,398],[555],[556],[446,447,448],[400],[559,598],[559,583,598],[598],[559],[559,584,598],[559,560,561,562,563,564,565,566,567,568,569,570,571,572,573,574,575,576,577,578,579,580,581,582,583,584,585,586,587,588,589,590,591,592,593,594,595,596,597],[584,598],[363,381,400,458],[365,400,459,463],[476,486],[485],[48],[362,365,367,370,381,389,392,398,400],[602],[362,381,400],[482],[481],[450],[265],[270],[309],[306],[401],[365,381,400],[47,51],[49,50],[491],[49,490],[58,59,60,61,62,63,64,65,66],[420],[47,51,53,54],[51],[50,51],[273,274,276,278,279,280,281,282,283,284,285,286,287,288,289],[273],[256,273],[273,277],[256],[256,273,275],[68,69,70,71,72,73,74,75,76,77,78,79,80,81,82,84,86,87,88,89,90,91,92,93,94,95,96,97,98,99,100,101,102,103,104,105,106,107,108,109,110,111,112,113,114,115,116,117,118,119,120,121,122,124,125,126,127,128,129,130,131,132,133,134,135,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,181,182,183,184,185,187,188,189,191,200,202,203,204,205,206,207,209,210,212,214,215,216,217,218,219,220,221,222,223,224,225,226,227,228,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],[113],[71,72],[68,69,70,72],[69,72],[72,113],[68,72,190],[70,71,72],[68,72],[72],[71],[68,71,113],[69,71,72,229],[71,72,229],[71,237],[69,71,72],[81],[104],[125],[71,72,113],[72,120],[71,72,113,131],[71,72,131],[72,172],[68,72,191],[197,199],[68,72,190,197,198],[190,191,199],[197],[68,72,197,198,199],[213],[208],[211],[69,71,191,192,193,194],[113,191,192,193,194],[191,193],[71,192,193,195,196,200],[68,71],[72,215],[73,74,75,76,77,78,79,80,81,82,83,84,85,86,87,88,89,90,91,92,93,94,95,96,97,98,99,100,101,102,103,104,105,106,107,108,109,110,111,112,114,115,116,117,118,119,121,122,123,124,125,126,127,128,129,130,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,181,182,183,184,185,186,187,188],[201],[300,301],[256,296],[291],[291,292],[291,292,293,294,295],[324,328,392],[324,381,392],[319],[321,324,389,392],[370,389],[319,400],[321,324,370,392],[316,317,320,323,350,362,381,392],[316,322],[320,324,350,384,392,400],[350,400],[340,350,400],[318,319,400],[324],[318,319,320,321,322,323,324,325,326,328,329,330,331,332,333,334,335,336,337,338,339,341,342,343,344,345,346],[324,331,332],[322,324,332,333],[323],[316,319,324],[324,328,332,333],[328],[322,324,327,392],[316,321,322,324,328,331],[350,381],[319,324,340,350,397,400],[44,55,56,67,256,266,269,297,298,303,304,405,406,407,408,419,423,424,425,426],[44,55,67],[44,55,67,429],[44,55,67,409,418],[44,55],[44,55,67,433],[44,55,67,417],[44,55,67,418],[44],[43,44,437],[44,439],[43,44,441],[44,298,304],[44,269,297,298,303,304,311,405,407,418,427,428,429,430,431,432,433,434,435,436,438,440,442],[44,55,56,67],[44,55,268,269,405],[44,266,271],[44,266,269,402,405],[44,266,310],[44,266,269,307],[44,304],[44,269],[44,266,269,272,305,308,311,312,403,404,406],[44,55,266],[44,269,290,299,303],[44,296,297],[44,189,290,298,302],[44,296,297,298],[44,290,299],[44,55,426,474],[44,55,67,297,417,421],[44,55,67,405],[44,55,67,421,422],[44,55,443,506],[393],[257,258,259,260,393],[259,393],[257,259,260,393],[258,259,260,393],[258,393],[262,265,393],[263,393],[267,393],[46,393],[393,411],[55,393],[47,57,393],[55,393,410],[393,410,411,412,413,414,415,416],[47,393],[57,393],[47,57,65,393],[45,46,393],[393,496],[47,393,494,495],[47,393,494],[393,476,477],[393,478],[393,477,479],[393,489,492,499,500,501,503,504],[393,493,497],[393,498],[393,494],[393,493,498,502],[393,493],[393,476,488,505],[393,480,483,484,487],[393,468,469,470],[393,468],[365,393,400],[393,452,453,454,455,456],[393,452,454],[365,393,400,465],[393,476],[365,393,400,460],[351,393,400],[393,460,462,464,466],[363,393,400],[393,526],[393,527],[393,532],[393,533,535,536,537,538,539,540,541,542,543,544,545],[393,533,534,536,537,538,539,540,541,542,543,544,545],[393,533,534,535,537,538,539,540,541,542,543,544,545],[393,533,534,535,536,537,539,540,541,542,543,544,545],[393,533,534,535,536,537,538,540,541,542,543,544,545],[393,533,534,535,536,537,538,539,541,542,543,544,545],[393,533,534,535,536,537,538,539,540,541,543,544,545],[393,533,534,535,536,537,538,539,540,541,542,544,545],[393,533,534,535,536,537,538,539,540,541,542,543,545],[393,533,534,535,536,537,538,539,540,541,542,543,544],[313,393],[354,355,363,371,393],[350,381,383,393],[381,382,393],[393,555],[393,556],[393,400],[393,559,598],[393,559,583,598],[393,598],[393,559],[393,559,584,598],[393,584,598],[363,381,393,400,458],[393,476,486],[48,393],[362,365,367,370,381,389,392,393,398,400],[393,602],[362,381,393,400],[393,482],[393,481],[393,450],[265,393],[393,605],[309,393],[306,393],[365,381,393,400],[47,393,491],[49,50,393],[393,491],[49,393,490],[58,59,60,61,62,63,64,65,66,393],[393,606],[47,53,393,491,607],[51,393],[50,51,393],[273,274,276,278,279,280,281,282,283,284,285,286,287,288,289,393],[273,393],[256,273,393],[273,277,393],[256,393],[256,273,275,393],[68,69,70,71,72,73,74,75,76,77,78,79,80,81,82,84,86,87,88,89,90,91,92,93,94,95,96,97,98,99,100,101,102,103,104,105,106,107,108,109,110,111,112,113,114,115,116,117,118,119,120,121,122,124,125,126,127,128,129,130,131,132,133,134,135,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,181,182,183,184,185,187,188,189,191,200,202,203,204,205,206,207,209,210,212,214,215,216,217,218,219,220,221,222,223,224,225,226,227,228,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,393],[113,393],[71,72,393],[68,69,70,72,393],[69,72,393],[72,113,393],[68,72,190,393],[70,71,72,393],[68,72,393],[72,393],[71,393],[68,71,113,393],[69,71,72,229,393],[71,72,229,393],[71,237,393],[69,71,72,393],[81,393],[104,393],[125,393],[71,72,113,393],[72,120,393],[71,72,113,131,393],[71,72,131,393],[72,172,393],[68,72,191,393],[197,199,393],[68,72,190,197,198,393],[190,191,199,393],[197,393],[68,72,197,198,199,393],[213,393],[208,393],[211,393],[69,71,191,192,193,194,393],[113,191,192,193,194,393],[191,193,393],[71,192,193,195,196,200,393],[68,71,393],[72,215,393],[73,74,75,76,77,78,79,80,81,82,83,84,85,86,87,88,89,90,91,92,93,94,95,96,97,98,99,100,101,102,103,104,105,106,107,108,109,110,111,112,114,115,116,117,118,119,121,122,123,124,125,126,127,128,129,130,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,181,182,183,184,185,186,187,188,393],[201,393],[324,328,392,393],[324,381,392,393],[319,393],[321,324,389,392,393],[370,389,393],[319,393,400],[321,324,370,392,393],[316,317,320,323,350,362,381,392,393],[316,322,393],[320,324,350,384,392,393,400],[350,393,400],[340,350,393,400],[318,319,393,400],[324,393],[318,319,320,321,322,323,324,325,326,328,329,330,331,332,333,334,335,336,337,338,339,341,342,343,344,345,346,393],[324,331,332,393],[322,324,332,333,393],[323,393],[316,319,324,393],[324,328,332,333,393],[328,393],[322,324,327,392,393],[316,321,322,324,328,331,393],[350,381,393],[319,324,340,350,393,397,400],[55,56,256,269,297,406,408,419,423,424,425,426],[55,409,418],[55,433],[55,418],[269,297,298,303,304,311,405,407,418,427,428,429,430,431,432,433,434,435,436,438,440,442],[55,56],[55,269],[266,271],[266,269,402],[266,310],[266,269],[269],[269,406],[55,266],[269,290],[297],[296,297],[280,297],[55,426,472,474],[55,297],[55,422]],"referencedMap":[[454,1],[265,2],[261,3],[260,4],[258,5],[257,6],[259,7],[309,8],[306,9],[264,10],[401,11],[268,12],[267,13],[415,14],[413,15],[414,16],[410,14],[411,17],[417,18],[57,19],[58,20],[61,16],[59,16],[63,16],[66,21],[64,16],[62,16],[60,20],[47,22],[497,23],[496,24],[495,25],[478,26],[479,27],[480,28],[505,29],[498,30],[499,31],[501,32],[503,33],[493,15],[502,34],[504,31],[506,35],[488,36],[471,37],[469,38],[470,38],[472,39],[474,40],[473,41],[508,42],[457,43],[453,1],[455,44],[456,1],[466,45],[484,46],[510,47],[465,42],[515,48],[516,49],[462,50],[467,51],[524,52],[527,53],[528,54],[531,55],[532,56],[534,57],[535,58],[533,59],[536,60],[537,61],[538,62],[539,63],[540,64],[541,65],[542,66],[543,67],[544,68],[545,69],[547,70],[552,71],[313,72],[314,72],[349,73],[350,74],[351,75],[352,76],[353,77],[354,78],[355,79],[356,80],[357,81],[358,82],[359,82],[361,83],[360,84],[362,85],[363,86],[364,87],[348,88],[365,89],[366,90],[367,91],[400,92],[368,93],[369,94],[370,95],[371,96],[372,97],[373,98],[374,99],[375,100],[376,101],[377,102],[378,102],[379,103],[381,104],[383,105],[382,106],[384,107],[385,108],[386,109],[387,110],[388,111],[389,112],[390,113],[391,114],[392,115],[393,116],[394,117],[395,118],[396,119],[397,120],[398,121],[556,122],[555,123],[449,124],[558,125],[583,126],[584,127],[559,128],[562,128],[581,126],[582,126],[572,126],[571,129],[569,126],[564,126],[577,126],[575,126],[579,126],[563,126],[576,126],[580,126],[565,126],[566,126],[578,126],[560,126],[567,126],[568,126],[570,126],[574,126],[585,130],[573,126],[561,126],[598,131],[592,130],[594,132],[593,130],[586,130],[587,130],[589,130],[591,130],[595,132],[596,132],[588,132],[590,132],[459,133],[464,134],[487,135],[486,136],[49,137],[601,138],[603,139],[604,140],[481,46],[483,141],[482,142],[451,143],[266,144],[271,145],[310,146],[307,147],[270,9],[402,148],[550,149],[53,150],[52,151],[490,152],[491,153],[492,152],[67,154],[421,155],[55,156],[50,157],[420,158],[51,151],[290,159],[289,160],[277,161],[279,162],[288,161],[284,160],[283,160],[282,160],[285,160],[278,162],[287,161],[273,163],[275,161],[276,164],[274,161],[286,163],[281,161],[256,165],[207,166],[205,166],[120,167],[71,168],[70,169],[206,170],[191,171],[113,172],[69,173],[68,174],[255,169],[220,175],[219,175],[131,176],[227,167],[228,167],[230,177],[231,167],[232,174],[233,167],[204,167],[234,167],[235,178],[236,167],[237,175],[238,179],[239,167],[240,167],[241,167],[242,167],[243,175],[244,167],[245,167],[246,167],[247,167],[248,180],[249,167],[250,167],[251,167],[252,167],[253,167],[73,174],[74,174],[75,174],[76,174],[77,174],[78,174],[79,174],[80,167],[82,181],[83,174],[81,174],[84,174],[85,174],[86,174],[87,174],[88,174],[89,174],[90,167],[91,174],[92,174],[93,174],[94,174],[95,174],[96,167],[97,174],[98,174],[99,174],[100,174],[101,174],[102,174],[103,167],[105,182],[104,174],[106,174],[107,174],[108,174],[109,174],[110,180],[111,167],[112,167],[126,183],[114,184],[115,174],[116,174],[117,167],[118,174],[119,174],[121,185],[122,174],[123,174],[124,174],[125,174],[127,174],[128,174],[129,174],[130,174],[132,186],[133,174],[134,174],[135,174],[136,167],[137,174],[138,187],[139,187],[140,187],[141,167],[142,174],[143,174],[144,174],[149,174],[145,174],[146,167],[147,174],[148,167],[150,174],[151,174],[152,174],[153,174],[154,174],[155,174],[156,167],[157,174],[158,174],[159,174],[160,174],[161,174],[162,174],[163,174],[164,174],[165,174],[166,174],[167,174],[168,174],[169,174],[170,174],[171,174],[172,174],[173,188],[174,174],[175,174],[176,174],[177,174],[178,174],[179,174],[180,167],[181,167],[182,167],[183,167],[184,167],[185,174],[186,174],[187,174],[188,174],[254,167],[190,189],[213,190],[208,190],[199,191],[197,192],[211,193],[200,194],[214,195],[209,196],[210,193],[212,197],[195,198],[196,199],[194,200],[192,174],[201,201],[72,202],[218,175],[216,203],[189,204],[202,205],[302,206],[300,207],[301,163],[292,208],[293,209],[296,210],[294,209],[295,209],[331,211],[338,212],[330,211],[345,213],[322,214],[321,215],[344,125],[339,216],[342,217],[324,218],[323,219],[319,220],[318,221],[341,222],[320,223],[325,224],[329,224],[347,225],[346,224],[333,226],[334,227],[336,228],[332,229],[335,230],[340,125],[327,231],[328,232],[337,233],[317,234],[343,235],[427,236],[429,237],[430,238],[419,239],[431,240],[434,241],[435,241],[418,242],[433,237],[432,243],[445,244],[438,245],[440,246],[442,247],[437,244],[439,244],[441,244],[428,248],[443,249],[297,244],[408,250],[406,251],[272,252],[403,253],[311,254],[308,255],[305,256],[312,257],[404,257],[405,258],[269,259],[436,248],[304,260],[298,261],[303,262],[299,263],[407,264],[475,265],[426,266],[409,267],[423,268],[424,237],[425,237],[507,269]],"exportedModulesMap":[[43,270],[454,1],[265,2],[261,271],[260,272],[258,273],[257,274],[259,275],[309,8],[306,276],[264,277],[263,270],[401,11],[268,278],[267,279],[415,280],[416,270],[412,270],[413,281],[414,282],[410,280],[411,283],[417,284],[45,270],[57,285],[58,286],[61,282],[59,282],[63,282],[66,287],[65,270],[64,282],[62,282],[60,286],[46,270],[47,288],[494,270],[497,289],[496,290],[495,291],[478,292],[479,293],[477,270],[480,294],[505,295],[489,270],[498,296],[499,297],[500,270],[501,298],[503,299],[493,281],[502,300],[504,297],[506,301],[488,302],[471,303],[468,270],[469,304],[470,304],[472,39],[474,40],[473,41],[508,305],[509,270],[457,306],[453,1],[455,307],[456,1],[466,308],[484,309],[510,310],[511,270],[465,305],[512,270],[513,270],[515,48],[516,311],[517,270],[518,270],[519,270],[520,270],[522,270],[462,50],[467,312],[523,270],[524,313],[422,270],[525,270],[463,270],[526,270],[527,314],[528,315],[529,270],[530,270],[514,270],[531,316],[532,56],[534,317],[535,318],[533,59],[536,319],[537,61],[538,320],[539,321],[540,322],[541,65],[542,323],[543,324],[544,325],[545,326],[547,70],[548,270],[458,270],[549,270],[551,270],[552,71],[313,72],[314,327],[349,73],[350,74],[351,75],[352,76],[353,77],[354,328],[355,79],[356,80],[357,81],[358,82],[359,82],[361,83],[360,84],[362,85],[363,86],[364,87],[348,88],[399,270],[365,89],[366,90],[367,91],[400,92],[368,93],[369,94],[370,95],[371,96],[372,97],[373,98],[374,99],[375,100],[376,101],[377,102],[378,102],[379,103],[381,104],[383,329],[382,330],[384,107],[385,108],[386,109],[387,110],[388,111],[389,112],[390,113],[391,114],[392,115],[393,116],[394,117],[395,118],[396,119],[397,120],[398,121],[553,270],[554,270],[556,331],[555,332],[557,270],[461,270],[449,124],[558,333],[583,334],[584,335],[559,128],[562,336],[581,334],[582,334],[572,334],[571,337],[569,334],[564,334],[577,334],[575,334],[579,334],[563,334],[576,334],[580,334],[565,334],[566,334],[578,334],[560,334],[567,334],[568,334],[570,334],[574,334],[585,338],[573,334],[561,334],[598,131],[597,270],[592,338],[594,339],[593,338],[586,338],[587,338],[589,338],[591,338],[595,339],[596,339],[588,339],[590,339],[459,340],[464,134],[487,341],[486,136],[485,270],[49,342],[48,270],[599,270],[601,343],[602,270],[603,344],[604,345],[315,270],[481,309],[483,346],[482,347],[450,270],[451,348],[266,349],[271,350],[310,351],[307,352],[270,9],[402,148],[550,353],[56,270],[53,354],[52,355],[490,356],[491,357],[492,356],[67,358],[421,359],[55,360],[50,361],[420,362],[54,270],[51,355],[290,363],[289,364],[277,365],[279,366],[288,365],[284,364],[283,364],[282,364],[285,364],[278,366],[287,365],[273,367],[280,270],[275,365],[276,368],[274,365],[286,367],[281,365],[256,369],[229,270],[207,370],[205,370],[120,371],[71,372],[70,373],[206,374],[191,375],[113,376],[69,377],[68,378],[255,373],[220,379],[219,379],[131,380],[227,371],[228,371],[230,381],[231,371],[232,378],[233,371],[204,371],[234,371],[235,382],[236,371],[237,379],[238,383],[239,371],[240,371],[241,371],[242,371],[243,379],[244,371],[245,371],[246,371],[247,371],[248,384],[249,371],[250,371],[251,371],[252,371],[253,371],[73,378],[74,378],[75,378],[76,378],[77,378],[78,378],[79,378],[80,371],[82,385],[83,378],[81,378],[84,378],[85,378],[86,378],[87,378],[88,378],[89,378],[90,371],[91,378],[92,378],[93,378],[94,378],[95,378],[96,371],[97,378],[98,378],[99,378],[100,378],[101,378],[102,378],[103,371],[105,386],[104,378],[106,378],[107,378],[108,378],[109,378],[110,384],[111,371],[112,371],[126,387],[114,388],[115,378],[116,378],[117,371],[118,378],[119,378],[121,389],[122,378],[123,378],[124,378],[125,378],[127,378],[128,378],[129,378],[130,378],[132,390],[133,378],[134,378],[135,378],[136,371],[137,378],[138,391],[139,391],[140,391],[141,371],[142,378],[143,378],[144,378],[149,378],[145,378],[146,371],[147,378],[148,371],[150,378],[151,378],[152,378],[153,378],[154,378],[155,378],[156,371],[157,378],[158,378],[159,378],[160,378],[161,378],[162,378],[163,378],[164,378],[165,378],[166,378],[167,378],[168,378],[169,378],[170,378],[171,378],[172,378],[173,392],[174,378],[175,378],[176,378],[177,378],[178,378],[179,378],[180,371],[181,371],[182,371],[183,371],[184,371],[185,378],[186,378],[187,378],[188,378],[254,371],[190,393],[213,394],[208,394],[199,395],[197,396],[211,397],[200,398],[214,399],[209,400],[210,397],[212,401],[198,270],[203,270],[195,402],[196,403],[193,270],[194,404],[192,378],[201,405],[72,406],[221,270],[222,270],[223,270],[224,270],[225,270],[226,270],[215,270],[218,379],[217,270],[216,407],[189,408],[202,409],[302,206],[300,207],[301,163],[292,208],[293,209],[296,210],[294,209],[295,209],[8,270],[10,270],[9,270],[2,270],[11,270],[12,270],[13,270],[14,270],[15,270],[16,270],[17,270],[18,270],[3,270],[4,270],[22,270],[19,270],[20,270],[21,270],[23,270],[24,270],[25,270],[5,270],[26,270],[27,270],[28,270],[29,270],[6,270],[33,270],[30,270],[31,270],[32,270],[34,270],[7,270],[35,270],[40,270],[41,270],[36,270],[37,270],[38,270],[39,270],[1,270],[42,270],[331,410],[338,411],[330,410],[345,412],[322,413],[321,414],[344,333],[339,415],[342,416],[324,417],[323,418],[319,419],[318,420],[341,421],[320,422],[325,423],[326,270],[329,423],[316,270],[347,424],[346,423],[333,425],[334,426],[336,427],[332,428],[335,429],[340,333],[327,430],[328,431],[337,432],[317,433],[343,434],[427,435],[429,15],[430,15],[419,436],[431,15],[434,437],[435,437],[418,15],[433,15],[432,438],[443,439],[408,440],[406,441],[272,442],[403,443],[311,444],[308,445],[312,446],[404,446],[405,447],[269,448],[304,449],[298,450],[303,161],[299,451],[407,452],[475,453],[426,454],[409,15],[423,455],[424,15],[425,15]],"semanticDiagnosticsPerFile":[43,454,452,265,261,260,258,257,259,309,306,264,263,401,262,268,267,415,416,412,413,414,410,411,417,45,57,58,61,59,63,66,65,64,62,60,46,47,494,497,496,495,478,479,477,480,505,489,498,499,500,501,503,493,502,504,506,488,471,468,469,470,472,474,473,508,509,457,453,455,456,466,484,476,510,511,465,512,513,515,516,517,518,519,520,521,522,462,467,523,524,422,525,463,526,527,528,529,530,514,531,532,534,535,533,536,537,538,539,540,541,542,543,544,545,547,546,548,458,549,551,552,313,314,349,350,351,352,353,354,355,356,357,358,359,361,360,362,363,364,348,399,365,366,367,400,368,369,370,371,372,373,374,375,376,377,378,379,380,381,383,382,384,385,386,387,388,389,390,391,392,393,394,395,396,397,398,553,554,556,555,557,448,460,461,446,449,558,583,584,559,562,581,582,572,571,569,564,577,575,579,563,576,580,565,566,578,560,567,568,570,574,585,573,561,598,597,592,594,593,586,587,589,591,595,596,588,590,459,464,487,486,485,49,48,599,600,601,602,603,604,315,481,483,482,447,450,451,266,271,310,307,270,402,550,56,53,52,490,491,492,67,421,55,50,420,54,51,290,289,277,279,288,284,283,282,285,278,287,273,280,275,276,274,286,281,256,229,207,205,120,71,70,206,191,113,69,68,255,220,219,131,227,228,230,231,232,233,204,234,235,236,237,238,239,240,241,242,243,244,245,246,247,248,249,250,251,252,253,73,74,75,76,77,78,79,80,82,83,81,84,85,86,87,88,89,90,91,92,93,94,95,96,97,98,99,100,101,102,103,105,104,106,107,108,109,110,111,112,126,114,115,116,117,118,119,121,122,123,124,125,127,128,129,130,132,133,134,135,136,137,138,139,140,141,142,143,144,149,145,146,147,148,150,151,152,153,154,155,156,157,158,159,160,161,162,163,164,165,166,167,168,169,170,171,172,173,174,175,176,177,178,179,180,181,182,183,184,185,186,187,188,254,190,213,208,199,197,211,200,214,209,210,212,198,203,195,196,193,194,192,201,72,221,222,223,224,225,226,215,218,217,216,189,202,302,300,301,292,293,296,294,295,291,44,8,10,9,2,11,12,13,14,15,16,17,18,3,4,22,19,20,21,23,24,25,5,26,27,28,29,6,33,30,31,32,34,7,35,40,41,36,37,38,39,1,42,331,338,330,345,322,321,344,339,342,324,323,319,318,341,320,325,326,329,316,347,346,333,334,336,332,335,340,327,328,337,317,343,427,429,430,419,431,434,435,418,433,432,445,438,440,442,437,439,441,428,443,297,444,408,406,272,403,311,308,305,312,404,405,269,436,304,298,303,299,407,475,426,409,423,424,425,507]},"version":"4.9.5"}
|
|
1
|
+
{"program":{"fileNames":["../node_modules/typescript/lib/lib.es5.d.ts","../node_modules/typescript/lib/lib.es2015.d.ts","../node_modules/typescript/lib/lib.es2016.d.ts","../node_modules/typescript/lib/lib.es2017.d.ts","../node_modules/typescript/lib/lib.es2018.d.ts","../node_modules/typescript/lib/lib.es2019.d.ts","../node_modules/typescript/lib/lib.es2020.d.ts","../node_modules/typescript/lib/lib.dom.d.ts","../node_modules/typescript/lib/lib.es2015.core.d.ts","../node_modules/typescript/lib/lib.es2015.collection.d.ts","../node_modules/typescript/lib/lib.es2015.generator.d.ts","../node_modules/typescript/lib/lib.es2015.iterable.d.ts","../node_modules/typescript/lib/lib.es2015.promise.d.ts","../node_modules/typescript/lib/lib.es2015.proxy.d.ts","../node_modules/typescript/lib/lib.es2015.reflect.d.ts","../node_modules/typescript/lib/lib.es2015.symbol.d.ts","../node_modules/typescript/lib/lib.es2015.symbol.wellknown.d.ts","../node_modules/typescript/lib/lib.es2016.array.include.d.ts","../node_modules/typescript/lib/lib.es2017.object.d.ts","../node_modules/typescript/lib/lib.es2017.sharedmemory.d.ts","../node_modules/typescript/lib/lib.es2017.string.d.ts","../node_modules/typescript/lib/lib.es2017.intl.d.ts","../node_modules/typescript/lib/lib.es2017.typedarrays.d.ts","../node_modules/typescript/lib/lib.es2018.asyncgenerator.d.ts","../node_modules/typescript/lib/lib.es2018.asynciterable.d.ts","../node_modules/typescript/lib/lib.es2018.intl.d.ts","../node_modules/typescript/lib/lib.es2018.promise.d.ts","../node_modules/typescript/lib/lib.es2018.regexp.d.ts","../node_modules/typescript/lib/lib.es2019.array.d.ts","../node_modules/typescript/lib/lib.es2019.object.d.ts","../node_modules/typescript/lib/lib.es2019.string.d.ts","../node_modules/typescript/lib/lib.es2019.symbol.d.ts","../node_modules/typescript/lib/lib.es2019.intl.d.ts","../node_modules/typescript/lib/lib.es2020.bigint.d.ts","../node_modules/typescript/lib/lib.es2020.date.d.ts","../node_modules/typescript/lib/lib.es2020.promise.d.ts","../node_modules/typescript/lib/lib.es2020.sharedmemory.d.ts","../node_modules/typescript/lib/lib.es2020.string.d.ts","../node_modules/typescript/lib/lib.es2020.symbol.wellknown.d.ts","../node_modules/typescript/lib/lib.es2020.intl.d.ts","../node_modules/typescript/lib/lib.es2020.number.d.ts","../node_modules/typescript/lib/lib.esnext.intl.d.ts","../index.d.ts","../node_modules/tslib/tslib.d.ts","../node_modules/@lit/reactive-element/css-tag.d.ts","../node_modules/@lit/reactive-element/reactive-controller.d.ts","../node_modules/@lit/reactive-element/reactive-element.d.ts","../node_modules/@types/trusted-types/lib/index.d.ts","../node_modules/@types/trusted-types/index.d.ts","../node_modules/lit/node_modules/lit-html/directive.d.ts","../node_modules/lit/node_modules/lit-html/lit-html.d.ts","../node_modules/lit-element/node_modules/lit-html/lit-html.d.ts","../node_modules/lit-element/lit-element.d.ts","../node_modules/lit/node_modules/lit-html/is-server.d.ts","../node_modules/lit/index.d.ts","../node_modules/lit-element-router/lit-element-router.d.ts","../node_modules/@lit/reactive-element/decorators/base.d.ts","../node_modules/@lit/reactive-element/decorators/custom-element.d.ts","../node_modules/@lit/reactive-element/decorators/property.d.ts","../node_modules/@lit/reactive-element/decorators/state.d.ts","../node_modules/@lit/reactive-element/decorators/event-options.d.ts","../node_modules/@lit/reactive-element/decorators/query.d.ts","../node_modules/@lit/reactive-element/decorators/query-all.d.ts","../node_modules/@lit/reactive-element/decorators/query-async.d.ts","../node_modules/@lit/reactive-element/decorators/query-assigned-nodes.d.ts","../node_modules/@lit/reactive-element/decorators/query-assigned-elements.d.ts","../node_modules/lit/decorators.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/@firebase/component/dist/src/provider.d.ts","../node_modules/@firebase/component/dist/src/component_container.d.ts","../node_modules/@firebase/component/dist/src/types.d.ts","../node_modules/@firebase/component/dist/src/component.d.ts","../node_modules/@firebase/component/dist/index.d.ts","../node_modules/@firebase/util/dist/util-public.d.ts","../node_modules/@firebase/logger/dist/src/logger.d.ts","../node_modules/@firebase/logger/dist/index.d.ts","../node_modules/@firebase/app/dist/app-public.d.ts","../node_modules/firebase/app/dist/app/index.d.ts","../node_modules/mini-rx-store/lib/models.d.ts","../node_modules/mini-rx-store/lib/store.d.ts","../node_modules/mini-rx-store/lib/state.d.ts","../node_modules/mini-rx-store/lib/store-core.d.ts","../node_modules/mini-rx-store/lib/base-store.d.ts","../node_modules/mini-rx-store/lib/feature-store.d.ts","../node_modules/mini-rx-store/lib/component-store.d.ts","../node_modules/mini-rx-store/lib/selector.d.ts","../node_modules/mini-rx-store/lib/utils.d.ts","../node_modules/mini-rx-store/lib/extensions/redux-devtools.extension.d.ts","../node_modules/mini-rx-store/lib/extensions/logger.extension.d.ts","../node_modules/mini-rx-store/lib/extensions/immutable-state.extension.d.ts","../node_modules/mini-rx-store/lib/extensions/undo.extension.d.ts","../node_modules/mini-rx-store/lib/tap-response.d.ts","../node_modules/mini-rx-store/lib/map-response.d.ts","../node_modules/mini-rx-store/lib/create-effect.d.ts","../node_modules/mini-rx-store/lib/actions.d.ts","../node_modules/mini-rx-store/index.d.ts","../src/service-provider/service-provider-model.ts","../node_modules/ts-action/types.d.ts","../node_modules/ts-action/action.d.ts","../node_modules/ts-action/guard.d.ts","../node_modules/ts-action/isType.d.ts","../node_modules/ts-action/reducer.d.ts","../node_modules/ts-action/index.d.ts","../src/model/spa-model.ts","../src/store/spa-app-actions.ts","../src/store/spa-app-reducer.ts","../node_modules/ts-action-operators/ofType.d.ts","../node_modules/ts-action-operators/toPayload.d.ts","../node_modules/ts-action-operators/index.d.ts","../src/store/spa-app-effects.ts","../src/store/mini-rx.store.ts","../node_modules/firebase/node_modules/@firebase/auth/dist/auth-public.d.ts","../node_modules/firebase/auth/dist/auth/index.d.ts","../src/service-provider/firebase/auth.ts","../src/service-provider/mock/auth.ts","../node_modules/@firebase/functions/dist/functions-public.d.ts","../node_modules/firebase/functions/dist/functions/index.d.ts","../src/service-provider/firebase/functions-client.ts","../node_modules/@firebase/firestore/dist/index.d.ts","../node_modules/firebase/firestore/dist/firestore/index.d.ts","../src/service-provider/firebase/firestore-client.ts","../src/service-provider/mock/function-client.ts","../node_modules/@lit-labs/task/task.d.ts","../node_modules/@lit-labs/task/index.d.ts","../src/service-call-controller2.ts","../node_modules/@types/node/assert.d.ts","../node_modules/@types/node/assert/strict.d.ts","../node_modules/buffer/index.d.ts","../node_modules/undici-types/header.d.ts","../node_modules/undici-types/readable.d.ts","../node_modules/undici-types/file.d.ts","../node_modules/undici-types/fetch.d.ts","../node_modules/undici-types/formdata.d.ts","../node_modules/undici-types/connector.d.ts","../node_modules/undici-types/client.d.ts","../node_modules/undici-types/errors.d.ts","../node_modules/undici-types/dispatcher.d.ts","../node_modules/undici-types/global-dispatcher.d.ts","../node_modules/undici-types/global-origin.d.ts","../node_modules/undici-types/pool-stats.d.ts","../node_modules/undici-types/pool.d.ts","../node_modules/undici-types/handlers.d.ts","../node_modules/undici-types/balanced-pool.d.ts","../node_modules/undici-types/agent.d.ts","../node_modules/undici-types/mock-interceptor.d.ts","../node_modules/undici-types/mock-agent.d.ts","../node_modules/undici-types/mock-client.d.ts","../node_modules/undici-types/mock-pool.d.ts","../node_modules/undici-types/mock-errors.d.ts","../node_modules/undici-types/proxy-agent.d.ts","../node_modules/undici-types/api.d.ts","../node_modules/undici-types/cookies.d.ts","../node_modules/undici-types/patch.d.ts","../node_modules/undici-types/filereader.d.ts","../node_modules/undici-types/diagnostics-channel.d.ts","../node_modules/undici-types/websocket.d.ts","../node_modules/undici-types/content-type.d.ts","../node_modules/undici-types/cache.d.ts","../node_modules/undici-types/interceptors.d.ts","../node_modules/undici-types/index.d.ts","../node_modules/@types/node/globals.d.ts","../node_modules/@types/node/async_hooks.d.ts","../node_modules/@types/node/buffer.d.ts","../node_modules/@types/node/child_process.d.ts","../node_modules/@types/node/cluster.d.ts","../node_modules/@types/node/console.d.ts","../node_modules/@types/node/constants.d.ts","../node_modules/@types/node/crypto.d.ts","../node_modules/@types/node/dgram.d.ts","../node_modules/@types/node/diagnostics_channel.d.ts","../node_modules/@types/node/dns.d.ts","../node_modules/@types/node/dns/promises.d.ts","../node_modules/@types/node/domain.d.ts","../node_modules/@types/node/dom-events.d.ts","../node_modules/@types/node/events.d.ts","../node_modules/@types/node/fs.d.ts","../node_modules/@types/node/fs/promises.d.ts","../node_modules/@types/node/http.d.ts","../node_modules/@types/node/http2.d.ts","../node_modules/@types/node/https.d.ts","../node_modules/@types/node/inspector.d.ts","../node_modules/@types/node/module.d.ts","../node_modules/@types/node/net.d.ts","../node_modules/@types/node/os.d.ts","../node_modules/@types/node/path.d.ts","../node_modules/@types/node/perf_hooks.d.ts","../node_modules/@types/node/process.d.ts","../node_modules/@types/node/punycode.d.ts","../node_modules/@types/node/querystring.d.ts","../node_modules/@types/node/readline.d.ts","../node_modules/@types/node/readline/promises.d.ts","../node_modules/@types/node/repl.d.ts","../node_modules/@types/node/sea.d.ts","../node_modules/@types/node/stream.d.ts","../node_modules/@types/node/stream/promises.d.ts","../node_modules/@types/node/stream/consumers.d.ts","../node_modules/@types/node/stream/web.d.ts","../node_modules/@types/node/string_decoder.d.ts","../node_modules/@types/node/test.d.ts","../node_modules/@types/node/timers.d.ts","../node_modules/@types/node/timers/promises.d.ts","../node_modules/@types/node/tls.d.ts","../node_modules/@types/node/trace_events.d.ts","../node_modules/@types/node/tty.d.ts","../node_modules/@types/node/url.d.ts","../node_modules/@types/node/util.d.ts","../node_modules/@types/node/v8.d.ts","../node_modules/@types/node/vm.d.ts","../node_modules/@types/node/wasi.d.ts","../node_modules/@types/node/worker_threads.d.ts","../node_modules/@types/node/zlib.d.ts","../node_modules/@types/node/globals.global.d.ts","../node_modules/@types/node/index.d.ts","../node_modules/@firebase/storage/dist/storage-public.d.ts","../node_modules/firebase/storage/dist/storage/index.d.ts","../src/service-provider/firebase/firestorage-client.ts","../src/service-provider/mock/storage-client.ts","../src/service-provider/service-provider-impl.ts","../src/store/spa-app-selector.ts","../src/router/AppMain.ts","../src/tmpown/pd-login.ts","../node_modules/@lit/localize/internal/str-tag.d.ts","../node_modules/@lit/localize/internal/types.d.ts","../node_modules/@lit/localize/internal/locale-status-event.d.ts","../node_modules/@lit/localize/internal/localized-controller.d.ts","../node_modules/@lit/localize/internal/localized-decorator.d.ts","../node_modules/@lit/localize/init/runtime.d.ts","../node_modules/@lit/localize/init/transform.d.ts","../node_modules/@lit/localize/lit-localize.d.ts","../src/defaultpage/default-view-page.ts","../src/defaultpage/default-login.ts","../node_modules/lit/node_modules/lit-html/directives/class-map.d.ts","../node_modules/lit/directives/class-map.d.ts","../node_modules/@types/hammerjs/index.d.ts","../src/tmpown/pd-panel-viewer.ts","../src/tmpown/pd-panel.ts","../src/tmpown/pd-toast.ts","../src/tmpown/pd-loading-state.ts","../src/PdSpaHelper.ts","../src/helper/helper-utils.ts","../src/defaultpage/default-confirm-popup.ts","../src/defaultpage/default-dialog-popup.ts","../src/defaultpage/default-popup.ts","../src/defaultpage/default-wizard.ts","../src/defaultpage/default-wizard-step.ts","../src/defaultpage/default-step-address.ts","../src/defaultpage/default-step-summary.ts","../src/store/indexDB.ts","../src/generated/locales/be.ts","../src/generated/locale-wrapper/be-wrapper.ts","../src/generated/locales/de.ts","../src/generated/locale-wrapper/de-wrapper.ts","../src/generated/locales/en.ts","../src/generated/locale-wrapper/en-wrapper.ts","../src/index.ts","../src/pd-spa-helper.ts","../src/generated/locale-codes.ts","../node_modules/@types/react/ts5.0/global.d.ts","../node_modules/csstype/index.d.ts","../node_modules/@types/prop-types/index.d.ts","../node_modules/@types/react/ts5.0/index.d.ts","../node_modules/file-system-cache/lib/FileSystemCache.d.ts","../node_modules/file-system-cache/lib/index.d.ts","../node_modules/@babel/types/lib/index.d.ts","../node_modules/@types/babel__generator/index.d.ts","../node_modules/@babel/parser/typings/babel-parser.d.ts","../node_modules/@types/babel__template/index.d.ts","../node_modules/@types/babel__traverse/index.d.ts","../node_modules/@types/babel__core/index.d.ts","../node_modules/@types/mime/index.d.ts","../node_modules/@types/send/index.d.ts","../node_modules/@types/qs/index.d.ts","../node_modules/@types/range-parser/index.d.ts","../node_modules/@types/express-serve-static-core/index.d.ts","../node_modules/@types/http-errors/index.d.ts","../node_modules/@types/serve-static/index.d.ts","../node_modules/@types/connect/index.d.ts","../node_modules/@types/body-parser/index.d.ts","../node_modules/@types/express/index.d.ts","../node_modules/@storybook/channels/dist/main-c55d8855.d.ts","../node_modules/@storybook/channels/dist/postmessage/index.d.ts","../node_modules/@storybook/channels/dist/websocket/index.d.ts","../node_modules/@storybook/channels/dist/index.d.ts","../node_modules/@storybook/types/dist/index.d.ts","../node_modules/@storybook/web-components/dist/types-0360da9f.d.ts","../node_modules/@storybook/web-components/dist/index.d.ts","../src/stories/pd-loading-state.stories.ts","../node_modules/@types/chai/index.d.ts","../node_modules/@open-wc/semantic-dom-diff/get-diffable-html.d.ts","../node_modules/@open-wc/semantic-dom-diff/chai-dom-diff-plugin.d.ts","../node_modules/@open-wc/semantic-dom-diff/chai-dom-diff.d.ts","../node_modules/@open-wc/semantic-dom-diff/index.d.ts","../node_modules/chai-a11y-axe/chai-a11y-axe-plugin.d.ts","../node_modules/chai-a11y-axe/src/accessible.d.ts","../node_modules/chai-a11y-axe/index.d.ts","../node_modules/@types/chai-dom/index.d.ts","../node_modules/@types/sinonjs__fake-timers/index.d.ts","../node_modules/@types/sinon/index.d.ts","../node_modules/@types/sinon-chai/index.d.ts","../node_modules/@open-wc/testing/register-chai-plugins.d.ts","../node_modules/@open-wc/testing-helpers/types/src/elementUpdated.d.ts","../node_modules/lit-html/directive.d.ts","../node_modules/lit-html/lit-html.d.ts","../node_modules/lit-html/static.d.ts","../node_modules/@open-wc/testing-helpers/types/src/renderable.d.ts","../node_modules/@open-wc/dedupe-mixin/index.d.ts","../node_modules/@open-wc/scoped-elements/types/src/types.d.ts","../node_modules/@open-wc/scoped-elements/types/src/ScopedElementsMixin.d.ts","../node_modules/@open-wc/scoped-elements/types/index.d.ts","../node_modules/@open-wc/testing-helpers/types/src/fixture-no-side-effect.d.ts","../node_modules/@open-wc/testing-helpers/types/src/fixture.d.ts","../node_modules/@open-wc/testing-helpers/types/src/fixtureWrapper.d.ts","../node_modules/@open-wc/testing-helpers/types/src/helpers.d.ts","../node_modules/@open-wc/testing-helpers/types/src/scopedElementsWrapper.d.ts","../node_modules/@open-wc/testing-helpers/types/src/litFixture.d.ts","../node_modules/@open-wc/testing-helpers/types/src/stringFixture.d.ts","../node_modules/@open-wc/testing-helpers/types/index.d.ts","../node_modules/@open-wc/testing/index.d.ts","../test/pd-spa-helper.test.ts","../node_modules/@types/accepts/index.d.ts","../node_modules/@types/babel__code-frame/index.d.ts","../node_modules/@types/co-body/index.d.ts","../node_modules/@types/command-line-args/index.d.ts","../node_modules/@types/content-disposition/index.d.ts","../node_modules/@types/convert-source-map/index.d.ts","../node_modules/@types/keygrip/index.d.ts","../node_modules/@types/cookies/index.d.ts","../node_modules/@types/cross-spawn/index.d.ts","../node_modules/@types/debounce/index.d.ts","../node_modules/@types/detect-port/index.d.ts","../node_modules/@types/doctrine/index.d.ts","../node_modules/@types/ejs/index.d.ts","../node_modules/@types/emscripten/index.d.ts","../node_modules/@types/estree/index.d.ts","../node_modules/@types/find-cache-dir/index.d.ts","../node_modules/@types/graceful-fs/index.d.ts","../node_modules/@types/http-assert/index.d.ts","../node_modules/@types/istanbul-lib-coverage/index.d.ts","../node_modules/@types/istanbul-lib-report/index.d.ts","../node_modules/@types/istanbul-reports/index.d.ts","../node_modules/@types/json-schema/index.d.ts","../node_modules/@types/json5/index.d.ts","../node_modules/@types/koa-compose/index.d.ts","../node_modules/@types/koa/index.d.ts","../node_modules/@types/lodash/common/common.d.ts","../node_modules/@types/lodash/common/array.d.ts","../node_modules/@types/lodash/common/collection.d.ts","../node_modules/@types/lodash/common/date.d.ts","../node_modules/@types/lodash/common/function.d.ts","../node_modules/@types/lodash/common/lang.d.ts","../node_modules/@types/lodash/common/math.d.ts","../node_modules/@types/lodash/common/number.d.ts","../node_modules/@types/lodash/common/object.d.ts","../node_modules/@types/lodash/common/seq.d.ts","../node_modules/@types/lodash/common/string.d.ts","../node_modules/@types/lodash/common/util.d.ts","../node_modules/@types/lodash/index.d.ts","../node_modules/@types/mdx/types.d.ts","../node_modules/@types/mdx/index.d.ts","../node_modules/@types/mime-types/index.d.ts","../node_modules/@types/mocha/index.d.ts","../node_modules/form-data/index.d.ts","../node_modules/@types/node-fetch/externals.d.ts","../node_modules/@types/node-fetch/index.d.ts","../node_modules/@types/normalize-package-data/index.d.ts","../node_modules/@types/parse-json/index.d.ts","../node_modules/@types/parse5/lib/tree-adapters/default.d.ts","../node_modules/@types/parse5/index.d.ts","../node_modules/@types/pretty-hrtime/index.d.ts","../node_modules/@types/resolve/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/unist/index.d.ts","../node_modules/@types/uuid/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/@firebase/auth/dist/auth-public.d.ts","../node_modules/lit-html/directives/class-map.d.ts","../node_modules/lit-html/is-server.d.ts"],"fileInfos":[{"version":"8730f4bf322026ff5229336391a18bcaa1f94d4f82416c8b2f3954e2ccaae2ba","affectsGlobalScope":true},"dc47c4fa66b9b9890cf076304de2a9c5201e94b740cffdf09f87296d877d71f6","7a387c58583dfca701b6c85e0adaf43fb17d590fb16d5b2dc0a2fbd89f35c467","8a12173c586e95f4433e0c6dc446bc88346be73ffe9ca6eec7aa63c8f3dca7f9","5f4e733ced4e129482ae2186aae29fde948ab7182844c3a5a51dd346182c7b06","4b421cbfb3a38a27c279dec1e9112c3d1da296f77a1a85ddadf7e7a425d45d18","1fc5ab7a764205c68fa10d381b08417795fc73111d6dd16b5b1ed36badb743d9",{"version":"3aafcb693fe5b5c3bd277bd4c3a617b53db474fe498fc5df067c5603b1eebde7","affectsGlobalScope":true},{"version":"adb996790133eb33b33aadb9c09f15c2c575e71fb57a62de8bf74dbf59ec7dfb","affectsGlobalScope":true},{"version":"8cc8c5a3bac513368b0157f3d8b31cfdcfe78b56d3724f30f80ed9715e404af8","affectsGlobalScope":true},{"version":"cdccba9a388c2ee3fd6ad4018c640a471a6c060e96f1232062223063b0a5ac6a","affectsGlobalScope":true},{"version":"c5c05907c02476e4bde6b7e76a79ffcd948aedd14b6a8f56e4674221b0417398","affectsGlobalScope":true},{"version":"5f406584aef28a331c36523df688ca3650288d14f39c5d2e555c95f0d2ff8f6f","affectsGlobalScope":true},{"version":"22f230e544b35349cfb3bd9110b6ef37b41c6d6c43c3314a31bd0d9652fcec72","affectsGlobalScope":true},{"version":"7ea0b55f6b315cf9ac2ad622b0a7813315bb6e97bf4bb3fbf8f8affbca7dc695","affectsGlobalScope":true},{"version":"3013574108c36fd3aaca79764002b3717da09725a36a6fc02eac386593110f93","affectsGlobalScope":true},{"version":"eb26de841c52236d8222f87e9e6a235332e0788af8c87a71e9e210314300410a","affectsGlobalScope":true},{"version":"3be5a1453daa63e031d266bf342f3943603873d890ab8b9ada95e22389389006","affectsGlobalScope":true},{"version":"17bb1fc99591b00515502d264fa55dc8370c45c5298f4a5c2083557dccba5a2a","affectsGlobalScope":true},{"version":"7ce9f0bde3307ca1f944119f6365f2d776d281a393b576a18a2f2893a2d75c98","affectsGlobalScope":true},{"version":"6a6b173e739a6a99629a8594bfb294cc7329bfb7b227f12e1f7c11bc163b8577","affectsGlobalScope":true},{"version":"81cac4cbc92c0c839c70f8ffb94eb61e2d32dc1c3cf6d95844ca099463cf37ea","affectsGlobalScope":true},{"version":"b0124885ef82641903d232172577f2ceb5d3e60aed4da1153bab4221e1f6dd4e","affectsGlobalScope":true},{"version":"0eb85d6c590b0d577919a79e0084fa1744c1beba6fd0d4e951432fa1ede5510a","affectsGlobalScope":true},{"version":"da233fc1c8a377ba9e0bed690a73c290d843c2c3d23a7bd7ec5cd3d7d73ba1e0","affectsGlobalScope":true},{"version":"d154ea5bb7f7f9001ed9153e876b2d5b8f5c2bb9ec02b3ae0d239ec769f1f2ae","affectsGlobalScope":true},{"version":"bb2d3fb05a1d2ffbca947cc7cbc95d23e1d053d6595391bd325deb265a18d36c","affectsGlobalScope":true},{"version":"c80df75850fea5caa2afe43b9949338ce4e2de086f91713e9af1a06f973872b8","affectsGlobalScope":true},{"version":"9d57b2b5d15838ed094aa9ff1299eecef40b190722eb619bac4616657a05f951","affectsGlobalScope":true},{"version":"6c51b5dd26a2c31dbf37f00cfc32b2aa6a92e19c995aefb5b97a3a64f1ac99de","affectsGlobalScope":true},{"version":"6e7997ef61de3132e4d4b2250e75343f487903ddf5370e7ce33cf1b9db9a63ed","affectsGlobalScope":true},{"version":"2ad234885a4240522efccd77de6c7d99eecf9b4de0914adb9a35c0c22433f993","affectsGlobalScope":true},{"version":"5e5e095c4470c8bab227dbbc61374878ecead104c74ab9960d3adcccfee23205","affectsGlobalScope":true},{"version":"09aa50414b80c023553090e2f53827f007a301bc34b0495bfb2c3c08ab9ad1eb","affectsGlobalScope":true},{"version":"d7f680a43f8cd12a6b6122c07c54ba40952b0c8aa140dcfcf32eb9e6cb028596","affectsGlobalScope":true},{"version":"3787b83e297de7c315d55d4a7c546ae28e5f6c0a361b7a1dcec1f1f50a54ef11","affectsGlobalScope":true},{"version":"e7e8e1d368290e9295ef18ca23f405cf40d5456fa9f20db6373a61ca45f75f40","affectsGlobalScope":true},{"version":"faf0221ae0465363c842ce6aa8a0cbda5d9296940a8e26c86e04cc4081eea21e","affectsGlobalScope":true},{"version":"06393d13ea207a1bfe08ec8d7be562549c5e2da8983f2ee074e00002629d1871","affectsGlobalScope":true},{"version":"2768ef564cfc0689a1b76106c421a2909bdff0acbe87da010785adab80efdd5c","affectsGlobalScope":true},{"version":"b248e32ca52e8f5571390a4142558ae4f203ae2f94d5bac38a3084d529ef4e58","affectsGlobalScope":true},{"version":"52d1bb7ab7a3306fd0375c8bff560feed26ed676a5b0457fa8027b563aecb9a4","affectsGlobalScope":true},"d8bd288b412131749ae494705fc060ad44487a58a3a2af78f13ba617e6e88726","4a882ffbb4ed09d9b7734f784aebb1dfe488d63725c40759165c5d9c657ca029","52dd370c807255c61765347fc90a9bee3c522b8744dc222714e2bf6b5be3a823","1e5743b25a63fd34ffbae89adcbf248ee17db6ed08d90079ffa93803c3e80d2a","ccf8ea81b0ac699c220b874b804ad02b8aabc5b494e1c3bda0d255ec8d08694d","15fe687c59d62741b4494d5e623d497d55eb38966ecf5bea7f36e48fc3fbe15e",{"version":"2c3b8be03577c98530ef9cb1a76e2c812636a871f367e9edf4c5f3ce702b77f8","affectsGlobalScope":true},"c567d37119d6f56381af48eb7516030ccf35a36f9aca045e238d9c207a7c536c","b448dfbb5a6c4505f6b6beab587cf41f180ad62bcb506b44e3f2c09d20ba63a9","b448dfbb5a6c4505f6b6beab587cf41f180ad62bcb506b44e3f2c09d20ba63a9","eba7cf33380cc3a3cf614faf67300e14d0bdff9ea6c5cd6f4b040b1756a48ab1","5e7e090243bf203382a5cb04eabbdc38d78f6d5922f16f543e4da8fa007d5ff9","cd823094ded7c8ac4f94ab6dc387dab699293eb8323d9f948304efc07e4ae7b2","43fe650d6596e6f9bff164927de8f99918481899814a45a026e3262ee5ae01a6","d45c02bf8b85203f35de2971eafb8f8092090d150c7805a189b3e197f53b12b6","ac388c7c7a262213a3700451bc921e382a93fb27c0252c34ccf03540b4ce044b","097a7e3badfd1c4b35f72aa0f722f5714a4f6a84e53fca5a79dcfebbfc5e718d","fb0107c83e2e0e75b77dacd0c3c6c3ab6844e98dce2a8f858c6f0a57c12136a6","ea410c8280b0ec480acb195c7dd36c1f054403f5fccee0beca85717777cf8562","628bceb593b3a5b3d73ff44a808a347ec07d6ee397104a1d88b0f9a20d8b4599","57e25505a5de058216a8f4416ca850788bfc3a412c8e90109b2ef91f75fdd615","2ba453918c1fcf1cbb2836f731534f356d5fe65ed9628811f686e8de3920ed0e","4bcb813ea56182beaaab1e8274524eb9f1449b0d8e79efc4a0399de09e43f816","cc689acd4eff461c808e01225be6a16d1787e44d451310be5dd556dd7ab08457","f0380f581cb015778c0fe51e95b5b7f6dae237280654558469b2486c1572268a","fa3d0cd03fa17459d9ddd98b120b4bb084da39f0391cbdce480a6ef74be0cc7a","e3fd84e6470b7e0679c4073ee5ce971d324182486dde5a49b67cae29168b51d2","dd8331d0a5190a4735ce6c152e420230188c4966067a756673c36dd7ba72b10e","d6db3bf60a324f74ed9c1281acc1543734be70ac0ab9a8dc953a1d55f6906720",{"version":"34707bf55a38f69fdaaaaed74907c81a6b186fcb206cc50e6f8862b36c08730e","affectsGlobalScope":true},"0f882d4ae58f431454030289154feb0132e1b00ca5c3197c6b749bd098aed73a","7ff7f4632a6e7b6872fb1843f3c0df495b49840eae2a23c6fbc943f863da8c29","1e352dc6863536f881c894f17c46b5040db7c9423a18957a8fbc001dfe579b78","a78590b0efcef281236e3234520c348d63be1d4561b63b20e6c3b6fc18b37dfb","4d59c6a10b6c79a0927c79efa89b3c9f71d174ec14ec2792076cfd2330d0cf8e","a496f51933422872de22729b7a0233589325a1a1707cccd05cd914098944a202","75b6663bc569724017997481b6b3774065c204b316cb4f5ad7df3b5162d2dce1","06a38095ad4368314366bc08f7cbc0fe274ef7321ec611005d0bdd9c6565e4d5","4599793db9aed9b84677f0ca1cf7ef3c69bb91cda4fe4329cbab778ca4d80a58","ad0028f96921778931fb8419d8de33b10908314fa99699de1702020f69235da1","ccd2a35321c0786bd3808042dc43b960cac13f2cc660ac37a0087e12bc97d2fc","df524ed01de4f19efb44bded628dbba9f840148be4b6cfe096e29d4b01589de3","2e3981b9cee48174ff85ae15019fd72933f7023a4ed05094740f7e6f7775623c","836ebdc3b9e4c006acc4f405b7e558e56d47830e05c40d991b1e27fe8bc91157","2cc6b617c6120ba64b5778ccd4b74c951adc3a3941bb6b39f47d48701c44af39","eca02b99615a8f1652e21399d832618e38bf166c0747c9247349bc901a2f7741","7f7d6d42e5780e86f5b860a6f95179fae06a368b3af28c1c4230397c47021a59","4740a7d11ab3b381be0f269f1903fb3ff226a2fba55a01756b2997e67cd853f2","863dbc4e77f0353e6f9d6bc0e2b4622d5c07ff6f099ff66cafd7924b2ff4dd3f","bf034a18ed7e2a058f9e48c4c2480a124138fbd3586a80c77736a9ec079d12a8","f88758992a0bf13d095520aacd4381fb456ff121fb9aa184e6eb0eecb26cfadc","c249e9ae33bfcad97deec3c73c9ed2656e112fbdf22deace0b39724be6a5dcf0","d8b45924965c0c4fc0b946c0b6d597aa8d5de9cdf5c727e3d39422d17efec438","c6f72b9a53b7819f056268c221d7eeb14c26e2582aa1547b0f6922d65bcfde72","feddabf6ab0eb191e721f0126f3db8688db97c77a1234968bde7a2d70c4ae513","a968efe0db090c2ed75ee8c77162534f7ffde3dfa9d9ee9f79c47784c43df96e","cde0568b836865a24f4ee5859462004a326dfb76d514e6f56c8e78feedebed58","7f5cb3a03588ed46d52a6c2138315d930cd6ffb5c2134247cd07bc23cbea0b5a","7797f4c91491dcb0f21fa318fd8a1014990d5a72f8a32de2af06eb4d4476a3b5","f39fb20b83c3f9853c13d4ac95533760979d3023c0a5affe2c0a62d91ab3afd8","e4fca08aed8afb32bb8643d7469810bc8681115fe398e56a028df9e73b2d867f","8a59503e8c995d688174ab27cd32c3ab6afed7c41cb5282aee1e964f7d7b863d","078966067552650f44ca96c68eddbb8539f30ee48a9ab3f24abdcf0a4037b535","2cd6250c43dba360377481c98d48db6ab1532a7527339edb0deffddc28ba66b1","7a9d600990fbe263a23daebed9ba1bbc5761e45679a7e2b2774a42756ef077a2","66bc155515fbea8c31a4efccbbac44de7c037b01f3aa00b76312cf7252725d30","5703288ddbfc4f7845cdbf80c6af17c8cde2a228757479796c2378b1662fcd48","0dfd353f0c16dd5107a7e0713dc52d0a2538293b0a0eac6000a017f9c0a60b56","9cd683a4663ef4d9c6486f1b8a34c73bdbc344d69490931bfe2fbcada12ab35b","42f6a409bad5259ece69df25d2b8ace2ff2ade45fe6386ee45203bdd9329f971","d3b1a8b87a5e77d70056325e137a0e04d984b991546fdd3c1034ff4102d603c4","2eb162efd6dba5972b9f8f85141d900d09da4fba23864f287f98f9890a05e95f","3f878fb5be9ebe8bd0ac5c22515d42b8b72d3745ef7617e73e9b2548ccbdf54b","e9ed562b7599c8c8c01595891480a30f9945a93a46456d22ee67ebf346b7538a","e7bf975a98cecefe2e8902fb7da9314675ecdce553aea722aaec97327668e18b","3d36f93648518338c875d9f77a8eab52905365483dbb3afe43ed68f1b712b67c","4fa54df9184d291bd78b36f5063372042cd995460e906cb14014e40d1442a326","b4e32bd5e3b493e4ea6b5ec69a4c02aa1fdaa78e1df9a863bb07604de8f9d123","f6bd1aa152ca2b5064e06282ee3137842ae6825b6b09aa89a2ff063b976a56f3","bce2390bb3a76f8bf2ba4397c66db5277bf3e698ee614347e5eb79d7fc0942c6","fbdc8d7cc7daf4101bf567512c67fb990d8fe300e0ba7f213171192177f44aa0","298e0da6d858e39fc0c1eebfa4f5c8af487868c6f2e98c3ef800537d402fb5c3","3b6457fb3866562d279377f923cf3758c80ed7bfcc19414b72a24d0a98188e0c","4fb5d7efb3520b92c1b767ce18968057c5e70886d7fb3416c487231df9275af9","df2303a61eb57b2717d17123e82bc0f3fd60f6e4673cb5506192dfe23c9480bf","b104960f4c5f807535ab43282356b2fe29c5d14a02035c623ac2012be3d5f76c","a35ca245eb852b70b20300546443abb1fcbac6e5066e4baaa092af4ea614d9b5","55da140feab55f10a538a9879a97c4be3df4934cbd679665c91a7263a86095e1","1a39e51e3362aec7d4edec9b317ff83916fe0471f86ddf2d3ef3af5952e87d9e","4b3f36b96f129a8e125c91d41a05f711e73b3285f80bceb3a1aecb13c97c4502","852779920fc4220bc42ec6d3c9b6164e23ea9371a788531b48b4005fe0cb4392","6863aa26d38fb3c96d7b04547d677967d83ebe421a093e4dede6fd48ad23890d","515b97cede17d91c9669cc1c7fb7a8a5f0a5f2d8999f925a5f70b4ebea93723e","08e8e57241f874bdbf69ab2b65cb0ee18b4183d5c9452937da49b934fc679c4b","944af466f063d4bd090ab9d988c620b90a014e919d5f78963f6074a136ea225e","644addd4811636da491c9546654bc005ba8599f23df6d731d91eba86f3137fc2","a9249493114b181814728cbfeb7234738193a4169b654ec4705d48d7a4d25222","aad6f20d6eb01192ae02294361faa6e1f320d72447b56f433db853bbe80b15ca","876fbedec2f494eb6f834ce8636b07d581c657d205d81a3ba894eff0facc6b84","58527aa45f11c9b259a6a9d78b397f35020bfbb104f4d3bb177039b5c18146bd","91b8b61d45b5d22f3458a4ac82e03b464a0926bab795a920fe0eca805ec476eb","2744532f8fb960eb78497ac660db719f503a10c801f87131d26fd9cbef75dcef","6884287c54891ac19cfbe056f3ed29cab1732a00dec69bd3b140ce62c11783c6","223fdd3984d951378c7febea213b287ee04ee013f065a27905c3d75df85144c4","cb46657d3237f80742d5701ebcced8f6e5cf8938442354387d6c77d7048dfae6","3965c8ef8150ca688978430a13db460d29a50afc50c97315c723722b6f763369","661f322e45545a554e4ffc38db6c4068a66e1323baf66acb0d8a9fa28195a669","9d787416f04d0867e8a46c317056f6ad365e328074c73fa3a1612285fa24465d","ce978e20a6f26f606b535f0d6deb384ae6a73f8d0bd0dfca0925f5317cad1f25","f2d3567210ca4d559d8297d6c4402599c93e3bc7485054192d38db5e132fbc0a","50d22a2dfdbf2dda7b333edf980566feb3f61813695c8f3b52fc866c8d969404","bdb95f4b6e845ec1c0ae95eb448c55a68a2752473e1d2107348abe40421cc202","ea546a7ed9eaa71ba78d4d392509dadea4bafed283269dd6c4b09e7d8824e986","4ec0f2a141a9ae7d3557b8efe630ac2021bc3a9ac61238b59293f4cf2f196e82","b2db743c71652e03c52d51445af58d0af3316231faa92b66018b29c7ba975f6c","0863a5876c85fbaffbb8ec8aeda8b5042deb6932616139706d2b82cde9d3f7c7","12f8b72e3c3a333814f4fa87d5b9a7ef1ece703f3b7ec7919ad2ffb58c48c1db","ba9c46725e2a0bd9df59d3a1e801cc60f90db3ef7817131c53945dce2b8c0c56","281d373eeabf80c4851f8de991e6abe4d385c30379d80897bbc3df3dcac99cee","624c5dce95672d9dcca40d9d9d82ef855f5f902292f43aa265cc8fd963c6ce84","8a48d9c6184992d1c3ed5daa55f83d708c37582916926a5555a900608f804b60","605dd288c636cf9b5317fe76dec75d3c7fb855fdcd3ee8cb4fea7d7091ca6fb4","95addea67857d4e568a02e429b15458cec203876b2ea5f5ea18ccfeeb91b8ce0","b5a615b0ad865ffa562980a10bda162ac1744fd363b4edc2cfc664222071cbcf","bbccd721363897950a55ce09529503f25a69522e5c91a22679b66e941e5f8654","d3a1e70795c38d7851b6e4f3b441c5ffdae171d6e2576a2204b7d79059aeea66","d7b8d41887c5fccfe19802c4336d34348b752abf0d98839575699d71deff60be","063fe3004728b8516a4d799ee16f9a71801ba24e0443dd98638cef1bd4353a7c","0267341e780d4967cbd069ea57db7aa4e1fdfe74702ab0366a7a4c1da0ca332b","ec5a0291f1bcbd2662640e7a6ae0a632ce8f0fd55c02236bb43203f38436ca36","7ffd42ac60bedb9b97e7c35b48af9f71b0a2289f3324f414826eeaea937d144b","b20bc124abd8ee572d0d756713ff987b116cdae908a6fcbc40e80d4b999f56b4","a599f3f450ad62c3fdc0c3fd25cddcc9332ffb44327087947d48914a8da81364","645dff895168aa82350c9aa60aa0b3621b84289fef043be842f45a9c6c0ac6e2","f068ff5b7fb3bdc5380e0c677e21de829bd25cdac63a9b083fdc220fcb225280","09d2fdca6ea6c135897a26976ad3c0db724adaf23ef4e38ad852b1d8efef1ae6","15de5b7739bf7e40213a200853bf78455ee5958af08eda786605a54a7f25ade6","aa31b69fc0094a66e771e189d387ffed138b53b211903f96ca3737792f69abdf","37862e711637ebd927907a82cbf0143ea30e95eb165df554926c43936b1d77a9","89e253db2c2cc9a510c521f14dd2b1aae4de2556ee5159ad8d118d3587e3a880","3d0a172cee184a0f4111a7bd7fbb8729af3f54b30c06a2677d85c20ea9c811ab","d6a07e5e8dee6dc63c7ecd9c21756babf097e1537fbc91ddfec17328a063f65d","6fdc88b1287c276b55b7f7c4c7b49587813c763eea9751ce0baf0a7e61cd5d89","6a02443704052768bd021f24783aa104b02ae4444e9b735317bf13c6b857a11e","37987b0fe9800cf25473c882ce07bccdab2763c5681c1a2d16816aead46aa8d1","c84c03c721154068e1a60d83e9e85819bd3ef70b824ac2edc498aa31c06e5781","f4e5b4def2ccccfe43c0905074695c349230505faf6ae74a28b0c1090acfda7d","c96fb6a0c1e879f95634ab0ff439cbb6fff6227b26bbf0153bef9ed0aabba60d","db936079fe6396aad9bf7ad0479ffc9220cec808a26a745baebb5f9e2ef9dbc7","06bc0b9cc7bf0b92534f1517fe5adde1f23f60cc6cc5c59f8e1c65db48a40067","919a753b0cbb12ccc606c62e2d34884d75a48ba19b1dda497c72621b11dac088","2c27e33ee0bf722988da00abd582cc9b806ce3fd9153a864800a339ad13f3fcf","92d7b3a5aa5dc872e54cbad2a7094b3ea4f72c7901de1d07b4c334ff658297f0","7a52922b38e9686d5bdc6e75774929eec6688d26c1dfe4a03ddec77ede468e87","aa5efca2833d89b55248f1889a6433dab1b1f41768e9a75f8ce35f9bf56c5ec4","f3cb934699bea498259de69c44a4f93b461f079d72cddb041587afd9312efb6e","006855ddea8674d084173a768f88519dc154be94eba5e2120262a33709832b9b","17dd843a266f99ca4b3a1257538bd1cc69dc5c7f2f23c3891f0430615b8c9c1c","5430364886c721a30475253356162b6c27871718094cb3e69e2bcea71a17e533","1218398da7c8dc4add10bdb3aa2856aad54b123d847eaf574d1d694ac269bfb5","07886b8104556bcc9314b90cd2043f2286e54c1f6ba2ebbc953e1e43232e12be","b637cd92688a6cdf4f8f184ff529dc2bc7f15692828e2c0c66a60e6972f400c7","7061e83d6792897077bcac039fccf7325234004769f591c63a8cf8478bf551bb","51a74c09c3d3fc62fcfefed0a193c3d6388e3e0f8a574bb9d5c5b7cdaa32453a","277a358d61376fce7ac3392402909c96cf6a0a613146549fc0165ccff953e012","50614c808e099a1d4413786f3783d9eeaaa74b267f2c87fcf8a893287e91c301","f4cb6530f248e87cefa74ef623206fec805f6252f885f8e14ef3d1a5872cef2d","38c332caadd8391566552395d592076470a5e7423f70964620eabf05c02907cd","eb17b5bf1fc763a644c21d76572c0e41e351c3f6dfcde649428d5d829f7294d2","cb124162c87b29ff5121e3ee5bb29c782f101e0135d6c2644ab1b31d530a435e","406d6f5d3707c488362fb40d1c1f8a7b0a42b70554b427160185d93e430228f5","2e9776410c5bc290d9432a9215c67398a273e514a79b9e15f32ecddfde8a03be","313ff8df074b81d3e4f088ff3a3a06df3d9b0d0c7f55469ccc2ac887ecb6b867","c718475bca06806cc243e77777641cb67ba68f2c57321a4773ebb47760a3bcf2","96e6bf811343caab5112b68880905c5d20d9257054afac6c18e718a4c549ed27","a2793bc73ba63ca7d259cb0f0b61d0023820170d08a1f9715006c8042d060165","d5011b38165771fdf75a9a06d6d379a1fc7edd7eb695ebdc52319fb6e3c6d81f","88417fb19d339304e9616a38ea513251047c9e300c81f9467fc317df8a582e71","3e8e2d132f726dddbda57819f5391504e585cb3beab6b32203064e7e40618583","6e23627cd3f10418b5b2db102fdcf557b75f2837f266d88afac6b18f333bb1bc","866046dcea88f23d766a65487ee7870c4cf8285a4c75407c80a5c26ed250ef8d","019f4f1cbc781cc15c6173f8be5ef907405722194ab297127b3c3426e5368339","41f4413eac08210dfc1b1cdb5891ad08b05c79f5038bdf8c06e4aedaa85b943d","c79f1c8b51d8475dde8d2973f740f43ca34b1f0a95d93649cd76c1ee20abba19","35f0d2bd2c5c05c0cb19095bf5b7c44365b1c88efe6285370855b90417277a64","8264b129f4c4eb4799703f8e5ee2223a184d1cdbfc782158b1f40a88a4435a1f","527ddda6f8be1279f3294714534c49d6e90f238cea325519882ebf88d7ec5bd2","b23877792e8bd00271d0ec5d401b68e4228540a4316de3d9dfb697b955c161a4","35b2eb1de01633db90d41abe93730b29984856fcc840b4c2801bfd3761a2097b","95f0c9127b879c2fc7e31f8e09ff45bb4aae302e60f4b9ceaf4d9ee6bc51ec66","2a6b4655a6edce9e07c7d826848f72533c9991d40bc36e3f85558ad20e87ce2d","6e3d29fdc96ebbb2ac672d2dae710c689c1ea0d0e9469e0847616f3c38fd085f","d505055b8fadd42da235c85947911d8d198ad70c5f5775991e7821d4f89c90f5","8b5a5852099dca7d7e7a7cef6d681dc1586aafacdb963ca180fe5cabbfa3a24b","0d1aa3341d1ad2064adada71c5d01a2f572e4aac09410e5616d90894105a0eb9","52494ca5a884da3bf11b8165ab31429715f0970d9c6383240c5666f4bd713e01","162fafa2291749df2ab4516854aa781fcee1d9fca2ecd85fb48ae794c0700ce2","b4b9b51ee6f6309cda2e539245235a8caeca2b1d6bf12b5e5c162d17333c450f","d2ffe8356f060b88c1c5cf1fa874a4b779fb87fd1977084876e8be9eab6bf485","c76053984b39150d00ade365b096a8bc21a4a7f2ee9e0a926711b00f8e7bf701","956b510767e3d6f362ea5800510635197723737af5d19ae07ee987ea4a90bfa5","cd1a8ff61f5063d7e6e2094e25d35c90b499961b63911f2f4ae0ff5555c2b4d7","1cf09b5945779e9bc75c4dcd805fb149c28fc90da3335186ef620647a3c540e1","9cdc0b9a313090ec45b34ea1eb02fbace433f509e753634b043e9b83038261e6","c93474cff0088351a65d3cad24037874a26a5371a48528563e56efe31cb3d8bb","b4580df8ea7f62d7b06588001952bf69426e6b03cf3d2569f5f608e45f29ba08","de27f7bb9be9d8a2b4557ec6503b8a315f74d598ce9a0ab81b5ed5610e1a8e81","fe3c378dcefa7ed8b21bd6822f5d7838b1119836da75ae1e1fb485d27b8ffb62","7365bf3333d4277b6fe374ed055624e5ec080dbb919e2d78f1cb75a3f1a4b4f6","a5fbf3bc5c16ab5c84465ba7a043a4bee4c2b20bd3633d50d80118a3844edbaf","0923e4ac8c894ad507bd2daee0df66b699de88467201381ece011ba5a080e1ff","e4f6626f827ea509255647e1b6db82145a2eb1a6b46202655e7d9bb19145c33b","26e23972c40f378f0301d8d7025ea895557c2865a1a31c8ea9c3fff0dbc27075","818469e2f1c49f6cf6f220a81df013daf6e4dc4af7f9c0890ca63ce06d7d7299","e94b01c6c9221682a1ffd8577103408642c5433923420e517d8d8c695c4875c0","466a15bf7238ebd3900d136db38eec3af69d0761c0286ab59952870eedd6e319","9113ebe8d776516d3a302ec431d28915c9398a75beaef1eb38cd66ae0bfeb014","1f4df460bfe98e20fae494ade49e50c98ed1997143c7eae7a00a1cd93bfd4307","e179bf25417780781dc994f657e724419e6dcbe5a136dbfa55efefe36bdb4b63","359cc00faebf7c559a8e2e247fe03319a863eee5c307881fd55cb6e71ee99b9d","a0abcb32b7a9291276879912c9a3205fbd1d6930ae4f29e91fe30227e2762893","b67fb584ca2449669c113e75866d339ee4e6bc74a441efd00c1beac460412584","28810dc1e3da65bd19de2fa2c466620e18563203f8dd10ab3dbdf7893175d480","0f79f9784797e5358bbed18b363b220eaed94de7c1ed2f193465ac232fe48eb1","f8167585a01d54b5d5639021a5460058a24c0757fcbcc03399f4188406d6992b","b3a981b18288deef4ebab7b377706695207a914d47013e917ef53e2329f190a8","a6ba2e360543309b68ec6fa3001f9a8a8f7e88f400d7841bd4e6e3ace1292689","63463ba828cfe926a65f723145e95838be675631808f759aa82e21fe69a67817","16c8799f066a9439654b5fe6a51b2837ae068e0c508985a2ebb8dbaf45217f6d","4967a2b3314359959a7489abb299a12d0482b52a3989a816640ee83cb0d2a14b","57c56cfe805fad92c7cbde235c0582f646c7389b0d1868931cf58a51a8647c31","a48e54efa77c04f86c474a8ae49f5043efe9e0df44347b54c1faa07d23a6c096","bef87db30d850bdaca996f64fc1bf3f7b56a4d61f3b93c64bfbc5f266f813c3b","9513cc7890a3a309879f56b0d593744a3351e855d0990259be3b3f9367033d0c","745c59dab1aeadfdc8d7fa72b219cf754ea204902495ee5b0760b695124a719c","c258cf2cb41d521679c7d4abfe780dea35bbe6685bc59da6bf6fcf6eddf0be31","54f64022721fb3d06404d54af359952abeab07039a86c639e8a6309d4f3db9e7","24ab5f67e497d2c2905e345fb4a6c8a3ab5d27c625ce6121d463f9336a66c420","595a5f486aeda3c5839aec852bfa5a4f323cc2225676711abfe11d9328f0f143","35acad8c4d5d645eda408afbbf7bb2153545c86d8c46adc05d8aafd15d5a1b1b","00d8707e8a50f0e45a21a28d36fc85c7fb96916ec40de1221d423c9ad55509aa","83d3ae63e18c8c1f018d891a12359d6cd942524c42fd08155da0988f4ca2608f",{"version":"9006404a0afaa796d3eaea62ace5dd6e1b2c91e16f5a38327dfa000c5a25ab8b","signature":"8bea35989069f4d91fca5d4ab4f419cb2a6d1f54a98af0c08e78ef6d18ccde8b"},"8650e6a16468f8edbad0ddb6455b5f6b413c0dde2297117cb881cebbf5f8d8cf","a83b330e3fa7e06cc764a8b5647e5e3fa32b24f1b4b96b3568e1c9bfe57a206b","07393ececbdcb9ba04465b9f5f09354e04a4056763e533fe046c18e2db4d5115","7606da6b0b1dae32360fcd409a1fea9540ef7e6784398c122518615c9e147419","178c24d837f5749fafb57b8f3c7e7e651194179b66e8b8133697612291826587","84a47b30a470bdb90a72f3bd8da4cba0914734aadc71c6ba1d873e1ccfa68216",{"version":"bb70eb0be2c840d6dce937766fa55a60c8e901feff50f92306c4a2278dcc59ab","signature":"8358a10fe7adb70e44ef61c97e255e50ae77e1d0c1c050ec3bf624ecca963ece"},{"version":"72952a4d4001c461399aa36bcccde68efc01aae9cb00b26673a2f39d37ce3823","signature":"1268919be0a764b26fc63374adb9864ee42486a099f81a45808e614cf557702b"},{"version":"7637eb0054d1602541fd861aafb326f49455ce6d5ca7c893a923009d89565a91","signature":"3eb8c9636c701654e6aeb30d8345464e77198281b5168f5c0c888cdc7127f20b"},"c194f25db7bac0eee4fcfd608b23a995b35f86f1f6f95695bb96abc7992c7496","1c94dc52d22fb68a30c4392feec3cb1b37e881de50e4117760bf13761a8522d6","6f3f99eb1d3a6097a713f13c76d6df2a2f3f59c3023f7de8ce7c47b8e222d315",{"version":"82119a8c2abf5b7ba0d881617ed9f4dbfd916652d3718f3bdda1529731d95dcf","signature":"c4ce1b45426c21960dec3cc436467fd252f09e6561545372c8f5b09fb1dd86cd"},{"version":"22c840e4c29d2f03a9ee4f2ec222963193cf1102c76ab641b7cc3e74a470813b","signature":"e018531501dde4dd0ec5b17569fcbf0cb3ca1a8c1439a34bd27f794535392eec"},"2304d9cad8c2cecbc5c810090e84986fa65b84fb083a546feb1fa8e43a86890e","6187d97d074e4a66a0179ff2cdd845e1809b70ff5d7b857e0c686f52a86f62f7",{"version":"8dfa0aceb8e6ae9397a3784f720a07d5ce5d133abd26fc146eaa13998f2c4e7e","signature":"f8ad24d3b21efb71918beb6ad06c3fe17674956d93a3220f9c1b40584cd2349a"},{"version":"a75f0f9368e4eb98416c39eb32f1277eb15c2b8b5c4194c34c314ddde34c3aad","signature":"bed0ae76ea0b46e537f17d26c919ad852804c833321d11bc7830f680ab349e7d"},"0dc164463e333b02a0f92e23c54a4142e9b714954c912cebbd08a61b3098d0e8","5a8ea8f4b933fe2a58dad240bd625f3625b952aa3bb70c15b3a34c214d9c7c34",{"version":"9ea09c7aab0f7781eb309d47a203b50aeab2c8b600e8a842a59e6b199aa6480f","signature":"8566c804d009e9929b70bf749de48d7b9c5cae6293a348d04ccde8db740ebb49"},"b545e921a96c9170dc9f788050eb53cede7a5ba4ce243e4eec6bb87e2383ffaf","1e73e8d1bbef5f4b2cd652df6eacf50cbb9a91cd41f974320541d2cfe08ee316",{"version":"f5e34b89cceea7c3f2170eb2903da7989d1a8d8952620dc0ec9cab95b6c9b12e","signature":"cef2afeffdff1ca5b5bc09bd3b49c5c5540061ea64d2bb69331b2bc25052d185"},{"version":"3a4fe76efe65c0a70ef79e4d2943913b071571f5a69d540a5d91fa783ad21d3c","signature":"85adb50581010c9233818b20a36de0b9c35bc1d617b323861724ff48bc8af128"},"307f088012744cf2e7bd53f4165108d9f77576b37721c7bf1b7d2c336e6eef6e","456fd4db1a34732c4c4b51a43007c2a2747bdffad79f32c50a258e13c6cf089a",{"version":"8f1f73664f47c23b8c40b35e74b33f1035b64d8b164fedc669770021540ee426","signature":"7ddbbeb73c0f76255e7919aa0eb9e77a0afea4c2a0fdcdf48f9fb048ca0c1158"},"2db0dd3aaa2ed285950273ce96ae8a450b45423aa9da2d10e194570f1233fa6b","7394959e5a741b185456e1ef5d64599c36c60a323207450991e7a42e08911419","8e9c23ba78aabc2e0a27033f18737a6df754067731e69dc5f52823957d60a4b6","5929864ce17fba74232584d90cb721a89b7ad277220627cc97054ba15a98ea8f","7180c03fd3cb6e22f911ce9ba0f8a7008b1a6ddbe88ccf16a9c8140ef9ac1686","25c8056edf4314820382a5fdb4bb7816999acdcb929c8f75e3f39473b87e85bc","54cb85a47d760da1c13c00add10d26b5118280d44d58e6908d8e89abbd9d7725","3e4825171442666d31c845aeb47fcd34b62e14041bb353ae2b874285d78482aa","c6fd2c5a395f2432786c9cb8deb870b9b0e8ff7e22c029954fabdd692bff6195","a967bfe3ad4e62243eb604bf956101e4c740f5921277c60debaf325c1320bf88","e9775e97ac4877aebf963a0289c81abe76d1ec9a2a7778dbe637e5151f25c5f3","471e1da5a78350bc55ef8cef24eb3aca6174143c281b8b214ca2beda51f5e04a","cadc8aced301244057c4e7e73fbcae534b0f5b12a37b150d80e5a45aa4bebcbd","385aab901643aa54e1c36f5ef3107913b10d1b5bb8cbcd933d4263b80a0d7f20","9670d44354bab9d9982eca21945686b5c24a3f893db73c0dae0fd74217a4c219","db3435f3525cd785bf21ec6769bf8da7e8a776be1a99e2e7efb5f244a2ef5fee","c3b170c45fc031db31f782e612adf7314b167e60439d304b49e704010e7bafe5","40383ebef22b943d503c6ce2cb2e060282936b952a01bea5f9f493d5fb487cc7","4893a895ea92c85345017a04ed427cbd6a1710453338df26881a6019432febdd","3a84b7cb891141824bd00ef8a50b6a44596aded4075da937f180c90e362fe5f6","13f6f39e12b1518c6650bbb220c8985999020fe0f21d818e28f512b7771d00f9","9b5369969f6e7175740bf51223112ff209f94ba43ecd3bb09eefff9fd675624a","4fe9e626e7164748e8769bbf74b538e09607f07ed17c2f20af8d680ee49fc1da","24515859bc0b836719105bb6cc3d68255042a9f02a6022b3187948b204946bd2","33203609eba548914dc83ddf6cadbc0bcb6e8ef89f6d648ca0908ae887f9fcc5","0db18c6e78ea846316c012478888f33c11ffadab9efd1cc8bcc12daded7a60b6","89167d696a849fce5ca508032aabfe901c0868f833a8625d5a9c6e861ef935d2","e53a3c2a9f624d90f24bf4588aacd223e7bec1b9d0d479b68d2f4a9e6011147f","339dc5265ee5ed92e536a93a04c4ebbc2128f45eeec6ed29f379e0085283542c","9f0a92164925aa37d4a5d9dd3e0134cff8177208dba55fd2310cd74beea40ee2","8bfdb79bf1a9d435ec48d9372dc93291161f152c0865b81fc0b2694aedb4578d","2e85db9e6fd73cfa3d7f28e0ab6b55417ea18931423bd47b409a96e4a169e8e6","c46e079fe54c76f95c67fb89081b3e399da2c7d109e7dca8e4b58d83e332e605","d32275be3546f252e3ad33976caf8c5e842c09cb87d468cb40d5f4cf092d1acc","4a0c3504813a3289f7fb1115db13967c8e004aa8e4f8a9021b95285502221bd1",{"version":"e7be367719c613d580d4b27fdf8fe64c9736f48217f4b322c0d63b2971460918","affectsGlobalScope":true},"3d77c73be94570813f8cadd1f05ebc3dc5e2e4fdefe4d340ca20cd018724ee36",{"version":"392eadc2af403dd10b4debfbc655c089a7fa6a9750caeb770cfb30051e55e848","affectsGlobalScope":true},"62f1c00d3d246e0e3cf0224f91e122d560428ec1ccc36bb51d4574a84f1dbad0","53f0960fdcc53d097918adfd8861ffbe0db989c56ffc16c052197bf115da5ed6",{"version":"662163e5327f260b23ca0a1a1ad8a74078aabb587c904fcb5ef518986987eaff","affectsGlobalScope":true},"a40826e8476694e90da94aa008283a7de50d1dafd37beada623863f1901cb7fb",{"version":"c48c503c6b3f63baf18257e9a87559b5602a4e960107c762586d2a6a62b64a18","affectsGlobalScope":true},"b0c0d1d13be149f790a75b381b413490f98558649428bb916fd2d71a3f47a134","3c884d9d9ec454bdf0d5a0b8465bf8297d2caa4d853851d92cc417ac6f30b969","0364f8bb461d6e84252412d4e5590feda4eb582f77d47f7a024a7a9ff105dfdc","5433f7f77cd1fd53f45bd82445a4e437b2f6a72a32070e907530a4fea56c30c8","d0ca5d7df114035258a9d01165be309371fcccf0cccd9d57b1453204686d1ed0",{"version":"ee1ee365d88c4c6c0c0a5a5701d66ebc27ccd0bcfcfaa482c6e2e7fe7b98edf7","affectsGlobalScope":true},{"version":"9a30b7fefd7f8abbca4828d481c61c18e40fe5ff107e113b1c1fcd2c8dcf2743","affectsGlobalScope":true},"173b6275a81ebdb283b180654890f46516c21199734fed01a773b1c168b8c45c","304f66274aa8119e8d65a49b1cff84cbf803def6afe1b2cc987386e9a9890e22","1b9adafe8a7fefaeaf9099a0e06f602903f6268438147b843a33a5233ac71745","98273274f2dbb79b0b2009b20f74eca4a7146a3447c912d580cd5d2d94a7ae30","c933f7ba4b201c98b14275fd11a14abb950178afd2074703250fe3654fc10cd2","2eaa31492906bc8525aff3c3ec2236e22d90b0dfeee77089f196cd0adf0b3e3b",{"version":"ea455cc68871b049bcecd9f56d4cf27b852d6dafd5e3b54468ca87cc11604e4d","affectsGlobalScope":true},"8f5814f29dbaf8bacd1764aebdf1c8a6eb86381f6a188ddbac0fcbaab855ce52","a63d03de72adfb91777784015bd3b4125abd2f5ef867fc5a13920b5649e8f52b","d20e003f3d518a7c1f749dbe27c6ab5e3be7b3c905a48361b04a9557de4a6900",{"version":"1d4d78c8b23c9ddaaaa49485e6adc2ec01086dfe5d8d4d36ca4cdc98d2f7e74a","affectsGlobalScope":true},{"version":"44fc16356b81c0463cc7d7b2b35dcf324d8144136f5bc5ce73ced86f2b3475b5","affectsGlobalScope":true},"575fb200043b11b464db8e42cc64379c5fd322b6d787638e005b5ee98a64486d","6de2f225d942562733e231a695534b30039bdf1875b377bb7255881f0df8ede8","56249fd3ef1f6b90888e606f4ea648c43978ef43a7263aafad64f8d83cd3b8aa","139ad1dc93a503da85b7a0d5f615bddbae61ad796bc68fedd049150db67a1e26","7b166975fdbd3b37afb64707b98bca88e46577bbc6c59871f9383a7df2daacd1","9eece5e586312581ccd106d4853e861aaaa1a39f8e3ea672b8c3847eedd12f6e","81505c54d7cad0009352eaa21bd923ab7cdee7ec3405357a54d9a5da033a2084","269929a24b2816343a178008ac9ae9248304d92a8ba8e233055e0ed6dbe6ef71","93452d394fdd1dc551ec62f5042366f011a00d342d36d50793b3529bfc9bd633","3c1f19c7abcda6b3a4cf9438a15c7307a080bd3b51dfd56b198d9f86baf19447","2ee1645e0df9d84467cfe1d67b0ad3003c2f387de55874d565094464ee6f2927",{"version":"7da97d603bf3dd0000f56467c56cb6efaf5f94692980474925fae6c33412b12a","affectsGlobalScope":true},{"version":"9cf780e96b687e4bdfd1907ed26a688c18b89797490a00598fa8b8ab683335dd","affectsGlobalScope":true},"98e00f3613402504bc2a2c9a621800ab48e0a463d1eed062208a4ae98ad8f84c","9ae88ce9f73446c24b2d2452e993b676da1b31fca5ceb7276e7f36279f693ed1","e49d7625faff2a7842e4e7b9b197f972633fca685afcf6b4403400c97d087c36","b82c38abc53922b1b3670c3af6f333c21b735722a8f156e7d357a2da7c53a0a0",{"version":"b423f53647708043299ded4daa68d95c967a2ac30aa1437adc4442129d7d0a6c","affectsGlobalScope":true},{"version":"7245af181218216bacb01fbdf51095617a51661f20d77178c69a377e16fb69ed","affectsGlobalScope":true},"4f0fc7b7f54422bd97cfaf558ddb4bca86893839367b746a8f86b60ac7619673","4cdd8b6b51599180a387cc7c1c50f49eca5ce06595d781638fd0216520d98246","d91a7d8b5655c42986f1bdfe2105c4408f472831c8f20cf11a8c3345b6b56c8c",{"version":"8704423bf338bff381ebc951ed819935d0252d90cd6de7dffe5b0a5debb65d07","affectsGlobalScope":true},"7c6929fd7cbf38499b6a600b91c3b603d1d78395046dc3499b2b92d01418b94b",{"version":"ab9b9a36e5284fd8d3bf2f7d5fcbc60052f25f27e4d20954782099282c60d23e","affectsGlobalScope":true},"a42be67ed1ddaec743582f41fc219db96a1b69719fccac6d1464321178d610fc","37093325db9a56278c3e9e87e55aeda28b27533391282ec007c8655634af87d3","531bdea92e1212ddb7c6be94d3d1ca423d4ef5d289f3257eab979aacd9367938",{"version":"f08200becd251c8643635856312a6a3ce4ddb654d0b9ab12e9c20d19bae11f07","signature":"25d88962287a82f07e2348bccfa6a83393aebf0188c45d56704cd2fd45c8ecd2"},{"version":"59a1aed12d5250de987ca7dee3fc25ac8d8a3ab41bf989a5d7ab5cbc2621c9ed","signature":"ba813bf4d8a0aee137ca0689d47ac5934703197e333518292648cb0e5377e2e3"},{"version":"8c23de947d960f10dfb5dd8d1add44993c1743839d91aef1e3d99e2db8164e8e","signature":"a647fdc7aea1f617b81be8270151fb029495a4dd89867e9a94d88b94896feec6"},{"version":"afd9d2c83633ff13da1a15c03bcb3a96bcf65caaff9277bf3c7bab888781841b","signature":"66babba14ed36e6fdc83acc24d51cc55e0df33e0e4137d7f1d582c3452047d61"},{"version":"ec008f4714666ae53f5e4603bb975fb73460cd4dcd71d69097fa0f052b7838f7","signature":"b932f86ac9d0f8c90d02b2c6d36509eac00a7607f8ba27f01b0723c0da828e01"},{"version":"b26e20e2bd5d77977acd0f2a33ea68cd763556b276220749bf4dca8399ed9ae7","signature":"2517449e92069163ad7996baa50c563bd9ad08d8a48fbbffdf9daf4ce06ee9c6"},"df6e892afe15e2f9083eb9e72812787e5b9157e403c2c04a731180873e0e8ee6","c2818eb73049331255121829762b8744d244949992be500fe7f4a5db6d3e18cb",{"version":"05d4f98d9f23b409cfaa36bb2270d62f2aacf89381022a1c806cc6b35c9ec999","affectsGlobalScope":true},"5840dd0c69df32d2f9a4726edfeb1e4304217c086390ee57fc3535f1edc967cb","a231722eed95fd2b9a74ab7693eff97efc6be97bdf8931221fbb94482bd3bfe9","14dd1d2088e5867dece3ef7b88c5d0fbef96f1ab1bcee27dceb3855a0f4319eb","f36b4a03d754d1eb9d6a31e08ab4bd1e74e851d17452fdfe61ec7d53040b1cb3","ea6b0f1d32646e8bc79096f20c34474aa2eca3fceb9b1a34d5e2c3c50c332acc",{"version":"8d607be0d4337c4f70ec2705fb077757a5f31731ed99a4a64d93f455b030b33f","signature":"94bd87b4258ed486d7ab2e5d8c17758718b909c34475c5627dcd9bc11424838b"},{"version":"5f1877f46427786a5b7dafc9dfcc3b85fe856daf940ff1efd0ff48f6bcb6d6d9","signature":"8fb0009c19a607394d3a66b43029031c784c58975116dddce49def23f1626458"},"147cb5b590b77c8c58e4ef0af1ff11ee90ee2b34262816df0665b6ff8fd50aad","6e0575b628aedce5db38c17569e5c909beead07f9052fe7944fb8bfccc3db92e",{"version":"9cd8a69c38b48159fc18e44b73a23c234a951bd7a50098230205e6982fd345c1","affectsGlobalScope":true},{"version":"da05cd112e7c5a02335c271fe8165d2f76abef86d59ab5dc2ba9fdc640c6f5f5","signature":"aa6eb1ed02a683d729cd9930163cb14446a23298efc45cf4f3dfbe81d6eb2587"},{"version":"9c5682b7737b276f87e16f2af0a008aa98632fba56c06b4209c1750f506c0566","signature":"c434a84d3d2fa84700fa039f7c5cba68a5555a6fa55334d86db1a5bf6954d603"},{"version":"7eda90d6b52470015aec43b28718bc509d4de340082cbe48e333eb000ee69ea9","signature":"26c609f9376919a5fdabbfcc6295eeeca415df625c14347e4014f1dc9f2a01e3"},{"version":"32101e01593f6d9d793e5c9d4d123cb92b1ee91688c0f97b17b9899c510896b2","signature":"d91567d00d5ef66ba733af0af2c0b275dca5e39986d60d584dd0751d401e33a4"},{"version":"c69920b36f958f6ecfa435a1d4f800e275dd2316647277b7cc70c3cddd419615","signature":"33ce9b2c5c973319e5cc437ed1cdac7b9509891be27056852defea697e55c8f5"},{"version":"f69f98bbf4298277f81055001a25c1946fc6bfe310559388d4815a0ef6cfe9dc","signature":"f93438a26bbbde17f0fe47a8240db8a9199e56d392a709553ee7687dcb2d69b4"},{"version":"2825e44db4dca2ec91c3261cbd89a5501713744b08b021aa11c449ca6f530596","signature":"ae80e0e5fc350015877854a259a9c720d2d5cefa1a0813627079eb34ecd43450"},{"version":"efbfb9ce2643cf9c30aa8e37d954416316012a8c097e35bf0cfe124bc2d37c8d","signature":"407910f69db1af89d108b14c07be8ac25fc67b12bf2790e5a8d9fa2e3f16947f"},{"version":"bcdf3698495c5466f41d3d16e3de6c44f4a69c03926c98efae5e330a0c122c3e","signature":"4d89e521e74ff6ccb88bd1c9c1a058132a1a8548186cdd214ad7875472826c91"},{"version":"9c17e7996e596f7f4bee6e379378daa346d2c8468d21af864e5f4acc0de384a5","signature":"39552898da0611d5157209a3406fff0e54ca8caa8dc7df13229a2cfc170df5e7"},{"version":"7de0a1dc6d0cd6c7b145f3f4e8e21ad4c4752624f5a733f3ea45efc0a0c4ab5a","signature":"e9cbdd60d300fea3ce0cc44293809303369ce19d1462da8dd86c8228264bb587"},{"version":"c4d70e90cda8a0f81219d060963fa9af1748b42a0955213efcbf3d06f11c6b0a","signature":"1521fe9bacd35682986b23dbfd9d00869db111906c034997315a4b9ed7493a83"},{"version":"f542fce7f0194259df5767108a11bb1baf3bb7c9c872411b376cdfa7d734570b","signature":"a15d533755b78cb986d61c63a0a1fce0a0fb83561a41949c5b77255c2cd0c26b"},{"version":"96ad0a2c60e5d3f666f379dc6d70986c5f9b5dcb3ab7e3338ca8ac31108694fc","signature":"6039c68fdb23471d32de494ce6484e8f4e96041b0d42855fd6293f81c2decaec"},{"version":"3d859b948257217ae4876c6d6685bea7c9a60e2adcd168159aa15a0af657a056","signature":"3b0c04691a3ba35302b7956d9f8ea919c898f76c745fc0231ddc53ada87f1efb"},{"version":"04dc380e08cc9c8c3f7369a78477c10fb135663b790b94c794bc247e810f3278","signature":"e7ab526470978a3520c94ea224deadd4e5b876b1cbec497e73bfe289848aa49a"},{"version":"553faaffd7bffd769269014acd264da424d01201b71b07808dd535fe2712d8c4","signature":"5982967283aa70bc89349bee4b7400a2eb8d05acdf35e4930dda2793d9c1052e"},{"version":"2a49673fc25bcd5c4fe4b874c1c167fb30d193267063d50fea4953b6095496d9","signature":"5982967283aa70bc89349bee4b7400a2eb8d05acdf35e4930dda2793d9c1052e"},{"version":"553faaffd7bffd769269014acd264da424d01201b71b07808dd535fe2712d8c4","signature":"5982967283aa70bc89349bee4b7400a2eb8d05acdf35e4930dda2793d9c1052e"},{"version":"8d05863301d3bb9d9d4ac93023d2458095ba527ed7efce525c2f857fbaac2abb","signature":"e7ab526470978a3520c94ea224deadd4e5b876b1cbec497e73bfe289848aa49a"},{"version":"0cc1ff8040d9851ffe3912256431052279e60f4012bd90532797d987f29477b9","signature":"ca536c508e3c6af4c4f9e677023bdb3ed55b6323fc2dceb096b9dc23d6d3bc52"},{"version":"5586f94aa197beba2d31e464cfc52ae8abcd143d53f5c93fd733ecd75910806d","signature":"e3b0c44298fc1c149afbf4c8996fb92427ae41e4649b934ca495991b7852b855"},{"version":"bdc006420e2e367de651270ebb429cc752399f08b2c293a17f742cc82321befe","signature":"37879103725670ad0da8dc68fdfe4c254a9ca327968e9c343e3764da4823c8a9"},{"version":"36a2e4c9a67439aca5f91bb304611d5ae6e20d420503e96c230cf8fcdc948d94","affectsGlobalScope":true},"8a8eb4ebffd85e589a1cc7c178e291626c359543403d58c9cd22b81fab5b1fb9","247a952efd811d780e5630f8cfd76f495196f5fa74f6f0fee39ac8ba4a3c9800",{"version":"f9d18c70a28d828e1a97294912064e28952c4481a3a12e6880a728f3508c29da","affectsGlobalScope":true},"76473bcf4c38aeed6cde4eaaf8dcc808741dbe5280b957b982603a85421163a6","40c4f089842382be316ea12fd4304184b83181ab0a6aa1050d3014d3a34c5f8f","55584873eae27c5607725f0a9b2123cdea9100fd47cd4bfd582b567a7c363877","2c8e55457aaf4902941dfdba4061935922e8ee6e120539c9801cd7b400fae050","5f02abbb1b17e3d1e68c5eea14adf4705696e6255e2982b010c0dc2a5417b606","670a76db379b27c8ff42f1ba927828a22862e2ab0b0908e38b671f0e912cc5ed","9e0cf651e8e2c5b9bebbabdff2f7c6f8cedd91b1d9afcc0a854cdff053a88f1b","069bebfee29864e3955378107e243508b163e77ab10de6a5ee03ae06939f0bb9","d3f2d715f57df3f04bf7b16dde01dec10366f64fce44503c92b8f78f614c1769","b78cd10245a90e27e62d0558564f5d9a16576294eee724a59ae21b91f9269e4a","17f0ae35f62a9586cade6c10e5a0d61362257b8e03e661c49ca417e4f3da857d","2f5747b1508ccf83fad0c251ba1e5da2f5a30b78b09ffa1cfaf633045160afed",{"version":"a45c25e77c911c1f2a04cade78f6f42b4d7d896a3882d4e226efd3a3fcd5f2c4","affectsGlobalScope":true},"b71c603a539078a5e3a039b20f2b0a0d1708967530cf97dec8850a9ca45baa2b","0e13570a7e86c6d83dd92e81758a930f63747483e2cd34ef36fcdb47d1f9726a","104c67f0da1bdf0d94865419247e20eded83ce7f9911a1aa75fc675c077ca66e","cc0d0b339f31ce0ab3b7a5b714d8e578ce698f1e13d7f8c60bfb766baeb1d35c","5c45abf1e13e4463eacfd5dedda06855da8748a6a6cb3334f582b52e219acc04","62f2d6b25ff2f5a3e73023781800892ff84ea55e9f97c1b23e1a32890a0d1487","858c5fcc43edd48a3795281bd611d0ccc0ff9d7fdce15007be9e30dad87feb8e","7d1466792b53ca98aa82a54dbed78b778a3996d4cbda4c1f3ba3e2ed7ba5683a","1828d8c12af983359ea7d8b87ec847bbaf0f7e6f3c62fb306098467720072354",{"version":"5e2485f40a10d12efc03acf267bee528620075f8dc9f0cb0b570bcb9709ba14e","affectsGlobalScope":true},"fbca1bcd16be145fc0078e6c4d52b12d14c713874994492f7ec4ed4e1e0f7f01","89922e827dec33f5049b5518e7276f999eea41bf28e9eac8dab981eb55f56613",{"version":"d03772741a32a7846bd4ac09c354a6083bfd611e5409646162e254d19e7dab9a","signature":"112d746cb784f7aa68010ec3abdcabe070c5aa5d105b991d02e6cff1f922fc59"},{"version":"eef204f061321360559bd19235ea32a9d55b3ec22a362cc78d14ef50d4db4490","affectsGlobalScope":true},"8a659f7d82d932649a78f89643c5b436953424a219d705d49b8b3d9ccd6e35ff",{"version":"2d412861573a672bd90fdcb1e48740593324565f3b3aaf6808c0e3e2f0d54ae8","affectsGlobalScope":true},{"version":"cd711db43a952f15464b571ac11b7a440332cd52342bc92c4bf908c70688f57f","affectsGlobalScope":true},"9d8709c916778cb34830708ed47b78e9a46d1fb2eb73a682b14eee990bed4aa6",{"version":"507e2131e89b515ce40c05c0c2fef6cc575ba8947703f92e8cdf36078747a9ff","affectsGlobalScope":true},"999a90d30a3183dcee987d0a5a7c586aba5bacbf6ce087ba8635124082ccfeea","8a5878edd52f4a720560b4c6e6247e9ddc3df6118ad9cf2f9927903b03d5f440",{"version":"e7be17cfcbe98809c052f384c230ecea9e1cee045edac9db0659e997a988ff9e","affectsGlobalScope":true},"7d2a0ba1297be385a89b5515b88cd31b4a1eeef5236f710166dc1b36b1741e1b","8e87660f5170c195ade218937e360484775be6a4e75a098665d9ba5a2e4cdc15",{"version":"525b52b38b44420fb1758c0917e7b67cf379f7f9477d2ba7343f3d5f50a44258","affectsGlobalScope":true},"65b91a3725399231d3469529b5e27b85bf2aa98013e607f308e5fe260b47eeff","a11181f6d68200e83ccb1fb48b262a7132a3257e0a230f41c9dc4c351964297a","2f84bc2655654a2d8c149f5086a7e99ba1f2807dfc3a5b4ab7ee6e01f5e40e8f","0c8bec80ec9f9c2280384f378658f7617e0cdec533ce73917924e56bedbad096","359f23bc7fccaec08632ee5c33eb333a5b207fc8ae17c881c7b69919aced4d58","51bce1535d9cb87390d75581866d79de7b2e2cb525a89fba84411c8bb5be52d2","88cda4269c54f0803834fd62b2fac61af8bff7a085693f7ca9df85c1f19dee8a",{"version":"4adff7bda52ad8e5570a03f896ddb148abf3a7305ba35cbbcfc880d0f4d0c664","affectsGlobalScope":true},"754006450e5de2b7dac5993194326e3a65c1474673f7304c20810f5eda18ca05","fdf0aa1a72ff0188a9013926201a391116ef6701cd439b89850786abdf755fb8","0b5817d9435c019648f2a2326eaf1086efb72e8e90e28eb53a58b2f31f61e161","abf9ea97b78a7b239186cf5b7ed59c4a593abac3c408c8c95fc5e604cfdfdb43","ae91c9161caf0af81c89e780a045fc5ea8382407e516342e409c5db9161d3b32","d30c69f9eb16583b0a406358224c312b865514a6a7c787a57f16ef08e49b1886","5e02756608c1ac8ddf96878c3af3d4db7ed4e272aef24837e255859ee0a4fb71","4a662115c4c7186cc027ef4a8163e48c7f1c57f05247f08d5acb2344fae2ca53","d598157512ae6e0d3aa6bb0dd261ae34845831dccf7bc7739695ee2589eb76f5","905fbc07f65451b05cb5594d162674eb3ef8f2bf5f13552a1702215664aae3e7","50f63746fc2a779d1f9c5657fd78e292045dc98b540e026799e039ea629f2943",{"version":"317da6b41e240cdc9e8e82289d6b34170e4bb65f9a7a5f37fcd060dd7856e7c5","signature":"e2163846f7c36dfc18f943ae762f94e730f7763853e04d89d37ba3e20e4ca6e5"},"87f287f296f3ff07dbd14ea7853c2400d995dccd7bd83206196d6c0974774e96","3dcefe176e6dce7a06bd345522e19f631f7fdb370335e2e93bc225b3afbb0bd0","7578ed901eec5f590609fc7a6ba9027be5735ad1aedef119aa56d53a22dfbe02","5b7206ca5f2f6eeaac6daa285664f424e0b728f3e31937da89deb8696c5f1dbc","0504070e7eaba788f5d0d5926782ed177f1db01cee28363c488fae94950c0bbc","1e87d58d3678958d89e2a94454afcc827f1aa6363abbcbd4f99729e65ab47995","6847334317c1bc1e6fc4b679b0095bbd2b6ee3b85fe3f26fc26bac462f68ef5e","2224f3072e3cc07906eeed5c71746779511fba2dd224addc5489bcdb489bdee5","c269a12e83c5ffc0332b1f245008e4e621e483dd2f8b9b77fc6a664fcde4969d","072099609280e6659eb29b1d2a601e95708c90b7db2aba2571ebda50d1be0dd5","72dff7d18139f0d579db7e4b904fb39f5740423f656edc1f84e4baa936b1fac0","febcc45f9517827496659c229a21b058831eef4cf9b71b77fd9a364ae12c3b9e","f2a60d253f7206372203b736144906bf135762100a2b3d1b415776ebf6575d07",{"version":"8deffe6a16ad21ba5787f738ef7f184fe5f4da9cd5ae948ffe853da2348e9aad","affectsGlobalScope":true},"89ccbe04e737ce613f5f04990271cfa84901446350b8551b0555ddf19319723b","19f1159e1fa24300e2eaf72cb53f0815f5879ec53cad3c606802f0c55f0917e9","afe73051ff6a03a9565cbd8ebb0e956ee3df5e913ad5c1ded64218aabfa3dcb5","3f841292a135503a4cc1a9029af59dae135595810cfad5ca62ec1b2ad9846e8e","035a5df183489c2e22f3cf59fc1ed2b043d27f357eecc0eb8d8e840059d44245","a4809f4d92317535e6b22b01019437030077a76fec1d93b9881c9ed4738fcc54","5f53fa0bd22096d2a78533f94e02c899143b8f0f9891a46965294ee8b91a9434","f3d8c757e148ad968f0d98697987db363070abada5f503da3c06aefd9d4248c1","96d14f21b7652903852eef49379d04dbda28c16ed36468f8c9fa08f7c14c9538","7e8d3f08435ad2cefe67f58182618bfc9a0a29db08cf2544b94cbcae754a9bd9","8cf9b9045a614f883b623c2f1a631ec6a93321747e933330b2eec0ee47164a34","ff81bffa4ecfceae2e86b5920c3fcb250b66b1d6ed72944dffdf58123be2481b","458111fc89d11d2151277c822dfdc1a28fa5b6b2493cf942e37d4cd0a6ee5f22","da2b6356b84a40111aaecb18304ea4e4fcb43d70efb1c13ca7d7a906445ee0d3","187119ff4f9553676a884e296089e131e8cc01691c546273b1d0089c3533ce42","aa2c18a1b5a086bbcaae10a4efba409cc95ba7287d8cf8f2591b53704fea3dea","6f294731b495c65ecf46a5694f0082954b961cf05463bea823f8014098eaffa0","0aaef8cded245bf5036a7a40b65622dd6c4da71f7a35343112edbe112b348a1e","00baffbe8a2f2e4875367479489b5d43b5fc1429ecb4a4cc98cfc3009095f52a","6c65d33115c7410ecbb59db5fcbb042fc6b831a258d028dbb06b42b75d8459c1","3c92b6dfd43cc1c2485d9eba5ff0b74a19bb8725b692773ef1d66dac48cda4bd","b03afe4bec768ae333582915146f48b161e567a81b5ebc31c4d78af089770ac9","df996e25faa505f85aeb294d15ebe61b399cf1d1e49959cdfaf2cc0815c203f9","4f6a12044ee6f458db11964153830abbc499e73d065c51c329ec97407f4b13dd","f8a6bb79327f4a6afc63d28624654522fc80f7536efa7a617ef48200b7a5f673","8e0733c50eaac49b4e84954106acc144ec1a8019922d6afcde3762523a3634af","169cc96316cacf8b489aaab4ac6bcef7b33e8779a8902bce57c737b4aa372d16",{"version":"5f186a758a616c107c70e8918db4630d063bd782f22e6e0b17573b125765b40b","affectsGlobalScope":true},"736097ddbb2903bef918bb3b5811ef1c9c5656f2a73bd39b22a91b9cc2525e50","4340936f4e937c452ae783514e7c7bbb7fc06d0c97993ff4865370d0962bb9cf","5fc6e6b8232254d80ed6b802372dba7f426f0a596f5fe26b7773acfdc8232926","22293bd6fa12747929f8dfca3ec1684a3fe08638aa18023dd286ab337e88a592","916be7d770b0ae0406be9486ac12eb9825f21514961dd050594c4b250617d5a8","fc37aca06f6b8b296c42412a2e75ab53d30cd1fa8a340a3bb328a723fd678377","5f2c582b9ef260cb9559a64221b38606378c1fabe17694592cdfe5975a6d7efa","d7c30ea636d7d7cbeba0795baa8ec1bbd06274bd19a23ec0d7c84d0610a5f0c7","8a19491eba2108d5c333c249699f40aff05ad312c04a17504573b27d91f0aede","cf3d384d082b933d987c4e2fe7bfb8710adfd9dc8155190056ed6695a25a559e","9871b7ee672bc16c78833bdab3052615834b08375cb144e4d2cba74473f4a589","c863198dae89420f3c552b5a03da6ed6d0acfa3807a64772b895db624b0de707","8b03a5e327d7db67112ebbc93b4f744133eda2c1743dbb0a990c61a8007823ef","86c73f2ee1752bac8eeeece234fd05dfcf0637a4fbd8032e4f5f43102faa8eec","42fad1f540271e35ca37cecda12c4ce2eef27f0f5cf0f8dd761d723c744d3159","ff3743a5de32bee10906aff63d1de726f6a7fd6ee2da4b8229054dfa69de2c34","83acd370f7f84f203e71ebba33ba61b7f1291ca027d7f9a662c6307d74e4ac22","1445cec898f90bdd18b2949b9590b3c012f5b7e1804e6e329fb0fe053946d5ec","0e5318ec2275d8da858b541920d9306650ae6ac8012f0e872fe66eb50321a669","cf530297c3fb3a92ec9591dd4fa229d58b5981e45fe6702a0bd2bea53a5e59be","c1f6f7d08d42148ddfe164d36d7aba91f467dbcb3caa715966ff95f55048b3a4","f4e9bf9103191ef3b3612d3ec0044ca4044ca5be27711fe648ada06fad4bcc85","0c1ee27b8f6a00097c2d6d91a21ee4d096ab52c1e28350f6362542b55380059a","7677d5b0db9e020d3017720f853ba18f415219fb3a9597343b1b1012cfd699f7","bc1c6bc119c1784b1a2be6d9c47addec0d83ef0d52c8fbe1f14a51b4dfffc675","52cf2ce99c2a23de70225e252e9822a22b4e0adb82643ab0b710858810e00bf1","770625067bb27a20b9826255a8d47b6b5b0a2d3dfcbd21f89904c731f671ba77","d1ed6765f4d7906a05968fb5cd6d1db8afa14dbe512a4884e8ea5c0f5e142c80","799c0f1b07c092626cf1efd71d459997635911bb5f7fc1196efe449bba87e965","2a184e4462b9914a30b1b5c41cf80c6d3428f17b20d3afb711fff3f0644001fd","9eabde32a3aa5d80de34af2c2206cdc3ee094c6504a8d0c2d6d20c7c179503cc","397c8051b6cfcb48aa22656f0faca2553c5f56187262135162ee79d2b2f6c966","a8ead142e0c87dcd5dc130eba1f8eeed506b08952d905c47621dc2f583b1bff9","a02f10ea5f73130efca046429254a4e3c06b5475baecc8f7b99a0014731be8b3","c2576a4083232b0e2d9bd06875dd43d371dee2e090325a9eac0133fd5650c1cb","4c9a0564bb317349de6a24eb4efea8bb79898fa72ad63a1809165f5bd42970dd","f40ac11d8859092d20f953aae14ba967282c3bb056431a37fced1866ec7a2681","cc11e9e79d4746cc59e0e17473a59d6f104692fd0eeea1bdb2e206eabed83b03","b444a410d34fb5e98aa5ee2b381362044f4884652e8bc8a11c8fe14bbd85518e","c35808c1f5e16d2c571aa65067e3cb95afeff843b259ecfa2fc107a9519b5392","14d5dc055143e941c8743c6a21fa459f961cbc3deedf1bfe47b11587ca4b3ef5","a3ad4e1fc542751005267d50a6298e6765928c0c3a8dce1572f2ba6ca518661c","f237e7c97a3a89f4591afd49ecb3bd8d14f51a1c4adc8fcae3430febedff5eb6","3ffdfbec93b7aed71082af62b8c3e0cc71261cc68d796665faa1e91604fbae8f","662201f943ed45b1ad600d03a90dffe20841e725203ced8b708c91fcd7f9379a","c9ef74c64ed051ea5b958621e7fb853fe3b56e8787c1587aefc6ea988b3c7e79","2462ccfac5f3375794b861abaa81da380f1bbd9401de59ffa43119a0b644253d","34baf65cfee92f110d6653322e2120c2d368ee64b3c7981dff08ed105c4f19b0","7d8ddf0f021c53099e34ee831a06c394d50371816caa98684812f089b4c6b3d4","6d09838b65c3c780513878793fc394ae29b8595d9e4729246d14ce69abc71140","7d2b7fe4adb76d8253f20e4dbdce044f1cdfab4902ec33c3604585f553883f7d","bc81aff061c53a7140270555f4b22da4ecfe8601e8027cf5aa175fbdc7927c31","bae8d023ef6b23df7da26f51cea44321f95817c190342a36882e93b80d07a960","5d30d04a14ed8527ac5d654dc345a4db11b593334c11a65efb6e4facc5484a0e","74d5a87c3616cd5d8691059d531504403aa857e09cbaecb1c64dfb9ace0db185"],"options":{"allowSyntheticDefaultImports":true,"declaration":true,"esModuleInterop":false,"experimentalDecorators":true,"importHelpers":true,"inlineSources":true,"module":99,"noEmitOnError":true,"outDir":"./","rootDir":"..","sourceMap":true,"strict":true,"target":5,"useDefineForClassFields":false},"fileIdsList":[[452],[261,262,264],[257,258,259,260],[259],[257,259,260],[258,259,260],[258],[262,264,265],[262,265],[263],[262,265,401],[311],[46],[411],[55],[47,57],[55,410],[410,411,412,413,414,415,416],[47],[57],[47,57,65],[45,46],[496],[47,494,495],[47,494],[476,477],[478],[477,479],[489,492,499,500,501,503,504],[493,497],[498],[494],[493,498,502],[493],[476,488,505],[480,483,484,487],[468,469,470],[468],[366,449,451,457,467,471],[55,472,473],[55,472],[366,401],[452,453,454,455,456],[452,454],[366,401,465],[476],[366,401,460],[366,401,465,467,514],[352,401],[363,366,401,459,460,461],[460,462,464,466],[364,401],[526],[527],[532],[350,363,366,367,371,377,393,401,463,508,512,514,515,525,531],[533,535,536,537,538,539,540,541,542,543,544,545],[533,534,536,537,538,539,540,541,542,543,544,545],[534,535,536,537,538,539,540,541,542,543,544,545],[533,534,535,537,538,539,540,541,542,543,544,545],[533,534,535,536,538,539,540,541,542,543,544,545],[533,534,535,536,537,539,540,541,542,543,544,545],[533,534,535,536,537,538,540,541,542,543,544,545],[533,534,535,536,537,538,539,541,542,543,544,545],[533,534,535,536,537,538,539,540,542,543,544,545],[533,534,535,536,537,538,539,540,541,543,544,545],[533,534,535,536,537,538,539,540,541,542,544,545],[533,534,535,536,537,538,539,540,541,542,543,545],[533,534,535,536,537,538,539,540,541,542,543,544],[546,547],[366,393,401,550,551],[314],[350],[351,356,385],[352,357,363,364,371,382,393],[352,353,363,371],[354,394],[355,356,364,372],[356,382,390],[357,359,363,371],[350,358],[359,360],[363],[361,363],[350,363],[363,364,365,382,393],[363,364,365,378,382,385],[348,351,398],[359,363,366,371,382,393],[363,364,366,367,371,382,390,393],[366,368,382,390,393],[314,315,349,350,351,352,353,354,355,356,357,358,359,360,361,362,363,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,390,391,392,393,394,395,396,397,398,399,400],[363,369],[370,393,398],[359,363,371,382],[372],[373],[350,374],[371,372,375,392,398],[376],[377],[363,378,379],[378,380,394,396],[351,363,382,383,384,385],[351,382,384],[382,383],[385],[386],[350,382],[363,388,389],[388,389],[356,371,382,390],[391],[371,392],[351,366,377,393],[356,394],[382,395],[370,396],[397],[351,356,363,365,374,382,393,396,398],[382,399],[555],[556],[446,447,448],[401],[559,598],[559,583,598],[598],[559],[559,584,598],[559,560,561,562,563,564,565,566,567,568,569,570,571,572,573,574,575,576,577,578,579,580,581,582,583,584,585,586,587,588,589,590,591,592,593,594,595,596,597],[584,598],[364,382,401,458],[366,401,459,463],[476,486],[485],[48],[363,366,368,371,382,390,393,399,401],[602],[363,382,401],[482],[481],[450],[265],[300],[307],[304],[402],[366,382,401],[47,51],[49,50],[491],[49,490],[58,59,60,61,62,63,64,65,66],[420],[47,51,53,54],[51],[50,51],[267,268,270,272,273,274,275,276,277,278,279,280,281,282,283],[267],[256,267],[267,271],[256],[256,267,269],[68,69,70,71,72,73,74,75,76,77,78,79,80,81,82,84,86,87,88,89,90,91,92,93,94,95,96,97,98,99,100,101,102,103,104,105,106,107,108,109,110,111,112,113,114,115,116,117,118,119,120,121,122,124,125,126,127,128,129,130,131,132,133,134,135,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,181,182,183,184,185,187,188,189,191,200,202,203,204,205,206,207,209,210,212,214,215,216,217,218,219,220,221,222,223,224,225,226,227,228,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],[113],[71,72],[68,69,70,72],[69,72],[72,113],[68,72,190],[70,71,72],[68,72],[72],[71],[68,71,113],[69,71,72,229],[71,72,229],[71,237],[69,71,72],[81],[104],[125],[71,72,113],[72,120],[71,72,113,131],[71,72,131],[72,172],[68,72,191],[197,199],[68,72,190,197,198],[190,191,199],[197],[68,72,197,198,199],[213],[208],[211],[69,71,191,192,193,194],[113,191,192,193,194],[191,193],[71,192,193,195,196,200],[68,71],[72,215],[73,74,75,76,77,78,79,80,81,82,83,84,85,86,87,88,89,90,91,92,93,94,95,96,97,98,99,100,101,102,103,104,105,106,107,108,109,110,111,112,114,115,116,117,118,119,121,122,123,124,125,126,127,128,129,130,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,181,182,183,184,185,186,187,188],[201],[295,296],[256,291],[286],[286,287],[286,287,288,289,290],[325,329,393],[325,382,393],[320],[322,325,390,393],[371,390],[320,401],[322,325,371,393],[317,318,321,324,351,363,382,393],[317,323],[321,325,351,385,393,401],[351,401],[341,351,401],[319,320,401],[325],[319,320,321,322,323,324,325,326,327,329,330,331,332,333,334,335,336,337,338,339,340,342,343,344,345,346,347],[325,332,333],[323,325,333,334],[324],[317,320,325],[325,329,333,334],[329],[323,325,328,393],[317,322,323,325,329,332],[351,382],[320,325,341,351,398,401],[44,55,56,67,256,266,285,292,293,298,299,406,407,408,419,423,424,425,426],[44,55,67],[44,55,67,429],[44,55,67,409,418],[44,55],[44,55,67,433],[44,55,67,417],[44,55,67,418],[44],[43,44,437],[44,439],[43,44,441],[44,293,299],[44,285,292,293,298,299,309,406,407,418,427,428,429,430,431,432,433,434,435,436,438,440,442],[44,55,56,67],[44,55,285,312,406],[44,266,301],[44,266,285,403,406],[44,266,308],[44,266,285,305],[44,299],[44,285],[44,266,285,302,303,306,309,310,313,404,405],[44,55,266],[44,284,285,294,298],[44,291,292],[44,189,284,293,297],[44,291,292,293],[44,284,294],[44,55,426,474],[44,55,67,292,417,421],[44,55,67,406],[44,55,67,421,422],[44,55,443,506],[394],[257,258,259,260,394],[259,394],[257,259,260,394],[258,259,260,394],[258,394],[262,265,394],[263,394],[311,394],[46,394],[394,411],[55,394],[47,57,394],[55,394,410],[394,410,411,412,413,414,415,416],[47,394],[57,394],[47,57,65,394],[45,46,394],[394,496],[47,394,494,495],[47,394,494],[394,476,477],[394,478],[394,477,479],[394,489,492,499,500,501,503,504],[394,493,497],[394,498],[394,494],[394,493,498,502],[394,493],[394,476,488,505],[394,480,483,484,487],[394,468,469,470],[394,468],[366,394,401],[394,452,453,454,455,456],[394,452,454],[366,394,401,465],[394,476],[366,394,401,460],[352,394,401],[394,460,462,464,466],[364,394,401],[394,526],[394,527],[394,532],[394,533,535,536,537,538,539,540,541,542,543,544,545],[394,533,534,536,537,538,539,540,541,542,543,544,545],[394,533,534,535,537,538,539,540,541,542,543,544,545],[394,533,534,535,536,537,539,540,541,542,543,544,545],[394,533,534,535,536,537,538,540,541,542,543,544,545],[394,533,534,535,536,537,538,539,541,542,543,544,545],[394,533,534,535,536,537,538,539,540,541,543,544,545],[394,533,534,535,536,537,538,539,540,541,542,544,545],[394,533,534,535,536,537,538,539,540,541,542,543,545],[394,533,534,535,536,537,538,539,540,541,542,543,544],[314,394],[355,356,364,372,394],[351,382,384,394],[382,383,394],[394,555],[394,556],[394,401],[394,559,598],[394,559,583,598],[394,598],[394,559],[394,559,584,598],[394,584,598],[364,382,394,401,458],[394,476,486],[48,394],[363,366,368,371,382,390,393,394,399,401],[394,602],[363,382,394,401],[394,482],[394,481],[394,450],[265,394],[394,605],[307,394],[304,394],[366,382,394,401],[47,394,491],[49,50,394],[394,491],[49,394,490],[58,59,60,61,62,63,64,65,66,394],[394,606],[47,53,394,491,607],[51,394],[50,51,394],[267,268,270,272,273,274,275,276,277,278,279,280,281,282,283,394],[267,394],[256,267,394],[267,271,394],[256,394],[256,267,269,394],[68,69,70,71,72,73,74,75,76,77,78,79,80,81,82,84,86,87,88,89,90,91,92,93,94,95,96,97,98,99,100,101,102,103,104,105,106,107,108,109,110,111,112,113,114,115,116,117,118,119,120,121,122,124,125,126,127,128,129,130,131,132,133,134,135,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,181,182,183,184,185,187,188,189,191,200,202,203,204,205,206,207,209,210,212,214,215,216,217,218,219,220,221,222,223,224,225,226,227,228,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,394],[113,394],[71,72,394],[68,69,70,72,394],[69,72,394],[72,113,394],[68,72,190,394],[70,71,72,394],[68,72,394],[72,394],[71,394],[68,71,113,394],[69,71,72,229,394],[71,72,229,394],[71,237,394],[69,71,72,394],[81,394],[104,394],[125,394],[71,72,113,394],[72,120,394],[71,72,113,131,394],[71,72,131,394],[72,172,394],[68,72,191,394],[197,199,394],[68,72,190,197,198,394],[190,191,199,394],[197,394],[68,72,197,198,199,394],[213,394],[208,394],[211,394],[69,71,191,192,193,194,394],[113,191,192,193,194,394],[191,193,394],[71,192,193,195,196,200,394],[68,71,394],[72,215,394],[73,74,75,76,77,78,79,80,81,82,83,84,85,86,87,88,89,90,91,92,93,94,95,96,97,98,99,100,101,102,103,104,105,106,107,108,109,110,111,112,114,115,116,117,118,119,121,122,123,124,125,126,127,128,129,130,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,181,182,183,184,185,186,187,188,394],[201,394],[325,329,393,394],[325,382,393,394],[320,394],[322,325,390,393,394],[371,390,394],[320,394,401],[322,325,371,393,394],[317,318,321,324,351,363,382,393,394],[317,323,394],[321,325,351,385,393,394,401],[351,394,401],[341,351,394,401],[319,320,394,401],[325,394],[319,320,321,322,323,324,325,326,327,329,330,331,332,333,334,335,336,337,338,339,340,342,343,344,345,346,347,394],[325,332,333,394],[323,325,333,334,394],[324,394],[317,320,325,394],[325,329,333,334,394],[329,394],[323,325,328,393,394],[317,322,323,325,329,332,394],[351,382,394],[320,325,341,351,394,398,401],[55,56,256,285,292,408,419,423,424,425,426],[55,409,418],[55,433],[55,418],[285,292,293,298,299,309,406,407,418,427,428,429,430,431,432,433,434,435,436,438,440,442],[55,56],[55,285],[266,301],[266,285,403],[266,308],[266,285],[285],[285,313],[55,266],[284,285],[292],[291,292],[274,292],[426,474],[55,292],[55,422]],"referencedMap":[[454,1],[265,2],[261,3],[260,4],[258,5],[257,6],[259,7],[307,8],[304,9],[264,10],[402,11],[312,12],[311,13],[415,14],[413,15],[414,16],[410,14],[411,17],[417,18],[57,19],[58,20],[61,16],[59,16],[63,16],[66,21],[64,16],[62,16],[60,20],[47,22],[497,23],[496,24],[495,25],[478,26],[479,27],[480,28],[505,29],[498,30],[499,31],[501,32],[503,33],[493,15],[502,34],[504,31],[506,35],[488,36],[471,37],[469,38],[470,38],[472,39],[474,40],[473,41],[508,42],[457,43],[453,1],[455,44],[456,1],[466,45],[484,46],[510,47],[465,42],[515,48],[516,49],[462,50],[467,51],[524,52],[527,53],[528,54],[531,55],[532,56],[534,57],[535,58],[533,59],[536,60],[537,61],[538,62],[539,63],[540,64],[541,65],[542,66],[543,67],[544,68],[545,69],[547,70],[552,71],[314,72],[315,72],[350,73],[351,74],[352,75],[353,76],[354,77],[355,78],[356,79],[357,80],[358,81],[359,82],[360,82],[362,83],[361,84],[363,85],[364,86],[365,87],[349,88],[366,89],[367,90],[368,91],[401,92],[369,93],[370,94],[371,95],[372,96],[373,97],[374,98],[375,99],[376,100],[377,101],[378,102],[379,102],[380,103],[382,104],[384,105],[383,106],[385,107],[386,108],[387,109],[388,110],[389,111],[390,112],[391,113],[392,114],[393,115],[394,116],[395,117],[396,118],[397,119],[398,120],[399,121],[556,122],[555,123],[449,124],[558,125],[583,126],[584,127],[559,128],[562,128],[581,126],[582,126],[572,126],[571,129],[569,126],[564,126],[577,126],[575,126],[579,126],[563,126],[576,126],[580,126],[565,126],[566,126],[578,126],[560,126],[567,126],[568,126],[570,126],[574,126],[585,130],[573,126],[561,126],[598,131],[592,130],[594,132],[593,130],[586,130],[587,130],[589,130],[591,130],[595,132],[596,132],[588,132],[590,132],[459,133],[464,134],[487,135],[486,136],[49,137],[601,138],[603,139],[604,140],[481,46],[483,141],[482,142],[451,143],[266,144],[301,145],[308,146],[305,147],[300,9],[403,148],[550,149],[53,150],[52,151],[490,152],[491,153],[492,152],[67,154],[421,155],[55,156],[50,157],[420,158],[51,151],[284,159],[283,160],[271,161],[273,162],[282,161],[278,160],[277,160],[276,160],[279,160],[272,162],[281,161],[267,163],[269,161],[270,164],[268,161],[280,163],[275,161],[256,165],[207,166],[205,166],[120,167],[71,168],[70,169],[206,170],[191,171],[113,172],[69,173],[68,174],[255,169],[220,175],[219,175],[131,176],[227,167],[228,167],[230,177],[231,167],[232,174],[233,167],[204,167],[234,167],[235,178],[236,167],[237,175],[238,179],[239,167],[240,167],[241,167],[242,167],[243,175],[244,167],[245,167],[246,167],[247,167],[248,180],[249,167],[250,167],[251,167],[252,167],[253,167],[73,174],[74,174],[75,174],[76,174],[77,174],[78,174],[79,174],[80,167],[82,181],[83,174],[81,174],[84,174],[85,174],[86,174],[87,174],[88,174],[89,174],[90,167],[91,174],[92,174],[93,174],[94,174],[95,174],[96,167],[97,174],[98,174],[99,174],[100,174],[101,174],[102,174],[103,167],[105,182],[104,174],[106,174],[107,174],[108,174],[109,174],[110,180],[111,167],[112,167],[126,183],[114,184],[115,174],[116,174],[117,167],[118,174],[119,174],[121,185],[122,174],[123,174],[124,174],[125,174],[127,174],[128,174],[129,174],[130,174],[132,186],[133,174],[134,174],[135,174],[136,167],[137,174],[138,187],[139,187],[140,187],[141,167],[142,174],[143,174],[144,174],[149,174],[145,174],[146,167],[147,174],[148,167],[150,174],[151,174],[152,174],[153,174],[154,174],[155,174],[156,167],[157,174],[158,174],[159,174],[160,174],[161,174],[162,174],[163,174],[164,174],[165,174],[166,174],[167,174],[168,174],[169,174],[170,174],[171,174],[172,174],[173,188],[174,174],[175,174],[176,174],[177,174],[178,174],[179,174],[180,167],[181,167],[182,167],[183,167],[184,167],[185,174],[186,174],[187,174],[188,174],[254,167],[190,189],[213,190],[208,190],[199,191],[197,192],[211,193],[200,194],[214,195],[209,196],[210,193],[212,197],[195,198],[196,199],[194,200],[192,174],[201,201],[72,202],[218,175],[216,203],[189,204],[202,205],[297,206],[295,207],[296,163],[287,208],[288,209],[291,210],[289,209],[290,209],[332,211],[339,212],[331,211],[346,213],[323,214],[322,215],[345,125],[340,216],[343,217],[325,218],[324,219],[320,220],[319,221],[342,222],[321,223],[326,224],[330,224],[348,225],[347,224],[334,226],[335,227],[337,228],[333,229],[336,230],[341,125],[328,231],[329,232],[338,233],[318,234],[344,235],[427,236],[429,237],[430,238],[419,239],[431,240],[434,241],[435,241],[418,242],[433,237],[432,243],[445,244],[438,245],[440,246],[442,247],[437,244],[439,244],[441,244],[428,248],[443,249],[292,244],[408,250],[313,251],[302,252],[404,253],[309,254],[306,255],[303,256],[310,257],[405,257],[406,258],[285,259],[436,248],[299,260],[293,261],[298,262],[294,263],[407,264],[475,265],[426,266],[409,267],[423,268],[424,237],[425,237],[507,269]],"exportedModulesMap":[[43,270],[454,1],[265,2],[261,271],[260,272],[258,273],[257,274],[259,275],[307,8],[304,276],[264,277],[263,270],[402,11],[312,278],[311,279],[415,280],[416,270],[412,270],[413,281],[414,282],[410,280],[411,283],[417,284],[45,270],[57,285],[58,286],[61,282],[59,282],[63,282],[66,287],[65,270],[64,282],[62,282],[60,286],[46,270],[47,288],[494,270],[497,289],[496,290],[495,291],[478,292],[479,293],[477,270],[480,294],[505,295],[489,270],[498,296],[499,297],[500,270],[501,298],[503,299],[493,281],[502,300],[504,297],[506,301],[488,302],[471,303],[468,270],[469,304],[470,304],[472,39],[474,40],[473,41],[508,305],[509,270],[457,306],[453,1],[455,307],[456,1],[466,308],[484,309],[510,310],[511,270],[465,305],[512,270],[513,270],[515,48],[516,311],[517,270],[518,270],[519,270],[520,270],[522,270],[462,50],[467,312],[523,270],[524,313],[422,270],[525,270],[463,270],[526,270],[527,314],[528,315],[529,270],[530,270],[514,270],[531,316],[532,56],[534,317],[535,318],[533,59],[536,319],[537,61],[538,320],[539,321],[540,322],[541,65],[542,323],[543,324],[544,325],[545,326],[547,70],[548,270],[458,270],[549,270],[551,270],[552,71],[314,72],[315,327],[350,73],[351,74],[352,75],[353,76],[354,77],[355,328],[356,79],[357,80],[358,81],[359,82],[360,82],[362,83],[361,84],[363,85],[364,86],[365,87],[349,88],[400,270],[366,89],[367,90],[368,91],[401,92],[369,93],[370,94],[371,95],[372,96],[373,97],[374,98],[375,99],[376,100],[377,101],[378,102],[379,102],[380,103],[382,104],[384,329],[383,330],[385,107],[386,108],[387,109],[388,110],[389,111],[390,112],[391,113],[392,114],[393,115],[394,116],[395,117],[396,118],[397,119],[398,120],[399,121],[553,270],[554,270],[556,331],[555,332],[557,270],[461,270],[449,124],[558,333],[583,334],[584,335],[559,128],[562,336],[581,334],[582,334],[572,334],[571,337],[569,334],[564,334],[577,334],[575,334],[579,334],[563,334],[576,334],[580,334],[565,334],[566,334],[578,334],[560,334],[567,334],[568,334],[570,334],[574,334],[585,338],[573,334],[561,334],[598,131],[597,270],[592,338],[594,339],[593,338],[586,338],[587,338],[589,338],[591,338],[595,339],[596,339],[588,339],[590,339],[459,340],[464,134],[487,341],[486,136],[485,270],[49,342],[48,270],[599,270],[601,343],[602,270],[603,344],[604,345],[316,270],[481,309],[483,346],[482,347],[450,270],[451,348],[266,349],[301,350],[308,351],[305,352],[300,9],[403,148],[550,353],[56,270],[53,354],[52,355],[490,356],[491,357],[492,356],[67,358],[421,359],[55,360],[50,361],[420,362],[54,270],[51,355],[284,363],[283,364],[271,365],[273,366],[282,365],[278,364],[277,364],[276,364],[279,364],[272,366],[281,365],[267,367],[274,270],[269,365],[270,368],[268,365],[280,367],[275,365],[256,369],[229,270],[207,370],[205,370],[120,371],[71,372],[70,373],[206,374],[191,375],[113,376],[69,377],[68,378],[255,373],[220,379],[219,379],[131,380],[227,371],[228,371],[230,381],[231,371],[232,378],[233,371],[204,371],[234,371],[235,382],[236,371],[237,379],[238,383],[239,371],[240,371],[241,371],[242,371],[243,379],[244,371],[245,371],[246,371],[247,371],[248,384],[249,371],[250,371],[251,371],[252,371],[253,371],[73,378],[74,378],[75,378],[76,378],[77,378],[78,378],[79,378],[80,371],[82,385],[83,378],[81,378],[84,378],[85,378],[86,378],[87,378],[88,378],[89,378],[90,371],[91,378],[92,378],[93,378],[94,378],[95,378],[96,371],[97,378],[98,378],[99,378],[100,378],[101,378],[102,378],[103,371],[105,386],[104,378],[106,378],[107,378],[108,378],[109,378],[110,384],[111,371],[112,371],[126,387],[114,388],[115,378],[116,378],[117,371],[118,378],[119,378],[121,389],[122,378],[123,378],[124,378],[125,378],[127,378],[128,378],[129,378],[130,378],[132,390],[133,378],[134,378],[135,378],[136,371],[137,378],[138,391],[139,391],[140,391],[141,371],[142,378],[143,378],[144,378],[149,378],[145,378],[146,371],[147,378],[148,371],[150,378],[151,378],[152,378],[153,378],[154,378],[155,378],[156,371],[157,378],[158,378],[159,378],[160,378],[161,378],[162,378],[163,378],[164,378],[165,378],[166,378],[167,378],[168,378],[169,378],[170,378],[171,378],[172,378],[173,392],[174,378],[175,378],[176,378],[177,378],[178,378],[179,378],[180,371],[181,371],[182,371],[183,371],[184,371],[185,378],[186,378],[187,378],[188,378],[254,371],[190,393],[213,394],[208,394],[199,395],[197,396],[211,397],[200,398],[214,399],[209,400],[210,397],[212,401],[198,270],[203,270],[195,402],[196,403],[193,270],[194,404],[192,378],[201,405],[72,406],[221,270],[222,270],[223,270],[224,270],[225,270],[226,270],[215,270],[218,379],[217,270],[216,407],[189,408],[202,409],[297,206],[295,207],[296,163],[287,208],[288,209],[291,210],[289,209],[290,209],[8,270],[10,270],[9,270],[2,270],[11,270],[12,270],[13,270],[14,270],[15,270],[16,270],[17,270],[18,270],[3,270],[4,270],[22,270],[19,270],[20,270],[21,270],[23,270],[24,270],[25,270],[5,270],[26,270],[27,270],[28,270],[29,270],[6,270],[33,270],[30,270],[31,270],[32,270],[34,270],[7,270],[35,270],[40,270],[41,270],[36,270],[37,270],[38,270],[39,270],[1,270],[42,270],[332,410],[339,411],[331,410],[346,412],[323,413],[322,414],[345,333],[340,415],[343,416],[325,417],[324,418],[320,419],[319,420],[342,421],[321,422],[326,423],[327,270],[330,423],[317,270],[348,424],[347,423],[334,425],[335,426],[337,427],[333,428],[336,429],[341,333],[328,430],[329,431],[338,432],[318,433],[344,434],[427,435],[429,15],[430,15],[419,436],[431,15],[434,437],[435,437],[418,15],[433,15],[432,438],[443,439],[408,440],[313,441],[302,442],[404,443],[309,444],[306,445],[310,446],[405,446],[406,447],[285,448],[299,449],[293,450],[298,161],[294,451],[407,452],[475,453],[426,454],[409,15],[423,455],[424,15],[425,15]],"semanticDiagnosticsPerFile":[43,454,452,265,261,260,258,257,259,307,304,264,263,402,262,312,311,415,416,412,413,414,410,411,417,45,57,58,61,59,63,66,65,64,62,60,46,47,494,497,496,495,478,479,477,480,505,489,498,499,500,501,503,493,502,504,506,488,471,468,469,470,472,474,473,508,509,457,453,455,456,466,484,476,510,511,465,512,513,515,516,517,518,519,520,521,522,462,467,523,524,422,525,463,526,527,528,529,530,514,531,532,534,535,533,536,537,538,539,540,541,542,543,544,545,547,546,548,458,549,551,552,314,315,350,351,352,353,354,355,356,357,358,359,360,362,361,363,364,365,349,400,366,367,368,401,369,370,371,372,373,374,375,376,377,378,379,380,381,382,384,383,385,386,387,388,389,390,391,392,393,394,395,396,397,398,399,553,554,556,555,557,448,460,461,446,449,558,583,584,559,562,581,582,572,571,569,564,577,575,579,563,576,580,565,566,578,560,567,568,570,574,585,573,561,598,597,592,594,593,586,587,589,591,595,596,588,590,459,464,487,486,485,49,48,599,600,601,602,603,604,316,481,483,482,447,450,451,266,301,308,305,300,403,550,56,53,52,490,491,492,67,421,55,50,420,54,51,284,283,271,273,282,278,277,276,279,272,281,267,274,269,270,268,280,275,256,229,207,205,120,71,70,206,191,113,69,68,255,220,219,131,227,228,230,231,232,233,204,234,235,236,237,238,239,240,241,242,243,244,245,246,247,248,249,250,251,252,253,73,74,75,76,77,78,79,80,82,83,81,84,85,86,87,88,89,90,91,92,93,94,95,96,97,98,99,100,101,102,103,105,104,106,107,108,109,110,111,112,126,114,115,116,117,118,119,121,122,123,124,125,127,128,129,130,132,133,134,135,136,137,138,139,140,141,142,143,144,149,145,146,147,148,150,151,152,153,154,155,156,157,158,159,160,161,162,163,164,165,166,167,168,169,170,171,172,173,174,175,176,177,178,179,180,181,182,183,184,185,186,187,188,254,190,213,208,199,197,211,200,214,209,210,212,198,203,195,196,193,194,192,201,72,221,222,223,224,225,226,215,218,217,216,189,202,297,295,296,287,288,291,289,290,286,44,8,10,9,2,11,12,13,14,15,16,17,18,3,4,22,19,20,21,23,24,25,5,26,27,28,29,6,33,30,31,32,34,7,35,40,41,36,37,38,39,1,42,332,339,331,346,323,322,345,340,343,325,324,320,319,342,321,326,327,330,317,348,347,334,335,337,333,336,341,328,329,338,318,344,427,429,430,419,431,434,435,418,433,432,445,438,440,442,437,439,441,428,443,292,444,408,313,302,404,309,306,303,310,405,406,285,436,299,293,298,294,407,475,426,409,423,424,425,507]},"version":"4.9.5"}
|
package/package.json
CHANGED
package/src/PdSpaHelper.ts
CHANGED
|
@@ -9,11 +9,10 @@ import { FirebaseApp } from 'firebase/app';
|
|
|
9
9
|
import '@progressive-development/pd-page/pd-menu.js';
|
|
10
10
|
import '@progressive-development/pd-page/pd-footer.js';
|
|
11
11
|
|
|
12
|
-
import { ServiceCallController } from './service-call-controller2.js';
|
|
13
12
|
import { initializeStore, pdStore } from './store/mini-rx.store.js';
|
|
14
13
|
|
|
15
14
|
import { authStateChangedImpl, initAppImpl, isAuthenticatedImpl, setServiceProvider } from './service-provider/service-provider-impl.js';
|
|
16
|
-
import { AppConfiguration, Footer,
|
|
15
|
+
import { AppConfiguration, Footer, MenuElement, NavigationConfig, NavigationPage } from './service-provider/service-provider-model.js';
|
|
17
16
|
|
|
18
17
|
import { getLoadingSelector } from './store/spa-app-selector.js';
|
|
19
18
|
import { setRouteElement } from './store/spa-app-effects.js';
|
|
@@ -139,8 +138,6 @@ const TOP_MENU_HEIGHT = 50;
|
|
|
139
138
|
*/
|
|
140
139
|
export abstract class PdSpaHelper extends router(navigator(LitElement)) {
|
|
141
140
|
|
|
142
|
-
protected functionsController = new ServiceCallController(this);
|
|
143
|
-
|
|
144
141
|
protected abstract _appConfiguration: any;
|
|
145
142
|
|
|
146
143
|
// not used at the moment
|
|
@@ -393,14 +390,7 @@ export abstract class PdSpaHelper extends router(navigator(LitElement)) {
|
|
|
393
390
|
${navigationConfig.includeLogin ? html`
|
|
394
391
|
<default-login ?active="${this.route === "login"}" route="login"></default-login>` : ''}
|
|
395
392
|
</app-main>
|
|
396
|
-
</main>
|
|
397
|
-
|
|
398
|
-
${this.functionsController.render({
|
|
399
|
-
complete: (result: FunctionResult) => this._renderSuccessResultInfo(result),
|
|
400
|
-
initial: () => '',
|
|
401
|
-
pending: () => this._renderPendingInfo(),
|
|
402
|
-
error: (e: any) => this._renderErrorInfo(e),
|
|
403
|
-
})}
|
|
393
|
+
</main>
|
|
404
394
|
|
|
405
395
|
${pageConf?.withFooter ? html`
|
|
406
396
|
<footer class="default-footer">
|
|
@@ -488,40 +478,6 @@ export abstract class PdSpaHelper extends router(navigator(LitElement)) {
|
|
|
488
478
|
`;
|
|
489
479
|
}
|
|
490
480
|
|
|
491
|
-
/**
|
|
492
|
-
* Called when (any) cloud function call was finished.
|
|
493
|
-
*/
|
|
494
|
-
// eslint-disable-next-line class-methods-use-this, @typescript-eslint/no-unused-vars
|
|
495
|
-
_renderSuccessResultInfo(result: FunctionResult) {
|
|
496
|
-
return html`
|
|
497
|
-
<pd-toast isSuccess duration="${TOAST_DURATION}">
|
|
498
|
-
${this.functionsController.callDataPromise?.func.successTxt}
|
|
499
|
-
</pd-toast>`;
|
|
500
|
-
}
|
|
501
|
-
|
|
502
|
-
/**
|
|
503
|
-
* Called when (any) cloud function is currently running.
|
|
504
|
-
*/
|
|
505
|
-
_renderPendingInfo() {
|
|
506
|
-
return this.functionsController.callDataPromise?.func.fadeWindow ? html`
|
|
507
|
-
<p>Überblende und lade ${this.functionsController.callDataPromise?.func.name}...</p>`
|
|
508
|
-
: html`
|
|
509
|
-
<pd-toast duration="-1">
|
|
510
|
-
${this.functionsController.callDataPromise?.func.pendingTxt}
|
|
511
|
-
</pd-toast>`;
|
|
512
|
-
}
|
|
513
|
-
|
|
514
|
-
/**
|
|
515
|
-
* Called when (any) cloud function stopped with errors.
|
|
516
|
-
*/
|
|
517
|
-
// eslint-disable-next-line class-methods-use-this
|
|
518
|
-
_renderErrorInfo(error:any) {
|
|
519
|
-
return html`
|
|
520
|
-
<pd-toast isError duration="-1">
|
|
521
|
-
${error}
|
|
522
|
-
</pd-toast>`;
|
|
523
|
-
}
|
|
524
|
-
|
|
525
481
|
protected abstract _getTeaserContent(): Array<TemplateResult>;
|
|
526
482
|
|
|
527
483
|
protected abstract _getFooter(): Footer;
|
|
@@ -579,7 +535,7 @@ export abstract class PdSpaHelper extends router(navigator(LitElement)) {
|
|
|
579
535
|
_createTemporaryToast(e: any) {
|
|
580
536
|
|
|
581
537
|
// hide existing call function toast (old one still is visible for directly incoming errors)
|
|
582
|
-
this.functionsController.clear();
|
|
538
|
+
// this.functionsController.clear();
|
|
583
539
|
|
|
584
540
|
const tmpToast = new PdToast();
|
|
585
541
|
tmpToast.isError = e.detail.isError;
|
|
@@ -619,4 +575,50 @@ export abstract class PdSpaHelper extends router(navigator(LitElement)) {
|
|
|
619
575
|
}
|
|
620
576
|
}
|
|
621
577
|
|
|
622
|
-
}
|
|
578
|
+
}
|
|
579
|
+
|
|
580
|
+
// Refactor: deactivate functions controller unwanted with new loader
|
|
581
|
+
/*
|
|
582
|
+
protected functionsController = new ServiceCallController(this);
|
|
583
|
+
|
|
584
|
+
// from render
|
|
585
|
+
${this.functionsController.render({
|
|
586
|
+
complete: (result: FunctionResult) => this._renderSuccessResultInfo(result),
|
|
587
|
+
initial: () => '',
|
|
588
|
+
pending: () => this._renderPendingInfo(),
|
|
589
|
+
error: (e: any) => this._renderErrorInfo(e),
|
|
590
|
+
})}
|
|
591
|
+
/**
|
|
592
|
+
* Called when (any) cloud function call was finished.
|
|
593
|
+
|
|
594
|
+
// eslint-disable-next-line class-methods-use-this, @typescript-eslint/no-unused-vars
|
|
595
|
+
_renderSuccessResultInfo(result: FunctionResult) {
|
|
596
|
+
return html`
|
|
597
|
+
<pd-toast isSuccess duration="${TOAST_DURATION}">
|
|
598
|
+
${this.functionsController.callDataPromise?.func.successTxt}
|
|
599
|
+
</pd-toast>`;
|
|
600
|
+
}
|
|
601
|
+
|
|
602
|
+
/**
|
|
603
|
+
* Called when (any) cloud function is currently running.
|
|
604
|
+
|
|
605
|
+
_renderPendingInfo() {
|
|
606
|
+
return this.functionsController.callDataPromise?.func.fadeWindow ? html`
|
|
607
|
+
<p>Überblende und lade ${this.functionsController.callDataPromise?.func.name}...</p>`
|
|
608
|
+
: html`
|
|
609
|
+
<pd-toast duration="-1">
|
|
610
|
+
${this.functionsController.callDataPromise?.func.pendingTxt}
|
|
611
|
+
</pd-toast>`;
|
|
612
|
+
}
|
|
613
|
+
|
|
614
|
+
/**
|
|
615
|
+
* Called when (any) cloud function stopped with errors.
|
|
616
|
+
|
|
617
|
+
// eslint-disable-next-line class-methods-use-this
|
|
618
|
+
_renderErrorInfo(error:any) {
|
|
619
|
+
return html`
|
|
620
|
+
<pd-toast isError duration="-1">
|
|
621
|
+
${error}
|
|
622
|
+
</pd-toast>`;
|
|
623
|
+
}
|
|
624
|
+
*/
|
package/src/model/spa-model.ts
CHANGED
|
@@ -6,7 +6,25 @@ const getSpaAppFeatureState = createFeatureStateSelector<SpaAppState>('spaApp');
|
|
|
6
6
|
|
|
7
7
|
export const getLoadingSelector = createSelector(
|
|
8
8
|
getSpaAppFeatureState,
|
|
9
|
-
state =>
|
|
9
|
+
state => {
|
|
10
|
+
// filter add only the oldest for each typ
|
|
11
|
+
const orderByCreation = [...state.loadingState].sort(
|
|
12
|
+
(a, b) => (a.creation?.getMilliseconds() || 0) - (b.creation?.getMilliseconds() || 0)
|
|
13
|
+
);
|
|
14
|
+
|
|
15
|
+
// filter modal
|
|
16
|
+
const loadings = [];
|
|
17
|
+
const mainLoading = orderByCreation.filter(a => !a.smallBackground);
|
|
18
|
+
if (mainLoading.length > 0) {
|
|
19
|
+
loadings.push(mainLoading[0]);
|
|
20
|
+
}
|
|
21
|
+
const smallLoading = orderByCreation.filter(a => a.smallBackground);
|
|
22
|
+
if (smallLoading.length > 0) {
|
|
23
|
+
loadings.push(smallLoading[0]);
|
|
24
|
+
}
|
|
25
|
+
|
|
26
|
+
return loadings;
|
|
27
|
+
}
|
|
10
28
|
);
|
|
11
29
|
|
|
12
30
|
export const getOfflineSelector = createSelector(
|