@operato/shell 2.0.0-alpha.35 → 2.0.0-alpha.43
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/CHANGELOG.md +19 -0
- package/dist/src/actions/busy.js.map +1 -1
- package/dist/src/actions/route.d.ts +1 -1
- package/dist/src/actions/route.js +5 -5
- package/dist/src/actions/route.js.map +1 -1
- package/dist/src/app/app.d.ts +9 -4
- package/dist/src/app/app.js +22 -14
- package/dist/src/app/app.js.map +1 -1
- package/dist/src/reducers/app.d.ts +1 -1
- package/dist/src/reducers/app.js +1 -1
- package/dist/src/reducers/app.js.map +1 -1
- package/dist/tsconfig.tsbuildinfo +1 -1
- package/package.json +3 -3
- package/src/actions/busy.ts +1 -1
- package/src/actions/route.ts +5 -5
- package/src/app/app.ts +42 -15
- package/src/reducers/app.ts +1 -1
package/CHANGELOG.md
CHANGED
@@ -3,6 +3,25 @@
|
|
3
3
|
All notable changes to this project will be documented in this file.
|
4
4
|
See [Conventional Commits](https://conventionalcommits.org) for commit guidelines.
|
5
5
|
|
6
|
+
## [2.0.0-alpha.43](https://github.com/hatiolab/operato/compare/v2.0.0-alpha.42...v2.0.0-alpha.43) (2024-03-24)
|
7
|
+
|
8
|
+
|
9
|
+
### :rocket: New Features
|
10
|
+
|
11
|
+
* 모듈의 동적 라우팅 구성을 지원함 ([3b812a4](https://github.com/hatiolab/operato/commit/3b812a460e81b3ce7c8da8900a6378aff1484444))
|
12
|
+
|
13
|
+
|
14
|
+
|
15
|
+
## [2.0.0-alpha.37](https://github.com/hatiolab/operato/compare/v2.0.0-alpha.36...v2.0.0-alpha.37) (2024-03-18)
|
16
|
+
|
17
|
+
|
18
|
+
### :bug: Bug Fix
|
19
|
+
|
20
|
+
* add module.bootstrap() definition ([68fc95c](https://github.com/hatiolab/operato/commit/68fc95cfa86d9fd6e315e4a75361c283533aee7a))
|
21
|
+
* add module.route() definition ([9b069f5](https://github.com/hatiolab/operato/commit/9b069f5ff08e5e58a7b0a34ecfd202407ff21494))
|
22
|
+
|
23
|
+
|
24
|
+
|
6
25
|
## [2.0.0-alpha.35](https://github.com/hatiolab/operato/compare/v2.0.0-alpha.34...v2.0.0-alpha.35) (2024-03-13)
|
7
26
|
|
8
27
|
**Note:** Version bump only for package @operato/shell
|
@@ -1 +1 @@
|
|
1
|
-
{"version":3,"file":"busy.js","sourceRoot":"","sources":["../../../src/actions/busy.ts"],"names":[],"mappings":"AAAA,OAAO,EAAE,+BAA+B,
|
1
|
+
{"version":3,"file":"busy.js","sourceRoot":"","sources":["../../../src/actions/busy.ts"],"names":[],"mappings":"AAAA,OAAO,EAAE,+BAA+B,EAAG,MAAM,kBAAkB,CAAA;AACnE,OAAO,EAAE,KAAK,EAAE,MAAM,UAAU,CAAA;AAEhC,MAAM,CAAC,MAAM,WAAW,GAAG,aAAa,CAAA;AAExC,+BAA+B,CAAC,CAAC,KAAa,EAAE,EAAE;IAChD,KAAK,CAAC,QAAQ,CAAC,UAAU,CAAC,KAAK,IAAI,CAAC,CAAQ,CAAC,CAAA;AAC/C,CAAC,CAAC,CAAA;AAEF,MAAM,CAAC,MAAM,UAAU,GAAG,CAAC,IAAa,EAAE,EAAE,CAAC,CAAC,QAAa,EAAE,EAAE;IAC7D,QAAQ,CAAC;QACP,IAAI,EAAE,WAAW;QACjB,IAAI;KACL,CAAC,CAAA;AACJ,CAAC,CAAA","sourcesContent":["import { setActiveRequestCounterCallback } from '@operato/graphql'\nimport { store } from '../store'\n\nexport const UPDATE_BUSY = 'UPDATE_BUSY'\n\nsetActiveRequestCounterCallback((count: number) => {\n store.dispatch(updateBusy(count != 0) as any)\n})\n\nexport const updateBusy = (busy: boolean) => (dispatch: any) => {\n dispatch({\n type: UPDATE_BUSY,\n busy\n })\n}\n"]}
|
@@ -34,7 +34,7 @@ export declare const navigateWithSilence: ({ pathname: path, search, params }: {
|
|
34
34
|
*/
|
35
35
|
export declare const loadPage: (page: string, id: string, params: {
|
36
36
|
[key: string]: any;
|
37
|
-
}) => (dispatch: any) => void
|
37
|
+
}) => (dispatch: any) => Promise<void>;
|
38
38
|
/**
|
39
39
|
* Route to a given URL by creating a link element and triggering a click event.
|
40
40
|
*
|
@@ -50,7 +50,7 @@ export const navigateWithSilence = ({ pathname: path, search, params }) => (disp
|
|
50
50
|
* @param page - The page to preload.
|
51
51
|
* @returns - The new page path or routing result after preprocessing.
|
52
52
|
*/
|
53
|
-
const _preLoadPage = (page) => {
|
53
|
+
const _preLoadPage = async (page) => {
|
54
54
|
/*
|
55
55
|
* _preLoadPage 에서는 page를 load하기 전처리를 수행한다.
|
56
56
|
* 예를 들면, page dynamic import 또는 page re-routing
|
@@ -60,8 +60,8 @@ const _preLoadPage = (page) => {
|
|
60
60
|
var modules = state.app.modules;
|
61
61
|
if (modules) {
|
62
62
|
for (let i = modules.length - 1; i >= 0; i--) {
|
63
|
-
let
|
64
|
-
let _page =
|
63
|
+
let module = modules[i];
|
64
|
+
let _page = module.route && (await module.route(page, module));
|
65
65
|
if (_page) {
|
66
66
|
return _page;
|
67
67
|
}
|
@@ -75,8 +75,8 @@ const _preLoadPage = (page) => {
|
|
75
75
|
* @param id - The associated resource ID.
|
76
76
|
* @param params - Additional parameters to pass to the page.
|
77
77
|
*/
|
78
|
-
export const loadPage = (page, id, params) => (dispatch) => {
|
79
|
-
var newPage = _preLoadPage(page);
|
78
|
+
export const loadPage = (page, id, params) => async (dispatch) => {
|
79
|
+
var newPage = await _preLoadPage(page);
|
80
80
|
if (page !== newPage && newPage.indexOf('/') == 0) {
|
81
81
|
dispatch(navigateWithSilence({
|
82
82
|
pathname: id ? `${newPage}/${id}` : newPage,
|
@@ -1 +1 @@
|
|
1
|
-
{"version":3,"file":"route.js","sourceRoot":"","sources":["../../../src/actions/route.ts"],"names":[],"mappings":"AAAA,OAAO,EAAE,WAAW,EAAE,MAAM,gBAAgB,CAAA;AAE5C,OAAO,EAAE,QAAQ,EAAE,WAAW,EAAE,MAAM,kBAAkB,CAAA;AACxD,OAAO,EAAE,KAAK,EAAE,MAAM,UAAU,CAAA;AAEhC;;;;;;;;;;;;GAYG;AACH,MAAM,CAAC,MAAM,QAAQ,GAAG,CAAC,QAAgB,EAAE,OAAiB,EAAE,EAAE;IAC9D,IAAI,OAAO;QAAE,OAAO,CAAC,YAAY,CAAC,OAAO,CAAC,KAAK,EAAE,EAAE,EAAE,QAAQ,CAAC,CAAA;;QACzD,OAAO,CAAC,SAAS,CAAC,EAAE,EAAE,EAAE,EAAE,QAAQ,CAAC,CAAA;IAExC,MAAM,CAAC,aAAa,CAAC,IAAI,KAAK,CAAC,UAAU,CAAC,CAAC,CAAA;AAC7C,CAAC,CAAA;AAED;;;;;GAKG;AACH,MAAM,CAAC,MAAM,mBAAmB,GAC9B,CAAC,EAAE,QAAQ,EAAE,IAAI,EAAE,MAAM,EAAE,MAAM,EAA0E,EAAE,EAAE,CAC/G,CAAC,QAAa,EAAE,EAAE;IAChB,MAAM,EAAE,IAAI,EAAE,QAAQ,EAAE,GAAG,WAAW,CAAC,IAAI,CAAC,CAAA;IAE5C,MAAM,GAAG,GAAG,uBAAuB,CAAA;IACnC,MAAM,UAAU,GAAG,kBAAkB,CAAC,QAAS,CAAC,CAAA;IAChD,MAAM,WAAW,GAAG,UAAU,CAAC,KAAK,CAAC,GAAG,CAAC,IAAI,EAAE,CAAA;IAC/C,MAAM,IAAI,GAAG,WAAW,CAAC,CAAC,CAAC,IAAI,QAAQ,CAAA;IACvC,MAAM,EAAE,GAAG,WAAW,CAAC,CAAC,CAAC,CAAA;IAEzB,IAAI,CAAC,MAAM,EAAE,CAAC;QACZ,MAAM,GAAG,EAAE,CAAA;QAEX,IAAI,eAAe,CAAC,MAAM,CAAC,CAAC,OAAO,CAAC,CAAC,KAAK,EAAE,GAAG,EAAE,EAAE;YACjD,MAAO,CAAC,GAAG,CAAC,GAAG,KAAK,CAAA;QACtB,CAAC,CAAC,CAAA;IACJ,CAAC;IAED,2EAA2E;IAC3E,kBAAkB;IAClB,QAAQ,CAAC,QAAQ,CAAC,IAAI,EAAE,EAAE,EAAE,MAAM,CAAC,CAAC,CAAA;AACtC,CAAC,CAAA;AAEH;;;;;GAKG;AACH,MAAM,YAAY,GAAG,
|
1
|
+
{"version":3,"file":"route.js","sourceRoot":"","sources":["../../../src/actions/route.ts"],"names":[],"mappings":"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","sourcesContent":["import { getPathInfo } from '@operato/utils'\n\nimport { HOMEPAGE, UPDATE_PAGE } from '../actions/const'\nimport { store } from '../store'\n\n/**\n * Navigate to a page using one of two methods:\n * 1. Using a page link: <a href='page'>goto page</a> (equivalent to route(page))\n * 2. Using the navigate('page') function.\n *\n * 페이지를 이동하는 방법으로는 다음 두가지가 있다.\n * 1. page link를 사용하는 방법 <a href='page'>goto page</a>\n * 이 방법은 route(page)와 동일하다.\n * 2. navigate('page')를 사용하는 방법\n *\n * @param location - The path of the page to navigate to.\n * @param replace - Optional. If true, replaces the current page in the browser's history.\n */\nexport const navigate = (location: string, replace?: boolean) => {\n if (replace) history.replaceState(history.state, '', location)\n else history.pushState({}, '', location)\n\n window.dispatchEvent(new Event('popstate'))\n}\n\n/**\n * Navigate to a page with optional query parameters, and dispatch a Redux action to load the page.\n *\n * @param pathInfo - Object containing pathname, search, and optional params.\n * @param dispatch - Redux dispatch function.\n */\nexport const navigateWithSilence =\n ({ pathname: path, search, params }: { pathname: string; search?: string; params?: { [key: string]: any } }) =>\n (dispatch: any) => {\n const { path: pathname } = getPathInfo(path)\n\n const reg = /\\/([^\\/]+)\\/*([^\\/]*)/\n const decodePath = decodeURIComponent(pathname!)\n const matchReturn = decodePath.match(reg) || []\n const page = matchReturn[1] || HOMEPAGE\n const id = matchReturn[2]\n\n if (!params) {\n params = {}\n\n new URLSearchParams(search).forEach((value, key) => {\n params![key] = value\n })\n }\n\n // Any other info you might want to extract from the path (like page type),\n // you can do here\n dispatch(loadPage(page, id, params))\n }\n\n/**\n * Preload a page by performing any necessary preprocessing before loading.\n *\n * @param page - The page to preload.\n * @returns - The new page path or routing result after preprocessing.\n */\nconst _preLoadPage = async (page: any) => {\n /*\n * _preLoadPage 에서는 page를 load하기 전처리를 수행한다.\n * 예를 들면, page dynamic import 또는 page re-routing\n */\n var state: any = store.getState()\n\n /* override 기능을 위해서 dependency 관계의 역순으로 route를 실행한다. */\n var modules = state.app.modules\n if (modules) {\n for (let i = modules.length - 1; i >= 0; i--) {\n let module = modules[i]\n let _page = module.route && (await module.route(page, module))\n if (_page) {\n return _page\n }\n }\n }\n}\n\n/**\n * Load a page by dispatching a Redux action, and handle page navigation if necessary.\n *\n * @param page - The page to load.\n * @param id - The associated resource ID.\n * @param params - Additional parameters to pass to the page.\n */\nexport const loadPage = (page: string, id: string, params: { [key: string]: any }) => async (dispatch: any) => {\n var newPage = await _preLoadPage(page)\n\n if (page !== newPage && newPage.indexOf('/') == 0) {\n dispatch(\n navigateWithSilence({\n pathname: id ? `${newPage}/${id}` : newPage,\n params\n })\n )\n return\n }\n\n dispatch({\n type: UPDATE_PAGE,\n page: newPage,\n resourceId: id,\n params\n })\n}\n\n/**\n * Route to a given URL by creating a link element and triggering a click event.\n *\n * @param url - The URL to route to.\n */\nexport const route = (url: string) => {\n const link = document.createElement('a')\n\n link.setAttribute('href', url)\n\n document.body.appendChild(link)\n link.click()\n document.body.removeChild(link)\n}\n"]}
|
package/dist/src/app/app.d.ts
CHANGED
@@ -16,9 +16,14 @@ export declare class ThingsApp extends ThingsApp_base {
|
|
16
16
|
static styles: import("lit").CSSResult[];
|
17
17
|
static moduleInitialized: MODULES_STATE;
|
18
18
|
static modules: Array<any>;
|
19
|
-
static
|
19
|
+
static pagesResolver: (value: {
|
20
20
|
[path: string]: string;
|
21
|
-
}
|
21
|
+
} | PromiseLike<{
|
22
|
+
[path: string]: string;
|
23
|
+
}>) => void;
|
24
|
+
static pages: Promise<{
|
25
|
+
[path: string]: string;
|
26
|
+
}>;
|
22
27
|
static callbacks: Array<any>;
|
23
28
|
static contextPath?: string;
|
24
29
|
contextPathPrefix?: string;
|
@@ -33,11 +38,11 @@ export declare class ThingsApp extends ThingsApp_base {
|
|
33
38
|
render(): import("lit").TemplateResult<1>;
|
34
39
|
connectedCallback(): void;
|
35
40
|
disconnectedCallback(): void;
|
36
|
-
routeToPage(): void
|
41
|
+
routeToPage(): Promise<void>;
|
37
42
|
updated(changes: PropertyValues<this>): Promise<void>;
|
38
43
|
shouldUpdate(): boolean;
|
39
44
|
stateChanged(state: any): void;
|
40
|
-
static registerPages(): void
|
45
|
+
static registerPages(): Promise<void>;
|
41
46
|
setBase(): void;
|
42
47
|
}
|
43
48
|
export {};
|
package/dist/src/app/app.js
CHANGED
@@ -62,7 +62,7 @@ let ThingsApp = ThingsApp_1 = class ThingsApp extends connect(store)(LitElement)
|
|
62
62
|
/* lifecycle - bootstrapping */
|
63
63
|
modules.forEach(async (m, idx) => {
|
64
64
|
try {
|
65
|
-
m.bootstrap && (await m.bootstrap());
|
65
|
+
m.bootstrap && (await m.bootstrap(m));
|
66
66
|
}
|
67
67
|
catch (e) {
|
68
68
|
console.error(`[${idx} BOOTSTRAP ERROR -${m.name}]`, e);
|
@@ -107,7 +107,7 @@ let ThingsApp = ThingsApp_1 = class ThingsApp extends connect(store)(LitElement)
|
|
107
107
|
disconnectedCallback() {
|
108
108
|
super.disconnectedCallback();
|
109
109
|
}
|
110
|
-
routeToPage() {
|
110
|
+
async routeToPage() {
|
111
111
|
const activePages = this.renderRoot.querySelectorAll('main > .page[active]');
|
112
112
|
activePages.forEach(page => {
|
113
113
|
page.removeAttribute('active');
|
@@ -115,7 +115,7 @@ let ThingsApp = ThingsApp_1 = class ThingsApp extends connect(store)(LitElement)
|
|
115
115
|
this.activePage = this.renderRoot.querySelector(`main > .page[data-page=${this.page}]`);
|
116
116
|
if (!this.activePage) {
|
117
117
|
/* 해당 route에 연결된 page가 없는 경우에 main 섹션에 해당 element를 추가해준다. */
|
118
|
-
const tagname = ThingsApp_1.pages[this.page];
|
118
|
+
const tagname = (await ThingsApp_1.pages)[this.page];
|
119
119
|
if (tagname) {
|
120
120
|
const el = document.createElement(tagname);
|
121
121
|
el.setAttribute('class', 'page');
|
@@ -166,18 +166,27 @@ let ThingsApp = ThingsApp_1 = class ThingsApp extends connect(store)(LitElement)
|
|
166
166
|
ThingsApp_1.contextPath = this.contextPath = state.app.contextPath;
|
167
167
|
ThingsApp_1.callbacks = state.route.callbacks;
|
168
168
|
}
|
169
|
-
static registerPages() {
|
169
|
+
static async registerPages() {
|
170
|
+
ThingsApp_1.pages = new Promise(resolve => (ThingsApp_1.pagesResolver = resolve));
|
170
171
|
var reversedModules = [...ThingsApp_1.modules].reverse();
|
171
|
-
|
172
|
+
const pages = {};
|
172
173
|
/* 모듈 참조 순서 역순으로 page를 추가한다. (for overidable) */
|
173
|
-
|
174
|
-
m.routes
|
175
|
-
|
176
|
-
|
177
|
-
|
178
|
-
|
179
|
-
|
180
|
-
|
174
|
+
for (const m of reversedModules) {
|
175
|
+
if (!m.routes) {
|
176
|
+
continue;
|
177
|
+
}
|
178
|
+
/*
|
179
|
+
각 모듈의 routes가 모두 완성될 때까지 ThingsApp.pages 구성을 지연한다.
|
180
|
+
각 모듈의 routes를 동적으로도 구성할 수 있도록 하기 위해서이다.
|
181
|
+
*/
|
182
|
+
const routes = await m.routes;
|
183
|
+
routes.forEach((route) => {
|
184
|
+
if (!pages[route.page]) {
|
185
|
+
pages[route.page] = route.tagname;
|
186
|
+
}
|
187
|
+
});
|
188
|
+
}
|
189
|
+
ThingsApp_1.pagesResolver(pages);
|
181
190
|
}
|
182
191
|
setBase() {
|
183
192
|
const base = document.querySelector('base');
|
@@ -187,7 +196,6 @@ let ThingsApp = ThingsApp_1 = class ThingsApp extends connect(store)(LitElement)
|
|
187
196
|
ThingsApp.styles = [ScrollbarStyles, AppStyle];
|
188
197
|
ThingsApp.moduleInitialized = MODULES_STATE.NOT_INITIALIZED;
|
189
198
|
ThingsApp.modules = [];
|
190
|
-
ThingsApp.pages = {};
|
191
199
|
ThingsApp.callbacks = [];
|
192
200
|
__decorate([
|
193
201
|
property({ type: String, attribute: 'context-path-prefix' })
|
package/dist/src/app/app.js.map
CHANGED
@@ -1 +1 @@
|
|
1
|
-
{"version":3,"file":"app.js","sourceRoot":"","sources":["../../../src/app/app.ts"],"names":[],"mappings":";;AAAA,OAAO,EAAE,IAAI,EAAE,UAAU,EAAkB,MAAM,KAAK,CAAA;AACtD,OAAO,EAAE,aAAa,EAAE,QAAQ,EAAE,KAAK,EAAE,KAAK,EAAE,MAAM,mBAAmB,CAAA;AACzE,OAAO,EAAE,OAAO,EAAE,MAAM,8BAA8B,CAAA;AACtD,OAAO,EAAE,aAAa,EAAE,MAAM,uBAAuB,CAAA;AAErD,OAAO,EAAE,eAAe,EAAE,MAAM,iBAAiB,CAAA;AACjD,OAAO,EAAE,oBAAoB,EAAE,WAAW,EAAE,MAAM,gBAAgB,CAAA;AAElE,OAAO,EAAE,mBAAmB,EAAE,kBAAkB,EAAE,mBAAmB,EAAE,cAAc,EAAE,MAAM,YAAY,CAAA;AACzG,OAAO,EAAE,KAAK,EAAE,MAAM,UAAU,CAAA;AAChC,OAAO,EAAE,QAAQ,EAAE,MAAM,aAAa,CAAA;AAGtC,IAAK,aAIJ;AAJD,WAAK,aAAa;IAChB,uEAAe,CAAA;IACf,iEAAY,CAAA;IACZ,+DAAW,CAAA;AACb,CAAC,EAJI,aAAa,KAAb,aAAa,QAIjB;AAGM,IAAM,SAAS,iBAAf,MAAM,SAAU,SAAQ,OAAO,CAAC,KAAK,CAAC,CAAC,UAAU,CAAC;IAAlD;;QAgBI,gBAAW,GAAY,WAAS,CAAC,WAAW,CAAA;QAC5C,YAAO,GAAe,WAAS,CAAC,OAAO,CAAA;IA2MlD,CAAC;IAvMC,MAAM;QACJ,IAAI,MAAM,GAAG,IAAI,CAAC,MAAM,IAAI,EAAE,CAAA;QAC9B,IAAI,SAAS,GAAG,CAAC,IAAI,CAAC,OAAO,IAAI,IAAI,CAAC,OAAO,CAAC,SAAS,CAAC,IAAI,CAAC,MAAM,CAAC,SAAS,IAAI,MAAM,CAAC,SAAS,IAAI,GAAG,CAAC,CAAA;QACzG,IAAI,SAAS,GAAG,CAAC,IAAI,CAAC,OAAO,IAAI,IAAI,CAAC,OAAO,CAAC,SAAS,CAAC,IAAI,CAAC,MAAM,CAAC,SAAS,IAAI,MAAM,CAAC,SAAS,IAAI,GAAG,CAAC,CAAA;QAEzG,OAAO,IAAI,CAAA;;;;;;;kCAOmB,SAAS;;+BAEZ,SAAS,IAAI,SAAS;;iCAEpB,SAAS,IAAI,SAAS;;kCAErB,SAAS;;;KAGtC,CAAA;IACH,CAAC;IAED,iBAAiB;QACf,KAAK,CAAC,iBAAiB,EAAE,CAAA;QAEzB,IAAI,CAAC,OAAO,EAAE,CAAA;QAEd,IAAI,WAAS,CAAC,iBAAiB,IAAI,aAAa,CAAC,eAAe,EAAE,CAAC;YACjE,6DAA6D;YAC7D,MAAM,CAAC,aAAa,CAAC,IAAI,WAAW,CAAC,UAAU,CAAC,CAAC,CAAA;YAEjD,OAAM;QACR,CAAC;QAED,WAAS,CAAC,iBAAiB,GAAG,aAAa,CAAC,YAAY,CAAA;QAExD,wBAAwB;QACxB,MAAM;QACJ,2BAA2B;QAC3B,0BAA0B;QAC1B,iCAAiC;QACjC,2BAA2B,CAC5B,CAAC,IAAI,CAAC,MAAM,CAAC,EAAE;YACd,IAAI,OAAO,GAGL,MAAM,CAAC,OAAO,CAAA;YAEpB,+BAA+B;YAC/B,OAAO,CAAC,OAAO,CAAC,KAAK,EAAE,CAAC,EAAE,GAAG,EAAE,EAAE;gBAC/B,IAAI,CAAC;oBACH,CAAC,CAAC,SAAS,IAAI,CAAC,MAAM,CAAC,CAAC,SAAS,EAAE,CAAC,CAAA;gBACtC,CAAC;gBAAC,OAAO,CAAC,EAAE,CAAC;oBACX,OAAO,CAAC,KAAK,CAAC,IAAI,GAAG,qBAAqB,CAAC,CAAC,IAAI,GAAG,EAAE,CAAC,CAAC,CAAA;gBACzD,CAAC;YACH,CAAC,CAAC,CAAA;YAEF,0BAA0B;YAC1B,WAAS,CAAC,iBAAiB,GAAG,aAAa,CAAC,WAAW,CAAA;YAEvD,wDAAwD;YACxD,KAAK,CAAC,QAAQ,CAAC;gBACb,IAAI,EAAE,cAAc;gBACpB,OAAO;aACR,CAAC,CAAA;YAEF,IAAI,YAAY,GAAW,EAAE,CAAA;YAE7B,aAAa,CAAC,KAAK,EAAE,QAAQ,EAAE,CAAC,EAAE,EAAE;gBAClC,IAAI,EAAE,QAAQ,EAAE,GAAG,QAAQ,CAAA;gBAC3B,IAAI,EAAE,WAAW,EAAE,GAAG,WAAW,CAAC,QAAQ,CAAC,CAAA;gBAE3C,oCAAoC;gBACpC,IAAI,YAAY,IAAI,YAAY,IAAI,QAAQ,IAAI,IAAI,CAAC,UAAU,IAAI,CAAC,CAAC,MAAM,IAAI,CAAC,UAAU,CAAC,aAAa,EAAE,CAAC,EAAE,CAAC;oBAC5G,OAAO,CAAC,IAAI,EAAE,CAAA;oBACd,OAAM;gBACR,CAAC;gBAED,YAAY,GAAG,QAAQ,CAAA;gBAEvB,IAAI,WAAS,CAAC,WAAW,KAAK,WAAW,EAAE,CAAC;oBAC1C,KAAK,CAAC,QAAQ,CAAC;wBACb,IAAI,EAAE,mBAAmB;wBACzB,WAAW;qBACZ,CAAC,CAAA;gBACJ,CAAC;gBAED,KAAK,CAAC,QAAQ,CAAC,mBAAmB,CAAC,QAAQ,CAAQ,CAAC,CAAA;gBAEpD,WAAS,CAAC,SAAS;oBACjB,WAAS,CAAC,SAAS,CAAC,OAAO,CAAC,QAAQ,CAAC,EAAE;wBACrC,IAAI,CAAC;4BACH,QAAQ,CAAC,IAAI,CAAC,IAAI,EAAE,QAAQ,EAAE,CAAC,CAAC,CAAA;wBAClC,CAAC;wBAAC,OAAO,EAAE,EAAE,CAAC;4BACZ,OAAO,CAAC,KAAK,CAAC,EAAE,CAAC,CAAA;wBACnB,CAAC;oBACH,CAAC,CAAC,CAAA;YACN,CAAC,CAAC,CAAA;QACJ,CAAC,CAAC,CAAA;IACJ,CAAC;IAED,oBAAoB;QAClB,KAAK,CAAC,oBAAoB,EAAE,CAAA;IAC9B,CAAC;IAED,WAAW;QACT,MAAM,WAAW,GAAG,IAAI,CAAC,UAAU,CAAC,gBAAgB,CAAC,sBAAsB,CAAC,CAAA;QAC5E,WAAW,CAAC,OAAO,CAAC,IAAI,CAAC,EAAE;YACzB,IAAI,CAAC,eAAe,CAAC,QAAQ,CAAC,CAAA;QAChC,CAAC,CAAC,CAAA;QAEF,IAAI,CAAC,UAAU,GAAG,IAAI,CAAC,UAAU,CAAC,aAAa,CAAC,0BAA0B,IAAI,CAAC,IAAI,GAAG,CAAa,CAAA;QAEnG,IAAI,CAAC,IAAI,CAAC,UAAU,EAAE,CAAC;YACrB,4DAA4D;YAC5D,MAAM,OAAO,GAAG,WAAS,CAAC,KAAK,CAAC,IAAI,CAAC,IAAK,CAAC,CAAA;YAC3C,IAAI,OAAO,EAAE,CAAC;gBACZ,MAAM,EAAE,GAAG,QAAQ,CAAC,aAAa,CAAC,OAAO,CAAa,CAAA;gBACtD,EAAE,CAAC,YAAY,CAAC,OAAO,EAAE,MAAM,CAAC,CAAA;gBAChC,EAAE,CAAC,YAAY,CAAC,WAAW,EAAE,IAAI,CAAC,IAAK,CAAC,CAAA;gBAExC,IAAI,CAAC,IAAI,CAAC,WAAW,CAAC,EAAE,CAAC,CAAA;gBAEzB,IAAI,CAAC,UAAU,GAAG,EAAE,CAAA;YACtB,CAAC;QACH,CAAC;QAED,IAAI,IAAI,CAAC,UAAU,EAAE,CAAC;YACpB,IAAI,CAAC,UAAU,CAAC,YAAY,CAAC,QAAQ,EAAE,EAAE,CAAC,CAAA;YAC1C,IAAI,CAAC,UAAU,CAAC,YAAY,CAAC,cAAc,EAAE,IAAI,CAAC,WAAY,CAAC,CAAA;YAC/D,IAAI,CAAC,UAAU,CAAC,SAAS,GAAG;gBAC1B,GAAG,CAAC,IAAI,CAAC,UAAU,CAAC,SAAS,IAAI,EAAE,CAAC;gBACpC,MAAM,EAAE,IAAI;gBACZ,MAAM,EAAE,IAAI,CAAC,MAAM;gBACnB,UAAU,EAAE,IAAI,CAAC,UAAU;gBAC3B,IAAI,EAAE,IAAI,CAAC,IAAI;aAChB,CAAA;QACH,CAAC;QAED,KAAK,CAAC,QAAQ,CAAC;YACb,IAAI,EAAE,kBAAkB;YACxB,UAAU,EAAE,IAAI,CAAC,UAAU;SAC5B,CAAC,CAAA;IACJ,CAAC;IAED,KAAK,CAAC,OAAO,CAAC,OAA6B;QACzC,IAAI,OAAO,CAAC,GAAG,CAAC,mBAAmB,CAAC,EAAE,CAAC;YACrC,oBAAoB,CAAC,IAAI,CAAC,iBAAiB,CAAC,CAAA;QAC9C,CAAC;QAED,IAAI,OAAO,CAAC,GAAG,CAAC,SAAS,CAAC,EAAE,CAAC;YAC3B,WAAS,CAAC,aAAa,EAAE,CAAA;QAC3B,CAAC;QAED,IAAI,OAAO,CAAC,GAAG,CAAC,MAAM,CAAC,IAAI,OAAO,CAAC,GAAG,CAAC,YAAY,CAAC,IAAI,OAAO,CAAC,GAAG,CAAC,QAAQ,CAAC,EAAE,CAAC;YAC9E,IAAI,CAAC,WAAW,EAAE,CAAA;QACpB,CAAC;QAED,IAAI,OAAO,CAAC,GAAG,CAAC,aAAa,CAAC,EAAE,CAAC;YAC/B,IAAI,CAAC,OAAO,EAAE,CAAA;QAChB,CAAC;IACH,CAAC;IAED,YAAY;QACV,OAAO,WAAS,CAAC,iBAAiB,IAAI,CAAC,CAAA;IACzC,CAAC;IAED,YAAY,CAAC,KAAU;QACrB,IAAI,CAAC,IAAI,GAAG,KAAK,CAAC,KAAK,CAAC,IAAI,CAAA;QAC5B,IAAI,CAAC,MAAM,GAAG,KAAK,CAAC,KAAK,CAAC,MAAM,CAAA;QAChC,IAAI,CAAC,UAAU,GAAG,KAAK,CAAC,KAAK,CAAC,UAAU,CAAA;QACxC,IAAI,CAAC,OAAO,GAAG,KAAK,CAAC,KAAK,CAAC,OAAO,CAAA;QAElC,WAAS,CAAC,OAAO,GAAG,IAAI,CAAC,OAAO,GAAG,KAAK,CAAC,GAAG,CAAC,OAAO,CAAA;QACpD,WAAS,CAAC,WAAW,GAAG,IAAI,CAAC,WAAW,GAAG,KAAK,CAAC,GAAG,CAAC,WAAW,CAAA;QAChE,WAAS,CAAC,SAAS,GAAG,KAAK,CAAC,KAAK,CAAC,SAAS,CAAA;IAC7C,CAAC;IAED,MAAM,CAAC,aAAa;QAClB,IAAI,eAAe,GAAG,CAAC,GAAG,WAAS,CAAC,OAAO,CAAC,CAAC,OAAO,EAAE,CAAA;QACtD,WAAS,CAAC,KAAK,GAAG,EAAE,CAAA;QAEpB,gDAAgD;QAChD,eAAe,CAAC,OAAO,CAAC,CAAC,CAAC,EAAE;YAC1B,CAAC,CAAC,MAAM;gBACN,CAAC,CAAC,MAAM,CAAC,OAAO,CAAC,CAAC,KAAU,EAAE,EAAE;oBAC9B,IAAI,CAAC,WAAS,CAAC,KAAK,CAAC,KAAK,CAAC,IAAI,CAAC,EAAE,CAAC;wBACjC,WAAS,CAAC,KAAK,CAAC,KAAK,CAAC,IAAI,CAAC,GAAG,KAAK,CAAC,OAAO,CAAA;oBAC7C,CAAC;gBACH,CAAC,CAAC,CAAA;QACN,CAAC,CAAC,CAAA;IACJ,CAAC;IAED,OAAO;QACL,MAAM,IAAI,GAAG,QAAQ,CAAC,aAAa,CAAC,MAAM,CAAC,CAAA;QAC3C,IAAI,aAAJ,IAAI,uBAAJ,IAAI,CAAE,YAAY,CAAC,MAAM,EAAE,IAAI,CAAC,WAAW,CAAC,CAAC,CAAC,GAAG,IAAI,CAAC,WAAW,GAAG,CAAC,CAAC,CAAC,GAAG,CAAC,CAAA;IAC7E,CAAC;;AA1NM,gBAAM,GAAG,CAAC,eAAe,EAAE,QAAQ,CAAC,AAA9B,CAA8B;AAEpC,2BAAiB,GAAkB,aAAa,CAAC,eAAe,AAA/C,CAA+C;AAChE,iBAAO,GAAe,EAAE,AAAjB,CAAiB;AACxB,eAAK,GAA+B,EAAE,AAAjC,CAAiC;AACtC,mBAAS,GAAe,EAAE,AAAjB,CAAiB;AAG6B;IAA7D,QAAQ,CAAC,EAAE,IAAI,EAAE,MAAM,EAAE,SAAS,EAAE,qBAAqB,EAAE,CAAC;oDAA2B;AAE/E;IAAR,KAAK,EAAE;6CAAoB;AACnB;IAAR,KAAK,EAAE;uCAAc;AACb;IAAR,KAAK,EAAE;yCAAa;AACZ;IAAR,KAAK,EAAE;6CAAsB;AACrB;IAAR,KAAK,EAAE;0CAAa;AACZ;IAAR,KAAK,EAAE;8CAA6C;AAC5C;IAAR,KAAK,EAAE;0CAAwC;AAEzB;IAAtB,KAAK,CAAC,MAAM,CAAC;uCAA2B;AAnB9B,SAAS;IADrB,aAAa,CAAC,YAAY,CAAC;GACf,SAAS,CA4NrB","sourcesContent":["import { html, LitElement, PropertyValues } from 'lit'\nimport { customElement, property, query, state } from 'lit/decorators.js'\nimport { connect } from 'pwa-helpers/connect-mixin.js'\nimport { installRouter } from 'pwa-helpers/router.js'\n\nimport { ScrollbarStyles } from '@operato/styles'\nimport { setContextPathPrefix, getPathInfo } from '@operato/utils'\n\nimport { navigateWithSilence, UPDATE_ACTIVE_PAGE, UPDATE_CONTEXT_PATH, UPDATE_MODULES } from '../actions'\nimport { store } from '../store'\nimport { AppStyle } from './app-style'\nimport { PageView } from './pages/page-view'\n\nenum MODULES_STATE {\n NOT_INITIALIZED,\n INITIALIZING,\n INITIALIZED\n}\n\n@customElement('things-app')\nexport class ThingsApp extends connect(store)(LitElement) {\n static styles = [ScrollbarStyles, AppStyle]\n\n static moduleInitialized: MODULES_STATE = MODULES_STATE.NOT_INITIALIZED\n static modules: Array<any> = []\n static pages: { [path: string]: string } = {}\n static callbacks: Array<any> = []\n static contextPath?: string\n\n @property({ type: String, attribute: 'context-path-prefix' }) contextPathPrefix?: string\n\n @state() resourceId?: string\n @state() page?: string\n @state() params?: any\n @state() activePage?: PageView\n @state() context: any\n @state() contextPath?: string = ThingsApp.contextPath\n @state() modules: Array<any> = ThingsApp.modules\n\n @query('main') private main!: HTMLElement\n\n render() {\n var params = this.params || {}\n var fullbleed = (this.context && this.context.fullbleed) || (params.fullbleed && params.fullbleed == 'Y')\n var widebleed = (this.context && this.context.widebleed) || (params.widebleed && params.widebleed == 'Y')\n\n return html`\n <div>\n <ox-page-header-bar header></ox-page-header-bar>\n <main></main>\n <ox-page-footer-bar footer></ox-page-footer-bar>\n </div>\n\n <ox-header-bar ?fullbleed=${fullbleed}></ox-header-bar>\n\n <ox-nav-bar ?fullbleed=${fullbleed || widebleed}></ox-nav-bar>\n\n <ox-aside-bar ?fullbleed=${fullbleed || widebleed}></ox-aside-bar>\n\n <ox-footer-bar ?fullbleed=${fullbleed}></ox-footer-bar>\n\n <ox-snack-bar></ox-snack-bar>\n `\n }\n\n connectedCallback() {\n super.connectedCallback()\n\n this.setBase()\n\n if (ThingsApp.moduleInitialized != MODULES_STATE.NOT_INITIALIZED) {\n /* 첫번째 이후로 생성되는 경우에는 강제로 'popstate'를 발생시켜서, routing 기회를 준다 */\n window.dispatchEvent(new CustomEvent('popstate'))\n\n return\n }\n\n ThingsApp.moduleInitialized = MODULES_STATE.INITIALIZING\n\n /* 모듈 임포트를 동적으로 처리한다. */\n import(\n /* webpackPrefetch: true */\n /* webpackPreload: true */\n /* webpackChunkName: \"modules\" */\n '../module-importer.import'\n ).then(module => {\n var modules: {\n name: string\n bootstrap: any\n }[] = module.modules\n\n /* lifecycle - bootstrapping */\n modules.forEach(async (m, idx) => {\n try {\n m.bootstrap && (await m.bootstrap())\n } catch (e) {\n console.error(`[${idx} BOOTSTRAP ERROR -${m.name}]`, e)\n }\n })\n\n /* shouldUpdate를 활성화한다. */\n ThingsApp.moduleInitialized = MODULES_STATE.INITIALIZED\n\n /* modules를 store에 dispatch 함으로써, update를 invoke 시킨다. */\n store.dispatch({\n type: UPDATE_MODULES,\n modules\n })\n\n var lastPathName: string = ''\n\n installRouter(async (location, e) => {\n var { pathname } = location\n var { contextPath } = getPathInfo(pathname)\n\n /* 페이지를 나가기 전에 옮기지 않도록 개입할 기회를 준다 */\n if (lastPathName && lastPathName != pathname && this.activePage && !(await this.activePage.canDeactivate())) {\n history.back()\n return\n }\n\n lastPathName = pathname\n\n if (ThingsApp.contextPath !== contextPath) {\n store.dispatch({\n type: UPDATE_CONTEXT_PATH,\n contextPath\n })\n }\n\n store.dispatch(navigateWithSilence(location) as any)\n\n ThingsApp.callbacks &&\n ThingsApp.callbacks.forEach(callback => {\n try {\n callback.call(this, location, e)\n } catch (ex) {\n console.error(ex)\n }\n })\n })\n })\n }\n\n disconnectedCallback(): void {\n super.disconnectedCallback()\n }\n\n routeToPage() {\n const activePages = this.renderRoot.querySelectorAll('main > .page[active]')\n activePages.forEach(page => {\n page.removeAttribute('active')\n })\n\n this.activePage = this.renderRoot.querySelector(`main > .page[data-page=${this.page}]`) as PageView\n\n if (!this.activePage) {\n /* 해당 route에 연결된 page가 없는 경우에 main 섹션에 해당 element를 추가해준다. */\n const tagname = ThingsApp.pages[this.page!]\n if (tagname) {\n const el = document.createElement(tagname) as PageView\n el.setAttribute('class', 'page')\n el.setAttribute('data-page', this.page!)\n\n this.main.appendChild(el)\n\n this.activePage = el\n }\n }\n\n if (this.activePage) {\n this.activePage.setAttribute('active', '')\n this.activePage.setAttribute('context-path', this.contextPath!)\n this.activePage.lifecycle = {\n ...(this.activePage.lifecycle || {}),\n active: true,\n params: this.params,\n resourceId: this.resourceId,\n page: this.page\n }\n }\n\n store.dispatch({\n type: UPDATE_ACTIVE_PAGE,\n activePage: this.activePage\n })\n }\n\n async updated(changes: PropertyValues<this>) {\n if (changes.has('contextPathPrefix')) {\n setContextPathPrefix(this.contextPathPrefix)\n }\n\n if (changes.has('modules')) {\n ThingsApp.registerPages()\n }\n\n if (changes.has('page') || changes.has('resourceId') || changes.has('params')) {\n this.routeToPage()\n }\n\n if (changes.has('contextPath')) {\n this.setBase()\n }\n }\n\n shouldUpdate() {\n return ThingsApp.moduleInitialized == 2\n }\n\n stateChanged(state: any) {\n this.page = state.route.page\n this.params = state.route.params\n this.resourceId = state.route.resourceId\n this.context = state.route.context\n\n ThingsApp.modules = this.modules = state.app.modules\n ThingsApp.contextPath = this.contextPath = state.app.contextPath\n ThingsApp.callbacks = state.route.callbacks\n }\n\n static registerPages() {\n var reversedModules = [...ThingsApp.modules].reverse()\n ThingsApp.pages = {}\n\n /* 모듈 참조 순서 역순으로 page를 추가한다. (for overidable) */\n reversedModules.forEach(m => {\n m.routes &&\n m.routes.forEach((route: any) => {\n if (!ThingsApp.pages[route.page]) {\n ThingsApp.pages[route.page] = route.tagname\n }\n })\n })\n }\n\n setBase() {\n const base = document.querySelector('base')\n base?.setAttribute('href', this.contextPath ? `${this.contextPath}/` : '/')\n }\n}\n"]}
|
1
|
+
{"version":3,"file":"app.js","sourceRoot":"","sources":["../../../src/app/app.ts"],"names":[],"mappings":"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","sourcesContent":["import { html, LitElement, PropertyValues } from 'lit'\nimport { customElement, property, query, state } from 'lit/decorators.js'\nimport { connect } from 'pwa-helpers/connect-mixin.js'\nimport { installRouter } from 'pwa-helpers/router.js'\n\nimport { ScrollbarStyles } from '@operato/styles'\nimport { setContextPathPrefix, getPathInfo } from '@operato/utils'\n\nimport { navigateWithSilence, UPDATE_ACTIVE_PAGE, UPDATE_CONTEXT_PATH, UPDATE_MODULES } from '../actions'\nimport { store } from '../store'\nimport { AppStyle } from './app-style'\nimport { PageView } from './pages/page-view'\n\nenum MODULES_STATE {\n NOT_INITIALIZED,\n INITIALIZING,\n INITIALIZED\n}\n\n@customElement('things-app')\nexport class ThingsApp extends connect(store)(LitElement) {\n static styles = [ScrollbarStyles, AppStyle]\n\n static moduleInitialized: MODULES_STATE = MODULES_STATE.NOT_INITIALIZED\n static modules: Array<any> = []\n\n /* \n 모든 모듈의 routes 리스트가 수집될 때까지, routeToPage(..) 를 hold 시키기 위해서 ThingsApp.pages를 Promise로 정의한다. \n */\n static pagesResolver: (\n value:\n | {\n [path: string]: string\n }\n | PromiseLike<{\n [path: string]: string\n }>\n ) => void\n static pages: Promise<{ [path: string]: string }>\n\n static callbacks: Array<any> = []\n static contextPath?: string\n\n @property({ type: String, attribute: 'context-path-prefix' }) contextPathPrefix?: string\n\n @state() resourceId?: string\n @state() page?: string\n @state() params?: any\n @state() activePage?: PageView\n @state() context: any\n @state() contextPath?: string = ThingsApp.contextPath\n @state() modules: Array<any> = ThingsApp.modules\n\n @query('main') private main!: HTMLElement\n\n render() {\n var params = this.params || {}\n var fullbleed = (this.context && this.context.fullbleed) || (params.fullbleed && params.fullbleed == 'Y')\n var widebleed = (this.context && this.context.widebleed) || (params.widebleed && params.widebleed == 'Y')\n\n return html`\n <div>\n <ox-page-header-bar header></ox-page-header-bar>\n <main></main>\n <ox-page-footer-bar footer></ox-page-footer-bar>\n </div>\n\n <ox-header-bar ?fullbleed=${fullbleed}></ox-header-bar>\n\n <ox-nav-bar ?fullbleed=${fullbleed || widebleed}></ox-nav-bar>\n\n <ox-aside-bar ?fullbleed=${fullbleed || widebleed}></ox-aside-bar>\n\n <ox-footer-bar ?fullbleed=${fullbleed}></ox-footer-bar>\n\n <ox-snack-bar></ox-snack-bar>\n `\n }\n\n connectedCallback() {\n super.connectedCallback()\n\n this.setBase()\n\n if (ThingsApp.moduleInitialized != MODULES_STATE.NOT_INITIALIZED) {\n /* 첫번째 이후로 생성되는 경우에는 강제로 'popstate'를 발생시켜서, routing 기회를 준다 */\n window.dispatchEvent(new CustomEvent('popstate'))\n\n return\n }\n\n ThingsApp.moduleInitialized = MODULES_STATE.INITIALIZING\n\n /* 모듈 임포트를 동적으로 처리한다. */\n import(\n /* webpackPrefetch: true */\n /* webpackPreload: true */\n /* webpackChunkName: \"modules\" */\n '../module-importer.import'\n ).then(module => {\n var modules: {\n name: string\n bootstrap: (m?: any /* self */) => void\n }[] = module.modules\n\n /* lifecycle - bootstrapping */\n modules.forEach(async (m, idx) => {\n try {\n m.bootstrap && (await m.bootstrap(m))\n } catch (e) {\n console.error(`[${idx} BOOTSTRAP ERROR -${m.name}]`, e)\n }\n })\n\n /* shouldUpdate를 활성화한다. */\n ThingsApp.moduleInitialized = MODULES_STATE.INITIALIZED\n\n /* modules를 store에 dispatch 함으로써, update를 invoke 시킨다. */\n store.dispatch({\n type: UPDATE_MODULES,\n modules\n })\n\n var lastPathName: string = ''\n\n installRouter(async (location, e) => {\n var { pathname } = location\n var { contextPath } = getPathInfo(pathname)\n\n /* 페이지를 나가기 전에 옮기지 않도록 개입할 기회를 준다 */\n if (lastPathName && lastPathName != pathname && this.activePage && !(await this.activePage.canDeactivate())) {\n history.back()\n return\n }\n\n lastPathName = pathname\n\n if (ThingsApp.contextPath !== contextPath) {\n store.dispatch({\n type: UPDATE_CONTEXT_PATH,\n contextPath\n })\n }\n\n store.dispatch(navigateWithSilence(location) as any)\n\n ThingsApp.callbacks &&\n ThingsApp.callbacks.forEach(callback => {\n try {\n callback.call(this, location, e)\n } catch (ex) {\n console.error(ex)\n }\n })\n })\n })\n }\n\n disconnectedCallback(): void {\n super.disconnectedCallback()\n }\n\n async routeToPage() {\n const activePages = this.renderRoot.querySelectorAll('main > .page[active]')\n activePages.forEach(page => {\n page.removeAttribute('active')\n })\n\n this.activePage = this.renderRoot.querySelector(`main > .page[data-page=${this.page}]`) as PageView\n\n if (!this.activePage) {\n /* 해당 route에 연결된 page가 없는 경우에 main 섹션에 해당 element를 추가해준다. */\n const tagname = (await ThingsApp.pages)[this.page!]\n if (tagname) {\n const el = document.createElement(tagname) as PageView\n el.setAttribute('class', 'page')\n el.setAttribute('data-page', this.page!)\n\n this.main.appendChild(el)\n\n this.activePage = el\n }\n }\n\n if (this.activePage) {\n this.activePage.setAttribute('active', '')\n this.activePage.setAttribute('context-path', this.contextPath!)\n this.activePage.lifecycle = {\n ...(this.activePage.lifecycle || {}),\n active: true,\n params: this.params,\n resourceId: this.resourceId,\n page: this.page\n }\n }\n\n store.dispatch({\n type: UPDATE_ACTIVE_PAGE,\n activePage: this.activePage\n })\n }\n\n async updated(changes: PropertyValues<this>) {\n if (changes.has('contextPathPrefix')) {\n setContextPathPrefix(this.contextPathPrefix)\n }\n\n if (changes.has('modules')) {\n ThingsApp.registerPages()\n }\n\n if (changes.has('page') || changes.has('resourceId') || changes.has('params')) {\n this.routeToPage()\n }\n\n if (changes.has('contextPath')) {\n this.setBase()\n }\n }\n\n shouldUpdate() {\n return ThingsApp.moduleInitialized == 2\n }\n\n stateChanged(state: any) {\n this.page = state.route.page\n this.params = state.route.params\n this.resourceId = state.route.resourceId\n this.context = state.route.context\n\n ThingsApp.modules = this.modules = state.app.modules\n ThingsApp.contextPath = this.contextPath = state.app.contextPath\n ThingsApp.callbacks = state.route.callbacks\n }\n\n static async registerPages() {\n ThingsApp.pages = new Promise<{ [path: string]: string }>(resolve => (ThingsApp.pagesResolver = resolve))\n\n var reversedModules = [...ThingsApp.modules].reverse()\n const pages: { [path: string]: string } = {}\n\n /* 모듈 참조 순서 역순으로 page를 추가한다. (for overidable) */\n for (const m of reversedModules) {\n if (!m.routes) {\n continue\n }\n\n /* \n 각 모듈의 routes가 모두 완성될 때까지 ThingsApp.pages 구성을 지연한다.\n 각 모듈의 routes를 동적으로도 구성할 수 있도록 하기 위해서이다.\n */\n const routes = await m.routes\n\n routes.forEach((route: any) => {\n if (!pages[route.page]) {\n pages[route.page] = route.tagname\n }\n })\n }\n\n ThingsApp.pagesResolver(pages)\n }\n\n setBase() {\n const base = document.querySelector('base')\n base?.setAttribute('href', this.contextPath ? `${this.contextPath}/` : '/')\n }\n}\n"]}
|
package/dist/src/reducers/app.js
CHANGED
@@ -1 +1 @@
|
|
1
|
-
{"version":3,"file":"app.js","sourceRoot":"","sources":["../../../src/reducers/app.ts"],"names":[],"mappings":"AAAA,OAAO,EAAE,WAAW,EAAE,MAAM,gBAAgB,CAAA;AAE5C,OAAO,EAAE,WAAW,EAAE,eAAe,EAAE,mBAAmB,EAAE,cAAc,EAAE,MAAM,mBAAmB,CAAA;AAErG,MAAM,aAAa,GAOf;IACF,OAAO,EAAE,QAAQ,CAAC,MAAM;IACxB,WAAW,EAAE,WAAW,CAAC,QAAQ,CAAC,QAAQ,CAAC,CAAC,WAAW;IACvD,OAAO,EAAE,EAAE;CACZ,CAAA;AAED,MAAM,GAAG,GAAG,CAAC,KAAK,GAAG,aAAa,EAAE,MAAW,EAAE,EAAE;IACjD,QAAQ,MAAM,CAAC,IAAI,EAAE,CAAC;QACpB,KAAK,cAAc;YACjB,OAAO;gBACL,GAAG,KAAK;gBACR,OAAO,EAAE,MAAM,CAAC,OAAO;
|
1
|
+
{"version":3,"file":"app.js","sourceRoot":"","sources":["../../../src/reducers/app.ts"],"names":[],"mappings":"AAAA,OAAO,EAAE,WAAW,EAAE,MAAM,gBAAgB,CAAA;AAE5C,OAAO,EAAE,WAAW,EAAE,eAAe,EAAE,mBAAmB,EAAE,cAAc,EAAE,MAAM,mBAAmB,CAAA;AAErG,MAAM,aAAa,GAOf;IACF,OAAO,EAAE,QAAQ,CAAC,MAAM;IACxB,WAAW,EAAE,WAAW,CAAC,QAAQ,CAAC,QAAQ,CAAC,CAAC,WAAW;IACvD,OAAO,EAAE,EAAE;CACZ,CAAA;AAED,MAAM,GAAG,GAAG,CAAC,KAAK,GAAG,aAAa,EAAE,MAAW,EAAE,EAAE;IACjD,QAAQ,MAAM,CAAC,IAAI,EAAE,CAAC;QACpB,KAAK,cAAc;YACjB,OAAO;gBACL,GAAG,KAAK;gBACR,OAAO,EAAE,CAAC,GAAG,MAAM,CAAC,OAAO,CAAC;aAC7B,CAAA;QACH,KAAK,eAAe;YAClB,OAAO;gBACL,GAAG,KAAK;gBACR,OAAO,EAAE,MAAM,CAAC,OAAO;aACxB,CAAA;QACH,KAAK,mBAAmB;YACtB,OAAO;gBACL,GAAG,KAAK;gBACR,WAAW,EAAE,MAAM,CAAC,WAAW;aAChC,CAAA;QAEH,KAAK,WAAW;YACd,OAAO;gBACL,GAAG,KAAK;gBACR,OAAO,EAAE,MAAM,CAAC,OAAO;gBACvB,MAAM,EAAE,MAAM,CAAC,MAAM;aACtB,CAAA;QAEH;YACE,OAAO,KAAK,CAAA;IAChB,CAAC;AACH,CAAC,CAAA;AAED,eAAe,GAAG,CAAA","sourcesContent":["import { getPathInfo } from '@operato/utils'\n\nimport { SET_DOMAINS, UPDATE_BASE_URL, UPDATE_CONTEXT_PATH, UPDATE_MODULES } from '../actions/app.js'\n\nconst INITIAL_STATE: {\n baseUrl: string\n contextPath: string\n domains: {\n name: string\n subdomain: string\n }[]\n} = {\n baseUrl: location.origin,\n contextPath: getPathInfo(location.pathname).contextPath,\n domains: []\n}\n\nconst app = (state = INITIAL_STATE, action: any) => {\n switch (action.type) {\n case UPDATE_MODULES:\n return {\n ...state,\n modules: [...action.modules]\n }\n case UPDATE_BASE_URL:\n return {\n ...state,\n baseUrl: action.baseUrl\n }\n case UPDATE_CONTEXT_PATH:\n return {\n ...state,\n contextPath: action.contextPath\n }\n\n case SET_DOMAINS:\n return {\n ...state,\n domains: action.domains,\n domain: action.domain\n }\n\n default:\n return state\n }\n}\n\nexport default app\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.es2016.intl.d.ts","../../../node_modules/typescript/lib/lib.es2017.date.d.ts","../../../node_modules/typescript/lib/lib.es2017.object.d.ts","../../../node_modules/typescript/lib/lib.es2017.sharedmemory.d.ts","../../../node_modules/typescript/lib/lib.es2017.string.d.ts","../../../node_modules/typescript/lib/lib.es2017.intl.d.ts","../../../node_modules/typescript/lib/lib.es2017.typedarrays.d.ts","../../../node_modules/typescript/lib/lib.es2018.asyncgenerator.d.ts","../../../node_modules/typescript/lib/lib.es2018.asynciterable.d.ts","../../../node_modules/typescript/lib/lib.es2018.intl.d.ts","../../../node_modules/typescript/lib/lib.es2018.promise.d.ts","../../../node_modules/typescript/lib/lib.es2018.regexp.d.ts","../../../node_modules/typescript/lib/lib.es2019.array.d.ts","../../../node_modules/typescript/lib/lib.es2019.object.d.ts","../../../node_modules/typescript/lib/lib.es2019.string.d.ts","../../../node_modules/typescript/lib/lib.es2019.symbol.d.ts","../../../node_modules/typescript/lib/lib.es2019.intl.d.ts","../../../node_modules/typescript/lib/lib.es2020.bigint.d.ts","../../../node_modules/typescript/lib/lib.es2020.date.d.ts","../../../node_modules/typescript/lib/lib.es2020.promise.d.ts","../../../node_modules/typescript/lib/lib.es2020.sharedmemory.d.ts","../../../node_modules/typescript/lib/lib.es2020.string.d.ts","../../../node_modules/typescript/lib/lib.es2020.symbol.wellknown.d.ts","../../../node_modules/typescript/lib/lib.es2020.intl.d.ts","../../../node_modules/typescript/lib/lib.es2020.number.d.ts","../../../node_modules/typescript/lib/lib.esnext.intl.d.ts","../../../node_modules/typescript/lib/lib.decorators.d.ts","../../../node_modules/typescript/lib/lib.decorators.legacy.d.ts","../@types/global/index.d.ts","../../../node_modules/tslib/tslib.d.ts","../src/types/domain.ts","../src/types/user.ts","../src/types/role.ts","../src/types/privilege.ts","../src/types/types.ts","../src/types/index.ts","../../../node_modules/redux/index.d.ts","../../../node_modules/pwa-helpers/lazy-reducer-enhancer.d.ts","../../../node_modules/redux-thunk/es/types.d.ts","../../../node_modules/redux-thunk/es/index.d.ts","../../utils/dist/src/sleep.d.ts","../../utils/dist/src/async-lock.d.ts","../../utils/dist/src/file-drop-helper.d.ts","../../utils/dist/src/context-path.d.ts","../../utils/dist/src/os.d.ts","../../utils/dist/src/swipe-listener.d.ts","../../utils/dist/src/fullscreen.d.ts","../../utils/dist/src/parse-jwt.d.ts","../../utils/dist/src/password-pattern.d.ts","../../utils/dist/src/closest-element.d.ts","../../utils/dist/src/detect-overflow.d.ts","../../utils/dist/src/timecapsule/snapshot-taker.d.ts","../../utils/dist/src/timecapsule/timecapsule.d.ts","../../utils/dist/src/timecapsule/index.d.ts","../../utils/dist/src/clipboard.d.ts","../../utils/dist/src/format.d.ts","../../utils/dist/src/adjust-list-param.d.ts","../../utils/dist/src/is-unvalued.d.ts","../../utils/dist/src/stringify-bignum.d.ts","../../utils/dist/src/encode-form-params.d.ts","../../utils/dist/src/cookie.d.ts","../../utils/dist/src/number-parser.d.ts","../../utils/dist/src/index.d.ts","../src/actions/app.ts","../src/reducers/app.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/lodash-es/startcase.d.ts","../../../node_modules/pwa-helpers/metadata.d.ts","../src/actions/const.ts","../src/reducers/route.ts","../../graphql/dist/src/gql-context.d.ts","../../../node_modules/graphql/version.d.ts","../../../node_modules/graphql/jsutils/maybe.d.ts","../../../node_modules/graphql/language/source.d.ts","../../../node_modules/graphql/jsutils/objmap.d.ts","../../../node_modules/graphql/jsutils/path.d.ts","../../../node_modules/graphql/jsutils/promiseorvalue.d.ts","../../../node_modules/graphql/language/kinds.d.ts","../../../node_modules/graphql/language/tokenkind.d.ts","../../../node_modules/graphql/language/ast.d.ts","../../../node_modules/graphql/language/location.d.ts","../../../node_modules/graphql/error/graphqlerror.d.ts","../../../node_modules/graphql/language/directivelocation.d.ts","../../../node_modules/graphql/type/directives.d.ts","../../../node_modules/graphql/type/schema.d.ts","../../../node_modules/graphql/type/definition.d.ts","../../../node_modules/graphql/execution/execute.d.ts","../../../node_modules/graphql/graphql.d.ts","../../../node_modules/graphql/type/scalars.d.ts","../../../node_modules/graphql/type/introspection.d.ts","../../../node_modules/graphql/type/validate.d.ts","../../../node_modules/graphql/type/assertname.d.ts","../../../node_modules/graphql/type/index.d.ts","../../../node_modules/graphql/language/printlocation.d.ts","../../../node_modules/graphql/language/lexer.d.ts","../../../node_modules/graphql/language/parser.d.ts","../../../node_modules/graphql/language/printer.d.ts","../../../node_modules/graphql/language/visitor.d.ts","../../../node_modules/graphql/language/predicates.d.ts","../../../node_modules/graphql/language/index.d.ts","../../../node_modules/graphql/execution/subscribe.d.ts","../../../node_modules/graphql/execution/values.d.ts","../../../node_modules/graphql/execution/index.d.ts","../../../node_modules/graphql/subscription/index.d.ts","../../../node_modules/graphql/utilities/typeinfo.d.ts","../../../node_modules/graphql/validation/validationcontext.d.ts","../../../node_modules/graphql/validation/validate.d.ts","../../../node_modules/graphql/validation/specifiedrules.d.ts","../../../node_modules/graphql/validation/rules/executabledefinitionsrule.d.ts","../../../node_modules/graphql/validation/rules/fieldsoncorrecttyperule.d.ts","../../../node_modules/graphql/validation/rules/fragmentsoncompositetypesrule.d.ts","../../../node_modules/graphql/validation/rules/knownargumentnamesrule.d.ts","../../../node_modules/graphql/validation/rules/knowndirectivesrule.d.ts","../../../node_modules/graphql/validation/rules/knownfragmentnamesrule.d.ts","../../../node_modules/graphql/validation/rules/knowntypenamesrule.d.ts","../../../node_modules/graphql/validation/rules/loneanonymousoperationrule.d.ts","../../../node_modules/graphql/validation/rules/nofragmentcyclesrule.d.ts","../../../node_modules/graphql/validation/rules/noundefinedvariablesrule.d.ts","../../../node_modules/graphql/validation/rules/nounusedfragmentsrule.d.ts","../../../node_modules/graphql/validation/rules/nounusedvariablesrule.d.ts","../../../node_modules/graphql/validation/rules/overlappingfieldscanbemergedrule.d.ts","../../../node_modules/graphql/validation/rules/possiblefragmentspreadsrule.d.ts","../../../node_modules/graphql/validation/rules/providedrequiredargumentsrule.d.ts","../../../node_modules/graphql/validation/rules/scalarleafsrule.d.ts","../../../node_modules/graphql/validation/rules/singlefieldsubscriptionsrule.d.ts","../../../node_modules/graphql/validation/rules/uniqueargumentnamesrule.d.ts","../../../node_modules/graphql/validation/rules/uniquedirectivesperlocationrule.d.ts","../../../node_modules/graphql/validation/rules/uniquefragmentnamesrule.d.ts","../../../node_modules/graphql/validation/rules/uniqueinputfieldnamesrule.d.ts","../../../node_modules/graphql/validation/rules/uniqueoperationnamesrule.d.ts","../../../node_modules/graphql/validation/rules/uniquevariablenamesrule.d.ts","../../../node_modules/graphql/validation/rules/valuesofcorrecttyperule.d.ts","../../../node_modules/graphql/validation/rules/variablesareinputtypesrule.d.ts","../../../node_modules/graphql/validation/rules/variablesinallowedpositionrule.d.ts","../../../node_modules/graphql/validation/rules/loneschemadefinitionrule.d.ts","../../../node_modules/graphql/validation/rules/uniqueoperationtypesrule.d.ts","../../../node_modules/graphql/validation/rules/uniquetypenamesrule.d.ts","../../../node_modules/graphql/validation/rules/uniqueenumvaluenamesrule.d.ts","../../../node_modules/graphql/validation/rules/uniquefielddefinitionnamesrule.d.ts","../../../node_modules/graphql/validation/rules/uniqueargumentdefinitionnamesrule.d.ts","../../../node_modules/graphql/validation/rules/uniquedirectivenamesrule.d.ts","../../../node_modules/graphql/validation/rules/possibletypeextensionsrule.d.ts","../../../node_modules/graphql/validation/rules/custom/nodeprecatedcustomrule.d.ts","../../../node_modules/graphql/validation/rules/custom/noschemaintrospectioncustomrule.d.ts","../../../node_modules/graphql/validation/index.d.ts","../../../node_modules/graphql/error/syntaxerror.d.ts","../../../node_modules/graphql/error/locatederror.d.ts","../../../node_modules/graphql/error/index.d.ts","../../../node_modules/graphql/utilities/getintrospectionquery.d.ts","../../../node_modules/graphql/utilities/getoperationast.d.ts","../../../node_modules/graphql/utilities/getoperationroottype.d.ts","../../../node_modules/graphql/utilities/introspectionfromschema.d.ts","../../../node_modules/graphql/utilities/buildclientschema.d.ts","../../../node_modules/graphql/utilities/buildastschema.d.ts","../../../node_modules/graphql/utilities/extendschema.d.ts","../../../node_modules/graphql/utilities/lexicographicsortschema.d.ts","../../../node_modules/graphql/utilities/printschema.d.ts","../../../node_modules/graphql/utilities/typefromast.d.ts","../../../node_modules/graphql/utilities/valuefromast.d.ts","../../../node_modules/graphql/utilities/valuefromastuntyped.d.ts","../../../node_modules/graphql/utilities/astfromvalue.d.ts","../../../node_modules/graphql/utilities/coerceinputvalue.d.ts","../../../node_modules/graphql/utilities/concatast.d.ts","../../../node_modules/graphql/utilities/separateoperations.d.ts","../../../node_modules/graphql/utilities/stripignoredcharacters.d.ts","../../../node_modules/graphql/utilities/typecomparators.d.ts","../../../node_modules/graphql/utilities/assertvalidname.d.ts","../../../node_modules/graphql/utilities/findbreakingchanges.d.ts","../../../node_modules/graphql/utilities/typedquerydocumentnode.d.ts","../../../node_modules/graphql/utilities/index.d.ts","../../../node_modules/graphql/index.d.ts","../../../node_modules/ts-invariant/lib/invariant.d.ts","../../../node_modules/@apollo/client/invarianterrorcodes.d.ts","../../../node_modules/@apollo/client/utilities/globals/invariantwrappers.d.ts","../../../node_modules/@apollo/client/utilities/globals/maybe.d.ts","../../../node_modules/@apollo/client/utilities/globals/global.d.ts","../../../node_modules/@apollo/client/utilities/globals/index.d.ts","../../../node_modules/@apollo/client/utilities/graphql/directives.d.ts","../../../node_modules/@apollo/client/utilities/graphql/documenttransform.d.ts","../../../node_modules/@apollo/client/utilities/graphql/fragments.d.ts","../../../node_modules/@apollo/client/utilities/graphql/getfromast.d.ts","../../../node_modules/@apollo/client/utilities/graphql/print.d.ts","../../../node_modules/@apollo/client/utilities/graphql/storeutils.d.ts","../../../node_modules/@apollo/client/utilities/graphql/transform.d.ts","../../../node_modules/@apollo/client/utilities/graphql/operations.d.ts","../../../node_modules/@graphql-typed-document-node/core/typings/index.d.ts","../../../node_modules/@apollo/client/node_modules/@wry/trie/lib/index.d.ts","../../../node_modules/@apollo/client/cache/core/types/cache.d.ts","../../../node_modules/@apollo/client/cache/inmemory/entitystore.d.ts","../../../node_modules/@apollo/client/cache/inmemory/fragmentregistry.d.ts","../../../node_modules/@apollo/client/cache/inmemory/types.d.ts","../../../node_modules/@apollo/client/cache/inmemory/fixpolyfills.d.ts","../../../node_modules/@apollo/client/cache/inmemory/reactivevars.d.ts","../../../node_modules/@apollo/client/utilities/caching/getmemoryinternals.d.ts","../../../node_modules/@apollo/client/cache/inmemory/inmemorycache.d.ts","../../../node_modules/@apollo/client/cache/inmemory/object-canon.d.ts","../../../node_modules/@apollo/client/cache/inmemory/readfromstore.d.ts","../../../node_modules/@apollo/client/cache/inmemory/writetostore.d.ts","../../../node_modules/@apollo/client/cache/inmemory/policies.d.ts","../../../node_modules/@apollo/client/cache/core/types/common.d.ts","../../../node_modules/@apollo/client/cache/core/types/dataproxy.d.ts","../../../node_modules/@apollo/client/cache/core/cache.d.ts","../../../node_modules/@apollo/client/cache/inmemory/helpers.d.ts","../../../node_modules/@apollo/client/cache/index.d.ts","../../../node_modules/@apollo/client/utilities/policies/pagination.d.ts","../../../node_modules/zen-observable-ts/module.d.ts","../../../node_modules/symbol-observable/index.d.ts","../../../node_modules/@apollo/client/utilities/observables/observable.d.ts","../../../node_modules/@apollo/client/utilities/promises/decoration.d.ts","../../../node_modules/@apollo/client/utilities/common/objects.d.ts","../../../node_modules/@apollo/client/utilities/common/mergedeep.d.ts","../../../node_modules/@apollo/client/utilities/common/clonedeep.d.ts","../../../node_modules/@apollo/client/utilities/common/maybedeepfreeze.d.ts","../../../node_modules/@apollo/client/utilities/observables/iteration.d.ts","../../../node_modules/@apollo/client/utilities/observables/asyncmap.d.ts","../../../node_modules/@apollo/client/utilities/observables/concast.d.ts","../../../node_modules/@apollo/client/utilities/observables/subclassing.d.ts","../../../node_modules/@apollo/client/utilities/common/arrays.d.ts","../../../node_modules/@apollo/client/utilities/common/errorhandling.d.ts","../../../node_modules/@apollo/client/utilities/common/canuse.d.ts","../../../node_modules/@apollo/client/utilities/common/compact.d.ts","../../../node_modules/@apollo/client/utilities/common/makeuniqueid.d.ts","../../../node_modules/@apollo/client/utilities/common/stringifyfordisplay.d.ts","../../../node_modules/@apollo/client/utilities/common/mergeoptions.d.ts","../../../node_modules/@apollo/client/utilities/common/incrementalresult.d.ts","../../../node_modules/@apollo/client/utilities/common/canonicalstringify.d.ts","../../../node_modules/@apollo/client/utilities/types/primitive.d.ts","../../../node_modules/@apollo/client/utilities/types/deepomit.d.ts","../../../node_modules/@apollo/client/utilities/common/omitdeep.d.ts","../../../node_modules/@apollo/client/utilities/common/striptypename.d.ts","../../../node_modules/@apollo/client/utilities/types/isstrictlyany.d.ts","../../../node_modules/@apollo/client/utilities/types/deeppartial.d.ts","../../../node_modules/@apollo/client/utilities/types/onlyrequiredproperties.d.ts","../../../node_modules/@wry/caches/lib/common.d.ts","../../../node_modules/@wry/caches/lib/strong.d.ts","../../../node_modules/@wry/caches/lib/weak.d.ts","../../../node_modules/@wry/caches/lib/index.d.ts","../../../node_modules/@apollo/client/utilities/caching/caches.d.ts","../../../node_modules/@apollo/client/utilities/caching/sizes.d.ts","../../../node_modules/@apollo/client/utilities/caching/index.d.ts","../../../node_modules/@apollo/client/utilities/index.d.ts","../../../node_modules/@apollo/client/link/core/types.d.ts","../../../node_modules/@apollo/client/link/core/apollolink.d.ts","../../../node_modules/@apollo/client/link/core/empty.d.ts","../../../node_modules/@apollo/client/link/core/from.d.ts","../../../node_modules/@apollo/client/link/core/split.d.ts","../../../node_modules/@apollo/client/link/core/concat.d.ts","../../../node_modules/@apollo/client/link/core/execute.d.ts","../../../node_modules/@apollo/client/link/core/index.d.ts","../../../node_modules/@apollo/client/link/http/parseandcheckhttpresponse.d.ts","../../../node_modules/@apollo/client/link/http/serializefetchparameter.d.ts","../../../node_modules/@apollo/client/link/http/selecthttpoptionsandbody.d.ts","../../../node_modules/@apollo/client/link/http/checkfetcher.d.ts","../../../node_modules/@apollo/client/link/http/createsignalifsupported.d.ts","../../../node_modules/@apollo/client/link/http/selecturi.d.ts","../../../node_modules/@apollo/client/link/http/createhttplink.d.ts","../../../node_modules/@apollo/client/link/http/httplink.d.ts","../../../node_modules/@apollo/client/link/http/rewriteuriforget.d.ts","../../../node_modules/@apollo/client/link/http/index.d.ts","../../../node_modules/@apollo/client/core/networkstatus.d.ts","../../../node_modules/@apollo/client/link/utils/fromerror.d.ts","../../../node_modules/@apollo/client/link/utils/topromise.d.ts","../../../node_modules/@apollo/client/link/utils/frompromise.d.ts","../../../node_modules/@apollo/client/link/utils/throwservererror.d.ts","../../../node_modules/@apollo/client/link/utils/validateoperation.d.ts","../../../node_modules/@apollo/client/link/utils/createoperation.d.ts","../../../node_modules/@apollo/client/link/utils/transformoperation.d.ts","../../../node_modules/@apollo/client/link/utils/filteroperationvariables.d.ts","../../../node_modules/@apollo/client/link/utils/index.d.ts","../../../node_modules/@apollo/client/errors/index.d.ts","../../../node_modules/@apollo/client/core/queryinfo.d.ts","../../../node_modules/@apollo/client/core/localstate.d.ts","../../../node_modules/@apollo/client/core/types.d.ts","../../../node_modules/@apollo/client/core/watchqueryoptions.d.ts","../../../node_modules/@apollo/client/core/querymanager.d.ts","../../../node_modules/@apollo/client/core/observablequery.d.ts","../../../node_modules/@apollo/client/core/apolloclient.d.ts","../../../node_modules/graphql-tag/lib/index.d.ts","../../../node_modules/@apollo/client/core/index.d.ts","../../graphql/dist/src/graphql-client.d.ts","../../graphql/dist/src/json-to-grqphql-query.d.ts","../../graphql/dist/src/active-request-counter-link.d.ts","../../graphql/dist/src/index.d.ts","../src/actions/busy.ts","../src/reducers/busy.ts","../src/store.ts","../src/actions/route.ts","../src/actions/index.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/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/@types/lodash-es/isequal.d.ts","../src/app/pages/page-view.ts","../src/object-store.ts","../src/index.ts","../src/app/app-style.ts","../../../node_modules/pwa-helpers/connect-mixin.d.ts","../../../node_modules/pwa-helpers/router.d.ts","../../styles/dist/src/headroom-styles.d.ts","../../styles/dist/src/scrollbar-styles.d.ts","../../styles/dist/src/spinner-styles.d.ts","../../styles/dist/src/tooltip-styles.d.ts","../../styles/dist/src/common-button-styles.d.ts","../../styles/dist/src/common-grist-styles.d.ts","../../styles/dist/src/button-container-styles.d.ts","../../styles/dist/src/common-header-styles.d.ts","../../styles/dist/src/index.d.ts","../src/app/app.ts","../src/app/pages/page-404.ts","../../../node_modules/@material/base/foundation.d.ts","../../../node_modules/@material/mwc-base/utils.d.ts","../../../node_modules/@material/base/types.d.ts","../../../node_modules/@material/mwc-base/base-element.d.ts","../../../node_modules/@material/ripple/types.d.ts","../../../node_modules/@material/ripple/adapter.d.ts","../../../node_modules/@material/ripple/foundation.d.ts","../../../node_modules/@material/mwc-ripple/mwc-ripple-base.d.ts","../../../node_modules/@material/mwc-ripple/mwc-ripple.d.ts","../../../node_modules/@material/mwc-base/aria-property.d.ts","../../../node_modules/@material/mwc-ripple/ripple-handlers.d.ts","../../../node_modules/@material/mwc-icon-button/mwc-icon-button-base.d.ts","../../../node_modules/@material/mwc-icon-button/mwc-icon-button.d.ts","../../../node_modules/@material/mwc-icon/mwc-icon.d.ts","../../../node_modules/lit/node_modules/lit-html/directives/class-map.d.ts","../../../node_modules/lit/directives/class-map.d.ts","../../../node_modules/@material/mwc-button/mwc-button-base.d.ts","../../../node_modules/@material/mwc-button/mwc-button.d.ts","../src/entries/public/home.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/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/@types/mocha/index.d.ts"],"fileInfos":[{"version":"824cb491a40f7e8fdeb56f1df5edf91b23f3e3ee6b4cde84d4a99be32338faee","affectsGlobalScope":true},"45b7ab580deca34ae9729e97c13cfd999df04416a79116c3bfb483804f85ded4","3facaf05f0c5fc569c5649dd359892c98a85557e3e0c847964caeb67076f4d75","9a68c0c07ae2fa71b44384a839b7b8d81662a236d4b9ac30916718f7510b1b2d","5e1c4c362065a6b95ff952c0eab010f04dcd2c3494e813b493ecfd4fcb9fc0d8","68d73b4a11549f9c0b7d352d10e91e5dca8faa3322bfb77b661839c42b1ddec7","5efce4fc3c29ea84e8928f97adec086e3dc876365e0982cc8479a07954a3efd4",{"version":"87d693a4920d794a73384b3c779cadcb8548ac6945aa7a925832fe2418c9527a","affectsGlobalScope":true},{"version":"138fb588d26538783b78d1e3b2c2cc12d55840b97bf5e08bca7f7a174fbe2f17","affectsGlobalScope":true},{"version":"dc2df20b1bcdc8c2d34af4926e2c3ab15ffe1160a63e58b7e09833f616efff44","affectsGlobalScope":true},{"version":"4443e68b35f3332f753eacc66a04ac1d2053b8b035a0e0ac1d455392b5e243b3","affectsGlobalScope":true},{"version":"bc47685641087c015972a3f072480889f0d6c65515f12bd85222f49a98952ed7","affectsGlobalScope":true},{"version":"0dc1e7ceda9b8b9b455c3a2d67b0412feab00bd2f66656cd8850e8831b08b537","affectsGlobalScope":true},{"version":"ce691fb9e5c64efb9547083e4a34091bcbe5bdb41027e310ebba8f7d96a98671","affectsGlobalScope":true},{"version":"8d697a2a929a5fcb38b7a65594020fcef05ec1630804a33748829c5ff53640d0","affectsGlobalScope":true},{"version":"4ff2a353abf8a80ee399af572debb8faab2d33ad38c4b4474cff7f26e7653b8d","affectsGlobalScope":true},{"version":"93495ff27b8746f55d19fcbcdbaccc99fd95f19d057aed1bd2c0cafe1335fbf0","affectsGlobalScope":true},{"version":"6fc23bb8c3965964be8c597310a2878b53a0306edb71d4b5a4dfe760186bcc01","affectsGlobalScope":true},{"version":"ea011c76963fb15ef1cdd7ce6a6808b46322c527de2077b6cfdf23ae6f5f9ec7","affectsGlobalScope":true},{"version":"38f0219c9e23c915ef9790ab1d680440d95419ad264816fa15009a8851e79119","affectsGlobalScope":true},{"version":"bb42a7797d996412ecdc5b2787720de477103a0b2e53058569069a0e2bae6c7e","affectsGlobalScope":true},{"version":"4738f2420687fd85629c9efb470793bb753709c2379e5f85bc1815d875ceadcd","affectsGlobalScope":true},{"version":"2f11ff796926e0832f9ae148008138ad583bd181899ab7dd768a2666700b1893","affectsGlobalScope":true},{"version":"4de680d5bb41c17f7f68e0419412ca23c98d5749dcaaea1896172f06435891fc","affectsGlobalScope":true},{"version":"9fc46429fbe091ac5ad2608c657201eb68b6f1b8341bd6d670047d32ed0a88fa","affectsGlobalScope":true},{"version":"61c37c1de663cf4171e1192466e52c7a382afa58da01b1dc75058f032ddf0839","affectsGlobalScope":true},{"version":"b541a838a13f9234aba650a825393ffc2292dc0fc87681a5d81ef0c96d281e7a","affectsGlobalScope":true},{"version":"b20fe0eca9a4e405f1a5ae24a2b3290b37cf7f21eba6cbe4fc3fab979237d4f3","affectsGlobalScope":true},{"version":"811ec78f7fefcabbda4bfa93b3eb67d9ae166ef95f9bff989d964061cbf81a0c","affectsGlobalScope":true},{"version":"717937616a17072082152a2ef351cb51f98802fb4b2fdabd32399843875974ca","affectsGlobalScope":true},{"version":"d7e7d9b7b50e5f22c915b525acc5a49a7a6584cf8f62d0569e557c5cfc4b2ac2","affectsGlobalScope":true},{"version":"71c37f4c9543f31dfced6c7840e068c5a5aacb7b89111a4364b1d5276b852557","affectsGlobalScope":true},{"version":"576711e016cf4f1804676043e6a0a5414252560eb57de9faceee34d79798c850","affectsGlobalScope":true},{"version":"89c1b1281ba7b8a96efc676b11b264de7a8374c5ea1e6617f11880a13fc56dc6","affectsGlobalScope":true},{"version":"49ed889be54031e1044af0ad2c603d627b8bda8b50c1a68435fe85583901d072","affectsGlobalScope":true},{"version":"e93d098658ce4f0c8a0779e6cab91d0259efb88a318137f686ad76f8410ca270","affectsGlobalScope":true},{"version":"063600664504610fe3e99b717a1223f8b1900087fab0b4cad1496a114744f8df","affectsGlobalScope":true},{"version":"934019d7e3c81950f9a8426d093458b65d5aff2c7c1511233c0fd5b941e608ab","affectsGlobalScope":true},{"version":"bf14a426dbbf1022d11bd08d6b8e709a2e9d246f0c6c1032f3b2edb9a902adbe","affectsGlobalScope":true},{"version":"5e07ed3809d48205d5b985642a59f2eba47c402374a7cf8006b686f79efadcbd","affectsGlobalScope":true},{"version":"2b72d528b2e2fe3c57889ca7baef5e13a56c957b946906d03767c642f386bbc3","affectsGlobalScope":true},{"version":"8073890e29d2f46fdbc19b8d6d2eb9ea58db9a2052f8640af20baff9afbc8640","affectsGlobalScope":true},{"version":"368af93f74c9c932edd84c58883e736c9e3d53cec1fe24c0b0ff451f529ceab1","affectsGlobalScope":true},{"version":"13f6e6380c78e15e140243dc4be2fa546c287c6d61f4729bc2dd7cf449605471","affectsGlobalScope":true},{"version":"33358442698bb565130f52ba79bfd3d4d484ac85fe33f3cb1759c54d18201393","affectsGlobalScope":true},{"version":"782dec38049b92d4e85c1585fbea5474a219c6984a35b004963b00beb1aab538","affectsGlobalScope":true},"439ece86b8b4d4af78af97e74d373ae1cd657c7169f4dee55038648217ca9fcf","7a1971efcba559ea9002ada4c4e3c925004fb67a755300d53b5edf9399354900",{"version":"99b772888fd71e82f91719a3a92aaa4fc69b2116caf91bfb64dd5edd77e9f635","signature":"4d4cf93a6b4c81851ad759e4569b6feb7a701e80b13a6f9d8d9c6012bbb86bd6"},{"version":"3c95b84d9e94d627563fb5831f395e301262c97d9c1698eea3fee971df6cb5ef","signature":"2e6035af8f3e43bf95e4983329c8277d66f9b271106af27b99a85d1c1b9daf4a"},{"version":"ceb0826ca35e1d2593e91abca066a1fefbbc6c04cea71a7c85ee9c28c0949fad","signature":"774308610e8d4a9954cd93840f99decbf340accfe3ad7365547950ede8162c92"},{"version":"e4150841614359d71012379b3fff85faeb01ebb5d5e46f5dfb4752f7bcd3fbfa","signature":"36c15dd26c66c97b9df26ce34baacdb13fc760c5b9a2d789dcc317d27b189257"},{"version":"59fe9df072abeac18b929473e0b8e7f61639bdea15303e57575b0c4b4adcd104","signature":"3d7c0b593a29d717b2b2ba3f03f819c3c48bf9e250d79c4a31860af80f177e8c"},{"version":"d4f20ff8892b737b1c9634f1a3c4cb8f9e71818f006d8a82b9e46fab359b7158","signature":"f228d440342f5d0933f5db093aafab2f07de24a427b4488ccfae27b7457d7666"},{"version":"fd624f7d7b264922476685870f08c5e1c6d6a0f05dee2429a9747b41f6b699d4","affectsGlobalScope":true},"701978f3975f96e76e3ffc2e1762e3a97e3d323812049fb6fdfd559579b89708","d50a158fc581be7b1c51253ad33cb29c0a8ce3c42ca38775ffadf104c36376d0","1f2cdbf59d0b7933678a64ac26ae2818c48ff9ebf93249dde775dc3e173e16bf","05cfea0488751015b0b85911b6cdcde7c6cebdd9b8cada1ec0b5c1736357a552","f5800813e5c0d6c27d73b76f2c99f39bdfd6229d03553a8a9ae485f6aeb94425","4d5e201faa4bceca840b652dfc10795170c061f498e19429a06e056490aa69aa","6cf5098c7bf0c14358b656edd6103df1ae9f8c6a94abca9df8650c2b520d8096","ee11b7061adce4a1c0370620949a57851215b152a5632d2faf1aedbc90ad0520","f8c86fcbfb0a1e69a0ed28d3249cc33c312fa23a39c17e15cbbcc539bdcdc303","85e0f00b17c3ae8cd88438c754a2c43f4a9361e685b97a70e52e33afbf62488f","39d2d450df6efbf38585fd316f18922c8ac3fdfd4c3fc412d0bee34e2bc86378","4dcdfe4c18557fc02d8cb22cb422cb98bfeba8158aaf18cc66f9d99293ebe2c8","7efea6f2270a14f1b0d5f472f2a6fcb0a97beb677299e10b073cc2abdabeef51","385679adcfaaa1b561983bd5ae140b4db1e360a534f9685ee87f5019540c9ce8","3df6a0e8bdb7199dff6cf75c0250316f06b87c982bb47460960a1c5a793f5ca6","b3238dd00b7796eda3f507726e9882a55ff7043b249be8309abed22cfb7d7463","f499d7fb533781939c7a5ab778ac6e6c8ffe65601b1a61a843c36ee0013f05b6","7fcb76be88d4a64f6318b5a24b57021d7463f24485a3d1a931bf664c7e437534","940995980343a2bfebf515240e5eec487f845002a089bee0d18656ebf61d59aa","098ec42cd54c2b3354584c4fe8ad143040114891dde762741522b62788772f0d","1e73d612f806d183d6c16c4135c16c1a14dd827c1a67097e72ab1841852bfcb9","30046b0787c577061d43e498b507da8a249fbc58bbe33a09a7bef777e1d5fb67","cb2de9f1d7d286191834eeb331d23dc69eeb322745114ddad1695e4c575b5feb","dc2461db89dde29306a73a2926e2cf874e981ef034412f4d1e3d06d45bb3127e","13a5d8ec52111b64ed8fdcb47ab664b60085733c46c44aede33fd2926840ac31","ad7ab3cf33ac3e8767de4e363bb439e3095fe2dba7f64255c72d6beccf96aea0",{"version":"7b48718e216c87c95034533cb162482b9e7d8135b830089e31796aa192b45e29","signature":"641089f0b8094ef74b9d4b3364d5dec1592d5e3b8a51c1ba491bc8872049e79a"},{"version":"7ed9e9171143f9e565a55d9b9e8b52a70946490021141395ed8a6083d2026bc1","signature":"c0dab6e6130fcc1162e18e1d7ee3038525ee9daebaa8f4f221fb67440ae38509"},"b8442e9db28157344d1bc5d8a5a256f1692de213f0c0ddeb84359834015a008c","458111fc89d11d2151277c822dfdc1a28fa5b6b2493cf942e37d4cd0a6ee5f22","da2b6356b84a40111aaecb18304ea4e4fcb43d70efb1c13ca7d7a906445ee0d3","187119ff4f9553676a884e296089e131e8cc01691c546273b1d0089c3533ce42","febf0b2de54781102b00f61653b21377390a048fbf5262718c91860d11ff34a6","6f294731b495c65ecf46a5694f0082954b961cf05463bea823f8014098eaffa0","0aaef8cded245bf5036a7a40b65622dd6c4da71f7a35343112edbe112b348a1e","00baffbe8a2f2e4875367479489b5d43b5fc1429ecb4a4cc98cfc3009095f52a","68a0d0c508e1b6d8d23a519a8a0a3303dc5baa4849ca049f21e5bad41945e3fc","3c92b6dfd43cc1c2485d9eba5ff0b74a19bb8725b692773ef1d66dac48cda4bd","b03afe4bec768ae333582915146f48b161e567a81b5ebc31c4d78af089770ac9","df996e25faa505f85aeb294d15ebe61b399cf1d1e49959cdfaf2cc0815c203f9","4f6a12044ee6f458db11964153830abbc499e73d065c51c329ec97407f4b13dd","4d180dd4d0785f2cd140bc069d56285d0121d95b53e4348feb4f62db2d7035d3","66e64ed8de436d3ceabe6c3f59dd0a39a5237991bccfda5751c78d129e436f68",{"version":"93621eb03f607927957920ba4eef6f8b6fb0898ed79e848cc533344907b8f1eb","signature":"7af29b0589483f7bb8a99405ddb849f34bc053146184561ed4179e02f5fe4d0f"},{"version":"aeb7e98e44ccf93b887e377de3182b9382e8b0f8047eae1f40eca0985486280a","signature":"7611542379a72f7b8a92110271908b9d1913d72a581e14a779491c9083dc33db"},"7d54d48a4365f355a7759b1e29f43dea9163a9445d3f26e1234dea0af3e6a16d","78647004e18e4c16b8a2e8345fca9267573d1c5a29e11ddfee71858fd077ef6e","0804044cd0488cb7212ddbc1d0f8e1a5bd32970335dbfc613052304a1b0318f9","b725acb041d2a18fde8f46c48a1408418489c4aa222f559b1ef47bf267cb4be0","85084ae98c1d319e38ef99b1216d3372a9afd7a368022c01c3351b339d52cb58","898ec2410fae172e0a9416448b0838bed286322a5c0c8959e8e39400cd4c5697","692345a43bac37c507fa7065c554258435ab821bbe4fb44b513a70063e932b45","cddd50d7bd9d7fddda91a576db9f61655d1a55e2d870f154485812f6e39d4c15","0539583b089247b73a21eb4a5f7e43208a129df6300d6b829dc1039b79b6c8c4","7aba43bc7764fcd02232382c780c3e99ef8dbfdac3c58605a0b3781fab3d8044","522edc786ed48304671b935cf7d3ed63acc6636ab9888c6e130b97a6aea92b46","1e1ed5600d80406a10428e349af8b6f09949cd5054043ea8588903e8f9e8d705","de21641eb8edcbc08dd0db4ee70eea907cd07fe72267340b5571c92647f10a77","a53039ba614075aeb702271701981babbd0d4f4dcbf319ddee4c08fb8196cc7a","6758f7b72fa4d38f4f4b865516d3d031795c947a45cc24f2cfba43c91446d678","da679a5bb46df3c6d84f637f09e6689d6c2d07e907ea16adc161e4529a4954d6","dc1a664c33f6ddd2791569999db2b3a476e52c5eeb5474768ffa542b136d78c0","bdf7abbd7df4f29b3e0728684c790e80590b69d92ed8d3bf8e66d4bd713941fe","8decb32fc5d44b403b46c3bb4741188df4fbc3c66d6c65669000c5c9cd506523","4beaf337ee755b8c6115ff8a17e22ceab986b588722a52c776b8834af64e0f38","c26dd198f2793bbdcc55103823a2767d6223a7fdb92486c18b86deaf63208354","93551b302a808f226f0846ad8012354f2d53d6dedc33b540d6ca69836781a574","f0ff1c010d5046af3874d3b4df746c6f3921e4b3fbdec61dee0792fc0cb36ccd","778b684ebc6b006fcffeab77d25b34bf6e400100e0ec0c76056e165c6399ab05","463851fa993af55fb0296e0d6afa27407ef91bf6917098dd665aba1200d250c7","67c6de7a9c490bda48eb401bea93904b6bbfc60e47427e887e6a3da6195540be","be8f369f8d7e887eab87a3e4e41f1afcf61bf06056801383152aa83bda1f6a72","352bfb5f3a9d8a9c2464ad2dc0b2dc56a8212650a541fb550739c286dd341de1","a5aae636d9afdacb22d98e4242487436d8296e5a345348325ccc68481fe1b690","d007c769e33e72e51286b816d82cd7c3a280cba714e7f958691155068bd7150a","764150c107451d2fd5b6de305cff0a9dcecf799e08e6f14b5a6748724db46d8a","b04cf223c338c09285010f5308b980ee6d8bfa203824ed2537516f15e92e8c43","4b387f208d1e468193a45a51005b1ed5b666010fc22a15dc1baf4234078b636e","70441eda704feffd132be0c1541f2c7f6bbaafce25cb9b54b181e26af3068e79","d1addb12403afea87a1603121396261a45190886c486c88e1a5d456be17c2049","15d43873064dc8787ca1e4c39149be59183c404d48a8cd5a0ea019bb5fdf8d58","ea4b5d319625203a5a96897b057fddf6017d0f9a902c16060466fe69cc007243","3d06897c536b4aad2b2b015d529270439f2cadd89ca2ff7bd8898ee84898dd88","ab01d8fcb89fae8eda22075153053fefac69f7d9571a389632099e7a53f1922d","bac0ec1f4c61abc7c54ccebb0f739acb0cdbc22b1b19c91854dc142019492961","566b0806f9016fa067b7fecf3951fcc295c30127e5141223393bde16ad04aa4a","8e801abfeda45b1b93e599750a0a8d25074d30d4cc01e3563e56c0ff70edeb68","902997f91b09620835afd88e292eb217fbd55d01706b82b9a014ff408f357559","a3727a926e697919fb59407938bd8573964b3bf543413b685996a47df5645863","83f36c0792d352f641a213ee547d21ea02084a148355aa26b6ef82c4f61c1280","dce7d69c17a438554c11bbf930dec2bee5b62184c0494d74da336daee088ab69","1e8f2cda9735002728017933c54ccea7ebee94b9c68a59a4aac1c9a58aa7da7d","e327a2b222cf9e5c93d7c1ed6468ece2e7b9d738e5da04897f1a99f49d42cca1","65165246b59654ec4e1501dd87927a0ef95d57359709e00e95d1154ad8443bc7","f1bacba19e2fa2eb26c499e36b5ab93d6764f2dba44be3816f12d2bc9ac9a35b","bce38da5fd851520d0cb4d1e6c3c04968cec2faa674ed321c118e97e59872edc","3398f46037f21fb6c33560ceca257259bd6d2ea03737179b61ea9e17cbe07455","6e14fc6c27cb2cb203fe1727bb3a923588f0be8c2604673ad9f879182548daca","12b9bcf8395d33837f301a8e6d545a24dfff80db9e32f8e8e6cf4b11671bb442","04295cc38689e32a4ea194c954ea6604e6afb6f1c102104f74737cb8cf744422","7418f434c136734b23f634e711cf44613ca4c74e63a5ae7429acaee46c7024c8","27d40290b7caba1c04468f2b53cf7112f247f8acdd7c20589cd7decf9f762ad0","2608b8b83639baf3f07316df29202eead703102f1a7e32f74a1b18cf1eee54b5","c93657567a39bd589effe89e863aaadbc339675fca6805ae4d97eafbcce0a05d","909d5db5b3b19f03dfb4a8f1d00cf41d2f679857c28775faf1f10794cbbe9db9","e4504bffce13574bab83ab900b843590d85a0fd38faab7eff83d84ec55de4aff","8ab707f3c833fc1e8a51106b8746c8bc0ce125083ea6200ad881625ae35ce11e","730ddc2386276ac66312edbcc60853fedbb1608a99cb0b1ff82ebf26911dba1f","c1b3fa201aa037110c43c05ea97800eb66fea3f2ecc5f07c6fd47f2b6b5b21d2","636b44188dc6eb326fd566085e6c1c6035b71f839d62c343c299a35888c6f0a9","3b2105bf9823b53c269cabb38011c5a71360c8daabc618fec03102c9514d230c","f96e63eb56e736304c3aef6c745b9fe93db235ddd1fec10b45319c479de1a432","acb4f3cee79f38ceba975e7ee3114eb5cd96ccc02742b0a4c7478b4619f87cd6","cfc85d17c1493b6217bad9052a8edc332d1fde81a919228edab33c14aa762939","eebda441c4486c26de7a8a7343ebbc361d2b0109abff34c2471e45e34a93020a","727b4b8eb62dd98fa4e3a0937172c1a0041eb715b9071c3de96dad597deddcab","708e2a347a1b9868ccdb48f3e43647c6eccec47b8591b220afcafc9e7eeb3784","6bb598e2d45a170f302f113a5b68e518c8d7661ae3b59baf076be9120afa4813","c28e058db8fed2c81d324546f53d2a7aaefff380cbe70f924276dbad89acd7d1","ebe8f07bb402102c5a764b0f8e34bd92d6f50bd7ac61a2452e76b80e02f9bb4b","826a98cb79deab45ccc4e5a8b90fa64510b2169781a7cbb83c4a0a8867f4cc58","618189f94a473b7fdc5cb5ba8b94d146a0d58834cd77cd24d56995f41643ccd5","5baadaca408128671536b3cb77fea44330e169ada70ce50b902c8d992fe64cf1","a4cc469f3561ea3edc57e091f4c9dcaf7485a70d3836be23a6945db46f0acd0b","91b0965538a5eaafa8c09cf9f62b46d6125aa1b3c0e0629dce871f5f41413f90","2978e33a00b4b5fb98337c5e473ab7337030b2f69d1480eccef0290814af0d51","ba71e9777cb5460e3278f0934fd6354041cb25853feca542312807ce1f18e611","608dbaf8c8bb64f4024013e73d7107c16dba4664999a8c6e58f3e71545e48f66","61937cefd7f4d6fa76013d33d5a3c5f9b0fc382e90da34790764a0d17d6277fb","af7db74826f455bfef6a55a188eb6659fd85fdc16f720a89a515c48724ee4c42","d6ce98a960f1b99a72de771fb0ba773cb202c656b8483f22d47d01d68f59ea86","2a47dc4a362214f31689870f809c7d62024afb4297a37b22cb86f679c4d04088","42d907ac511459d7c4828ee4f3f81cc331a08dc98d7b3cb98e3ff5797c095d2e","63d010bff70619e0cdf7900e954a7e188d3175461182f887b869c312a77ecfbd","1452816d619e636de512ca98546aafb9a48382d570af1473f0432a9178c4b1ff","9e3e3932fe16b9288ec8c948048aef4edf1295b09a5412630d63f4a42265370e","8bdba132259883bac06056f7bacd29a4dcf07e3f14ce89edb022fe9b78dcf9b3","5a5406107d9949d83e1225273bcee1f559bb5588942907d923165d83251a0e37","ca0ca4ca5ad4772161ee2a99741d616fea780d777549ba9f05f4a24493ab44e1","e7ee7be996db0d7cce41a85e4cae3a5fc86cf26501ad94e0a20f8b6c1c55b2d4","72263ae386d6a49392a03bde2f88660625da1eca5df8d95120d8ccf507483d20","b498375d015f01585269588b6221008aae6f0c0dc53ead8796ace64bdfcf62ea","c37aa3657fa4d1e7d22565ae609b1370c6b92bafb8c92b914403d45f0e610ddc","34534c0ead52cc753bdfdd486430ef67f615ace54a4c0e5a3652b4116af84d6d","a1079b54643537f75fa4f4bb963d787a302bddbe3a6001c4b0a524b746e6a9de","7fc9b18b6aafa8a1fc1441670c6c9da63e3d7942c7f451300c48bafd988545e9","200a7b7eb3163da4327412c650e43fbe66c73604a23a694f95ede53c250bfc3b","b843e64cc56422a003f151f950c0b11dfc93e48d836c23d1de3ff9760ba66128",{"version":"05fe0a22611e537b8d36d14182dd587ac81692247592e495bed72201d739d537","affectsGlobalScope":true},"0d728b43672268b6358c183f58babb14b4d9133368d3a3d970a638e745a07946",{"version":"68b24afcc8f547f6f4e01a6438f693acf091679d1290f16ac3ff4281604d09c3","affectsGlobalScope":true},"be65d9c4b878135fd01ec9d627649b8f0ea042405d4238555bb1ed32ba4bc0d4","c24c21411a095cbe726d6ee0a45d219109d661371d60647abf0ec72ac356959d","6366130e8579ed3a871038161c56305fb50dc86515dfe7df2086dff1064e7335","f0b49e409996f4d3ddb54f71ec92f5413d004070f23ac1626d698502af028d80","178f27d07eb47715315586e6b93499134f9645a781dcee121809772319da2310","075f39e49fec4edbf341af1236a12efdf4ceef20a1d463d3aafe1e528260ad01","0e637de8a04bb36479e999759625ac74ba8ec316f38699c1a2bbc2287cba3a02","1439e71e2196fcf0c998446c0a86cd45c1c0c3f872e2b5c96747b77b95626468","8c328b52f3f1a382fa838326757402ba3f89dc956a154a8d39b383ff9d561778","83b5f5f5bdbf7f37b8ffc003abf6afee35a318871c990ad4d69d822f38d77840","656e8a14a0af2822043ecc64532a6d82715811a9c13aececf0538d9851a257a2","7425cbc402ec67a19cd21faa4ef0896dd0a3ebfa6f24d13f693c746fd7ae2b4f","b6f357cb6e31ed152370ecda2fcdd5a8d6f7220a49a7c138345e47ff37be120b","114e3c99f9dc8434ce9a75b63b7a0da5ab0a0293fc6c75dc91a38d0c2c4831fb","2d504f8e4d31b03bc70915d6c19d1eb1467748d525bf88fa809e988ec1ba6a0f","b3dec0879e876086c6bd5d93b671bf3a034da7712ea60b6e815f1de987df060a","4c2dc62cf8ddea2c86bdb2cdcc152482639b455a9d073b8a637ca0871691e808","170b97ee9ca13eadc645d2264b1041b6a927cd12069cb7b7722dc9b3af1ccd53","70bce44ecc89f768392e66f49fdd6578885c6912c70505479b4e03325d5a989d","c677bd7039edf9c7f90a61a59a8e85ce450eee24ec511278893c551e3e32ba42","a023eb8a768d010cc6ca7bbd3d721f2131652ceaa58151021570f0c7275cbfa6","6148d07d0461a3dbf338f5f271ff8b887d8256817f5bacb7fc7bd3bca5b79796","e81622c94502d2b4f7787d7e2695c6e5376126f54f6b15a933aa118da1c639a5","2acb20d43c22fe33e73dfc3f70b41dca9c3af5c1bd61c9642c4ec4498d324f69","cd72696c0c73179120840bf02b371c33d4e97286887776b8d6fc946e6183e8e3","0b453035b3250e887e90c62e2293481f84dea16fd6e4ed64b887d34a7f26f665","1cc001b662ff2ac4881f501a88c5dbb6c02a7f87d6cbee79934fff95c1bbea30","b92c0341be64c4a28cc596fd3eccf0e74ac475f859d2d64a8a74bd969fffcc16","5b857d41d08971f63d54a050c5ba29504887f72e21e548e12e36428726941b11","9b51dd74a388c13e157c457cc39d59dc2aae2134f6a21cc6b695219932cb8817",{"version":"db06f4cdf70e3689f0cd5a96a6836f34024ad61e8dd01473560ebbcae09c532b","affectsGlobalScope":true},"7ff05fb50d37beb9bc6a5f93a3f09db2f959b0327f4f3b4221b2180e5b661322","3a4e80746c4007af4abc9b1263c4088b859cf4c1f7e2f03a074750bd03679e17","8772ee20ba975dd2411063d0d0c762588de75d65be11bfc96d17ff8375e7153a","bd08ee515c95bb5e3387f1c6e06b9b90a7023841c5c50cf8a3be0ccb98b423b6","7e45d0be6c684f8bd44a7c9e9b85866eadeefa8eafb4391a9a301275c35b4fcd","4b9fba069829653b17f331333ded3f88a2193139115ad48589b57542e0f1df5f","fa67c77380575031c13b4428fb04e817fe50540329c981c1a2b147ecb9327ef0","a60cb94351eec664cd5fd6c680ed608258d5ebc0e0a4b469c66ed5a3cef5efd8","9f9159a0e2266b44e522ca1c861e65644a330549201b75ddb4ab79dd85f10c8a","8d00ce6d5f41f222246ca4413da284f9b64c452ede594aaf0a368c804e8c58c1","da9a27a114bc110dfc2aa82ae2c2bca6c263e54e2fb715c88e871cd03b86165c","5845b996902c6abf5559e3795ada1dc5e5eaa3f48c2f893ec614c2aae7ad9155","79ad4eca59cf44701cd2b138b633efa003573521634b60eabf89f9228cd55809","638678c386beeb3793cc51759d9accb2a502c71eb08f453d6536636ef4593186","cc64f85b35f8d01b0355456652a3494c7533269fa47a68272d28fc042e30dfba","9b051f36a67f0e5813b355868f3d869c146b8045b3e143e821eb4d58a39f64be","435124778d845003fbc7f7d0a756cf5b8929365b22dfa9c6afb7b23178c6dc6c","948f93cf2016b2d75c53605a44397983dfb7ba736d5a75e9866413d6af4f5e59","e20a07f3bc177e8757f07bebd3bbe674f1832da963480c644f7aa40722645231","584bb7dd00ffcc99918e3aca639ea6eed99256bef0b9c70f36de255212e086b0","d55df0c04f6b9b73a531aab649fca0e79b6bb6412ff3898d3e60e4e74a1acd6e","d35be9e4af129629c0ba2fc57fe80e94b8e464de3d3b0e8ed621873b9c28c2c4","667d1590f5ed02745949cf1b4532bbf80597c7cd15ef8be42b06f035487cee66","6336e7ae85e7bd0116777d6de86f34c881b89d81083547a8e7a3e9c9ce686b89","33fd57356804dd8d377aa08d6552b66068530b8875fbc8df6ea469953365ab5a","b4d4a27d2d42e2088ded7a7062d6fb2c89c588dae93fc81cbca5109b9f08324d","6882eb3444234bb5fd0f88771b3dac44f96549a16c88fd834c29486e86baf86f","7b18a8a68a7d84946f836e672e1bbb37e349be74124912dd2886da4fb5dad505","c57dcbf8db47e0f0fd15686fc4b52442a8af3d13139a6e5dbd776761ebe0647c","42791bbdba1514368154fc3836f8104c757c7b3a8c397f240581f10c139e8c2a","306ce99f2c5fac7355dc6178d2f2a539c39093beb8f541ed1883b19a7d2a6302",{"version":"4faf050b6c2cad6fcfe45d9fce6c555c35747e601aacc3122cf024faf77f6b4d","affectsGlobalScope":true},"2229ac54fce24aa66dd8473e29f31f95574c9ed9fa71c0950d5e9ebc19fbd34e","1654209fde4ef73f51d3da10c2404c857714bcd8a325b851ee7b0c970cc51dba","5232f93ba808fd18230f4e0fae516fc0ea0ca09386c93ef19dfdddd59d82194b","64c7a2052eb5f8aacad9782fe254e7c225d3cdebcdbd3f2f339b2574b80f61d7","29d46805aba9bd70c3b64aea22a15589fcaa12b2bed2ac9310a7f02b02363bac","0358f51804975d70e83daa425709e472bfadb8ff6627402723881d3299599732","38106630e61f7dff328af03a2f1ac3b46cf57d611e8ea7ec9ec26dccb582bbf7","bf9085ad9469ad87d48e6b294c26e8ebc358a653e25b7c6976065df658ab3a47","cad94e8c96269a3f9c80f09a284e6839c5d01eddd85c90f9efa8e9556f1834e1","8d52b292046eaf7bc4565cadd1c61edc952d075ab2889f41f6d63f10ea59ccb0","38e1f988ca8a3fd0ee2fad611f7f982e9530ae6973151bcacde7c6e7fb04bea5","383f07a2a1fb51cb6fc8265a63eaade643135379374afa7166e3b84b063cd2fb","5754840b8991b703e3b0ae0fefc4a1be80d9ff61afdbf101dacfa6566255e0df","bf0594b413405ede52217e9a3996cae8771920659d46c2a4a411e98a6405851f","29ab9f8d2f84b5f84584ca6ec50535d5ebc34245d45cef32931ee8b4cced4ea3","e0066d0cec0f1194361302cf52abf2e71c0af898eed09ec687d4a34d7b89389c","d4b61bbee55cc1f91616b64937233522f29b6034304440a97344766e58d81224","484c61ffe28d13086dcbadc5371355a457e75a375a1f21649d87209c7da3f5ad","d6a5c17ef46bb6832efa4c7ed3fabf666bed91f7b1f913ef9f9437de72f9f45f","df51929c4b53d6f8740927d77f7bf415d026812a80ff4b03cfa24e9962aab30e","79d3f73e515450fb3e71721e13859666a2fd1dee8d2a4dbd51668eeceb0b5e1e","08a1d8e1474dd44bf89e4fd47ca3fd1c0f6e95d9e74413d95e360ac331915601","71257f1fd9c2606a8db9e614394e154d1b7175b1aab178ff7850cce0f383b0b7","dbf6e52d440f8495adf5f9d46f603ecf7e007b7032542e93a578748948d339cd","f5146fc906ed4a1ff094cf779c438cdb62699836ed52d35d68cdf8ffa33d4f17","c488375c6eddabce83a48132ae081c13ce049163694aee72205716070cdaf2d4","99471216f9a6bbdbd922ce5c3abab16a01f525c04b8565802ba7e2f741ed66ba","699f82d62f80defba3f24f8035fdd7848ce59819b7e92be1c21203784f989880","d6b416da43b620809c3802863ff9fc327fd93a27596b8297e3c11b5babee7c2d","54f654d70f99e22ab62bc368214dbffab229aaa05c0854844e092fc0249b941e","8dccc7b5bc97ef722f7cdc7a98052f604e97ce3d8e35ec3ef71ada72f8dde961","d05c820b83b902757ad03fc35cbbc223cf956378035629da3c939b2ebfcd4c0e","60427cfa4f690de417382f75e3726d6afa5c539bff1a20f02f02d71a039c4583","6001a900ad0d1514db9388aef756f13c49b28db222b3c7b31303b62600374919","0cae168bf15972fa976f592ed83d52657b9eb01fbe14310b925bc6b6bb31a040","d424b5f5b54d4f2338441533f0efb83a1629d6f881a2d18b578c32b77d37bb8a","d57448d620fedd6105a224fe06ee24499aefdc59160d1e2756d88e72ad68ca0e","f3c40e9fe902aad14edb41c369f56ea860d620644f65ee7501df470c8fc27505","07ca7906cd7ebb46a93f2216b2bf1ac94d43a35be2935804b5e346536c4f4cbe","2f6de3568f38b279d342e7a317e423fb8e5582c0ae68ee83bf8c3cb4ac4cf403","7f1cf2dab123e185e96bf46e7380fbb3946b8a8710263e2032429303496c2a34","3a33dc0aaca86bfc68a58b603aeada539a0e47bce983d88473c7076318b91c9f","6cc5efe017d42e58fcd1afbc087bf740c0fcca51a8250fa306e215493a0709c1","8c2ad0ab1572007d1be80efdaf12fa069ca7b819db8adaded41982fcbac20de3",{"version":"84be3272c6f922f2429f90ef70720847c1d89a1e47a3ef7109caf256b44ce054","signature":"b42033bf1067564808e4d360d79281667c2b3b0792c2d615ab641eb85974d4ba"},{"version":"7217e4e347064d1885eacfebcaa7984fe56405de7825555aaa190d39f0538bbc","signature":"39ddfec42c97893f375021f18ef65e174a9a239b963097dab1ab9ed2d63cc099"},{"version":"828f5e659cf67023155156a0784a7db12752280abf9dbd158b4da484ad035f73","signature":"4ab17f80ced148d509345cee706b2b85941515dd76e32cf47118bcdf6a4bd56a","affectsGlobalScope":true},{"version":"30ee4780fae650502bc9a97c23459133bfebd195e46c7c0a6d8eec1c0713db53","signature":"bf22d59377e59146e561b8ab7f449fab01aa068a7a8e0a38fef92d2653c517e0"},{"version":"242b5861bc278076615870823398bbb5b237738f64f03e1740da1bc184b427c5","signature":"78faa3783191b2d5d5f7a9e835ee3f6a1456dc391d6eb5b40d3a27dfd9decd6e"},"e59262ddaae67dec2d226f8a5d05cf6c4dc353c0d9b1e4980a61d7fcf9a2b051","5e30131b6a5587fe666926ad1d9807e733c0a597ed12d682669fcaa331aea576","470b8c2386c916bad4aa0d05e89b271a47dbe1250cb25dc0f93102b457228dde","15fe687c59d62741b4494d5e623d497d55eb38966ecf5bea7f36e48fc3fbe15e",{"version":"2c3b8be03577c98530ef9cb1a76e2c812636a871f367e9edf4c5f3ce702b77f8","affectsGlobalScope":true},"7000ec8572390d035ba5ef993953957150d0c38ffb31b56653c97dd78cb6e1aa","056892cca68dca10a914f1580ba0e5710d26794e8707225dca9b5717ed702f1e","056892cca68dca10a914f1580ba0e5710d26794e8707225dca9b5717ed702f1e","4ddf3962990379d1ea59b369a5516c7533b7944010d6998e0e9b1ab35d5af1f0","1bcd560deed90a43c51b08aa18f7f55229f2e30974ab5ed1b7bb5721be379013","dc08fe04e50bc24d1baded4f33e942222bbdd5d77d6341a93cfe6e4e4586a3be","2a8f0a19a927e83421597c056c90695557142f54ca96358f01eb1f2a5eb228be","d08415b3d6d7fd153ba6e7bf7707ffc57f3c6ad85730ea63544756610b4350c6","411f23da7a63c3d3fd4860c41a458e8df239776fd5d9cd36dd3ad6be92afccbd","6ada3e065916c0ef2dbc9bc0f9b5d59afb25d9176f81fa2c8993a536924140c6","356cc1b058e05e07d2acd73bfa87f83a6f4a343450ee375dad232ff4a55d41d8","df286e6b181ed08766bc19cf1a2fddc50bc5d540f233bc1ce4430a3c1c8c8379","f436800c0af503703110c93144fcc7392524636fb4216296411243b29fe0162d","0d5002560b45ce4fd6c4124632f61789e584be0634602486a2ce59541311d153","bbe13c947d7d6c3426e0e5815e2b3464fa03d34a4bf47298c43b9237cf59555b","9f7d0ee33b9f8fa4dc2e9628e0cdf8683104d01de9d3d24f62cd5da014a5bec4","a8992b852521a66f63e0cedc6e1f054b28f972232b6fa5ca59771db6a1c8bbea","da66c1b3e50ef9908e31ce7a281b137b2db41423c2b143c62524f97a536a53d9",{"version":"9c2adce0839937457ff6710a92828cce1671cc59fb20c0d28d334d6407782806","signature":"08d32a8fc63dbf34214ebb90c547ef20082d7d60126ad146ef8704528fb5e99d"},{"version":"4f1a2df041b302d49a7637e72f2a48d04f84d4a738e01d4351aff891f93a6cc4","signature":"fc48282c397084016a939e1b3f91dcaf4199b6cba339d91d8b2dc2acade79762"},{"version":"fc956dab073307e9f440201b8171d593c50fc678255998c7bb59d8689a9eec3e","signature":"981fc22acc36b6a33c9f5b3d468e975b104cf3409b881ca6cffe84c5f9fda7c1"},{"version":"c3d591f5f6956b217c477912a81a812ee8d5f7e12eec18d06222c4462c4ef6b1","signature":"561e8c7af0e65a4ea90af6b43a54399db172aec993f14981ff45769ee8b6a33e"},"23c05cc4d97aa608b5ea8badadb4e1b0c4e306ed5d651c5d1760552e91d1ad92","452807fa3050dbc39caf1ffd2e9cf9b36e719e36ee062f6adebe50be426790d3","cf93fb9208a01c80f0fad245c4360356e5de6c2384b7641acf0b9cc2f5c42448","336398b0efaf964124e636a9b29c4edd5870aee79ac64bf87be58a9d66b7c048","571bc65ec37ba124e762bb822e14a2b8502dc684e356be8feaccbd6b9cadd023","2bbbefc1235500bdb5091f240dc8cba861a95342272f7d11b7574a0d2ef4f85e","7cd455fc4c4818f19263d73b29c59f3fb5fd54b45a6ab83ca3eb3661281db56b","1c6b9b5501774a2ece6574be8e26092800e3f1f836f8c179b4f9fdd271a620f8","bcd2426fd141157e04e3a8eff914b575403587f398cf0878f07c2f283e0d1afd","bac8ff394e831e4dd3f0961d6abb414b0e2b4ba16fdeb502d087ebf0340ed5f6","b8965484c1a08eeac238cf02a1498d72f3f3610059570a2c0fd207eb34245146",{"version":"fd4c5f5f845587008ca56c2b119fce2029092f515d41cf67cddcc69f773fbaf8","signature":"0bb557b6a266a313a13f3e30ade10a0fb64e26034a22f3eb57492be5b54abbb9"},{"version":"f61767413d019de6565fb8a382405ae71b71344a7dfbf272cfbf8a8f5364ceb9","signature":"dad8b29f1a0eded516aa3009e0483e7a63556a4ef7c52dd3dc81aa4bb651e911"},"a0667520a6521c12128fc28cbd5b2af58eef11c5b2a7441e0f0d47f50bf6c8e3","0dcf4c2bf1bb547e2ae5b8dce4656a56fbd15e3401ff5236ea0b93b6c60f9249","820c26194ad4089bc503b02bbedbd86a865e9c8a05c58ef88c8d19d9c019712a","790b453e1b76814112c3870d6e12f5db992d3194fdb3529445317dd75cb538be","d375de88ab19f6c105a65fc89eca1ae782362c5c395283b0c85ef39c7b835dfe","aeda2fffbc651fe1fa60b913d45f291f5544c4840206cb3b1badc16d9f01a0f0","7b3c1d688dcb8645b5a6c37bce5b047da92b4c298ed8709e03e987e0efb035b1","29c64e1acb5b73f08a60e71154c65c8a34f885f1f2cc55ffa06dfd244c058883",{"version":"7d176f155e5f6fc9756ddcc1a6d3eb2673030a066e2b7846dfc81b5271f3e269","affectsGlobalScope":true},"024fea9ee598cfe747f18340ad74e4ea428fc2a7988250ff9fcfce5673b7d422","aea18a267a0770c365cc390ad0a0b9725ed7a4540e9a96319b0f5094ee0ca124","a5a7c7d197c7b1918bddb0dd30bf8979a38828b24467ec45db093bf4621507ef",{"version":"afcd875785333f656f79bf1b3a445ceecc6aaf8e2b7cde59309a8778f41de613","affectsGlobalScope":true},{"version":"27b285e901600242883d62a5fff9f5d262c6fa128b6e6c6963f981f2630a957e","affectsGlobalScope":true},"8a9b7a437bea4cc34e5e103e01573ab3afc4564a22c838942b6dcca0f68020e8","8bb8931e629d9adfac6fe0c067de1a3c2f82b47262f83fa76eb0772ef13808e8","ae1351ed65b27a2b29a70a238024c957910e944aabbffce286099ed2b04f9baf",{"version":"3c19b3fb2f88bbd8f103fe2de0d6c0700dd9bf6678553f6db803162620b49e27","affectsGlobalScope":true},{"version":"189a87911d606781877614ad113ea2fe307de05dddc1891b49a4c196b67d77b6","signature":"8e5930493deb9bc15c58b16327dc020c7ff52a8a2c3a17703a653e2c83c02014"},"efc7d584a33fe3422847783d228f315c4cd1afe74bd7cf8e3f0e4c1125129fef","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":"a14ed46fa3f5ffc7a8336b497cd07b45c2084213aaca933a22443fcb2eef0d07","affectsGlobalScope":true},"cce1f5f86974c1e916ec4a8cab6eec9aa8e31e8148845bf07fbaa8e1d97b1a2c",{"version":"7fd7fcbf021a5845bdd9397d4649fcf2fe17152d2098140fc723099a215d19ad","affectsGlobalScope":true},"df3389f71a71a38bc931aaf1ef97a65fada98f0a27f19dd12f8b8de2b0f4e461","7b43160a49cf2c6082da0465876c4a0b164e160b81187caeb0a6ca7a281e85ba",{"version":"41fb2a1c108fbf46609ce5a451b7ec78eb9b5ada95fd5b94643e4b26397de0b3","affectsGlobalScope":true},"a40826e8476694e90da94aa008283a7de50d1dafd37beada623863f1901cb7fb",{"version":"a1d2988ad9d2aef7b9915a22b5e52c165c83a878f2851c35621409046bbe3c05","affectsGlobalScope":true},"bd3f5d05b6b5e4bfcea7739a45f3ffb4a7f4a3442ba7baf93e0200799285b8f1","4c775c2fccabf49483c03cd5e3673f87c1ffb6079d98e7b81089c3def79e29c6","8806ae97308ef26363bd7ec8071bca4d07fb575f905ee3d8a91aff226df6d618","af5bf1db6f1804fb0069039ae77a05d60133c77a2158d9635ea27b6bb2828a8f","b7fe70be794e13d1b7940e318b8770cd1fb3eced7707805318a2e3aaac2c3e9e",{"version":"2c71199d1fc83bf17636ad5bf63a945633406b7b94887612bba4ef027c662b3e","affectsGlobalScope":true},{"version":"674168aa3db414ea0a19b2a31d901b2d49705c7a495e43ffdc96928543010f8c","affectsGlobalScope":true},"fe1fd6afdfe77976d4c702f3746c05fb05a7e566845c890e0e970fe9376d6a90","313a0b063f5188037db113509de1b934a0e286f14e9479af24fada241435e707","afb1701fd4be413a8a5a88df6befdd4510c30a31372c07a4138facf61594c66d","87ef1a23caa071b07157c72077fa42b86d30568f9dc9e31eed24d5d14fc30ba8","396a8939b5e177542bdf9b5262b4eee85d29851b2d57681fa9d7eae30e225830","21773f5ac69ddf5a05636ba1f50b5239f4f2d27e4420db147fc2f76a5ae598ac",{"version":"ea455cc68871b049bcecd9f56d4cf27b852d6dafd5e3b54468ca87cc11604e4d","affectsGlobalScope":true},"c07146dbbbd8b347241b5df250a51e48f2d7bef19b1e187b1a3f20c849988ff1","45b1053e691c5af9bfe85060a3e1542835f8d84a7e6e2e77ca305251eda0cb3c","0f05c06ff6196958d76b865ae17245b52d8fe01773626ac3c43214a2458ea7b7",{"version":"ae5507fc333d637dec9f37c6b3f4d423105421ea2820a64818de55db85214d66","affectsGlobalScope":true},{"version":"0666f4c99b8688c7be5956df8fecf5d1779d3b22f8f2a88258ae7072c7b6026f","affectsGlobalScope":true},"8abd0566d2854c4bd1c5e48e05df5c74927187f1541e6770001d9637ac41542e","54e854615c4eafbdd3fd7688bd02a3aafd0ccf0e87c98f79d3e9109f047ce6b8","d8dba11dc34d50cb4202de5effa9a1b296d7a2f4a029eec871f894bddfb6430d","8b71dd18e7e63b6f991b511a201fad7c3bf8d1e0dd98acb5e3d844f335a73634","01d8e1419c84affad359cc240b2b551fb9812b450b4d3d456b64cda8102d4f60","8221b00f271cf7f535a8eeec03b0f80f0929c7a16116e2d2df089b41066de69b","269929a24b2816343a178008ac9ae9248304d92a8ba8e233055e0ed6dbe6ef71","93452d394fdd1dc551ec62f5042366f011a00d342d36d50793b3529bfc9bd633","7424817d5eb498771e6d1808d726ec38f75d2eaf3fa359edd5c0c540c52725c1","9a9634296cca836c3308923ba7aa094fa6ed76bb1e366d8ddcf5c65888ab1024",{"version":"bddce945d552a963c9733db106b17a25474eefcab7fc990157a2134ef55d4954","affectsGlobalScope":true},{"version":"7052b7b0c3829df3b4985bab2fd74531074b4835d5a7b263b75c82f0916ad62f","affectsGlobalScope":true},"aa34c3aa493d1c699601027c441b9664547c3024f9dbab1639df7701d63d18fa","4b55240c2a03b2c71e98a7fc528b16136faa762211c92e781a01c37821915ea6","7c651f8dce91a927ab62925e73f190763574c46098f2b11fb8ddc1b147a6709a","7440ab60f4cb031812940cc38166b8bb6fbf2540cfe599f87c41c08011f0c1df",{"version":"94c086dff8dbc5998749326bc69b520e8e4273fb5b7b58b50e0210e0885dfcde","affectsGlobalScope":true},{"version":"f5b5dc128973498b75f52b1b8c2d5f8629869104899733ae485100c2309b4c12","affectsGlobalScope":true},"ebe5facd12fd7745cda5f4bc3319f91fb29dc1f96e57e9c6f8b260a7cc5b67ee","79bad8541d5779c85e82a9fb119c1fe06af77a71cc40f869d62ad379473d4b75","37dc027f781c75f0f546e329cfac7cf92a6b289f42458f47a9adc25e516b6839",{"version":"629d20681ca284d9e38c0a019f647108f5fe02f9c59ac164d56f5694fc3faf4d","affectsGlobalScope":true},"e7dbf5716d76846c7522e910896c5747b6df1abd538fee8f5291bdc843461795",{"version":"ab9b9a36e5284fd8d3bf2f7d5fcbc60052f25f27e4d20954782099282c60d23e","affectsGlobalScope":true},"b510d0a18e3db42ac9765d26711083ec1e8b4e21caaca6dc4d25ae6e8623f447",{"version":"0ea93d01083b3d5863cc98cb589b5d0eac55d14417487f9e5e455dfa0b17c660","affectsGlobalScope":true}],"root":[47,[49,54],82,83,99,100,[314,318],[342,345],357,358,377],"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":[[201,218,224,231,271],[230,231,232],[201,229,271],[201,216,230,271],[207,218,219,220,221,223,225,229,230,231,232,233,271],[201,217,218,221,229,230,271],[201],[201,220,221,229,271],[201,218,221,223,224,229,232,271,309],[201,221,225,228,230,271],[309],[201,218,221,225,226,230,271],[201,219,220,229,230,232,271],[201,220,221,225,227,271,309],[201,224,234,271,279,289,302,303,304,306],[202,221,234,271,279,289,290,299,300,302,303,304,306,307,308],[201,234,271,279,303,307],[230,234,271,290,300,301,303,304,305],[201,234,279,290,300,303,304,305,306],[201,217,234,271,279,290,301,302,303,304,306,307],[201,216,234,271,279,290,300,301,302,304,306],[201,216,230,234,279,303,306],[201,207,279,289,299],[271,272],[273],[207,272,273,274,275,276,277,278],[201,271,309],[279,282],[207,280,281,282,283,284,285,286,287,288],[236,279],[282],[201,271,279],[279],[207],[271],[207,291,292,293,294,295,296,297,298],[267],[268,269],[241],[201,279],[240],[258],[204,205,206],[202,203],[201,210],[207,208,209,210,211,212,213,214,215,235,238,239,240,241,242,243,244,245,246,247,248,249,250,251,252,253,254,255,256,258,259,260,261,262,263,270],[238],[236,237],[234],[257],[321],[330],[321,330],[321,330,338],[319,320],[329,359,360,361],[329,367,368,369,372,374],[329,375],[329,367,368,369],[329,370],[329],[329,360,362,364,365],[329,366],[360],[361,363],[359,364],[96],[84,86,87,88,89,90,91,92,93,94,95,96],[84,85,87,88,89,90,91,92,93,94,95,96],[85,86,87,88,89,90,91,92,93,94,95,96],[84,85,86,88,89,90,91,92,93,94,95,96],[84,85,86,87,89,90,91,92,93,94,95,96],[84,85,86,87,88,90,91,92,93,94,95,96],[84,85,86,87,88,89,91,92,93,94,95,96],[84,85,86,87,88,89,90,92,93,94,95,96],[84,85,86,87,88,89,90,91,93,94,95,96],[84,85,86,87,88,89,90,91,92,94,95,96],[84,85,86,87,88,89,90,91,92,93,95,96],[84,85,86,87,88,89,90,91,92,93,94,96],[84,85,86,87,88,89,90,91,92,93,94,95],[378],[414],[415,420,448],[416,427,428,435,445,456],[416,417,427,435],[418,457],[419,420,428,436],[420,445,453],[421,423,427,435],[414,422],[423,424],[427],[425,427],[414,427],[427,428,429,445,456],[427,428,429,442,445,448],[412,415,461],[423,427,430,435,445,456],[427,428,430,431,435,445,453,456],[430,432,445,453,456],[378,379,413,414,415,416,417,418,419,420,421,422,423,424,425,426,427,428,429,430,431,432,433,434,435,436,437,438,439,440,441,442,443,444,445,446,447,448,449,450,451,452,453,454,455,456,457,458,459,460,461,462,463],[427,433],[434,456,461],[423,427,435,445],[436],[437],[414,438],[439,455,461],[440],[441],[427,442,443],[442,444,457,459],[415,427,445,446,447,448],[415,445,447],[445,446],[448],[449],[414,445],[427,451,452],[451,452],[420,435,445,453],[454],[435,455],[415,430,441,456],[420,457],[445,458],[434,459],[460],[415,420,427,429,438,445,456,459,461],[445,462],[322],[264,265,266],[264],[110,308],[103,104,110,111],[112,176,177],[103,110,112],[104,112],[103,105,106,107,110,112,115,116],[106,117,131,132],[103,110,115,116,117],[103,105,110,112,114,115,116],[103,104,115,116,117],[102,118,123,130,133,134,175,178,200],[103],[104,108,109],[104,108,109,110,111,113,124,125,126,127,128,129],[104,109,110],[104],[103,104,109,110,112,125],[110],[104,110,111],[108,110],[117,131],[103,105,106,107,110,115],[103,110,113,116],[106,114,115,116,119,120,121,122],[116],[103,105,110,112,114,116],[112,115],[112],[103,110,116],[104,110,115,126],[115,179],[112,116],[110,115],[115],[103,113],[103,110],[110,115,116],[135,179,180,181,182,183,184,185,186,187,188,189,190,191,192,193,194,195,196,197,198,199],[115,116],[105,110],[103,110,114,115,116,128],[103,105,110,116],[103,105,110],[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],[128,136],[136],[103,110,112,115,135,136],[103,110,112,114,115,116,128,135],[321,325],[324],[331,332,333,334,335,336,337,338,339],[373],[321,325,327,328],[325],[324,325],[323,324],[55],[55,57],[389,393,456],[389,445,456],[384],[386,389,453,456],[435,453],[464],[384,464],[386,389,435,456],[381,382,385,388,415,427,445,456],[381,387],[385,389,415,448,456,464],[415,464],[405,415,464],[383,384,464],[389],[383,384,385,386,387,388,389,390,391,393,394,395,396,397,398,399,400,401,402,403,404,406,407,408,409,410,411],[389,396,397],[387,389,397,398],[388],[381,384,389],[389,393,397,398],[393],[387,389,392,456],[381,386,387,389,393,396],[415,445],[384,389,405,415,461,464],[236,309],[101,310,311,312],[48],[48,313,316],[48,82,99,314,317],[48,81,99,316],[48,329],[47,48,81,316,318,329,340,342,345,346,347,356],[48,329,340,342],[48,99,316,329,340,341],[48,329,340,371,376],[48,54,316,318,342,343],[48,81,82],[48,314],[48,97,98,99],[48,55,56,58,83,100,315],[48,49,50,51,52,53],[48,50,51],[48,49,50,52],[348,349,350,351,352,353,354,355],[59,60,61,62,63,64,65,66,67,68,69,72,73,74,75,76,77,78,79,80],[70,71],[71],[70],[82,99,314,317],[55,329,342],[329,342],[329,371,376],[54,316,318,342,343],[55,56],[49,50,51,52,53],[50,51],[49,50,52]],"referencedMap":[[232,1],[218,2],[230,3],[231,4],[234,5],[219,6],[220,7],[233,8],[225,9],[229,10],[223,11],[227,12],[221,13],[228,14],[307,15],[309,16],[302,17],[306,18],[301,19],[305,20],[303,21],[304,22],[300,23],[273,24],[277,25],[274,25],[278,25],[275,25],[279,26],[276,25],[272,27],[286,28],[287,28],[289,29],[280,30],[288,31],[282,32],[285,33],[281,34],[296,33],[298,7],[291,35],[293,35],[299,36],[292,35],[297,33],[295,33],[268,37],[270,38],[251,39],[249,40],[255,33],[241,41],[254,11],[259,42],[260,35],[207,43],[204,44],[208,7],[209,7],[210,7],[211,7],[215,11],[212,7],[213,45],[214,7],[271,46],[245,47],[246,47],[244,47],[238,48],[247,47],[235,49],[258,50],[262,50],[216,7],[330,51],[331,52],[334,53],[332,53],[336,53],[339,54],[337,53],[335,53],[333,52],[321,55],[362,56],[375,57],[376,58],[370,59],[371,60],[372,61],[366,62],[367,63],[369,64],[364,65],[365,66],[341,67],[97,67],[85,68],[86,69],[84,70],[87,71],[88,72],[89,73],[90,74],[91,75],[92,76],[93,77],[94,78],[95,79],[96,80],[378,81],[379,81],[414,82],[415,83],[416,84],[417,85],[418,86],[419,87],[420,88],[421,89],[422,90],[423,91],[424,91],[426,92],[425,93],[427,94],[428,95],[429,96],[413,97],[430,98],[431,99],[432,100],[464,101],[433,102],[434,103],[435,104],[436,105],[437,106],[438,107],[439,108],[440,109],[441,110],[442,111],[443,111],[444,112],[445,113],[447,114],[446,115],[448,116],[449,117],[450,118],[451,119],[452,120],[453,121],[454,122],[455,123],[456,124],[457,125],[458,126],[459,127],[460,128],[461,129],[462,130],[323,131],[267,132],[265,133],[266,133],[308,134],[112,135],[178,136],[177,137],[176,138],[117,139],[133,140],[131,141],[132,142],[118,143],[201,144],[106,145],[110,146],[130,147],[125,148],[111,149],[126,150],[129,151],[127,151],[124,152],[128,153],[134,154],[116,155],[114,156],[123,157],[120,158],[119,158],[115,159],[121,160],[197,161],[191,162],[184,163],[183,164],[192,165],[193,151],[185,166],[198,167],[179,168],[180,169],[181,170],[200,171],[182,164],[186,167],[187,172],[194,173],[195,149],[196,172],[199,151],[188,170],[135,174],[189,175],[190,176],[175,177],[173,178],[174,178],[139,178],[140,178],[141,178],[142,178],[143,178],[144,178],[145,178],[146,178],[165,178],[147,178],[148,178],[149,178],[150,178],[151,178],[152,178],[172,178],[153,178],[154,178],[155,178],[170,178],[156,178],[171,178],[157,178],[168,178],[169,178],[158,178],[159,178],[160,178],[166,178],[167,178],[161,178],[162,178],[163,178],[164,178],[138,179],[137,180],[136,181],[327,182],[326,183],[340,184],[374,185],[329,186],[324,187],[373,188],[325,189],[346,190],[56,190],[58,191],[57,190],[396,192],[403,193],[395,192],[410,194],[387,195],[386,196],[409,197],[404,198],[407,199],[389,200],[388,201],[384,202],[383,203],[406,204],[385,205],[390,206],[394,206],[412,207],[411,206],[398,208],[399,209],[401,210],[397,211],[400,212],[405,197],[392,213],[393,214],[402,215],[382,216],[408,217],[312,11],[310,218],[313,219],[82,220],[314,221],[99,220],[318,222],[317,223],[345,224],[357,225],[358,226],[342,227],[377,228],[344,229],[343,220],[83,230],[315,231],[100,232],[316,233],[49,220],[54,234],[52,235],[51,236],[53,220],[50,220],[354,61],[353,61],[355,61],[348,61],[356,237],[349,61],[350,61],[351,61],[81,238],[72,239],[70,240],[71,241]],"exportedModulesMap":[[232,1],[218,2],[230,3],[231,4],[234,5],[219,6],[220,7],[233,8],[225,9],[229,10],[223,11],[227,12],[221,13],[228,14],[307,15],[309,16],[302,17],[306,18],[301,19],[305,20],[303,21],[304,22],[300,23],[273,24],[277,25],[274,25],[278,25],[275,25],[279,26],[276,25],[272,27],[286,28],[287,28],[289,29],[280,30],[288,31],[282,32],[285,33],[281,34],[296,33],[298,7],[291,35],[293,35],[299,36],[292,35],[297,33],[295,33],[268,37],[270,38],[251,39],[249,40],[255,33],[241,41],[254,11],[259,42],[260,35],[207,43],[204,44],[208,7],[209,7],[210,7],[211,7],[215,11],[212,7],[213,45],[214,7],[271,46],[245,47],[246,47],[244,47],[238,48],[247,47],[235,49],[258,50],[262,50],[216,7],[330,51],[331,52],[334,53],[332,53],[336,53],[339,54],[337,53],[335,53],[333,52],[321,55],[362,56],[375,57],[376,58],[370,59],[371,60],[372,61],[366,62],[367,63],[369,64],[364,65],[365,66],[341,67],[97,67],[85,68],[86,69],[84,70],[87,71],[88,72],[89,73],[90,74],[91,75],[92,76],[93,77],[94,78],[95,79],[96,80],[378,81],[379,81],[414,82],[415,83],[416,84],[417,85],[418,86],[419,87],[420,88],[421,89],[422,90],[423,91],[424,91],[426,92],[425,93],[427,94],[428,95],[429,96],[413,97],[430,98],[431,99],[432,100],[464,101],[433,102],[434,103],[435,104],[436,105],[437,106],[438,107],[439,108],[440,109],[441,110],[442,111],[443,111],[444,112],[445,113],[447,114],[446,115],[448,116],[449,117],[450,118],[451,119],[452,120],[453,121],[454,122],[455,123],[456,124],[457,125],[458,126],[459,127],[460,128],[461,129],[462,130],[323,131],[267,132],[265,133],[266,133],[308,134],[112,135],[178,136],[177,137],[176,138],[117,139],[133,140],[131,141],[132,142],[118,143],[201,144],[106,145],[110,146],[130,147],[125,148],[111,149],[126,150],[129,151],[127,151],[124,152],[128,153],[134,154],[116,155],[114,156],[123,157],[120,158],[119,158],[115,159],[121,160],[197,161],[191,162],[184,163],[183,164],[192,165],[193,151],[185,166],[198,167],[179,168],[180,169],[181,170],[200,171],[182,164],[186,167],[187,172],[194,173],[195,149],[196,172],[199,151],[188,170],[135,174],[189,175],[190,176],[175,177],[173,178],[174,178],[139,178],[140,178],[141,178],[142,178],[143,178],[144,178],[145,178],[146,178],[165,178],[147,178],[148,178],[149,178],[150,178],[151,178],[152,178],[172,178],[153,178],[154,178],[155,178],[170,178],[156,178],[171,178],[157,178],[168,178],[169,178],[158,178],[159,178],[160,178],[166,178],[167,178],[161,178],[162,178],[163,178],[164,178],[138,179],[137,180],[136,181],[327,182],[326,183],[340,184],[374,185],[329,186],[324,187],[373,188],[325,189],[346,190],[56,190],[58,191],[57,190],[396,192],[403,193],[395,192],[410,194],[387,195],[386,196],[409,197],[404,198],[407,199],[389,200],[388,201],[384,202],[383,203],[406,204],[385,205],[390,206],[394,206],[412,207],[411,206],[398,208],[399,209],[401,210],[397,211],[400,212],[405,197],[392,213],[393,214],[402,215],[382,216],[408,217],[312,11],[310,218],[313,219],[318,242],[345,61],[357,243],[358,244],[342,61],[377,245],[344,246],[316,247],[54,248],[52,249],[51,250],[354,61],[353,61],[355,61],[348,61],[356,237],[349,61],[350,61],[351,61],[81,238],[72,239],[70,240],[71,241]],"semanticDiagnosticsPerFile":[232,218,230,231,234,219,222,220,233,225,226,229,223,227,221,228,307,309,302,290,306,301,305,303,304,300,203,273,277,274,278,275,279,276,272,283,286,284,287,289,280,288,282,285,281,296,298,291,293,299,294,292,297,295,217,268,224,270,269,248,256,250,242,251,249,255,252,243,241,254,240,259,253,260,206,207,204,205,208,209,210,211,215,212,213,214,271,245,246,244,238,247,235,239,258,262,261,263,257,216,319,330,331,334,332,336,339,338,337,335,333,320,321,359,361,368,362,360,375,376,370,371,372,366,367,369,364,365,363,341,97,85,86,84,87,88,89,90,91,92,93,94,95,96,465,378,379,414,415,416,417,418,419,420,421,422,423,424,426,425,427,428,429,413,463,430,431,432,464,433,434,435,436,437,438,439,440,441,442,443,444,445,447,446,448,449,450,451,452,453,454,455,456,457,458,459,460,461,462,323,322,264,267,265,266,380,308,112,178,177,176,117,133,131,132,118,201,103,105,106,107,110,113,130,108,125,111,126,129,127,124,104,109,128,134,122,116,114,123,120,119,115,121,197,191,184,183,192,193,185,198,179,180,181,200,182,186,187,194,195,196,199,188,135,189,190,175,173,174,139,140,141,142,143,144,145,146,165,147,148,149,150,151,152,172,153,154,155,170,156,171,157,168,169,158,159,160,166,167,161,162,163,164,138,137,136,102,327,326,340,374,329,324,373,328,325,346,56,98,347,58,57,55,237,202,48,45,46,8,10,9,2,11,12,13,14,15,16,17,18,3,19,4,20,24,21,22,23,25,26,27,5,28,29,30,31,6,35,32,33,34,36,7,37,42,43,38,39,40,41,1,44,396,403,395,410,387,386,409,404,407,389,388,384,383,406,385,390,391,394,381,412,411,398,399,401,397,400,405,392,393,402,382,408,236,312,101,310,313,311,47,82,314,99,318,317,345,357,358,342,377,344,343,83,315,100,316,49,54,52,51,53,50,354,352,353,355,348,356,349,350,351,75,60,73,68,62,79,69,78,61,74,65,81,76,80,63,66,67,59,77,64,72,70,71]},"version":"5.4.2"}
|
1
|
+
{"program":{"fileNames":["../../../node_modules/typescript/lib/lib.es5.d.ts","../../../node_modules/typescript/lib/lib.es2015.d.ts","../../../node_modules/typescript/lib/lib.es2016.d.ts","../../../node_modules/typescript/lib/lib.es2017.d.ts","../../../node_modules/typescript/lib/lib.es2018.d.ts","../../../node_modules/typescript/lib/lib.es2019.d.ts","../../../node_modules/typescript/lib/lib.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.es2016.intl.d.ts","../../../node_modules/typescript/lib/lib.es2017.date.d.ts","../../../node_modules/typescript/lib/lib.es2017.object.d.ts","../../../node_modules/typescript/lib/lib.es2017.sharedmemory.d.ts","../../../node_modules/typescript/lib/lib.es2017.string.d.ts","../../../node_modules/typescript/lib/lib.es2017.intl.d.ts","../../../node_modules/typescript/lib/lib.es2017.typedarrays.d.ts","../../../node_modules/typescript/lib/lib.es2018.asyncgenerator.d.ts","../../../node_modules/typescript/lib/lib.es2018.asynciterable.d.ts","../../../node_modules/typescript/lib/lib.es2018.intl.d.ts","../../../node_modules/typescript/lib/lib.es2018.promise.d.ts","../../../node_modules/typescript/lib/lib.es2018.regexp.d.ts","../../../node_modules/typescript/lib/lib.es2019.array.d.ts","../../../node_modules/typescript/lib/lib.es2019.object.d.ts","../../../node_modules/typescript/lib/lib.es2019.string.d.ts","../../../node_modules/typescript/lib/lib.es2019.symbol.d.ts","../../../node_modules/typescript/lib/lib.es2019.intl.d.ts","../../../node_modules/typescript/lib/lib.es2020.bigint.d.ts","../../../node_modules/typescript/lib/lib.es2020.date.d.ts","../../../node_modules/typescript/lib/lib.es2020.promise.d.ts","../../../node_modules/typescript/lib/lib.es2020.sharedmemory.d.ts","../../../node_modules/typescript/lib/lib.es2020.string.d.ts","../../../node_modules/typescript/lib/lib.es2020.symbol.wellknown.d.ts","../../../node_modules/typescript/lib/lib.es2020.intl.d.ts","../../../node_modules/typescript/lib/lib.es2020.number.d.ts","../../../node_modules/typescript/lib/lib.esnext.intl.d.ts","../../../node_modules/typescript/lib/lib.decorators.d.ts","../../../node_modules/typescript/lib/lib.decorators.legacy.d.ts","../@types/global/index.d.ts","../../../node_modules/tslib/tslib.d.ts","../src/types/domain.ts","../src/types/user.ts","../src/types/role.ts","../src/types/privilege.ts","../src/types/types.ts","../src/types/index.ts","../../../node_modules/redux/index.d.ts","../../../node_modules/pwa-helpers/lazy-reducer-enhancer.d.ts","../../../node_modules/redux-thunk/es/types.d.ts","../../../node_modules/redux-thunk/es/index.d.ts","../../utils/dist/src/sleep.d.ts","../../utils/dist/src/async-lock.d.ts","../../utils/dist/src/file-drop-helper.d.ts","../../utils/dist/src/context-path.d.ts","../../utils/dist/src/os.d.ts","../../utils/dist/src/swipe-listener.d.ts","../../utils/dist/src/fullscreen.d.ts","../../utils/dist/src/parse-jwt.d.ts","../../utils/dist/src/password-pattern.d.ts","../../utils/dist/src/closest-element.d.ts","../../utils/dist/src/detect-overflow.d.ts","../../utils/dist/src/timecapsule/snapshot-taker.d.ts","../../utils/dist/src/timecapsule/timecapsule.d.ts","../../utils/dist/src/timecapsule/index.d.ts","../../utils/dist/src/clipboard.d.ts","../../utils/dist/src/format.d.ts","../../utils/dist/src/adjust-list-param.d.ts","../../utils/dist/src/is-unvalued.d.ts","../../utils/dist/src/stringify-bignum.d.ts","../../utils/dist/src/encode-form-params.d.ts","../../utils/dist/src/cookie.d.ts","../../utils/dist/src/number-parser.d.ts","../../utils/dist/src/index.d.ts","../src/actions/app.ts","../src/reducers/app.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/lodash-es/startcase.d.ts","../../../node_modules/pwa-helpers/metadata.d.ts","../src/actions/const.ts","../src/reducers/route.ts","../../graphql/dist/src/gql-context.d.ts","../../../node_modules/graphql/version.d.ts","../../../node_modules/graphql/jsutils/maybe.d.ts","../../../node_modules/graphql/language/source.d.ts","../../../node_modules/graphql/jsutils/objmap.d.ts","../../../node_modules/graphql/jsutils/path.d.ts","../../../node_modules/graphql/jsutils/promiseorvalue.d.ts","../../../node_modules/graphql/language/kinds.d.ts","../../../node_modules/graphql/language/tokenkind.d.ts","../../../node_modules/graphql/language/ast.d.ts","../../../node_modules/graphql/language/location.d.ts","../../../node_modules/graphql/error/graphqlerror.d.ts","../../../node_modules/graphql/language/directivelocation.d.ts","../../../node_modules/graphql/type/directives.d.ts","../../../node_modules/graphql/type/schema.d.ts","../../../node_modules/graphql/type/definition.d.ts","../../../node_modules/graphql/execution/execute.d.ts","../../../node_modules/graphql/graphql.d.ts","../../../node_modules/graphql/type/scalars.d.ts","../../../node_modules/graphql/type/introspection.d.ts","../../../node_modules/graphql/type/validate.d.ts","../../../node_modules/graphql/type/assertname.d.ts","../../../node_modules/graphql/type/index.d.ts","../../../node_modules/graphql/language/printlocation.d.ts","../../../node_modules/graphql/language/lexer.d.ts","../../../node_modules/graphql/language/parser.d.ts","../../../node_modules/graphql/language/printer.d.ts","../../../node_modules/graphql/language/visitor.d.ts","../../../node_modules/graphql/language/predicates.d.ts","../../../node_modules/graphql/language/index.d.ts","../../../node_modules/graphql/execution/subscribe.d.ts","../../../node_modules/graphql/execution/values.d.ts","../../../node_modules/graphql/execution/index.d.ts","../../../node_modules/graphql/subscription/index.d.ts","../../../node_modules/graphql/utilities/typeinfo.d.ts","../../../node_modules/graphql/validation/validationcontext.d.ts","../../../node_modules/graphql/validation/validate.d.ts","../../../node_modules/graphql/validation/specifiedrules.d.ts","../../../node_modules/graphql/validation/rules/executabledefinitionsrule.d.ts","../../../node_modules/graphql/validation/rules/fieldsoncorrecttyperule.d.ts","../../../node_modules/graphql/validation/rules/fragmentsoncompositetypesrule.d.ts","../../../node_modules/graphql/validation/rules/knownargumentnamesrule.d.ts","../../../node_modules/graphql/validation/rules/knowndirectivesrule.d.ts","../../../node_modules/graphql/validation/rules/knownfragmentnamesrule.d.ts","../../../node_modules/graphql/validation/rules/knowntypenamesrule.d.ts","../../../node_modules/graphql/validation/rules/loneanonymousoperationrule.d.ts","../../../node_modules/graphql/validation/rules/nofragmentcyclesrule.d.ts","../../../node_modules/graphql/validation/rules/noundefinedvariablesrule.d.ts","../../../node_modules/graphql/validation/rules/nounusedfragmentsrule.d.ts","../../../node_modules/graphql/validation/rules/nounusedvariablesrule.d.ts","../../../node_modules/graphql/validation/rules/overlappingfieldscanbemergedrule.d.ts","../../../node_modules/graphql/validation/rules/possiblefragmentspreadsrule.d.ts","../../../node_modules/graphql/validation/rules/providedrequiredargumentsrule.d.ts","../../../node_modules/graphql/validation/rules/scalarleafsrule.d.ts","../../../node_modules/graphql/validation/rules/singlefieldsubscriptionsrule.d.ts","../../../node_modules/graphql/validation/rules/uniqueargumentnamesrule.d.ts","../../../node_modules/graphql/validation/rules/uniquedirectivesperlocationrule.d.ts","../../../node_modules/graphql/validation/rules/uniquefragmentnamesrule.d.ts","../../../node_modules/graphql/validation/rules/uniqueinputfieldnamesrule.d.ts","../../../node_modules/graphql/validation/rules/uniqueoperationnamesrule.d.ts","../../../node_modules/graphql/validation/rules/uniquevariablenamesrule.d.ts","../../../node_modules/graphql/validation/rules/valuesofcorrecttyperule.d.ts","../../../node_modules/graphql/validation/rules/variablesareinputtypesrule.d.ts","../../../node_modules/graphql/validation/rules/variablesinallowedpositionrule.d.ts","../../../node_modules/graphql/validation/rules/loneschemadefinitionrule.d.ts","../../../node_modules/graphql/validation/rules/uniqueoperationtypesrule.d.ts","../../../node_modules/graphql/validation/rules/uniquetypenamesrule.d.ts","../../../node_modules/graphql/validation/rules/uniqueenumvaluenamesrule.d.ts","../../../node_modules/graphql/validation/rules/uniquefielddefinitionnamesrule.d.ts","../../../node_modules/graphql/validation/rules/uniqueargumentdefinitionnamesrule.d.ts","../../../node_modules/graphql/validation/rules/uniquedirectivenamesrule.d.ts","../../../node_modules/graphql/validation/rules/possibletypeextensionsrule.d.ts","../../../node_modules/graphql/validation/rules/custom/nodeprecatedcustomrule.d.ts","../../../node_modules/graphql/validation/rules/custom/noschemaintrospectioncustomrule.d.ts","../../../node_modules/graphql/validation/index.d.ts","../../../node_modules/graphql/error/syntaxerror.d.ts","../../../node_modules/graphql/error/locatederror.d.ts","../../../node_modules/graphql/error/index.d.ts","../../../node_modules/graphql/utilities/getintrospectionquery.d.ts","../../../node_modules/graphql/utilities/getoperationast.d.ts","../../../node_modules/graphql/utilities/getoperationroottype.d.ts","../../../node_modules/graphql/utilities/introspectionfromschema.d.ts","../../../node_modules/graphql/utilities/buildclientschema.d.ts","../../../node_modules/graphql/utilities/buildastschema.d.ts","../../../node_modules/graphql/utilities/extendschema.d.ts","../../../node_modules/graphql/utilities/lexicographicsortschema.d.ts","../../../node_modules/graphql/utilities/printschema.d.ts","../../../node_modules/graphql/utilities/typefromast.d.ts","../../../node_modules/graphql/utilities/valuefromast.d.ts","../../../node_modules/graphql/utilities/valuefromastuntyped.d.ts","../../../node_modules/graphql/utilities/astfromvalue.d.ts","../../../node_modules/graphql/utilities/coerceinputvalue.d.ts","../../../node_modules/graphql/utilities/concatast.d.ts","../../../node_modules/graphql/utilities/separateoperations.d.ts","../../../node_modules/graphql/utilities/stripignoredcharacters.d.ts","../../../node_modules/graphql/utilities/typecomparators.d.ts","../../../node_modules/graphql/utilities/assertvalidname.d.ts","../../../node_modules/graphql/utilities/findbreakingchanges.d.ts","../../../node_modules/graphql/utilities/typedquerydocumentnode.d.ts","../../../node_modules/graphql/utilities/index.d.ts","../../../node_modules/graphql/index.d.ts","../../../node_modules/ts-invariant/lib/invariant.d.ts","../../../node_modules/@apollo/client/invarianterrorcodes.d.ts","../../../node_modules/@apollo/client/utilities/globals/invariantwrappers.d.ts","../../../node_modules/@apollo/client/utilities/globals/maybe.d.ts","../../../node_modules/@apollo/client/utilities/globals/global.d.ts","../../../node_modules/@apollo/client/utilities/globals/index.d.ts","../../../node_modules/@apollo/client/utilities/graphql/directives.d.ts","../../../node_modules/@apollo/client/utilities/graphql/documenttransform.d.ts","../../../node_modules/@apollo/client/utilities/graphql/fragments.d.ts","../../../node_modules/@apollo/client/utilities/graphql/getfromast.d.ts","../../../node_modules/@apollo/client/utilities/graphql/print.d.ts","../../../node_modules/@apollo/client/utilities/graphql/storeutils.d.ts","../../../node_modules/@apollo/client/utilities/graphql/transform.d.ts","../../../node_modules/@apollo/client/utilities/graphql/operations.d.ts","../../../node_modules/@graphql-typed-document-node/core/typings/index.d.ts","../../../node_modules/@apollo/client/node_modules/@wry/trie/lib/index.d.ts","../../../node_modules/@apollo/client/cache/core/types/cache.d.ts","../../../node_modules/@apollo/client/cache/inmemory/entitystore.d.ts","../../../node_modules/@apollo/client/cache/inmemory/fragmentregistry.d.ts","../../../node_modules/@apollo/client/cache/inmemory/types.d.ts","../../../node_modules/@apollo/client/cache/inmemory/fixpolyfills.d.ts","../../../node_modules/@apollo/client/cache/inmemory/reactivevars.d.ts","../../../node_modules/@apollo/client/utilities/caching/getmemoryinternals.d.ts","../../../node_modules/@apollo/client/cache/inmemory/inmemorycache.d.ts","../../../node_modules/@apollo/client/cache/inmemory/object-canon.d.ts","../../../node_modules/@apollo/client/cache/inmemory/readfromstore.d.ts","../../../node_modules/@apollo/client/cache/inmemory/writetostore.d.ts","../../../node_modules/@apollo/client/cache/inmemory/policies.d.ts","../../../node_modules/@apollo/client/cache/core/types/common.d.ts","../../../node_modules/@apollo/client/cache/core/types/dataproxy.d.ts","../../../node_modules/@apollo/client/cache/core/cache.d.ts","../../../node_modules/@apollo/client/cache/inmemory/helpers.d.ts","../../../node_modules/@apollo/client/cache/index.d.ts","../../../node_modules/@apollo/client/utilities/policies/pagination.d.ts","../../../node_modules/zen-observable-ts/module.d.ts","../../../node_modules/symbol-observable/index.d.ts","../../../node_modules/@apollo/client/utilities/observables/observable.d.ts","../../../node_modules/@apollo/client/utilities/promises/decoration.d.ts","../../../node_modules/@apollo/client/utilities/common/objects.d.ts","../../../node_modules/@apollo/client/utilities/common/mergedeep.d.ts","../../../node_modules/@apollo/client/utilities/common/clonedeep.d.ts","../../../node_modules/@apollo/client/utilities/common/maybedeepfreeze.d.ts","../../../node_modules/@apollo/client/utilities/observables/iteration.d.ts","../../../node_modules/@apollo/client/utilities/observables/asyncmap.d.ts","../../../node_modules/@apollo/client/utilities/observables/concast.d.ts","../../../node_modules/@apollo/client/utilities/observables/subclassing.d.ts","../../../node_modules/@apollo/client/utilities/common/arrays.d.ts","../../../node_modules/@apollo/client/utilities/common/errorhandling.d.ts","../../../node_modules/@apollo/client/utilities/common/canuse.d.ts","../../../node_modules/@apollo/client/utilities/common/compact.d.ts","../../../node_modules/@apollo/client/utilities/common/makeuniqueid.d.ts","../../../node_modules/@apollo/client/utilities/common/stringifyfordisplay.d.ts","../../../node_modules/@apollo/client/utilities/common/mergeoptions.d.ts","../../../node_modules/@apollo/client/utilities/common/incrementalresult.d.ts","../../../node_modules/@apollo/client/utilities/common/canonicalstringify.d.ts","../../../node_modules/@apollo/client/utilities/types/primitive.d.ts","../../../node_modules/@apollo/client/utilities/types/deepomit.d.ts","../../../node_modules/@apollo/client/utilities/common/omitdeep.d.ts","../../../node_modules/@apollo/client/utilities/common/striptypename.d.ts","../../../node_modules/@apollo/client/utilities/types/isstrictlyany.d.ts","../../../node_modules/@apollo/client/utilities/types/deeppartial.d.ts","../../../node_modules/@apollo/client/utilities/types/onlyrequiredproperties.d.ts","../../../node_modules/@wry/caches/lib/common.d.ts","../../../node_modules/@wry/caches/lib/strong.d.ts","../../../node_modules/@wry/caches/lib/weak.d.ts","../../../node_modules/@wry/caches/lib/index.d.ts","../../../node_modules/@apollo/client/utilities/caching/caches.d.ts","../../../node_modules/@apollo/client/utilities/caching/sizes.d.ts","../../../node_modules/@apollo/client/utilities/caching/index.d.ts","../../../node_modules/@apollo/client/utilities/index.d.ts","../../../node_modules/@apollo/client/link/core/types.d.ts","../../../node_modules/@apollo/client/link/core/apollolink.d.ts","../../../node_modules/@apollo/client/link/core/empty.d.ts","../../../node_modules/@apollo/client/link/core/from.d.ts","../../../node_modules/@apollo/client/link/core/split.d.ts","../../../node_modules/@apollo/client/link/core/concat.d.ts","../../../node_modules/@apollo/client/link/core/execute.d.ts","../../../node_modules/@apollo/client/link/core/index.d.ts","../../../node_modules/@apollo/client/link/http/parseandcheckhttpresponse.d.ts","../../../node_modules/@apollo/client/link/http/serializefetchparameter.d.ts","../../../node_modules/@apollo/client/link/http/selecthttpoptionsandbody.d.ts","../../../node_modules/@apollo/client/link/http/checkfetcher.d.ts","../../../node_modules/@apollo/client/link/http/createsignalifsupported.d.ts","../../../node_modules/@apollo/client/link/http/selecturi.d.ts","../../../node_modules/@apollo/client/link/http/createhttplink.d.ts","../../../node_modules/@apollo/client/link/http/httplink.d.ts","../../../node_modules/@apollo/client/link/http/rewriteuriforget.d.ts","../../../node_modules/@apollo/client/link/http/index.d.ts","../../../node_modules/@apollo/client/core/networkstatus.d.ts","../../../node_modules/@apollo/client/link/utils/fromerror.d.ts","../../../node_modules/@apollo/client/link/utils/topromise.d.ts","../../../node_modules/@apollo/client/link/utils/frompromise.d.ts","../../../node_modules/@apollo/client/link/utils/throwservererror.d.ts","../../../node_modules/@apollo/client/link/utils/validateoperation.d.ts","../../../node_modules/@apollo/client/link/utils/createoperation.d.ts","../../../node_modules/@apollo/client/link/utils/transformoperation.d.ts","../../../node_modules/@apollo/client/link/utils/filteroperationvariables.d.ts","../../../node_modules/@apollo/client/link/utils/index.d.ts","../../../node_modules/@apollo/client/errors/index.d.ts","../../../node_modules/@apollo/client/core/queryinfo.d.ts","../../../node_modules/@apollo/client/core/localstate.d.ts","../../../node_modules/@apollo/client/core/types.d.ts","../../../node_modules/@apollo/client/core/watchqueryoptions.d.ts","../../../node_modules/@apollo/client/core/querymanager.d.ts","../../../node_modules/@apollo/client/core/observablequery.d.ts","../../../node_modules/@apollo/client/core/apolloclient.d.ts","../../../node_modules/graphql-tag/lib/index.d.ts","../../../node_modules/@apollo/client/core/index.d.ts","../../graphql/dist/src/graphql-client.d.ts","../../graphql/dist/src/json-to-grqphql-query.d.ts","../../graphql/dist/src/active-request-counter-link.d.ts","../../graphql/dist/src/index.d.ts","../src/actions/busy.ts","../src/reducers/busy.ts","../src/store.ts","../src/actions/route.ts","../src/actions/index.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/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/@types/lodash-es/isequal.d.ts","../src/app/pages/page-view.ts","../src/object-store.ts","../src/index.ts","../src/app/app-style.ts","../../../node_modules/pwa-helpers/connect-mixin.d.ts","../../../node_modules/pwa-helpers/router.d.ts","../../styles/dist/src/headroom-styles.d.ts","../../styles/dist/src/scrollbar-styles.d.ts","../../styles/dist/src/spinner-styles.d.ts","../../styles/dist/src/tooltip-styles.d.ts","../../styles/dist/src/common-button-styles.d.ts","../../styles/dist/src/common-grist-styles.d.ts","../../styles/dist/src/button-container-styles.d.ts","../../styles/dist/src/common-header-styles.d.ts","../../styles/dist/src/index.d.ts","../src/app/app.ts","../src/app/pages/page-404.ts","../../../node_modules/@material/base/foundation.d.ts","../../../node_modules/@material/mwc-base/utils.d.ts","../../../node_modules/@material/base/types.d.ts","../../../node_modules/@material/mwc-base/base-element.d.ts","../../../node_modules/@material/ripple/types.d.ts","../../../node_modules/@material/ripple/adapter.d.ts","../../../node_modules/@material/ripple/foundation.d.ts","../../../node_modules/@material/mwc-ripple/mwc-ripple-base.d.ts","../../../node_modules/@material/mwc-ripple/mwc-ripple.d.ts","../../../node_modules/@material/mwc-base/aria-property.d.ts","../../../node_modules/@material/mwc-ripple/ripple-handlers.d.ts","../../../node_modules/@material/mwc-icon-button/mwc-icon-button-base.d.ts","../../../node_modules/@material/mwc-icon-button/mwc-icon-button.d.ts","../../../node_modules/@material/mwc-icon/mwc-icon.d.ts","../../../node_modules/lit/node_modules/lit-html/directives/class-map.d.ts","../../../node_modules/lit/directives/class-map.d.ts","../../../node_modules/@material/mwc-button/mwc-button-base.d.ts","../../../node_modules/@material/mwc-button/mwc-button.d.ts","../src/entries/public/home.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/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/@types/mocha/index.d.ts"],"fileInfos":[{"version":"824cb491a40f7e8fdeb56f1df5edf91b23f3e3ee6b4cde84d4a99be32338faee","affectsGlobalScope":true},"45b7ab580deca34ae9729e97c13cfd999df04416a79116c3bfb483804f85ded4","3facaf05f0c5fc569c5649dd359892c98a85557e3e0c847964caeb67076f4d75","9a68c0c07ae2fa71b44384a839b7b8d81662a236d4b9ac30916718f7510b1b2d","5e1c4c362065a6b95ff952c0eab010f04dcd2c3494e813b493ecfd4fcb9fc0d8","68d73b4a11549f9c0b7d352d10e91e5dca8faa3322bfb77b661839c42b1ddec7","5efce4fc3c29ea84e8928f97adec086e3dc876365e0982cc8479a07954a3efd4",{"version":"87d693a4920d794a73384b3c779cadcb8548ac6945aa7a925832fe2418c9527a","affectsGlobalScope":true},{"version":"138fb588d26538783b78d1e3b2c2cc12d55840b97bf5e08bca7f7a174fbe2f17","affectsGlobalScope":true},{"version":"dc2df20b1bcdc8c2d34af4926e2c3ab15ffe1160a63e58b7e09833f616efff44","affectsGlobalScope":true},{"version":"4443e68b35f3332f753eacc66a04ac1d2053b8b035a0e0ac1d455392b5e243b3","affectsGlobalScope":true},{"version":"bc47685641087c015972a3f072480889f0d6c65515f12bd85222f49a98952ed7","affectsGlobalScope":true},{"version":"0dc1e7ceda9b8b9b455c3a2d67b0412feab00bd2f66656cd8850e8831b08b537","affectsGlobalScope":true},{"version":"ce691fb9e5c64efb9547083e4a34091bcbe5bdb41027e310ebba8f7d96a98671","affectsGlobalScope":true},{"version":"8d697a2a929a5fcb38b7a65594020fcef05ec1630804a33748829c5ff53640d0","affectsGlobalScope":true},{"version":"4ff2a353abf8a80ee399af572debb8faab2d33ad38c4b4474cff7f26e7653b8d","affectsGlobalScope":true},{"version":"93495ff27b8746f55d19fcbcdbaccc99fd95f19d057aed1bd2c0cafe1335fbf0","affectsGlobalScope":true},{"version":"6fc23bb8c3965964be8c597310a2878b53a0306edb71d4b5a4dfe760186bcc01","affectsGlobalScope":true},{"version":"ea011c76963fb15ef1cdd7ce6a6808b46322c527de2077b6cfdf23ae6f5f9ec7","affectsGlobalScope":true},{"version":"38f0219c9e23c915ef9790ab1d680440d95419ad264816fa15009a8851e79119","affectsGlobalScope":true},{"version":"bb42a7797d996412ecdc5b2787720de477103a0b2e53058569069a0e2bae6c7e","affectsGlobalScope":true},{"version":"4738f2420687fd85629c9efb470793bb753709c2379e5f85bc1815d875ceadcd","affectsGlobalScope":true},{"version":"2f11ff796926e0832f9ae148008138ad583bd181899ab7dd768a2666700b1893","affectsGlobalScope":true},{"version":"4de680d5bb41c17f7f68e0419412ca23c98d5749dcaaea1896172f06435891fc","affectsGlobalScope":true},{"version":"9fc46429fbe091ac5ad2608c657201eb68b6f1b8341bd6d670047d32ed0a88fa","affectsGlobalScope":true},{"version":"61c37c1de663cf4171e1192466e52c7a382afa58da01b1dc75058f032ddf0839","affectsGlobalScope":true},{"version":"b541a838a13f9234aba650a825393ffc2292dc0fc87681a5d81ef0c96d281e7a","affectsGlobalScope":true},{"version":"b20fe0eca9a4e405f1a5ae24a2b3290b37cf7f21eba6cbe4fc3fab979237d4f3","affectsGlobalScope":true},{"version":"811ec78f7fefcabbda4bfa93b3eb67d9ae166ef95f9bff989d964061cbf81a0c","affectsGlobalScope":true},{"version":"717937616a17072082152a2ef351cb51f98802fb4b2fdabd32399843875974ca","affectsGlobalScope":true},{"version":"d7e7d9b7b50e5f22c915b525acc5a49a7a6584cf8f62d0569e557c5cfc4b2ac2","affectsGlobalScope":true},{"version":"71c37f4c9543f31dfced6c7840e068c5a5aacb7b89111a4364b1d5276b852557","affectsGlobalScope":true},{"version":"576711e016cf4f1804676043e6a0a5414252560eb57de9faceee34d79798c850","affectsGlobalScope":true},{"version":"89c1b1281ba7b8a96efc676b11b264de7a8374c5ea1e6617f11880a13fc56dc6","affectsGlobalScope":true},{"version":"49ed889be54031e1044af0ad2c603d627b8bda8b50c1a68435fe85583901d072","affectsGlobalScope":true},{"version":"e93d098658ce4f0c8a0779e6cab91d0259efb88a318137f686ad76f8410ca270","affectsGlobalScope":true},{"version":"063600664504610fe3e99b717a1223f8b1900087fab0b4cad1496a114744f8df","affectsGlobalScope":true},{"version":"934019d7e3c81950f9a8426d093458b65d5aff2c7c1511233c0fd5b941e608ab","affectsGlobalScope":true},{"version":"bf14a426dbbf1022d11bd08d6b8e709a2e9d246f0c6c1032f3b2edb9a902adbe","affectsGlobalScope":true},{"version":"5e07ed3809d48205d5b985642a59f2eba47c402374a7cf8006b686f79efadcbd","affectsGlobalScope":true},{"version":"2b72d528b2e2fe3c57889ca7baef5e13a56c957b946906d03767c642f386bbc3","affectsGlobalScope":true},{"version":"8073890e29d2f46fdbc19b8d6d2eb9ea58db9a2052f8640af20baff9afbc8640","affectsGlobalScope":true},{"version":"368af93f74c9c932edd84c58883e736c9e3d53cec1fe24c0b0ff451f529ceab1","affectsGlobalScope":true},{"version":"13f6e6380c78e15e140243dc4be2fa546c287c6d61f4729bc2dd7cf449605471","affectsGlobalScope":true},{"version":"33358442698bb565130f52ba79bfd3d4d484ac85fe33f3cb1759c54d18201393","affectsGlobalScope":true},{"version":"782dec38049b92d4e85c1585fbea5474a219c6984a35b004963b00beb1aab538","affectsGlobalScope":true},"439ece86b8b4d4af78af97e74d373ae1cd657c7169f4dee55038648217ca9fcf","7a1971efcba559ea9002ada4c4e3c925004fb67a755300d53b5edf9399354900",{"version":"99b772888fd71e82f91719a3a92aaa4fc69b2116caf91bfb64dd5edd77e9f635","signature":"4d4cf93a6b4c81851ad759e4569b6feb7a701e80b13a6f9d8d9c6012bbb86bd6"},{"version":"3c95b84d9e94d627563fb5831f395e301262c97d9c1698eea3fee971df6cb5ef","signature":"2e6035af8f3e43bf95e4983329c8277d66f9b271106af27b99a85d1c1b9daf4a"},{"version":"ceb0826ca35e1d2593e91abca066a1fefbbc6c04cea71a7c85ee9c28c0949fad","signature":"774308610e8d4a9954cd93840f99decbf340accfe3ad7365547950ede8162c92"},{"version":"e4150841614359d71012379b3fff85faeb01ebb5d5e46f5dfb4752f7bcd3fbfa","signature":"36c15dd26c66c97b9df26ce34baacdb13fc760c5b9a2d789dcc317d27b189257"},{"version":"59fe9df072abeac18b929473e0b8e7f61639bdea15303e57575b0c4b4adcd104","signature":"3d7c0b593a29d717b2b2ba3f03f819c3c48bf9e250d79c4a31860af80f177e8c"},{"version":"d4f20ff8892b737b1c9634f1a3c4cb8f9e71818f006d8a82b9e46fab359b7158","signature":"f228d440342f5d0933f5db093aafab2f07de24a427b4488ccfae27b7457d7666"},{"version":"fd624f7d7b264922476685870f08c5e1c6d6a0f05dee2429a9747b41f6b699d4","affectsGlobalScope":true},"701978f3975f96e76e3ffc2e1762e3a97e3d323812049fb6fdfd559579b89708","d50a158fc581be7b1c51253ad33cb29c0a8ce3c42ca38775ffadf104c36376d0","1f2cdbf59d0b7933678a64ac26ae2818c48ff9ebf93249dde775dc3e173e16bf","05cfea0488751015b0b85911b6cdcde7c6cebdd9b8cada1ec0b5c1736357a552","f5800813e5c0d6c27d73b76f2c99f39bdfd6229d03553a8a9ae485f6aeb94425","4d5e201faa4bceca840b652dfc10795170c061f498e19429a06e056490aa69aa","6cf5098c7bf0c14358b656edd6103df1ae9f8c6a94abca9df8650c2b520d8096","ee11b7061adce4a1c0370620949a57851215b152a5632d2faf1aedbc90ad0520","f8c86fcbfb0a1e69a0ed28d3249cc33c312fa23a39c17e15cbbcc539bdcdc303","85e0f00b17c3ae8cd88438c754a2c43f4a9361e685b97a70e52e33afbf62488f","39d2d450df6efbf38585fd316f18922c8ac3fdfd4c3fc412d0bee34e2bc86378","4dcdfe4c18557fc02d8cb22cb422cb98bfeba8158aaf18cc66f9d99293ebe2c8","7efea6f2270a14f1b0d5f472f2a6fcb0a97beb677299e10b073cc2abdabeef51","385679adcfaaa1b561983bd5ae140b4db1e360a534f9685ee87f5019540c9ce8","3df6a0e8bdb7199dff6cf75c0250316f06b87c982bb47460960a1c5a793f5ca6","b3238dd00b7796eda3f507726e9882a55ff7043b249be8309abed22cfb7d7463","f499d7fb533781939c7a5ab778ac6e6c8ffe65601b1a61a843c36ee0013f05b6","7fcb76be88d4a64f6318b5a24b57021d7463f24485a3d1a931bf664c7e437534","940995980343a2bfebf515240e5eec487f845002a089bee0d18656ebf61d59aa","098ec42cd54c2b3354584c4fe8ad143040114891dde762741522b62788772f0d","1e73d612f806d183d6c16c4135c16c1a14dd827c1a67097e72ab1841852bfcb9","30046b0787c577061d43e498b507da8a249fbc58bbe33a09a7bef777e1d5fb67","cb2de9f1d7d286191834eeb331d23dc69eeb322745114ddad1695e4c575b5feb","dc2461db89dde29306a73a2926e2cf874e981ef034412f4d1e3d06d45bb3127e","13a5d8ec52111b64ed8fdcb47ab664b60085733c46c44aede33fd2926840ac31","ad7ab3cf33ac3e8767de4e363bb439e3095fe2dba7f64255c72d6beccf96aea0",{"version":"7b48718e216c87c95034533cb162482b9e7d8135b830089e31796aa192b45e29","signature":"641089f0b8094ef74b9d4b3364d5dec1592d5e3b8a51c1ba491bc8872049e79a"},{"version":"729341547ead809bf403e6ccbb48380cbe67177018319cb8394a57f27c844217","signature":"ab30a63393bf3e782c671a9510ec544a851b8de4fb5edc69909a53a622440fad"},"b8442e9db28157344d1bc5d8a5a256f1692de213f0c0ddeb84359834015a008c","458111fc89d11d2151277c822dfdc1a28fa5b6b2493cf942e37d4cd0a6ee5f22","da2b6356b84a40111aaecb18304ea4e4fcb43d70efb1c13ca7d7a906445ee0d3","187119ff4f9553676a884e296089e131e8cc01691c546273b1d0089c3533ce42","febf0b2de54781102b00f61653b21377390a048fbf5262718c91860d11ff34a6","6f294731b495c65ecf46a5694f0082954b961cf05463bea823f8014098eaffa0","0aaef8cded245bf5036a7a40b65622dd6c4da71f7a35343112edbe112b348a1e","00baffbe8a2f2e4875367479489b5d43b5fc1429ecb4a4cc98cfc3009095f52a","68a0d0c508e1b6d8d23a519a8a0a3303dc5baa4849ca049f21e5bad41945e3fc","3c92b6dfd43cc1c2485d9eba5ff0b74a19bb8725b692773ef1d66dac48cda4bd","b03afe4bec768ae333582915146f48b161e567a81b5ebc31c4d78af089770ac9","df996e25faa505f85aeb294d15ebe61b399cf1d1e49959cdfaf2cc0815c203f9","4f6a12044ee6f458db11964153830abbc499e73d065c51c329ec97407f4b13dd","4d180dd4d0785f2cd140bc069d56285d0121d95b53e4348feb4f62db2d7035d3","66e64ed8de436d3ceabe6c3f59dd0a39a5237991bccfda5751c78d129e436f68",{"version":"93621eb03f607927957920ba4eef6f8b6fb0898ed79e848cc533344907b8f1eb","signature":"7af29b0589483f7bb8a99405ddb849f34bc053146184561ed4179e02f5fe4d0f"},{"version":"aeb7e98e44ccf93b887e377de3182b9382e8b0f8047eae1f40eca0985486280a","signature":"7611542379a72f7b8a92110271908b9d1913d72a581e14a779491c9083dc33db"},"7d54d48a4365f355a7759b1e29f43dea9163a9445d3f26e1234dea0af3e6a16d","78647004e18e4c16b8a2e8345fca9267573d1c5a29e11ddfee71858fd077ef6e","0804044cd0488cb7212ddbc1d0f8e1a5bd32970335dbfc613052304a1b0318f9","b725acb041d2a18fde8f46c48a1408418489c4aa222f559b1ef47bf267cb4be0","85084ae98c1d319e38ef99b1216d3372a9afd7a368022c01c3351b339d52cb58","898ec2410fae172e0a9416448b0838bed286322a5c0c8959e8e39400cd4c5697","692345a43bac37c507fa7065c554258435ab821bbe4fb44b513a70063e932b45","cddd50d7bd9d7fddda91a576db9f61655d1a55e2d870f154485812f6e39d4c15","0539583b089247b73a21eb4a5f7e43208a129df6300d6b829dc1039b79b6c8c4","7aba43bc7764fcd02232382c780c3e99ef8dbfdac3c58605a0b3781fab3d8044","522edc786ed48304671b935cf7d3ed63acc6636ab9888c6e130b97a6aea92b46","1e1ed5600d80406a10428e349af8b6f09949cd5054043ea8588903e8f9e8d705","de21641eb8edcbc08dd0db4ee70eea907cd07fe72267340b5571c92647f10a77","a53039ba614075aeb702271701981babbd0d4f4dcbf319ddee4c08fb8196cc7a","6758f7b72fa4d38f4f4b865516d3d031795c947a45cc24f2cfba43c91446d678","da679a5bb46df3c6d84f637f09e6689d6c2d07e907ea16adc161e4529a4954d6","dc1a664c33f6ddd2791569999db2b3a476e52c5eeb5474768ffa542b136d78c0","bdf7abbd7df4f29b3e0728684c790e80590b69d92ed8d3bf8e66d4bd713941fe","8decb32fc5d44b403b46c3bb4741188df4fbc3c66d6c65669000c5c9cd506523","4beaf337ee755b8c6115ff8a17e22ceab986b588722a52c776b8834af64e0f38","c26dd198f2793bbdcc55103823a2767d6223a7fdb92486c18b86deaf63208354","93551b302a808f226f0846ad8012354f2d53d6dedc33b540d6ca69836781a574","f0ff1c010d5046af3874d3b4df746c6f3921e4b3fbdec61dee0792fc0cb36ccd","778b684ebc6b006fcffeab77d25b34bf6e400100e0ec0c76056e165c6399ab05","463851fa993af55fb0296e0d6afa27407ef91bf6917098dd665aba1200d250c7","67c6de7a9c490bda48eb401bea93904b6bbfc60e47427e887e6a3da6195540be","be8f369f8d7e887eab87a3e4e41f1afcf61bf06056801383152aa83bda1f6a72","352bfb5f3a9d8a9c2464ad2dc0b2dc56a8212650a541fb550739c286dd341de1","a5aae636d9afdacb22d98e4242487436d8296e5a345348325ccc68481fe1b690","d007c769e33e72e51286b816d82cd7c3a280cba714e7f958691155068bd7150a","764150c107451d2fd5b6de305cff0a9dcecf799e08e6f14b5a6748724db46d8a","b04cf223c338c09285010f5308b980ee6d8bfa203824ed2537516f15e92e8c43","4b387f208d1e468193a45a51005b1ed5b666010fc22a15dc1baf4234078b636e","70441eda704feffd132be0c1541f2c7f6bbaafce25cb9b54b181e26af3068e79","d1addb12403afea87a1603121396261a45190886c486c88e1a5d456be17c2049","15d43873064dc8787ca1e4c39149be59183c404d48a8cd5a0ea019bb5fdf8d58","ea4b5d319625203a5a96897b057fddf6017d0f9a902c16060466fe69cc007243","3d06897c536b4aad2b2b015d529270439f2cadd89ca2ff7bd8898ee84898dd88","ab01d8fcb89fae8eda22075153053fefac69f7d9571a389632099e7a53f1922d","bac0ec1f4c61abc7c54ccebb0f739acb0cdbc22b1b19c91854dc142019492961","566b0806f9016fa067b7fecf3951fcc295c30127e5141223393bde16ad04aa4a","8e801abfeda45b1b93e599750a0a8d25074d30d4cc01e3563e56c0ff70edeb68","902997f91b09620835afd88e292eb217fbd55d01706b82b9a014ff408f357559","a3727a926e697919fb59407938bd8573964b3bf543413b685996a47df5645863","83f36c0792d352f641a213ee547d21ea02084a148355aa26b6ef82c4f61c1280","dce7d69c17a438554c11bbf930dec2bee5b62184c0494d74da336daee088ab69","1e8f2cda9735002728017933c54ccea7ebee94b9c68a59a4aac1c9a58aa7da7d","e327a2b222cf9e5c93d7c1ed6468ece2e7b9d738e5da04897f1a99f49d42cca1","65165246b59654ec4e1501dd87927a0ef95d57359709e00e95d1154ad8443bc7","f1bacba19e2fa2eb26c499e36b5ab93d6764f2dba44be3816f12d2bc9ac9a35b","bce38da5fd851520d0cb4d1e6c3c04968cec2faa674ed321c118e97e59872edc","3398f46037f21fb6c33560ceca257259bd6d2ea03737179b61ea9e17cbe07455","6e14fc6c27cb2cb203fe1727bb3a923588f0be8c2604673ad9f879182548daca","12b9bcf8395d33837f301a8e6d545a24dfff80db9e32f8e8e6cf4b11671bb442","04295cc38689e32a4ea194c954ea6604e6afb6f1c102104f74737cb8cf744422","7418f434c136734b23f634e711cf44613ca4c74e63a5ae7429acaee46c7024c8","27d40290b7caba1c04468f2b53cf7112f247f8acdd7c20589cd7decf9f762ad0","2608b8b83639baf3f07316df29202eead703102f1a7e32f74a1b18cf1eee54b5","c93657567a39bd589effe89e863aaadbc339675fca6805ae4d97eafbcce0a05d","909d5db5b3b19f03dfb4a8f1d00cf41d2f679857c28775faf1f10794cbbe9db9","e4504bffce13574bab83ab900b843590d85a0fd38faab7eff83d84ec55de4aff","8ab707f3c833fc1e8a51106b8746c8bc0ce125083ea6200ad881625ae35ce11e","730ddc2386276ac66312edbcc60853fedbb1608a99cb0b1ff82ebf26911dba1f","c1b3fa201aa037110c43c05ea97800eb66fea3f2ecc5f07c6fd47f2b6b5b21d2","636b44188dc6eb326fd566085e6c1c6035b71f839d62c343c299a35888c6f0a9","3b2105bf9823b53c269cabb38011c5a71360c8daabc618fec03102c9514d230c","f96e63eb56e736304c3aef6c745b9fe93db235ddd1fec10b45319c479de1a432","acb4f3cee79f38ceba975e7ee3114eb5cd96ccc02742b0a4c7478b4619f87cd6","cfc85d17c1493b6217bad9052a8edc332d1fde81a919228edab33c14aa762939","eebda441c4486c26de7a8a7343ebbc361d2b0109abff34c2471e45e34a93020a","727b4b8eb62dd98fa4e3a0937172c1a0041eb715b9071c3de96dad597deddcab","708e2a347a1b9868ccdb48f3e43647c6eccec47b8591b220afcafc9e7eeb3784","6bb598e2d45a170f302f113a5b68e518c8d7661ae3b59baf076be9120afa4813","c28e058db8fed2c81d324546f53d2a7aaefff380cbe70f924276dbad89acd7d1","ebe8f07bb402102c5a764b0f8e34bd92d6f50bd7ac61a2452e76b80e02f9bb4b","826a98cb79deab45ccc4e5a8b90fa64510b2169781a7cbb83c4a0a8867f4cc58","618189f94a473b7fdc5cb5ba8b94d146a0d58834cd77cd24d56995f41643ccd5","5baadaca408128671536b3cb77fea44330e169ada70ce50b902c8d992fe64cf1","a4cc469f3561ea3edc57e091f4c9dcaf7485a70d3836be23a6945db46f0acd0b","91b0965538a5eaafa8c09cf9f62b46d6125aa1b3c0e0629dce871f5f41413f90","2978e33a00b4b5fb98337c5e473ab7337030b2f69d1480eccef0290814af0d51","ba71e9777cb5460e3278f0934fd6354041cb25853feca542312807ce1f18e611","608dbaf8c8bb64f4024013e73d7107c16dba4664999a8c6e58f3e71545e48f66","61937cefd7f4d6fa76013d33d5a3c5f9b0fc382e90da34790764a0d17d6277fb","af7db74826f455bfef6a55a188eb6659fd85fdc16f720a89a515c48724ee4c42","d6ce98a960f1b99a72de771fb0ba773cb202c656b8483f22d47d01d68f59ea86","2a47dc4a362214f31689870f809c7d62024afb4297a37b22cb86f679c4d04088","42d907ac511459d7c4828ee4f3f81cc331a08dc98d7b3cb98e3ff5797c095d2e","63d010bff70619e0cdf7900e954a7e188d3175461182f887b869c312a77ecfbd","1452816d619e636de512ca98546aafb9a48382d570af1473f0432a9178c4b1ff","9e3e3932fe16b9288ec8c948048aef4edf1295b09a5412630d63f4a42265370e","8bdba132259883bac06056f7bacd29a4dcf07e3f14ce89edb022fe9b78dcf9b3","5a5406107d9949d83e1225273bcee1f559bb5588942907d923165d83251a0e37","ca0ca4ca5ad4772161ee2a99741d616fea780d777549ba9f05f4a24493ab44e1","e7ee7be996db0d7cce41a85e4cae3a5fc86cf26501ad94e0a20f8b6c1c55b2d4","72263ae386d6a49392a03bde2f88660625da1eca5df8d95120d8ccf507483d20","b498375d015f01585269588b6221008aae6f0c0dc53ead8796ace64bdfcf62ea","c37aa3657fa4d1e7d22565ae609b1370c6b92bafb8c92b914403d45f0e610ddc","34534c0ead52cc753bdfdd486430ef67f615ace54a4c0e5a3652b4116af84d6d","a1079b54643537f75fa4f4bb963d787a302bddbe3a6001c4b0a524b746e6a9de","7fc9b18b6aafa8a1fc1441670c6c9da63e3d7942c7f451300c48bafd988545e9","200a7b7eb3163da4327412c650e43fbe66c73604a23a694f95ede53c250bfc3b","b843e64cc56422a003f151f950c0b11dfc93e48d836c23d1de3ff9760ba66128",{"version":"1e7781c5426903d3ee3081a279bf7b9c0cb5970df0c03aa02b510703ebf14fb1","affectsGlobalScope":true},"0d728b43672268b6358c183f58babb14b4d9133368d3a3d970a638e745a07946",{"version":"68b24afcc8f547f6f4e01a6438f693acf091679d1290f16ac3ff4281604d09c3","affectsGlobalScope":true},"be65d9c4b878135fd01ec9d627649b8f0ea042405d4238555bb1ed32ba4bc0d4","c24c21411a095cbe726d6ee0a45d219109d661371d60647abf0ec72ac356959d","6366130e8579ed3a871038161c56305fb50dc86515dfe7df2086dff1064e7335","f0b49e409996f4d3ddb54f71ec92f5413d004070f23ac1626d698502af028d80","178f27d07eb47715315586e6b93499134f9645a781dcee121809772319da2310","075f39e49fec4edbf341af1236a12efdf4ceef20a1d463d3aafe1e528260ad01","0e637de8a04bb36479e999759625ac74ba8ec316f38699c1a2bbc2287cba3a02","1439e71e2196fcf0c998446c0a86cd45c1c0c3f872e2b5c96747b77b95626468","8c328b52f3f1a382fa838326757402ba3f89dc956a154a8d39b383ff9d561778","83b5f5f5bdbf7f37b8ffc003abf6afee35a318871c990ad4d69d822f38d77840","656e8a14a0af2822043ecc64532a6d82715811a9c13aececf0538d9851a257a2","7425cbc402ec67a19cd21faa4ef0896dd0a3ebfa6f24d13f693c746fd7ae2b4f","b6f357cb6e31ed152370ecda2fcdd5a8d6f7220a49a7c138345e47ff37be120b","114e3c99f9dc8434ce9a75b63b7a0da5ab0a0293fc6c75dc91a38d0c2c4831fb","2d504f8e4d31b03bc70915d6c19d1eb1467748d525bf88fa809e988ec1ba6a0f","b3dec0879e876086c6bd5d93b671bf3a034da7712ea60b6e815f1de987df060a","4c2dc62cf8ddea2c86bdb2cdcc152482639b455a9d073b8a637ca0871691e808","170b97ee9ca13eadc645d2264b1041b6a927cd12069cb7b7722dc9b3af1ccd53","70bce44ecc89f768392e66f49fdd6578885c6912c70505479b4e03325d5a989d","c677bd7039edf9c7f90a61a59a8e85ce450eee24ec511278893c551e3e32ba42","a023eb8a768d010cc6ca7bbd3d721f2131652ceaa58151021570f0c7275cbfa6","6148d07d0461a3dbf338f5f271ff8b887d8256817f5bacb7fc7bd3bca5b79796","e81622c94502d2b4f7787d7e2695c6e5376126f54f6b15a933aa118da1c639a5","2acb20d43c22fe33e73dfc3f70b41dca9c3af5c1bd61c9642c4ec4498d324f69","cd72696c0c73179120840bf02b371c33d4e97286887776b8d6fc946e6183e8e3","0b453035b3250e887e90c62e2293481f84dea16fd6e4ed64b887d34a7f26f665","1cc001b662ff2ac4881f501a88c5dbb6c02a7f87d6cbee79934fff95c1bbea30","b92c0341be64c4a28cc596fd3eccf0e74ac475f859d2d64a8a74bd969fffcc16","5b857d41d08971f63d54a050c5ba29504887f72e21e548e12e36428726941b11","9b51dd74a388c13e157c457cc39d59dc2aae2134f6a21cc6b695219932cb8817",{"version":"db06f4cdf70e3689f0cd5a96a6836f34024ad61e8dd01473560ebbcae09c532b","affectsGlobalScope":true},"7ff05fb50d37beb9bc6a5f93a3f09db2f959b0327f4f3b4221b2180e5b661322","3a4e80746c4007af4abc9b1263c4088b859cf4c1f7e2f03a074750bd03679e17","8772ee20ba975dd2411063d0d0c762588de75d65be11bfc96d17ff8375e7153a","bd08ee515c95bb5e3387f1c6e06b9b90a7023841c5c50cf8a3be0ccb98b423b6","7e45d0be6c684f8bd44a7c9e9b85866eadeefa8eafb4391a9a301275c35b4fcd","4b9fba069829653b17f331333ded3f88a2193139115ad48589b57542e0f1df5f","fa67c77380575031c13b4428fb04e817fe50540329c981c1a2b147ecb9327ef0","a60cb94351eec664cd5fd6c680ed608258d5ebc0e0a4b469c66ed5a3cef5efd8","9f9159a0e2266b44e522ca1c861e65644a330549201b75ddb4ab79dd85f10c8a","8d00ce6d5f41f222246ca4413da284f9b64c452ede594aaf0a368c804e8c58c1","da9a27a114bc110dfc2aa82ae2c2bca6c263e54e2fb715c88e871cd03b86165c","5845b996902c6abf5559e3795ada1dc5e5eaa3f48c2f893ec614c2aae7ad9155","79ad4eca59cf44701cd2b138b633efa003573521634b60eabf89f9228cd55809","638678c386beeb3793cc51759d9accb2a502c71eb08f453d6536636ef4593186","cc64f85b35f8d01b0355456652a3494c7533269fa47a68272d28fc042e30dfba","9b051f36a67f0e5813b355868f3d869c146b8045b3e143e821eb4d58a39f64be","435124778d845003fbc7f7d0a756cf5b8929365b22dfa9c6afb7b23178c6dc6c","948f93cf2016b2d75c53605a44397983dfb7ba736d5a75e9866413d6af4f5e59","e20a07f3bc177e8757f07bebd3bbe674f1832da963480c644f7aa40722645231","584bb7dd00ffcc99918e3aca639ea6eed99256bef0b9c70f36de255212e086b0","d55df0c04f6b9b73a531aab649fca0e79b6bb6412ff3898d3e60e4e74a1acd6e","d35be9e4af129629c0ba2fc57fe80e94b8e464de3d3b0e8ed621873b9c28c2c4","667d1590f5ed02745949cf1b4532bbf80597c7cd15ef8be42b06f035487cee66","6336e7ae85e7bd0116777d6de86f34c881b89d81083547a8e7a3e9c9ce686b89","33fd57356804dd8d377aa08d6552b66068530b8875fbc8df6ea469953365ab5a","b4d4a27d2d42e2088ded7a7062d6fb2c89c588dae93fc81cbca5109b9f08324d","6882eb3444234bb5fd0f88771b3dac44f96549a16c88fd834c29486e86baf86f","7b18a8a68a7d84946f836e672e1bbb37e349be74124912dd2886da4fb5dad505","c57dcbf8db47e0f0fd15686fc4b52442a8af3d13139a6e5dbd776761ebe0647c","42791bbdba1514368154fc3836f8104c757c7b3a8c397f240581f10c139e8c2a","306ce99f2c5fac7355dc6178d2f2a539c39093beb8f541ed1883b19a7d2a6302",{"version":"4faf050b6c2cad6fcfe45d9fce6c555c35747e601aacc3122cf024faf77f6b4d","affectsGlobalScope":true},"2229ac54fce24aa66dd8473e29f31f95574c9ed9fa71c0950d5e9ebc19fbd34e","1654209fde4ef73f51d3da10c2404c857714bcd8a325b851ee7b0c970cc51dba","5232f93ba808fd18230f4e0fae516fc0ea0ca09386c93ef19dfdddd59d82194b","64c7a2052eb5f8aacad9782fe254e7c225d3cdebcdbd3f2f339b2574b80f61d7","29d46805aba9bd70c3b64aea22a15589fcaa12b2bed2ac9310a7f02b02363bac","0358f51804975d70e83daa425709e472bfadb8ff6627402723881d3299599732","38106630e61f7dff328af03a2f1ac3b46cf57d611e8ea7ec9ec26dccb582bbf7","bf9085ad9469ad87d48e6b294c26e8ebc358a653e25b7c6976065df658ab3a47","cad94e8c96269a3f9c80f09a284e6839c5d01eddd85c90f9efa8e9556f1834e1","8d52b292046eaf7bc4565cadd1c61edc952d075ab2889f41f6d63f10ea59ccb0","38e1f988ca8a3fd0ee2fad611f7f982e9530ae6973151bcacde7c6e7fb04bea5","383f07a2a1fb51cb6fc8265a63eaade643135379374afa7166e3b84b063cd2fb","5754840b8991b703e3b0ae0fefc4a1be80d9ff61afdbf101dacfa6566255e0df","bf0594b413405ede52217e9a3996cae8771920659d46c2a4a411e98a6405851f","29ab9f8d2f84b5f84584ca6ec50535d5ebc34245d45cef32931ee8b4cced4ea3","e0066d0cec0f1194361302cf52abf2e71c0af898eed09ec687d4a34d7b89389c","d4b61bbee55cc1f91616b64937233522f29b6034304440a97344766e58d81224","484c61ffe28d13086dcbadc5371355a457e75a375a1f21649d87209c7da3f5ad","d6a5c17ef46bb6832efa4c7ed3fabf666bed91f7b1f913ef9f9437de72f9f45f","df51929c4b53d6f8740927d77f7bf415d026812a80ff4b03cfa24e9962aab30e","79d3f73e515450fb3e71721e13859666a2fd1dee8d2a4dbd51668eeceb0b5e1e","08a1d8e1474dd44bf89e4fd47ca3fd1c0f6e95d9e74413d95e360ac331915601","71257f1fd9c2606a8db9e614394e154d1b7175b1aab178ff7850cce0f383b0b7","dbf6e52d440f8495adf5f9d46f603ecf7e007b7032542e93a578748948d339cd","f5146fc906ed4a1ff094cf779c438cdb62699836ed52d35d68cdf8ffa33d4f17","c488375c6eddabce83a48132ae081c13ce049163694aee72205716070cdaf2d4","99471216f9a6bbdbd922ce5c3abab16a01f525c04b8565802ba7e2f741ed66ba","699f82d62f80defba3f24f8035fdd7848ce59819b7e92be1c21203784f989880","d6b416da43b620809c3802863ff9fc327fd93a27596b8297e3c11b5babee7c2d","54f654d70f99e22ab62bc368214dbffab229aaa05c0854844e092fc0249b941e","8dccc7b5bc97ef722f7cdc7a98052f604e97ce3d8e35ec3ef71ada72f8dde961","d05c820b83b902757ad03fc35cbbc223cf956378035629da3c939b2ebfcd4c0e","60427cfa4f690de417382f75e3726d6afa5c539bff1a20f02f02d71a039c4583","6001a900ad0d1514db9388aef756f13c49b28db222b3c7b31303b62600374919","b4ed7a50adf1635e93d76afb2b85449e67375d0ed8a02a30fa0dc7aee4fa09cb","d424b5f5b54d4f2338441533f0efb83a1629d6f881a2d18b578c32b77d37bb8a","d57448d620fedd6105a224fe06ee24499aefdc59160d1e2756d88e72ad68ca0e","ab9174e049652c2558740a72eee7d494f7a0f833a31f80adf80b630e81240a38","07ca7906cd7ebb46a93f2216b2bf1ac94d43a35be2935804b5e346536c4f4cbe","2f6de3568f38b279d342e7a317e423fb8e5582c0ae68ee83bf8c3cb4ac4cf403","7f1cf2dab123e185e96bf46e7380fbb3946b8a8710263e2032429303496c2a34","3a33dc0aaca86bfc68a58b603aeada539a0e47bce983d88473c7076318b91c9f","dd671af188f9ada1b5b6b6762ba51530dd5e30641358a1afcb86bf7921bd6b6b","ac415e6d3fbf97d543cb04fb812dc8fc5db14329f7120476e425f44674034168",{"version":"82575b414c8ae783e1241cda051a8c9ed95b5c4daac08e377c4b5279627dff6f","signature":"b42033bf1067564808e4d360d79281667c2b3b0792c2d615ab641eb85974d4ba"},{"version":"7217e4e347064d1885eacfebcaa7984fe56405de7825555aaa190d39f0538bbc","signature":"39ddfec42c97893f375021f18ef65e174a9a239b963097dab1ab9ed2d63cc099"},{"version":"828f5e659cf67023155156a0784a7db12752280abf9dbd158b4da484ad035f73","signature":"4ab17f80ced148d509345cee706b2b85941515dd76e32cf47118bcdf6a4bd56a","affectsGlobalScope":true},{"version":"327af99ba59aa22609116747f41aa0d105c1d4bdce4422fd56d7062cd1a49126","signature":"32e1867b6598b33ddcbd2772aa8b451078c342b490f3256ad237a9df4015c205"},{"version":"242b5861bc278076615870823398bbb5b237738f64f03e1740da1bc184b427c5","signature":"78faa3783191b2d5d5f7a9e835ee3f6a1456dc391d6eb5b40d3a27dfd9decd6e"},"e59262ddaae67dec2d226f8a5d05cf6c4dc353c0d9b1e4980a61d7fcf9a2b051","5e30131b6a5587fe666926ad1d9807e733c0a597ed12d682669fcaa331aea576","470b8c2386c916bad4aa0d05e89b271a47dbe1250cb25dc0f93102b457228dde","15fe687c59d62741b4494d5e623d497d55eb38966ecf5bea7f36e48fc3fbe15e",{"version":"2c3b8be03577c98530ef9cb1a76e2c812636a871f367e9edf4c5f3ce702b77f8","affectsGlobalScope":true},"7000ec8572390d035ba5ef993953957150d0c38ffb31b56653c97dd78cb6e1aa","056892cca68dca10a914f1580ba0e5710d26794e8707225dca9b5717ed702f1e","056892cca68dca10a914f1580ba0e5710d26794e8707225dca9b5717ed702f1e","4ddf3962990379d1ea59b369a5516c7533b7944010d6998e0e9b1ab35d5af1f0","1bcd560deed90a43c51b08aa18f7f55229f2e30974ab5ed1b7bb5721be379013","dc08fe04e50bc24d1baded4f33e942222bbdd5d77d6341a93cfe6e4e4586a3be","2a8f0a19a927e83421597c056c90695557142f54ca96358f01eb1f2a5eb228be","d08415b3d6d7fd153ba6e7bf7707ffc57f3c6ad85730ea63544756610b4350c6","411f23da7a63c3d3fd4860c41a458e8df239776fd5d9cd36dd3ad6be92afccbd","6ada3e065916c0ef2dbc9bc0f9b5d59afb25d9176f81fa2c8993a536924140c6","356cc1b058e05e07d2acd73bfa87f83a6f4a343450ee375dad232ff4a55d41d8","df286e6b181ed08766bc19cf1a2fddc50bc5d540f233bc1ce4430a3c1c8c8379","f436800c0af503703110c93144fcc7392524636fb4216296411243b29fe0162d","0d5002560b45ce4fd6c4124632f61789e584be0634602486a2ce59541311d153","bbe13c947d7d6c3426e0e5815e2b3464fa03d34a4bf47298c43b9237cf59555b","9f7d0ee33b9f8fa4dc2e9628e0cdf8683104d01de9d3d24f62cd5da014a5bec4","a8992b852521a66f63e0cedc6e1f054b28f972232b6fa5ca59771db6a1c8bbea","da66c1b3e50ef9908e31ce7a281b137b2db41423c2b143c62524f97a536a53d9",{"version":"9c2adce0839937457ff6710a92828cce1671cc59fb20c0d28d334d6407782806","signature":"08d32a8fc63dbf34214ebb90c547ef20082d7d60126ad146ef8704528fb5e99d"},{"version":"4f1a2df041b302d49a7637e72f2a48d04f84d4a738e01d4351aff891f93a6cc4","signature":"fc48282c397084016a939e1b3f91dcaf4199b6cba339d91d8b2dc2acade79762"},{"version":"fc956dab073307e9f440201b8171d593c50fc678255998c7bb59d8689a9eec3e","signature":"981fc22acc36b6a33c9f5b3d468e975b104cf3409b881ca6cffe84c5f9fda7c1"},{"version":"c3d591f5f6956b217c477912a81a812ee8d5f7e12eec18d06222c4462c4ef6b1","signature":"561e8c7af0e65a4ea90af6b43a54399db172aec993f14981ff45769ee8b6a33e"},"23c05cc4d97aa608b5ea8badadb4e1b0c4e306ed5d651c5d1760552e91d1ad92","452807fa3050dbc39caf1ffd2e9cf9b36e719e36ee062f6adebe50be426790d3","cf93fb9208a01c80f0fad245c4360356e5de6c2384b7641acf0b9cc2f5c42448","336398b0efaf964124e636a9b29c4edd5870aee79ac64bf87be58a9d66b7c048","571bc65ec37ba124e762bb822e14a2b8502dc684e356be8feaccbd6b9cadd023","2bbbefc1235500bdb5091f240dc8cba861a95342272f7d11b7574a0d2ef4f85e","7cd455fc4c4818f19263d73b29c59f3fb5fd54b45a6ab83ca3eb3661281db56b","1c6b9b5501774a2ece6574be8e26092800e3f1f836f8c179b4f9fdd271a620f8","bcd2426fd141157e04e3a8eff914b575403587f398cf0878f07c2f283e0d1afd","bac8ff394e831e4dd3f0961d6abb414b0e2b4ba16fdeb502d087ebf0340ed5f6","b8965484c1a08eeac238cf02a1498d72f3f3610059570a2c0fd207eb34245146",{"version":"77acd6c08ea2724ea7893c3e6d341f0ce39cd052922959adf808de6859ebc4ca","signature":"fe26bca461bcee5eaff0048fe369066ef1b754ac5c66d6606fde3c3c7e273ecb"},{"version":"f61767413d019de6565fb8a382405ae71b71344a7dfbf272cfbf8a8f5364ceb9","signature":"dad8b29f1a0eded516aa3009e0483e7a63556a4ef7c52dd3dc81aa4bb651e911"},"a0667520a6521c12128fc28cbd5b2af58eef11c5b2a7441e0f0d47f50bf6c8e3","0dcf4c2bf1bb547e2ae5b8dce4656a56fbd15e3401ff5236ea0b93b6c60f9249","820c26194ad4089bc503b02bbedbd86a865e9c8a05c58ef88c8d19d9c019712a","790b453e1b76814112c3870d6e12f5db992d3194fdb3529445317dd75cb538be","d375de88ab19f6c105a65fc89eca1ae782362c5c395283b0c85ef39c7b835dfe","aeda2fffbc651fe1fa60b913d45f291f5544c4840206cb3b1badc16d9f01a0f0","7b3c1d688dcb8645b5a6c37bce5b047da92b4c298ed8709e03e987e0efb035b1","29c64e1acb5b73f08a60e71154c65c8a34f885f1f2cc55ffa06dfd244c058883",{"version":"7d176f155e5f6fc9756ddcc1a6d3eb2673030a066e2b7846dfc81b5271f3e269","affectsGlobalScope":true},"024fea9ee598cfe747f18340ad74e4ea428fc2a7988250ff9fcfce5673b7d422","aea18a267a0770c365cc390ad0a0b9725ed7a4540e9a96319b0f5094ee0ca124","a5a7c7d197c7b1918bddb0dd30bf8979a38828b24467ec45db093bf4621507ef",{"version":"afcd875785333f656f79bf1b3a445ceecc6aaf8e2b7cde59309a8778f41de613","affectsGlobalScope":true},{"version":"27b285e901600242883d62a5fff9f5d262c6fa128b6e6c6963f981f2630a957e","affectsGlobalScope":true},"8a9b7a437bea4cc34e5e103e01573ab3afc4564a22c838942b6dcca0f68020e8","8bb8931e629d9adfac6fe0c067de1a3c2f82b47262f83fa76eb0772ef13808e8","ae1351ed65b27a2b29a70a238024c957910e944aabbffce286099ed2b04f9baf",{"version":"3c19b3fb2f88bbd8f103fe2de0d6c0700dd9bf6678553f6db803162620b49e27","affectsGlobalScope":true},{"version":"189a87911d606781877614ad113ea2fe307de05dddc1891b49a4c196b67d77b6","signature":"8e5930493deb9bc15c58b16327dc020c7ff52a8a2c3a17703a653e2c83c02014"},"efc7d584a33fe3422847783d228f315c4cd1afe74bd7cf8e3f0e4c1125129fef","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":"a14ed46fa3f5ffc7a8336b497cd07b45c2084213aaca933a22443fcb2eef0d07","affectsGlobalScope":true},"cce1f5f86974c1e916ec4a8cab6eec9aa8e31e8148845bf07fbaa8e1d97b1a2c",{"version":"7fd7fcbf021a5845bdd9397d4649fcf2fe17152d2098140fc723099a215d19ad","affectsGlobalScope":true},"df3389f71a71a38bc931aaf1ef97a65fada98f0a27f19dd12f8b8de2b0f4e461","7b43160a49cf2c6082da0465876c4a0b164e160b81187caeb0a6ca7a281e85ba",{"version":"41fb2a1c108fbf46609ce5a451b7ec78eb9b5ada95fd5b94643e4b26397de0b3","affectsGlobalScope":true},"a40826e8476694e90da94aa008283a7de50d1dafd37beada623863f1901cb7fb",{"version":"8b809082dfeffc8cc4f3b9c59f55c0ff52ba12f5ae0766cb5c35deee83b8552e","affectsGlobalScope":true},"bd3f5d05b6b5e4bfcea7739a45f3ffb4a7f4a3442ba7baf93e0200799285b8f1","4c775c2fccabf49483c03cd5e3673f87c1ffb6079d98e7b81089c3def79e29c6","d4f9d3ae2fe1ae199e1c832cca2c44f45e0b305dfa2808afdd51249b6f4a5163","7525257b4aa35efc7a1bbc00f205a9a96c4e4ab791da90db41b77938c4e0c18e","b7fe70be794e13d1b7940e318b8770cd1fb3eced7707805318a2e3aaac2c3e9e",{"version":"2c71199d1fc83bf17636ad5bf63a945633406b7b94887612bba4ef027c662b3e","affectsGlobalScope":true},{"version":"674168aa3db414ea0a19b2a31d901b2d49705c7a495e43ffdc96928543010f8c","affectsGlobalScope":true},"fe1fd6afdfe77976d4c702f3746c05fb05a7e566845c890e0e970fe9376d6a90","313a0b063f5188037db113509de1b934a0e286f14e9479af24fada241435e707","afb1701fd4be413a8a5a88df6befdd4510c30a31372c07a4138facf61594c66d","87ef1a23caa071b07157c72077fa42b86d30568f9dc9e31eed24d5d14fc30ba8","396a8939b5e177542bdf9b5262b4eee85d29851b2d57681fa9d7eae30e225830","21773f5ac69ddf5a05636ba1f50b5239f4f2d27e4420db147fc2f76a5ae598ac",{"version":"ea455cc68871b049bcecd9f56d4cf27b852d6dafd5e3b54468ca87cc11604e4d","affectsGlobalScope":true},"c07146dbbbd8b347241b5df250a51e48f2d7bef19b1e187b1a3f20c849988ff1","45b1053e691c5af9bfe85060a3e1542835f8d84a7e6e2e77ca305251eda0cb3c","0f05c06ff6196958d76b865ae17245b52d8fe01773626ac3c43214a2458ea7b7",{"version":"ae5507fc333d637dec9f37c6b3f4d423105421ea2820a64818de55db85214d66","affectsGlobalScope":true},{"version":"0666f4c99b8688c7be5956df8fecf5d1779d3b22f8f2a88258ae7072c7b6026f","affectsGlobalScope":true},"8abd0566d2854c4bd1c5e48e05df5c74927187f1541e6770001d9637ac41542e","54e854615c4eafbdd3fd7688bd02a3aafd0ccf0e87c98f79d3e9109f047ce6b8","d8dba11dc34d50cb4202de5effa9a1b296d7a2f4a029eec871f894bddfb6430d","8b71dd18e7e63b6f991b511a201fad7c3bf8d1e0dd98acb5e3d844f335a73634","01d8e1419c84affad359cc240b2b551fb9812b450b4d3d456b64cda8102d4f60","8221b00f271cf7f535a8eeec03b0f80f0929c7a16116e2d2df089b41066de69b","269929a24b2816343a178008ac9ae9248304d92a8ba8e233055e0ed6dbe6ef71","93452d394fdd1dc551ec62f5042366f011a00d342d36d50793b3529bfc9bd633","7fa32887f8a97909fca35ebba3740f8caf8df146618d8fff957a3f89f67a2f6a","9a9634296cca836c3308923ba7aa094fa6ed76bb1e366d8ddcf5c65888ab1024",{"version":"bddce945d552a963c9733db106b17a25474eefcab7fc990157a2134ef55d4954","affectsGlobalScope":true},{"version":"7052b7b0c3829df3b4985bab2fd74531074b4835d5a7b263b75c82f0916ad62f","affectsGlobalScope":true},"aa34c3aa493d1c699601027c441b9664547c3024f9dbab1639df7701d63d18fa","4b55240c2a03b2c71e98a7fc528b16136faa762211c92e781a01c37821915ea6","7c651f8dce91a927ab62925e73f190763574c46098f2b11fb8ddc1b147a6709a","7440ab60f4cb031812940cc38166b8bb6fbf2540cfe599f87c41c08011f0c1df",{"version":"94c086dff8dbc5998749326bc69b520e8e4273fb5b7b58b50e0210e0885dfcde","affectsGlobalScope":true},{"version":"f5b5dc128973498b75f52b1b8c2d5f8629869104899733ae485100c2309b4c12","affectsGlobalScope":true},"ebe5facd12fd7745cda5f4bc3319f91fb29dc1f96e57e9c6f8b260a7cc5b67ee","79bad8541d5779c85e82a9fb119c1fe06af77a71cc40f869d62ad379473d4b75","21c56c6e8eeacef15f63f373a29fab6a2b36e4705be7a528aae8c51469e2737b",{"version":"629d20681ca284d9e38c0a019f647108f5fe02f9c59ac164d56f5694fc3faf4d","affectsGlobalScope":true},"e7dbf5716d76846c7522e910896c5747b6df1abd538fee8f5291bdc843461795",{"version":"ab9b9a36e5284fd8d3bf2f7d5fcbc60052f25f27e4d20954782099282c60d23e","affectsGlobalScope":true},"b510d0a18e3db42ac9765d26711083ec1e8b4e21caaca6dc4d25ae6e8623f447",{"version":"0ea93d01083b3d5863cc98cb589b5d0eac55d14417487f9e5e455dfa0b17c660","affectsGlobalScope":true}],"root":[47,[49,54],82,83,99,100,[314,318],[342,345],357,358,377],"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":[[201,218,224,231,271],[230,231,232],[201,229,271],[201,216,230,271],[207,218,219,220,221,223,225,229,230,231,232,233,271],[201,217,218,221,229,230,271],[201],[201,220,221,229,271],[201,218,221,223,224,229,232,271,309],[201,221,225,228,230,271],[309],[201,218,221,225,226,230,271],[201,219,220,229,230,232,271],[201,220,221,225,227,271,309],[201,224,234,271,279,289,302,303,304,306],[202,221,234,271,279,289,290,299,300,302,303,304,306,307,308],[201,234,271,279,303,307],[230,234,271,290,300,301,303,304,305],[201,234,279,290,300,303,304,305,306],[201,217,234,271,279,290,301,302,303,304,306,307],[201,216,234,271,279,290,300,301,302,304,306],[201,216,230,234,279,303,306],[201,207,279,289,299],[271,272],[273],[207,272,273,274,275,276,277,278],[201,271,309],[279,282],[207,280,281,282,283,284,285,286,287,288],[236,279],[282],[201,271,279],[279],[207],[271],[207,291,292,293,294,295,296,297,298],[267],[268,269],[241],[201,279],[240],[258],[204,205,206],[202,203],[201,210],[207,208,209,210,211,212,213,214,215,235,238,239,240,241,242,243,244,245,246,247,248,249,250,251,252,253,254,255,256,258,259,260,261,262,263,270],[238],[236,237],[234],[257],[321],[330],[321,330],[321,330,338],[319,320],[329,359,360,361],[329,367,368,369,372,374],[329,375],[329,367,368,369],[329,370],[329],[329,360,362,364,365],[329,366],[360],[361,363],[359,364],[96],[84,86,87,88,89,90,91,92,93,94,95,96],[84,85,87,88,89,90,91,92,93,94,95,96],[85,86,87,88,89,90,91,92,93,94,95,96],[84,85,86,88,89,90,91,92,93,94,95,96],[84,85,86,87,89,90,91,92,93,94,95,96],[84,85,86,87,88,90,91,92,93,94,95,96],[84,85,86,87,88,89,91,92,93,94,95,96],[84,85,86,87,88,89,90,92,93,94,95,96],[84,85,86,87,88,89,90,91,93,94,95,96],[84,85,86,87,88,89,90,91,92,94,95,96],[84,85,86,87,88,89,90,91,92,93,95,96],[84,85,86,87,88,89,90,91,92,93,94,96],[84,85,86,87,88,89,90,91,92,93,94,95],[378],[414],[415,420,448],[416,427,428,435,445,456],[416,417,427,435],[418,457],[419,420,428,436],[420,445,453],[421,423,427,435],[414,422],[423,424],[427],[425,427],[414,427],[427,428,429,445,456],[427,428,429,442,445,448],[412,415,461],[423,427,430,435,445,456],[427,428,430,431,435,445,453,456],[430,432,445,453,456],[378,379,413,414,415,416,417,418,419,420,421,422,423,424,425,426,427,428,429,430,431,432,433,434,435,436,437,438,439,440,441,442,443,444,445,446,447,448,449,450,451,452,453,454,455,456,457,458,459,460,461,462,463],[427,433],[434,456,461],[423,427,435,445],[436],[437],[414,438],[439,455,461],[440],[441],[427,442,443],[442,444,457,459],[415,427,445,446,447,448],[415,445,447],[445,446],[448],[449],[414,445],[427,451,452],[451,452],[420,435,445,453],[454],[435,455],[415,430,441,456],[420,457],[445,458],[434,459],[460],[415,420,427,429,438,445,456,459,461],[445,462],[322],[264,265,266],[264],[110,308],[103,104,110,111],[112,176,177],[103,110,112],[104,112],[103,105,106,107,110,112,115,116],[106,117,131,132],[103,110,115,116,117],[103,105,110,112,114,115,116],[103,104,115,116,117],[102,118,123,130,133,134,175,178,200],[103],[104,108,109],[104,108,109,110,111,113,124,125,126,127,128,129],[104,109,110],[104],[103,104,109,110,112,125],[110],[104,110,111],[108,110],[117,131],[103,105,106,107,110,115],[103,110,113,116],[106,114,115,116,119,120,121,122],[116],[103,105,110,112,114,116],[112,115],[112],[103,110,116],[104,110,115,126],[115,179],[112,116],[110,115],[115],[103,113],[103,110],[110,115,116],[135,179,180,181,182,183,184,185,186,187,188,189,190,191,192,193,194,195,196,197,198,199],[115,116],[105,110],[103,110,114,115,116,128],[103,105,110,116],[103,105,110],[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],[128,136],[136],[103,110,112,115,135,136],[103,110,112,114,115,116,128,135],[321,325],[324],[331,332,333,334,335,336,337,338,339],[373],[321,325,327,328],[325],[324,325],[323,324],[55],[55,57],[389,393,456],[389,445,456],[384],[386,389,453,456],[435,453],[464],[384,464],[386,389,435,456],[381,382,385,388,415,427,445,456],[381,387],[385,389,415,448,456,464],[415,464],[405,415,464],[383,384,464],[389],[383,384,385,386,387,388,389,390,391,393,394,395,396,397,398,399,400,401,402,403,404,406,407,408,409,410,411],[389,396,397],[387,389,397,398],[388],[381,384,389],[389,393,397,398],[393],[387,389,392,456],[381,386,387,389,393,396],[415,445],[384,389,405,415,461,464],[236,309],[101,310,311,312],[48],[48,313,316],[48,82,99,314,317],[48,81,99,316],[48,329],[47,48,81,316,318,329,340,342,345,346,347,356],[48,329,340,342],[48,99,316,329,340,341],[48,329,340,371,376],[48,54,316,318,342,343],[48,81,82],[48,314],[48,97,98,99],[48,55,56,58,83,100,315],[48,49,50,51,52,53],[48,50,51],[48,49,50,52],[348,349,350,351,352,353,354,355],[59,60,61,62,63,64,65,66,67,68,69,72,73,74,75,76,77,78,79,80],[70,71],[71],[70],[82,99,314,317],[55,329,342],[329,342],[329,371,376],[54,316,318,342,343],[55,56],[49,50,51,52,53],[50,51],[49,50,52]],"referencedMap":[[232,1],[218,2],[230,3],[231,4],[234,5],[219,6],[220,7],[233,8],[225,9],[229,10],[223,11],[227,12],[221,13],[228,14],[307,15],[309,16],[302,17],[306,18],[301,19],[305,20],[303,21],[304,22],[300,23],[273,24],[277,25],[274,25],[278,25],[275,25],[279,26],[276,25],[272,27],[286,28],[287,28],[289,29],[280,30],[288,31],[282,32],[285,33],[281,34],[296,33],[298,7],[291,35],[293,35],[299,36],[292,35],[297,33],[295,33],[268,37],[270,38],[251,39],[249,40],[255,33],[241,41],[254,11],[259,42],[260,35],[207,43],[204,44],[208,7],[209,7],[210,7],[211,7],[215,11],[212,7],[213,45],[214,7],[271,46],[245,47],[246,47],[244,47],[238,48],[247,47],[235,49],[258,50],[262,50],[216,7],[330,51],[331,52],[334,53],[332,53],[336,53],[339,54],[337,53],[335,53],[333,52],[321,55],[362,56],[375,57],[376,58],[370,59],[371,60],[372,61],[366,62],[367,63],[369,64],[364,65],[365,66],[341,67],[97,67],[85,68],[86,69],[84,70],[87,71],[88,72],[89,73],[90,74],[91,75],[92,76],[93,77],[94,78],[95,79],[96,80],[378,81],[379,81],[414,82],[415,83],[416,84],[417,85],[418,86],[419,87],[420,88],[421,89],[422,90],[423,91],[424,91],[426,92],[425,93],[427,94],[428,95],[429,96],[413,97],[430,98],[431,99],[432,100],[464,101],[433,102],[434,103],[435,104],[436,105],[437,106],[438,107],[439,108],[440,109],[441,110],[442,111],[443,111],[444,112],[445,113],[447,114],[446,115],[448,116],[449,117],[450,118],[451,119],[452,120],[453,121],[454,122],[455,123],[456,124],[457,125],[458,126],[459,127],[460,128],[461,129],[462,130],[323,131],[267,132],[265,133],[266,133],[308,134],[112,135],[178,136],[177,137],[176,138],[117,139],[133,140],[131,141],[132,142],[118,143],[201,144],[106,145],[110,146],[130,147],[125,148],[111,149],[126,150],[129,151],[127,151],[124,152],[128,153],[134,154],[116,155],[114,156],[123,157],[120,158],[119,158],[115,159],[121,160],[197,161],[191,162],[184,163],[183,164],[192,165],[193,151],[185,166],[198,167],[179,168],[180,169],[181,170],[200,171],[182,164],[186,167],[187,172],[194,173],[195,149],[196,172],[199,151],[188,170],[135,174],[189,175],[190,176],[175,177],[173,178],[174,178],[139,178],[140,178],[141,178],[142,178],[143,178],[144,178],[145,178],[146,178],[165,178],[147,178],[148,178],[149,178],[150,178],[151,178],[152,178],[172,178],[153,178],[154,178],[155,178],[170,178],[156,178],[171,178],[157,178],[168,178],[169,178],[158,178],[159,178],[160,178],[166,178],[167,178],[161,178],[162,178],[163,178],[164,178],[138,179],[137,180],[136,181],[327,182],[326,183],[340,184],[374,185],[329,186],[324,187],[373,188],[325,189],[346,190],[56,190],[58,191],[57,190],[396,192],[403,193],[395,192],[410,194],[387,195],[386,196],[409,197],[404,198],[407,199],[389,200],[388,201],[384,202],[383,203],[406,204],[385,205],[390,206],[394,206],[412,207],[411,206],[398,208],[399,209],[401,210],[397,211],[400,212],[405,197],[392,213],[393,214],[402,215],[382,216],[408,217],[312,11],[310,218],[313,219],[82,220],[314,221],[99,220],[318,222],[317,223],[345,224],[357,225],[358,226],[342,227],[377,228],[344,229],[343,220],[83,230],[315,231],[100,232],[316,233],[49,220],[54,234],[52,235],[51,236],[53,220],[50,220],[354,61],[353,61],[355,61],[348,61],[356,237],[349,61],[350,61],[351,61],[81,238],[72,239],[70,240],[71,241]],"exportedModulesMap":[[232,1],[218,2],[230,3],[231,4],[234,5],[219,6],[220,7],[233,8],[225,9],[229,10],[223,11],[227,12],[221,13],[228,14],[307,15],[309,16],[302,17],[306,18],[301,19],[305,20],[303,21],[304,22],[300,23],[273,24],[277,25],[274,25],[278,25],[275,25],[279,26],[276,25],[272,27],[286,28],[287,28],[289,29],[280,30],[288,31],[282,32],[285,33],[281,34],[296,33],[298,7],[291,35],[293,35],[299,36],[292,35],[297,33],[295,33],[268,37],[270,38],[251,39],[249,40],[255,33],[241,41],[254,11],[259,42],[260,35],[207,43],[204,44],[208,7],[209,7],[210,7],[211,7],[215,11],[212,7],[213,45],[214,7],[271,46],[245,47],[246,47],[244,47],[238,48],[247,47],[235,49],[258,50],[262,50],[216,7],[330,51],[331,52],[334,53],[332,53],[336,53],[339,54],[337,53],[335,53],[333,52],[321,55],[362,56],[375,57],[376,58],[370,59],[371,60],[372,61],[366,62],[367,63],[369,64],[364,65],[365,66],[341,67],[97,67],[85,68],[86,69],[84,70],[87,71],[88,72],[89,73],[90,74],[91,75],[92,76],[93,77],[94,78],[95,79],[96,80],[378,81],[379,81],[414,82],[415,83],[416,84],[417,85],[418,86],[419,87],[420,88],[421,89],[422,90],[423,91],[424,91],[426,92],[425,93],[427,94],[428,95],[429,96],[413,97],[430,98],[431,99],[432,100],[464,101],[433,102],[434,103],[435,104],[436,105],[437,106],[438,107],[439,108],[440,109],[441,110],[442,111],[443,111],[444,112],[445,113],[447,114],[446,115],[448,116],[449,117],[450,118],[451,119],[452,120],[453,121],[454,122],[455,123],[456,124],[457,125],[458,126],[459,127],[460,128],[461,129],[462,130],[323,131],[267,132],[265,133],[266,133],[308,134],[112,135],[178,136],[177,137],[176,138],[117,139],[133,140],[131,141],[132,142],[118,143],[201,144],[106,145],[110,146],[130,147],[125,148],[111,149],[126,150],[129,151],[127,151],[124,152],[128,153],[134,154],[116,155],[114,156],[123,157],[120,158],[119,158],[115,159],[121,160],[197,161],[191,162],[184,163],[183,164],[192,165],[193,151],[185,166],[198,167],[179,168],[180,169],[181,170],[200,171],[182,164],[186,167],[187,172],[194,173],[195,149],[196,172],[199,151],[188,170],[135,174],[189,175],[190,176],[175,177],[173,178],[174,178],[139,178],[140,178],[141,178],[142,178],[143,178],[144,178],[145,178],[146,178],[165,178],[147,178],[148,178],[149,178],[150,178],[151,178],[152,178],[172,178],[153,178],[154,178],[155,178],[170,178],[156,178],[171,178],[157,178],[168,178],[169,178],[158,178],[159,178],[160,178],[166,178],[167,178],[161,178],[162,178],[163,178],[164,178],[138,179],[137,180],[136,181],[327,182],[326,183],[340,184],[374,185],[329,186],[324,187],[373,188],[325,189],[346,190],[56,190],[58,191],[57,190],[396,192],[403,193],[395,192],[410,194],[387,195],[386,196],[409,197],[404,198],[407,199],[389,200],[388,201],[384,202],[383,203],[406,204],[385,205],[390,206],[394,206],[412,207],[411,206],[398,208],[399,209],[401,210],[397,211],[400,212],[405,197],[392,213],[393,214],[402,215],[382,216],[408,217],[312,11],[310,218],[313,219],[318,242],[345,61],[357,243],[358,244],[342,61],[377,245],[344,246],[316,247],[54,248],[52,249],[51,250],[354,61],[353,61],[355,61],[348,61],[356,237],[349,61],[350,61],[351,61],[81,238],[72,239],[70,240],[71,241]],"semanticDiagnosticsPerFile":[232,218,230,231,234,219,222,220,233,225,226,229,223,227,221,228,307,309,302,290,306,301,305,303,304,300,203,273,277,274,278,275,279,276,272,283,286,284,287,289,280,288,282,285,281,296,298,291,293,299,294,292,297,295,217,268,224,270,269,248,256,250,242,251,249,255,252,243,241,254,240,259,253,260,206,207,204,205,208,209,210,211,215,212,213,214,271,245,246,244,238,247,235,239,258,262,261,263,257,216,319,330,331,334,332,336,339,338,337,335,333,320,321,359,361,368,362,360,375,376,370,371,372,366,367,369,364,365,363,341,97,85,86,84,87,88,89,90,91,92,93,94,95,96,465,378,379,414,415,416,417,418,419,420,421,422,423,424,426,425,427,428,429,413,463,430,431,432,464,433,434,435,436,437,438,439,440,441,442,443,444,445,447,446,448,449,450,451,452,453,454,455,456,457,458,459,460,461,462,323,322,264,267,265,266,380,308,112,178,177,176,117,133,131,132,118,201,103,105,106,107,110,113,130,108,125,111,126,129,127,124,104,109,128,134,122,116,114,123,120,119,115,121,197,191,184,183,192,193,185,198,179,180,181,200,182,186,187,194,195,196,199,188,135,189,190,175,173,174,139,140,141,142,143,144,145,146,165,147,148,149,150,151,152,172,153,154,155,170,156,171,157,168,169,158,159,160,166,167,161,162,163,164,138,137,136,102,327,326,340,374,329,324,373,328,325,346,56,98,347,58,57,55,237,202,48,45,46,8,10,9,2,11,12,13,14,15,16,17,18,3,19,4,20,24,21,22,23,25,26,27,5,28,29,30,31,6,35,32,33,34,36,7,37,42,43,38,39,40,41,1,44,396,403,395,410,387,386,409,404,407,389,388,384,383,406,385,390,391,394,381,412,411,398,399,401,397,400,405,392,393,402,382,408,236,312,101,310,313,311,47,82,314,99,318,317,345,357,358,342,377,344,343,83,315,100,316,49,54,52,51,53,50,354,352,353,355,348,356,349,350,351,75,60,73,68,62,79,69,78,61,74,65,81,76,80,63,66,67,59,77,64,72,70,71]},"version":"5.4.3"}
|
package/package.json
CHANGED
@@ -2,7 +2,7 @@
|
|
2
2
|
"name": "@operato/shell",
|
3
3
|
"description": "WebApplication architecturing shell following open-wc recommendations",
|
4
4
|
"author": "heartyoh",
|
5
|
-
"version": "2.0.0-alpha.
|
5
|
+
"version": "2.0.0-alpha.43",
|
6
6
|
"main": "dist/src/index.js",
|
7
7
|
"module": "dist/src/index.js",
|
8
8
|
"exports": {
|
@@ -59,7 +59,7 @@
|
|
59
59
|
"@material/mwc-button": "^0.27.0",
|
60
60
|
"@material/mwc-icon": "^0.27.0",
|
61
61
|
"@material/mwc-icon-button": "^0.27.0",
|
62
|
-
"@operato/graphql": "^2.0.0-alpha.
|
62
|
+
"@operato/graphql": "^2.0.0-alpha.43",
|
63
63
|
"@operato/styles": "^2.0.0-alpha.28",
|
64
64
|
"@operato/utils": "^2.0.0-alpha.35",
|
65
65
|
"lit": "^2.5.0",
|
@@ -100,5 +100,5 @@
|
|
100
100
|
"prettier --write"
|
101
101
|
]
|
102
102
|
},
|
103
|
-
"gitHead": "
|
103
|
+
"gitHead": "bab8044c924725f8a06653d14decc9024f2de1c9"
|
104
104
|
}
|
package/src/actions/busy.ts
CHANGED
package/src/actions/route.ts
CHANGED
@@ -59,7 +59,7 @@ export const navigateWithSilence =
|
|
59
59
|
* @param page - The page to preload.
|
60
60
|
* @returns - The new page path or routing result after preprocessing.
|
61
61
|
*/
|
62
|
-
const _preLoadPage = (page: any) => {
|
62
|
+
const _preLoadPage = async (page: any) => {
|
63
63
|
/*
|
64
64
|
* _preLoadPage 에서는 page를 load하기 전처리를 수행한다.
|
65
65
|
* 예를 들면, page dynamic import 또는 page re-routing
|
@@ -70,8 +70,8 @@ const _preLoadPage = (page: any) => {
|
|
70
70
|
var modules = state.app.modules
|
71
71
|
if (modules) {
|
72
72
|
for (let i = modules.length - 1; i >= 0; i--) {
|
73
|
-
let
|
74
|
-
let _page =
|
73
|
+
let module = modules[i]
|
74
|
+
let _page = module.route && (await module.route(page, module))
|
75
75
|
if (_page) {
|
76
76
|
return _page
|
77
77
|
}
|
@@ -86,8 +86,8 @@ const _preLoadPage = (page: any) => {
|
|
86
86
|
* @param id - The associated resource ID.
|
87
87
|
* @param params - Additional parameters to pass to the page.
|
88
88
|
*/
|
89
|
-
export const loadPage = (page: string, id: string, params: { [key: string]: any }) => (dispatch: any) => {
|
90
|
-
var newPage = _preLoadPage(page)
|
89
|
+
export const loadPage = (page: string, id: string, params: { [key: string]: any }) => async (dispatch: any) => {
|
90
|
+
var newPage = await _preLoadPage(page)
|
91
91
|
|
92
92
|
if (page !== newPage && newPage.indexOf('/') == 0) {
|
93
93
|
dispatch(
|
package/src/app/app.ts
CHANGED
@@ -23,7 +23,21 @@ export class ThingsApp extends connect(store)(LitElement) {
|
|
23
23
|
|
24
24
|
static moduleInitialized: MODULES_STATE = MODULES_STATE.NOT_INITIALIZED
|
25
25
|
static modules: Array<any> = []
|
26
|
-
|
26
|
+
|
27
|
+
/*
|
28
|
+
모든 모듈의 routes 리스트가 수집될 때까지, routeToPage(..) 를 hold 시키기 위해서 ThingsApp.pages를 Promise로 정의한다.
|
29
|
+
*/
|
30
|
+
static pagesResolver: (
|
31
|
+
value:
|
32
|
+
| {
|
33
|
+
[path: string]: string
|
34
|
+
}
|
35
|
+
| PromiseLike<{
|
36
|
+
[path: string]: string
|
37
|
+
}>
|
38
|
+
) => void
|
39
|
+
static pages: Promise<{ [path: string]: string }>
|
40
|
+
|
27
41
|
static callbacks: Array<any> = []
|
28
42
|
static contextPath?: string
|
29
43
|
|
@@ -86,13 +100,13 @@ export class ThingsApp extends connect(store)(LitElement) {
|
|
86
100
|
).then(module => {
|
87
101
|
var modules: {
|
88
102
|
name: string
|
89
|
-
bootstrap: any
|
103
|
+
bootstrap: (m?: any /* self */) => void
|
90
104
|
}[] = module.modules
|
91
105
|
|
92
106
|
/* lifecycle - bootstrapping */
|
93
107
|
modules.forEach(async (m, idx) => {
|
94
108
|
try {
|
95
|
-
m.bootstrap && (await m.bootstrap())
|
109
|
+
m.bootstrap && (await m.bootstrap(m))
|
96
110
|
} catch (e) {
|
97
111
|
console.error(`[${idx} BOOTSTRAP ERROR -${m.name}]`, e)
|
98
112
|
}
|
@@ -146,7 +160,7 @@ export class ThingsApp extends connect(store)(LitElement) {
|
|
146
160
|
super.disconnectedCallback()
|
147
161
|
}
|
148
162
|
|
149
|
-
routeToPage() {
|
163
|
+
async routeToPage() {
|
150
164
|
const activePages = this.renderRoot.querySelectorAll('main > .page[active]')
|
151
165
|
activePages.forEach(page => {
|
152
166
|
page.removeAttribute('active')
|
@@ -156,7 +170,7 @@ export class ThingsApp extends connect(store)(LitElement) {
|
|
156
170
|
|
157
171
|
if (!this.activePage) {
|
158
172
|
/* 해당 route에 연결된 page가 없는 경우에 main 섹션에 해당 element를 추가해준다. */
|
159
|
-
const tagname = ThingsApp.pages[this.page!]
|
173
|
+
const tagname = (await ThingsApp.pages)[this.page!]
|
160
174
|
if (tagname) {
|
161
175
|
const el = document.createElement(tagname) as PageView
|
162
176
|
el.setAttribute('class', 'page')
|
@@ -219,19 +233,32 @@ export class ThingsApp extends connect(store)(LitElement) {
|
|
219
233
|
ThingsApp.callbacks = state.route.callbacks
|
220
234
|
}
|
221
235
|
|
222
|
-
static registerPages() {
|
236
|
+
static async registerPages() {
|
237
|
+
ThingsApp.pages = new Promise<{ [path: string]: string }>(resolve => (ThingsApp.pagesResolver = resolve))
|
238
|
+
|
223
239
|
var reversedModules = [...ThingsApp.modules].reverse()
|
224
|
-
|
240
|
+
const pages: { [path: string]: string } = {}
|
225
241
|
|
226
242
|
/* 모듈 참조 순서 역순으로 page를 추가한다. (for overidable) */
|
227
|
-
|
228
|
-
m.routes
|
229
|
-
|
230
|
-
|
231
|
-
|
232
|
-
|
233
|
-
|
234
|
-
|
243
|
+
for (const m of reversedModules) {
|
244
|
+
if (!m.routes) {
|
245
|
+
continue
|
246
|
+
}
|
247
|
+
|
248
|
+
/*
|
249
|
+
각 모듈의 routes가 모두 완성될 때까지 ThingsApp.pages 구성을 지연한다.
|
250
|
+
각 모듈의 routes를 동적으로도 구성할 수 있도록 하기 위해서이다.
|
251
|
+
*/
|
252
|
+
const routes = await m.routes
|
253
|
+
|
254
|
+
routes.forEach((route: any) => {
|
255
|
+
if (!pages[route.page]) {
|
256
|
+
pages[route.page] = route.tagname
|
257
|
+
}
|
258
|
+
})
|
259
|
+
}
|
260
|
+
|
261
|
+
ThingsApp.pagesResolver(pages)
|
235
262
|
}
|
236
263
|
|
237
264
|
setBase() {
|