@record-evolution/widget-switch 1.1.1 → 1.1.3

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/package.json CHANGED
@@ -3,9 +3,9 @@
3
3
  "description": "IronFlock Widget widget-switch",
4
4
  "license": "MIT",
5
5
  "author": "Record Evolution GmbH",
6
- "version": "1.1.1",
6
+ "version": "1.1.3",
7
7
  "engines": {
8
- "node": "18.18.2",
8
+ "node": ">=24.9.0",
9
9
  "npm": ">=10.0.2"
10
10
  },
11
11
  "type": "module",
@@ -19,42 +19,28 @@
19
19
  ],
20
20
  "scripts": {
21
21
  "analyze": "cem analyze --litelement",
22
- "start": "concurrently -k -r \"npm run watch\" \"wds\"",
23
- "build": "node rename-material-package.js && rollup -c rollup.config.js",
24
- "watch": "node rename-material-package.js && rollup -w -c rollup.config.js",
25
- "link": "npm link && cd ../RESWARM/frontend && npm link @record-evolution/widget-switch",
22
+ "start": "vite",
23
+ "build": "vite build",
24
+ "watch": "vite build --watch",
25
+ "link": "npm run build && npm link && cd ../RESWARM/frontend && npm link @record-evolution/widget-switch",
26
26
  "unlink": "npm unlink --global && cd ../RESWARM/frontend && npm unlink @record-evolution/widget-switch && npm i @record-evolution/widget-switch",
27
- "types": "cat src/definition-schema.json | json2ts > src/definition-schema.d.ts",
28
- "start:build": "npm run build && es-dev-server --root-dir dist --app-index index.html --compatibility none --open",
27
+ "types": "cat src/definition-schema.json | json2ts --style.tabWidth=4 > src/definition-schema.d.ts",
29
28
  "release": "npm run build && npm run types && npm version patch --tag-version-prefix='' && git push && git push --tag && npm run build"
30
29
  },
31
30
  "dependencies": {
32
- "@material/web": "^2.4.0",
33
- "lit": "^3.3.1"
31
+ "lit": "^3.3.2",
32
+ "tslib": "^2.8.1"
33
+ },
34
+ "peerDependencies": {
35
+ "@material/web": "^2.4.1"
34
36
  },
35
37
  "devDependencies": {
36
38
  "@custom-elements-manifest/analyzer": "^0.10.4",
37
- "@rollup/plugin-babel": "^6.0.4",
38
- "@rollup/plugin-commonjs": "^28.0.6",
39
- "@rollup/plugin-node-resolve": "^16.0.1",
39
+ "@material/web": "^2.4.1",
40
40
  "@rollup/plugin-replace": "^6.0.2",
41
- "@rollup/plugin-typescript": "^12.1.3",
42
- "@typescript-eslint/eslint-plugin": "^8.34.1",
43
- "@typescript-eslint/parser": "^8.34.1",
44
- "@web/dev-server": "^0.4.6",
45
- "concurrently": "^9.1.2",
46
- "deepmerge": "^4.3.1",
47
- "es-dev-server": "^2.1.0",
48
- "eslint": "^9.29.0",
49
- "eslint-config-prettier": "^10.1.5",
50
- "husky": "^9.1.7",
51
41
  "json-schema-to-typescript": "^15.0.4",
52
- "lint-staged": "^16.1.2",
53
- "prettier": "^3.5.3",
54
- "rimraf": "^6.0.1",
55
- "rollup": "^4.43.0",
56
- "tslib": "^2.8.1",
57
- "typescript": "^5.8.3"
42
+ "typescript": "5.9.3",
43
+ "vite": "^7.3.0"
58
44
  },
59
45
  "repository": {
60
46
  "type": "git",
@@ -5,73 +5,94 @@
5
5
  * and run json-schema-to-typescript to regenerate this file.
6
6
  */
7
7
 
8
+ /**
9
+ * The main heading displayed above the switch controls. Use to describe the control group (e.g., 'Light Controls', 'Pump Switches').
10
+ */
8
11
  export type Title = string;
12
+ /**
13
+ * Secondary text displayed below the title. Use for additional context like location, device group, or instructions.
14
+ */
9
15
  export type Subtitle = string;
10
16
  /**
11
- * The label for the switch.
17
+ * Display text identifying this switch. Should clearly describe what the switch controls (e.g., 'Main Power', 'Pump 1', 'Night Mode').
12
18
  */
13
19
  export type Label = string;
14
20
  /**
15
- * The value or list of values that represent the ON state. You can also use an expression like <4 or >33 to specify a numeric range. If a value matches an ON and an OFF state, the ON state will be used.
21
+ * Values that indicate the ON state. Can be: a single value ('1', 'true', 'ON'), comma-separated list ('1,true,ON'), or numeric expression ('<4' means values below 4 are ON, '>33' means values above 33 are ON). If a value matches both ON and OFF, ON takes precedence.
16
22
  */
17
23
  export type ONValues = string;
18
24
  /**
19
- * The value or list of values that represent the OFF state. You can also use an expression like <4 or >33 to specify a numeric range. If a value matches an ON and an OFF state, the ON state will be used.
25
+ * Values that indicate the OFF state. Can be: a single value ('0', 'false', 'OFF'), comma-separated list ('0,false,OFF'), or numeric expression ('<4' means values below 4 are OFF, '>33' means values above 33 are OFF). Values matching neither ON nor OFF show as UNKNOWN.
20
26
  */
21
27
  export type OFFValues = string;
22
28
  /**
23
- * Is not strictly required, but is strongly recommended to be connected to the backend column that represents the switch state. This keeps the switch visual state consistent with its physical state.
29
+ * The current state value from the backend, used to display the correct switch position. Strongly recommended to bind this to the actual device state column to keep the visual state synchronized with the physical device state.
24
30
  */
25
31
  export type SwitchState = string;
26
32
  /**
27
- * The action topic that is called at the selected app at the selected device when clicking the switch. The arguments will be True for 'ON' and False for 'OFF'. Refer to the documentation of the app for available topics to call.
33
+ * The specific command/topic sent to the app when the switch is clicked. Arguments sent are: True for turning ON, False for turning OFF. Refer to the app's documentation for available topics.
28
34
  */
29
35
  export type ActionAppTopic = string;
36
+ /**
37
+ * Array of switch configurations. Each entry creates a toggle switch with its own state mapping and optional device action binding.
38
+ */
30
39
  export type Switches = {
31
- label?: Label;
32
- stateMap?: StateMap;
33
- value?: SwitchState;
34
- actionDevice?: ActionDeviceTarget;
35
- actionApp?: ActionApp;
36
- actionTopic?: ActionAppTopic;
37
- styling?: Styling;
38
- [k: string]: unknown;
40
+ label?: Label;
41
+ stateMap?: StateMap;
42
+ value?: SwitchState;
43
+ actionDevice?: ActionDeviceTarget;
44
+ actionApp?: ActionApp;
45
+ actionTopic?: ActionAppTopic;
46
+ styling?: Styling;
47
+ [k: string]: unknown;
39
48
  }[];
40
49
 
50
+ /**
51
+ * A toggle switch widget for displaying and controlling binary device states. Use this widget to show ON/OFF status indicators that can also trigger device actions when clicked. Supports configurable state mapping to interpret various data values as ON, OFF, or UNKNOWN states. When connected to a device action, clicking the switch sends commands to control physical devices or trigger backend operations. Multiple switches can be displayed in one widget. Ideal for IoT device control panels, smart home interfaces, equipment control dashboards, or any scenario requiring visual toggle controls with action capabilities.
52
+ */
41
53
  export interface InputData {
42
- title?: Title;
43
- subTitle?: Subtitle;
44
- dataseries?: Switches;
45
- [k: string]: unknown;
54
+ title?: Title;
55
+ subTitle?: Subtitle;
56
+ dataseries?: Switches;
57
+ [k: string]: unknown;
46
58
  }
47
59
  /**
48
- * Specify the values for the ON and OFF states. Any value that does not match to either an ON or OFF state will be considered as UNKNOWN.
60
+ * Defines how data values are interpreted as switch states. Configure which values represent ON and OFF. Values not matching either state display as UNKNOWN (neutral position).
49
61
  */
50
62
  export interface StateMap {
51
- on?: ONValues;
52
- off?: OFFValues;
53
- [k: string]: unknown;
63
+ on?: ONValues;
64
+ off?: OFFValues;
65
+ [k: string]: unknown;
54
66
  }
55
67
  /**
56
- * The device that should handle the click on the switch. The 'Device ID' column can be used here when using data driven mode.
68
+ * The device that receives commands when the switch is clicked. In data-driven mode, bind to a 'Device ID' column to dynamically target different devices per row.
57
69
  */
58
70
  export interface ActionDeviceTarget {
59
- [k: string]: unknown;
71
+ [k: string]: unknown;
60
72
  }
61
73
  /**
62
- * The app that should handle the click on the switch.
74
+ * The application/service on the target device that handles the switch command. Select from available apps installed on the device.
63
75
  */
64
76
  export interface ActionApp {
65
- [k: string]: unknown;
77
+ [k: string]: unknown;
66
78
  }
79
+ /**
80
+ * Visual styling options for the switch and its label.
81
+ */
67
82
  export interface Styling {
68
- labelColor?: LabelColor;
69
- valueColor?: ValueColor;
70
- [k: string]: unknown;
83
+ labelColor?: LabelColor;
84
+ valueColor?: ValueColor;
85
+ [k: string]: unknown;
71
86
  }
87
+ /**
88
+ * Color of the switch label text.
89
+ */
72
90
  export interface LabelColor {
73
- [k: string]: unknown;
91
+ [k: string]: unknown;
74
92
  }
93
+ /**
94
+ * Color of the state value text displayed with the switch.
95
+ */
75
96
  export interface ValueColor {
76
- [k: string]: unknown;
97
+ [k: string]: unknown;
77
98
  }
@@ -1,19 +1,23 @@
1
1
  {
2
2
  "title": "InputData",
3
+ "description": "A toggle switch widget for displaying and controlling binary device states. Use this widget to show ON/OFF status indicators that can also trigger device actions when clicked. Supports configurable state mapping to interpret various data values as ON, OFF, or UNKNOWN states. When connected to a device action, clicking the switch sends commands to control physical devices or trigger backend operations. Multiple switches can be displayed in one widget. Ideal for IoT device control panels, smart home interfaces, equipment control dashboards, or any scenario requiring visual toggle controls with action capabilities.",
3
4
  "type": "object",
4
5
  "properties": {
5
6
  "title": {
6
7
  "title": "Title",
8
+ "description": "The main heading displayed above the switch controls. Use to describe the control group (e.g., 'Light Controls', 'Pump Switches').",
7
9
  "type": "string",
8
10
  "order": 1
9
11
  },
10
12
  "subTitle": {
11
13
  "title": "Subtitle",
14
+ "description": "Secondary text displayed below the title. Use for additional context like location, device group, or instructions.",
12
15
  "type": "string",
13
16
  "order": 2
14
17
  },
15
18
  "dataseries": {
16
19
  "title": "Switches",
20
+ "description": "Array of switch configurations. Each entry creates a toggle switch with its own state mapping and optional device action binding.",
17
21
  "type": "array",
18
22
  "order": 3,
19
23
  "items": {
@@ -21,26 +25,26 @@
21
25
  "properties": {
22
26
  "label": {
23
27
  "title": "Label",
24
- "description": "The label for the switch.",
28
+ "description": "Display text identifying this switch. Should clearly describe what the switch controls (e.g., 'Main Power', 'Pump 1', 'Night Mode').",
25
29
  "type": "string",
26
30
  "order": 1
27
31
  },
28
32
  "stateMap": {
29
33
  "title": "State Map",
30
- "description": "Specify the values for the ON and OFF states. Any value that does not match to either an ON or OFF state will be considered as UNKNOWN.",
34
+ "description": "Defines how data values are interpreted as switch states. Configure which values represent ON and OFF. Values not matching either state display as UNKNOWN (neutral position).",
31
35
  "type": "object",
32
36
  "required": true,
33
37
  "order": 2,
34
38
  "properties": {
35
39
  "on": {
36
40
  "title": "ON Values",
37
- "description": "The value or list of values that represent the ON state. You can also use an expression like <4 or >33 to specify a numeric range. If a value matches an ON and an OFF state, the ON state will be used.",
41
+ "description": "Values that indicate the ON state. Can be: a single value ('1', 'true', 'ON'), comma-separated list ('1,true,ON'), or numeric expression ('<4' means values below 4 are ON, '>33' means values above 33 are ON). If a value matches both ON and OFF, ON takes precedence.",
38
42
  "type": "string",
39
43
  "required": true
40
44
  },
41
45
  "off": {
42
46
  "title": "OFF Values",
43
- "description": "The value or list of values that represent the OFF state. You can also use an expression like <4 or >33 to specify a numeric range. If a value matches an ON and an OFF state, the ON state will be used.",
47
+ "description": "Values that indicate the OFF state. Can be: a single value ('0', 'false', 'OFF'), comma-separated list ('0,false,OFF'), or numeric expression ('<4' means values below 4 are OFF, '>33' means values above 33 are OFF). Values matching neither ON nor OFF show as UNKNOWN.",
44
48
  "type": "string",
45
49
  "required": true
46
50
  }
@@ -49,43 +53,45 @@
49
53
  "value": {
50
54
  "title": "Switch State",
51
55
  "type": "string",
52
- "description": "Is not strictly required, but is strongly recommended to be connected to the backend column that represents the switch state. This keeps the switch visual state consistent with its physical state.",
56
+ "description": "The current state value from the backend, used to display the correct switch position. Strongly recommended to bind this to the actual device state column to keep the visual state synchronized with the physical device state.",
53
57
  "required": false,
54
58
  "order": 3
55
59
  },
56
60
  "actionDevice": {
57
61
  "title": "Action Device Target",
58
- "description": "The device that should handle the click on the switch. The 'Device ID' column can be used here when using data driven mode.",
62
+ "description": "The device that receives commands when the switch is clicked. In data-driven mode, bind to a 'Device ID' column to dynamically target different devices per row.",
59
63
  "type": "actionDevice",
60
64
  "order": 4
61
65
  },
62
66
  "actionApp": {
63
67
  "title": "Action App",
64
- "description": "The app that should handle the click on the switch.",
68
+ "description": "The application/service on the target device that handles the switch command. Select from available apps installed on the device.",
65
69
  "dataDrivenDisabled": true,
66
70
  "type": "actionApp",
67
71
  "order": 5
68
72
  },
69
73
  "actionTopic": {
70
74
  "title": "Action App Topic",
71
- "description": "The action topic that is called at the selected app at the selected device when clicking the switch. The arguments will be True for 'ON' and False for 'OFF'. Refer to the documentation of the app for available topics to call.",
75
+ "description": "The specific command/topic sent to the app when the switch is clicked. Arguments sent are: True for turning ON, False for turning OFF. Refer to the app's documentation for available topics.",
72
76
  "type": "string",
73
77
  "order": 6
74
78
  },
75
79
  "styling": {
76
80
  "title": "Styling",
77
- "description": "",
81
+ "description": "Visual styling options for the switch and its label.",
78
82
  "type": "object",
79
83
  "order": 9,
80
84
  "properties": {
81
85
  "labelColor": {
82
86
  "title": "Label Color",
87
+ "description": "Color of the switch label text.",
83
88
  "type": "color",
84
89
  "color": true,
85
90
  "order": 4
86
91
  },
87
92
  "valueColor": {
88
93
  "title": "Value Color",
94
+ "description": "Color of the state value text displayed with the switch.",
89
95
  "type": "color",
90
96
  "color": true,
91
97
  "order": 5
@@ -27,6 +27,7 @@ export class WidgetSwitch extends LitElement {
27
27
  @state() private themeBgColor?: string
28
28
  @state() private themeTitleColor?: string
29
29
  @state() private themeSubtitleColor?: string
30
+ @state() private themePrimaryColor?: string
30
31
 
31
32
  version: string = 'versionplaceholder'
32
33
 
@@ -73,10 +74,12 @@ export class WidgetSwitch extends LitElement {
73
74
  registerTheme(theme?: Theme) {
74
75
  const cssTextColor = getComputedStyle(this).getPropertyValue('--re-text-color').trim()
75
76
  const cssBgColor = getComputedStyle(this).getPropertyValue('--re-tile-background-color').trim()
77
+ const cssPrimaryColor = getComputedStyle(this).getPropertyValue('--re-primary-color').trim()
76
78
  this.themeBgColor = cssBgColor || this.theme?.theme_object?.backgroundColor
77
79
  this.themeTitleColor = cssTextColor || this.theme?.theme_object?.title?.textStyle?.color
78
80
  this.themeSubtitleColor =
79
81
  cssTextColor || this.theme?.theme_object?.title?.subtextStyle?.color || this.themeTitleColor
82
+ this.themePrimaryColor = cssPrimaryColor || this.theme?.theme_object?.color?.[0] || '#5470c6'
80
83
  }
81
84
 
82
85
  applyData() {}
@@ -202,7 +205,7 @@ export class WidgetSwitch extends LitElement {
202
205
  flex-direction: column;
203
206
  height: 100%;
204
207
  width: 100%;
205
- padding: 16px;
208
+ padding: 2cqh 2cqw;
206
209
  box-sizing: border-box;
207
210
  }
208
211
 
@@ -241,7 +244,40 @@ export class WidgetSwitch extends LitElement {
241
244
  align-items: center;
242
245
  gap: 12px;
243
246
  box-sizing: border-box;
244
- /* border-left: 4px solid #ddd; */
247
+ }
248
+
249
+ md-switch {
250
+ --md-switch-selected-handle-color: var(--switch-primary-color, #5470c6);
251
+ --md-switch-selected-hover-handle-color: var(--switch-primary-color, #5470c6);
252
+ --md-switch-selected-focus-handle-color: var(--switch-primary-color, #5470c6);
253
+ --md-switch-selected-pressed-handle-color: var(--switch-primary-color, #5470c6);
254
+ --md-switch-selected-track-color: color-mix(
255
+ in srgb,
256
+ var(--switch-primary-color, #5470c6) 40%,
257
+ transparent
258
+ );
259
+ --md-switch-selected-hover-track-color: color-mix(
260
+ in srgb,
261
+ var(--switch-primary-color, #5470c6) 50%,
262
+ transparent
263
+ );
264
+ --md-switch-selected-focus-track-color: color-mix(
265
+ in srgb,
266
+ var(--switch-primary-color, #5470c6) 50%,
267
+ transparent
268
+ );
269
+ --md-switch-selected-pressed-track-color: color-mix(
270
+ in srgb,
271
+ var(--switch-primary-color, #5470c6) 50%,
272
+ transparent
273
+ );
274
+ --md-switch-unselected-handle-color: var(--switch-text-color, #464646);
275
+ --md-switch-unselected-track-color: color-mix(
276
+ in srgb,
277
+ var(--switch-text-color, #464646) 20%,
278
+ transparent
279
+ );
280
+ --md-switch-unselected-track-outline-color: var(--switch-text-color, #464646);
245
281
  }
246
282
 
247
283
  .no-data {
@@ -259,7 +295,9 @@ export class WidgetSwitch extends LitElement {
259
295
  return html`
260
296
  <div
261
297
  class="wrapper"
262
- style="background-color: ${this.themeBgColor}; color: ${this.themeTitleColor}"
298
+ style="background-color: ${this.themeBgColor}; color: ${this
299
+ .themeTitleColor}; --switch-primary-color: ${this
300
+ .themePrimaryColor}; --switch-text-color: ${this.themeTitleColor}"
263
301
  >
264
302
  <header>
265
303
  <h3 class="paging" ?active=${this.inputData?.title}>${this.inputData?.title}</h3>
@@ -281,7 +319,7 @@ export class WidgetSwitch extends LitElement {
281
319
  <div class="switch" label="${label}">
282
320
  ${label}
283
321
  <label
284
- ><mdif3-switch
322
+ ><md-switch
285
323
  aria-label="${label}"
286
324
  ?selected="${!!ds.selected}"
287
325
  .actionApp="${ds?.actionApp}"
@@ -289,7 +327,7 @@ export class WidgetSwitch extends LitElement {
289
327
  .actionTopic="${ds?.actionTopic}"
290
328
  .label="${label}"
291
329
  @change="${this.handleActionSubmit}"
292
- ></mdif3-switch
330
+ ></md-switch
293
331
  ></label>
294
332
  </div>
295
333
  `
@@ -1,37 +0,0 @@
1
- import { LitElement, PropertyValueMap } from 'lit';
2
- import { InputData } from './definition-schema.js';
3
- import '@material/web/switch/switch.js';
4
- type Dataseries = Exclude<InputData['dataseries'], undefined>[number] & {
5
- needleValue?: number;
6
- };
7
- type Theme = {
8
- theme_name: string;
9
- theme_object: any;
10
- };
11
- export declare class WidgetSwitch extends LitElement {
12
- inputData?: InputData;
13
- theme?: Theme;
14
- private dataSets;
15
- private textActive;
16
- private themeBgColor?;
17
- private themeTitleColor?;
18
- private themeSubtitleColor?;
19
- version: string;
20
- private resizeObserver;
21
- valueContainer?: HTMLDivElement;
22
- boxes?: HTMLDivElement[];
23
- origWidth: number;
24
- origHeight: number;
25
- constructor();
26
- disconnectedCallback(): void;
27
- protected firstUpdated(_changedProperties: PropertyValueMap<any> | Map<PropertyKey, unknown>): void;
28
- update(changedProperties: Map<string, any>): void;
29
- registerTheme(theme?: Theme): void;
30
- applyData(): void;
31
- transformData(): Promise<void>;
32
- isSelected(ds: Dataseries): boolean | undefined;
33
- handleActionSubmit(e: any): void;
34
- static styles: import("lit").CSSResult;
35
- render(): import("lit-html").TemplateResult<1>;
36
- }
37
- export {};
@@ -1 +0,0 @@
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.intl.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/@lit/reactive-element/css-tag.d.ts","../node_modules/@lit/reactive-element/reactive-controller.d.ts","../node_modules/@lit/reactive-element/reactive-element.d.ts","../node_modules/lit-html/directive.d.ts","../node_modules/@types/trusted-types/lib/index.d.ts","../node_modules/lit-html/lit-html.d.ts","../node_modules/lit-element/lit-element.d.ts","../node_modules/lit-html/is-server.d.ts","../node_modules/lit/index.d.ts","../node_modules/lit-html/directives/repeat.d.ts","../node_modules/lit/directives/repeat.d.ts","../node_modules/@lit/reactive-element/decorators/base.d.ts","../node_modules/@lit/reactive-element/decorators/custom-element.d.ts","../node_modules/@lit/reactive-element/decorators/property.d.ts","../node_modules/@lit/reactive-element/decorators/state.d.ts","../node_modules/@lit/reactive-element/decorators/event-options.d.ts","../node_modules/@lit/reactive-element/decorators/query.d.ts","../node_modules/@lit/reactive-element/decorators/query-all.d.ts","../node_modules/@lit/reactive-element/decorators/query-async.d.ts","../node_modules/@lit/reactive-element/decorators/query-assigned-nodes.d.ts","../node_modules/@lit/reactive-element/decorators/query-assigned-elements.d.ts","../node_modules/lit/decorators.d.ts","../src/definition-schema.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/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/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/switch/internal/switch.d.ts","../node_modules/@material/web/switch/switch.d.ts","../src/widget-switch.ts","../node_modules/@types/node/globals.typedarray.d.ts","../node_modules/@types/node/buffer.buffer.d.ts","../node_modules/@types/node/assert.d.ts","../node_modules/@types/node/assert/strict.d.ts","../node_modules/undici-types/header.d.ts","../node_modules/undici-types/readable.d.ts","../node_modules/undici-types/file.d.ts","../node_modules/undici-types/fetch.d.ts","../node_modules/undici-types/formdata.d.ts","../node_modules/undici-types/connector.d.ts","../node_modules/undici-types/client.d.ts","../node_modules/undici-types/errors.d.ts","../node_modules/undici-types/dispatcher.d.ts","../node_modules/undici-types/global-dispatcher.d.ts","../node_modules/undici-types/global-origin.d.ts","../node_modules/undici-types/pool-stats.d.ts","../node_modules/undici-types/pool.d.ts","../node_modules/undici-types/handlers.d.ts","../node_modules/undici-types/balanced-pool.d.ts","../node_modules/undici-types/agent.d.ts","../node_modules/undici-types/mock-interceptor.d.ts","../node_modules/undici-types/mock-agent.d.ts","../node_modules/undici-types/mock-client.d.ts","../node_modules/undici-types/mock-pool.d.ts","../node_modules/undici-types/mock-errors.d.ts","../node_modules/undici-types/proxy-agent.d.ts","../node_modules/undici-types/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/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/filereader.d.ts","../node_modules/undici-types/diagnostics-channel.d.ts","../node_modules/undici-types/content-type.d.ts","../node_modules/undici-types/cache.d.ts","../node_modules/undici-types/index.d.ts","../node_modules/@types/node/globals.d.ts","../node_modules/@types/node/async_hooks.d.ts","../node_modules/@types/node/buffer.d.ts","../node_modules/@types/node/child_process.d.ts","../node_modules/@types/node/cluster.d.ts","../node_modules/@types/node/console.d.ts","../node_modules/@types/node/constants.d.ts","../node_modules/@types/node/crypto.d.ts","../node_modules/@types/node/dgram.d.ts","../node_modules/@types/node/diagnostics_channel.d.ts","../node_modules/@types/node/dns.d.ts","../node_modules/@types/node/dns/promises.d.ts","../node_modules/@types/node/domain.d.ts","../node_modules/@types/node/dom-events.d.ts","../node_modules/@types/node/events.d.ts","../node_modules/@types/node/fs.d.ts","../node_modules/@types/node/fs/promises.d.ts","../node_modules/@types/node/http.d.ts","../node_modules/@types/node/http2.d.ts","../node_modules/@types/node/https.d.ts","../node_modules/@types/node/inspector.d.ts","../node_modules/@types/node/module.d.ts","../node_modules/@types/node/net.d.ts","../node_modules/@types/node/os.d.ts","../node_modules/@types/node/path.d.ts","../node_modules/@types/node/perf_hooks.d.ts","../node_modules/@types/node/process.d.ts","../node_modules/@types/node/punycode.d.ts","../node_modules/@types/node/querystring.d.ts","../node_modules/@types/node/readline.d.ts","../node_modules/@types/node/readline/promises.d.ts","../node_modules/@types/node/repl.d.ts","../node_modules/@types/node/sea.d.ts","../node_modules/@types/node/sqlite.d.ts","../node_modules/@types/node/stream.d.ts","../node_modules/@types/node/stream/promises.d.ts","../node_modules/@types/node/stream/consumers.d.ts","../node_modules/@types/node/stream/web.d.ts","../node_modules/@types/node/string_decoder.d.ts","../node_modules/@types/node/test.d.ts","../node_modules/@types/node/timers.d.ts","../node_modules/@types/node/timers/promises.d.ts","../node_modules/@types/node/tls.d.ts","../node_modules/@types/node/trace_events.d.ts","../node_modules/@types/node/tty.d.ts","../node_modules/@types/node/url.d.ts","../node_modules/@types/node/util.d.ts","../node_modules/@types/node/v8.d.ts","../node_modules/@types/node/vm.d.ts","../node_modules/@types/node/wasi.d.ts","../node_modules/@types/node/worker_threads.d.ts","../node_modules/@types/node/zlib.d.ts","../node_modules/@types/node/globals.global.d.ts","../node_modules/@types/node/index.d.ts","../node_modules/@types/accepts/index.d.ts","../node_modules/@babel/types/lib/index.d.ts","../node_modules/@types/babel__generator/index.d.ts","../node_modules/@babel/parser/typings/babel-parser.d.ts","../node_modules/@types/babel__template/index.d.ts","../node_modules/@types/babel__traverse/index.d.ts","../node_modules/@types/babel__core/index.d.ts","../node_modules/@types/connect/index.d.ts","../node_modules/@types/body-parser/index.d.ts","../node_modules/@types/browserslist-useragent/index.d.ts","../node_modules/@types/caniuse-api/index.d.ts","../node_modules/@types/command-line-args/index.d.ts","../node_modules/@types/command-line-usage/index.d.ts","../node_modules/@types/content-disposition/index.d.ts","../node_modules/@types/mime/index.d.ts","../node_modules/@types/send/index.d.ts","../node_modules/@types/qs/index.d.ts","../node_modules/@types/range-parser/index.d.ts","../node_modules/@types/express-serve-static-core/index.d.ts","../node_modules/@types/http-errors/index.d.ts","../node_modules/@types/serve-static/index.d.ts","../node_modules/@types/express/index.d.ts","../node_modules/@types/keygrip/index.d.ts","../node_modules/@types/cookies/index.d.ts","../node_modules/@types/debounce/index.d.ts","../node_modules/@types/estree/index.d.ts","../node_modules/@types/etag/index.d.ts","../node_modules/@types/http-assert/index.d.ts","../node_modules/@types/json-schema/index.d.ts","../node_modules/@types/koa-compose/index.d.ts","../node_modules/@types/koa/index.d.ts","../node_modules/@types/koa-compress/index.d.ts","../node_modules/@types/koa-etag/index.d.ts","../node_modules/@types/koa-send/index.d.ts","../node_modules/@types/koa-static/index.d.ts","../node_modules/@types/koa__cors/index.d.ts","../node_modules/@types/lodash/common/common.d.ts","../node_modules/@types/lodash/common/array.d.ts","../node_modules/@types/lodash/common/collection.d.ts","../node_modules/@types/lodash/common/date.d.ts","../node_modules/@types/lodash/common/function.d.ts","../node_modules/@types/lodash/common/lang.d.ts","../node_modules/@types/lodash/common/math.d.ts","../node_modules/@types/lodash/common/number.d.ts","../node_modules/@types/lodash/common/object.d.ts","../node_modules/@types/lodash/common/seq.d.ts","../node_modules/@types/lodash/common/string.d.ts","../node_modules/@types/lodash/common/util.d.ts","../node_modules/@types/lodash/index.d.ts","../node_modules/@types/lru-cache/index.d.ts","../node_modules/@types/mime-types/index.d.ts","../node_modules/@types/minimatch/index.d.ts","../node_modules/@types/parse5/lib/tree-adapters/default.d.ts","../node_modules/@types/parse5/index.d.ts","../node_modules/@types/path-is-inside/index.d.ts","../node_modules/@types/resolve/index.d.ts","../node_modules/@types/trusted-types/index.d.ts","../node_modules/@types/whatwg-url/index.d.ts","../node_modules/@types/ws/index.d.ts"],"fileIdsList":[[87,129,182],[87,129],[60,87,129],[51,60,87,129],[51,60,68,87,129],[62,87,129],[49,50,87,129],[57,73,87,129],[57,72,87,129],[57,87,129],[57,77,78,79,80,87,129],[57,77,87,129],[57,77,78,87,129],[80,87,129],[54,57,72,87,129],[57,75,87,129],[57,74,76,77,78,79,81,82,87,129],[57,83,87,129],[87,129,144,180],[87,129,182,183,184,185,186],[87,129,182,184],[87,129,144,180,188],[87,129,144,180,188,202,203],[87,129,180],[87,129,141,144,180,196,197,198],[87,129,189,197,199,201],[87,129,211],[87,129,178,180,211],[87,129,207,211],[87,129,142,211],[87,129,211,214],[87,128,129,141,144,145,149,155,172,180,181,194,200,203,204,208,210],[87,129,217,219,220,221,222,223,224,225,226,227,228,229],[87,129,217,218,220,221,222,223,224,225,226,227,228,229],[87,129,218,219,220,221,222,223,224,225,226,227,228,229],[87,129,217,218,219,221,222,223,224,225,226,227,228,229],[87,129,217,218,219,220,222,223,224,225,226,227,228,229],[87,129,217,218,219,220,221,223,224,225,226,227,228,229],[87,129,217,218,219,220,221,222,224,225,226,227,228,229],[87,129,217,218,219,220,221,222,223,225,226,227,228,229],[87,129,217,218,219,220,221,222,223,224,226,227,228,229],[87,129,217,218,219,220,221,222,223,224,225,227,228,229],[87,129,217,218,219,220,221,222,223,224,225,226,228,229],[87,129,217,218,219,220,221,222,223,224,225,226,227,229],[87,129,217,218,219,220,221,222,223,224,225,226,227,228],[87,88,129],[87,128,129],[129],[87,129,134,164],[87,129,130,135,141,142,149,161,172],[87,129,130,131,141,149],[87,129,132,173],[87,129,133,134,142,150],[87,129,134,161,169],[87,129,135,137,141,149],[87,128,129,136],[87,129,137,138],[87,129,141],[87,129,139,141],[87,128,129,141],[87,129,141,142,143,161,172],[87,129,141,142,143,156,161,164],[87,126,129,177],[87,126,129,137,141,144,149,161,172],[87,129,141,142,144,145,149,161,169,172],[87,129,144,146,161,169,172],[86,87,88,89,127,128,129,130,131,132,133,134,135,136,137,138,139,140,141,142,143,144,145,146,147,148,149,150,151,152,153,154,155,156,157,158,159,160,161,162,163,164,165,166,167,168,169,170,171,172,173,174,175,176,177,178,179],[87,129,141,147],[87,129,148,172,177],[87,129,137,141,149,161],[87,129,150],[87,129,151],[87,128,129,152],[87,88,89,128,129,130,131,132,133,134,135,136,137,138,139,141,142,143,144,145,146,147,148,149,150,151,152,153,154,155,156,157,158,159,160,161,162,163,164,165,166,167,168,169,170,171,172,173,174,175,176,177,178],[87,129,154],[87,129,155],[87,129,141,156,157],[87,129,156,158,173,175],[87,129,141,161,162,163,164],[87,129,161,163],[87,129,161,162],[87,129,164],[87,129,165],[87,88,129,161],[87,129,141,167,168],[87,129,167,168],[87,129,134,149,161,169],[87,129,170],[87,129,149,171],[87,129,144,155,172],[87,129,134,173],[87,129,161,174],[87,129,148,175],[87,129,176],[87,129,134,141,143,152,161,172,175,177],[87,129,161,178],[87,129,233],[87,129,234],[87,129,142,161,180,195],[87,129,144,180,196,200],[53,87,129],[87,129,141,144,146,149,161,169,172,178,180],[51,54,87,129],[54,87,129],[52,54,87,129],[52,53,87,129],[61,62,63,64,65,66,67,68,69,87,129],[58,87,129],[51,54,55,56,87,129],[87,98,102,129,172],[87,98,129,161,172],[87,93,129],[87,95,98,129,169,172],[87,129,149,169],[87,93,129,180],[87,95,98,129,149,172],[87,90,91,94,97,129,141,161,172],[87,98,105,129],[87,90,96,129],[87,98,119,120,129],[87,94,98,129,164,172,180],[87,119,129,180],[87,92,93,129,180],[87,98,129],[87,92,93,94,95,96,97,98,99,100,102,103,104,105,106,107,108,109,110,111,112,113,114,115,116,117,118,120,121,122,123,124,125,129],[87,98,113,129],[87,98,105,106,129],[87,96,98,106,107,129],[87,97,129],[87,90,93,98,129],[87,98,102,106,107,129],[87,102,129],[87,96,98,101,129,172],[87,90,95,98,105,129],[87,129,161],[87,93,98,119,129,177,180],[48,57,59,70,71,84,87,129]],"fileInfos":[{"version":"69684132aeb9b5642cbcd9e22dff7818ff0ee1aa831728af0ecf97d3364d5546","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":"092c2bfe125ce69dbb1223c85d68d4d2397d7d8411867b5cc03cec902c233763","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":"936e80ad36a2ee83fc3caf008e7c4c5afe45b3cf3d5c24408f039c1d47bdc1df","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":"fef8cfad2e2dc5f5b3d97a6f4f2e92848eb1b88e897bb7318cef0e2820bceaab","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":"811c71eee4aa0ac5f7adf713323a5c41b0cf6c4e17367a34fbce379e12bbf0a4","affectsGlobalScope":true,"impliedFormat":1},{"version":"8e7f8264d0fb4c5339605a15daadb037bf238c10b654bb3eee14208f860a32ea","affectsGlobalScope":true,"impliedFormat":1},{"version":"782dec38049b92d4e85c1585fbea5474a219c6984a35b004963b00beb1aab538","affectsGlobalScope":true,"impliedFormat":1},{"version":"a6a5253138c5432c68a1510c70fe78a644fe2e632111ba778e1978010d6edfec","impliedFormat":1},{"version":"74012d464fbc5354ca3a7d5e71bee43b17da01a853c8ff10971bbe3680c76f40","impliedFormat":99},{"version":"5e30131b6a5587fe666926ad1d9807e733c0a597ed12d682669fcaa331aea576","impliedFormat":99},{"version":"1aa53fff8e30c86e74eceb7514d715efa71c7820e5eb8bce70e2dd1b5a8b13ff","affectsGlobalScope":true,"impliedFormat":99},{"version":"00cb63103f9670f8094c238a4a7e252c8b4c06ba371fea5c44add7e41b7247e4","impliedFormat":99},{"version":"15fe687c59d62741b4494d5e623d497d55eb38966ecf5bea7f36e48fc3fbe15e","impliedFormat":1},{"version":"d854b2f06015f4241109d05b4b214d9f1fdd5fb15d2606843a8e0d6cd795a37d","impliedFormat":99},{"version":"9a318e3a8900672b85cd3c8c3a5acf51b88049557a3ae897ccdcf2b85a8f61f9","impliedFormat":99},{"version":"1bcd560deed90a43c51b08aa18f7f55229f2e30974ab5ed1b7bb5721be379013","impliedFormat":99},{"version":"dc08fe04e50bc24d1baded4f33e942222bbdd5d77d6341a93cfe6e4e4586a3be","impliedFormat":99},{"version":"a4bbe05f59182f4ce279bf92b2fcf9ce52fe1a9feba61867aa97e11eaa1912aa","impliedFormat":99},{"version":"1b9d0b8dbfe4d820b52271376daab06fde5205e840010c63c7b0f53458ece5bc","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},"1959e852c92f5785b82ccd0c9486e8ef79b53ed3e8f0c91ebdf735f44638ab00",{"version":"1a584a637907cffffa9ba3967e84fd806ef5cf10f31b9d5da61322c9ae44e3aa","impliedFormat":99},{"version":"d17be577b99e59611df19ca2cf0356df554f55bb06617c21321fc4ec06b820d0","impliedFormat":99},{"version":"2faa1475c66730c99e1e9a6a8e5ff3f6e14116cab01306e4e7f14a2d4f73bb77","affectsGlobalScope":true,"impliedFormat":99},{"version":"cefe49d29d43726072e88671a2c40cdeeb8d49ca8fa6c2d4b06013dc7b9d6206","impliedFormat":99},{"version":"46381aeccef3527d8b10f7d050792b72e6fd8e1eb01ce13da9fd53275a573760","affectsGlobalScope":true,"impliedFormat":99},{"version":"0230bc76ed3a464531a43d2434d315b9cc2096aaca28bdaa65b8f9dce9f3bc81","impliedFormat":99},{"version":"559d2d1cd7f37dc2ac59e7adce198ad16a5eb0c7273d67b8e4ff72821b7c853f","impliedFormat":99},{"version":"d0641686056ba18b391381654d29928b36fbec96c2132ecdc7ed820aad77dd5b","impliedFormat":99},{"version":"0d0f0a7057effa894462302bbfab93d0ff82dc88e7eb3b4a40f5c5baf2287e87","impliedFormat":99},{"version":"7a9cada9676068d5bf49db65e12bf45077e5d3597f84bee594073ecdadea3be9","impliedFormat":99},{"version":"906ba9deec2d81b2ba91cda35da7edddc1ed23c74c0c59b635d719ed436c8783","impliedFormat":99},{"version":"fba383c9e42aff464373dd6bcdc515f98efd47af9a9c9ae7dd3a2f4dd8667344","impliedFormat":99},{"version":"6e42b27419a1fadd3f1d1af078dee415ffacd77246f050810d38bc268183d4b8","affectsGlobalScope":true,"impliedFormat":99},"27800e9f5a3037e043b1cdcd3dd886bfb83606a8d6319e10d7b022812b4889c9",{"version":"a79e62f1e20467e11a904399b8b18b18c0c6eea6b50c1168bf215356d5bebfaf","affectsGlobalScope":true,"impliedFormat":1},{"version":"0fd06258805d26c72f5997e07a23155d322d5f05387adb3744a791fe6a0b042d","affectsGlobalScope":true,"impliedFormat":1},{"version":"f6114eb1e8f70ec08816bdaa6ec740a0a7a01f25743e36f655f00157be394374","impliedFormat":1},{"version":"7394959e5a741b185456e1ef5d64599c36c60a323207450991e7a42e08911419","impliedFormat":1},{"version":"5929864ce17fba74232584d90cb721a89b7ad277220627cc97054ba15a98ea8f","impliedFormat":1},{"version":"24bd580b5743dc56402c440dc7f9a4f5d592ad7a419f25414d37a7bfe11e342b","impliedFormat":1},{"version":"25c8056edf4314820382a5fdb4bb7816999acdcb929c8f75e3f39473b87e85bc","impliedFormat":1},{"version":"c464d66b20788266e5353b48dc4aa6bc0dc4a707276df1e7152ab0c9ae21fad8","impliedFormat":1},{"version":"78d0d27c130d35c60b5e5566c9f1e5be77caf39804636bc1a40133919a949f21","impliedFormat":1},{"version":"c6fd2c5a395f2432786c9cb8deb870b9b0e8ff7e22c029954fabdd692bff6195","impliedFormat":1},{"version":"1d6e127068ea8e104a912e42fc0a110e2aa5a66a356a917a163e8cf9a65e4a75","impliedFormat":1},{"version":"5ded6427296cdf3b9542de4471d2aa8d3983671d4cac0f4bf9c637208d1ced43","impliedFormat":1},{"version":"6bdc71028db658243775263e93a7db2fd2abfce3ca569c3cca5aee6ed5eb186d","impliedFormat":1},{"version":"cadc8aced301244057c4e7e73fbcae534b0f5b12a37b150d80e5a45aa4bebcbd","impliedFormat":1},{"version":"385aab901643aa54e1c36f5ef3107913b10d1b5bb8cbcd933d4263b80a0d7f20","impliedFormat":1},{"version":"9670d44354bab9d9982eca21945686b5c24a3f893db73c0dae0fd74217a4c219","impliedFormat":1},{"version":"0b8a9268adaf4da35e7fa830c8981cfa22adbbe5b3f6f5ab91f6658899e657a7","impliedFormat":1},{"version":"11396ed8a44c02ab9798b7dca436009f866e8dae3c9c25e8c1fbc396880bf1bb","impliedFormat":1},{"version":"ba7bc87d01492633cb5a0e5da8a4a42a1c86270e7b3d2dea5d156828a84e4882","impliedFormat":1},{"version":"4893a895ea92c85345017a04ed427cbd6a1710453338df26881a6019432febdd","impliedFormat":1},{"version":"c21dc52e277bcfc75fac0436ccb75c204f9e1b3fa5e12729670910639f27343e","impliedFormat":1},{"version":"13f6f39e12b1518c6650bbb220c8985999020fe0f21d818e28f512b7771d00f9","impliedFormat":1},{"version":"9b5369969f6e7175740bf51223112ff209f94ba43ecd3bb09eefff9fd675624a","impliedFormat":1},{"version":"4fe9e626e7164748e8769bbf74b538e09607f07ed17c2f20af8d680ee49fc1da","impliedFormat":1},{"version":"24515859bc0b836719105bb6cc3d68255042a9f02a6022b3187948b204946bd2","impliedFormat":1},{"version":"ea0148f897b45a76544ae179784c95af1bd6721b8610af9ffa467a518a086a43","impliedFormat":1},{"version":"24c6a117721e606c9984335f71711877293a9651e44f59f3d21c1ea0856f9cc9","impliedFormat":1},{"version":"dd3273ead9fbde62a72949c97dbec2247ea08e0c6952e701a483d74ef92d6a17","impliedFormat":1},{"version":"405822be75ad3e4d162e07439bac80c6bcc6dbae1929e179cf467ec0b9ee4e2e","impliedFormat":1},{"version":"0db18c6e78ea846316c012478888f33c11ffadab9efd1cc8bcc12daded7a60b6","impliedFormat":1},{"version":"4d2b0eb911816f66abe4970898f97a2cfc902bcd743cbfa5017fad79f7ef90d8","impliedFormat":1},{"version":"bd0532fd6556073727d28da0edfd1736417a3f9f394877b6d5ef6ad88fba1d1a","impliedFormat":1},{"version":"89167d696a849fce5ca508032aabfe901c0868f833a8625d5a9c6e861ef935d2","impliedFormat":1},{"version":"e53a3c2a9f624d90f24bf4588aacd223e7bec1b9d0d479b68d2f4a9e6011147f","impliedFormat":1},{"version":"24b8685c62562f5d98615c5a0c1d05f297cf5065f15246edfe99e81ec4c0e011","impliedFormat":1},{"version":"93507c745e8f29090efb99399c3f77bec07db17acd75634249dc92f961573387","impliedFormat":1},{"version":"339dc5265ee5ed92e536a93a04c4ebbc2128f45eeec6ed29f379e0085283542c","impliedFormat":1},{"version":"4732aec92b20fb28c5fe9ad99521fb59974289ed1e45aecb282616202184064f","impliedFormat":1},{"version":"2e85db9e6fd73cfa3d7f28e0ab6b55417ea18931423bd47b409a96e4a169e8e6","impliedFormat":1},{"version":"c46e079fe54c76f95c67fb89081b3e399da2c7d109e7dca8e4b58d83e332e605","impliedFormat":1},{"version":"bf67d53d168abc1298888693338cb82854bdb2e69ef83f8a0092093c2d562107","impliedFormat":1},{"version":"bb2cd9339d0201e7e78ccb6ff2f71aac103934bf35eaaa37e139ac2b68af0db8","affectsGlobalScope":true,"impliedFormat":1},{"version":"76103716ba397bbb61f9fa9c9090dca59f39f9047cb1352b2179c5d8e7f4e8d0","impliedFormat":1},{"version":"53eac70430b30089a3a1959d8306b0f9cfaf0de75224b68ef25243e0b5ad1ca3","affectsGlobalScope":true,"impliedFormat":1},{"version":"4314c7a11517e221f7296b46547dbc4df047115b182f544d072bdccffa57fc72","impliedFormat":1},{"version":"115971d64632ea4742b5b115fb64ed04bcaae2c3c342f13d9ba7e3f9ee39c4e7","impliedFormat":1},{"version":"c2510f124c0293ab80b1777c44d80f812b75612f297b9857406468c0f4dafe29","affectsGlobalScope":true,"impliedFormat":1},{"version":"a40826e8476694e90da94aa008283a7de50d1dafd37beada623863f1901cb7fb","impliedFormat":1},{"version":"46e07db372dd75edc1a26e68f16d1b7ffb34b7ab3db5cdb3e391a3604ad7bb7c","affectsGlobalScope":true,"impliedFormat":1},{"version":"24642567d3729bcc545bacb65ee7c0db423400c7f1ef757cab25d05650064f98","impliedFormat":1},{"version":"e6f5a38687bebe43a4cef426b69d34373ef68be9a6b1538ec0a371e69f309354","impliedFormat":1},{"version":"a6bf63d17324010ca1fbf0389cab83f93389bb0b9a01dc8a346d092f65b3605f","impliedFormat":1},{"version":"e009777bef4b023a999b2e5b9a136ff2cde37dc3f77c744a02840f05b18be8ff","impliedFormat":1},{"version":"1e0d1f8b0adfa0b0330e028c7941b5a98c08b600efe7f14d2d2a00854fb2f393","impliedFormat":1},{"version":"ee1ee365d88c4c6c0c0a5a5701d66ebc27ccd0bcfcfaa482c6e2e7fe7b98edf7","affectsGlobalScope":true,"impliedFormat":1},{"version":"f501a53b94ba382d9ba396a5c486969a3abc68309828fa67f916035f5d37fe2b","affectsGlobalScope":true,"impliedFormat":1},{"version":"c956ba45704d4a97f7a96923a307a6203bc0e7c4c532930d4c8ca261eaaff32a","impliedFormat":1},{"version":"ab0e88d33ccf15d8b3c891038b5a16094b0dd7e860ab0e2ba08da4384afce02b","impliedFormat":1},{"version":"954580f86c8e2a4abd5dcd1bcdf1a4c7e012495f1c39e058dc738bc93024642a","impliedFormat":1},{"version":"fa56be9b96f747e93b895d8dc2aa4fb9f0816743e6e2abb9d60705e88d4743a2","impliedFormat":1},{"version":"8257c55ff6bff6169142a35fce6811b511d857b4ae4f522cdb6ce20fd2116b2c","impliedFormat":1},{"version":"6d386bc0d7f3afa1d401afc3e00ed6b09205a354a9795196caed937494a713e6","impliedFormat":1},{"version":"3a9e5dddbd6ca9507d0c06a557535ba2224a94a2b0f3e146e8215f93b7e5b3a8","affectsGlobalScope":true,"impliedFormat":1},{"version":"d8b56de03a9f79f3fc1ac3a01a0d63bb48cc15f95a6b95549b4fb420e6030973","impliedFormat":1},{"version":"b1b6ee0d012aeebe11d776a155d8979730440082797695fc8e2a5c326285678f","impliedFormat":1},{"version":"45875bcae57270aeb3ebc73a5e3fb4c7b9d91d6b045f107c1d8513c28ece71c0","impliedFormat":1},{"version":"3c36ab47df4668254ccc170fc42e7d5116fd86a7e408d8dc220e559837cd2bbb","affectsGlobalScope":true,"impliedFormat":1},{"version":"6f6abdaf8764ef01a552a958f45e795b5e79153b87ddad3af5264b86d2681b72","affectsGlobalScope":true,"impliedFormat":1},{"version":"3f16a7e4deafa527ed9995a772bb380eb7d3c2c0fd4ae178c5263ed18394db2c","impliedFormat":1},{"version":"c6b4e0a02545304935ecbf7de7a8e056a31bb50939b5b321c9d50a405b5a0bba","impliedFormat":1},{"version":"c86b9afa9b39b12db8e877d23b48888d80f26e1fe72a95f58552746a6e1fa4fe","impliedFormat":1},{"version":"e432b0e3761ca9ba734bdd41e19a75fec1454ca8e9769bfdf8b31011854cf06a","impliedFormat":1},{"version":"e1120271ebbc9952fdc7b2dd3e145560e52e06956345e6fdf91d70ca4886464f","impliedFormat":1},{"version":"15c5e91b5f08be34a78e3d976179bf5b7a9cc28dc0ef1ffebffeb3c7812a2dca","impliedFormat":1},{"version":"a8f06c2382a30b7cb89ad2dfc48fc3b2b490f3dafcd839dadc008e4e5d57031d","impliedFormat":1},{"version":"07b9d3b7204d931acc29269c98ac3aac87ebcba6e05141552d42a4c17f895aa4","impliedFormat":1},{"version":"269929a24b2816343a178008ac9ae9248304d92a8ba8e233055e0ed6dbe6ef71","impliedFormat":1},{"version":"93452d394fdd1dc551ec62f5042366f011a00d342d36d50793b3529bfc9bd633","impliedFormat":1},{"version":"1425f76ac97ce8617d1e2fa79e9a14e0fd1cfdaa155e13d4e92403a468177bc2","affectsGlobalScope":true,"impliedFormat":1},{"version":"2754d8221d77c7b382096651925eb476f1066b3348da4b73fe71ced7801edada","impliedFormat":1},{"version":"cca97c55398b8699fa3a96ef261b01d200ed2a44d2983586ab1a81d7d7b23cd9","affectsGlobalScope":true,"impliedFormat":1},{"version":"bef91efa0baea5d0e0f0f27b574a8bc100ce62a6d7e70220a0d58af6acab5e89","affectsGlobalScope":true,"impliedFormat":1},{"version":"f59493f68eade5200559e5016b5855f7d12e6381eb6cab9ad8a379af367b3b2d","impliedFormat":1},{"version":"125e3472965f529de239d2bc85b54579fed8e0b060d1d04de6576fb910a6ec7f","impliedFormat":1},{"version":"66ba1b2c3e3a3644a1011cd530fb444a96b1b2dfe2f5e837a002d41a1a799e60","impliedFormat":1},{"version":"7e514f5b852fdbc166b539fdd1f4e9114f29911592a5eb10a94bb3a13ccac3c4","impliedFormat":1},{"version":"18f5c7c4ad71748cffdd42e829398acdfd2d150a887e5f07aae4f2acab68e71b","affectsGlobalScope":true,"impliedFormat":1},{"version":"72ed3074450a4a315063278f046637afdeea90aa72b2292a7976958ceafc344a","affectsGlobalScope":true,"impliedFormat":1},{"version":"a5c09990a37469b0311a92ce8feeb8682e83918723aedbd445bd7a0f510eaaa3","impliedFormat":1},{"version":"6b29aea17044029b257e5bd4e3e4f765cd72b8d3c11c753f363ab92cc3f9f947","impliedFormat":1},{"version":"ac5ed35e649cdd8143131964336ab9076937fa91802ec760b3ea63b59175c10a","impliedFormat":1},{"version":"d008cf1330c86b37a8128265c80795397c287cecff273bc3ce3a4883405f5112","affectsGlobalScope":true,"impliedFormat":1},{"version":"78dc0513cc4f1642906b74dda42146bcbd9df7401717d6e89ea6d72d12ecb539","impliedFormat":1},{"version":"ab9b9a36e5284fd8d3bf2f7d5fcbc60052f25f27e4d20954782099282c60d23e","affectsGlobalScope":true,"impliedFormat":1},{"version":"1428b46f53efef128041d6e9ac86963e6460ab7f91472c2bd0207744f60f6e85","impliedFormat":1},{"version":"87f287f296f3ff07dbd14ea7853c2400d995dccd7bd83206196d6c0974774e96","impliedFormat":1},{"version":"7983487d0fbefb9b6ccc94390e8c826328d87e21cd4a62ea5b4c6b8f99f32550","impliedFormat":1},{"version":"2c8e55457aaf4902941dfdba4061935922e8ee6e120539c9801cd7b400fae050","impliedFormat":1},{"version":"a7c8d34006fa93c600dc791fc4fc099fe67f28377b23626f4467675146be080e","impliedFormat":1},{"version":"670a76db379b27c8ff42f1ba927828a22862e2ab0b0908e38b671f0e912cc5ed","impliedFormat":1},{"version":"9e0cf651e8e2c5b9bebbabdff2f7c6f8cedd91b1d9afcc0a854cdff053a88f1b","impliedFormat":1},{"version":"069bebfee29864e3955378107e243508b163e77ab10de6a5ee03ae06939f0bb9","impliedFormat":1},{"version":"104c67f0da1bdf0d94865419247e20eded83ce7f9911a1aa75fc675c077ca66e","impliedFormat":1},{"version":"cc0d0b339f31ce0ab3b7a5b714d8e578ce698f1e13d7f8c60bfb766baeb1d35c","impliedFormat":1},{"version":"dfa8cad6931c3f2c8902fab05ae7456721f7c1f25c5eb64a2b4b30a375f2c3ec","impliedFormat":1},{"version":"1ea5c3087f7ff51ef46f11c3664af6de3e5a6b22e7c2e338f9927da67e1779c0","impliedFormat":1},{"version":"5b7206ca5f2f6eeaac6daa285664f424e0b728f3e31937da89deb8696c5f1dbc","impliedFormat":1},{"version":"53dd92e141efe47b413a058f3fbcc6e40a84f5afdde16f45de550a476da25d98","impliedFormat":1},{"version":"0504070e7eaba788f5d0d5926782ed177f1db01cee28363c488fae94950c0bbc","impliedFormat":1},{"version":"d3f2d715f57df3f04bf7b16dde01dec10366f64fce44503c92b8f78f614c1769","impliedFormat":1},{"version":"b78cd10245a90e27e62d0558564f5d9a16576294eee724a59ae21b91f9269e4a","impliedFormat":1},{"version":"630ff11de47d75175f2d1d43cc447068818cb9377324752e01fe0e5fc3f77757","impliedFormat":1},{"version":"2f5747b1508ccf83fad0c251ba1e5da2f5a30b78b09ffa1cfaf633045160afed","impliedFormat":1},{"version":"7d52b8f399f646725a8dd363f17c8db6ef987efe7c5a4af1e26146ca07973d6c","affectsGlobalScope":true,"impliedFormat":1},{"version":"b71c603a539078a5e3a039b20f2b0a0d1708967530cf97dec8850a9ca45baa2b","impliedFormat":1},{"version":"0e13570a7e86c6d83dd92e81758a930f63747483e2cd34ef36fcdb47d1f9726a","impliedFormat":1},{"version":"5c45abf1e13e4463eacfd5dedda06855da8748a6a6cb3334f582b52e219acc04","impliedFormat":1},{"version":"6847334317c1bc1e6fc4b679b0095bbd2b6ee3b85fe3f26fc26bac462f68ef5e","impliedFormat":1},{"version":"2224f3072e3cc07906eeed5c71746779511fba2dd224addc5489bcdb489bdee5","impliedFormat":1},{"version":"072099609280e6659eb29b1d2a601e95708c90b7db2aba2571ebda50d1be0dd5","impliedFormat":1},{"version":"e2b48abff5a8adc6bb1cd13a702b9ef05e6045a98e7cfa95a8779b53b6d0e69d","impliedFormat":1},{"version":"537bd81394de1d3d6dfb9af22259559a93aac90f03bb80811de354c6603bb34b","impliedFormat":1},{"version":"3f841292a135503a4cc1a9029af59dae135595810cfad5ca62ec1b2ad9846e8e","impliedFormat":1},{"version":"f3d8c757e148ad968f0d98697987db363070abada5f503da3c06aefd9d4248c1","impliedFormat":1},{"version":"7e8d3f08435ad2cefe67f58182618bfc9a0a29db08cf2544b94cbcae754a9bd9","impliedFormat":1},{"version":"8cf9b9045a614f883b623c2f1a631ec6a93321747e933330b2eec0ee47164a34","impliedFormat":1},{"version":"d1494c6dbbe5fca590ca73ccd21d013e6617e9ea19773c9ca7c0f3214df86628","impliedFormat":1},{"version":"75a950626ff6468279deb38260bf90564930f38202a49dc396dfd8f54aa4ec97","impliedFormat":1},{"version":"03e266e412f1494d4288de426268bcee43d54f47d79e09d523f28820c6aea823","impliedFormat":1},{"version":"6edfadf457598d5975d209cda1f13597ca9e124bfffeeff80e1113755612573c","impliedFormat":1},{"version":"0f141d684b22a8ff995c19137ec8a90b297461154ad4212b4f45b7e8b10357b7","impliedFormat":1},{"version":"4992e90e1ccc4f69f46e40f067d90b4a1d943ca9eb8e2054661bab13b7496ecb","impliedFormat":1},{"version":"51bb65de67a77fa862241c94267f1895435bf1a313cb57ae04b7c4ac200e705b","impliedFormat":1},{"version":"da2b6356b84a40111aaecb18304ea4e4fcb43d70efb1c13ca7d7a906445ee0d3","impliedFormat":1},{"version":"187119ff4f9553676a884e296089e131e8cc01691c546273b1d0089c3533ce42","impliedFormat":1},{"version":"aa2c18a1b5a086bbcaae10a4efba409cc95ba7287d8cf8f2591b53704fea3dea","impliedFormat":1},{"version":"6f294731b495c65ecf46a5694f0082954b961cf05463bea823f8014098eaffa0","impliedFormat":1},{"version":"0aaef8cded245bf5036a7a40b65622dd6c4da71f7a35343112edbe112b348a1e","impliedFormat":1},{"version":"00baffbe8a2f2e4875367479489b5d43b5fc1429ecb4a4cc98cfc3009095f52a","impliedFormat":1},{"version":"bdf0ed7d9ebae6175a5d1b4ec4065d07f8099379370a804b1faff05004dc387d","impliedFormat":1},{"version":"7c14ccd2eaa82619fffc1bfa877eb68a012e9fb723d07ee98db451fadb618906","impliedFormat":1},{"version":"5256ff2882306972c3eeae034d8e553a60d930f3e44d22189c54248232258438","impliedFormat":1},{"version":"df996e25faa505f85aeb294d15ebe61b399cf1d1e49959cdfaf2cc0815c203f9","impliedFormat":1},{"version":"4f6a12044ee6f458db11964153830abbc499e73d065c51c329ec97407f4b13dd","impliedFormat":1},{"version":"6d727c1f6a7122c04e4f7c164c5e6f460c21ada618856894cdaa6ac25e95f38c","impliedFormat":1},{"version":"169cc96316cacf8b489aaab4ac6bcef7b33e8779a8902bce57c737b4aa372d16","impliedFormat":1},{"version":"8841e2aa774b89bd23302dede20663306dc1b9902431ac64b24be8b8d0e3f649","impliedFormat":1},{"version":"fc37aca06f6b8b296c42412a2e75ab53d30cd1fa8a340a3bb328a723fd678377","impliedFormat":1},{"version":"5f2c582b9ef260cb9559a64221b38606378c1fabe17694592cdfe5975a6d7efa","impliedFormat":1},{"version":"96ad607bbd1e969a523b303b7a07847215e714717dc8a767b1f6c31319f8d7ec","impliedFormat":1},{"version":"8baa5d0febc68db886c40bf341e5c90dc215a90cd64552e47e8184be6b7e3358","impliedFormat":1},{"version":"2c3b8be03577c98530ef9cb1a76e2c812636a871f367e9edf4c5f3ce702b77f8","affectsGlobalScope":true,"impliedFormat":1},{"version":"0f048a7e91a4c764f08be48e156c9d274a038cb454d312427214ab4d34a9a5ab","impliedFormat":1},{"version":"bc81aff061c53a7140270555f4b22da4ecfe8601e8027cf5aa175fbdc7927c31","impliedFormat":1}],"root":[85],"options":{"allowSyntheticDefaultImports":true,"declaration":true,"emitDeclarationOnly":false,"esModuleInterop":false,"experimentalDecorators":true,"importHelpers":true,"inlineSources":true,"module":99,"noEmitHelpers":true,"noEmitOnError":true,"outDir":"./","rootDir":"..","skipLibCheck":true,"sourceMap":true,"strict":true,"target":5,"useDefineForClassFields":false},"referencedMap":[[184,1],[182,2],[49,2],[60,2],[61,3],[64,4],[62,4],[66,4],[69,5],[68,4],[67,4],[65,4],[63,6],[50,2],[51,7],[74,8],[73,9],[72,10],[81,11],[78,12],[79,13],[77,2],[82,14],[80,2],[75,15],[76,16],[83,17],[84,18],[181,19],[187,20],[183,1],[185,21],[186,1],[189,22],[190,2],[191,2],[192,2],[193,2],[188,19],[194,2],[204,23],[205,2],[206,2],[207,24],[199,25],[202,26],[208,2],[200,2],[209,2],[203,2],[210,27],[212,28],[213,29],[214,30],[215,31],[211,32],[216,27],[218,33],[219,34],[217,35],[220,36],[221,37],[222,38],[223,39],[224,40],[225,41],[226,42],[227,43],[228,44],[229,45],[230,2],[231,2],[195,2],[232,2],[88,46],[89,46],[128,47],[87,48],[129,49],[130,50],[131,51],[132,52],[133,53],[134,54],[135,55],[136,56],[137,57],[138,57],[140,58],[139,59],[141,60],[142,61],[143,62],[127,63],[179,2],[86,2],[144,64],[145,65],[146,66],[180,67],[147,68],[148,69],[149,70],[150,71],[151,72],[152,73],[153,74],[154,75],[155,76],[156,77],[157,77],[158,78],[159,2],[160,2],[161,79],[163,80],[162,81],[164,82],[165,83],[166,84],[167,85],[168,86],[169,87],[170,88],[171,89],[172,90],[173,91],[174,92],[175,93],[176,94],[177,95],[178,96],[234,97],[233,98],[235,2],[197,2],[198,2],[236,2],[196,99],[201,100],[237,101],[53,2],[238,24],[239,102],[55,103],[52,104],[58,105],[56,2],[54,106],[70,107],[59,108],[57,109],[48,2],[46,2],[47,2],[8,2],[10,2],[9,2],[2,2],[11,2],[12,2],[13,2],[14,2],[15,2],[16,2],[17,2],[18,2],[3,2],[19,2],[20,2],[4,2],[21,2],[25,2],[22,2],[23,2],[24,2],[26,2],[27,2],[28,2],[5,2],[29,2],[30,2],[31,2],[32,2],[6,2],[36,2],[33,2],[34,2],[35,2],[37,2],[7,2],[38,2],[43,2],[44,2],[39,2],[40,2],[41,2],[42,2],[1,2],[45,2],[105,110],[115,111],[104,110],[125,112],[96,113],[95,114],[124,24],[118,115],[123,116],[98,117],[112,118],[97,119],[121,120],[93,121],[92,24],[122,122],[94,123],[99,124],[100,2],[103,124],[90,2],[126,125],[116,126],[107,127],[108,128],[110,129],[106,130],[109,131],[119,24],[101,132],[102,133],[111,134],[91,135],[114,126],[113,124],[117,2],[120,136],[71,2],[85,137]],"version":"5.8.3"}