@operato/popup 10.0.0-beta.57 → 10.0.0-beta.68
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 +17 -0
- package/dist/src/ox-prompt.d.ts +35 -0
- package/dist/src/ox-prompt.js +68 -1
- package/dist/src/ox-prompt.js.map +1 -1
- package/dist/tsconfig.tsbuildinfo +1 -1
- package/package.json +4 -4
package/CHANGELOG.md
CHANGED
|
@@ -3,6 +3,23 @@
|
|
|
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
|
+
## [10.0.0-beta.68](https://github.com/hatiolab/operato/compare/v10.0.0-beta.67...v10.0.0-beta.68) (2026-07-26)
|
|
7
|
+
|
|
8
|
+
|
|
9
|
+
### :rocket: New Features
|
|
10
|
+
|
|
11
|
+
* **popup:** add prompt() modal for text input (native prompt replacement) ([7c2bb03](https://github.com/hatiolab/operato/commit/7c2bb035b8239725c1e75942cec987f497699eb3))
|
|
12
|
+
|
|
13
|
+
|
|
14
|
+
|
|
15
|
+
## [10.0.0-beta.64](https://github.com/hatiolab/operato/compare/v10.0.0-beta.63...v10.0.0-beta.64) (2026-07-08)
|
|
16
|
+
|
|
17
|
+
**Note:** Version bump only for package @operato/popup
|
|
18
|
+
|
|
19
|
+
|
|
20
|
+
|
|
21
|
+
|
|
22
|
+
|
|
6
23
|
## [10.0.0-beta.57](https://github.com/hatiolab/operato/compare/v10.0.0-beta.56...v10.0.0-beta.57) (2026-05-27)
|
|
7
24
|
|
|
8
25
|
**Note:** Version bump only for package @operato/popup
|
package/dist/src/ox-prompt.d.ts
CHANGED
|
@@ -131,6 +131,41 @@ export declare class OxPrompt extends LitElement {
|
|
|
131
131
|
value: boolean;
|
|
132
132
|
}) => void;
|
|
133
133
|
}): Promise<boolean>;
|
|
134
|
+
/**
|
|
135
|
+
* Static method to open an input popup — a modal replacement for the native `window.prompt()`.
|
|
136
|
+
*
|
|
137
|
+
* Benchmarks `prompt(message, defaultValue)`: shows a text field and resolves with the entered
|
|
138
|
+
* string on confirm, or `null` on cancel/escape/blur. Single-line inputs also confirm on Enter.
|
|
139
|
+
*
|
|
140
|
+
* This is purely additive and does not change the behavior of `OxPrompt.open()`.
|
|
141
|
+
*
|
|
142
|
+
* @returns {Promise<string | null>} The entered text on confirm, or null on cancel.
|
|
143
|
+
*/
|
|
144
|
+
static prompt({ title, text, defaultValue, placeholder, type, icon, multiline, confirmButton, cancelButton, preventCloseOnBlur, top, left, right, bottom, width, height, parent }: {
|
|
145
|
+
title?: string;
|
|
146
|
+
text?: string;
|
|
147
|
+
defaultValue?: string;
|
|
148
|
+
placeholder?: string;
|
|
149
|
+
type?: 'success' | 'error' | 'warning' | 'info' | 'question';
|
|
150
|
+
icon?: string;
|
|
151
|
+
multiline?: boolean;
|
|
152
|
+
confirmButton?: {
|
|
153
|
+
text: string;
|
|
154
|
+
color?: string;
|
|
155
|
+
};
|
|
156
|
+
cancelButton?: {
|
|
157
|
+
text: string;
|
|
158
|
+
color?: string;
|
|
159
|
+
};
|
|
160
|
+
preventCloseOnBlur?: boolean;
|
|
161
|
+
top?: number;
|
|
162
|
+
left?: number;
|
|
163
|
+
right?: number;
|
|
164
|
+
bottom?: number;
|
|
165
|
+
width?: string;
|
|
166
|
+
height?: string;
|
|
167
|
+
parent?: Element | null;
|
|
168
|
+
}): Promise<string | null>;
|
|
134
169
|
/**
|
|
135
170
|
* Opens the popup with specified position and dimensions.
|
|
136
171
|
* @param {object} options - An object specifying the position and dimensions of the popup.
|
package/dist/src/ox-prompt.js
CHANGED
|
@@ -1,3 +1,4 @@
|
|
|
1
|
+
var OxPrompt_1;
|
|
1
2
|
import { __decorate } from "tslib";
|
|
2
3
|
import '@material/web/button/filled-button.js';
|
|
3
4
|
import '@material/web/button/outlined-button.js';
|
|
@@ -84,6 +85,7 @@ let OxPrompt = class OxPrompt extends LitElement {
|
|
|
84
85
|
this.close();
|
|
85
86
|
}.bind(this);
|
|
86
87
|
}
|
|
88
|
+
static { OxPrompt_1 = this; }
|
|
87
89
|
static { this.styles = [
|
|
88
90
|
MDTypeScaleStyles,
|
|
89
91
|
ScrollbarStyles,
|
|
@@ -293,6 +295,71 @@ let OxPrompt = class OxPrompt extends LitElement {
|
|
|
293
295
|
}
|
|
294
296
|
return result;
|
|
295
297
|
}
|
|
298
|
+
/**
|
|
299
|
+
* Static method to open an input popup — a modal replacement for the native `window.prompt()`.
|
|
300
|
+
*
|
|
301
|
+
* Benchmarks `prompt(message, defaultValue)`: shows a text field and resolves with the entered
|
|
302
|
+
* string on confirm, or `null` on cancel/escape/blur. Single-line inputs also confirm on Enter.
|
|
303
|
+
*
|
|
304
|
+
* This is purely additive and does not change the behavior of `OxPrompt.open()`.
|
|
305
|
+
*
|
|
306
|
+
* @returns {Promise<string | null>} The entered text on confirm, or null on cancel.
|
|
307
|
+
*/
|
|
308
|
+
static async prompt({ title, text, defaultValue = '', placeholder = '', type = 'question', icon, multiline = false, confirmButton, cancelButton, preventCloseOnBlur = true, top, left, right, bottom, width, height, parent }) {
|
|
309
|
+
const holder = { value: defaultValue };
|
|
310
|
+
const onInput = (e) => {
|
|
311
|
+
holder.value = e.target.value;
|
|
312
|
+
};
|
|
313
|
+
const onKeydown = (e) => {
|
|
314
|
+
// 단일 라인: Enter 로 확정(native prompt 벤치마킹). multiline 은 개행 유지.
|
|
315
|
+
if (!multiline && e.key === 'Enter') {
|
|
316
|
+
e.preventDefault();
|
|
317
|
+
const host = e.target.closest('ox-prompt');
|
|
318
|
+
host?.onConfirm();
|
|
319
|
+
}
|
|
320
|
+
};
|
|
321
|
+
// 폭은 컨테이너를 최대로 채우고(min-width 로 최소 크기 보장), textarea 는 세로로만 리사이즈.
|
|
322
|
+
const inputStyle = 'width: 100%; min-width: var(--ox-prompt-input-min-width, 320px); box-sizing: border-box; padding: 8px; font: inherit;';
|
|
323
|
+
const template = multiline
|
|
324
|
+
? html `
|
|
325
|
+
<textarea
|
|
326
|
+
rows="3"
|
|
327
|
+
placeholder=${placeholder}
|
|
328
|
+
.value=${defaultValue}
|
|
329
|
+
style="${inputStyle} resize: vertical;"
|
|
330
|
+
@input=${onInput}
|
|
331
|
+
@keydown=${onKeydown}
|
|
332
|
+
></textarea>
|
|
333
|
+
`
|
|
334
|
+
: html `
|
|
335
|
+
<input
|
|
336
|
+
type="text"
|
|
337
|
+
placeholder=${placeholder}
|
|
338
|
+
.value=${defaultValue}
|
|
339
|
+
style="${inputStyle} resize: none;"
|
|
340
|
+
@input=${onInput}
|
|
341
|
+
@keydown=${onKeydown}
|
|
342
|
+
/>
|
|
343
|
+
`;
|
|
344
|
+
const confirmed = await OxPrompt_1.open({
|
|
345
|
+
template,
|
|
346
|
+
type,
|
|
347
|
+
icon,
|
|
348
|
+
title,
|
|
349
|
+
text,
|
|
350
|
+
confirmButton: confirmButton || { text: 'OK' },
|
|
351
|
+
cancelButton: cancelButton || { text: 'Cancel' },
|
|
352
|
+
preventCloseOnBlur,
|
|
353
|
+
top,
|
|
354
|
+
left,
|
|
355
|
+
right,
|
|
356
|
+
bottom,
|
|
357
|
+
width,
|
|
358
|
+
height,
|
|
359
|
+
parent
|
|
360
|
+
});
|
|
361
|
+
return confirmed ? holder.value : null;
|
|
362
|
+
}
|
|
296
363
|
/**
|
|
297
364
|
* Opens the popup with specified position and dimensions.
|
|
298
365
|
* @param {object} options - An object specifying the position and dimensions of the popup.
|
|
@@ -444,7 +511,7 @@ __decorate([
|
|
|
444
511
|
__decorate([
|
|
445
512
|
state()
|
|
446
513
|
], OxPrompt.prototype, "_parent", void 0);
|
|
447
|
-
OxPrompt = __decorate([
|
|
514
|
+
OxPrompt = OxPrompt_1 = __decorate([
|
|
448
515
|
customElement('ox-prompt')
|
|
449
516
|
], OxPrompt);
|
|
450
517
|
export { OxPrompt };
|
|
@@ -1 +1 @@
|
|
|
1
|
-
{"version":3,"file":"ox-prompt.js","sourceRoot":"","sources":["../../src/ox-prompt.ts"],"names":[],"mappings":"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","sourcesContent":["import '@material/web/button/filled-button.js'\nimport '@material/web/button/outlined-button.js'\nimport '@material/web/icon/icon.js'\nimport { styles as MDTypeScaleStyles } from '@material/web/typography/md-typescale-styles.js'\n\nimport { css, html, nothing, LitElement } from 'lit'\nimport { render } from 'lit-html'\nimport { customElement, property, state } from 'lit/decorators.js'\nimport { ScrollbarStyles } from '@operato/styles'\n\nconst TYPES_ICON = {\n success: 'verified',\n error: 'error',\n warning: 'warning',\n info: 'info',\n question: 'question_mark'\n}\n\n/**\n * The `ox-prompt` custom element represents a modal popup that provides information or options for the user, such as confirmation or cancellation.\n */\n@customElement('ox-prompt')\nexport class OxPrompt extends LitElement {\n static styles = [\n MDTypeScaleStyles,\n ScrollbarStyles,\n css`\n :host {\n position: absolute;\n display: flex;\n flex-direction: column;\n gap: var(--ox-prompt-gap, var(--spacing-medium));\n background-color: var(--ox-popup-list-background-color, var(--md-sys-color-surface));\n z-index: 1000;\n padding: var(--ox-prompt-container-padding, var(--spacing-medium));\n box-shadow: var(--ox-prompt-container-box-shadow, 2px 3px 10px 5px rgba(0, 0, 0, 0.15));\n border-radius: var(--ox-prompt-container-border-radius, var(--md-sys-shape-corner-medium));\n box-sizing: border-box;\n min-width: 300;\n line-height: initial;\n text-align: initial;\n }\n\n :host([active]) {\n display: block;\n }\n\n :host(*:focus) {\n outline: none;\n }\n\n [titler] {\n padding: var(--ox-prompt-title-padding, var(--spacing-medium));\n padding-bottom: 0;\n color: var(--ox-prompt-title-color, var(--md-sys-color-primary));\n font-size: var(--md-sys-typescale-title-large-size, 1.375rem);\n font-weight: var(--md-sys-typescale-label-large-weight, var(--md-ref-typeface-weight-medium, 500));\n text-align: var(--ox-prompt-title-text-align, 'left');\n }\n\n [content] {\n display: flex;\n flex-direction: column;\n gap: var(--ox-prompt-content-gap, var(--spacing-medium));\n padding: var(--ox-prompt-content-padding, var(--spacing-medium));\n color: var(--ox-prompt-body-color, var(--md-sys-color-on-surface));\n word-break: keep-all;\n white-space: pre-line;\n text-align: var(--ox-prompt-content-text-align, 'left');\n\n md-icon {\n align-self: center;\n --md-icon-size: var(--icon-size-huge);\n color: var(--ox-prompt-body-color-variant, var(--md-sys-color-primary));\n }\n }\n\n [content].warning md-icon {\n color: var(--status-warning-color, #ee8d03);\n }\n\n [content].error md-icon {\n color: var(--md-sys-color-error, var(--md-sys-color-error));\n }\n\n [content].info md-icon {\n color: var(--status-info-color, #398ace);\n }\n\n [content].success md-icon {\n color: var(--status-success-color, #35a24a);\n }\n\n [buttons] {\n display: flex;\n border-top: 1px solid var(--md-sys-color-surface-variant);\n gap: var(--ox-prompt-buttons-spacing, var(--spacing-large));\n padding: var(--ox-prompt-buttons-padding, var(--spacing-medium));\n padding-top: var(--spacing-large);\n justify-content: center;\n }\n\n #confirm {\n --md-filled-button-container-color: var(--md-sys-color-primary);\n --md-filled-button-label-text-color: var(--md-sys-color-on-primary);\n --md-filled-button-label-text-size: var(--md-sys-typescale-label-large-size, 0.875rem);\n --md-filled-button-container-height: var(--form-element-height-medium);\n --md-filled-button-container-shape: var(--md-sys-shape-corner-small);\n --md-filled-button-leading-space: var(--spacing-large);\n --md-filled-button-trailing-space: var(--spacing-large);\n }\n\n #cancel {\n --md-outlined-button-container-color: var(--md-sys-color-surface-variant);\n --md-outlined-button-label-text-color: var(--md-sys-color-on-surface-variant);\n --md-outlined-button-label-text-size: var(--md-sys-typescale-label-large-size, 0.875rem);\n --md-outlined-button-container-height: var(--form-element-height-medium);\n --md-outlined-button-container-shape: var(--md-sys-shape-corner-small);\n --md-outlined-button-leading-space: var(--spacing-large);\n --md-outlined-button-trailing-space: var(--spacing-large);\n }\n `\n ]\n\n /**\n * Specifies the type of the popup. Possible values are 'success', 'error', 'warning', 'info', 'question'.\n */\n @property({ type: String }) type?: 'success' | 'error' | 'warning' | 'info' | 'question'\n\n /**\n * Specifies the icon of the popup.\n */\n @property({ type: String }) icon?: string\n\n /**\n * Specifies the title of the popup.\n */\n @property({ type: String }) titler?: string = ''\n\n /**\n * Specifies the text content of the popup.\n */\n @property({ type: String }) text?: string\n\n /**\n * Specifies the footer (additional information at the bottom) of the popup.\n */\n @property({ type: String }) footer?: string\n\n /**\n * Determines whether the popup is displayed as a toast.\n */\n @property({ type: Boolean }) toast?: boolean\n\n /**\n * Specifies settings for the confirmation button.\n */\n @property({ type: Object }) confirmButton?: { text: string; color?: string }\n\n /**\n * Specifies settings for the cancel button.\n */\n @property({ type: Object }) cancelButton?: { text: string; color?: string }\n\n /**\n * Prevents the popup from closing when it loses focus (blur event).\n */\n @property({ type: Boolean, attribute: 'prevent-close-on-blur' }) preventCloseOnBlur: boolean = false\n\n /**\n * A callback function called when the popup is closed, providing the result of the user's interaction.\n */\n @property({ type: Object }) callback?: (result: { value: boolean }) => void\n\n @state() _parent?: Element\n\n private resolveFn: ((value: boolean) => void) | null = null\n\n render() {\n return html`\n ${this.titler ? html` <div titler class=\"md-typescale-title-large\">${this.titler}</div> ` : nothing}\n <div content class=\"${this.type || 'info'} md-typescale-body-large\">\n ${this.icon || this.type\n ? html` <md-icon icon>${this.icon || TYPES_ICON[this.type || 'info']}</md-icon> `\n : nothing}\n ${this.text ? html` <div text>${this.text}</div> ` : nothing}\n <slot> </slot>\n ${this.footer ? html` <div footer class=\"md-typescale-body-large\">${this.footer}</div> ` : nothing}\n </div>\n <div buttons>\n ${this.confirmButton\n ? html`\n <md-filled-button id=\"confirm\" type=\"button\" @click=${(e: Event) => this.onConfirm()}\n >${this.confirmButton?.text}</md-filled-button\n >\n `\n : nothing}\n ${this.cancelButton\n ? html`\n <md-outlined-button id=\"cancel\" type=\"button\" @click=${(e: Event) => this.onCancel()}\n >${this.cancelButton?.text}</md-outlined-button\n >\n `\n : nothing}\n </div>\n `\n }\n\n resolve(result: boolean) {\n if (this.resolveFn) {\n this.resolveFn(result)\n this.resolveFn = null\n }\n }\n\n /**\n * Function called when the confirm button is clicked.\n */\n onConfirm() {\n this.resolve(true)\n this.close()\n }\n\n /**\n * Function called when the cancel button is clicked.\n */\n onCancel() {\n this.resolve(false)\n this.close()\n }\n\n protected _onfocusout: (e: FocusEvent) => void = function (this: OxPrompt, e: FocusEvent) {\n const to = e.relatedTarget as HTMLElement\n\n if (!this.contains(to)) {\n /* 분명히 내 범위가 아닌 엘리먼트로 포커스가 옮겨졌다면, ox-prompt은 닫혀야 한다. */\n // @ts-ignore for debug\n if (this.preventCloseOnBlur || window.POPUP_DEBUG) {\n return\n }\n\n this.resolve(false)\n this.close()\n }\n }.bind(this)\n\n protected _onkeydown: (e: KeyboardEvent) => void = function (this: OxPrompt, e: KeyboardEvent) {\n e.stopPropagation()\n\n switch (e.key) {\n case 'Esc': // for IE/Edge\n case 'Escape':\n this.resolve(false)\n this.close()\n break\n }\n }.bind(this)\n\n protected _onkeyup: (e: KeyboardEvent) => void = function (this: OxPrompt, e: KeyboardEvent) {\n e.stopPropagation()\n }.bind(this)\n\n protected _onmouseup: (e: MouseEvent) => void = function (this: OxPrompt, e: MouseEvent) {\n e.stopPropagation()\n }.bind(this)\n\n protected _onmousedown: (e: MouseEvent) => void = function (this: OxPrompt, e: MouseEvent) {\n e.stopPropagation()\n }.bind(this)\n\n protected _oncontextmenu: (e: Event) => void = function (this: OxPrompt, e: Event) {\n e.stopPropagation()\n }.bind(this)\n\n protected _onclick: (e: MouseEvent) => void = function (this: OxPrompt, e: MouseEvent) {\n e.stopPropagation()\n }.bind(this)\n\n protected _onclose: (e: Event) => void = function (this: OxPrompt, e: Event) {\n this.resolve(false)\n this.close()\n }.bind(this)\n\n protected _oncollapse: (e: Event) => void = function (this: OxPrompt, e: Event) {\n e.stopPropagation()\n\n this.resolve(false)\n this.close()\n }.bind(this)\n\n protected _onwindowblur: (e: Event) => void = function (this: OxPrompt, e: Event) {\n // @ts-ignore for debug\n if (this.preventCloseOnBlur || window.POPUP_DEBUG) {\n return\n }\n\n this.resolve(false)\n this.close()\n }.bind(this)\n\n connectedCallback() {\n super.connectedCallback()\n\n this.addEventListener('focusout', this._onfocusout)\n this.addEventListener('keydown', this._onkeydown)\n this.addEventListener('keyup', this._onkeyup)\n this.addEventListener('click', this._onclick)\n this.addEventListener('mouseup', this._onmouseup)\n this.addEventListener('mousedown', this._onmousedown)\n this.addEventListener('contextmenu', this._oncontextmenu)\n this.addEventListener('ox-close', this._onclose)\n this.addEventListener('ox-collapse', this._oncollapse)\n\n this.setAttribute('tabindex', '0') // make this element focusable\n this.guaranteeFocus()\n }\n\n /**\n * Static method to open the `ox-prompt` popup.\n * @param {object} options - An object containing popup options.\n * @param {unknown} [options.template] - An optional content template to render inside the popup.\n * @param {'success' | 'error' | 'warning' | 'info' | 'question'} [options.type] - The type of the popup, which can be one of: 'success', 'error', 'warning', 'info', 'question'.\n * @param {string} [options.icon] - The icon to be displayed in the popup header.\n * @param {string} [options.title] - The title to be displayed in the popup header.\n * @param {string} [options.text] - The main text content of the popup.\n * @param {string} [options.footer] - Additional information to be displayed at the bottom of the popup.\n * @param {object} [options.confirmButton] - Configuration for the confirmation button in the popup.\n * @param {string} options.confirmButton.text - The text to be displayed on the confirmation button.\n * @param {string} [options.confirmButton.color] - The color of the confirmation button (CSS color).\n * @param {object} [options.cancelButton] - Configuration for the cancel button in the popup.\n * @param {string} options.cancelButton.text - The text to be displayed on the cancel button.\n * @param {string} [options.cancelButton.color] - The color of the cancel button (CSS color).\n * @param {number} [options.top] - The top position of the popup (in pixels).\n * @param {number} [options.left] - The left position of the popup (in pixels).\n * @param {number} [options.right] - The right position of the popup (in pixels).\n * @param {number} [options.bottom] - The bottom position of the popup (in pixels).\n * @param {string} [options.width] - The maximum width of the popup (CSS string).\n * @param {string} [options.height] - The maximum height of the popup (CSS string).\n * @param {Element | null} [options.parent] - The parent element to which the popup should be attached. If not provided, it will be attached to the document body.\n * @param {boolean} [options.preventCloseOnBlur] - Prevents the popup from closing when it loses focus (blur event).\n * @param {(result: { value: boolean }) => void} [options.callback] - A callback function that will be invoked when the user interacts with the popup, providing the result of the interaction.\n * @returns {Promise<boolean>} A Promise that resolves based on user interaction with the popup.\n */\n public static async open({\n template,\n type,\n icon,\n title,\n text,\n footer,\n confirmButton,\n cancelButton,\n top,\n left,\n right,\n bottom,\n width,\n height,\n parent,\n preventCloseOnBlur,\n callback\n }: {\n template?: unknown\n type?: 'success' | 'error' | 'warning' | 'info' | 'question'\n icon?: string\n title?: string\n text?: string\n footer?: string\n confirmButton?: { text: string; color?: string }\n cancelButton?: { text: string; color?: string }\n top?: number\n left?: number\n right?: number\n bottom?: number\n width?: string\n height?: string\n parent?: Element | null\n preventCloseOnBlur?: boolean\n callback?: (result: { value: boolean }) => void\n }): Promise<boolean> {\n const owner = parent || document.body\n const target = document.createElement('ox-prompt') as OxPrompt\n\n target.type = type\n target.icon = icon\n target.text = text\n target.titler = title\n target.footer = footer\n target.confirmButton = confirmButton\n target.cancelButton = cancelButton\n target.preventCloseOnBlur = !!preventCloseOnBlur\n\n render(template, target)\n\n target._parent = owner\n owner.appendChild(target)\n\n const result = await target.open({ top, left, right, bottom, width, height })\n\n if (callback) {\n await callback.call(null, { value: result })\n }\n\n return result\n }\n\n /**\n * Opens the popup with specified position and dimensions.\n * @param {object} options - An object specifying the position and dimensions of the popup.\n * @param {number} [options.left] - The left position of the popup (in pixels). If not provided, the popup will be horizontally centered.\n * @param {number} [options.top] - The top position of the popup (in pixels). If not provided, the popup will be vertically centered.\n * @param {number} [options.right] - The right position of the popup (in pixels). Overrides 'left' if both 'left' and 'right' are provided.\n * @param {number} [options.bottom] - The bottom position of the popup (in pixels). Overrides 'top' if both 'top' and 'bottom' are provided.\n * @param {string} [options.width] - The maximum width of the popup (CSS string). If not provided, no width restriction is applied.\n * @param {string} [options.height] - The maximum height of the popup (CSS string). If not provided, no height restriction is applied.\n * @param {boolean} [options.silent=false] - Determines whether to focus the popup automatically (true) or not (false).\n * @returns {Promise<boolean>} A Promise that resolves based on user interaction with the popup.\n */\n open({\n left,\n top,\n right,\n bottom,\n width,\n height,\n silent = false\n }: {\n left?: number\n top?: number\n right?: number\n bottom?: number\n width?: string\n height?: string\n silent?: boolean\n }): Promise<boolean> {\n if (width) {\n this.style.maxWidth = width\n this.style.overflowX = 'auto'\n }\n\n if (height) {\n this.style.maxHeight = height\n this.style.overflowY = 'auto'\n }\n\n if (left === undefined && top === undefined && right === undefined && bottom === undefined) {\n this.style.left = '50%'\n this.style.top = '50%'\n this.style.transform = 'translateX(-50%) translateY(-50%)'\n } else {\n if (left !== undefined) this.style.left = `${left}px`\n if (top !== undefined) this.style.top = `${top}px`\n if (right !== undefined) this.style.right = `${right}px`\n if (bottom !== undefined) this.style.bottom = `${bottom}px`\n }\n\n this.setAttribute('active', '')\n\n // adjust popup position\n requestAnimationFrame(() => {\n const vh = document.body.clientHeight\n const vw = document.body.clientWidth\n\n var bounding = this.getBoundingClientRect()\n\n var h = bounding.height\n var w = bounding.width\n var t = bounding.top\n var l = bounding.left\n\n // If the popup is too large, it will cause overflow scrolling.\n if (vh < h) {\n this.style.height = `${Math.min(Math.max(Math.floor((vh * 2) / 3), vh - (t + 20)), vh)}px`\n this.style.overflow = 'auto'\n h = vh\n }\n\n if (vw < w) {\n this.style.width = `${Math.min(Math.max(Math.floor((vw * 2) / 3), vw - (l + 20)), vw)}px`\n this.style.overflow = 'auto'\n w = vw\n }\n\n // To prevent pop-ups from crossing screen boundaries, use the\n const computedStyle = getComputedStyle(this)\n\n if (t < 0) {\n this.style.top = `calc(${computedStyle.top} + ${t}px)`\n this.style.bottom = ''\n } else if (vh <= t + h) {\n this.style.top = `calc(${computedStyle.top} - ${t + h - vh}px)`\n this.style.bottom = ''\n }\n\n if (l < 0) {\n this.style.left = `calc(${computedStyle.left} + ${l}px)`\n this.style.right = ''\n } else if (vw < l + w) {\n this.style.left = `calc(${computedStyle.left} - ${l + w - vw}px)`\n this.style.right = ''\n }\n })\n\n requestAnimationFrame(() => {\n // auto focusing\n !silent && this.guaranteeFocus()\n })\n\n /* When the window is out of focus, all pop-ups should disappear. */\n window.addEventListener('blur', this._onwindowblur)\n\n return new Promise(resolve => {\n this.resolveFn = resolve\n })\n }\n\n guaranteeFocus(target?: HTMLElement) {\n const focusible = (target || this.renderRoot)?.querySelector(\n ':host > button, :host > [href], :host > input, :host > select, :host > textarea, :host > [tabindex]:not([tabindex=\"-1\"]), :host [type=\"button\"]'\n )\n\n if (focusible) {\n ;(focusible as HTMLElement).focus()\n } else {\n this.focus()\n }\n }\n\n /**\n * Closes the popup.\n */\n close() {\n this.removeAttribute('active')\n\n window.removeEventListener('blur', this._onwindowblur)\n\n if (this._parent) {\n /* this case is when the popup is opened by OxPrompt.open(...) */\n this.removeEventListener('focusout', this._onfocusout)\n this.removeEventListener('keydown', this._onkeydown)\n this.removeEventListener('keyup', this._onkeyup)\n this.removeEventListener('click', this._onclick)\n this.removeEventListener('ox-close', this._onclose)\n this.removeEventListener('ox-collapse', this._oncollapse)\n this.removeEventListener('mouseup', this._onmouseup)\n this.removeEventListener('mousedown', this._onmousedown)\n this.removeEventListener('contextmenu', this._oncontextmenu)\n\n this._parent.removeChild(this)\n delete this._parent\n }\n }\n}\n"]}
|
|
1
|
+
{"version":3,"file":"ox-prompt.js","sourceRoot":"","sources":["../../src/ox-prompt.ts"],"names":[],"mappings":"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","sourcesContent":["import '@material/web/button/filled-button.js'\nimport '@material/web/button/outlined-button.js'\nimport '@material/web/icon/icon.js'\nimport { styles as MDTypeScaleStyles } from '@material/web/typography/md-typescale-styles.js'\n\nimport { css, html, nothing, LitElement } from 'lit'\nimport { render } from 'lit-html'\nimport { customElement, property, state } from 'lit/decorators.js'\nimport { ScrollbarStyles } from '@operato/styles'\n\nconst TYPES_ICON = {\n success: 'verified',\n error: 'error',\n warning: 'warning',\n info: 'info',\n question: 'question_mark'\n}\n\n/**\n * The `ox-prompt` custom element represents a modal popup that provides information or options for the user, such as confirmation or cancellation.\n */\n@customElement('ox-prompt')\nexport class OxPrompt extends LitElement {\n static styles = [\n MDTypeScaleStyles,\n ScrollbarStyles,\n css`\n :host {\n position: absolute;\n display: flex;\n flex-direction: column;\n gap: var(--ox-prompt-gap, var(--spacing-medium));\n background-color: var(--ox-popup-list-background-color, var(--md-sys-color-surface));\n z-index: 1000;\n padding: var(--ox-prompt-container-padding, var(--spacing-medium));\n box-shadow: var(--ox-prompt-container-box-shadow, 2px 3px 10px 5px rgba(0, 0, 0, 0.15));\n border-radius: var(--ox-prompt-container-border-radius, var(--md-sys-shape-corner-medium));\n box-sizing: border-box;\n min-width: 300;\n line-height: initial;\n text-align: initial;\n }\n\n :host([active]) {\n display: block;\n }\n\n :host(*:focus) {\n outline: none;\n }\n\n [titler] {\n padding: var(--ox-prompt-title-padding, var(--spacing-medium));\n padding-bottom: 0;\n color: var(--ox-prompt-title-color, var(--md-sys-color-primary));\n font-size: var(--md-sys-typescale-title-large-size, 1.375rem);\n font-weight: var(--md-sys-typescale-label-large-weight, var(--md-ref-typeface-weight-medium, 500));\n text-align: var(--ox-prompt-title-text-align, 'left');\n }\n\n [content] {\n display: flex;\n flex-direction: column;\n gap: var(--ox-prompt-content-gap, var(--spacing-medium));\n padding: var(--ox-prompt-content-padding, var(--spacing-medium));\n color: var(--ox-prompt-body-color, var(--md-sys-color-on-surface));\n word-break: keep-all;\n white-space: pre-line;\n text-align: var(--ox-prompt-content-text-align, 'left');\n\n md-icon {\n align-self: center;\n --md-icon-size: var(--icon-size-huge);\n color: var(--ox-prompt-body-color-variant, var(--md-sys-color-primary));\n }\n }\n\n [content].warning md-icon {\n color: var(--status-warning-color, #ee8d03);\n }\n\n [content].error md-icon {\n color: var(--md-sys-color-error, var(--md-sys-color-error));\n }\n\n [content].info md-icon {\n color: var(--status-info-color, #398ace);\n }\n\n [content].success md-icon {\n color: var(--status-success-color, #35a24a);\n }\n\n [buttons] {\n display: flex;\n border-top: 1px solid var(--md-sys-color-surface-variant);\n gap: var(--ox-prompt-buttons-spacing, var(--spacing-large));\n padding: var(--ox-prompt-buttons-padding, var(--spacing-medium));\n padding-top: var(--spacing-large);\n justify-content: center;\n }\n\n #confirm {\n --md-filled-button-container-color: var(--md-sys-color-primary);\n --md-filled-button-label-text-color: var(--md-sys-color-on-primary);\n --md-filled-button-label-text-size: var(--md-sys-typescale-label-large-size, 0.875rem);\n --md-filled-button-container-height: var(--form-element-height-medium);\n --md-filled-button-container-shape: var(--md-sys-shape-corner-small);\n --md-filled-button-leading-space: var(--spacing-large);\n --md-filled-button-trailing-space: var(--spacing-large);\n }\n\n #cancel {\n --md-outlined-button-container-color: var(--md-sys-color-surface-variant);\n --md-outlined-button-label-text-color: var(--md-sys-color-on-surface-variant);\n --md-outlined-button-label-text-size: var(--md-sys-typescale-label-large-size, 0.875rem);\n --md-outlined-button-container-height: var(--form-element-height-medium);\n --md-outlined-button-container-shape: var(--md-sys-shape-corner-small);\n --md-outlined-button-leading-space: var(--spacing-large);\n --md-outlined-button-trailing-space: var(--spacing-large);\n }\n `\n ]\n\n /**\n * Specifies the type of the popup. Possible values are 'success', 'error', 'warning', 'info', 'question'.\n */\n @property({ type: String }) type?: 'success' | 'error' | 'warning' | 'info' | 'question'\n\n /**\n * Specifies the icon of the popup.\n */\n @property({ type: String }) icon?: string\n\n /**\n * Specifies the title of the popup.\n */\n @property({ type: String }) titler?: string = ''\n\n /**\n * Specifies the text content of the popup.\n */\n @property({ type: String }) text?: string\n\n /**\n * Specifies the footer (additional information at the bottom) of the popup.\n */\n @property({ type: String }) footer?: string\n\n /**\n * Determines whether the popup is displayed as a toast.\n */\n @property({ type: Boolean }) toast?: boolean\n\n /**\n * Specifies settings for the confirmation button.\n */\n @property({ type: Object }) confirmButton?: { text: string; color?: string }\n\n /**\n * Specifies settings for the cancel button.\n */\n @property({ type: Object }) cancelButton?: { text: string; color?: string }\n\n /**\n * Prevents the popup from closing when it loses focus (blur event).\n */\n @property({ type: Boolean, attribute: 'prevent-close-on-blur' }) preventCloseOnBlur: boolean = false\n\n /**\n * A callback function called when the popup is closed, providing the result of the user's interaction.\n */\n @property({ type: Object }) callback?: (result: { value: boolean }) => void\n\n @state() _parent?: Element\n\n private resolveFn: ((value: boolean) => void) | null = null\n\n render() {\n return html`\n ${this.titler ? html` <div titler class=\"md-typescale-title-large\">${this.titler}</div> ` : nothing}\n <div content class=\"${this.type || 'info'} md-typescale-body-large\">\n ${this.icon || this.type\n ? html` <md-icon icon>${this.icon || TYPES_ICON[this.type || 'info']}</md-icon> `\n : nothing}\n ${this.text ? html` <div text>${this.text}</div> ` : nothing}\n <slot> </slot>\n ${this.footer ? html` <div footer class=\"md-typescale-body-large\">${this.footer}</div> ` : nothing}\n </div>\n <div buttons>\n ${this.confirmButton\n ? html`\n <md-filled-button id=\"confirm\" type=\"button\" @click=${(e: Event) => this.onConfirm()}\n >${this.confirmButton?.text}</md-filled-button\n >\n `\n : nothing}\n ${this.cancelButton\n ? html`\n <md-outlined-button id=\"cancel\" type=\"button\" @click=${(e: Event) => this.onCancel()}\n >${this.cancelButton?.text}</md-outlined-button\n >\n `\n : nothing}\n </div>\n `\n }\n\n resolve(result: boolean) {\n if (this.resolveFn) {\n this.resolveFn(result)\n this.resolveFn = null\n }\n }\n\n /**\n * Function called when the confirm button is clicked.\n */\n onConfirm() {\n this.resolve(true)\n this.close()\n }\n\n /**\n * Function called when the cancel button is clicked.\n */\n onCancel() {\n this.resolve(false)\n this.close()\n }\n\n protected _onfocusout: (e: FocusEvent) => void = function (this: OxPrompt, e: FocusEvent) {\n const to = e.relatedTarget as HTMLElement\n\n if (!this.contains(to)) {\n /* 분명히 내 범위가 아닌 엘리먼트로 포커스가 옮겨졌다면, ox-prompt은 닫혀야 한다. */\n // @ts-ignore for debug\n if (this.preventCloseOnBlur || window.POPUP_DEBUG) {\n return\n }\n\n this.resolve(false)\n this.close()\n }\n }.bind(this)\n\n protected _onkeydown: (e: KeyboardEvent) => void = function (this: OxPrompt, e: KeyboardEvent) {\n e.stopPropagation()\n\n switch (e.key) {\n case 'Esc': // for IE/Edge\n case 'Escape':\n this.resolve(false)\n this.close()\n break\n }\n }.bind(this)\n\n protected _onkeyup: (e: KeyboardEvent) => void = function (this: OxPrompt, e: KeyboardEvent) {\n e.stopPropagation()\n }.bind(this)\n\n protected _onmouseup: (e: MouseEvent) => void = function (this: OxPrompt, e: MouseEvent) {\n e.stopPropagation()\n }.bind(this)\n\n protected _onmousedown: (e: MouseEvent) => void = function (this: OxPrompt, e: MouseEvent) {\n e.stopPropagation()\n }.bind(this)\n\n protected _oncontextmenu: (e: Event) => void = function (this: OxPrompt, e: Event) {\n e.stopPropagation()\n }.bind(this)\n\n protected _onclick: (e: MouseEvent) => void = function (this: OxPrompt, e: MouseEvent) {\n e.stopPropagation()\n }.bind(this)\n\n protected _onclose: (e: Event) => void = function (this: OxPrompt, e: Event) {\n this.resolve(false)\n this.close()\n }.bind(this)\n\n protected _oncollapse: (e: Event) => void = function (this: OxPrompt, e: Event) {\n e.stopPropagation()\n\n this.resolve(false)\n this.close()\n }.bind(this)\n\n protected _onwindowblur: (e: Event) => void = function (this: OxPrompt, e: Event) {\n // @ts-ignore for debug\n if (this.preventCloseOnBlur || window.POPUP_DEBUG) {\n return\n }\n\n this.resolve(false)\n this.close()\n }.bind(this)\n\n connectedCallback() {\n super.connectedCallback()\n\n this.addEventListener('focusout', this._onfocusout)\n this.addEventListener('keydown', this._onkeydown)\n this.addEventListener('keyup', this._onkeyup)\n this.addEventListener('click', this._onclick)\n this.addEventListener('mouseup', this._onmouseup)\n this.addEventListener('mousedown', this._onmousedown)\n this.addEventListener('contextmenu', this._oncontextmenu)\n this.addEventListener('ox-close', this._onclose)\n this.addEventListener('ox-collapse', this._oncollapse)\n\n this.setAttribute('tabindex', '0') // make this element focusable\n this.guaranteeFocus()\n }\n\n /**\n * Static method to open the `ox-prompt` popup.\n * @param {object} options - An object containing popup options.\n * @param {unknown} [options.template] - An optional content template to render inside the popup.\n * @param {'success' | 'error' | 'warning' | 'info' | 'question'} [options.type] - The type of the popup, which can be one of: 'success', 'error', 'warning', 'info', 'question'.\n * @param {string} [options.icon] - The icon to be displayed in the popup header.\n * @param {string} [options.title] - The title to be displayed in the popup header.\n * @param {string} [options.text] - The main text content of the popup.\n * @param {string} [options.footer] - Additional information to be displayed at the bottom of the popup.\n * @param {object} [options.confirmButton] - Configuration for the confirmation button in the popup.\n * @param {string} options.confirmButton.text - The text to be displayed on the confirmation button.\n * @param {string} [options.confirmButton.color] - The color of the confirmation button (CSS color).\n * @param {object} [options.cancelButton] - Configuration for the cancel button in the popup.\n * @param {string} options.cancelButton.text - The text to be displayed on the cancel button.\n * @param {string} [options.cancelButton.color] - The color of the cancel button (CSS color).\n * @param {number} [options.top] - The top position of the popup (in pixels).\n * @param {number} [options.left] - The left position of the popup (in pixels).\n * @param {number} [options.right] - The right position of the popup (in pixels).\n * @param {number} [options.bottom] - The bottom position of the popup (in pixels).\n * @param {string} [options.width] - The maximum width of the popup (CSS string).\n * @param {string} [options.height] - The maximum height of the popup (CSS string).\n * @param {Element | null} [options.parent] - The parent element to which the popup should be attached. If not provided, it will be attached to the document body.\n * @param {boolean} [options.preventCloseOnBlur] - Prevents the popup from closing when it loses focus (blur event).\n * @param {(result: { value: boolean }) => void} [options.callback] - A callback function that will be invoked when the user interacts with the popup, providing the result of the interaction.\n * @returns {Promise<boolean>} A Promise that resolves based on user interaction with the popup.\n */\n public static async open({\n template,\n type,\n icon,\n title,\n text,\n footer,\n confirmButton,\n cancelButton,\n top,\n left,\n right,\n bottom,\n width,\n height,\n parent,\n preventCloseOnBlur,\n callback\n }: {\n template?: unknown\n type?: 'success' | 'error' | 'warning' | 'info' | 'question'\n icon?: string\n title?: string\n text?: string\n footer?: string\n confirmButton?: { text: string; color?: string }\n cancelButton?: { text: string; color?: string }\n top?: number\n left?: number\n right?: number\n bottom?: number\n width?: string\n height?: string\n parent?: Element | null\n preventCloseOnBlur?: boolean\n callback?: (result: { value: boolean }) => void\n }): Promise<boolean> {\n const owner = parent || document.body\n const target = document.createElement('ox-prompt') as OxPrompt\n\n target.type = type\n target.icon = icon\n target.text = text\n target.titler = title\n target.footer = footer\n target.confirmButton = confirmButton\n target.cancelButton = cancelButton\n target.preventCloseOnBlur = !!preventCloseOnBlur\n\n render(template, target)\n\n target._parent = owner\n owner.appendChild(target)\n\n const result = await target.open({ top, left, right, bottom, width, height })\n\n if (callback) {\n await callback.call(null, { value: result })\n }\n\n return result\n }\n\n /**\n * Static method to open an input popup — a modal replacement for the native `window.prompt()`.\n *\n * Benchmarks `prompt(message, defaultValue)`: shows a text field and resolves with the entered\n * string on confirm, or `null` on cancel/escape/blur. Single-line inputs also confirm on Enter.\n *\n * This is purely additive and does not change the behavior of `OxPrompt.open()`.\n *\n * @returns {Promise<string | null>} The entered text on confirm, or null on cancel.\n */\n public static async prompt({\n title,\n text,\n defaultValue = '',\n placeholder = '',\n type = 'question',\n icon,\n multiline = false,\n confirmButton,\n cancelButton,\n preventCloseOnBlur = true,\n top,\n left,\n right,\n bottom,\n width,\n height,\n parent\n }: {\n title?: string\n text?: string\n defaultValue?: string\n placeholder?: string\n type?: 'success' | 'error' | 'warning' | 'info' | 'question'\n icon?: string\n multiline?: boolean\n confirmButton?: { text: string; color?: string }\n cancelButton?: { text: string; color?: string }\n preventCloseOnBlur?: boolean\n top?: number\n left?: number\n right?: number\n bottom?: number\n width?: string\n height?: string\n parent?: Element | null\n }): Promise<string | null> {\n const holder = { value: defaultValue }\n\n const onInput = (e: Event) => {\n holder.value = (e.target as HTMLInputElement | HTMLTextAreaElement).value\n }\n const onKeydown = (e: KeyboardEvent) => {\n // 단일 라인: Enter 로 확정(native prompt 벤치마킹). multiline 은 개행 유지.\n if (!multiline && e.key === 'Enter') {\n e.preventDefault()\n const host = (e.target as HTMLElement).closest('ox-prompt') as OxPrompt | null\n host?.onConfirm()\n }\n }\n\n // 폭은 컨테이너를 최대로 채우고(min-width 로 최소 크기 보장), textarea 는 세로로만 리사이즈.\n const inputStyle =\n 'width: 100%; min-width: var(--ox-prompt-input-min-width, 320px); box-sizing: border-box; padding: 8px; font: inherit;'\n\n const template = multiline\n ? html`\n <textarea\n rows=\"3\"\n placeholder=${placeholder}\n .value=${defaultValue}\n style=\"${inputStyle} resize: vertical;\"\n @input=${onInput}\n @keydown=${onKeydown}\n ></textarea>\n `\n : html`\n <input\n type=\"text\"\n placeholder=${placeholder}\n .value=${defaultValue}\n style=\"${inputStyle} resize: none;\"\n @input=${onInput}\n @keydown=${onKeydown}\n />\n `\n\n const confirmed = await OxPrompt.open({\n template,\n type,\n icon,\n title,\n text,\n confirmButton: confirmButton || { text: 'OK' },\n cancelButton: cancelButton || { text: 'Cancel' },\n preventCloseOnBlur,\n top,\n left,\n right,\n bottom,\n width,\n height,\n parent\n })\n\n return confirmed ? holder.value : null\n }\n\n /**\n * Opens the popup with specified position and dimensions.\n * @param {object} options - An object specifying the position and dimensions of the popup.\n * @param {number} [options.left] - The left position of the popup (in pixels). If not provided, the popup will be horizontally centered.\n * @param {number} [options.top] - The top position of the popup (in pixels). If not provided, the popup will be vertically centered.\n * @param {number} [options.right] - The right position of the popup (in pixels). Overrides 'left' if both 'left' and 'right' are provided.\n * @param {number} [options.bottom] - The bottom position of the popup (in pixels). Overrides 'top' if both 'top' and 'bottom' are provided.\n * @param {string} [options.width] - The maximum width of the popup (CSS string). If not provided, no width restriction is applied.\n * @param {string} [options.height] - The maximum height of the popup (CSS string). If not provided, no height restriction is applied.\n * @param {boolean} [options.silent=false] - Determines whether to focus the popup automatically (true) or not (false).\n * @returns {Promise<boolean>} A Promise that resolves based on user interaction with the popup.\n */\n open({\n left,\n top,\n right,\n bottom,\n width,\n height,\n silent = false\n }: {\n left?: number\n top?: number\n right?: number\n bottom?: number\n width?: string\n height?: string\n silent?: boolean\n }): Promise<boolean> {\n if (width) {\n this.style.maxWidth = width\n this.style.overflowX = 'auto'\n }\n\n if (height) {\n this.style.maxHeight = height\n this.style.overflowY = 'auto'\n }\n\n if (left === undefined && top === undefined && right === undefined && bottom === undefined) {\n this.style.left = '50%'\n this.style.top = '50%'\n this.style.transform = 'translateX(-50%) translateY(-50%)'\n } else {\n if (left !== undefined) this.style.left = `${left}px`\n if (top !== undefined) this.style.top = `${top}px`\n if (right !== undefined) this.style.right = `${right}px`\n if (bottom !== undefined) this.style.bottom = `${bottom}px`\n }\n\n this.setAttribute('active', '')\n\n // adjust popup position\n requestAnimationFrame(() => {\n const vh = document.body.clientHeight\n const vw = document.body.clientWidth\n\n var bounding = this.getBoundingClientRect()\n\n var h = bounding.height\n var w = bounding.width\n var t = bounding.top\n var l = bounding.left\n\n // If the popup is too large, it will cause overflow scrolling.\n if (vh < h) {\n this.style.height = `${Math.min(Math.max(Math.floor((vh * 2) / 3), vh - (t + 20)), vh)}px`\n this.style.overflow = 'auto'\n h = vh\n }\n\n if (vw < w) {\n this.style.width = `${Math.min(Math.max(Math.floor((vw * 2) / 3), vw - (l + 20)), vw)}px`\n this.style.overflow = 'auto'\n w = vw\n }\n\n // To prevent pop-ups from crossing screen boundaries, use the\n const computedStyle = getComputedStyle(this)\n\n if (t < 0) {\n this.style.top = `calc(${computedStyle.top} + ${t}px)`\n this.style.bottom = ''\n } else if (vh <= t + h) {\n this.style.top = `calc(${computedStyle.top} - ${t + h - vh}px)`\n this.style.bottom = ''\n }\n\n if (l < 0) {\n this.style.left = `calc(${computedStyle.left} + ${l}px)`\n this.style.right = ''\n } else if (vw < l + w) {\n this.style.left = `calc(${computedStyle.left} - ${l + w - vw}px)`\n this.style.right = ''\n }\n })\n\n requestAnimationFrame(() => {\n // auto focusing\n !silent && this.guaranteeFocus()\n })\n\n /* When the window is out of focus, all pop-ups should disappear. */\n window.addEventListener('blur', this._onwindowblur)\n\n return new Promise(resolve => {\n this.resolveFn = resolve\n })\n }\n\n guaranteeFocus(target?: HTMLElement) {\n const focusible = (target || this.renderRoot)?.querySelector(\n ':host > button, :host > [href], :host > input, :host > select, :host > textarea, :host > [tabindex]:not([tabindex=\"-1\"]), :host [type=\"button\"]'\n )\n\n if (focusible) {\n ;(focusible as HTMLElement).focus()\n } else {\n this.focus()\n }\n }\n\n /**\n * Closes the popup.\n */\n close() {\n this.removeAttribute('active')\n\n window.removeEventListener('blur', this._onwindowblur)\n\n if (this._parent) {\n /* this case is when the popup is opened by OxPrompt.open(...) */\n this.removeEventListener('focusout', this._onfocusout)\n this.removeEventListener('keydown', this._onkeydown)\n this.removeEventListener('keyup', this._onkeyup)\n this.removeEventListener('click', this._onclick)\n this.removeEventListener('ox-close', this._onclose)\n this.removeEventListener('ox-collapse', this._oncollapse)\n this.removeEventListener('mouseup', this._onmouseup)\n this.removeEventListener('mousedown', this._onmousedown)\n this.removeEventListener('contextmenu', this._oncontextmenu)\n\n this._parent.removeChild(this)\n delete this._parent\n }\n }\n}\n"]}
|
|
@@ -1 +1 @@
|
|
|
1
|
-
{"fileNames":["../../../node_modules/typescript/lib/lib.es5.d.ts","../../../node_modules/typescript/lib/lib.es2015.d.ts","../../../node_modules/typescript/lib/lib.es2016.d.ts","../../../node_modules/typescript/lib/lib.es2017.d.ts","../../../node_modules/typescript/lib/lib.es2018.d.ts","../../../node_modules/typescript/lib/lib.es2019.d.ts","../../../node_modules/typescript/lib/lib.es2020.d.ts","../../../node_modules/typescript/lib/lib.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.arraybuffer.d.ts","../../../node_modules/typescript/lib/lib.es2017.date.d.ts","../../../node_modules/typescript/lib/lib.es2017.object.d.ts","../../../node_modules/typescript/lib/lib.es2017.sharedmemory.d.ts","../../../node_modules/typescript/lib/lib.es2017.string.d.ts","../../../node_modules/typescript/lib/lib.es2017.intl.d.ts","../../../node_modules/typescript/lib/lib.es2017.typedarrays.d.ts","../../../node_modules/typescript/lib/lib.es2018.asyncgenerator.d.ts","../../../node_modules/typescript/lib/lib.es2018.asynciterable.d.ts","../../../node_modules/typescript/lib/lib.es2018.intl.d.ts","../../../node_modules/typescript/lib/lib.es2018.promise.d.ts","../../../node_modules/typescript/lib/lib.es2018.regexp.d.ts","../../../node_modules/typescript/lib/lib.es2019.array.d.ts","../../../node_modules/typescript/lib/lib.es2019.object.d.ts","../../../node_modules/typescript/lib/lib.es2019.string.d.ts","../../../node_modules/typescript/lib/lib.es2019.symbol.d.ts","../../../node_modules/typescript/lib/lib.es2019.intl.d.ts","../../../node_modules/typescript/lib/lib.es2020.bigint.d.ts","../../../node_modules/typescript/lib/lib.es2020.date.d.ts","../../../node_modules/typescript/lib/lib.es2020.promise.d.ts","../../../node_modules/typescript/lib/lib.es2020.sharedmemory.d.ts","../../../node_modules/typescript/lib/lib.es2020.string.d.ts","../../../node_modules/typescript/lib/lib.es2020.symbol.wellknown.d.ts","../../../node_modules/typescript/lib/lib.es2020.intl.d.ts","../../../node_modules/typescript/lib/lib.es2020.number.d.ts","../../../node_modules/typescript/lib/lib.esnext.disposable.d.ts","../../../node_modules/typescript/lib/lib.esnext.float16.d.ts","../../../node_modules/typescript/lib/lib.decorators.d.ts","../../../node_modules/typescript/lib/lib.decorators.legacy.d.ts","../../../node_modules/tslib/tslib.d.ts","../../../node_modules/tslib/modules/index.d.ts","../../../node_modules/@lit/reactive-element/development/css-tag.d.ts","../../../node_modules/@lit/reactive-element/development/reactive-controller.d.ts","../../../node_modules/@lit/reactive-element/development/reactive-element.d.ts","../../../node_modules/lit-html/development/directive.d.ts","../../../node_modules/@types/trusted-types/lib/index.d.ts","../../../node_modules/lit-html/development/lit-html.d.ts","../../../node_modules/lit-element/development/lit-element.d.ts","../../../node_modules/lit-html/development/is-server.d.ts","../../../node_modules/lit/development/index.d.ts","../../../node_modules/@lit/reactive-element/development/decorators/base.d.ts","../../../node_modules/@lit/reactive-element/development/decorators/custom-element.d.ts","../../../node_modules/@lit/reactive-element/development/decorators/property.d.ts","../../../node_modules/@lit/reactive-element/development/decorators/state.d.ts","../../../node_modules/@lit/reactive-element/development/decorators/event-options.d.ts","../../../node_modules/@lit/reactive-element/development/decorators/query.d.ts","../../../node_modules/@lit/reactive-element/development/decorators/query-all.d.ts","../../../node_modules/@lit/reactive-element/development/decorators/query-async.d.ts","../../../node_modules/@lit/reactive-element/development/decorators/query-assigned-nodes.d.ts","../../../node_modules/@lit/reactive-element/development/decorators/query-assigned-elements.d.ts","../../../node_modules/lit/development/decorators.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/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/box-padding-editor-styles.d.ts","../../styles/dist/src/gradient-direction-styles.d.ts","../../styles/dist/src/property-grid-styles.d.ts","../../styles/dist/src/table-event-styles.d.ts","../../styles/dist/src/inspector-styles.d.ts","../../styles/dist/src/line-styles.d.ts","../../styles/dist/src/index.d.ts","../src/position-converter.ts","../src/ox-popup.ts","../../../node_modules/@material/web/icon/internal/icon.d.ts","../../../node_modules/@material/web/icon/icon.d.ts","../../../node_modules/@types/sortablejs/plugins.d.ts","../../../node_modules/@types/sortablejs/index.d.ts","../src/ox-popup-list.ts","../src/ox-popup-menu.ts","../src/ox-popup-menuitem.ts","../../../node_modules/@material/web/elevation/internal/elevation.d.ts","../../../node_modules/@material/web/elevation/elevation.d.ts","../../../node_modules/@material/web/internal/controller/attachable-controller.d.ts","../../../node_modules/@material/web/focus/internal/focus-ring.d.ts","../../../node_modules/@material/web/focus/md-focus-ring.d.ts","../../../node_modules/@material/web/ripple/internal/ripple.d.ts","../../../node_modules/@material/web/ripple/ripple.d.ts","../../../node_modules/@material/web/labs/behaviors/mixin.d.ts","../../../node_modules/@material/web/labs/behaviors/element-internals.d.ts","../../../node_modules/@material/web/internal/controller/form-submitter.d.ts","../../../node_modules/@material/web/button/internal/button.d.ts","../../../node_modules/@material/web/button/internal/filled-button.d.ts","../../../node_modules/@material/web/button/filled-button.d.ts","../../../node_modules/@material/web/button/internal/outlined-button.d.ts","../../../node_modules/@material/web/button/outlined-button.d.ts","../../../node_modules/@material/web/typography/md-typescale-styles.d.ts","../src/ox-prompt.ts","../../../node_modules/lit-html/development/directives/if-defined.d.ts","../../../node_modules/lit/development/directives/if-defined.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/has-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/longpressable.d.ts","../../utils/dist/src/decode-html.d.ts","../../utils/dist/src/script-loader.d.ts","../../utils/dist/src/reactive-controllers/tooltip-reactive-controller.d.ts","../../utils/dist/src/reactive-controllers/index.d.ts","../../utils/dist/src/index.d.ts","../src/ox-floating-overlay.ts","../src/open-popup.ts","../src/index.ts","../../../node_modules/@material/web/button/internal/elevated-button.d.ts","../../../node_modules/@material/web/button/elevated-button.d.ts","../../../node_modules/@material/web/button/internal/filled-tonal-button.d.ts","../../../node_modules/@material/web/button/filled-tonal-button.d.ts","../../../node_modules/@material/web/button/internal/text-button.d.ts","../../../node_modules/@material/web/button/text-button.d.ts","../../../node_modules/@material/web/labs/behaviors/form-associated.d.ts","../../../node_modules/@material/web/labs/behaviors/validators/validator.d.ts","../../../node_modules/@material/web/labs/behaviors/constraint-validation.d.ts","../../../node_modules/@material/web/labs/behaviors/validators/checkbox-validator.d.ts","../../../node_modules/@material/web/checkbox/internal/checkbox.d.ts","../../../node_modules/@material/web/checkbox/checkbox.d.ts","../../../node_modules/lit-html/development/directives/class-map.d.ts","../../../node_modules/lit/development/directives/class-map.d.ts","../../../node_modules/@material/web/chips/internal/chip.d.ts","../../../node_modules/@material/web/chips/internal/assist-chip.d.ts","../../../node_modules/@material/web/chips/assist-chip.d.ts","../../../node_modules/@material/web/chips/internal/chip-set.d.ts","../../../node_modules/@material/web/chips/chip-set.d.ts","../../../node_modules/@material/web/chips/internal/multi-action-chip.d.ts","../../../node_modules/@material/web/chips/internal/filter-chip.d.ts","../../../node_modules/@material/web/chips/filter-chip.d.ts","../../../node_modules/@material/web/chips/internal/input-chip.d.ts","../../../node_modules/@material/web/chips/input-chip.d.ts","../../../node_modules/@material/web/chips/internal/suggestion-chip.d.ts","../../../node_modules/@material/web/chips/suggestion-chip.d.ts","../../../node_modules/@material/web/divider/internal/divider.d.ts","../../../node_modules/@material/web/divider/divider.d.ts","../../../node_modules/@material/web/dialog/internal/animations.d.ts","../../../node_modules/@material/web/dialog/internal/dialog.d.ts","../../../node_modules/@material/web/dialog/dialog.d.ts","../../../node_modules/@material/web/fab/internal/shared.d.ts","../../../node_modules/@material/web/fab/internal/fab.d.ts","../../../node_modules/@material/web/fab/branded-fab.d.ts","../../../node_modules/@material/web/fab/fab.d.ts","../../../node_modules/@material/web/field/internal/field.d.ts","../../../node_modules/@material/web/field/internal/filled-field.d.ts","../../../node_modules/@material/web/field/filled-field.d.ts","../../../node_modules/@material/web/field/internal/outlined-field.d.ts","../../../node_modules/@material/web/field/outlined-field.d.ts","../../../node_modules/@material/web/iconbutton/internal/icon-button.d.ts","../../../node_modules/@material/web/iconbutton/filled-icon-button.d.ts","../../../node_modules/@material/web/iconbutton/filled-tonal-icon-button.d.ts","../../../node_modules/@material/web/iconbutton/icon-button.d.ts","../../../node_modules/@material/web/iconbutton/outlined-icon-button.d.ts","../../../node_modules/@material/web/list/internal/list-navigation-helpers.d.ts","../../../node_modules/@material/web/list/internal/list.d.ts","../../../node_modules/@material/web/list/list.d.ts","../../../node_modules/@material/web/labs/item/internal/item.d.ts","../../../node_modules/@material/web/labs/item/item.d.ts","../../../node_modules/@material/web/list/internal/listitem/list-item.d.ts","../../../node_modules/@material/web/list/list-item.d.ts","../../../node_modules/@material/web/menu/internal/controllers/menuitemcontroller.d.ts","../../../node_modules/lit-html/development/directives/style-map.d.ts","../../../node_modules/lit/development/directives/style-map.d.ts","../../../node_modules/@material/web/menu/internal/controllers/surfacepositioncontroller.d.ts","../../../node_modules/@material/web/menu/internal/controllers/shared.d.ts","../../../node_modules/@material/web/menu/internal/controllers/typeaheadcontroller.d.ts","../../../node_modules/@material/web/menu/internal/menu.d.ts","../../../node_modules/@material/web/menu/menu.d.ts","../../../node_modules/@material/web/menu/internal/menuitem/menu-item.d.ts","../../../node_modules/@material/web/menu/menu-item.d.ts","../../../node_modules/@material/web/menu/internal/submenu/sub-menu.d.ts","../../../node_modules/@material/web/menu/sub-menu.d.ts","../../../node_modules/@material/web/progress/internal/progress.d.ts","../../../node_modules/@material/web/progress/internal/circular-progress.d.ts","../../../node_modules/@material/web/progress/circular-progress.d.ts","../../../node_modules/@material/web/progress/internal/linear-progress.d.ts","../../../node_modules/@material/web/progress/linear-progress.d.ts","../../../node_modules/@material/web/labs/behaviors/validators/radio-validator.d.ts","../../../node_modules/@material/web/labs/behaviors/focusable.d.ts","../../../node_modules/@material/web/radio/internal/radio.d.ts","../../../node_modules/@material/web/radio/radio.d.ts","../../../node_modules/lit-html/development/static.d.ts","../../../node_modules/lit/development/static-html.d.ts","../../../node_modules/@material/web/labs/behaviors/on-report-validity.d.ts","../../../node_modules/@material/web/labs/behaviors/validators/select-validator.d.ts","../../../node_modules/@material/web/select/internal/selectoption/select-option.d.ts","../../../node_modules/@material/web/select/internal/select.d.ts","../../../node_modules/@material/web/select/internal/filled-select.d.ts","../../../node_modules/@material/web/select/filled-select.d.ts","../../../node_modules/@material/web/select/internal/outlined-select.d.ts","../../../node_modules/@material/web/select/outlined-select.d.ts","../../../node_modules/@material/web/select/select-option.d.ts","../../../node_modules/@material/web/slider/internal/slider.d.ts","../../../node_modules/@material/web/slider/slider.d.ts","../../../node_modules/@material/web/switch/internal/switch.d.ts","../../../node_modules/@material/web/switch/switch.d.ts","../../../node_modules/@material/web/tabs/internal/tab.d.ts","../../../node_modules/@material/web/tabs/internal/primary-tab.d.ts","../../../node_modules/@material/web/tabs/primary-tab.d.ts","../../../node_modules/@material/web/tabs/internal/secondary-tab.d.ts","../../../node_modules/@material/web/tabs/secondary-tab.d.ts","../../../node_modules/@material/web/tabs/internal/tabs.d.ts","../../../node_modules/@material/web/tabs/tabs.d.ts","../../../node_modules/@material/web/textfield/internal/text-field.d.ts","../../../node_modules/@material/web/textfield/internal/filled-text-field.d.ts","../../../node_modules/@material/web/textfield/filled-text-field.d.ts","../../../node_modules/@material/web/textfield/internal/outlined-text-field.d.ts","../../../node_modules/@material/web/textfield/outlined-text-field.d.ts","../../../node_modules/@material/web/all.d.ts","../stories/open-popup.stories.ts","../../input/dist/src/ox-form-field.d.ts","../../input/dist/src/ox-checkbox.d.ts","../stories/ox-popup-list-image-2.stories.ts","../stories/ox-popup-list-image.stories.ts","../stories/ox-popup-list-sortable.stories.ts","../stories/ox-popup-list.stories.ts","../stories/ox-popup-menu.stories.ts","../stories/ox-popup.stories.ts","../stories/ox-prompt-icon.stories.ts","../stories/ox-prompt-normal.stories.ts","../stories/ox-prompt.stories.ts","../../../node_modules/@types/node/compatibility/iterators.d.ts","../../../node_modules/@types/node/globals.typedarray.d.ts","../../../node_modules/@types/node/buffer.buffer.d.ts","../../../node_modules/@types/node/globals.d.ts","../../../node_modules/@types/node/web-globals/abortcontroller.d.ts","../../../node_modules/@types/node/web-globals/blob.d.ts","../../../node_modules/@types/node/web-globals/console.d.ts","../../../node_modules/@types/node/web-globals/crypto.d.ts","../../../node_modules/@types/node/web-globals/domexception.d.ts","../../../node_modules/@types/node/web-globals/encoding.d.ts","../../../node_modules/@types/node/web-globals/events.d.ts","../../../node_modules/undici-types/utility.d.ts","../../../node_modules/undici-types/header.d.ts","../../../node_modules/undici-types/readable.d.ts","../../../node_modules/undici-types/fetch.d.ts","../../../node_modules/undici-types/formdata.d.ts","../../../node_modules/undici-types/connector.d.ts","../../../node_modules/undici-types/client-stats.d.ts","../../../node_modules/undici-types/client.d.ts","../../../node_modules/undici-types/errors.d.ts","../../../node_modules/undici-types/dispatcher.d.ts","../../../node_modules/undici-types/global-dispatcher.d.ts","../../../node_modules/undici-types/global-origin.d.ts","../../../node_modules/undici-types/pool-stats.d.ts","../../../node_modules/undici-types/pool.d.ts","../../../node_modules/undici-types/handlers.d.ts","../../../node_modules/undici-types/balanced-pool.d.ts","../../../node_modules/undici-types/round-robin-pool.d.ts","../../../node_modules/undici-types/h2c-client.d.ts","../../../node_modules/undici-types/agent.d.ts","../../../node_modules/undici-types/mock-interceptor.d.ts","../../../node_modules/undici-types/mock-call-history.d.ts","../../../node_modules/undici-types/mock-agent.d.ts","../../../node_modules/undici-types/mock-client.d.ts","../../../node_modules/undici-types/mock-pool.d.ts","../../../node_modules/undici-types/snapshot-agent.d.ts","../../../node_modules/undici-types/mock-errors.d.ts","../../../node_modules/undici-types/proxy-agent.d.ts","../../../node_modules/undici-types/socks5-proxy-agent.d.ts","../../../node_modules/undici-types/env-http-proxy-agent.d.ts","../../../node_modules/undici-types/retry-handler.d.ts","../../../node_modules/undici-types/retry-agent.d.ts","../../../node_modules/undici-types/api.d.ts","../../../node_modules/undici-types/cache-interceptor.d.ts","../../../node_modules/undici-types/interceptors.d.ts","../../../node_modules/undici-types/util.d.ts","../../../node_modules/undici-types/cookies.d.ts","../../../node_modules/undici-types/patch.d.ts","../../../node_modules/undici-types/websocket.d.ts","../../../node_modules/undici-types/eventsource.d.ts","../../../node_modules/undici-types/diagnostics-channel.d.ts","../../../node_modules/undici-types/content-type.d.ts","../../../node_modules/undici-types/cache.d.ts","../../../node_modules/undici-types/index.d.ts","../../../node_modules/@types/node/web-globals/fetch.d.ts","../../../node_modules/@types/node/web-globals/importmeta.d.ts","../../../node_modules/@types/node/web-globals/messaging.d.ts","../../../node_modules/@types/node/web-globals/navigator.d.ts","../../../node_modules/@types/node/web-globals/performance.d.ts","../../../node_modules/@types/node/web-globals/storage.d.ts","../../../node_modules/@types/node/web-globals/streams.d.ts","../../../node_modules/@types/node/web-globals/timers.d.ts","../../../node_modules/@types/node/web-globals/url.d.ts","../../../node_modules/@types/node/assert.d.ts","../../../node_modules/@types/node/assert/strict.d.ts","../../../node_modules/@types/node/async_hooks.d.ts","../../../node_modules/@types/node/buffer.d.ts","../../../node_modules/@types/node/child_process.d.ts","../../../node_modules/@types/node/cluster.d.ts","../../../node_modules/@types/node/console.d.ts","../../../node_modules/@types/node/constants.d.ts","../../../node_modules/@types/node/crypto.d.ts","../../../node_modules/@types/node/dgram.d.ts","../../../node_modules/@types/node/diagnostics_channel.d.ts","../../../node_modules/@types/node/dns.d.ts","../../../node_modules/@types/node/dns/promises.d.ts","../../../node_modules/@types/node/domain.d.ts","../../../node_modules/@types/node/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/inspector.generated.d.ts","../../../node_modules/@types/node/inspector/promises.d.ts","../../../node_modules/@types/node/module.d.ts","../../../node_modules/@types/node/net.d.ts","../../../node_modules/buffer/index.d.ts","../../../node_modules/@types/node/os.d.ts","../../../node_modules/@types/node/path.d.ts","../../../node_modules/@types/node/path/posix.d.ts","../../../node_modules/@types/node/path/win32.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/quic.d.ts","../../../node_modules/@types/node/readline.d.ts","../../../node_modules/@types/node/readline/promises.d.ts","../../../node_modules/@types/node/repl.d.ts","../../../node_modules/@types/node/sea.d.ts","../../../node_modules/@types/node/sqlite.d.ts","../../../node_modules/@types/node/stream.d.ts","../../../node_modules/@types/node/stream/consumers.d.ts","../../../node_modules/@types/node/stream/iter.d.ts","../../../node_modules/@types/node/stream/promises.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/test/reporters.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/util/types.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/zlib/iter.d.ts","../../../node_modules/@types/node/index.d.ts","../../../node_modules/@types/mocha/index.d.ts"],"fileIdsList":[[260,324,332,336,339,341,342,343,356],[60,260,324,332,336,339,341,342,343,356],[53,60,260,324,332,336,339,341,342,343,356],[53,60,68,260,324,332,336,339,341,342,343,356],[62,260,324,332,336,339,341,342,343,356],[51,52,260,324,332,336,339,341,342,343,356],[88,95,98,100,106,108,146,148,150,156,161,163,166,168,170,172,175,178,179,182,184,186,187,188,189,192,196,204,206,208,211,213,217,225,227,228,230,232,235,237,239,242,244,260,324,332,336,339,341,342,343,356],[59,145,260,324,332,336,339,341,342,343,356],[59,105,260,324,332,336,339,341,342,343,356],[59,147,260,324,332,336,339,341,342,343,356],[56,59,98,100,101,102,103,260,324,332,336,339,341,342,343,356],[56,95,104,260,324,332,336,339,341,342,343,356],[56,104,260,324,332,336,339,341,342,343,356],[104,260,324,332,336,339,341,342,343,356],[59,107,260,324,332,336,339,341,342,343,356],[59,149,260,324,332,336,339,341,342,343,356],[59,155,260,324,332,336,339,341,342,343,356],[56,59,98,100,101,102,151,153,154,260,324,332,336,339,341,342,343,356],[59,160,260,324,332,336,339,341,342,343,356],[59,162,260,324,332,336,339,341,342,343,356],[59,165,260,324,332,336,339,341,342,343,356],[59,167,260,324,332,336,339,341,342,343,356],[56,95,159,260,324,332,336,339,341,342,343,356],[56,59,159,260,324,332,336,339,341,342,343,356],[59,98,100,101,158,260,324,332,336,339,341,342,343,356],[56,59,95,164,260,324,332,336,339,341,342,343,356],[56,164,260,324,332,336,339,341,342,343,356],[56,159,260,324,332,336,339,341,342,343,356],[160,260,324,332,336,339,341,342,343,356],[59,169,260,324,332,336,339,341,342,343,356],[59,174,260,324,332,336,339,341,342,343,356],[56,59,101,172,173,260,324,332,336,339,341,342,343,356],[59,171,260,324,332,336,339,341,342,343,356],[59,260,324,332,336,339,341,342,343,356],[59,94,260,324,332,336,339,341,342,343,356],[56,59,260,324,332,336,339,341,342,343,356],[59,176,177,260,324,332,336,339,341,342,343,356],[176,260,324,332,336,339,341,342,343,356],[56,59,95,98,100,101,260,324,332,336,339,341,342,343,356],[59,181,260,324,332,336,339,341,342,343,356],[56,180,260,324,332,336,339,341,342,343,356],[59,183,260,324,332,336,339,341,342,343,356],[59,96,260,324,332,336,339,341,342,343,356],[59,97,260,324,332,336,339,341,342,343,356],[59,87,260,324,332,336,339,341,342,343,356],[59,185,260,324,332,336,339,341,342,343,356],[59,102,260,324,332,336,339,341,342,343,356],[59,101,102,151,152,260,324,332,336,339,341,342,343,356],[59,101,260,324,332,336,339,341,342,343,356],[59,101,102,260,324,332,336,339,341,342,343,356],[59,101,102,153,260,324,332,336,339,341,342,343,356],[152,260,324,332,336,339,341,342,343,356],[59,193,260,324,332,336,339,341,342,343,356],[56,59,190,260,324,332,336,339,341,342,343,356],[59,98,100,101,158,190,194,260,324,332,336,339,341,342,343,356],[59,195,260,324,332,336,339,341,342,343,356],[59,191,260,324,332,336,339,341,342,343,356],[59,197,200,260,324,332,336,339,341,342,343,356],[59,199,260,324,332,336,339,341,342,343,356],[197,260,324,332,336,339,341,342,343,356],[56,59,95,98,197,200,201,202,260,324,332,336,339,341,342,343,356],[59,98,100,101,158,194,197,260,324,332,336,339,341,342,343,356],[56,59,197,201,203,260,324,332,336,339,341,342,343,356],[59,197,201,205,260,324,332,336,339,341,342,343,356],[59,190,197,201,203,260,324,332,336,339,341,342,343,356],[59,207,260,324,332,336,339,341,342,343,356],[59,210,260,324,332,336,339,341,342,343,356],[56,209,260,324,332,336,339,341,342,343,356],[59,212,260,324,332,336,339,341,342,343,356],[56,59,98,100,101,102,151,153,214,215,260,324,332,336,339,341,342,343,356],[59,216,260,324,332,336,339,341,342,343,356],[56,59,96,260,324,332,336,339,341,342,343,356],[59,99,260,324,332,336,339,341,342,343,356],[59,224,260,324,332,336,339,341,342,343,356],[182,218,223,260,324,332,336,339,341,342,343,356],[184,218,223,260,324,332,336,339,341,342,343,356],[56,59,101,102,151,153,180,204,219,220,221,222,260,324,332,336,339,341,342,343,356],[56,59,98,100,101,158,194,197,260,324,332,336,339,341,342,343,356],[59,226,260,324,332,336,339,341,342,343,356],[59,222,260,324,332,336,339,341,342,343,356],[56,59,95,98,100,101,102,151,260,324,332,336,339,341,342,343,356],[59,229,260,324,332,336,339,341,342,343,356],[59,98,100,101,102,151,153,154,260,324,332,336,339,341,342,343,356],[59,231,260,324,332,336,339,341,342,343,356],[233,260,324,332,336,339,341,342,343,356],[56,59,95,98,100,101,158,215,260,324,332,336,339,341,342,343,356],[56,59,172,233,260,324,332,336,339,341,342,343,356],[59,234,260,324,332,336,339,341,342,343,356],[59,236,260,324,332,336,339,341,342,343,356],[59,238,260,324,332,336,339,341,342,343,356],[59,182,218,240,241,260,324,332,336,339,341,342,343,356],[182,218,240,260,324,332,336,339,341,342,343,356],[184,218,240,260,324,332,336,339,341,342,343,356],[56,59,101,102,151,152,153,219,220,260,324,332,336,339,341,342,343,356],[59,184,218,240,243,260,324,332,336,339,341,342,343,356],[260,321,322,324,332,336,339,341,342,343,356],[260,323,324,332,336,339,341,342,343,356],[324,332,336,339,341,342,343,356],[260,324,332,336,339,341,342,343,356,365],[260,324,325,330,332,335,336,339,341,342,343,345,356,361,374],[260,324,325,326,332,335,336,339,341,342,343,356],[260,324,327,332,336,339,341,342,343,356,375],[260,324,328,329,332,336,339,341,342,343,347,356],[260,324,329,332,336,339,341,342,343,356,361,371],[260,324,330,332,335,336,339,341,342,343,345,356],[260,323,324,331,332,336,339,341,342,343,356],[260,324,332,333,336,339,341,342,343,356],[260,324,332,334,335,336,339,341,342,343,356],[260,323,324,332,335,336,339,341,342,343,356],[260,324,332,335,336,337,339,341,342,343,356,361,374],[260,324,332,335,336,337,339,341,342,343,356,361,363,365],[260,311,324,332,335,336,338,339,341,342,343,345,356,361,374],[260,324,332,335,336,338,339,341,342,343,345,356,361,371,374],[260,324,332,336,338,339,340,341,342,343,356,361,371,374],[258,259,260,261,262,263,264,265,266,267,268,312,313,314,315,316,317,318,319,320,321,322,323,324,325,326,327,328,329,330,331,332,333,334,335,336,337,338,339,340,341,342,343,344,345,347,348,349,350,351,352,353,354,355,356,357,358,359,360,361,362,363,364,365,366,367,368,369,370,371,372,373,374,375,376,377,378,379,380,381,382],[260,324,332,335,336,339,341,342,343,356],[260,324,332,336,339,341,343,356],[260,324,332,336,339,341,342,343,344,356,374],[260,324,332,335,336,339,341,342,343,345,356,361],[260,324,332,336,339,341,342,343,347,356],[260,324,332,336,339,341,342,343,348,356],[260,324,332,335,336,339,341,342,343,351,356],[260,321,322,323,324,325,326,327,328,329,330,331,332,333,334,335,336,337,338,339,340,341,342,343,344,345,347,348,349,350,351,352,353,354,355,356,357,358,359,360,361,362,364,365,366,367,368,369,370,371,372,373,374,375,376,377,378,379,380,381],[260,324,332,336,339,341,342,343,353,356],[260,324,332,336,339,341,342,343,354,356],[260,324,329,332,336,339,341,342,343,345,356,365],[260,324,332,335,336,339,341,342,343,356,357],[260,324,332,336,339,341,342,343,356,358,375,378],[260,324,332,335,336,339,341,342,343,356,361,364,365],[260,324,332,336,339,341,342,343,356,362,365],[260,324,332,336,339,341,342,343,356,363],[260,324,332,336,339,341,342,343,356,365,375],[260,324,332,336,339,341,342,343,356,366],[260,321,324,332,336,339,341,342,343,356,361,368,374],[260,324,332,336,339,341,342,343,356,361,367],[260,324,332,335,336,339,341,342,343,356,369,370],[260,324,332,336,339,341,342,343,356,369,370],[260,324,329,332,336,339,341,342,343,345,356,361,371],[260,324,332,336,339,341,342,343,356,372],[260,324,332,336,339,341,342,343,345,356,373],[260,324,332,336,338,339,341,342,343,354,356,374],[260,324,332,336,339,341,342,343,356,375,376],[260,324,329,332,336,339,341,342,343,356,376],[260,324,332,336,339,341,342,343,356,361,377],[260,324,332,336,339,341,342,343,344,356,378],[260,324,332,336,339,341,342,343,356,379],[260,324,327,332,336,339,341,342,343,356],[260,324,329,332,336,339,341,342,343,356],[260,324,332,336,339,341,342,343,356,375],[260,311,324,332,336,339,341,342,343,356],[260,324,332,336,339,341,342,343,356,374],[260,324,332,336,339,341,342,343,356,380],[260,324,332,336,339,341,342,343,351,356],[260,324,332,336,339,341,342,343,356,370],[260,311,324,332,335,336,337,339,341,342,343,351,356,361,365,374,377,378,380],[260,324,332,336,339,341,342,343,356,361,381],[260,324,332,336,339,341,342,343,356,363,382],[89,260,324,332,336,339,341,342,343,356],[90,260,324,332,336,339,341,342,343,356],[53,56,260,324,332,336,339,341,342,343,356],[56,260,324,332,336,339,341,342,343,356],[54,56,260,324,332,336,339,341,342,343,356],[54,55,260,324,332,336,339,341,342,343,356],[61,62,63,64,65,66,67,68,69,260,324,332,336,339,341,342,343,356],[157,260,324,332,336,339,341,342,343,356],[111,260,324,332,336,339,341,342,343,356],[198,260,324,332,336,339,341,342,343,356],[53,56,57,58,260,324,332,336,339,341,342,343,356],[218,260,324,332,336,339,341,342,343,356],[49,260,324,332,336,339,341,342,343,356],[260,275,278,281,282,324,332,336,339,341,342,343,356,374],[260,278,324,332,336,339,341,342,343,356,361,374],[260,278,282,324,332,336,339,341,342,343,356,374],[260,324,332,336,339,341,342,343,356,361],[260,272,324,332,336,339,341,342,343,356],[260,276,324,332,336,339,341,342,343,356],[260,274,275,278,324,332,336,339,341,342,343,356,374],[260,324,332,336,339,341,342,343,345,356,371],[260,324,332,336,339,341,342,343,356,383],[260,272,324,332,336,339,341,342,343,356,383],[260,274,278,324,332,336,339,341,342,343,345,356,374],[260,269,270,271,273,277,324,332,335,336,339,341,342,343,356,361,374],[260,278,287,295,324,332,336,339,341,342,343,356],[260,270,276,324,332,336,339,341,342,343,356],[260,278,305,306,324,332,336,339,341,342,343,356],[260,270,273,278,324,332,336,339,341,342,343,356,365,374,383],[260,278,324,332,336,339,341,342,343,356],[260,274,278,324,332,336,339,341,342,343,356,374],[260,269,324,332,336,339,341,342,343,356],[260,272,273,274,276,277,278,279,280,282,283,284,285,286,287,288,289,290,291,292,293,294,295,296,297,298,299,300,301,302,303,304,306,307,308,309,310,324,332,336,339,341,342,343,356],[260,278,298,301,324,332,336,339,341,342,343,356],[260,278,287,288,289,324,332,336,339,341,342,343,356],[260,276,278,288,290,324,332,336,339,341,342,343,356],[260,277,324,332,336,339,341,342,343,356],[260,270,272,278,324,332,336,339,341,342,343,356],[260,278,282,288,290,324,332,336,339,341,342,343,356],[260,282,324,332,336,339,341,342,343,356],[260,276,278,281,324,332,336,339,341,342,343,356,374],[260,270,274,278,287,324,332,336,339,341,342,343,356],[260,278,298,324,332,336,339,341,342,343,356],[260,290,324,332,336,339,341,342,343,356],[260,270,274,278,282,324,332,336,339,341,342,343,356],[260,272,278,305,324,332,336,339,341,342,343,356,365,380,383],[56,59,247,260,324,332,336,339,341,342,343,356],[50,86,91,92,93,110,143,260,324,332,336,339,341,342,343,356],[50,59,142,260,324,332,336,339,341,342,343,356],[50,59,70,84,88,112,141,260,324,332,336,339,341,342,343,356],[50,56,59,70,85,86,88,90,260,324,332,336,339,341,342,343,356],[50,56,59,70,85,86,260,324,332,336,339,341,342,343,356],[50,59,70,92,260,324,332,336,339,341,342,343,356],[50,56,59,70,84,85,260,324,332,336,339,341,342,343,356],[50,56,59,70,84,88,106,108,109,260,324,332,336,339,341,342,343,356],[50,260,324,332,336,339,341,342,343,356],[50,59,109,143,245,260,324,332,336,339,341,342,343,356],[50,59,91,109,245,248,260,324,332,336,339,341,342,343,356],[50,59,88,91,108,109,248,260,324,332,336,339,341,342,343,356],[50,59,92,93,109,245,248,260,324,332,336,339,341,342,343,356],[50,59,86,109,245,260,324,332,336,339,341,342,343,356],[50,59,109,110,245,260,324,332,336,339,341,342,343,356],[50,59,109,110,260,324,332,336,339,341,342,343,356],[71,72,73,74,75,76,77,78,79,80,81,82,83,260,324,332,336,339,341,342,343,356],[113,114,115,116,117,118,119,120,121,122,123,124,127,128,129,130,131,132,133,134,135,136,137,138,140,260,324,332,336,339,341,342,343,356],[139,260,324,332,336,339,341,342,343,356],[125,126,260,324,332,336,339,341,342,343,356],[126,260,324,332,336,339,341,342,343,356],[125,260,324,332,336,339,341,342,343,356]],"fileInfos":[{"version":"c430d44666289dae81f30fa7b2edebf186ecc91a2d4c71266ea6ae76388792e1","affectsGlobalScope":true,"impliedFormat":1},{"version":"45b7ab580deca34ae9729e97c13cfd999df04416a79116c3bfb483804f85ded4","impliedFormat":1},{"version":"3facaf05f0c5fc569c5649dd359892c98a85557e3e0c847964caeb67076f4d75","impliedFormat":1},{"version":"e44bb8bbac7f10ecc786703fe0a6a4b952189f908707980ba8f3c8975a760962","impliedFormat":1},{"version":"5e1c4c362065a6b95ff952c0eab010f04dcd2c3494e813b493ecfd4fcb9fc0d8","impliedFormat":1},{"version":"68d73b4a11549f9c0b7d352d10e91e5dca8faa3322bfb77b661839c42b1ddec7","impliedFormat":1},{"version":"5efce4fc3c29ea84e8928f97adec086e3dc876365e0982cc8479a07954a3efd4","impliedFormat":1},{"version":"080941d9f9ff9307f7e27a83bcd888b7c8270716c39af943532438932ec1d0b9","affectsGlobalScope":true,"impliedFormat":1},{"version":"c57796738e7f83dbc4b8e65132f11a377649c00dd3eee333f672b8f0a6bea671","affectsGlobalScope":true,"impliedFormat":1},{"version":"dc2df20b1bcdc8c2d34af4926e2c3ab15ffe1160a63e58b7e09833f616efff44","affectsGlobalScope":true,"impliedFormat":1},{"version":"515d0b7b9bea2e31ea4ec968e9edd2c39d3eebf4a2d5cbd04e88639819ae3b71","affectsGlobalScope":true,"impliedFormat":1},{"version":"0559b1f683ac7505ae451f9a96ce4c3c92bdc71411651ca6ddb0e88baaaad6a3","affectsGlobalScope":true,"impliedFormat":1},{"version":"0dc1e7ceda9b8b9b455c3a2d67b0412feab00bd2f66656cd8850e8831b08b537","affectsGlobalScope":true,"impliedFormat":1},{"version":"ce691fb9e5c64efb9547083e4a34091bcbe5bdb41027e310ebba8f7d96a98671","affectsGlobalScope":true,"impliedFormat":1},{"version":"8d697a2a929a5fcb38b7a65594020fcef05ec1630804a33748829c5ff53640d0","affectsGlobalScope":true,"impliedFormat":1},{"version":"4ff2a353abf8a80ee399af572debb8faab2d33ad38c4b4474cff7f26e7653b8d","affectsGlobalScope":true,"impliedFormat":1},{"version":"fb0f136d372979348d59b3f5020b4cdb81b5504192b1cacff5d1fbba29378aa1","affectsGlobalScope":true,"impliedFormat":1},{"version":"d15bea3d62cbbdb9797079416b8ac375ae99162a7fba5de2c6c505446486ac0a","affectsGlobalScope":true,"impliedFormat":1},{"version":"68d18b664c9d32a7336a70235958b8997ebc1c3b8505f4f1ae2b7e7753b87618","affectsGlobalScope":true,"impliedFormat":1},{"version":"eb3d66c8327153d8fa7dd03f9c58d351107fe824c79e9b56b462935176cdf12a","affectsGlobalScope":true,"impliedFormat":1},{"version":"38f0219c9e23c915ef9790ab1d680440d95419ad264816fa15009a8851e79119","affectsGlobalScope":true,"impliedFormat":1},{"version":"69ab18c3b76cd9b1be3d188eaf8bba06112ebbe2f47f6c322b5105a6fbc45a2e","affectsGlobalScope":true,"impliedFormat":1},{"version":"a680117f487a4d2f30ea46f1b4b7f58bef1480456e18ba53ee85c2746eeca012","affectsGlobalScope":true,"impliedFormat":1},{"version":"2f11ff796926e0832f9ae148008138ad583bd181899ab7dd768a2666700b1893","affectsGlobalScope":true,"impliedFormat":1},{"version":"4de680d5bb41c17f7f68e0419412ca23c98d5749dcaaea1896172f06435891fc","affectsGlobalScope":true,"impliedFormat":1},{"version":"954296b30da6d508a104a3a0b5d96b76495c709785c1d11610908e63481ee667","affectsGlobalScope":true,"impliedFormat":1},{"version":"ac9538681b19688c8eae65811b329d3744af679e0bdfa5d842d0e32524c73e1c","affectsGlobalScope":true,"impliedFormat":1},{"version":"0a969edff4bd52585473d24995c5ef223f6652d6ef46193309b3921d65dd4376","affectsGlobalScope":true,"impliedFormat":1},{"version":"9e9fbd7030c440b33d021da145d3232984c8bb7916f277e8ffd3dc2e3eae2bdb","affectsGlobalScope":true,"impliedFormat":1},{"version":"811ec78f7fefcabbda4bfa93b3eb67d9ae166ef95f9bff989d964061cbf81a0c","affectsGlobalScope":true,"impliedFormat":1},{"version":"717937616a17072082152a2ef351cb51f98802fb4b2fdabd32399843875974ca","affectsGlobalScope":true,"impliedFormat":1},{"version":"d7e7d9b7b50e5f22c915b525acc5a49a7a6584cf8f62d0569e557c5cfc4b2ac2","affectsGlobalScope":true,"impliedFormat":1},{"version":"71c37f4c9543f31dfced6c7840e068c5a5aacb7b89111a4364b1d5276b852557","affectsGlobalScope":true,"impliedFormat":1},{"version":"576711e016cf4f1804676043e6a0a5414252560eb57de9faceee34d79798c850","affectsGlobalScope":true,"impliedFormat":1},{"version":"89c1b1281ba7b8a96efc676b11b264de7a8374c5ea1e6617f11880a13fc56dc6","affectsGlobalScope":true,"impliedFormat":1},{"version":"74f7fa2d027d5b33eb0471c8e82a6c87216223181ec31247c357a3e8e2fddc5b","affectsGlobalScope":true,"impliedFormat":1},{"version":"d6d7ae4d1f1f3772e2a3cde568ed08991a8ae34a080ff1151af28b7f798e22ca","affectsGlobalScope":true,"impliedFormat":1},{"version":"063600664504610fe3e99b717a1223f8b1900087fab0b4cad1496a114744f8df","affectsGlobalScope":true,"impliedFormat":1},{"version":"934019d7e3c81950f9a8426d093458b65d5aff2c7c1511233c0fd5b941e608ab","affectsGlobalScope":true,"impliedFormat":1},{"version":"52ada8e0b6e0482b728070b7639ee42e83a9b1c22d205992756fe020fd9f4a47","affectsGlobalScope":true,"impliedFormat":1},{"version":"3bdefe1bfd4d6dee0e26f928f93ccc128f1b64d5d501ff4a8cf3c6371200e5e6","affectsGlobalScope":true,"impliedFormat":1},{"version":"59fb2c069260b4ba00b5643b907ef5d5341b167e7d1dbf58dfd895658bda2867","affectsGlobalScope":true,"impliedFormat":1},{"version":"639e512c0dfc3fad96a84caad71b8834d66329a1f28dc95e3946c9b58176c73a","affectsGlobalScope":true,"impliedFormat":1},{"version":"368af93f74c9c932edd84c58883e736c9e3d53cec1fe24c0b0ff451f529ceab1","affectsGlobalScope":true,"impliedFormat":1},{"version":"51ad4c928303041605b4d7ae32e0c1ee387d43a24cd6f1ebf4a2699e1076d4fa","affectsGlobalScope":true,"impliedFormat":1},{"version":"196cb558a13d4533a5163286f30b0509ce0210e4b316c56c38d4c0fd2fb38405","affectsGlobalScope":true,"impliedFormat":1},{"version":"8e7f8264d0fb4c5339605a15daadb037bf238c10b654bb3eee14208f860a32ea","affectsGlobalScope":true,"impliedFormat":1},{"version":"782dec38049b92d4e85c1585fbea5474a219c6984a35b004963b00beb1aab538","affectsGlobalScope":true,"impliedFormat":1},{"version":"a6a5253138c5432c68a1510c70fe78a644fe2e632111ba778e1978010d6edfec","impliedFormat":1},{"version":"b8f34dd1757f68e03262b1ca3ddfa668a855b872f8bdd5224d6f993a7b37dc2c","impliedFormat":99},{"version":"74012d464fbc5354ca3a7d5e71bee43b17da01a853c8ff10971bbe3680c76f40","impliedFormat":99},{"version":"5e30131b6a5587fe666926ad1d9807e733c0a597ed12d682669fcaa331aea576","impliedFormat":99},{"version":"a0f82d2f9450bd147a8c137798d9501bd49b7c9e118f75b07b76709ff39b6b55","affectsGlobalScope":true,"impliedFormat":99},{"version":"00cb63103f9670f8094c238a4a7e252c8b4c06ba371fea5c44add7e41b7247e4","impliedFormat":99},{"version":"15fe687c59d62741b4494d5e623d497d55eb38966ecf5bea7f36e48fc3fbe15e","impliedFormat":1},{"version":"e09db3291e6b440f7debed2227d8357e80c95987a0d0d67ac17521d8f7b11bdb","impliedFormat":99},{"version":"9a318e3a8900672b85cd3c8c3a5acf51b88049557a3ae897ccdcf2b85a8f61f9","impliedFormat":99},{"version":"1bcd560deed90a43c51b08aa18f7f55229f2e30974ab5ed1b7bb5721be379013","impliedFormat":99},{"version":"dc08fe04e50bc24d1baded4f33e942222bbdd5d77d6341a93cfe6e4e4586a3be","impliedFormat":99},{"version":"cdeae34aca6700620ebf3f27cf7d439c3af97595dd6e2729fa4780483add5680","impliedFormat":99},{"version":"3ff87ea3471b51beaf4aa8fd8f4422862b11d343fdbb55bf383e0f8cc195a445","impliedFormat":99},{"version":"99bdf729529cdbf12e2bf76ea751b662011133dcf9e35abcb3def47bb02f7b0a","impliedFormat":99},{"version":"732fb71ecb695d6f36ddcbb72ebfe4ff6b6491d45101a00fa2b75a26b80d640f","impliedFormat":99},{"version":"039cb05125d7621f8143616c495b8e6b54249c4e64d2754b80ff93867f7f4b01","impliedFormat":99},{"version":"1b81f1fa82ad30af01ab1cae91ccaddc10c48f5916bbd6d282155e44a65d858d","impliedFormat":99},{"version":"a0fc7a02a75802678a67000607f20266cf1a49dc0e787967efe514e31b9ed0c3","impliedFormat":99},{"version":"5ebf098a1d81d400b8af82807cf19893700335cf91a7b9dbd83a5d737af34b11","impliedFormat":99},{"version":"101cf83ac3f9c5e1a7355a02e4fbe988877ef83c4ebec0ff0f02b2af022254a3","impliedFormat":99},{"version":"d017e2fcd44b46ca80cd2b592a6314e75f5caab5bda230f0f4a45e964049a43a","impliedFormat":99},{"version":"a8992b852521a66f63e0cedc6e1f054b28f972232b6fa5ca59771db6a1c8bbea","impliedFormat":99},"cf93fb9208a01c80f0fad245c4360356e5de6c2384b7641acf0b9cc2f5c42448","336398b0efaf964124e636a9b29c4edd5870aee79ac64bf87be58a9d66b7c048","571bc65ec37ba124e762bb822e14a2b8502dc684e356be8feaccbd6b9cadd023","7cd455fc4c4818f19263d73b29c59f3fb5fd54b45a6ab83ca3eb3661281db56b","1c6b9b5501774a2ece6574be8e26092800e3f1f836f8c179b4f9fdd271a620f8","bcd2426fd141157e04e3a8eff914b575403587f398cf0878f07c2f283e0d1afd","bac8ff394e831e4dd3f0961d6abb414b0e2b4ba16fdeb502d087ebf0340ed5f6","4c559568877f16745410a69bbbf0e2b131a228c819d581048f4d1ba7115b1b36","c89d663edb7c20cfab677286571dc8f4f09878119d7ecd010895133995f12532","9d04b912e18e966fca08158f28e5c41bfb2fa864187d926e04d737aa83a96e17","2ad4fcfa075cde73e5ae78491531cef44cec9fb9a880be8335afd98c444528cf","bf3dca387e78050848ddcb2ed4e5362f55948aaea8074205d2b1571e69780429","e2d895b9561b0b9a350c970475ff268e4e0fc44436e107a916889a0a93d3389b","c182c5370e3838b58902fb21d6800447a2e4d29329a4253f85f2b89bc3d4ce6a",{"version":"ced4aa66897bc621f69e0b3c6beea086cb5cae4a6b712fe3c3226263013bac43","signature":"438cc66bbb2c702f607a435f0d0b57b6394725c0b877574df839316b2eb85b07"},{"version":"2cd55863a015da5fd60e837f623d38407e020b79b250e4a37227ca213e775687","signature":"75069a2a1e380502ff9a1074b8ee61f5e84f31973e5f81b444e6993e5633c72b","affectsGlobalScope":true},{"version":"5565deadc1d553f9f1ef370351432c258d2a6f1a5ca47e574e5430db824468c7","impliedFormat":99},{"version":"4ae1ed87c59518f4e0918a21409ec3020e97037a386b57953c6b9fed9cad6949","affectsGlobalScope":true,"impliedFormat":99},{"version":"cbb2be0de4e2a597ba2b7050389629fb4c2592a923e989d45095d1546913a696","impliedFormat":1},{"version":"aadcf59329c6f0f8978cfa1810dab147e0b67f241a39c965c4904459fcc98c27","impliedFormat":1},{"version":"90f1dbfd6cc3da25873a71dcb2c4f32de813b741aac1ffc71b182c277802c88d","signature":"8aff91f00938aa90ce829f4d577903d6826fa19e8edc583f7bb64ef1a6b4ae3b"},{"version":"faf982f530e7c04361b3154d5d0e6a0c86fab62ce6ed08fdd80ac97f4572467b","signature":"986165ecc3a59d4b6a272a92f7ca4fd7a0762c63a674abd2c1efa0bea64da604"},{"version":"9a6d52cf2cb5f35d903665007f9f07b4bbe0f919eff23fac5bbd895eb31dffa0","signature":"3e7b241ec38126d95f9e37c49a631c00cff006a888276e2d02920c6443c8b593"},{"version":"6184309fe39e2fe444f4ba94e7cd1abef48fcb48e258457c3b77c65828184241","impliedFormat":99},{"version":"98c511f60c3079d731a35353a47bfa89dd79eeacad48a45d07170d22ef4bfd02","affectsGlobalScope":true,"impliedFormat":99},{"version":"905800cc110167503d0cf58bb0dd6fa4aaac1e9cedc9bd9c48e5d1f8b5b8d4c8","impliedFormat":99},{"version":"d17be577b99e59611df19ca2cf0356df554f55bb06617c21321fc4ec06b820d0","impliedFormat":99},{"version":"5f30145fbc8ca508ae4e0d90a4fe9eaff490783f380a92f6aa262accdf7887b7","affectsGlobalScope":true,"impliedFormat":99},{"version":"cefe49d29d43726072e88671a2c40cdeeb8d49ca8fa6c2d4b06013dc7b9d6206","impliedFormat":99},{"version":"f882b77c5939860d599b4b7bc39f741ebcd56123e18b284500f4b8923acd2e72","affectsGlobalScope":true,"impliedFormat":99},{"version":"0230bc76ed3a464531a43d2434d315b9cc2096aaca28bdaa65b8f9dce9f3bc81","impliedFormat":99},{"version":"559d2d1cd7f37dc2ac59e7adce198ad16a5eb0c7273d67b8e4ff72821b7c853f","impliedFormat":99},{"version":"afa8760622183e35e86f516574217eb1853b08cf2168be0bfe991643ece1a8fe","impliedFormat":99},{"version":"40e539ae4fb534c8032594c8e2e7c420be13942b43b20a9afca53d1fd42eb8b3","impliedFormat":99},{"version":"d08d474654640266d6ac03f51ee04d72438b78ea377b9dc4678c480ce0477e1a","impliedFormat":99},{"version":"929f21090183949e93fd99327d292bff76f781895d5252eb43319b2c3e014528","affectsGlobalScope":true,"impliedFormat":99},{"version":"f9f3097a031827350b6befd870e9da3ec0953b7269497c1a7c5dc840223d2fb3","impliedFormat":99},{"version":"d56278ed347a6685abc6da6b49277da36db3ddce86bd298c03b48a5f9c6d145c","affectsGlobalScope":true,"impliedFormat":99},{"version":"d6c0b824e25ca3bdd752c8baa81a8c5c2da034ffaa54ad60fb5cb2bea6e2bcec","impliedFormat":99},{"version":"1e2e7689dab65f64ac58087dc882380ac99b1fe05687efc601f5b55989d0ed10","signature":"b73f10c107ec43e50acf38b06626eaa6ebeaa2093432f814338f9ddf1b4112fa"},{"version":"74fe889b1d2bba4b2893d518ba94e2b20dabe6d19d0c2f9554d9a5d3755710f4","impliedFormat":99},{"version":"2ae64cd7b6e760496069ee3b496c64700c956a0620740e1ef52b163824859db7","impliedFormat":99},"05cfea0488751015b0b85911b6cdcde7c6cebdd9b8cada1ec0b5c1736357a552","f5800813e5c0d6c27d73b76f2c99f39bdfd6229d03553a8a9ae485f6aeb94425","4d5e201faa4bceca840b652dfc10795170c061f498e19429a06e056490aa69aa","b085d2f3c839ad9634c9b1ea8bb2d4e3a321af1392d8ac44a79b99c0d8d194aa","ee11b7061adce4a1c0370620949a57851215b152a5632d2faf1aedbc90ad0520","f8c86fcbfb0a1e69a0ed28d3249cc33c312fa23a39c17e15cbbcc539bdcdc303","85e0f00b17c3ae8cd88438c754a2c43f4a9361e685b97a70e52e33afbf62488f","39d2d450df6efbf38585fd316f18922c8ac3fdfd4c3fc412d0bee34e2bc86378","4dcdfe4c18557fc02d8cb22cb422cb98bfeba8158aaf18cc66f9d99293ebe2c8","7efea6f2270a14f1b0d5f472f2a6fcb0a97beb677299e10b073cc2abdabeef51","642bd83dc8b11abc31785975f869fea5ab2dd84246acd13c6ad7e769fea95150","712dbb6cc6020b1dae2a2031b8a117717318652f73fd5042d508f7de416c47b7","637a5a32ea266fdaa0efa1c4d25ce2eed3b420dcd7836a6952374ddd95aaccaf","145e598b9f835b46757263cf952af5b8735d0bfb08a6dff2187f7b5611e17578","f499d7fb533781939c7a5ab778ac6e6c8ffe65601b1a61a843c36ee0013f05b6","7fcb76be88d4a64f6318b5a24b57021d7463f24485a3d1a931bf664c7e437534","d75490903da576f8fd0ee1c990858cb31e605d3db925593c12728bd0949eedfe","098ec42cd54c2b3354584c4fe8ad143040114891dde762741522b62788772f0d","1e73d612f806d183d6c16c4135c16c1a14dd827c1a67097e72ab1841852bfcb9","30046b0787c577061d43e498b507da8a249fbc58bbe33a09a7bef777e1d5fb67","cb2de9f1d7d286191834eeb331d23dc69eeb322745114ddad1695e4c575b5feb","dc2461db89dde29306a73a2926e2cf874e981ef034412f4d1e3d06d45bb3127e","13a5d8ec52111b64ed8fdcb47ab664b60085733c46c44aede33fd2926840ac31","1cf02270a889fcc3fa5863734fcdbea410d3b4dd71e4678a894a48028f836f6e","4f69dd36aa514494e2665a9dd1ecbb94f705c37f13554aa6f0c4b55d47dcfec1","3cb5734586224b2daa65a52cbe2428195e1542681ac85e4d7e9ca691e841db5e","c88faa2f2d9778aa0b4dedc2bfde0990b0beea6c45b0fc7d4a79e1294ebe8cb0","51f3be4aa09529ea1ad83a3d66830075a49e3e630df25d9892ef5708bb00de55","e0289b150095e1e86a7a201aa8ca9df044922019fcb4d125fb69535ae375d6a7",{"version":"9a67f7d0e288da6ffe52bc973ce28e60691ae863494eb7c02f106f53b4301c35","signature":"74c2d01743bd615ed4a3eaac451feb14967fa8ad01099ed2971e32d1adca6ae3"},{"version":"95da398ff4b3ce062cc5c93f4adc0d6195d17f3c1764729205b84bbe7e4ea472","signature":"3ea339efb8893d053812a11e51eee3fb49b66e2b853f167b3167565ac9460553"},{"version":"dcc40a685cbdbdc271f8edb9bd5ccabfd0ef64db0724e2e3dea60d093565d3ba","signature":"6a17f676d06d3e695520b275dd483b4fe62d34b84926c0bf6425c08490ee2c41"},{"version":"0cb349f3a6866eb4ec6424b3844fa51498b32402f922d5a571d069d7cf44c68f","impliedFormat":99},{"version":"517dd6f73e4d20b38841f7be1edb2fb6f4152775ac3a9c04e319ff0b3509c8ba","affectsGlobalScope":true,"impliedFormat":99},{"version":"2eb5ecdc6027a01a7f83775caed62924c7afec0fd42554aec32ba9127cec6f18","impliedFormat":99},{"version":"2e692811a68b1644ec1e2ff9459bc28e51da41f58994088925be2420a2f27a26","affectsGlobalScope":true,"impliedFormat":99},{"version":"0f28503979e769f6ee6e55350f621dc00e300f15688d52b02edc62d837d29b1d","impliedFormat":99},{"version":"fe869c79d427e84d916011d082def68a793c3c13e157079fec399f250418bd50","affectsGlobalScope":true,"impliedFormat":99},{"version":"d0641686056ba18b391381654d29928b36fbec96c2132ecdc7ed820aad77dd5b","impliedFormat":99},{"version":"0d0f0a7057effa894462302bbfab93d0ff82dc88e7eb3b4a40f5c5baf2287e87","impliedFormat":99},{"version":"7a9cada9676068d5bf49db65e12bf45077e5d3597f84bee594073ecdadea3be9","impliedFormat":99},{"version":"906ba9deec2d81b2ba91cda35da7edddc1ed23c74c0c59b635d719ed436c8783","impliedFormat":99},{"version":"9bc3cc003632ac059f8f07a8c06b04bfac5ba4fbfe90f27211cb75c50897c4b5","impliedFormat":99},{"version":"7b82ae5f317797ad1ef2efd9773b7b13dd2570a20f2581c49ad7f3afb02df670","affectsGlobalScope":true,"impliedFormat":99},{"version":"9e77270468dc77ee3f0182f377a6022b37cce590cab79205c497cfb964ee2d20","impliedFormat":99},{"version":"8bb8931e629d9adfac6fe0c067de1a3c2f82b47262f83fa76eb0772ef13808e8","impliedFormat":99},{"version":"75c9b7226184ba8d96f2f8818e8a1c1c8f1f8325b17645029ddda07bec3ade83","impliedFormat":99},{"version":"b2cba74b75476a1261a6bca5550f04dba36ade87f3b09083ca787beb3471e1b9","impliedFormat":99},{"version":"9435089fc191e1b2a57854475595e8277a976ff175ec402091d37e7821d36b5c","affectsGlobalScope":true,"impliedFormat":99},{"version":"f296e6ff892a925da76ed1e7b2114803db2877f1fdd665f33e0b26de7e1a6523","impliedFormat":99},{"version":"2b7426977de7220c78217f27552dca65b529654f85f7c26b6689684c9f002cef","affectsGlobalScope":true,"impliedFormat":99},{"version":"1e8f86f007abd453e72e49dbc52aae6946167a1bdc2a989c1f12d3cf0244d2f8","impliedFormat":99},{"version":"1b45982abdcb2d07d5d1fc84dc6966227b7c82d4a12bd8ec50a28a01c8842d9f","impliedFormat":99},{"version":"220a08c0460aff4f65b8129a53c63c97599d96430150e7fb2ca8da5ccbc16bfc","affectsGlobalScope":true,"impliedFormat":99},{"version":"c478740bf4cf315818870c44c1f10dd3ca1c38b8b662191848b611162f241c13","impliedFormat":99},{"version":"c1ac6f99af63405cfe1a3094586f2a0796e2777985fd499c3af6cc94ac75e270","affectsGlobalScope":true,"impliedFormat":99},{"version":"14f9412b37e3b5fd2907689c004f1817c67ebb40822804db8e14914dea90e75c","impliedFormat":99},{"version":"27203978b7a315bebdcb090651bba3aba75ff5cfd3828b3d0c1132b7004545d0","affectsGlobalScope":true,"impliedFormat":99},{"version":"55d3b1b0a3e25fa3b6e33c33a017a195f53f0621082cee825192f94b9703a4dd","impliedFormat":99},{"version":"7b56b1c33d91152269b97488fa8a1c215e57b97c1434c30a224ae722fd596ff2","affectsGlobalScope":true,"impliedFormat":99},{"version":"e15ac8f3a605029b85c154d609ef31238f366e5d767435ae50007fa1e152abb1","impliedFormat":99},{"version":"2dc6b6291eea764fdb9046036c011a57f2091b50536a009f0aefa1cc22e60c97","impliedFormat":99},{"version":"ef3c0e8144c9b8a038ba6ddc28d2667d6f9e2fcc61cdd7f5249e6a50f049019d","affectsGlobalScope":true,"impliedFormat":99},{"version":"50d6de22a2638ee065f170cf1c4e7db26b2cd9eeb1a1ce023f4cd93d43fc453e","impliedFormat":99},{"version":"41e4b825afe9f38c821a8d7bd9667e2c923c847e31036cfd6c98006b0ca1653e","impliedFormat":99},{"version":"9b607e119f00c4d3c248f086ab36b6b01f63634dfd51af95a4293f5ab1f17fa1","affectsGlobalScope":true,"impliedFormat":99},{"version":"fb3796f25b77cf1496279d8250b8ca76741ce750a75bd8cca753eccf02358e07","affectsGlobalScope":true,"impliedFormat":99},{"version":"34f5c9c6725ffd996c7e75b661a5b290e2c3cb5bd98e3d940beb6ae20ffc8be3","impliedFormat":99},{"version":"6adc04cda2a60aa4e90f85318c101c5baf1e96ee01cd9689aac98109d13cb11f","impliedFormat":99},{"version":"87833ae9cc60453ec35077c9825d614aea6a99dd37a3239a157c802e3531f07f","affectsGlobalScope":true,"impliedFormat":99},{"version":"21e8c0358c7cfb62b870b44aeafab7ac1cb7c36f2264ae8e19f923298b872e8a","impliedFormat":99},{"version":"01793c9eba84e564b13c58a30f299fc7ac8a06e67074bbf29bd2649845d9fcf1","affectsGlobalScope":true,"impliedFormat":99},{"version":"9e4cb88955f9c6eba5f49aa059f9e7576da1123510fb2510afe3cb43e7c5dfaa","impliedFormat":99},{"version":"56edea77ca2fcbc2884e94f74f360356df9e79dbb5a12fa2397e4bb31c73cd5a","affectsGlobalScope":true,"impliedFormat":99},{"version":"0556b22124dd22b959eb79aa3105433591bdbb94f5be86f3b0c0cbabb723cbc5","affectsGlobalScope":true,"impliedFormat":99},{"version":"98ef8c0a86b22a0df8154bad5cca37c9e3223db6dec4400f3c491d6a1dc7d2e7","affectsGlobalScope":true,"impliedFormat":99},{"version":"1c5e3212be17cf310c9dc765d949336d690cda31b598a45416fc501721321434","affectsGlobalScope":true,"impliedFormat":99},{"version":"91638e3b3441442505a9738282f1521eeb8a325cfe160df3dd8069c6d032df0b","impliedFormat":99},{"version":"dafd71f4e6b100928d937e978db103f59b895ffc295e021d9c992dcf4cc88251","impliedFormat":99},{"version":"df3ec23c64326101593ed8a7b9c589ddcf62e472a5cbb9f4751c469fbf471c08","affectsGlobalScope":true,"impliedFormat":99},{"version":"8f496bd08b3d20fe332e9e01fe33dbb2b99b351985ad589486883c32db53d352","impliedFormat":99},{"version":"462c5f47c5b4dfe3445c05d6bfdc88aea6f6eadf7c7fcd32c2cbf74c938a2043","affectsGlobalScope":true,"impliedFormat":99},{"version":"3a3bff7c46f1b4a596bc78512d98488b1969714a6866d6499667e123374c3937","impliedFormat":99},{"version":"38dd5fd19709f61264fc2396b3038c133554e033577ca29fcb9f6fb8dee37d0f","affectsGlobalScope":true,"impliedFormat":99},{"version":"d9b52c4560cc48ba43d71bc48d8f50d10b8d28c7a24ad5db201ec6422f161d4b","impliedFormat":99},{"version":"fb605fccb30512c9291061c381cba041e06b51d10479d1589441e9468a32363e","impliedFormat":99},{"version":"635052f2979263b7be4665514c303fd56bceabe15d793c6f393fc1214996966a","impliedFormat":99},{"version":"40b86fd3991c28146513a11e3260a06f4d7be3a1c992f555dad89d72739056d9","affectsGlobalScope":true,"impliedFormat":99},{"version":"0d09de46aa7020e1e555207561e9a04bb36b15b7497d8e32b465439b752a1868","impliedFormat":99},{"version":"08e91911253a51846b0f3c8deaf829c5e7bdee21ef472f8051e845b9d2a57396","impliedFormat":99},{"version":"8d33b1975286b2c732d53e49910fa578955689cdef2bcd36f59597590f0847ab","impliedFormat":99},{"version":"6fb4948e326feb969626ab5b989d5c98f1d8b3f7cb761a50e22e07c1d6f43728","affectsGlobalScope":true,"impliedFormat":99},{"version":"20bd10ad2eb76f5bd3ecf6cd19b550d9ebdaf2cd40515e1e92677e2b36fae80a","impliedFormat":99},{"version":"2cb704d3d5cbf8a28775ae1d3dc0cf13d0f2669443d273e0370b87b80eebf5c9","affectsGlobalScope":true,"impliedFormat":99},{"version":"109fe021f46e156fe5b48d70948c07907028a1efd23a7801894da63553ef9e19","impliedFormat":99},{"version":"195fb05b6ceaeb4c4e9bc43a5c2aa7df06fc2065a28a6e9f3d6a4774e8922d02","affectsGlobalScope":true,"impliedFormat":99},{"version":"68d9a15b7f0f73b48429f78699f6add7dcdbd5ea0fb9b0e8d90d0ca4c108703b","impliedFormat":99},{"version":"f0e736ca1c24fdb676d74ecbcf4670f0e7d041984becd9ff3a8b5787895e437f","impliedFormat":99},{"version":"6aea4672aa7dc813d8f7420c8ca366523d8f4f5004c83b3ad0c44e2a7a352a78","affectsGlobalScope":true,"impliedFormat":99},{"version":"ad8da8b0555d836ffba98091771d1c667aa047b8cc6c17e4f4d7c529edd1db07","impliedFormat":99},{"version":"8a1e35a7afba4291cc1493e02dabf51a4615bae2dad4aa5ccc4de29da4b3a969","affectsGlobalScope":true,"impliedFormat":99},{"version":"24a3b420f52e021e3bd0d8a4aca9a192d4b5f42d9e6b8eb690f7aad42744873c","impliedFormat":99},{"version":"6b7963cd724d29486e9f6f951eb208b7939667615a4bcc101448d7fb6015d984","impliedFormat":99},{"version":"d5fe749a0e1f81c68318c2425be8bb8e8d3e3002046dd7582fbad27f6e73706b","impliedFormat":99},{"version":"92251c30f31c33f3c139ceb2cabe8607ec19d79a89a3fb71441a49798089b97e","affectsGlobalScope":true,"impliedFormat":99},{"version":"fa8ef3fb228e258f9508386e2056c95c959d1c1168301181313a5c978754ba70","impliedFormat":99},{"version":"15c9478a8a3d630ac5e738aca25fca15d0842aaeb97fb1a9c1e80eddc5a0e14c","impliedFormat":99},{"version":"850ac1445866b7ca3bfa72e709fa4db042192a949fe4aeeb80e5f23e93c9dd8c","impliedFormat":99},{"version":"173361b25066e7c2c3906f4ee1e27b9fd8e1bece5bc7a4d6240f6c9112540470","impliedFormat":99},{"version":"e50cea4af68fdc102f671a0e307af221c58d97caa3d8d6ad7d37e0526f4c35f9","impliedFormat":99},{"version":"415e344ccff4e0385ba03efbc90ef9ff92f4e5f31ac294c42821896145b0a7ed","impliedFormat":99},{"version":"2614bfcd56e7dd11378da7e92dd82bb0158be61dffc6403fb2f97adbb7193cc7","impliedFormat":99},{"version":"6308dc55b99cd48d92ac9c27f46a94c86bad88fc2d62d963bf287f2cd8622514","affectsGlobalScope":true,"impliedFormat":99},{"version":"4a51ddce2493ad3d518b1471a52ea98542f1911d20a0f96fcc7db7c5629710fe","impliedFormat":99},{"version":"789c72affd059805536d422f4a5cbaa04a9365a568e7c1cab698e207ec659e12","affectsGlobalScope":true,"impliedFormat":99},{"version":"11f35322c9659189eb5fa45c194c47f331db748f47ce5a0cbcdf83652420d9a3","affectsGlobalScope":true,"impliedFormat":99},{"version":"b7c56944df41a8e2f7bf40f0e7770bb378a720374d4846f79ab8322b567a8519","impliedFormat":99},{"version":"42e3737ba1a0f86d00f270e53199b6fad82c0cb781ad7a485031b4658301c76e","affectsGlobalScope":true,"impliedFormat":99},{"version":"af84e49432fcab830ac3e75bde006dec5f4cd39ad3b4a4787d1b30af94d9cee1","impliedFormat":99},{"version":"1020b0facc29b6e15e6405f92575daffb0446af7c9a7740709b8fe53ea6a92ca","affectsGlobalScope":true,"impliedFormat":99},{"version":"762200c95c014e872d7d00f20cd824ab4ae3e73a91f4b670de6462ea4938e303","impliedFormat":99},{"version":"6d9dae35af1d53c5440d0160d44d73f223d3df9c2f484f6dbbdfb48dca28a857","impliedFormat":99},{"version":"cd7d32310660ffb1d8bd15abf63e894b79c47709053f3f3bd1d4375224d893d4","affectsGlobalScope":true,"impliedFormat":99},{"version":"32b266a584cbed23a67ce1fb73a97997ca61707939786b7defb8e387efeceb88","impliedFormat":99},{"version":"3bb5930125269be86f310f7d803afcfae542fa8b84fcdf76717baf11685b3d4f","affectsGlobalScope":true,"impliedFormat":99},{"version":"6ec728143ee85502027c0b53f171ba748c23081f8dee67fb7b67ba61b66faeed","impliedFormat":99},{"version":"f0e54f221760cd5cbfc7df96d65a2c4c1ab2c2e72599bf35f16cf535204a78a3","affectsGlobalScope":true,"impliedFormat":99},{"version":"a57fe90f2a8e0e029a082e75add8e7ad00e109111512f3d669e92d7d409c2f9f","impliedFormat":99},{"version":"f3a56636fdb6355ad484371b7787faa5b33ef370cc1bf634239409f489844445","impliedFormat":99},{"version":"89b32a5a2e68412940b96a413c1dfd3c569c72c04d1b1b097acb8e294cb7e8dd","affectsGlobalScope":true,"impliedFormat":99},{"version":"32055f96b66a66d6d0343c44fbe2962ec55a1cbe348e3c9af15ac6d17ab98a6a","impliedFormat":99},{"version":"f191b1ca9fd04d461e602cd776e04fb4e10b531bf47d092833991bb052f7002e","affectsGlobalScope":true,"impliedFormat":99},{"version":"50055f4ce6fa763fb5339238db93eb1e548df8306927d7827f933f3001b67cbb","impliedFormat":99},{"version":"1f07da266c1d3b7fb31671fba3e03af5b4fece362f4d8f5a65e1ba64e263b789","signature":"5149e3280f7efdba75371f2e2d2f36d23090435b05d828aa00b694e41a820305"},"cb85235628f67d0904e45733fd9071f6ec8332e9a6ae66d32730ba6c445a51ef","2e8d620000b61541f0a8ac23d90fcc9ffacf72045920273f95aa9d17ba54b6fa",{"version":"cd95d3388e7cfbec573f0bad874cfcc445cf5c848b866bd21af33ab38dc3ba79","signature":"579cc659b0809ede9b6b29ef40049eed59bc6737d877564c75cfa3ada104f8e5"},{"version":"6d2809085064477428b3548cb882ffcfc1d90e89d7e4fa52df9955842012c0a4","signature":"579cc659b0809ede9b6b29ef40049eed59bc6737d877564c75cfa3ada104f8e5"},{"version":"f7c2b1fd85f487cc6329d412cea039c5ff3821a69a6e933bfc2bf0577e99dc42","signature":"e9eb9c61685d51104b14fb2c0edebdcc72346805d76f18e4f90d988e9ba44d87"},{"version":"5f343c91d893a68c16007ac13097ba5c433e15dd97fed8733755dd01576c6ff2","signature":"579cc659b0809ede9b6b29ef40049eed59bc6737d877564c75cfa3ada104f8e5"},{"version":"0d183f2f61999deb275b65e926c0c70d5f869f2655809e3ec5b85321413000c6","signature":"61869fff1b19096cae72e35456bafdeb0cbf71e955844e5bccfb865554472f2a"},{"version":"975a01fe95331e8e91396dd9383c92c5fe2e98b208dd0e669d49596d814a17d8","signature":"c5ca7738b2800b10506aed2098daf45e927f067d9b754b4a626eaa1630e55c9e"},{"version":"e2e380bc8a5122f792d8b3a66b3f0a26d48e4bedce2534fc2214ba9ceb9aa300","signature":"661b2ccd986d6f22697703ae66899b70f88e880d8d152ed2458815204c67897d"},{"version":"42341f65c29849ae00faad1a802b99b0e8eac3740acdc0f51f6acbfcb96beb8f","signature":"a92a5d35f411a43bc9cdd74a9dfe46603ae4f70855a4ccfe77864237c7afc813"},{"version":"e42d449e9255b8818d8f2643d4dc59f99a4afc0a7071cb7a09023909f52315d3","signature":"530099a2092da7f37ed1c79baf4f6ce9f0f968ee52b28bc501dcbad160d09aad"},{"version":"d153a11543fd884b596587ccd97aebbeed950b26933ee000f94009f1ab142848","affectsGlobalScope":true,"impliedFormat":1},{"version":"0ccdaa19852d25ecd84eec365c3bfa16e7859cadecf6e9ca6d0dbbbee439743f","affectsGlobalScope":true,"impliedFormat":1},{"version":"cc2110f7decca6bfb9392e30421cfa1436479e4a6756e8fec6cbc22625d4f881","affectsGlobalScope":true,"impliedFormat":1},{"version":"096116f8fedc1765d5bd6ef360c257b4a9048e5415054b3bf3c41b07f8951b0b","affectsGlobalScope":true,"impliedFormat":1},{"version":"e5e01375c9e124a83b52ee4b3244ed1a4d214a6cfb54ac73e164a823a4a7860a","affectsGlobalScope":true,"impliedFormat":1},{"version":"f90ae2bbce1505e67f2f6502392e318f5714bae82d2d969185c4a6cecc8af2fc","affectsGlobalScope":true,"impliedFormat":1},{"version":"4b58e207b93a8f1c88bbf2a95ddc686ac83962b13830fe8ad3f404ffc7051fb4","affectsGlobalScope":true,"impliedFormat":1},{"version":"1fefabcb2b06736a66d2904074d56268753654805e829989a46a0161cd8412c5","affectsGlobalScope":true,"impliedFormat":1},{"version":"9798340ffb0d067d69b1ae5b32faa17ab31b82466a3fc00d8f2f2df0c8554aaa","affectsGlobalScope":true,"impliedFormat":1},{"version":"c18a99f01eb788d849ad032b31cafd49de0b19e083fe775370834c5675d7df8e","affectsGlobalScope":true,"impliedFormat":1},{"version":"5247874c2a23b9a62d178ae84f2db6a1d54e6c9a2e7e057e178cc5eea13757fc","affectsGlobalScope":true,"impliedFormat":1},{"version":"cdcf9ea426ad970f96ac930cd176d5c69c6c24eebd9fc580e1572d6c6a88f62c","impliedFormat":1},{"version":"23cd712e2ce083d68afe69224587438e5914b457b8acf87073c22494d706a3d0","impliedFormat":1},{"version":"156a859e21ef3244d13afeeba4e49760a6afa035c149dda52f0c45ea8903b338","impliedFormat":1},{"version":"10ec5e82144dfac6f04fa5d1d6c11763b3e4dbbac6d99101427219ab3e2ae887","impliedFormat":1},{"version":"615754924717c0b1e293e083b83503c0a872717ad5aa60ed7f1a699eb1b4ea5c","impliedFormat":1},{"version":"14e9acf826baba0ef4b5665704084896e7bcc06f65a9ab13af7e93d27d6b7069","impliedFormat":1},{"version":"68834d631c8838c715f225509cfc3927913b9cc7a4870460b5b60c8dbdb99baf","impliedFormat":1},{"version":"21adf13435b9b748529c8cedf80f884e5130b9684188120a686cd2b26a2059c7","impliedFormat":1},{"version":"eec76bf6b9346f3f95fa402621b889489e96930e72295b0369022f332e9b4a6a","impliedFormat":1},{"version":"0ecd58f413f9bc3b7d4383eae31b0c8fc576985cd7404d6f99f8c643543ade74","impliedFormat":1},{"version":"ea6bc8de8b59f90a7a3960005fd01988f98fd0784e14bc6922dde2e93305ec7d","impliedFormat":1},{"version":"36107995674b29284a115e21a0618c4c2751b32a8766dd4cb3ba740308b16d59","impliedFormat":1},{"version":"914a0ae30d96d71915fc519ccb4efbf2b62c0ddfb3a3fc6129151076bc01dc60","impliedFormat":1},{"version":"9c32412007b5662fd34a8eb04292fb5314ec370d7016d1c2fb8aa193c807fe22","impliedFormat":1},{"version":"7fd1b31fd35876b0aa650811c25ec2c97a3c6387e5473eb18004bed86cdd76b6","impliedFormat":1},{"version":"4d327f7d72ad0918275cea3eee49a6a8dc8114ae1d5b7f3f5d0774de75f7439a","impliedFormat":1},{"version":"6ebe8ebb8659aaa9d1acbf3710d7dae3e923e97610238b9511c25dc39023a166","impliedFormat":1},{"version":"e85d7f8068f6a26710bff0cc8c0fc5e47f71089c3780fbede05857331d2ddec9","impliedFormat":1},{"version":"7befaf0e76b5671be1d47b77fcc65f2b0aad91cc26529df1904f4a7c46d216e9","impliedFormat":1},{"version":"0a60a292b89ca7218b8616f78e5bbd1c96b87e048849469cccb4355e98af959a","impliedFormat":1},{"version":"0b6e25234b4eec6ed96ab138d96eb70b135690d7dd01f3dd8a8ab291c35a683a","impliedFormat":1},{"version":"9666f2f84b985b62400d2e5ab0adae9ff44de9b2a34803c2c5bd3c8325b17dc0","impliedFormat":1},{"version":"40cd35c95e9cf22cfa5bd84e96408b6fcbca55295f4ff822390abb11afbc3dca","impliedFormat":1},{"version":"b1616b8959bf557feb16369c6124a97a0e74ed6f49d1df73bb4b9ddf68acf3f3","impliedFormat":1},{"version":"5b03a034c72146b61573aab280f295b015b9168470f2df05f6080a2122f9b4df","impliedFormat":1},{"version":"40b463c6766ca1b689bfcc46d26b5e295954f32ad43e37ee6953c0a677e4ae2b","impliedFormat":1},{"version":"249b9cab7f5d628b71308c7d9bb0a808b50b091e640ba3ed6e2d0516f4a8d91d","impliedFormat":1},{"version":"d33ce35e3f9cfcc1d94eca415bdd3bde94d5b153ffdd33e6c4455c029986c630","impliedFormat":1},{"version":"80aae6afc67faa5ac0b32b5b8bc8cc9f7fa299cff15cf09cc2e11fd28c6ae29e","impliedFormat":1},{"version":"f473cd2288991ff3221165dcf73cd5d24da30391f87e85b3dd4d0450c787a391","impliedFormat":1},{"version":"499e5b055a5aba1e1998f7311a6c441a369831c70905cc565ceac93c28083d53","impliedFormat":1},{"version":"8aee8b6d4f9f62cf3776cda1305fb18763e2aade7e13cea5bbe699112df85214","impliedFormat":1},{"version":"98498b101803bb3dde9f76a56e65c14b75db1cc8bec5f4db72be541570f74fc5","impliedFormat":1},{"version":"4dc59f6e1dbf3d5f66660fceabe6c174d3261b37b696ae1854f0dbaf255fc753","impliedFormat":1},{"version":"5d0375ca7310efb77e3ef18d068d53784faf62705e0ad04569597ae0e755c401","impliedFormat":1},{"version":"59af37caec41ecf7b2e76059c9672a49e682c1a2aa6f9d7dc78878f53aa284d6","impliedFormat":1},{"version":"addf417b9eb3f938fddf8d81e96393a165e4be0d4a8b6402292f9c634b1cb00d","impliedFormat":1},{"version":"436d7b4543b340b0f3eef4310d524242e41369b9652aa9c70428767c4dcac455","impliedFormat":1},{"version":"adf27937dba6af9f08a68c5b1d3fce0ca7d4b960c57e6d6c844e7d1a8e53adae","impliedFormat":1},{"version":"12950411eeab8563b349cb7959543d92d8d02c289ed893d78499a19becb5a8cc","impliedFormat":1},{"version":"2e85db9e6fd73cfa3d7f28e0ab6b55417ea18931423bd47b409a96e4a169e8e6","impliedFormat":1},{"version":"c46e079fe54c76f95c67fb89081b3e399da2c7d109e7dca8e4b58d83e332e605","impliedFormat":1},{"version":"114f493b30f364255290472111b5a4791d5902c308645670cd0401429cbc6930","impliedFormat":1},{"version":"c3f5289820990ab66b70c7fb5b63cb674001009ff84b13de40619619a9c8175f","affectsGlobalScope":true,"impliedFormat":1},{"version":"b3275d55fac10b799c9546804126239baf020d220136163f763b55a74e50e750","affectsGlobalScope":true,"impliedFormat":1},{"version":"fa68a0a3b7cb32c00e39ee3cd31f8f15b80cac97dce51b6ee7fc14a1e8deb30b","affectsGlobalScope":true,"impliedFormat":1},{"version":"1cf059eaf468efcc649f8cf6075d3cb98e9a35a0fe9c44419ec3d2f5428d7123","affectsGlobalScope":true,"impliedFormat":1},{"version":"6c36e755bced82df7fb6ce8169265d0a7bb046ab4e2cb6d0da0cb72b22033e89","affectsGlobalScope":true,"impliedFormat":1},{"version":"e7721c4f69f93c91360c26a0a84ee885997d748237ef78ef665b153e622b36c1","affectsGlobalScope":true,"impliedFormat":1},{"version":"7a93de4ff8a63bafe62ba86b89af1df0ccb5e40bb85b0c67d6bbcfdcf96bf3d4","affectsGlobalScope":true,"impliedFormat":1},{"version":"90e85f9bc549dfe2b5749b45fe734144e96cd5d04b38eae244028794e142a77e","affectsGlobalScope":true,"impliedFormat":1},{"version":"e0a5deeb610b2a50a6350bd23df6490036a1773a8a71d70f2f9549ab009e67ee","affectsGlobalScope":true,"impliedFormat":1},{"version":"d2ae155afe8a01cc0ae612d99117cf8ef16692ba7c4366590156fdec1bcf2d8c","impliedFormat":1},{"version":"3f5e5d9be35913db9fea42a63f3df0b7e3c8703b97670a2125587b4dbbd56d7c","impliedFormat":1},{"version":"c8b8968311ec4e5e97b7b5fb8a65efaba455db9bdcfd7fff7fb15f6e317bfba0","impliedFormat":1},{"version":"57c23df0b5f7a8e26363a3849b0bc7763f6b241207157c8e40089d1df4116f35","affectsGlobalScope":true,"impliedFormat":1},{"version":"3b8bc0c17b54081b0878673989216229e575d67a10874e84566a21025a2461ee","impliedFormat":1},{"version":"5b0db5a58b73498792a29bfebc333438e61906fef75da898b410e24e52229e6f","impliedFormat":1},{"version":"dbe055b2b29a7bab2c1ca8f259436306adb43f469dca7e639a02cd3695d3f621","impliedFormat":1},{"version":"1678b04557dca52feab73cc67610918a7f5e25bfdba3e7fa081acd625d93106d","impliedFormat":1},{"version":"aecbf1d9e6a18dab7d92ef8a89a1444b47e1eb6134cb2bb776a26d55ff58c29a","impliedFormat":1},{"version":"2ea729503db9793f2691162fec3dd1118cab62e96d025f8eeb376d43ec293395","impliedFormat":1},{"version":"9ec87fea42b92894b0f209931a880789d43c3397d09dd99c631ae40a2f7071d1","impliedFormat":1},{"version":"c68e88cdfadfb6c8ba5fc38e58a3a166b0beae77b1f05b7d921150a32a5ffb8d","impliedFormat":1},{"version":"2bc7aa4fba46df0bd495425a7c8201437a7d465f83854fac859df2d67f664df3","impliedFormat":1},{"version":"41d17e1ad9a002feb11c8cdd2777e5bbc0cdb1e3f595d237e4dded0b6949983b","impliedFormat":1},{"version":"1fede9296beac11ce8e6b425396a1791f64341f2be85deebb6286faf6e16306e","affectsGlobalScope":true,"impliedFormat":1},{"version":"ce697b6a251d9cad53998c7fd3098072df883b525ec45d83530e434dc6d80dc6","impliedFormat":1},{"version":"719412f054e6ecc35489462c9a21bab0323d173a7d04e55b0ace4b5d86fbeb07","impliedFormat":1},{"version":"0eb5d0cbf09de5d34542b977fd6a933bb2e0817bffe8e1a541b2f1ad1b9af1ff","impliedFormat":1},{"version":"fac3e88881b35d3a757ed891ac912b2674792c25e2a1a74e1f5fbc72d19a9792","impliedFormat":1},{"version":"2c2bdaa1d8ead9f68628d6d9d250e46ee8e81aa4898b4769a36956ae15e060fe","impliedFormat":1},{"version":"c32c840c62d8bd7aeb3147aa6754cd2d922b990a6b6634530cb2ebdce5adc8e9","impliedFormat":1},{"version":"5ff4433a2deae4f85ab1377e90a7554ce6b47ae51c69a84ca30a6e22fae85834","impliedFormat":1},{"version":"82b91e4e42e6c41bc7fc1b6c2dc5eba6a2ba98375eb1f210e6ff6bba2d54177e","impliedFormat":1},{"version":"c1fa52b3d014001e8662fa2669d90ea15373958a288e3b83a3b621733d25292a","affectsGlobalScope":true,"impliedFormat":1},{"version":"cbed824fec91efefc7bbdcb8b43d1a531fdbebd0e2ef19481501ff365a93cb70","impliedFormat":1},{"version":"8e9c23ba78aabc2e0a27033f18737a6df754067731e69dc5f52823957d60a4b6","impliedFormat":1},{"version":"d0716593b3f2b0451bcf0c24cfa86dec2235c325c89f201934248b7c742715fc","impliedFormat":1},{"version":"ec501101c2a96133a6c695f934c8f6642149cc728571b29cbb7b770984c1088e","impliedFormat":1},{"version":"b214ebcf76c51b115453f69729ee8aa7b7f8eccdae2a922b568a45c2d7ff52f7","impliedFormat":1},{"version":"429c9cdfa7d126255779efd7e6d9057ced2d69c81859bbab32073bad52e9ba76","impliedFormat":1},{"version":"2991bca2cc0f0628a278df2a2ccdb8d6cbcb700f3761abbed62bba137d5b1790","impliedFormat":1},{"version":"5e66972e83eb4dc7123939bf816e6cbd9ad81af5552db1cab84e6bd9c64d2ecc","affectsGlobalScope":true,"impliedFormat":1},{"version":"230763250f20449fa7b3c9273e1967adb0023dc890d4be1553faca658ee65971","impliedFormat":1},{"version":"c3e9078b60cb329d1221f5878e88cecfa3e74460550e605a58fcfb41a66029ff","impliedFormat":1},{"version":"8413d0641f293aed551c7464615b770d34a02dedede889b9591172287d68e773","impliedFormat":1},{"version":"0ea59f7d3e51440baa64f429253759b106cfcbaf51e474cae606e02265b37cf8","impliedFormat":1},{"version":"bc18a1991ba681f03e13285fa1d7b99b03b67ee671b7bc936254467177543890","impliedFormat":1},{"version":"1b241e24f3227d078c06aeda6e050187ad59a4e591f4467abed44d92b084e08d","impliedFormat":1},{"version":"fa94bbf532b7af8f394b95fa310980d6e20bd2d4c871c6a6cb9f70f03750a44b","impliedFormat":1},{"version":"7fde0e1be5c8be204ffbf428abfcf01da2eb0f130e1bc3f539eb7275f4fd1f58","impliedFormat":1},{"version":"e284328553df5f425a5d33d36a0c3fa66b46af9d097cad6f4d2e8696dfdeb0f1","affectsGlobalScope":true,"impliedFormat":1},{"version":"7fa2214bb0d64701bc6f9ce8cde2fd2ff8c571e0b23065fa04a8a5a6beb91511","impliedFormat":1},{"version":"f36b3fbe2be150a9ca140da48593f21e6a8172004f92ddc549b43efec39f3e54","impliedFormat":1},{"version":"f1c93e046fb3d9b7f8249629f4b63dc068dd839b824dd0aa39a5e68476dc9420","impliedFormat":1},{"version":"016b29bf4926b80255a108c53a1451717350059da04fcae64d1075f5e93bbb39","impliedFormat":1},{"version":"841983e39bd4cbb463be385e92fda11057cab368bf27100a801c492f1d86cbaa","impliedFormat":1},{"version":"1c4f139ade4f6ebf45463505f8155173e5d7a5305e50e0aae0a5e712d6ff3b48","impliedFormat":1},{"version":"e16b319e5aca1031168de823c4946ff8e29629c4c8cc0ec0fcfe2a8ab2155043","impliedFormat":1},{"version":"e4156ddb25aa0e3b5303d372f26957b36778f0f6bbd4326359269873295e3058","affectsGlobalScope":true,"impliedFormat":1},{"version":"cc1b433a84cae05ddc5672d4823170af78606ad21ecef60dbc4570190cbf1357","impliedFormat":1},{"version":"9d3821bc75c59577e52643324cec92fc2145642e8d17cf7ee07a3181f21d985d","impliedFormat":1},{"version":"7f78cfb2b343838612c192cb251746e3a7c62ac7675726a47e130d9b213f6580","impliedFormat":1},{"version":"201db9cf1687fab1adf5282fcba861f382b32303dc4f67c89d59655e78a25461","impliedFormat":1},{"version":"2c3c5c0f54055e87640f5d233716fd889f3034fc7911d603b642369b0dbeb2a7","impliedFormat":1},{"version":"0a20eaf2e4b1e3c1e1f87f7bccb0c936375b23b022baeea750519b7c9bc6ce83","impliedFormat":1},{"version":"b484ec11ba00e3a2235562a41898d55372ccabe607986c6fa4f4aba72093749f","impliedFormat":1},{"version":"a16b91b27bd6b706c687c88cbc8a7d4ee98e5ed6043026d6b84bda923c0aed67","impliedFormat":1},{"version":"1c9e5b1a17b1fc9b3711fb36e0690421261ab2880f15b145155b5b2ba2ab6c2d","impliedFormat":1},{"version":"99ab6d0d660ce4d21efb52288a39fd35bb3f556980ec5463b1ae8f304a3bbc85","impliedFormat":1},{"version":"6eeded8c7e352be6e0efb83f4935ec752513c4d22043b52522b90849a49a3a11","impliedFormat":1},{"version":"6c1ad90050ffbb151cacc68e2d06ea1a26a945659391e32651f5d42b86fd7f2c","impliedFormat":1},{"version":"afa1c49f8e559e413d57343339db857d2a8159435cf9cf7d4deb41718fff1b88","impliedFormat":1},{"version":"6953d7597831d0860c7034cf4f0419687d263b6b98a4b32e37ce6d49615c36e2","impliedFormat":1},{"version":"29f72ec1289ae3aeda78bf14b38086d3d803262ac13904b400422941a26a3636","affectsGlobalScope":true,"impliedFormat":1}],"root":[85,86,[91,93],110,[142,144],246,[249,257]],"options":{"allowSyntheticDefaultImports":true,"declaration":true,"esModuleInterop":true,"experimentalDecorators":true,"importHelpers":true,"inlineSources":true,"module":99,"noEmitOnError":true,"outDir":"./","rootDir":"..","skipLibCheck":true,"sourceMap":true,"strict":true,"target":99,"useDefineForClassFields":false},"referencedMap":[[51,1],[60,1],[61,2],[64,3],[62,3],[66,3],[69,4],[68,3],[67,3],[65,3],[63,5],[52,1],[53,6],[245,7],[146,8],[106,9],[148,10],[104,11],[145,12],[105,12],[147,12],[107,13],[149,14],[108,15],[150,16],[156,17],[155,18],[161,19],[163,20],[166,21],[168,22],[160,23],[162,24],[159,25],[165,26],[167,27],[164,28],[169,29],[170,30],[175,31],[173,1],[174,32],[172,33],[171,34],[95,35],[94,36],[178,37],[179,37],[177,38],[176,39],[182,40],[180,34],[181,41],[183,41],[184,42],[97,43],[98,44],[88,45],[87,36],[186,46],[187,46],[188,46],[185,11],[189,46],[96,34],[103,47],[153,48],[102,49],[215,49],[151,50],[101,1],[220,51],[154,52],[214,52],[221,52],[152,1],[193,36],[194,53],[190,1],[191,54],[195,55],[196,56],[192,57],[197,34],[201,58],[200,59],[202,60],[203,61],[205,62],[207,63],[206,64],[204,65],[208,66],[211,67],[210,68],[212,68],[209,49],[213,69],[216,70],[217,71],[99,72],[100,73],[225,74],[224,75],[226,76],[223,77],[222,78],[227,79],[228,80],[229,81],[230,82],[231,83],[232,84],[234,85],[236,85],[233,86],[238,87],[235,88],[237,89],[239,90],[242,91],[241,92],[243,93],[240,94],[244,95],[109,34],[384,1],[321,96],[322,96],[323,97],[260,98],[324,99],[325,100],[326,101],[258,1],[327,102],[328,103],[329,104],[330,105],[331,106],[332,107],[333,107],[334,108],[335,109],[336,110],[337,111],[261,1],[259,1],[338,112],[339,113],[340,114],[383,115],[341,116],[342,117],[343,116],[344,118],[345,119],[347,120],[348,121],[349,121],[350,121],[351,122],[352,123],[353,124],[354,125],[355,126],[356,127],[357,127],[358,128],[359,1],[360,1],[361,129],[362,130],[363,131],[364,129],[365,132],[366,133],[367,134],[368,135],[369,136],[370,137],[371,138],[372,139],[373,140],[374,141],[375,142],[376,143],[377,144],[378,145],[379,146],[262,116],[263,1],[264,147],[265,148],[266,1],[267,149],[268,1],[312,150],[313,151],[314,152],[315,152],[316,153],[317,1],[318,99],[319,154],[320,151],[380,155],[381,156],[382,157],[90,158],[89,159],[55,1],[346,1],[57,160],[54,161],[157,162],[111,161],[198,162],[58,1],[56,163],[218,161],[70,164],[158,165],[112,166],[199,167],[59,168],[219,169],[50,170],[49,1],[47,1],[48,1],[8,1],[10,1],[9,1],[2,1],[11,1],[12,1],[13,1],[14,1],[15,1],[16,1],[17,1],[18,1],[3,1],[19,1],[20,1],[4,1],[21,1],[25,1],[22,1],[23,1],[24,1],[26,1],[27,1],[28,1],[5,1],[29,1],[30,1],[31,1],[32,1],[6,1],[36,1],[33,1],[34,1],[35,1],[37,1],[7,1],[38,1],[43,1],[44,1],[39,1],[40,1],[41,1],[42,1],[1,1],[45,1],[46,1],[287,171],[300,172],[284,173],[301,174],[310,175],[275,176],[276,177],[274,178],[309,179],[304,180],[308,181],[278,182],[297,183],[277,184],[307,185],[272,186],[273,180],[279,187],[280,1],[286,188],[283,187],[270,189],[311,190],[302,191],[290,192],[289,187],[291,193],[294,194],[288,195],[292,196],[305,179],[281,197],[282,198],[295,199],[271,174],[299,200],[298,187],[285,198],[293,201],[296,202],[303,1],[269,1],[306,203],[248,204],[247,34],[144,205],[143,206],[142,207],[91,208],[92,209],[93,210],[86,211],[110,212],[85,213],[246,214],[249,215],[250,215],[251,216],[252,215],[253,217],[254,218],[255,219],[256,219],[257,220],[78,34],[76,34],[74,1],[75,34],[77,34],[79,34],[71,34],[84,221],[82,34],[83,34],[80,34],[72,34],[73,34],[81,34],[130,1],[114,1],[128,1],[122,1],[116,1],[134,1],[137,1],[123,1],[133,1],[115,1],[129,1],[119,1],[124,1],[141,222],[131,1],[136,1],[135,1],[117,1],[120,1],[121,1],[140,223],[139,34],[138,1],[113,1],[132,1],[118,1],[127,224],[125,225],[126,226]],"version":"5.9.3"}
|
|
1
|
+
{"fileNames":["../../../node_modules/typescript/lib/lib.es5.d.ts","../../../node_modules/typescript/lib/lib.es2015.d.ts","../../../node_modules/typescript/lib/lib.es2016.d.ts","../../../node_modules/typescript/lib/lib.es2017.d.ts","../../../node_modules/typescript/lib/lib.es2018.d.ts","../../../node_modules/typescript/lib/lib.es2019.d.ts","../../../node_modules/typescript/lib/lib.es2020.d.ts","../../../node_modules/typescript/lib/lib.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.arraybuffer.d.ts","../../../node_modules/typescript/lib/lib.es2017.date.d.ts","../../../node_modules/typescript/lib/lib.es2017.object.d.ts","../../../node_modules/typescript/lib/lib.es2017.sharedmemory.d.ts","../../../node_modules/typescript/lib/lib.es2017.string.d.ts","../../../node_modules/typescript/lib/lib.es2017.intl.d.ts","../../../node_modules/typescript/lib/lib.es2017.typedarrays.d.ts","../../../node_modules/typescript/lib/lib.es2018.asyncgenerator.d.ts","../../../node_modules/typescript/lib/lib.es2018.asynciterable.d.ts","../../../node_modules/typescript/lib/lib.es2018.intl.d.ts","../../../node_modules/typescript/lib/lib.es2018.promise.d.ts","../../../node_modules/typescript/lib/lib.es2018.regexp.d.ts","../../../node_modules/typescript/lib/lib.es2019.array.d.ts","../../../node_modules/typescript/lib/lib.es2019.object.d.ts","../../../node_modules/typescript/lib/lib.es2019.string.d.ts","../../../node_modules/typescript/lib/lib.es2019.symbol.d.ts","../../../node_modules/typescript/lib/lib.es2019.intl.d.ts","../../../node_modules/typescript/lib/lib.es2020.bigint.d.ts","../../../node_modules/typescript/lib/lib.es2020.date.d.ts","../../../node_modules/typescript/lib/lib.es2020.promise.d.ts","../../../node_modules/typescript/lib/lib.es2020.sharedmemory.d.ts","../../../node_modules/typescript/lib/lib.es2020.string.d.ts","../../../node_modules/typescript/lib/lib.es2020.symbol.wellknown.d.ts","../../../node_modules/typescript/lib/lib.es2020.intl.d.ts","../../../node_modules/typescript/lib/lib.es2020.number.d.ts","../../../node_modules/typescript/lib/lib.esnext.disposable.d.ts","../../../node_modules/typescript/lib/lib.esnext.float16.d.ts","../../../node_modules/typescript/lib/lib.decorators.d.ts","../../../node_modules/typescript/lib/lib.decorators.legacy.d.ts","../../../node_modules/tslib/tslib.d.ts","../../../node_modules/tslib/modules/index.d.ts","../../../node_modules/@lit/reactive-element/development/css-tag.d.ts","../../../node_modules/@lit/reactive-element/development/reactive-controller.d.ts","../../../node_modules/@lit/reactive-element/development/reactive-element.d.ts","../../../node_modules/lit-html/development/directive.d.ts","../../../node_modules/@types/trusted-types/lib/index.d.ts","../../../node_modules/lit-html/development/lit-html.d.ts","../../../node_modules/lit-element/development/lit-element.d.ts","../../../node_modules/lit-html/development/is-server.d.ts","../../../node_modules/lit/development/index.d.ts","../../../node_modules/@lit/reactive-element/development/decorators/base.d.ts","../../../node_modules/@lit/reactive-element/development/decorators/custom-element.d.ts","../../../node_modules/@lit/reactive-element/development/decorators/property.d.ts","../../../node_modules/@lit/reactive-element/development/decorators/state.d.ts","../../../node_modules/@lit/reactive-element/development/decorators/event-options.d.ts","../../../node_modules/@lit/reactive-element/development/decorators/query.d.ts","../../../node_modules/@lit/reactive-element/development/decorators/query-all.d.ts","../../../node_modules/@lit/reactive-element/development/decorators/query-async.d.ts","../../../node_modules/@lit/reactive-element/development/decorators/query-assigned-nodes.d.ts","../../../node_modules/@lit/reactive-element/development/decorators/query-assigned-elements.d.ts","../../../node_modules/lit/development/decorators.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/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/box-padding-editor-styles.d.ts","../../styles/dist/src/gradient-direction-styles.d.ts","../../styles/dist/src/property-grid-styles.d.ts","../../styles/dist/src/table-event-styles.d.ts","../../styles/dist/src/inspector-styles.d.ts","../../styles/dist/src/line-styles.d.ts","../../styles/dist/src/index.d.ts","../src/position-converter.ts","../src/ox-popup.ts","../../../node_modules/@material/web/icon/internal/icon.d.ts","../../../node_modules/@material/web/icon/icon.d.ts","../../../node_modules/@types/sortablejs/plugins.d.ts","../../../node_modules/@types/sortablejs/index.d.ts","../src/ox-popup-list.ts","../src/ox-popup-menu.ts","../src/ox-popup-menuitem.ts","../../../node_modules/@material/web/elevation/internal/elevation.d.ts","../../../node_modules/@material/web/elevation/elevation.d.ts","../../../node_modules/@material/web/internal/controller/attachable-controller.d.ts","../../../node_modules/@material/web/focus/internal/focus-ring.d.ts","../../../node_modules/@material/web/focus/md-focus-ring.d.ts","../../../node_modules/@material/web/ripple/internal/ripple.d.ts","../../../node_modules/@material/web/ripple/ripple.d.ts","../../../node_modules/@material/web/labs/behaviors/mixin.d.ts","../../../node_modules/@material/web/labs/behaviors/element-internals.d.ts","../../../node_modules/@material/web/labs/behaviors/form-associated.d.ts","../../../node_modules/@material/web/labs/behaviors/form-submitter.d.ts","../../../node_modules/@material/web/button/internal/button.d.ts","../../../node_modules/@material/web/button/internal/filled-button.d.ts","../../../node_modules/@material/web/button/filled-button.d.ts","../../../node_modules/@material/web/button/internal/outlined-button.d.ts","../../../node_modules/@material/web/button/outlined-button.d.ts","../../../node_modules/@material/web/typography/md-typescale-styles.cssresult.d.ts","../../../node_modules/@material/web/typography/md-typescale-styles.d.ts","../src/ox-prompt.ts","../../../node_modules/lit-html/development/directives/if-defined.d.ts","../../../node_modules/lit/development/directives/if-defined.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/has-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/longpressable.d.ts","../../utils/dist/src/decode-html.d.ts","../../utils/dist/src/script-loader.d.ts","../../utils/dist/src/reactive-controllers/tooltip-reactive-controller.d.ts","../../utils/dist/src/reactive-controllers/index.d.ts","../../utils/dist/src/index.d.ts","../src/ox-floating-overlay.ts","../src/open-popup.ts","../src/index.ts","../../../node_modules/@material/web/button/internal/elevated-button.d.ts","../../../node_modules/@material/web/button/elevated-button.d.ts","../../../node_modules/@material/web/button/internal/filled-tonal-button.d.ts","../../../node_modules/@material/web/button/filled-tonal-button.d.ts","../../../node_modules/@material/web/button/internal/text-button.d.ts","../../../node_modules/@material/web/button/text-button.d.ts","../../../node_modules/@material/web/labs/behaviors/validators/validator.d.ts","../../../node_modules/@material/web/labs/behaviors/constraint-validation.d.ts","../../../node_modules/@material/web/labs/behaviors/validators/checkbox-validator.d.ts","../../../node_modules/@material/web/checkbox/internal/checkbox.d.ts","../../../node_modules/@material/web/checkbox/checkbox.d.ts","../../../node_modules/lit-html/development/directives/class-map.d.ts","../../../node_modules/lit/development/directives/class-map.d.ts","../../../node_modules/@material/web/chips/internal/chip.d.ts","../../../node_modules/@material/web/chips/internal/assist-chip.d.ts","../../../node_modules/@material/web/chips/assist-chip.d.ts","../../../node_modules/@material/web/chips/internal/chip-set.d.ts","../../../node_modules/@material/web/chips/chip-set.d.ts","../../../node_modules/@material/web/chips/internal/multi-action-chip.d.ts","../../../node_modules/@material/web/chips/internal/filter-chip.d.ts","../../../node_modules/@material/web/chips/filter-chip.d.ts","../../../node_modules/@material/web/chips/internal/input-chip.d.ts","../../../node_modules/@material/web/chips/input-chip.d.ts","../../../node_modules/@material/web/chips/internal/suggestion-chip.d.ts","../../../node_modules/@material/web/chips/suggestion-chip.d.ts","../../../node_modules/@material/web/divider/internal/divider.d.ts","../../../node_modules/@material/web/divider/divider.d.ts","../../../node_modules/@material/web/dialog/internal/animations.d.ts","../../../node_modules/@material/web/dialog/internal/dialog.d.ts","../../../node_modules/@material/web/dialog/dialog.d.ts","../../../node_modules/@material/web/fab/internal/shared.d.ts","../../../node_modules/@material/web/fab/internal/fab.d.ts","../../../node_modules/@material/web/fab/branded-fab.d.ts","../../../node_modules/@material/web/fab/fab.d.ts","../../../node_modules/@material/web/field/internal/field.d.ts","../../../node_modules/@material/web/field/internal/filled-field.d.ts","../../../node_modules/@material/web/field/filled-field.d.ts","../../../node_modules/@material/web/field/internal/outlined-field.d.ts","../../../node_modules/@material/web/field/outlined-field.d.ts","../../../node_modules/@material/web/iconbutton/internal/icon-button.d.ts","../../../node_modules/@material/web/iconbutton/filled-icon-button.d.ts","../../../node_modules/@material/web/iconbutton/filled-tonal-icon-button.d.ts","../../../node_modules/@material/web/iconbutton/icon-button.d.ts","../../../node_modules/@material/web/iconbutton/outlined-icon-button.d.ts","../../../node_modules/@material/web/list/internal/list-navigation-helpers.d.ts","../../../node_modules/@material/web/list/internal/list.d.ts","../../../node_modules/@material/web/list/list.d.ts","../../../node_modules/@material/web/labs/item/internal/item.d.ts","../../../node_modules/@material/web/labs/item/item.d.ts","../../../node_modules/@material/web/list/internal/listitem/list-item.d.ts","../../../node_modules/@material/web/list/list-item.d.ts","../../../node_modules/@material/web/menu/internal/controllers/menuitemcontroller.d.ts","../../../node_modules/lit-html/development/directives/style-map.d.ts","../../../node_modules/lit/development/directives/style-map.d.ts","../../../node_modules/@material/web/menu/internal/controllers/surfacepositioncontroller.d.ts","../../../node_modules/@material/web/menu/internal/controllers/shared.d.ts","../../../node_modules/@material/web/menu/internal/controllers/typeaheadcontroller.d.ts","../../../node_modules/@material/web/menu/internal/menu.d.ts","../../../node_modules/@material/web/menu/menu.d.ts","../../../node_modules/@material/web/menu/internal/menuitem/menu-item.d.ts","../../../node_modules/@material/web/menu/menu-item.d.ts","../../../node_modules/@material/web/menu/internal/submenu/sub-menu.d.ts","../../../node_modules/@material/web/menu/sub-menu.d.ts","../../../node_modules/@material/web/progress/internal/progress.d.ts","../../../node_modules/@material/web/progress/internal/circular-progress.d.ts","../../../node_modules/@material/web/progress/circular-progress.d.ts","../../../node_modules/@material/web/progress/internal/linear-progress.d.ts","../../../node_modules/@material/web/progress/linear-progress.d.ts","../../../node_modules/@material/web/labs/behaviors/validators/radio-validator.d.ts","../../../node_modules/@material/web/labs/behaviors/focusable.d.ts","../../../node_modules/@material/web/radio/internal/radio.d.ts","../../../node_modules/@material/web/radio/radio.d.ts","../../../node_modules/lit-html/development/static.d.ts","../../../node_modules/lit/development/static-html.d.ts","../../../node_modules/@material/web/labs/behaviors/on-report-validity.d.ts","../../../node_modules/@material/web/labs/behaviors/validators/select-validator.d.ts","../../../node_modules/@material/web/select/internal/selectoption/select-option.d.ts","../../../node_modules/@material/web/select/internal/select.d.ts","../../../node_modules/@material/web/select/internal/filled-select.d.ts","../../../node_modules/@material/web/select/filled-select.d.ts","../../../node_modules/@material/web/select/internal/outlined-select.d.ts","../../../node_modules/@material/web/select/outlined-select.d.ts","../../../node_modules/@material/web/select/select-option.d.ts","../../../node_modules/@material/web/slider/internal/slider.d.ts","../../../node_modules/@material/web/slider/slider.d.ts","../../../node_modules/@material/web/switch/internal/switch.d.ts","../../../node_modules/@material/web/switch/switch.d.ts","../../../node_modules/@material/web/tabs/internal/tab.d.ts","../../../node_modules/@material/web/tabs/internal/primary-tab.d.ts","../../../node_modules/@material/web/tabs/primary-tab.d.ts","../../../node_modules/@material/web/tabs/internal/secondary-tab.d.ts","../../../node_modules/@material/web/tabs/secondary-tab.d.ts","../../../node_modules/@material/web/tabs/internal/tabs.d.ts","../../../node_modules/@material/web/tabs/tabs.d.ts","../../../node_modules/@material/web/textfield/internal/text-field.d.ts","../../../node_modules/@material/web/textfield/internal/filled-text-field.d.ts","../../../node_modules/@material/web/textfield/filled-text-field.d.ts","../../../node_modules/@material/web/textfield/internal/outlined-text-field.d.ts","../../../node_modules/@material/web/textfield/outlined-text-field.d.ts","../../../node_modules/@material/web/all.d.ts","../stories/open-popup.stories.ts","../../input/dist/src/ox-form-field.d.ts","../../input/dist/src/ox-checkbox.d.ts","../stories/ox-popup-list-image-2.stories.ts","../stories/ox-popup-list-image.stories.ts","../stories/ox-popup-list-sortable.stories.ts","../stories/ox-popup-list.stories.ts","../stories/ox-popup-menu.stories.ts","../stories/ox-popup.stories.ts","../stories/ox-prompt-icon.stories.ts","../stories/ox-prompt-normal.stories.ts","../stories/ox-prompt.stories.ts","../../../node_modules/@types/node/globals.typedarray.d.ts","../../../node_modules/@types/node/buffer.buffer.d.ts","../../../node_modules/@types/node/globals.d.ts","../../../node_modules/@types/node/web-globals/abortcontroller.d.ts","../../../node_modules/@types/node/web-globals/blob.d.ts","../../../node_modules/@types/node/web-globals/console.d.ts","../../../node_modules/@types/node/web-globals/crypto.d.ts","../../../node_modules/@types/node/web-globals/domexception.d.ts","../../../node_modules/@types/node/web-globals/encoding.d.ts","../../../node_modules/@types/node/web-globals/events.d.ts","../../../node_modules/undici-types/utility.d.ts","../../../node_modules/undici-types/header.d.ts","../../../node_modules/undici-types/readable.d.ts","../../../node_modules/undici-types/fetch.d.ts","../../../node_modules/undici-types/formdata.d.ts","../../../node_modules/undici-types/connector.d.ts","../../../node_modules/undici-types/client-stats.d.ts","../../../node_modules/undici-types/client.d.ts","../../../node_modules/undici-types/errors.d.ts","../../../node_modules/undici-types/dispatcher.d.ts","../../../node_modules/undici-types/global-dispatcher.d.ts","../../../node_modules/undici-types/global-origin.d.ts","../../../node_modules/undici-types/pool-stats.d.ts","../../../node_modules/undici-types/pool.d.ts","../../../node_modules/undici-types/handlers.d.ts","../../../node_modules/undici-types/balanced-pool.d.ts","../../../node_modules/undici-types/round-robin-pool.d.ts","../../../node_modules/undici-types/h2c-client.d.ts","../../../node_modules/undici-types/agent.d.ts","../../../node_modules/undici-types/dispatcher1-wrapper.d.ts","../../../node_modules/undici-types/mock-interceptor.d.ts","../../../node_modules/undici-types/mock-call-history.d.ts","../../../node_modules/undici-types/mock-agent.d.ts","../../../node_modules/undici-types/mock-client.d.ts","../../../node_modules/undici-types/mock-pool.d.ts","../../../node_modules/undici-types/snapshot-agent.d.ts","../../../node_modules/undici-types/mock-errors.d.ts","../../../node_modules/undici-types/proxy-agent.d.ts","../../../node_modules/undici-types/socks5-proxy-agent.d.ts","../../../node_modules/undici-types/env-http-proxy-agent.d.ts","../../../node_modules/undici-types/retry-handler.d.ts","../../../node_modules/undici-types/retry-agent.d.ts","../../../node_modules/undici-types/api.d.ts","../../../node_modules/undici-types/cache-interceptor.d.ts","../../../node_modules/undici-types/interceptors.d.ts","../../../node_modules/undici-types/util.d.ts","../../../node_modules/undici-types/cookies.d.ts","../../../node_modules/undici-types/patch.d.ts","../../../node_modules/undici-types/websocket.d.ts","../../../node_modules/undici-types/eventsource.d.ts","../../../node_modules/undici-types/diagnostics-channel.d.ts","../../../node_modules/undici-types/content-type.d.ts","../../../node_modules/undici-types/cache.d.ts","../../../node_modules/undici-types/index.d.ts","../../../node_modules/@types/node/web-globals/fetch.d.ts","../../../node_modules/@types/node/web-globals/importmeta.d.ts","../../../node_modules/@types/node/web-globals/messaging.d.ts","../../../node_modules/@types/node/web-globals/navigator.d.ts","../../../node_modules/@types/node/web-globals/performance.d.ts","../../../node_modules/@types/node/web-globals/storage.d.ts","../../../node_modules/@types/node/web-globals/streams.d.ts","../../../node_modules/@types/node/web-globals/timers.d.ts","../../../node_modules/@types/node/web-globals/url.d.ts","../../../node_modules/@types/node/assert.d.ts","../../../node_modules/@types/node/assert/strict.d.ts","../../../node_modules/@types/node/async_hooks.d.ts","../../../node_modules/@types/node/buffer.d.ts","../../../node_modules/@types/node/child_process.d.ts","../../../node_modules/@types/node/cluster.d.ts","../../../node_modules/@types/node/console.d.ts","../../../node_modules/@types/node/constants.d.ts","../../../node_modules/@types/node/crypto.d.ts","../../../node_modules/@types/node/dgram.d.ts","../../../node_modules/@types/node/diagnostics_channel.d.ts","../../../node_modules/@types/node/dns.d.ts","../../../node_modules/@types/node/dns/promises.d.ts","../../../node_modules/@types/node/domain.d.ts","../../../node_modules/@types/node/events.d.ts","../../../node_modules/@types/node/ffi.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/inspector.generated.d.ts","../../../node_modules/@types/node/inspector/promises.d.ts","../../../node_modules/@types/node/module.d.ts","../../../node_modules/@types/node/net.d.ts","../../../node_modules/buffer/index.d.ts","../../../node_modules/@types/node/os.d.ts","../../../node_modules/@types/node/path.d.ts","../../../node_modules/@types/node/path/posix.d.ts","../../../node_modules/@types/node/path/win32.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/quic.d.ts","../../../node_modules/@types/node/readline.d.ts","../../../node_modules/@types/node/readline/promises.d.ts","../../../node_modules/@types/node/repl.d.ts","../../../node_modules/@types/node/sea.d.ts","../../../node_modules/@types/node/sqlite.d.ts","../../../node_modules/@types/node/stream.d.ts","../../../node_modules/@types/node/stream/consumers.d.ts","../../../node_modules/@types/node/stream/iter.d.ts","../../../node_modules/@types/node/stream/promises.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/test/reporters.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/util/types.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/zlib/iter.d.ts","../../../node_modules/@types/node/index.d.ts","../../../node_modules/@types/mocha/index.d.ts"],"fileIdsList":[[260,325,333,338,341,343,344,345,358],[60,260,325,333,338,341,343,344,345,358],[53,60,260,325,333,338,341,343,344,345,358],[53,60,68,260,325,333,338,341,343,344,345,358],[62,260,325,333,338,341,343,344,345,358],[51,52,260,325,333,338,341,343,344,345,358],[88,95,98,100,107,109,148,150,152,157,162,164,167,169,171,173,176,179,180,183,185,187,188,189,190,193,197,205,207,209,212,214,218,226,228,229,231,233,236,238,240,243,245,260,325,333,338,341,343,344,345,358],[59,147,260,325,333,338,341,343,344,345,358],[59,106,260,325,333,338,341,343,344,345,358],[59,149,260,325,333,338,341,343,344,345,358],[56,59,98,100,101,102,103,104,260,325,333,338,341,343,344,345,358],[56,95,105,260,325,333,338,341,343,344,345,358],[56,105,260,325,333,338,341,343,344,345,358],[105,260,325,333,338,341,343,344,345,358],[59,108,260,325,333,338,341,343,344,345,358],[59,151,260,325,333,338,341,343,344,345,358],[59,156,260,325,333,338,341,343,344,345,358],[56,59,98,100,101,102,103,154,155,260,325,333,338,341,343,344,345,358],[59,161,260,325,333,338,341,343,344,345,358],[59,163,260,325,333,338,341,343,344,345,358],[59,166,260,325,333,338,341,343,344,345,358],[59,168,260,325,333,338,341,343,344,345,358],[56,95,160,260,325,333,338,341,343,344,345,358],[56,59,160,260,325,333,338,341,343,344,345,358],[59,98,100,101,159,260,325,333,338,341,343,344,345,358],[56,59,95,165,260,325,333,338,341,343,344,345,358],[56,165,260,325,333,338,341,343,344,345,358],[56,160,260,325,333,338,341,343,344,345,358],[161,260,325,333,338,341,343,344,345,358],[59,170,260,325,333,338,341,343,344,345,358],[59,175,260,325,333,338,341,343,344,345,358],[56,59,101,173,174,260,325,333,338,341,343,344,345,358],[59,172,260,325,333,338,341,343,344,345,358],[59,260,325,333,338,341,343,344,345,358],[59,94,260,325,333,338,341,343,344,345,358],[56,59,260,325,333,338,341,343,344,345,358],[59,177,178,260,325,333,338,341,343,344,345,358],[177,260,325,333,338,341,343,344,345,358],[56,59,95,98,100,101,260,325,333,338,341,343,344,345,358],[59,182,260,325,333,338,341,343,344,345,358],[56,181,260,325,333,338,341,343,344,345,358],[59,184,260,325,333,338,341,343,344,345,358],[59,96,260,325,333,338,341,343,344,345,358],[59,97,260,325,333,338,341,343,344,345,358],[59,87,260,325,333,338,341,343,344,345,358],[59,186,260,325,333,338,341,343,344,345,358],[59,101,102,103,153,260,325,333,338,341,343,344,345,358],[59,101,260,325,333,338,341,343,344,345,358],[59,101,102,260,325,333,338,341,343,344,345,358],[59,101,102,154,260,325,333,338,341,343,344,345,358],[153,260,325,333,338,341,343,344,345,358],[59,194,260,325,333,338,341,343,344,345,358],[56,59,191,260,325,333,338,341,343,344,345,358],[59,98,100,101,159,191,195,260,325,333,338,341,343,344,345,358],[59,196,260,325,333,338,341,343,344,345,358],[59,192,260,325,333,338,341,343,344,345,358],[59,198,201,260,325,333,338,341,343,344,345,358],[59,200,260,325,333,338,341,343,344,345,358],[198,260,325,333,338,341,343,344,345,358],[56,59,95,98,198,201,202,203,260,325,333,338,341,343,344,345,358],[59,98,100,101,159,195,198,260,325,333,338,341,343,344,345,358],[56,59,198,202,204,260,325,333,338,341,343,344,345,358],[59,198,202,206,260,325,333,338,341,343,344,345,358],[59,191,198,202,204,260,325,333,338,341,343,344,345,358],[59,208,260,325,333,338,341,343,344,345,358],[59,211,260,325,333,338,341,343,344,345,358],[56,210,260,325,333,338,341,343,344,345,358],[59,213,260,325,333,338,341,343,344,345,358],[56,59,98,100,101,102,103,154,215,216,260,325,333,338,341,343,344,345,358],[59,217,260,325,333,338,341,343,344,345,358],[56,59,96,260,325,333,338,341,343,344,345,358],[59,99,260,325,333,338,341,343,344,345,358],[59,225,260,325,333,338,341,343,344,345,358],[183,219,224,260,325,333,338,341,343,344,345,358],[185,219,224,260,325,333,338,341,343,344,345,358],[56,59,101,102,103,154,181,205,220,221,222,223,260,325,333,338,341,343,344,345,358],[56,59,98,100,101,159,195,198,260,325,333,338,341,343,344,345,358],[59,227,260,325,333,338,341,343,344,345,358],[59,223,260,325,333,338,341,343,344,345,358],[56,59,95,98,100,101,102,103,260,325,333,338,341,343,344,345,358],[59,230,260,325,333,338,341,343,344,345,358],[59,98,100,101,102,103,154,155,260,325,333,338,341,343,344,345,358],[59,232,260,325,333,338,341,343,344,345,358],[234,260,325,333,338,341,343,344,345,358],[56,59,95,98,100,101,159,216,260,325,333,338,341,343,344,345,358],[56,59,173,234,260,325,333,338,341,343,344,345,358],[59,235,260,325,333,338,341,343,344,345,358],[59,237,260,325,333,338,341,343,344,345,358],[59,239,260,325,333,338,341,343,344,345,358],[59,183,219,241,242,260,325,333,338,341,343,344,345,358],[183,219,241,260,325,333,338,341,343,344,345,358],[185,219,241,260,325,333,338,341,343,344,345,358],[56,59,101,102,103,153,154,220,221,260,325,333,338,341,343,344,345,358],[59,185,219,241,244,260,325,333,338,341,343,344,345,358],[110,260,325,333,338,341,343,344,345,358],[260,322,323,325,333,338,341,343,344,345,358],[260,324,325,333,338,341,343,344,345,358],[325,333,338,341,343,344,345,358],[260,325,333,338,341,343,344,345,358,367],[260,325,326,331,333,336,338,341,343,344,345,347,358,363,376],[260,325,326,327,333,336,338,341,343,344,345,358],[260,325,328,333,338,341,343,344,345,358,377],[260,325,329,330,333,338,341,343,344,345,349,358],[260,325,330,333,338,341,343,344,345,358,363,373],[260,325,331,333,336,338,341,343,344,345,347,358],[260,324,325,332,333,338,341,343,344,345,358],[260,325,333,334,338,341,343,344,345,358],[260,325,333,335,336,338,341,343,344,345,358],[260,324,325,333,336,338,341,343,344,345,358],[260,325,333,336,338,339,341,343,344,345,358,363,376],[260,325,333,336,338,339,341,343,344,345,358,363,365,367],[260,312,325,333,336,338,340,341,343,344,345,347,358,363,376],[260,325,333,336,338,340,341,343,344,345,347,358,363,373,376],[260,325,333,338,340,341,342,343,344,345,358,363,373,376],[259,260,261,262,263,264,265,266,267,268,313,314,315,316,317,318,319,320,321,322,323,324,325,326,327,328,329,330,331,332,333,334,335,336,337,338,339,340,341,342,343,344,345,346,347,349,350,351,352,353,354,355,356,357,358,359,360,361,362,363,364,365,366,367,368,369,370,371,372,373,374,375,376,377,378,379,380,381,382,383,384],[260,325,333,336,338,341,343,344,345,358],[260,325,333,338,341,343,345,358],[260,325,333,338,341,343,344,345,346,358,376],[260,325,333,336,338,341,343,344,345,347,358,363],[260,325,333,338,341,343,344,345,349,358],[260,325,333,338,341,343,344,345,350,358],[260,325,333,336,338,341,343,344,345,353,358],[260,322,323,324,325,326,327,328,329,330,331,332,333,334,335,336,337,338,339,340,341,342,343,344,345,346,347,349,350,351,352,353,354,355,356,357,358,359,360,361,362,363,364,365,366,367,368,369,370,371,372,373,374,375,376,377,378,379,380,381,382,383],[260,325,333,338,341,343,344,345,355,358],[260,325,333,338,341,343,344,345,356,358],[260,325,330,333,338,341,343,344,345,347,358,367],[260,325,333,336,338,341,343,344,345,358,359],[260,325,333,338,341,343,344,345,358,360,377,380],[260,325,333,336,338,341,343,344,345,358,363,365,366,367],[260,325,333,338,341,343,344,345,358,364,367],[260,325,333,336,338,341,343,344,345,358,363,365],[260,325,333,336,338,341,343,344,345,358,363,366,367],[260,325,333,338,341,343,344,345,358,367,377],[260,325,333,338,341,343,344,345,358,368],[260,322,325,333,338,341,343,344,345,358,363,370,376],[260,325,333,338,341,343,344,345,358,363,369],[260,325,333,336,338,341,343,344,345,358,371,372],[260,325,333,338,341,343,344,345,358,371,372],[260,325,330,333,338,341,343,344,345,347,358,363,373],[260,325,333,338,341,343,344,345,358,374],[260,325,333,338,341,343,344,345,347,358,375],[260,325,333,338,340,341,343,344,345,356,358,376],[260,325,333,338,341,343,344,345,358,377,378],[260,325,330,333,338,341,343,344,345,358,378],[260,325,333,338,341,343,344,345,358,363,379],[260,325,333,338,341,343,344,345,346,358,380],[260,325,333,338,341,343,344,345,358,381],[260,325,328,333,338,341,343,344,345,358],[260,325,330,333,338,341,343,344,345,358],[260,325,333,338,341,343,344,345,358,377],[260,312,325,333,338,341,343,344,345,358],[260,325,333,338,341,343,344,345,358,376],[260,325,333,338,341,343,344,345,358,382],[260,325,333,338,341,343,344,345,353,358],[260,325,333,338,341,343,344,345,358,372],[260,312,325,333,336,338,339,341,343,344,345,353,358,363,367,376,379,380,382],[260,325,333,338,341,343,344,345,358,363,383],[260,325,333,338,341,343,344,345,358,365,384],[89,260,325,333,338,341,343,344,345,358],[90,260,325,333,338,341,343,344,345,358],[53,56,260,325,333,338,341,343,344,345,358],[56,260,325,333,338,341,343,344,345,358],[54,56,260,325,333,338,341,343,344,345,358],[54,55,260,325,333,338,341,343,344,345,358],[61,62,63,64,65,66,67,68,69,260,325,333,338,341,343,344,345,358],[158,260,325,333,338,341,343,344,345,358],[113,260,325,333,338,341,343,344,345,358],[199,260,325,333,338,341,343,344,345,358],[53,56,57,58,260,325,333,338,341,343,344,345,358],[219,260,325,333,338,341,343,344,345,358],[49,260,325,333,338,341,343,344,345,358],[260,275,278,281,282,325,333,338,341,343,344,345,358,376],[260,278,325,333,338,341,343,344,345,358,363,376],[260,278,282,325,333,338,341,343,344,345,358,376],[260,325,333,338,341,343,344,345,358,363],[260,272,325,333,338,341,343,344,345,358],[260,276,325,333,338,341,343,344,345,358],[260,274,275,278,325,333,338,341,343,344,345,358,376],[260,325,333,338,341,343,344,345,347,358,373],[260,325,333,338,341,343,344,345,358,385],[260,272,325,333,338,341,343,344,345,358,385],[260,274,278,325,333,338,341,343,344,345,347,358,376],[260,269,270,271,273,277,325,333,336,338,341,343,344,345,358,363,376],[260,278,325,333,338,341,343,344,345,358],[260,278,287,296,325,333,338,341,343,344,345,358],[260,270,276,325,333,338,341,343,344,345,358],[260,278,306,307,325,333,338,341,343,344,345,358],[260,270,273,278,325,333,338,341,343,344,345,358,367,376,385],[260,274,278,325,333,338,341,343,344,345,358,376],[260,269,325,333,338,341,343,344,345,358],[260,272,273,274,276,277,278,279,280,282,283,284,285,286,287,288,289,290,291,292,293,294,295,296,297,298,299,300,301,302,303,304,305,307,308,309,310,311,325,333,338,341,343,344,345,358],[260,278,299,302,325,333,338,341,343,344,345,358],[260,278,287,289,290,325,333,338,341,343,344,345,358],[260,276,278,289,291,325,333,338,341,343,344,345,358],[260,277,325,333,338,341,343,344,345,358],[260,270,272,278,325,333,338,341,343,344,345,358],[260,278,282,289,291,325,333,338,341,343,344,345,358],[260,282,325,333,338,341,343,344,345,358],[260,276,278,281,325,333,338,341,343,344,345,358,376],[260,270,274,278,287,325,333,338,341,343,344,345,358],[260,278,299,325,333,338,341,343,344,345,358],[260,291,325,333,338,341,343,344,345,358],[260,270,274,278,282,325,333,338,341,343,344,345,358],[260,272,278,306,325,333,338,341,343,344,345,358,367,382,385],[56,59,248,260,325,333,338,341,343,344,345,358],[50,86,91,92,93,112,145,260,325,333,338,341,343,344,345,358],[50,59,144,260,325,333,338,341,343,344,345,358],[50,59,70,84,88,114,143,260,325,333,338,341,343,344,345,358],[50,56,59,70,85,86,88,90,260,325,333,338,341,343,344,345,358],[50,56,59,70,85,86,260,325,333,338,341,343,344,345,358],[50,59,70,92,260,325,333,338,341,343,344,345,358],[50,56,59,70,84,85,260,325,333,338,341,343,344,345,358],[50,56,59,70,84,88,107,109,111,260,325,333,338,341,343,344,345,358],[50,260,325,333,338,341,343,344,345,358],[50,59,111,145,246,260,325,333,338,341,343,344,345,358],[50,59,91,111,246,249,260,325,333,338,341,343,344,345,358],[50,59,88,91,109,111,249,260,325,333,338,341,343,344,345,358],[50,59,92,93,111,246,249,260,325,333,338,341,343,344,345,358],[50,59,86,111,246,260,325,333,338,341,343,344,345,358],[50,59,111,112,246,260,325,333,338,341,343,344,345,358],[50,59,111,112,260,325,333,338,341,343,344,345,358],[71,72,73,74,75,76,77,78,79,80,81,82,83,260,325,333,338,341,343,344,345,358],[115,116,117,118,119,120,121,122,123,124,125,126,129,130,131,132,133,134,135,136,137,138,139,140,142,260,325,333,338,341,343,344,345,358],[141,260,325,333,338,341,343,344,345,358],[127,128,260,325,333,338,341,343,344,345,358],[128,260,325,333,338,341,343,344,345,358],[127,260,325,333,338,341,343,344,345,358]],"fileInfos":[{"version":"c430d44666289dae81f30fa7b2edebf186ecc91a2d4c71266ea6ae76388792e1","affectsGlobalScope":true,"impliedFormat":1},{"version":"45b7ab580deca34ae9729e97c13cfd999df04416a79116c3bfb483804f85ded4","impliedFormat":1},{"version":"3facaf05f0c5fc569c5649dd359892c98a85557e3e0c847964caeb67076f4d75","impliedFormat":1},{"version":"e44bb8bbac7f10ecc786703fe0a6a4b952189f908707980ba8f3c8975a760962","impliedFormat":1},{"version":"5e1c4c362065a6b95ff952c0eab010f04dcd2c3494e813b493ecfd4fcb9fc0d8","impliedFormat":1},{"version":"68d73b4a11549f9c0b7d352d10e91e5dca8faa3322bfb77b661839c42b1ddec7","impliedFormat":1},{"version":"5efce4fc3c29ea84e8928f97adec086e3dc876365e0982cc8479a07954a3efd4","impliedFormat":1},{"version":"080941d9f9ff9307f7e27a83bcd888b7c8270716c39af943532438932ec1d0b9","affectsGlobalScope":true,"impliedFormat":1},{"version":"c57796738e7f83dbc4b8e65132f11a377649c00dd3eee333f672b8f0a6bea671","affectsGlobalScope":true,"impliedFormat":1},{"version":"dc2df20b1bcdc8c2d34af4926e2c3ab15ffe1160a63e58b7e09833f616efff44","affectsGlobalScope":true,"impliedFormat":1},{"version":"515d0b7b9bea2e31ea4ec968e9edd2c39d3eebf4a2d5cbd04e88639819ae3b71","affectsGlobalScope":true,"impliedFormat":1},{"version":"0559b1f683ac7505ae451f9a96ce4c3c92bdc71411651ca6ddb0e88baaaad6a3","affectsGlobalScope":true,"impliedFormat":1},{"version":"0dc1e7ceda9b8b9b455c3a2d67b0412feab00bd2f66656cd8850e8831b08b537","affectsGlobalScope":true,"impliedFormat":1},{"version":"ce691fb9e5c64efb9547083e4a34091bcbe5bdb41027e310ebba8f7d96a98671","affectsGlobalScope":true,"impliedFormat":1},{"version":"8d697a2a929a5fcb38b7a65594020fcef05ec1630804a33748829c5ff53640d0","affectsGlobalScope":true,"impliedFormat":1},{"version":"4ff2a353abf8a80ee399af572debb8faab2d33ad38c4b4474cff7f26e7653b8d","affectsGlobalScope":true,"impliedFormat":1},{"version":"fb0f136d372979348d59b3f5020b4cdb81b5504192b1cacff5d1fbba29378aa1","affectsGlobalScope":true,"impliedFormat":1},{"version":"d15bea3d62cbbdb9797079416b8ac375ae99162a7fba5de2c6c505446486ac0a","affectsGlobalScope":true,"impliedFormat":1},{"version":"68d18b664c9d32a7336a70235958b8997ebc1c3b8505f4f1ae2b7e7753b87618","affectsGlobalScope":true,"impliedFormat":1},{"version":"eb3d66c8327153d8fa7dd03f9c58d351107fe824c79e9b56b462935176cdf12a","affectsGlobalScope":true,"impliedFormat":1},{"version":"38f0219c9e23c915ef9790ab1d680440d95419ad264816fa15009a8851e79119","affectsGlobalScope":true,"impliedFormat":1},{"version":"69ab18c3b76cd9b1be3d188eaf8bba06112ebbe2f47f6c322b5105a6fbc45a2e","affectsGlobalScope":true,"impliedFormat":1},{"version":"a680117f487a4d2f30ea46f1b4b7f58bef1480456e18ba53ee85c2746eeca012","affectsGlobalScope":true,"impliedFormat":1},{"version":"2f11ff796926e0832f9ae148008138ad583bd181899ab7dd768a2666700b1893","affectsGlobalScope":true,"impliedFormat":1},{"version":"4de680d5bb41c17f7f68e0419412ca23c98d5749dcaaea1896172f06435891fc","affectsGlobalScope":true,"impliedFormat":1},{"version":"954296b30da6d508a104a3a0b5d96b76495c709785c1d11610908e63481ee667","affectsGlobalScope":true,"impliedFormat":1},{"version":"ac9538681b19688c8eae65811b329d3744af679e0bdfa5d842d0e32524c73e1c","affectsGlobalScope":true,"impliedFormat":1},{"version":"0a969edff4bd52585473d24995c5ef223f6652d6ef46193309b3921d65dd4376","affectsGlobalScope":true,"impliedFormat":1},{"version":"9e9fbd7030c440b33d021da145d3232984c8bb7916f277e8ffd3dc2e3eae2bdb","affectsGlobalScope":true,"impliedFormat":1},{"version":"811ec78f7fefcabbda4bfa93b3eb67d9ae166ef95f9bff989d964061cbf81a0c","affectsGlobalScope":true,"impliedFormat":1},{"version":"717937616a17072082152a2ef351cb51f98802fb4b2fdabd32399843875974ca","affectsGlobalScope":true,"impliedFormat":1},{"version":"d7e7d9b7b50e5f22c915b525acc5a49a7a6584cf8f62d0569e557c5cfc4b2ac2","affectsGlobalScope":true,"impliedFormat":1},{"version":"71c37f4c9543f31dfced6c7840e068c5a5aacb7b89111a4364b1d5276b852557","affectsGlobalScope":true,"impliedFormat":1},{"version":"576711e016cf4f1804676043e6a0a5414252560eb57de9faceee34d79798c850","affectsGlobalScope":true,"impliedFormat":1},{"version":"89c1b1281ba7b8a96efc676b11b264de7a8374c5ea1e6617f11880a13fc56dc6","affectsGlobalScope":true,"impliedFormat":1},{"version":"74f7fa2d027d5b33eb0471c8e82a6c87216223181ec31247c357a3e8e2fddc5b","affectsGlobalScope":true,"impliedFormat":1},{"version":"d6d7ae4d1f1f3772e2a3cde568ed08991a8ae34a080ff1151af28b7f798e22ca","affectsGlobalScope":true,"impliedFormat":1},{"version":"063600664504610fe3e99b717a1223f8b1900087fab0b4cad1496a114744f8df","affectsGlobalScope":true,"impliedFormat":1},{"version":"934019d7e3c81950f9a8426d093458b65d5aff2c7c1511233c0fd5b941e608ab","affectsGlobalScope":true,"impliedFormat":1},{"version":"52ada8e0b6e0482b728070b7639ee42e83a9b1c22d205992756fe020fd9f4a47","affectsGlobalScope":true,"impliedFormat":1},{"version":"3bdefe1bfd4d6dee0e26f928f93ccc128f1b64d5d501ff4a8cf3c6371200e5e6","affectsGlobalScope":true,"impliedFormat":1},{"version":"59fb2c069260b4ba00b5643b907ef5d5341b167e7d1dbf58dfd895658bda2867","affectsGlobalScope":true,"impliedFormat":1},{"version":"639e512c0dfc3fad96a84caad71b8834d66329a1f28dc95e3946c9b58176c73a","affectsGlobalScope":true,"impliedFormat":1},{"version":"368af93f74c9c932edd84c58883e736c9e3d53cec1fe24c0b0ff451f529ceab1","affectsGlobalScope":true,"impliedFormat":1},{"version":"51ad4c928303041605b4d7ae32e0c1ee387d43a24cd6f1ebf4a2699e1076d4fa","affectsGlobalScope":true,"impliedFormat":1},{"version":"196cb558a13d4533a5163286f30b0509ce0210e4b316c56c38d4c0fd2fb38405","affectsGlobalScope":true,"impliedFormat":1},{"version":"8e7f8264d0fb4c5339605a15daadb037bf238c10b654bb3eee14208f860a32ea","affectsGlobalScope":true,"impliedFormat":1},{"version":"782dec38049b92d4e85c1585fbea5474a219c6984a35b004963b00beb1aab538","affectsGlobalScope":true,"impliedFormat":1},{"version":"a6a5253138c5432c68a1510c70fe78a644fe2e632111ba778e1978010d6edfec","impliedFormat":1},{"version":"b8f34dd1757f68e03262b1ca3ddfa668a855b872f8bdd5224d6f993a7b37dc2c","impliedFormat":99},{"version":"74012d464fbc5354ca3a7d5e71bee43b17da01a853c8ff10971bbe3680c76f40","impliedFormat":99},{"version":"5e30131b6a5587fe666926ad1d9807e733c0a597ed12d682669fcaa331aea576","impliedFormat":99},{"version":"a0f82d2f9450bd147a8c137798d9501bd49b7c9e118f75b07b76709ff39b6b55","affectsGlobalScope":true,"impliedFormat":99},{"version":"00cb63103f9670f8094c238a4a7e252c8b4c06ba371fea5c44add7e41b7247e4","impliedFormat":99},{"version":"15fe687c59d62741b4494d5e623d497d55eb38966ecf5bea7f36e48fc3fbe15e","impliedFormat":1},{"version":"e09db3291e6b440f7debed2227d8357e80c95987a0d0d67ac17521d8f7b11bdb","impliedFormat":99},{"version":"9a318e3a8900672b85cd3c8c3a5acf51b88049557a3ae897ccdcf2b85a8f61f9","impliedFormat":99},{"version":"1bcd560deed90a43c51b08aa18f7f55229f2e30974ab5ed1b7bb5721be379013","impliedFormat":99},{"version":"dc08fe04e50bc24d1baded4f33e942222bbdd5d77d6341a93cfe6e4e4586a3be","impliedFormat":99},{"version":"cdeae34aca6700620ebf3f27cf7d439c3af97595dd6e2729fa4780483add5680","impliedFormat":99},{"version":"3ff87ea3471b51beaf4aa8fd8f4422862b11d343fdbb55bf383e0f8cc195a445","impliedFormat":99},{"version":"99bdf729529cdbf12e2bf76ea751b662011133dcf9e35abcb3def47bb02f7b0a","impliedFormat":99},{"version":"732fb71ecb695d6f36ddcbb72ebfe4ff6b6491d45101a00fa2b75a26b80d640f","impliedFormat":99},{"version":"039cb05125d7621f8143616c495b8e6b54249c4e64d2754b80ff93867f7f4b01","impliedFormat":99},{"version":"1b81f1fa82ad30af01ab1cae91ccaddc10c48f5916bbd6d282155e44a65d858d","impliedFormat":99},{"version":"a0fc7a02a75802678a67000607f20266cf1a49dc0e787967efe514e31b9ed0c3","impliedFormat":99},{"version":"5ebf098a1d81d400b8af82807cf19893700335cf91a7b9dbd83a5d737af34b11","impliedFormat":99},{"version":"101cf83ac3f9c5e1a7355a02e4fbe988877ef83c4ebec0ff0f02b2af022254a3","impliedFormat":99},{"version":"d017e2fcd44b46ca80cd2b592a6314e75f5caab5bda230f0f4a45e964049a43a","impliedFormat":99},{"version":"a8992b852521a66f63e0cedc6e1f054b28f972232b6fa5ca59771db6a1c8bbea","impliedFormat":99},"cf93fb9208a01c80f0fad245c4360356e5de6c2384b7641acf0b9cc2f5c42448","336398b0efaf964124e636a9b29c4edd5870aee79ac64bf87be58a9d66b7c048","571bc65ec37ba124e762bb822e14a2b8502dc684e356be8feaccbd6b9cadd023","7cd455fc4c4818f19263d73b29c59f3fb5fd54b45a6ab83ca3eb3661281db56b","1c6b9b5501774a2ece6574be8e26092800e3f1f836f8c179b4f9fdd271a620f8","bcd2426fd141157e04e3a8eff914b575403587f398cf0878f07c2f283e0d1afd","bac8ff394e831e4dd3f0961d6abb414b0e2b4ba16fdeb502d087ebf0340ed5f6","4c559568877f16745410a69bbbf0e2b131a228c819d581048f4d1ba7115b1b36","c89d663edb7c20cfab677286571dc8f4f09878119d7ecd010895133995f12532","9d04b912e18e966fca08158f28e5c41bfb2fa864187d926e04d737aa83a96e17","2ad4fcfa075cde73e5ae78491531cef44cec9fb9a880be8335afd98c444528cf","bf3dca387e78050848ddcb2ed4e5362f55948aaea8074205d2b1571e69780429","e2d895b9561b0b9a350c970475ff268e4e0fc44436e107a916889a0a93d3389b","c182c5370e3838b58902fb21d6800447a2e4d29329a4253f85f2b89bc3d4ce6a",{"version":"ced4aa66897bc621f69e0b3c6beea086cb5cae4a6b712fe3c3226263013bac43","signature":"438cc66bbb2c702f607a435f0d0b57b6394725c0b877574df839316b2eb85b07"},{"version":"2cd55863a015da5fd60e837f623d38407e020b79b250e4a37227ca213e775687","signature":"75069a2a1e380502ff9a1074b8ee61f5e84f31973e5f81b444e6993e5633c72b","affectsGlobalScope":true},{"version":"b93e2680295ac83b52846bcd76dd6d06507d3da1738ebe564a1e99543993b3b4","impliedFormat":99},{"version":"4ae1ed87c59518f4e0918a21409ec3020e97037a386b57953c6b9fed9cad6949","affectsGlobalScope":true,"impliedFormat":99},{"version":"cbb2be0de4e2a597ba2b7050389629fb4c2592a923e989d45095d1546913a696","impliedFormat":1},{"version":"aadcf59329c6f0f8978cfa1810dab147e0b67f241a39c965c4904459fcc98c27","impliedFormat":1},{"version":"90f1dbfd6cc3da25873a71dcb2c4f32de813b741aac1ffc71b182c277802c88d","signature":"8aff91f00938aa90ce829f4d577903d6826fa19e8edc583f7bb64ef1a6b4ae3b"},{"version":"faf982f530e7c04361b3154d5d0e6a0c86fab62ce6ed08fdd80ac97f4572467b","signature":"986165ecc3a59d4b6a272a92f7ca4fd7a0762c63a674abd2c1efa0bea64da604"},{"version":"9a6d52cf2cb5f35d903665007f9f07b4bbe0f919eff23fac5bbd895eb31dffa0","signature":"3e7b241ec38126d95f9e37c49a631c00cff006a888276e2d02920c6443c8b593"},{"version":"6184309fe39e2fe444f4ba94e7cd1abef48fcb48e258457c3b77c65828184241","impliedFormat":99},{"version":"98c511f60c3079d731a35353a47bfa89dd79eeacad48a45d07170d22ef4bfd02","affectsGlobalScope":true,"impliedFormat":99},{"version":"905800cc110167503d0cf58bb0dd6fa4aaac1e9cedc9bd9c48e5d1f8b5b8d4c8","impliedFormat":99},{"version":"d17be577b99e59611df19ca2cf0356df554f55bb06617c21321fc4ec06b820d0","impliedFormat":99},{"version":"5f30145fbc8ca508ae4e0d90a4fe9eaff490783f380a92f6aa262accdf7887b7","affectsGlobalScope":true,"impliedFormat":99},{"version":"cefe49d29d43726072e88671a2c40cdeeb8d49ca8fa6c2d4b06013dc7b9d6206","impliedFormat":99},{"version":"f882b77c5939860d599b4b7bc39f741ebcd56123e18b284500f4b8923acd2e72","affectsGlobalScope":true,"impliedFormat":99},{"version":"0230bc76ed3a464531a43d2434d315b9cc2096aaca28bdaa65b8f9dce9f3bc81","impliedFormat":99},{"version":"559d2d1cd7f37dc2ac59e7adce198ad16a5eb0c7273d67b8e4ff72821b7c853f","impliedFormat":99},{"version":"6161d12fc14a8e0cf492f9d49372a1189b1fe005662cb7fe6630352a6b0bb04e","impliedFormat":99},{"version":"7d3c06d4ad79d86c6f7518b77d335b324bc218a7cd8b3e15579c4b584b7307f9","impliedFormat":99},{"version":"65f5bc7ff74eeabe9925da575924601248471033c27bf0384643ea03cad2b57d","impliedFormat":99},{"version":"d08d474654640266d6ac03f51ee04d72438b78ea377b9dc4678c480ce0477e1a","impliedFormat":99},{"version":"929f21090183949e93fd99327d292bff76f781895d5252eb43319b2c3e014528","affectsGlobalScope":true,"impliedFormat":99},{"version":"f9f3097a031827350b6befd870e9da3ec0953b7269497c1a7c5dc840223d2fb3","impliedFormat":99},{"version":"d56278ed347a6685abc6da6b49277da36db3ddce86bd298c03b48a5f9c6d145c","affectsGlobalScope":true,"impliedFormat":99},{"version":"8f70a82ee2d854048e502d75789bff40dff8c9ea722c7eeafb0b4faf11c46661","impliedFormat":99},{"version":"8fabe3e2e32dc9a27998b7dca1eac8b8e60d1e08037af0ebf415db7de5725911","impliedFormat":99},{"version":"3c23c0aacc3f2484627aaf976046c88d9f48f2e16a386d9e9d6351f02e823b94","signature":"6e498d0ced89509c5e15beb4b8185aff55b0633260179dfa454af0ed3ef6867e"},{"version":"74fe889b1d2bba4b2893d518ba94e2b20dabe6d19d0c2f9554d9a5d3755710f4","impliedFormat":99},{"version":"2ae64cd7b6e760496069ee3b496c64700c956a0620740e1ef52b163824859db7","impliedFormat":99},"05cfea0488751015b0b85911b6cdcde7c6cebdd9b8cada1ec0b5c1736357a552","f5800813e5c0d6c27d73b76f2c99f39bdfd6229d03553a8a9ae485f6aeb94425","4d5e201faa4bceca840b652dfc10795170c061f498e19429a06e056490aa69aa","b085d2f3c839ad9634c9b1ea8bb2d4e3a321af1392d8ac44a79b99c0d8d194aa","ee11b7061adce4a1c0370620949a57851215b152a5632d2faf1aedbc90ad0520","f8c86fcbfb0a1e69a0ed28d3249cc33c312fa23a39c17e15cbbcc539bdcdc303","85e0f00b17c3ae8cd88438c754a2c43f4a9361e685b97a70e52e33afbf62488f","39d2d450df6efbf38585fd316f18922c8ac3fdfd4c3fc412d0bee34e2bc86378","4dcdfe4c18557fc02d8cb22cb422cb98bfeba8158aaf18cc66f9d99293ebe2c8","7efea6f2270a14f1b0d5f472f2a6fcb0a97beb677299e10b073cc2abdabeef51","642bd83dc8b11abc31785975f869fea5ab2dd84246acd13c6ad7e769fea95150","712dbb6cc6020b1dae2a2031b8a117717318652f73fd5042d508f7de416c47b7","637a5a32ea266fdaa0efa1c4d25ce2eed3b420dcd7836a6952374ddd95aaccaf","145e598b9f835b46757263cf952af5b8735d0bfb08a6dff2187f7b5611e17578","f499d7fb533781939c7a5ab778ac6e6c8ffe65601b1a61a843c36ee0013f05b6","7fcb76be88d4a64f6318b5a24b57021d7463f24485a3d1a931bf664c7e437534","d75490903da576f8fd0ee1c990858cb31e605d3db925593c12728bd0949eedfe","098ec42cd54c2b3354584c4fe8ad143040114891dde762741522b62788772f0d","1e73d612f806d183d6c16c4135c16c1a14dd827c1a67097e72ab1841852bfcb9","30046b0787c577061d43e498b507da8a249fbc58bbe33a09a7bef777e1d5fb67","cb2de9f1d7d286191834eeb331d23dc69eeb322745114ddad1695e4c575b5feb","dc2461db89dde29306a73a2926e2cf874e981ef034412f4d1e3d06d45bb3127e","13a5d8ec52111b64ed8fdcb47ab664b60085733c46c44aede33fd2926840ac31","1cf02270a889fcc3fa5863734fcdbea410d3b4dd71e4678a894a48028f836f6e","4f69dd36aa514494e2665a9dd1ecbb94f705c37f13554aa6f0c4b55d47dcfec1","3cb5734586224b2daa65a52cbe2428195e1542681ac85e4d7e9ca691e841db5e","c88faa2f2d9778aa0b4dedc2bfde0990b0beea6c45b0fc7d4a79e1294ebe8cb0","51f3be4aa09529ea1ad83a3d66830075a49e3e630df25d9892ef5708bb00de55","e0289b150095e1e86a7a201aa8ca9df044922019fcb4d125fb69535ae375d6a7",{"version":"9a67f7d0e288da6ffe52bc973ce28e60691ae863494eb7c02f106f53b4301c35","signature":"74c2d01743bd615ed4a3eaac451feb14967fa8ad01099ed2971e32d1adca6ae3"},{"version":"95da398ff4b3ce062cc5c93f4adc0d6195d17f3c1764729205b84bbe7e4ea472","signature":"3ea339efb8893d053812a11e51eee3fb49b66e2b853f167b3167565ac9460553"},{"version":"dcc40a685cbdbdc271f8edb9bd5ccabfd0ef64db0724e2e3dea60d093565d3ba","signature":"6a17f676d06d3e695520b275dd483b4fe62d34b84926c0bf6425c08490ee2c41"},{"version":"0cb349f3a6866eb4ec6424b3844fa51498b32402f922d5a571d069d7cf44c68f","impliedFormat":99},{"version":"517dd6f73e4d20b38841f7be1edb2fb6f4152775ac3a9c04e319ff0b3509c8ba","affectsGlobalScope":true,"impliedFormat":99},{"version":"2eb5ecdc6027a01a7f83775caed62924c7afec0fd42554aec32ba9127cec6f18","impliedFormat":99},{"version":"2e692811a68b1644ec1e2ff9459bc28e51da41f58994088925be2420a2f27a26","affectsGlobalScope":true,"impliedFormat":99},{"version":"0f28503979e769f6ee6e55350f621dc00e300f15688d52b02edc62d837d29b1d","impliedFormat":99},{"version":"fe869c79d427e84d916011d082def68a793c3c13e157079fec399f250418bd50","affectsGlobalScope":true,"impliedFormat":99},{"version":"0d0f0a7057effa894462302bbfab93d0ff82dc88e7eb3b4a40f5c5baf2287e87","impliedFormat":99},{"version":"7a9cada9676068d5bf49db65e12bf45077e5d3597f84bee594073ecdadea3be9","impliedFormat":99},{"version":"906ba9deec2d81b2ba91cda35da7edddc1ed23c74c0c59b635d719ed436c8783","impliedFormat":99},{"version":"fcaa283960450520c3c09c63e1ab2b06137d64a9a28befe8abd117a5db5645b8","impliedFormat":99},{"version":"7b82ae5f317797ad1ef2efd9773b7b13dd2570a20f2581c49ad7f3afb02df670","affectsGlobalScope":true,"impliedFormat":99},{"version":"9e77270468dc77ee3f0182f377a6022b37cce590cab79205c497cfb964ee2d20","impliedFormat":99},{"version":"8bb8931e629d9adfac6fe0c067de1a3c2f82b47262f83fa76eb0772ef13808e8","impliedFormat":99},{"version":"f06ff9b2e991dcd9a5d8f28977dee1f66ef69b21aec9738122aba3306ff45456","impliedFormat":99},{"version":"b2cba74b75476a1261a6bca5550f04dba36ade87f3b09083ca787beb3471e1b9","impliedFormat":99},{"version":"9435089fc191e1b2a57854475595e8277a976ff175ec402091d37e7821d36b5c","affectsGlobalScope":true,"impliedFormat":99},{"version":"f296e6ff892a925da76ed1e7b2114803db2877f1fdd665f33e0b26de7e1a6523","impliedFormat":99},{"version":"2b7426977de7220c78217f27552dca65b529654f85f7c26b6689684c9f002cef","affectsGlobalScope":true,"impliedFormat":99},{"version":"1e8f86f007abd453e72e49dbc52aae6946167a1bdc2a989c1f12d3cf0244d2f8","impliedFormat":99},{"version":"1b45982abdcb2d07d5d1fc84dc6966227b7c82d4a12bd8ec50a28a01c8842d9f","impliedFormat":99},{"version":"220a08c0460aff4f65b8129a53c63c97599d96430150e7fb2ca8da5ccbc16bfc","affectsGlobalScope":true,"impliedFormat":99},{"version":"c478740bf4cf315818870c44c1f10dd3ca1c38b8b662191848b611162f241c13","impliedFormat":99},{"version":"c1ac6f99af63405cfe1a3094586f2a0796e2777985fd499c3af6cc94ac75e270","affectsGlobalScope":true,"impliedFormat":99},{"version":"14f9412b37e3b5fd2907689c004f1817c67ebb40822804db8e14914dea90e75c","impliedFormat":99},{"version":"27203978b7a315bebdcb090651bba3aba75ff5cfd3828b3d0c1132b7004545d0","affectsGlobalScope":true,"impliedFormat":99},{"version":"55d3b1b0a3e25fa3b6e33c33a017a195f53f0621082cee825192f94b9703a4dd","impliedFormat":99},{"version":"7b56b1c33d91152269b97488fa8a1c215e57b97c1434c30a224ae722fd596ff2","affectsGlobalScope":true,"impliedFormat":99},{"version":"e15ac8f3a605029b85c154d609ef31238f366e5d767435ae50007fa1e152abb1","impliedFormat":99},{"version":"2dc6b6291eea764fdb9046036c011a57f2091b50536a009f0aefa1cc22e60c97","impliedFormat":99},{"version":"ef3c0e8144c9b8a038ba6ddc28d2667d6f9e2fcc61cdd7f5249e6a50f049019d","affectsGlobalScope":true,"impliedFormat":99},{"version":"50d6de22a2638ee065f170cf1c4e7db26b2cd9eeb1a1ce023f4cd93d43fc453e","impliedFormat":99},{"version":"41e4b825afe9f38c821a8d7bd9667e2c923c847e31036cfd6c98006b0ca1653e","impliedFormat":99},{"version":"9b607e119f00c4d3c248f086ab36b6b01f63634dfd51af95a4293f5ab1f17fa1","affectsGlobalScope":true,"impliedFormat":99},{"version":"fb3796f25b77cf1496279d8250b8ca76741ce750a75bd8cca753eccf02358e07","affectsGlobalScope":true,"impliedFormat":99},{"version":"34f5c9c6725ffd996c7e75b661a5b290e2c3cb5bd98e3d940beb6ae20ffc8be3","impliedFormat":99},{"version":"6adc04cda2a60aa4e90f85318c101c5baf1e96ee01cd9689aac98109d13cb11f","impliedFormat":99},{"version":"87833ae9cc60453ec35077c9825d614aea6a99dd37a3239a157c802e3531f07f","affectsGlobalScope":true,"impliedFormat":99},{"version":"21e8c0358c7cfb62b870b44aeafab7ac1cb7c36f2264ae8e19f923298b872e8a","impliedFormat":99},{"version":"01793c9eba84e564b13c58a30f299fc7ac8a06e67074bbf29bd2649845d9fcf1","affectsGlobalScope":true,"impliedFormat":99},{"version":"76c0db0b42c4cc04e589c186b70f38078ba8e647eba0dc9f78d6293438d5987d","impliedFormat":99},{"version":"56edea77ca2fcbc2884e94f74f360356df9e79dbb5a12fa2397e4bb31c73cd5a","affectsGlobalScope":true,"impliedFormat":99},{"version":"0556b22124dd22b959eb79aa3105433591bdbb94f5be86f3b0c0cbabb723cbc5","affectsGlobalScope":true,"impliedFormat":99},{"version":"98ef8c0a86b22a0df8154bad5cca37c9e3223db6dec4400f3c491d6a1dc7d2e7","affectsGlobalScope":true,"impliedFormat":99},{"version":"1c5e3212be17cf310c9dc765d949336d690cda31b598a45416fc501721321434","affectsGlobalScope":true,"impliedFormat":99},{"version":"91638e3b3441442505a9738282f1521eeb8a325cfe160df3dd8069c6d032df0b","impliedFormat":99},{"version":"dafd71f4e6b100928d937e978db103f59b895ffc295e021d9c992dcf4cc88251","impliedFormat":99},{"version":"df3ec23c64326101593ed8a7b9c589ddcf62e472a5cbb9f4751c469fbf471c08","affectsGlobalScope":true,"impliedFormat":99},{"version":"8f496bd08b3d20fe332e9e01fe33dbb2b99b351985ad589486883c32db53d352","impliedFormat":99},{"version":"462c5f47c5b4dfe3445c05d6bfdc88aea6f6eadf7c7fcd32c2cbf74c938a2043","affectsGlobalScope":true,"impliedFormat":99},{"version":"7790685f457a5bb2896ade9adc0b16f82b15dd3baa896c5c23a55bc353fcd798","impliedFormat":99},{"version":"38dd5fd19709f61264fc2396b3038c133554e033577ca29fcb9f6fb8dee37d0f","affectsGlobalScope":true,"impliedFormat":99},{"version":"d9b52c4560cc48ba43d71bc48d8f50d10b8d28c7a24ad5db201ec6422f161d4b","impliedFormat":99},{"version":"fb605fccb30512c9291061c381cba041e06b51d10479d1589441e9468a32363e","impliedFormat":99},{"version":"635052f2979263b7be4665514c303fd56bceabe15d793c6f393fc1214996966a","impliedFormat":99},{"version":"40b86fd3991c28146513a11e3260a06f4d7be3a1c992f555dad89d72739056d9","affectsGlobalScope":true,"impliedFormat":99},{"version":"0d09de46aa7020e1e555207561e9a04bb36b15b7497d8e32b465439b752a1868","impliedFormat":99},{"version":"08e91911253a51846b0f3c8deaf829c5e7bdee21ef472f8051e845b9d2a57396","impliedFormat":99},{"version":"8d33b1975286b2c732d53e49910fa578955689cdef2bcd36f59597590f0847ab","impliedFormat":99},{"version":"6fb4948e326feb969626ab5b989d5c98f1d8b3f7cb761a50e22e07c1d6f43728","affectsGlobalScope":true,"impliedFormat":99},{"version":"ca032d3397f8851c9e01e0a57538973e38603c0e33b0d8f9b2c688377f3db6a0","impliedFormat":99},{"version":"2cb704d3d5cbf8a28775ae1d3dc0cf13d0f2669443d273e0370b87b80eebf5c9","affectsGlobalScope":true,"impliedFormat":99},{"version":"dc960b263583b9eb9b5328fa07dddcce45728fb6d4cf749e5582edde81518fc5","impliedFormat":99},{"version":"195fb05b6ceaeb4c4e9bc43a5c2aa7df06fc2065a28a6e9f3d6a4774e8922d02","affectsGlobalScope":true,"impliedFormat":99},{"version":"68d9a15b7f0f73b48429f78699f6add7dcdbd5ea0fb9b0e8d90d0ca4c108703b","impliedFormat":99},{"version":"f0e736ca1c24fdb676d74ecbcf4670f0e7d041984becd9ff3a8b5787895e437f","impliedFormat":99},{"version":"6aea4672aa7dc813d8f7420c8ca366523d8f4f5004c83b3ad0c44e2a7a352a78","affectsGlobalScope":true,"impliedFormat":99},{"version":"ad8da8b0555d836ffba98091771d1c667aa047b8cc6c17e4f4d7c529edd1db07","impliedFormat":99},{"version":"8a1e35a7afba4291cc1493e02dabf51a4615bae2dad4aa5ccc4de29da4b3a969","affectsGlobalScope":true,"impliedFormat":99},{"version":"24a3b420f52e021e3bd0d8a4aca9a192d4b5f42d9e6b8eb690f7aad42744873c","impliedFormat":99},{"version":"6b7963cd724d29486e9f6f951eb208b7939667615a4bcc101448d7fb6015d984","impliedFormat":99},{"version":"b658a061fd68a3af639fdffac94666c2e7fac0f26e2d7b8901ae635ad63d697d","impliedFormat":99},{"version":"92251c30f31c33f3c139ceb2cabe8607ec19d79a89a3fb71441a49798089b97e","affectsGlobalScope":true,"impliedFormat":99},{"version":"fa8ef3fb228e258f9508386e2056c95c959d1c1168301181313a5c978754ba70","impliedFormat":99},{"version":"15c9478a8a3d630ac5e738aca25fca15d0842aaeb97fb1a9c1e80eddc5a0e14c","impliedFormat":99},{"version":"850ac1445866b7ca3bfa72e709fa4db042192a949fe4aeeb80e5f23e93c9dd8c","impliedFormat":99},{"version":"173361b25066e7c2c3906f4ee1e27b9fd8e1bece5bc7a4d6240f6c9112540470","impliedFormat":99},{"version":"0739c78dfe5273818315f2a3a523be9a109dca9fbcb5206a5ba679dacd5e875e","impliedFormat":99},{"version":"fe5c419a008693b7ef839aa6ca712331e9f2e7def46aa5f096523b6593d594a2","impliedFormat":99},{"version":"2614bfcd56e7dd11378da7e92dd82bb0158be61dffc6403fb2f97adbb7193cc7","impliedFormat":99},{"version":"6308dc55b99cd48d92ac9c27f46a94c86bad88fc2d62d963bf287f2cd8622514","affectsGlobalScope":true,"impliedFormat":99},{"version":"4a51ddce2493ad3d518b1471a52ea98542f1911d20a0f96fcc7db7c5629710fe","impliedFormat":99},{"version":"789c72affd059805536d422f4a5cbaa04a9365a568e7c1cab698e207ec659e12","affectsGlobalScope":true,"impliedFormat":99},{"version":"11f35322c9659189eb5fa45c194c47f331db748f47ce5a0cbcdf83652420d9a3","affectsGlobalScope":true,"impliedFormat":99},{"version":"8a70da9b673c73dc269d1e9192973ba108136ac9c2acff34952af2dedf8a66f5","impliedFormat":99},{"version":"42e3737ba1a0f86d00f270e53199b6fad82c0cb781ad7a485031b4658301c76e","affectsGlobalScope":true,"impliedFormat":99},{"version":"fe82af10d11eae7d147d0bd36b6cf0ddcd0ec7c4adabb6a843d92918e0d6c75d","impliedFormat":99},{"version":"1020b0facc29b6e15e6405f92575daffb0446af7c9a7740709b8fe53ea6a92ca","affectsGlobalScope":true,"impliedFormat":99},{"version":"762200c95c014e872d7d00f20cd824ab4ae3e73a91f4b670de6462ea4938e303","impliedFormat":99},{"version":"6d9dae35af1d53c5440d0160d44d73f223d3df9c2f484f6dbbdfb48dca28a857","impliedFormat":99},{"version":"cd7d32310660ffb1d8bd15abf63e894b79c47709053f3f3bd1d4375224d893d4","affectsGlobalScope":true,"impliedFormat":99},{"version":"32b266a584cbed23a67ce1fb73a97997ca61707939786b7defb8e387efeceb88","impliedFormat":99},{"version":"3bb5930125269be86f310f7d803afcfae542fa8b84fcdf76717baf11685b3d4f","affectsGlobalScope":true,"impliedFormat":99},{"version":"6ec728143ee85502027c0b53f171ba748c23081f8dee67fb7b67ba61b66faeed","impliedFormat":99},{"version":"f0e54f221760cd5cbfc7df96d65a2c4c1ab2c2e72599bf35f16cf535204a78a3","affectsGlobalScope":true,"impliedFormat":99},{"version":"a57fe90f2a8e0e029a082e75add8e7ad00e109111512f3d669e92d7d409c2f9f","impliedFormat":99},{"version":"f3a56636fdb6355ad484371b7787faa5b33ef370cc1bf634239409f489844445","impliedFormat":99},{"version":"89b32a5a2e68412940b96a413c1dfd3c569c72c04d1b1b097acb8e294cb7e8dd","affectsGlobalScope":true,"impliedFormat":99},{"version":"32055f96b66a66d6d0343c44fbe2962ec55a1cbe348e3c9af15ac6d17ab98a6a","impliedFormat":99},{"version":"f191b1ca9fd04d461e602cd776e04fb4e10b531bf47d092833991bb052f7002e","affectsGlobalScope":true,"impliedFormat":99},{"version":"50055f4ce6fa763fb5339238db93eb1e548df8306927d7827f933f3001b67cbb","impliedFormat":99},{"version":"1f07da266c1d3b7fb31671fba3e03af5b4fece362f4d8f5a65e1ba64e263b789","signature":"5149e3280f7efdba75371f2e2d2f36d23090435b05d828aa00b694e41a820305"},"cb85235628f67d0904e45733fd9071f6ec8332e9a6ae66d32730ba6c445a51ef","2e8d620000b61541f0a8ac23d90fcc9ffacf72045920273f95aa9d17ba54b6fa",{"version":"cd95d3388e7cfbec573f0bad874cfcc445cf5c848b866bd21af33ab38dc3ba79","signature":"579cc659b0809ede9b6b29ef40049eed59bc6737d877564c75cfa3ada104f8e5"},{"version":"6d2809085064477428b3548cb882ffcfc1d90e89d7e4fa52df9955842012c0a4","signature":"579cc659b0809ede9b6b29ef40049eed59bc6737d877564c75cfa3ada104f8e5"},{"version":"f7c2b1fd85f487cc6329d412cea039c5ff3821a69a6e933bfc2bf0577e99dc42","signature":"e9eb9c61685d51104b14fb2c0edebdcc72346805d76f18e4f90d988e9ba44d87"},{"version":"5f343c91d893a68c16007ac13097ba5c433e15dd97fed8733755dd01576c6ff2","signature":"579cc659b0809ede9b6b29ef40049eed59bc6737d877564c75cfa3ada104f8e5"},{"version":"0d183f2f61999deb275b65e926c0c70d5f869f2655809e3ec5b85321413000c6","signature":"61869fff1b19096cae72e35456bafdeb0cbf71e955844e5bccfb865554472f2a"},{"version":"975a01fe95331e8e91396dd9383c92c5fe2e98b208dd0e669d49596d814a17d8","signature":"c5ca7738b2800b10506aed2098daf45e927f067d9b754b4a626eaa1630e55c9e"},{"version":"e2e380bc8a5122f792d8b3a66b3f0a26d48e4bedce2534fc2214ba9ceb9aa300","signature":"661b2ccd986d6f22697703ae66899b70f88e880d8d152ed2458815204c67897d"},{"version":"42341f65c29849ae00faad1a802b99b0e8eac3740acdc0f51f6acbfcb96beb8f","signature":"a92a5d35f411a43bc9cdd74a9dfe46603ae4f70855a4ccfe77864237c7afc813"},{"version":"e42d449e9255b8818d8f2643d4dc59f99a4afc0a7071cb7a09023909f52315d3","signature":"530099a2092da7f37ed1c79baf4f6ce9f0f968ee52b28bc501dcbad160d09aad"},{"version":"0ccdaa19852d25ecd84eec365c3bfa16e7859cadecf6e9ca6d0dbbbee439743f","affectsGlobalScope":true,"impliedFormat":1},{"version":"cc2110f7decca6bfb9392e30421cfa1436479e4a6756e8fec6cbc22625d4f881","affectsGlobalScope":true,"impliedFormat":1},{"version":"f53a7652392cf26ebbe4e29fd0672aa87c93bd6d0241289c13fab87b9ac35c8a","affectsGlobalScope":true,"impliedFormat":1},{"version":"e5e01375c9e124a83b52ee4b3244ed1a4d214a6cfb54ac73e164a823a4a7860a","affectsGlobalScope":true,"impliedFormat":1},{"version":"f90ae2bbce1505e67f2f6502392e318f5714bae82d2d969185c4a6cecc8af2fc","affectsGlobalScope":true,"impliedFormat":1},{"version":"4b58e207b93a8f1c88bbf2a95ddc686ac83962b13830fe8ad3f404ffc7051fb4","affectsGlobalScope":true,"impliedFormat":1},{"version":"1fefabcb2b06736a66d2904074d56268753654805e829989a46a0161cd8412c5","affectsGlobalScope":true,"impliedFormat":1},{"version":"b00a630557d1622ad312633bdbfbdb9c6b7220d948dca9f899db30679f160074","affectsGlobalScope":true,"impliedFormat":1},{"version":"c18a99f01eb788d849ad032b31cafd49de0b19e083fe775370834c5675d7df8e","affectsGlobalScope":true,"impliedFormat":1},{"version":"5247874c2a23b9a62d178ae84f2db6a1d54e6c9a2e7e057e178cc5eea13757fc","affectsGlobalScope":true,"impliedFormat":1},{"version":"cdcf9ea426ad970f96ac930cd176d5c69c6c24eebd9fc580e1572d6c6a88f62c","impliedFormat":1},{"version":"88809d6c1b9c78d04a133646a6feb926def05a8774c308c7c93bc32ee163d271","impliedFormat":1},{"version":"156a859e21ef3244d13afeeba4e49760a6afa035c149dda52f0c45ea8903b338","impliedFormat":1},{"version":"3ac40516c33b87f751f7507346933081a26cdb8a3e11a6b3aa07d23f803c85db","impliedFormat":1},{"version":"615754924717c0b1e293e083b83503c0a872717ad5aa60ed7f1a699eb1b4ea5c","impliedFormat":1},{"version":"14e9acf826baba0ef4b5665704084896e7bcc06f65a9ab13af7e93d27d6b7069","impliedFormat":1},{"version":"68834d631c8838c715f225509cfc3927913b9cc7a4870460b5b60c8dbdb99baf","impliedFormat":1},{"version":"829bc57ee8f287b490ab5bbc5a962fca57e432c1e38ec680ecd3ecaf12800613","impliedFormat":1},{"version":"eec76bf6b9346f3f95fa402621b889489e96930e72295b0369022f332e9b4a6a","impliedFormat":1},{"version":"3a3ff14da53d5013f3e6d8c4ad55225e3649c08786c4421ce639c00d8d589b7d","impliedFormat":1},{"version":"ea6bc8de8b59f90a7a3960005fd01988f98fd0784e14bc6922dde2e93305ec7d","impliedFormat":1},{"version":"36107995674b29284a115e21a0618c4c2751b32a8766dd4cb3ba740308b16d59","impliedFormat":1},{"version":"914a0ae30d96d71915fc519ccb4efbf2b62c0ddfb3a3fc6129151076bc01dc60","impliedFormat":1},{"version":"38004e6801340cb890afb8cb5a9fc8972297e7f88ab94026e4b0b3c61fb32f8a","impliedFormat":1},{"version":"d243db6b25788f439e7e2f03c05688e92f46764351673bb0e7b2f3631232e186","impliedFormat":1},{"version":"4d327f7d72ad0918275cea3eee49a6a8dc8114ae1d5b7f3f5d0774de75f7439a","impliedFormat":1},{"version":"149f9a9e7f04e67afa0e2a49fc0ff421035c01d6b793cfcae7d2e9f6819431e2","impliedFormat":1},{"version":"e8a9dfa4c75ef6d25df8b40eaa9c31e0a69452aaf2ced4a3f4215dbdbaa876f4","impliedFormat":1},{"version":"a70af845a2eb9dd6e2723e319e14ea7fb28b129ec1361c21509b49305448c323","impliedFormat":1},{"version":"b53dc572d4f187904207ae1166652de47aab8eeb00c254d009cb226863076b56","impliedFormat":1},{"version":"0a60a292b89ca7218b8616f78e5bbd1c96b87e048849469cccb4355e98af959a","impliedFormat":1},{"version":"0b6e25234b4eec6ed96ab138d96eb70b135690d7dd01f3dd8a8ab291c35a683a","impliedFormat":1},{"version":"9666f2f84b985b62400d2e5ab0adae9ff44de9b2a34803c2c5bd3c8325b17dc0","impliedFormat":1},{"version":"40cd35c95e9cf22cfa5bd84e96408b6fcbca55295f4ff822390abb11afbc3dca","impliedFormat":1},{"version":"b1616b8959bf557feb16369c6124a97a0e74ed6f49d1df73bb4b9ddf68acf3f3","impliedFormat":1},{"version":"f501234c5aeeeb5d7659412335227466aaacf30b952372d60afeb21c02c96348","impliedFormat":1},{"version":"40b463c6766ca1b689bfcc46d26b5e295954f32ad43e37ee6953c0a677e4ae2b","impliedFormat":1},{"version":"9ac977503f15bf13ca7c82ad9a32a782f42d43e474824e8b3bffe228fd5f2639","impliedFormat":1},{"version":"8b91ff5bb912be3ea213cbcf0075aace1f5d4ff249a0d227ed673868cb7bfabc","impliedFormat":1},{"version":"80aae6afc67faa5ac0b32b5b8bc8cc9f7fa299cff15cf09cc2e11fd28c6ae29e","impliedFormat":1},{"version":"f473cd2288991ff3221165dcf73cd5d24da30391f87e85b3dd4d0450c787a391","impliedFormat":1},{"version":"499e5b055a5aba1e1998f7311a6c441a369831c70905cc565ceac93c28083d53","impliedFormat":1},{"version":"8aee8b6d4f9f62cf3776cda1305fb18763e2aade7e13cea5bbe699112df85214","impliedFormat":1},{"version":"98498b101803bb3dde9f76a56e65c14b75db1cc8bec5f4db72be541570f74fc5","impliedFormat":1},{"version":"7cb4f431a4591b0e23002bed805dc871a874dfed6b9a3994dce68a6df73e6739","impliedFormat":1},{"version":"5d0375ca7310efb77e3ef18d068d53784faf62705e0ad04569597ae0e755c401","impliedFormat":1},{"version":"59af37caec41ecf7b2e76059c9672a49e682c1a2aa6f9d7dc78878f53aa284d6","impliedFormat":1},{"version":"addf417b9eb3f938fddf8d81e96393a165e4be0d4a8b6402292f9c634b1cb00d","impliedFormat":1},{"version":"436d7b4543b340b0f3eef4310d524242e41369b9652aa9c70428767c4dcac455","impliedFormat":1},{"version":"adf27937dba6af9f08a68c5b1d3fce0ca7d4b960c57e6d6c844e7d1a8e53adae","impliedFormat":1},{"version":"12950411eeab8563b349cb7959543d92d8d02c289ed893d78499a19becb5a8cc","impliedFormat":1},{"version":"2e85db9e6fd73cfa3d7f28e0ab6b55417ea18931423bd47b409a96e4a169e8e6","impliedFormat":1},{"version":"c46e079fe54c76f95c67fb89081b3e399da2c7d109e7dca8e4b58d83e332e605","impliedFormat":1},{"version":"e99963ae1e3a48ca7a7958c02f3e88bb963eb7978c28b68ae6b8c9f03309d83c","impliedFormat":1},{"version":"c3f5289820990ab66b70c7fb5b63cb674001009ff84b13de40619619a9c8175f","affectsGlobalScope":true,"impliedFormat":1},{"version":"b3275d55fac10b799c9546804126239baf020d220136163f763b55a74e50e750","affectsGlobalScope":true,"impliedFormat":1},{"version":"fa68a0a3b7cb32c00e39ee3cd31f8f15b80cac97dce51b6ee7fc14a1e8deb30b","affectsGlobalScope":true,"impliedFormat":1},{"version":"1cf059eaf468efcc649f8cf6075d3cb98e9a35a0fe9c44419ec3d2f5428d7123","affectsGlobalScope":true,"impliedFormat":1},{"version":"6c36e755bced82df7fb6ce8169265d0a7bb046ab4e2cb6d0da0cb72b22033e89","affectsGlobalScope":true,"impliedFormat":1},{"version":"e7721c4f69f93c91360c26a0a84ee885997d748237ef78ef665b153e622b36c1","affectsGlobalScope":true,"impliedFormat":1},{"version":"7a93de4ff8a63bafe62ba86b89af1df0ccb5e40bb85b0c67d6bbcfdcf96bf3d4","affectsGlobalScope":true,"impliedFormat":1},{"version":"90e85f9bc549dfe2b5749b45fe734144e96cd5d04b38eae244028794e142a77e","affectsGlobalScope":true,"impliedFormat":1},{"version":"e0a5deeb610b2a50a6350bd23df6490036a1773a8a71d70f2f9549ab009e67ee","affectsGlobalScope":true,"impliedFormat":1},{"version":"594ae90cacd813fa392ff80d2e0a8eff4e41f4a136329a940e321399dd8895b4","impliedFormat":1},{"version":"d1f333ade8ff35a409b4984e1f11956fe11c61855b0c7e9b59f0313e48b40c4a","impliedFormat":1},{"version":"0224aa4b3464895d69c413a640a19ac2166778a74eb5eb3b36b021c72d42b274","impliedFormat":1},{"version":"2e6fca0024dd8a076a886d9ec031a936ea59ad878a25b944820495d92f8381dd","affectsGlobalScope":true,"impliedFormat":1},{"version":"177459cba484e2f1e08872a3d2fdbca3162d9d43ca5ec9dc0c946835b55f74be","impliedFormat":1},{"version":"2fbf504c4791f9d32cd766cfe6b605bcda63289b925401953a7900db9af85348","impliedFormat":1},{"version":"ed0fb633cae35948d9e144004299a4bdf1ab912667c787b7fbffcd6d8c7b92a2","impliedFormat":1},{"version":"1678b04557dca52feab73cc67610918a7f5e25bfdba3e7fa081acd625d93106d","impliedFormat":1},{"version":"0e312260895afc9de021ce9de3c8a857392f0ccc7f19d3a030e4d6136a4ac91e","impliedFormat":1},{"version":"2ea729503db9793f2691162fec3dd1118cab62e96d025f8eeb376d43ec293395","impliedFormat":1},{"version":"98fc7231d6c846a8ed19bdef026ddffe5e2182cc818be74899287421ad370a87","impliedFormat":1},{"version":"3a40b5d34e014017539acb92f04cf2bc0aa71e49efb33c66039df93be97842a1","impliedFormat":1},{"version":"2bc7aa4fba46df0bd495425a7c8201437a7d465f83854fac859df2d67f664df3","impliedFormat":1},{"version":"41d17e1ad9a002feb11c8cdd2777e5bbc0cdb1e3f595d237e4dded0b6949983b","impliedFormat":1},{"version":"8c7e618c2a91ea7f6b5cca272a295864e92c16413be8fc56a943e8c7d5320011","affectsGlobalScope":true,"impliedFormat":1},{"version":"79a85c64bf083c5f4dd7074e804d1000c0c47301b84d48417a224decd681be30","impliedFormat":1},{"version":"9f1e3a76d5f509b5579e567de522b402cb79e201c4f47dcd014451c0580b290d","impliedFormat":1},{"version":"4f1fd541f720030367b5d7ebfea7ae5f9edc8481422993b9a363f459c5412437","impliedFormat":1},{"version":"70f3f8b2dcaf7388f26731a59c79437813e3620b594903525a303cb2a7901016","impliedFormat":1},{"version":"62e8f884c3bc6dff6189b6e662ebe8b238a645938f2df7a97b8a82fca56773a4","impliedFormat":1},{"version":"2c2bdaa1d8ead9f68628d6d9d250e46ee8e81aa4898b4769a36956ae15e060fe","impliedFormat":1},{"version":"57a0d1b3d59063d4af2d3f8aac27cfe3c20a0f5d1faf0f8598ccf0b779637939","impliedFormat":1},{"version":"5ff4433a2deae4f85ab1377e90a7554ce6b47ae51c69a84ca30a6e22fae85834","impliedFormat":1},{"version":"82b91e4e42e6c41bc7fc1b6c2dc5eba6a2ba98375eb1f210e6ff6bba2d54177e","impliedFormat":1},{"version":"97234c5303866576f913d0ccae7d58d6322d9e803c7bf1228a3fda46ab8087b2","affectsGlobalScope":true,"impliedFormat":1},{"version":"93ecf87143cac7b9d05cffc1d6bdc075b7e4fdd48ff05f1fad85043f6ae678d3","impliedFormat":1},{"version":"8e9c23ba78aabc2e0a27033f18737a6df754067731e69dc5f52823957d60a4b6","impliedFormat":1},{"version":"6f200afcb82b3e9a54bed6db23f2edf2508cd266801257312c0f124b47f2bdb9","impliedFormat":1},{"version":"ec501101c2a96133a6c695f934c8f6642149cc728571b29cbb7b770984c1088e","impliedFormat":1},{"version":"b214ebcf76c51b115453f69729ee8aa7b7f8eccdae2a922b568a45c2d7ff52f7","impliedFormat":1},{"version":"429c9cdfa7d126255779efd7e6d9057ced2d69c81859bbab32073bad52e9ba76","impliedFormat":1},{"version":"39338f84e8c4d0e3de7b3c4a7024fb3925f42100eed5cbe73be58902799dff4d","impliedFormat":1},{"version":"fbf83eb33bf5e329527add92acc65da59323876c702ddccf5f4bf1e848c92369","affectsGlobalScope":true,"impliedFormat":1},{"version":"230763250f20449fa7b3c9273e1967adb0023dc890d4be1553faca658ee65971","impliedFormat":1},{"version":"c3e9078b60cb329d1221f5878e88cecfa3e74460550e605a58fcfb41a66029ff","impliedFormat":1},{"version":"515318bc6e656f75e9e34db625316bfafbafd800dfb1642574af93735a24ad38","impliedFormat":1},{"version":"441b9bb09013654aa3d050e68b06464d8959b473e85868249d9d18f692acd35b","impliedFormat":1},{"version":"bc18a1991ba681f03e13285fa1d7b99b03b67ee671b7bc936254467177543890","impliedFormat":1},{"version":"55246f15e33ff1e2e9e679b25fa9790a48db55dc63d567fe25fac8b6a0efe911","impliedFormat":1},{"version":"fa94bbf532b7af8f394b95fa310980d6e20bd2d4c871c6a6cb9f70f03750a44b","impliedFormat":1},{"version":"03b7804d69cecd66850abada858ed6d4a59001f8c228a9fe212306ee860a4ff6","impliedFormat":1},{"version":"5b26c4dd672d88336bb929787c9bfb55119e80ba89ec6dc923da1c063892843e","affectsGlobalScope":true,"impliedFormat":1},{"version":"7fa2214bb0d64701bc6f9ce8cde2fd2ff8c571e0b23065fa04a8a5a6beb91511","impliedFormat":1},{"version":"987fd1f85dc36f4b2c927aa3db814ac6b452e970f4f55d24ed4ecbb7df09be00","impliedFormat":1},{"version":"f12624a4a8d042b68914eac1b0a16571fc1c523173fcdf2517c65d191bd5a86c","impliedFormat":1},{"version":"b4769767f13a1692a66186e01c3aa186ff808d5ff72ed36eda8c37738fb2ac92","impliedFormat":1},{"version":"841983e39bd4cbb463be385e92fda11057cab368bf27100a801c492f1d86cbaa","impliedFormat":1},{"version":"683edfc4f2b411ebe04729cb6dc09ddd26fbac2c57771a6d7c55964af776e176","impliedFormat":1},{"version":"1ec3f3a5f04cc42df33274fbe5c0937d9a9e06f249a7a26288d7d54f0763ffd4","impliedFormat":1},{"version":"e4156ddb25aa0e3b5303d372f26957b36778f0f6bbd4326359269873295e3058","affectsGlobalScope":true,"impliedFormat":1},{"version":"cc1b433a84cae05ddc5672d4823170af78606ad21ecef60dbc4570190cbf1357","impliedFormat":1},{"version":"e47f532d6e1617833f13a5b0710c0089d402c89c2f2b54f324e5a20e418d287a","impliedFormat":1},{"version":"7f78cfb2b343838612c192cb251746e3a7c62ac7675726a47e130d9b213f6580","impliedFormat":1},{"version":"201db9cf1687fab1adf5282fcba861f382b32303dc4f67c89d59655e78a25461","impliedFormat":1},{"version":"8e2577e7262051fd3c5bd6ca2b2056d358ff8853565720f92455860824c25188","impliedFormat":1},{"version":"7ec8d7d483f7394f9da611b10d3a0e402f76ff5c991261e6ce43a15f81ca4258","impliedFormat":1},{"version":"bb9dbb4b2ad81e3e71ec5ba4314973718555b9d04ba2a17dfbf875efecb8e2c0","impliedFormat":1},{"version":"82c3cc48c692438e41b94d936b8acd75ca97b18c50fa1af8a0715eb9d07d18cd","impliedFormat":1},{"version":"045a210189ec63c5488410b33f9fca53d77d051599d0d6506d8048551399c5f3","impliedFormat":1},{"version":"99ab6d0d660ce4d21efb52288a39fd35bb3f556980ec5463b1ae8f304a3bbc85","impliedFormat":1},{"version":"632c45ccb4cdc2c3a80c7a36a63dd7763016e59cac5e07bfb3e37e3548957028","impliedFormat":1},{"version":"c9a2daf6cd1eb854cd5b9e424247c5e306692055738c2effd35f7871d942b76e","impliedFormat":1},{"version":"afa1c49f8e559e413d57343339db857d2a8159435cf9cf7d4deb41718fff1b88","impliedFormat":1},{"version":"e50a7130339a951e6da9e968ed5521b0997a5b0479e148914087213839b5474c","impliedFormat":1},{"version":"29f72ec1289ae3aeda78bf14b38086d3d803262ac13904b400422941a26a3636","affectsGlobalScope":true,"impliedFormat":1}],"root":[85,86,[91,93],112,[144,146],247,[250,258]],"options":{"allowSyntheticDefaultImports":true,"declaration":true,"esModuleInterop":true,"experimentalDecorators":true,"importHelpers":true,"inlineSources":true,"module":99,"noEmitOnError":true,"outDir":"./","rootDir":"..","skipLibCheck":true,"sourceMap":true,"strict":true,"target":99,"useDefineForClassFields":false},"referencedMap":[[51,1],[60,1],[61,2],[64,3],[62,3],[66,3],[69,4],[68,3],[67,3],[65,3],[63,5],[52,1],[53,6],[246,7],[148,8],[107,9],[150,10],[105,11],[147,12],[106,12],[149,12],[108,13],[151,14],[109,15],[152,16],[157,17],[156,18],[162,19],[164,20],[167,21],[169,22],[161,23],[163,24],[160,25],[166,26],[168,27],[165,28],[170,29],[171,30],[176,31],[174,1],[175,32],[173,33],[172,34],[95,35],[94,36],[179,37],[180,37],[178,38],[177,39],[183,40],[181,34],[182,41],[184,41],[185,42],[97,43],[98,44],[88,45],[87,36],[187,46],[188,46],[189,46],[186,11],[190,46],[96,34],[154,47],[102,48],[216,48],[103,49],[104,49],[101,1],[221,50],[155,51],[215,51],[222,51],[153,1],[194,36],[195,52],[191,1],[192,53],[196,54],[197,55],[193,56],[198,34],[202,57],[201,58],[203,59],[204,60],[206,61],[208,62],[207,63],[205,64],[209,65],[212,66],[211,67],[213,67],[210,48],[214,68],[217,69],[218,70],[99,71],[100,72],[226,73],[225,74],[227,75],[224,76],[223,77],[228,78],[229,79],[230,80],[231,81],[232,82],[233,83],[235,84],[237,84],[234,85],[239,86],[236,87],[238,88],[240,89],[243,90],[242,91],[244,92],[241,93],[245,94],[110,34],[111,95],[386,1],[322,96],[323,96],[324,97],[260,98],[325,99],[326,100],[327,101],[328,102],[329,103],[330,104],[331,105],[332,106],[333,107],[334,107],[335,108],[336,109],[337,1],[338,110],[339,111],[261,1],[259,1],[340,112],[341,113],[342,114],[385,115],[343,116],[344,117],[345,116],[346,118],[347,119],[349,120],[350,121],[351,121],[352,121],[353,122],[354,123],[355,124],[356,125],[357,126],[358,127],[359,127],[360,128],[361,1],[362,1],[363,129],[364,130],[365,131],[366,132],[367,133],[368,134],[369,135],[370,136],[371,137],[372,138],[373,139],[374,140],[375,141],[376,142],[377,143],[378,144],[379,145],[380,146],[381,147],[262,116],[263,1],[264,148],[265,149],[266,1],[267,150],[268,1],[313,151],[314,152],[315,153],[316,153],[317,154],[318,1],[319,99],[320,155],[321,152],[382,156],[383,157],[384,158],[90,159],[89,160],[55,1],[348,1],[57,161],[54,162],[158,163],[113,162],[199,163],[58,1],[56,164],[219,162],[70,165],[159,166],[114,167],[200,168],[59,169],[220,170],[50,171],[49,1],[47,1],[48,1],[8,1],[10,1],[9,1],[2,1],[11,1],[12,1],[13,1],[14,1],[15,1],[16,1],[17,1],[18,1],[3,1],[19,1],[20,1],[4,1],[21,1],[25,1],[22,1],[23,1],[24,1],[26,1],[27,1],[28,1],[5,1],[29,1],[30,1],[31,1],[32,1],[6,1],[36,1],[33,1],[34,1],[35,1],[37,1],[7,1],[38,1],[43,1],[44,1],[39,1],[40,1],[41,1],[42,1],[1,1],[45,1],[46,1],[287,172],[301,173],[284,174],[302,175],[311,176],[275,177],[276,178],[274,179],[310,180],[305,181],[309,182],[278,183],[288,184],[298,185],[277,186],[308,187],[272,188],[273,181],[279,184],[280,1],[286,189],[283,184],[270,190],[312,191],[303,192],[291,193],[290,184],[292,194],[295,195],[289,196],[293,197],[306,180],[281,198],[282,199],[296,200],[271,175],[300,201],[299,184],[285,199],[294,202],[297,203],[304,1],[269,1],[307,204],[249,205],[248,34],[146,206],[145,207],[144,208],[91,209],[92,210],[93,211],[86,212],[112,213],[85,214],[247,215],[250,216],[251,216],[252,217],[253,216],[254,218],[255,219],[256,220],[257,220],[258,221],[78,34],[76,34],[74,1],[75,34],[77,34],[79,34],[71,34],[84,222],[82,34],[83,34],[80,34],[72,34],[73,34],[81,34],[132,1],[116,1],[130,1],[124,1],[118,1],[136,1],[139,1],[125,1],[135,1],[117,1],[131,1],[121,1],[126,1],[143,223],[133,1],[138,1],[137,1],[119,1],[122,1],[123,1],[142,224],[141,34],[140,1],[115,1],[134,1],[120,1],[129,225],[127,226],[128,227]],"version":"5.9.3"}
|
package/package.json
CHANGED
|
@@ -2,7 +2,7 @@
|
|
|
2
2
|
"name": "@operato/popup",
|
|
3
3
|
"description": "Webcomponent popup following open-wc recommendations",
|
|
4
4
|
"author": "heartyoh",
|
|
5
|
-
"version": "10.0.0-beta.
|
|
5
|
+
"version": "10.0.0-beta.68",
|
|
6
6
|
"type": "module",
|
|
7
7
|
"main": "dist/src/index.js",
|
|
8
8
|
"module": "dist/src/index.js",
|
|
@@ -63,8 +63,8 @@
|
|
|
63
63
|
},
|
|
64
64
|
"dependencies": {
|
|
65
65
|
"@material/web": "^2.0.0",
|
|
66
|
-
"@operato/styles": "^10.0.0-beta.
|
|
67
|
-
"@operato/utils": "^10.0.0-beta.
|
|
66
|
+
"@operato/styles": "^10.0.0-beta.64",
|
|
67
|
+
"@operato/utils": "^10.0.0-beta.64",
|
|
68
68
|
"lit": "^3.1.2",
|
|
69
69
|
"sortablejs": "^1.15.2"
|
|
70
70
|
},
|
|
@@ -101,5 +101,5 @@
|
|
|
101
101
|
"prettier --write"
|
|
102
102
|
]
|
|
103
103
|
},
|
|
104
|
-
"gitHead": "
|
|
104
|
+
"gitHead": "5d72ad247c028427e24c2abec6ce5052b9800860"
|
|
105
105
|
}
|