@sigmacomputing/plugin 0.7.42 → 0.7.46
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 +13 -7
- package/src/client.ts +3 -0
- package/src/deepEqual.ts +42 -0
- package/src/index.ts +8 -0
- package/src/initialize.test.ts +28 -0
- package/src/initialize.ts +164 -0
- package/src/react/index.tsx +154 -0
- package/.eslintrc.js +0 -6
- package/jest.config.js +0 -4
- package/tsconfig.json +0 -13
- package/tsconfig.tsbuildinfo +0 -1
package/package.json
CHANGED
|
@@ -1,27 +1,33 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@sigmacomputing/plugin",
|
|
3
|
-
"version": "0.7.
|
|
3
|
+
"version": "0.7.46",
|
|
4
4
|
"description": "Plugin client api",
|
|
5
5
|
"module": "./src/index.ts",
|
|
6
6
|
"main": "./dist/index.js",
|
|
7
7
|
"types": "./dist/index.d.ts",
|
|
8
|
+
"files": [
|
|
9
|
+
"/dist",
|
|
10
|
+
"/src",
|
|
11
|
+
"!/src/**/__tests__/**"
|
|
12
|
+
],
|
|
8
13
|
"scripts": {
|
|
9
|
-
"clean": "rimraf dist tsconfig
|
|
10
|
-
"build": "yarn
|
|
11
|
-
"build:watch": "yarn
|
|
14
|
+
"clean": "rimraf dist tsconfig*.tsbuildinfo",
|
|
15
|
+
"build": "yarn clean && yarn tsc",
|
|
16
|
+
"build:watch": "yarn build --watch",
|
|
12
17
|
"format": "prettier --write 'src/**/*.ts' 'jest.config.js' '.eslintrc.js'",
|
|
13
18
|
"lint": "eslint --cache src jest.config.js .eslintrc.js",
|
|
14
19
|
"lint:clean": "rimraf .eslintcache",
|
|
15
20
|
"lint:fix": "yarn lint --fix",
|
|
21
|
+
"prepublish": "yarn build",
|
|
16
22
|
"test": "cd ../.. && jest --ci --selectProjects @sigmacomputing/plugin",
|
|
17
23
|
"test:watch": "yarn test --watch",
|
|
18
|
-
"
|
|
24
|
+
"tsc": "tsc --build tsconfig.build.json"
|
|
19
25
|
},
|
|
20
26
|
"dependencies": {
|
|
21
|
-
"@sigmacomputing/plugin-types": "^0.7.
|
|
27
|
+
"@sigmacomputing/plugin-types": "^0.7.46"
|
|
22
28
|
},
|
|
23
29
|
"peerDependencies": {
|
|
24
30
|
"react": "^16.8.0 || ^17.0.0 | ^18.0.0"
|
|
25
31
|
},
|
|
26
|
-
"gitHead": "
|
|
32
|
+
"gitHead": "c8725f7c064315802d07b792b25f71da525c2516"
|
|
27
33
|
}
|
package/src/client.ts
ADDED
package/src/deepEqual.ts
ADDED
|
@@ -0,0 +1,42 @@
|
|
|
1
|
+
// Deep Equality comparison example
|
|
2
|
+
//
|
|
3
|
+
// This is an example of how to implement an object-comparison function in
|
|
4
|
+
// JavaScript (ES5+). A few points of interest here:
|
|
5
|
+
//
|
|
6
|
+
// * You can get an array of all an object's properties in ES5+ by calling
|
|
7
|
+
// the class method Object.keys(obj).
|
|
8
|
+
// * The function recursively calls itself in the for / in loop when it
|
|
9
|
+
// compares the contents of each property
|
|
10
|
+
// * You can hide a "private" function inside a function of this kind by
|
|
11
|
+
// placing one function declaration inside of another. The inner function
|
|
12
|
+
// is not hoisted out into the global scope, so it is only visible inside
|
|
13
|
+
// of the parent function.
|
|
14
|
+
// * The reason this nested helper function is necessary is that
|
|
15
|
+
// `typeof null` is still "object" in JS, a major "gotcha" to watch out for.
|
|
16
|
+
//
|
|
17
|
+
// https://gist.github.com/egardner/efd34f270cc33db67c0246e837689cb9
|
|
18
|
+
|
|
19
|
+
export function deepEqual(obj1: any, obj2: any) {
|
|
20
|
+
if (obj1 === obj2) {
|
|
21
|
+
return true;
|
|
22
|
+
} else if (isObject(obj1) && isObject(obj2)) {
|
|
23
|
+
if (Object.keys(obj1).length !== Object.keys(obj2).length) {
|
|
24
|
+
return false;
|
|
25
|
+
}
|
|
26
|
+
for (const prop in obj1) {
|
|
27
|
+
if (!deepEqual(obj1[prop], obj2[prop])) {
|
|
28
|
+
return false;
|
|
29
|
+
}
|
|
30
|
+
}
|
|
31
|
+
return true;
|
|
32
|
+
}
|
|
33
|
+
|
|
34
|
+
// Private
|
|
35
|
+
function isObject(obj: any) {
|
|
36
|
+
if (typeof obj === 'object' && obj != null) {
|
|
37
|
+
return true;
|
|
38
|
+
} else {
|
|
39
|
+
return false;
|
|
40
|
+
}
|
|
41
|
+
}
|
|
42
|
+
}
|
package/src/index.ts
ADDED
|
@@ -0,0 +1,8 @@
|
|
|
1
|
+
export { initialize } from './initialize';
|
|
2
|
+
export { client } from './client';
|
|
3
|
+
/* Ideally we want this to be tree-shakeable.
|
|
4
|
+
* Node 12 added support for `exports` in package.json,
|
|
5
|
+
* however typescript does not yet support this.
|
|
6
|
+
* Tracked: https://github.com/microsoft/TypeScript/issues/33079
|
|
7
|
+
*/
|
|
8
|
+
export * from './react';
|
|
@@ -0,0 +1,28 @@
|
|
|
1
|
+
import { initialize } from './initialize';
|
|
2
|
+
|
|
3
|
+
describe('initialize', () => {
|
|
4
|
+
let originalAddEventListener: any;
|
|
5
|
+
let originalRemoveEventListener: any;
|
|
6
|
+
beforeAll(() => {
|
|
7
|
+
originalAddEventListener = window.addEventListener;
|
|
8
|
+
originalRemoveEventListener = window.removeEventListener;
|
|
9
|
+
window.addEventListener = jest.fn();
|
|
10
|
+
window.removeEventListener = jest.fn();
|
|
11
|
+
});
|
|
12
|
+
|
|
13
|
+
beforeEach(() => {
|
|
14
|
+
jest.resetAllMocks();
|
|
15
|
+
});
|
|
16
|
+
test('should initialize and be destroyable', () => {
|
|
17
|
+
const client = initialize();
|
|
18
|
+
expect(window.addEventListener).toHaveBeenCalled();
|
|
19
|
+
|
|
20
|
+
client.destroy();
|
|
21
|
+
expect(window.removeEventListener).toHaveBeenCalled();
|
|
22
|
+
});
|
|
23
|
+
|
|
24
|
+
afterAll(() => {
|
|
25
|
+
window.addEventListener = originalAddEventListener;
|
|
26
|
+
window.removeEventListener = originalRemoveEventListener;
|
|
27
|
+
});
|
|
28
|
+
});
|
|
@@ -0,0 +1,164 @@
|
|
|
1
|
+
import * as plugin from '@sigmacomputing/plugin-types';
|
|
2
|
+
|
|
3
|
+
export function initialize<T = {}>(): plugin.PluginInstance<T> {
|
|
4
|
+
const pluginConfig: Partial<plugin.PluginConfig<T>> = {
|
|
5
|
+
config: {} as T,
|
|
6
|
+
};
|
|
7
|
+
let subscribedInteractions: Record<string, unknown> = {};
|
|
8
|
+
let subscribedWorkbookVars: Record<string, plugin.WorkbookVariable> = {};
|
|
9
|
+
|
|
10
|
+
const listeners: {
|
|
11
|
+
[event: string]: Function[];
|
|
12
|
+
} = {};
|
|
13
|
+
|
|
14
|
+
for (const [key, value] of new URL(
|
|
15
|
+
document.location.toString(),
|
|
16
|
+
).searchParams.entries())
|
|
17
|
+
pluginConfig[key] = JSON.parse(value);
|
|
18
|
+
|
|
19
|
+
const listener = (e: plugin.PluginMessageResponse) => {
|
|
20
|
+
emit(e.data.type, e.data.result, e.data.error);
|
|
21
|
+
};
|
|
22
|
+
|
|
23
|
+
window.addEventListener('message', listener, false);
|
|
24
|
+
window.addEventListener('click', () => execPromise('wb:plugin:focus'));
|
|
25
|
+
|
|
26
|
+
on('wb:plugin:config:update', (config: plugin.PluginConfig<T>) => {
|
|
27
|
+
Object.assign(pluginConfig, config);
|
|
28
|
+
emit('config', pluginConfig.config ?? {});
|
|
29
|
+
});
|
|
30
|
+
|
|
31
|
+
// send initialize event
|
|
32
|
+
void execPromise('wb:plugin:init', require('../package.json').version).then(
|
|
33
|
+
config => {
|
|
34
|
+
Object.assign(pluginConfig, config);
|
|
35
|
+
emit('init', pluginConfig);
|
|
36
|
+
emit('config', pluginConfig.config);
|
|
37
|
+
},
|
|
38
|
+
);
|
|
39
|
+
|
|
40
|
+
on(
|
|
41
|
+
'wb:plugin:variable:update',
|
|
42
|
+
(updatedVariables: Record<string, plugin.WorkbookVariable>) => {
|
|
43
|
+
subscribedWorkbookVars = {};
|
|
44
|
+
Object.assign(subscribedWorkbookVars, updatedVariables);
|
|
45
|
+
},
|
|
46
|
+
);
|
|
47
|
+
|
|
48
|
+
on('wb:plugin:interaction:update', (updatedInteractions: unknown) => {
|
|
49
|
+
subscribedInteractions = {};
|
|
50
|
+
Object.assign(subscribedInteractions, updatedInteractions);
|
|
51
|
+
});
|
|
52
|
+
|
|
53
|
+
function on(event: string, listener: Function) {
|
|
54
|
+
listeners[event] = listeners[event] || [];
|
|
55
|
+
listeners[event].push(listener);
|
|
56
|
+
}
|
|
57
|
+
|
|
58
|
+
function off(event: string, listener: Function) {
|
|
59
|
+
if (listeners[event] == null) return;
|
|
60
|
+
listeners[event] = listeners[event].filter(a => a !== listener);
|
|
61
|
+
}
|
|
62
|
+
|
|
63
|
+
function emit(event: string, ...args: any) {
|
|
64
|
+
Object.values(listeners[event] || []).forEach(fn => fn(...args));
|
|
65
|
+
}
|
|
66
|
+
|
|
67
|
+
function execPromise<R>(event: string, ...args: any): Promise<R> {
|
|
68
|
+
return new Promise((resolve, reject) => {
|
|
69
|
+
const callback = (data: R, error: any) => {
|
|
70
|
+
if (error) reject(error);
|
|
71
|
+
else resolve(data);
|
|
72
|
+
off(event, callback);
|
|
73
|
+
};
|
|
74
|
+
on(event, callback);
|
|
75
|
+
window.parent.postMessage(
|
|
76
|
+
{ type: event, args, elementId: pluginConfig.id },
|
|
77
|
+
pluginConfig?.wbOrigin ?? '*',
|
|
78
|
+
);
|
|
79
|
+
});
|
|
80
|
+
}
|
|
81
|
+
|
|
82
|
+
return {
|
|
83
|
+
get sigmaEnv() {
|
|
84
|
+
return pluginConfig.sigmaEnv;
|
|
85
|
+
},
|
|
86
|
+
get isScreenshot() {
|
|
87
|
+
return pluginConfig.screenshot;
|
|
88
|
+
},
|
|
89
|
+
config: {
|
|
90
|
+
// @ts-ignore
|
|
91
|
+
getKey(key) {
|
|
92
|
+
return pluginConfig?.config?.[key]!;
|
|
93
|
+
},
|
|
94
|
+
get() {
|
|
95
|
+
return pluginConfig.config;
|
|
96
|
+
},
|
|
97
|
+
set(partialConfig) {
|
|
98
|
+
void execPromise('wb:plugin:config:update', partialConfig);
|
|
99
|
+
},
|
|
100
|
+
setKey(key, value) {
|
|
101
|
+
void execPromise('wb:plugin:config:update', {
|
|
102
|
+
[key]: value,
|
|
103
|
+
});
|
|
104
|
+
},
|
|
105
|
+
subscribe(listener) {
|
|
106
|
+
on('config', listener);
|
|
107
|
+
return () => off('config', listener);
|
|
108
|
+
},
|
|
109
|
+
getVariable(id: string): plugin.WorkbookVariable {
|
|
110
|
+
return subscribedWorkbookVars[id];
|
|
111
|
+
},
|
|
112
|
+
setVariable(id: string, ...values: unknown[]) {
|
|
113
|
+
void execPromise('wb:plugin:variable:set', id, ...values);
|
|
114
|
+
},
|
|
115
|
+
configureEditorPanel(options) {
|
|
116
|
+
void execPromise('wb:plugin:config:inspector', options);
|
|
117
|
+
},
|
|
118
|
+
setLoadingState(loadingState) {
|
|
119
|
+
void execPromise('wb:plugin:config:loading-state', loadingState);
|
|
120
|
+
},
|
|
121
|
+
subscribeToWorkbookVariable(
|
|
122
|
+
id: string,
|
|
123
|
+
callback: (input: plugin.WorkbookVariable) => void,
|
|
124
|
+
): plugin.Unsubscriber {
|
|
125
|
+
const setValues = (values: Record<string, plugin.WorkbookVariable>) => {
|
|
126
|
+
callback(values[id]);
|
|
127
|
+
};
|
|
128
|
+
on('wb:plugin:variable:update', setValues);
|
|
129
|
+
return () => {
|
|
130
|
+
off('wb:plugin:variable:update', setValues);
|
|
131
|
+
};
|
|
132
|
+
},
|
|
133
|
+
},
|
|
134
|
+
elements: {
|
|
135
|
+
getElementColumns(id) {
|
|
136
|
+
return execPromise('wb:plugin:element:columns:get', id);
|
|
137
|
+
},
|
|
138
|
+
subscribeToElementColumns(id, callback) {
|
|
139
|
+
const eventName = `wb:plugin:element:${id}:columns`;
|
|
140
|
+
on(eventName, callback);
|
|
141
|
+
void execPromise('wb:plugin:element:subscribe:columns', id);
|
|
142
|
+
|
|
143
|
+
return () => {
|
|
144
|
+
off(eventName, callback);
|
|
145
|
+
void execPromise('wb:plugin:element:unsubscribe:columns', id);
|
|
146
|
+
};
|
|
147
|
+
},
|
|
148
|
+
subscribeToElementData(id, callback) {
|
|
149
|
+
const eventName = `wb:plugin:element:${id}:data`;
|
|
150
|
+
on(eventName, callback);
|
|
151
|
+
void execPromise('wb:plugin:element:subscribe:data', id);
|
|
152
|
+
|
|
153
|
+
return () => {
|
|
154
|
+
off(eventName, callback);
|
|
155
|
+
void execPromise('wb:plugin:element:unsubscribe:data', id);
|
|
156
|
+
};
|
|
157
|
+
},
|
|
158
|
+
},
|
|
159
|
+
destroy: function () {
|
|
160
|
+
Object.keys(listeners).forEach(event => delete listeners[event]);
|
|
161
|
+
window.removeEventListener('message', listener, false);
|
|
162
|
+
},
|
|
163
|
+
};
|
|
164
|
+
}
|
|
@@ -0,0 +1,154 @@
|
|
|
1
|
+
import React, {
|
|
2
|
+
Context,
|
|
3
|
+
createContext,
|
|
4
|
+
useContext,
|
|
5
|
+
useEffect,
|
|
6
|
+
useRef,
|
|
7
|
+
useState,
|
|
8
|
+
} from 'react';
|
|
9
|
+
import * as plugin from '@sigmacomputing/plugin-types';
|
|
10
|
+
|
|
11
|
+
import { deepEqual } from '../deepEqual';
|
|
12
|
+
import { client } from '../client';
|
|
13
|
+
|
|
14
|
+
const Context = createContext<plugin.PluginInstance<any>>(client);
|
|
15
|
+
|
|
16
|
+
/**
|
|
17
|
+
* Wrapper for plugin client using a Provider
|
|
18
|
+
* @param {{client: plugin.PluginInstance, children: React.ReachChildren}} props Plugin instance and any children elements
|
|
19
|
+
* @returns {JSXElement} Context Provider for passed in props
|
|
20
|
+
*/
|
|
21
|
+
export function SigmaClientProvider(props: {
|
|
22
|
+
client: plugin.PluginInstance<any>;
|
|
23
|
+
children?: React.ReactChildren;
|
|
24
|
+
}) {
|
|
25
|
+
return (
|
|
26
|
+
<Context.Provider value={props.client}>{props.children}</Context.Provider>
|
|
27
|
+
);
|
|
28
|
+
}
|
|
29
|
+
|
|
30
|
+
/**
|
|
31
|
+
* A constantly updating getter for the entire Plugin Instance
|
|
32
|
+
* @returns {plugin.PluginInstance} Context for the current plugin instance
|
|
33
|
+
*/
|
|
34
|
+
export function usePlugin(): plugin.PluginInstance<any> {
|
|
35
|
+
return useContext(Context);
|
|
36
|
+
}
|
|
37
|
+
|
|
38
|
+
/**
|
|
39
|
+
* Provides a setter for the Plugin's Config Options
|
|
40
|
+
* @param {plugin.CustomPluginConfigOptions[]} nextOptions Updated possible Config Options
|
|
41
|
+
*/
|
|
42
|
+
export function useEditorPanelConfig(
|
|
43
|
+
nextOptions: plugin.CustomPluginConfigOptions[],
|
|
44
|
+
): void {
|
|
45
|
+
const client = usePlugin();
|
|
46
|
+
const optionsRef = useRef({});
|
|
47
|
+
useEffect(() => {
|
|
48
|
+
if (nextOptions == null) return;
|
|
49
|
+
if (!deepEqual(nextOptions, optionsRef.current)) {
|
|
50
|
+
client.config.configureEditorPanel(nextOptions);
|
|
51
|
+
optionsRef.current = nextOptions;
|
|
52
|
+
}
|
|
53
|
+
}, [client, nextOptions]);
|
|
54
|
+
}
|
|
55
|
+
|
|
56
|
+
/**
|
|
57
|
+
* React hook for Plugin Config loading state
|
|
58
|
+
* @param {boolean} initialState Initial value to set loading state to
|
|
59
|
+
* @returns {[boolean, Function]} Boolean value corresponding to loading state for plugin config and setter for loading state
|
|
60
|
+
*/
|
|
61
|
+
export function useLoadingState(
|
|
62
|
+
initialState: boolean,
|
|
63
|
+
): [boolean, (nextState: boolean) => void] {
|
|
64
|
+
const client = usePlugin();
|
|
65
|
+
const [loading, setLoading] = useState(() => {
|
|
66
|
+
client.config.setLoadingState(initialState);
|
|
67
|
+
return initialState;
|
|
68
|
+
});
|
|
69
|
+
return [
|
|
70
|
+
loading,
|
|
71
|
+
nextState => {
|
|
72
|
+
if (nextState === loading) return;
|
|
73
|
+
setLoading(nextState);
|
|
74
|
+
client.config.setLoadingState(nextState);
|
|
75
|
+
},
|
|
76
|
+
];
|
|
77
|
+
}
|
|
78
|
+
|
|
79
|
+
/**
|
|
80
|
+
* Provides constantly updating column values from corresponding sheet
|
|
81
|
+
* @param {string} id Sheet ID to retrieve from workbook
|
|
82
|
+
* @returns {plugin.WbElementColumns} Values of corresponding columns contained within the sheet
|
|
83
|
+
*/
|
|
84
|
+
export function useElementColumns(id: string): plugin.WbElementColumns {
|
|
85
|
+
const client = usePlugin();
|
|
86
|
+
const [columns, setColumns] = useState<plugin.WbElementColumns>({});
|
|
87
|
+
useEffect(() => {
|
|
88
|
+
if (id) {
|
|
89
|
+
return client.elements.subscribeToElementColumns(id, setColumns);
|
|
90
|
+
}
|
|
91
|
+
}, [client, id]);
|
|
92
|
+
return columns;
|
|
93
|
+
}
|
|
94
|
+
|
|
95
|
+
/**
|
|
96
|
+
* Provides constantly updating data values from corresponding sheet
|
|
97
|
+
* @param {string} id Sheet ID to get element data from
|
|
98
|
+
* @returns {plugin.WbElementData} Element Data for corresponding sheet, if any
|
|
99
|
+
*/
|
|
100
|
+
export function useElementData(id: string): plugin.WbElementData {
|
|
101
|
+
const client = usePlugin();
|
|
102
|
+
const [data, setData] = useState<plugin.WbElementData>({});
|
|
103
|
+
useEffect(() => {
|
|
104
|
+
if (id) return client.elements.subscribeToElementData(id, setData);
|
|
105
|
+
}, [client, id]);
|
|
106
|
+
return data;
|
|
107
|
+
}
|
|
108
|
+
|
|
109
|
+
/**
|
|
110
|
+
* Provides a constantly updating value for entire config or certain key within config
|
|
111
|
+
* @param {string} key Key within Plugin Config, optional
|
|
112
|
+
* @returns Entire config if no key passed in or value for key within plugin config
|
|
113
|
+
*/
|
|
114
|
+
export function useConfig(key?: string): any {
|
|
115
|
+
const client = usePlugin();
|
|
116
|
+
const [config, setConfig] = useState<any>(
|
|
117
|
+
key != null ? client.config.getKey(key) : client.config.get(),
|
|
118
|
+
);
|
|
119
|
+
useEffect(
|
|
120
|
+
() =>
|
|
121
|
+
client.config.subscribe(newConfig => {
|
|
122
|
+
if (key != null && newConfig[key] !== config[key]) {
|
|
123
|
+
setConfig(newConfig[key]);
|
|
124
|
+
} else {
|
|
125
|
+
setConfig(newConfig);
|
|
126
|
+
}
|
|
127
|
+
}),
|
|
128
|
+
[client],
|
|
129
|
+
);
|
|
130
|
+
return config;
|
|
131
|
+
}
|
|
132
|
+
|
|
133
|
+
/**
|
|
134
|
+
* React hook for accessing a workbook variable
|
|
135
|
+
* @param {string} id ID of variable within Plugin Config to use
|
|
136
|
+
* @returns {[(plugin.WorkbookVariable | undefined), Function]} Constantly updating value of the variable and setter for the variable
|
|
137
|
+
*/
|
|
138
|
+
export function useVariable(
|
|
139
|
+
id: string,
|
|
140
|
+
): [plugin.WorkbookVariable | undefined, Function] {
|
|
141
|
+
const client = usePlugin();
|
|
142
|
+
const [workbookVariable, setWorkbookVariable] =
|
|
143
|
+
useState<plugin.WorkbookVariable>();
|
|
144
|
+
useEffect(() => {
|
|
145
|
+
return client.config.subscribeToWorkbookVariable(id, setWorkbookVariable);
|
|
146
|
+
}, [client, id]);
|
|
147
|
+
return [
|
|
148
|
+
workbookVariable,
|
|
149
|
+
React.useCallback(
|
|
150
|
+
(...values: unknown[]) => client.config.setVariable(id, ...values),
|
|
151
|
+
[id],
|
|
152
|
+
),
|
|
153
|
+
];
|
|
154
|
+
}
|
package/.eslintrc.js
DELETED
package/jest.config.js
DELETED
package/tsconfig.json
DELETED
|
@@ -1,13 +0,0 @@
|
|
|
1
|
-
{
|
|
2
|
-
"extends": "../../tsconfig.base",
|
|
3
|
-
"compilerOptions": {
|
|
4
|
-
"outDir": "./dist",
|
|
5
|
-
"rootDir": "./src",
|
|
6
|
-
|
|
7
|
-
"jsx": "react-jsx",
|
|
8
|
-
|
|
9
|
-
"composite": true
|
|
10
|
-
},
|
|
11
|
-
"include": ["src", "jest.config.js", ".eslintrc.js"],
|
|
12
|
-
"references": [{ "path": "../plugin-types" }]
|
|
13
|
-
}
|
package/tsconfig.tsbuildinfo
DELETED
|
@@ -1 +0,0 @@
|
|
|
1
|
-
{"program":{"fileNames":["../../node_modules/typescript/lib/lib.es5.d.ts","../../node_modules/typescript/lib/lib.es2015.d.ts","../../node_modules/typescript/lib/lib.es2016.d.ts","../../node_modules/typescript/lib/lib.es2017.d.ts","../../node_modules/typescript/lib/lib.es2018.d.ts","../../node_modules/typescript/lib/lib.es2019.d.ts","../../node_modules/typescript/lib/lib.es2020.d.ts","../../node_modules/typescript/lib/lib.es2021.d.ts","../../node_modules/typescript/lib/lib.es2022.d.ts","../../node_modules/typescript/lib/lib.esnext.d.ts","../../node_modules/typescript/lib/lib.dom.d.ts","../../node_modules/typescript/lib/lib.es2015.core.d.ts","../../node_modules/typescript/lib/lib.es2015.collection.d.ts","../../node_modules/typescript/lib/lib.es2015.generator.d.ts","../../node_modules/typescript/lib/lib.es2015.iterable.d.ts","../../node_modules/typescript/lib/lib.es2015.promise.d.ts","../../node_modules/typescript/lib/lib.es2015.proxy.d.ts","../../node_modules/typescript/lib/lib.es2015.reflect.d.ts","../../node_modules/typescript/lib/lib.es2015.symbol.d.ts","../../node_modules/typescript/lib/lib.es2015.symbol.wellknown.d.ts","../../node_modules/typescript/lib/lib.es2016.array.include.d.ts","../../node_modules/typescript/lib/lib.es2017.object.d.ts","../../node_modules/typescript/lib/lib.es2017.sharedmemory.d.ts","../../node_modules/typescript/lib/lib.es2017.string.d.ts","../../node_modules/typescript/lib/lib.es2017.intl.d.ts","../../node_modules/typescript/lib/lib.es2017.typedarrays.d.ts","../../node_modules/typescript/lib/lib.es2018.asyncgenerator.d.ts","../../node_modules/typescript/lib/lib.es2018.asynciterable.d.ts","../../node_modules/typescript/lib/lib.es2018.intl.d.ts","../../node_modules/typescript/lib/lib.es2018.promise.d.ts","../../node_modules/typescript/lib/lib.es2018.regexp.d.ts","../../node_modules/typescript/lib/lib.es2019.array.d.ts","../../node_modules/typescript/lib/lib.es2019.object.d.ts","../../node_modules/typescript/lib/lib.es2019.string.d.ts","../../node_modules/typescript/lib/lib.es2019.symbol.d.ts","../../node_modules/typescript/lib/lib.es2020.bigint.d.ts","../../node_modules/typescript/lib/lib.es2020.date.d.ts","../../node_modules/typescript/lib/lib.es2020.promise.d.ts","../../node_modules/typescript/lib/lib.es2020.sharedmemory.d.ts","../../node_modules/typescript/lib/lib.es2020.string.d.ts","../../node_modules/typescript/lib/lib.es2020.symbol.wellknown.d.ts","../../node_modules/typescript/lib/lib.es2020.intl.d.ts","../../node_modules/typescript/lib/lib.es2020.number.d.ts","../../node_modules/typescript/lib/lib.es2021.promise.d.ts","../../node_modules/typescript/lib/lib.es2021.string.d.ts","../../node_modules/typescript/lib/lib.es2021.weakref.d.ts","../../node_modules/typescript/lib/lib.es2021.intl.d.ts","../../node_modules/typescript/lib/lib.es2022.array.d.ts","../../node_modules/typescript/lib/lib.es2022.error.d.ts","../../node_modules/typescript/lib/lib.es2022.intl.d.ts","../../node_modules/typescript/lib/lib.es2022.object.d.ts","../../node_modules/typescript/lib/lib.es2022.string.d.ts","../../node_modules/typescript/lib/lib.esnext.intl.d.ts","../../node_modules/@types/react/global.d.ts","../../node_modules/@types/react/node_modules/csstype/index.d.ts","../../node_modules/@types/prop-types/index.d.ts","../../node_modules/@types/scheduler/tracing.d.ts","../../node_modules/@types/react/index.d.ts","../../node_modules/@types/react/jsx-runtime.d.ts","../plugin-types/dist/index.d.ts","./src/initialize.ts","./src/client.ts","./src/deepequal.ts","./src/react/index.tsx","./src/index.ts","./src/initialize.test.ts","../../node_modules/@types/aria-query/index.d.ts","../../node_modules/@types/asap/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/node/assert.d.ts","../../node_modules/@types/node/assert/strict.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/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/repl.d.ts","../../node_modules/@types/node/stream.d.ts","../../node_modules/@types/node/stream/promises.d.ts","../../node_modules/@types/node/stream/consumers.d.ts","../../node_modules/@types/node/stream/web.d.ts","../../node_modules/@types/node/string_decoder.d.ts","../../node_modules/@types/node/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/buffer/index.d.ts","../../node_modules/@types/base-x/index.d.ts","../../node_modules/@types/color-name/index.d.ts","../../node_modules/@types/color-convert/conversions.d.ts","../../node_modules/@types/color-convert/route.d.ts","../../node_modules/@types/color-convert/index.d.ts","../../node_modules/@types/color/index.d.ts","../../node_modules/@types/css-font-loading-module/index.d.ts","../../node_modules/@types/d3-array/index.d.ts","../../node_modules/@types/d3-selection/index.d.ts","../../node_modules/@types/d3-axis/index.d.ts","../../node_modules/@types/d3-brush/index.d.ts","../../node_modules/@types/d3-chord/index.d.ts","../../node_modules/@types/d3-color/index.d.ts","../../node_modules/@types/geojson/index.d.ts","../../node_modules/@types/d3-contour/index.d.ts","../../node_modules/@types/d3-delaunay/index.d.ts","../../node_modules/@types/d3-dispatch/index.d.ts","../../node_modules/@types/d3-drag/index.d.ts","../../node_modules/@types/d3-dsv/index.d.ts","../../node_modules/@types/d3-ease/index.d.ts","../../node_modules/@types/d3-fetch/index.d.ts","../../node_modules/@types/d3-force/index.d.ts","../../node_modules/@types/d3-format/index.d.ts","../../node_modules/@types/d3-geo/index.d.ts","../../node_modules/@types/d3-hierarchy/index.d.ts","../../node_modules/@types/d3-interpolate/index.d.ts","../../node_modules/@types/d3-path/index.d.ts","../../node_modules/@types/d3-polygon/index.d.ts","../../node_modules/@types/d3-quadtree/index.d.ts","../../node_modules/@types/d3-random/index.d.ts","../../node_modules/@types/d3-time/index.d.ts","../../node_modules/@types/d3-scale/index.d.ts","../../node_modules/@types/d3-scale-chromatic/index.d.ts","../../node_modules/@types/d3-shape/index.d.ts","../../node_modules/@types/d3-time-format/index.d.ts","../../node_modules/@types/d3-timer/index.d.ts","../../node_modules/@types/d3-transition/index.d.ts","../../node_modules/@types/d3-zoom/index.d.ts","../../node_modules/@types/d3/index.d.ts","../../node_modules/@types/dayzed/index.d.ts","../../node_modules/@types/diff/index.d.ts","../../node_modules/@types/dogapi/index.d.ts","../../node_modules/@types/downloadjs/index.d.ts","../../node_modules/@types/estree/index.d.ts","../../node_modules/@types/facepaint/index.d.ts","../../node_modules/@types/faker/index.d.ts","../../node_modules/@types/flatbuffers/index.d.ts","../../node_modules/@types/fs-extra/index.d.ts","../../node_modules/@types/fuzzaldrin-plus/index.d.ts","../../node_modules/@types/gl-matrix/index.d.ts","../../node_modules/@types/minimatch/index.d.ts","../../node_modules/@types/glob/index.d.ts","../../node_modules/@types/graceful-fs/index.d.ts","../../node_modules/@types/unist/index.d.ts","../../node_modules/@types/hast/index.d.ts","../../node_modules/@types/history/domutils.d.ts","../../node_modules/@types/history/createbrowserhistory.d.ts","../../node_modules/@types/history/createhashhistory.d.ts","../../node_modules/@types/history/creatememoryhistory.d.ts","../../node_modules/@types/history/locationutils.d.ts","../../node_modules/@types/history/pathutils.d.ts","../../node_modules/@types/history/index.d.ts","../../node_modules/@types/hoist-non-react-statics/index.d.ts","../../node_modules/@types/html-minifier-terser/index.d.ts","../../node_modules/@types/http-proxy/index.d.ts","../../node_modules/@types/invariant/index.d.ts","../../node_modules/@types/is-function/index.d.ts","../../node_modules/@types/istanbul-lib-coverage/index.d.ts","../../node_modules/@types/istanbul-lib-report/index.d.ts","../../node_modules/@types/istanbul-reports/index.d.ts","../../node_modules/chalk/index.d.ts","../../node_modules/jest-diff/build/cleanupsemantic.d.ts","../../node_modules/pretty-format/build/types.d.ts","../../node_modules/pretty-format/build/index.d.ts","../../node_modules/jest-diff/build/types.d.ts","../../node_modules/jest-diff/build/difflines.d.ts","../../node_modules/jest-diff/build/printdiffs.d.ts","../../node_modules/jest-diff/build/index.d.ts","../../node_modules/jest-matcher-utils/build/index.d.ts","../../node_modules/@types/jest/index.d.ts","../../node_modules/@types/js-cookie/index.d.ts","../../node_modules/@types/js-yaml/index.d.ts","../../node_modules/ast-types/types.d.ts","../../node_modules/ast-types/gen/namedtypes.d.ts","../../node_modules/ast-types/gen/kinds.d.ts","../../node_modules/ast-types/gen/builders.d.ts","../../node_modules/ast-types/lib/types.d.ts","../../node_modules/ast-types/lib/path.d.ts","../../node_modules/ast-types/lib/scope.d.ts","../../node_modules/ast-types/lib/node-path.d.ts","../../node_modules/ast-types/lib/path-visitor.d.ts","../../node_modules/ast-types/gen/visitor.d.ts","../../node_modules/ast-types/main.d.ts","../../node_modules/recast/lib/options.d.ts","../../node_modules/recast/lib/parser.d.ts","../../node_modules/recast/lib/printer.d.ts","../../node_modules/recast/main.d.ts","../../node_modules/@types/jscodeshift/src/collections/jsxelement.d.ts","../../node_modules/@types/jscodeshift/src/collections/node.d.ts","../../node_modules/@types/jscodeshift/src/collections/variabledeclarator.d.ts","../../node_modules/@types/jscodeshift/src/collection.d.ts","../../node_modules/@types/jscodeshift/src/template.d.ts","../../node_modules/@types/jscodeshift/src/core.d.ts","../../node_modules/@types/jscodeshift/index.d.ts","../../node_modules/@types/json-schema/index.d.ts","../../node_modules/@types/json-stable-stringify/index.d.ts","../../node_modules/@types/json5/index.d.ts","../../node_modules/@types/jsonwebtoken/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/mapbox-gl/index.d.ts","../../node_modules/@types/mdast/index.d.ts","../../node_modules/@types/minimist/index.d.ts","../../node_modules/moment/ts3.1-typings/moment.d.ts","../../node_modules/@types/moment-timezone/moment-timezone.d.ts","../../node_modules/@types/moment-timezone/index.d.ts","../../node_modules/form-data/index.d.ts","../../node_modules/@types/node-fetch/externals.d.ts","../../node_modules/@types/node-fetch/index.d.ts","../../node_modules/@types/normalize-package-data/index.d.ts","../../node_modules/@types/npmlog/index.d.ts","../../node_modules/@types/orderedmap/index.d.ts","../../node_modules/@types/overlayscrollbars/index.d.ts","../../node_modules/@types/parse-json/index.d.ts","../../node_modules/@types/parse5/index.d.ts","../../node_modules/@types/prettier/index.d.ts","../../node_modules/@types/pretty-hrtime/index.d.ts","../../node_modules/@types/prosemirror-model/index.d.ts","../../node_modules/@types/prosemirror-transform/index.d.ts","../../node_modules/@types/prosemirror-view/index.d.ts","../../node_modules/@types/prosemirror-state/index.d.ts","../../node_modules/@types/prosemirror-commands/index.d.ts","../../node_modules/@types/prosemirror-history/index.d.ts","../../node_modules/@types/prosemirror-keymap/index.d.ts","../../node_modules/@types/q/index.d.ts","../../node_modules/@types/qs/index.d.ts","../../node_modules/@types/react-dom/node_modules/@types/react/global.d.ts","../../node_modules/@types/react-dom/node_modules/csstype/index.d.ts","../../node_modules/@types/react-dom/node_modules/@types/react/index.d.ts","../../node_modules/@types/react-dom/index.d.ts","../../node_modules/@types/react-highlight-words/index.d.ts","../../node_modules/@types/react-image-crop/index.d.ts","../../node_modules/@math.gl/web-mercator/src/fit-bounds.d.ts","../../node_modules/@math.gl/web-mercator/src/web-mercator-viewport.d.ts","../../node_modules/@math.gl/web-mercator/src/get-bounds.d.ts","../../node_modules/@math.gl/web-mercator/src/normalize-viewport-props.d.ts","../../node_modules/@math.gl/web-mercator/src/fly-to-viewport.d.ts","../../node_modules/@math.gl/web-mercator/src/web-mercator-utils.d.ts","../../node_modules/@math.gl/web-mercator/src/index.d.ts","../../node_modules/viewport-mercator-project/index.d.ts","../../node_modules/@types/react-map-gl/index.d.ts","../../node_modules/@types/react-measure/index.d.ts","../../node_modules/redux/index.d.ts","../../node_modules/@types/react-redux/index.d.ts","../../node_modules/@types/react-syntax-highlighter/index.d.ts","../../node_modules/@types/react-table/index.d.ts","../../node_modules/@types/react-textarea-autosize/index.d.ts","../../node_modules/@types/react-window/index.d.ts","../../node_modules/@types/react-window-infinite-loader/index.d.ts","../../node_modules/@types/scheduler/index.d.ts","../../node_modules/@types/semver-compare/index.d.ts","../../node_modules/@types/shallowequal/index.d.ts","../../node_modules/@types/sinonjs__fake-timers/index.d.ts","../../node_modules/@types/sizzle/index.d.ts","../../node_modules/@types/source-list-map/index.d.ts","../../node_modules/@types/speakingurl/index.d.ts","../../node_modules/@types/stack-utils/index.d.ts","../../node_modules/@types/store/index.d.ts","../../node_modules/csstype/index.d.ts","../../node_modules/@types/styled-system/index.d.ts","../../node_modules/@types/svgo/index.d.ts","../../node_modules/@types/tapable/index.d.ts","../../node_modules/@types/testing-library__jest-dom/index.d.ts","../../node_modules/@types/text-encoding-utf-8/index.d.ts","../../node_modules/source-map/source-map.d.ts","../../node_modules/@types/uglify-js/index.d.ts","../../node_modules/@types/uuid/interfaces.d.ts","../../node_modules/@types/uuid/index.d.ts","../../node_modules/gl-matrix/index.d.ts","../../node_modules/@types/viewport-mercator-project/index.d.ts","../../node_modules/anymatch/index.d.ts","../../node_modules/@types/webpack-sources/node_modules/source-map/source-map.d.ts","../../node_modules/@types/webpack-sources/lib/source.d.ts","../../node_modules/@types/webpack-sources/lib/compatsource.d.ts","../../node_modules/@types/webpack-sources/lib/concatsource.d.ts","../../node_modules/@types/webpack-sources/lib/originalsource.d.ts","../../node_modules/@types/webpack-sources/lib/prefixsource.d.ts","../../node_modules/@types/webpack-sources/lib/rawsource.d.ts","../../node_modules/@types/webpack-sources/lib/replacesource.d.ts","../../node_modules/@types/webpack-sources/lib/sizeonlysource.d.ts","../../node_modules/@types/webpack-sources/lib/sourcemapsource.d.ts","../../node_modules/@types/webpack-sources/lib/index.d.ts","../../node_modules/@types/webpack-sources/lib/cachedsource.d.ts","../../node_modules/@types/webpack-sources/index.d.ts","../../node_modules/@types/webpack/index.d.ts","../../node_modules/@types/webpack-env/index.d.ts","../../node_modules/@types/ws/index.d.ts","../../node_modules/@types/yargs-parser/index.d.ts","../../node_modules/@types/yargs/index.d.ts","../../node_modules/@types/yauzl/index.d.ts"],"fileInfos":[{"version":"f5c28122bee592cfaf5c72ed7bcc47f453b79778ffa6e301f45d21a0970719d4","affectsGlobalScope":true},"dc47c4fa66b9b9890cf076304de2a9c5201e94b740cffdf09f87296d877d71f6","7a387c58583dfca701b6c85e0adaf43fb17d590fb16d5b2dc0a2fbd89f35c467","8a12173c586e95f4433e0c6dc446bc88346be73ffe9ca6eec7aa63c8f3dca7f9","5f4e733ced4e129482ae2186aae29fde948ab7182844c3a5a51dd346182c7b06","e6b724280c694a9f588847f754198fb96c43d805f065c3a5b28bbc9594541c84","1fc5ab7a764205c68fa10d381b08417795fc73111d6dd16b5b1ed36badb743d9","746d62152361558ea6d6115cf0da4dd10ede041d14882ede3568bce5dc4b4f1f","3eb679a56cab01203a1ba7edeade937f6a2a4c718513b2cd930b579807fa9359","aea179452def8a6152f98f63b191b84e7cbd69b0e248c91e61fb2e52328abe8c",{"version":"3f149f903dd20dfeb7c80e228b659f0e436532de772469980dbd00702cc05cc1","affectsGlobalScope":true},{"version":"adb996790133eb33b33aadb9c09f15c2c575e71fb57a62de8bf74dbf59ec7dfb","affectsGlobalScope":true},{"version":"43fb1d932e4966a39a41b464a12a81899d9ae5f2c829063f5571b6b87e6d2f9c","affectsGlobalScope":true},{"version":"cdccba9a388c2ee3fd6ad4018c640a471a6c060e96f1232062223063b0a5ac6a","affectsGlobalScope":true},{"version":"c5c05907c02476e4bde6b7e76a79ffcd948aedd14b6a8f56e4674221b0417398","affectsGlobalScope":true},{"version":"0d5f52b3174bee6edb81260ebcd792692c32c81fd55499d69531496f3f2b25e7","affectsGlobalScope":true},{"version":"810627a82ac06fb5166da5ada4159c4ec11978dfbb0805fe804c86406dab8357","affectsGlobalScope":true},{"version":"181f1784c6c10b751631b24ce60c7f78b20665db4550b335be179217bacc0d5f","affectsGlobalScope":true},{"version":"3013574108c36fd3aaca79764002b3717da09725a36a6fc02eac386593110f93","affectsGlobalScope":true},{"version":"75ec0bdd727d887f1b79ed6619412ea72ba3c81d92d0787ccb64bab18d261f14","affectsGlobalScope":true},{"version":"3be5a1453daa63e031d266bf342f3943603873d890ab8b9ada95e22389389006","affectsGlobalScope":true},{"version":"17bb1fc99591b00515502d264fa55dc8370c45c5298f4a5c2083557dccba5a2a","affectsGlobalScope":true},{"version":"7ce9f0bde3307ca1f944119f6365f2d776d281a393b576a18a2f2893a2d75c98","affectsGlobalScope":true},{"version":"6a6b173e739a6a99629a8594bfb294cc7329bfb7b227f12e1f7c11bc163b8577","affectsGlobalScope":true},{"version":"12a310447c5d23c7d0d5ca2af606e3bd08afda69100166730ab92c62999ebb9d","affectsGlobalScope":true},{"version":"b0124885ef82641903d232172577f2ceb5d3e60aed4da1153bab4221e1f6dd4e","affectsGlobalScope":true},{"version":"0eb85d6c590b0d577919a79e0084fa1744c1beba6fd0d4e951432fa1ede5510a","affectsGlobalScope":true},{"version":"da233fc1c8a377ba9e0bed690a73c290d843c2c3d23a7bd7ec5cd3d7d73ba1e0","affectsGlobalScope":true},{"version":"d154ea5bb7f7f9001ed9153e876b2d5b8f5c2bb9ec02b3ae0d239ec769f1f2ae","affectsGlobalScope":true},{"version":"bb2d3fb05a1d2ffbca947cc7cbc95d23e1d053d6595391bd325deb265a18d36c","affectsGlobalScope":true},{"version":"c80df75850fea5caa2afe43b9949338ce4e2de086f91713e9af1a06f973872b8","affectsGlobalScope":true},{"version":"9d57b2b5d15838ed094aa9ff1299eecef40b190722eb619bac4616657a05f951","affectsGlobalScope":true},{"version":"6c51b5dd26a2c31dbf37f00cfc32b2aa6a92e19c995aefb5b97a3a64f1ac99de","affectsGlobalScope":true},{"version":"6e7997ef61de3132e4d4b2250e75343f487903ddf5370e7ce33cf1b9db9a63ed","affectsGlobalScope":true},{"version":"2ad234885a4240522efccd77de6c7d99eecf9b4de0914adb9a35c0c22433f993","affectsGlobalScope":true},{"version":"09aa50414b80c023553090e2f53827f007a301bc34b0495bfb2c3c08ab9ad1eb","affectsGlobalScope":true},{"version":"d7f680a43f8cd12a6b6122c07c54ba40952b0c8aa140dcfcf32eb9e6cb028596","affectsGlobalScope":true},{"version":"3787b83e297de7c315d55d4a7c546ae28e5f6c0a361b7a1dcec1f1f50a54ef11","affectsGlobalScope":true},{"version":"e7e8e1d368290e9295ef18ca23f405cf40d5456fa9f20db6373a61ca45f75f40","affectsGlobalScope":true},{"version":"faf0221ae0465363c842ce6aa8a0cbda5d9296940a8e26c86e04cc4081eea21e","affectsGlobalScope":true},{"version":"06393d13ea207a1bfe08ec8d7be562549c5e2da8983f2ee074e00002629d1871","affectsGlobalScope":true},{"version":"cd483c056da900716879771893a3c9772b66c3c88f8943b4205aec738a94b1d0","affectsGlobalScope":true},{"version":"b248e32ca52e8f5571390a4142558ae4f203ae2f94d5bac38a3084d529ef4e58","affectsGlobalScope":true},{"version":"6c55633c733c8378db65ac3da7a767c3cf2cf3057f0565a9124a16a3a2019e87","affectsGlobalScope":true},{"version":"fb4416144c1bf0323ccbc9afb0ab289c07312214e8820ad17d709498c865a3fe","affectsGlobalScope":true},{"version":"5b0ca94ec819d68d33da516306c15297acec88efeb0ae9e2b39f71dbd9685ef7","affectsGlobalScope":true},{"version":"ff667ee99e5a28c3dc5063a3cfd4d3436699e3fb035d4451037da7f567da542a","affectsGlobalScope":true},{"version":"34478567f8a80171f88f2f30808beb7da15eac0538ae91282dd33dce928d98ed","affectsGlobalScope":true},{"version":"6ea9ab679ea030cf46c16a711a316078e9e02619ebaf07a7fcd16964aba88f2d","affectsGlobalScope":true},{"version":"6bda95ea27a59a276e46043b7065b55bd4b316c25e70e29b572958fa77565d43","affectsGlobalScope":true},{"version":"aedb8de1abb2ff1095c153854a6df7deae4a5709c37297f9d6e9948b6806fa66","affectsGlobalScope":true},{"version":"11ffe3c281f375fff9ffdde8bbec7669b4dd671905509079f866f2354a788064","affectsGlobalScope":true},{"version":"c37f8a49593a0030eecb51bbfa270e709bec9d79a6cc3bb851ef348d4e6b26f8","affectsGlobalScope":true},{"version":"bbdf156fea2fabed31a569445835aeedcc33643d404fcbaa54541f06c109df3f","affectsGlobalScope":true},"381899b8d1d4c1be716f18cb5242ba39f66f4b1e31d45af62a32a99f8edcb39d","a7e32dcb90bf0c1b7a1e4ac89b0f7747cbcba25e7beddc1ebf17be1e161842ad","f5a8b384f182b3851cec3596ccc96cb7464f8d3469f48c74bf2befb782a19de5",{"version":"0bcebfaf66be25c793d0281a8dce761bc078d203f02c573e6ee3b844a5ad7fbc","affectsGlobalScope":true},"af7fd2870746deed40e130fc0a3966de74e8f52a97ec114d0fbb35876ab05ca9","57d2c8386d2da44f1ca5854e6b18bfbebcdd06c7837c08f2b59f3fb59d6a9868",{"version":"b832ebe2d7626a930136e01f058a0f39e01b66803f9b427e74e30f9170ecf2a3","signature":"f80cff5ae1d5bd8c90d38a738c99e8e74d915d4e945593c52c135c862e52267f"},{"version":"38db37b76f09e903da0772c849e8ea88002f44bc319972c49d04f21960dc73ed","signature":"5292b3fa7629c91e1fb767673835c8a19ad559715b3ff37580802fea9e9d54dc"},{"version":"b52466027108065ec403670dcddf8d25b10f6513a7cd4a0308bcf8505d3af6ef","signature":"b2ca7c40c8ef65e2618ec0e0aa44a64c1ed75bba8a5a12b09310c074d093d703"},{"version":"66e5b076dcd6c14b881e14381b49719238ffdcf96235fff611214cd903deb81d","signature":"3156409345990b3100cd58803de3a103e40b9815e31fc83f67b78dd76a761324"},{"version":"ca3e744795e2782ea1abd914ab9dbee9dabe4a808b302c3dbe0b5cd100962481","signature":"26c2134320e02fcae494d5f3f4af5a921fe089f849b405326f3cf925be0be504"},{"version":"4e2091eb71f3203a4e77d0e08db3b06b1e8801823a3b2eae536ed8580422a485","signature":"8e609bb71c20b858c77f0e9f90bb1319db8477b13f9f965f1a1e18524bf50881"},"5024433f8da3a7968f6d12cffd32f2cefae4442a9ad1c965fa2d23342338b700","8861e1781f1398b02806cd38a51fb36b15fb4c26e3365d4b678c41968a4e43c3","e432b56911b58550616fc4d54c1606f65fe98c74875b81d74601f5f965767c60","cc957354aa3c94c9961ebf46282cfde1e81d107fc5785a61f62c67f1dd3ac2eb","a46a2e69d12afe63876ec1e58d70e5dbee6d3e74132f4468f570c3d69f809f1c","93de1c6dab503f053efe8d304cb522bb3a89feab8c98f307a674a4fae04773e9","3b043cf9a81854a72963fdb57d1884fc4da1cf5be69b5e0a4c5b751e58cb6d88","5426e62886b7be7806312d31a00e8f7dccd6fe63ba9bbefe99ee2eab29cc48a3","0cba3a5d7b81356222594442753cf90dd2892e5ccfe1d262aaca6896ba6c1380","a69c09dbea52352f479d3e7ac949fde3d17b195abe90b045d619f747b38d6d1a",{"version":"c2ab70bbc7a24c42a790890739dd8a0ba9d2e15038b40dff8163a97a5d148c00","affectsGlobalScope":true},"422dbb183fdced59425ca072c8bd09efaa77ce4e2ab928ec0d8a1ce062d2a45a",{"version":"712ba0d43b44d144dfd01593f61af6e2e21cfae83e834d297643e7973e55ed61","affectsGlobalScope":true},"1dab5ab6bcf11de47ab9db295df8c4f1d92ffa750e8f095e88c71ce4c3299628","f71f46ccd5a90566f0a37b25b23bc4684381ab2180bdf6733f4e6624474e1894",{"version":"54e65985a3ee3cec182e6a555e20974ea936fc8b8d1738c14e8ed8a42bd921d4","affectsGlobalScope":true},"82408ed3e959ddc60d3e9904481b5a8dc16469928257af22a3f7d1a3bc7fd8c4","98a3ebfa494b46265634a73459050befba5da8fdc6ca0ef9b7269421780f4ff3","34e5de87d983bc6aefef8b17658556e3157003e8d9555d3cb098c6bef0b5fbc8","cc0b61316c4f37393f1f9595e93b673f4184e9d07f4c127165a490ec4a928668","f27371653aded82b2b160f7a7033fb4a5b1534b6f6081ef7be1468f0f15327d3","c762cd6754b13a461c54b59d0ae0ab7aeef3c292c6cf889873f786ee4d8e75c9","f4ea7d5df644785bd9fbf419930cbaec118f0d8b4160037d2339b8e23c059e79",{"version":"bfea28e6162ed21a0aeed181b623dcf250aa79abf49e24a6b7e012655af36d81","affectsGlobalScope":true},"b8aca9d0c81abb02bec9b7621983ae65bde71da6727580070602bd2500a9ce2a","ae97e20f2e10dbeec193d6a2f9cd9a367a1e293e7d6b33b68bacea166afd7792","10d4796a130577d57003a77b95d8723530bbec84718e364aa2129fa8ffba0378","ad41bb744149e92adb06eb953da195115620a3f2ad48e7d3ae04d10762dae197","bf73c576885408d4a176f44a9035d798827cc5020d58284cb18d7573430d9022","7ae078ca42a670445ae0c6a97c029cb83d143d62abd1730efb33f68f0b2c0e82",{"version":"e8b18c6385ff784228a6f369694fcf1a6b475355ba89090a88de13587a9391d5","affectsGlobalScope":true},"5d0a9ea09d990b5788f867f1c79d4878f86f7384cb7dab38eecbf22f9efd063d","12eea70b5e11e924bb0543aea5eadc16ced318aa26001b453b0d561c2fd0bd1e","08777cd9318d294646b121838574e1dd7acbb22c21a03df84e1f2c87b1ad47f2","08a90bcdc717df3d50a2ce178d966a8c353fd23e5c392fd3594a6e39d9bb6304",{"version":"4cd4cff679c9b3d9239fd7bf70293ca4594583767526916af8e5d5a47d0219c7","affectsGlobalScope":true},"2a12d2da5ac4c4979401a3f6eaafa874747a37c365e4bc18aa2b171ae134d21b","002b837927b53f3714308ecd96f72ee8a053b8aeb28213d8ec6de23ed1608b66","1dc9c847473bb47279e398b22c740c83ea37a5c88bf66629666e3cf4c5b9f99c","a9e4a5a24bf2c44de4c98274975a1a705a0abbaad04df3557c2d3cd8b1727949","00fa7ce8bc8acc560dc341bbfdf37840a8c59e6a67c9bfa3fa5f36254df35db2","1b952304137851e45bc009785de89ada562d9376177c97e37702e39e60c2f1ff",{"version":"806ef4cac3b3d9fa4a48d849c8e084d7c72fcd7b16d76e06049a9ed742ff79c0","affectsGlobalScope":true},"44b8b584a338b190a59f4f6929d072431950c7bd92ec2694821c11bce180c8a5","5f0ed51db151c2cdc4fa3bb0f44ce6066912ad001b607a34e65a96c52eb76248",{"version":"3345c276cab0e76dda86c0fb79104ff915a4580ba0f3e440870e183b1baec476","affectsGlobalScope":true},"664d8f2d59164f2e08c543981453893bc7e003e4dfd29651ce09db13e9457980","103d70bfbeb3cd3a3f26d1705bf986322d8738c2c143f38ebb743b1e228d7444","f52fbf64c7e480271a9096763c4882d356b05cab05bf56a64e68a95313cd2ce2","59bdb65f28d7ce52ccfc906e9aaf422f8b8534b2d21c32a27d7819be5ad81df7",{"version":"3a2da34079a2567161c1359316a32e712404b56566c45332ac9dcee015ecce9f","affectsGlobalScope":true},"28a2e7383fd898c386ffdcacedf0ec0845e5d1a86b5a43f25b86bc315f556b79","3aff9c8c36192e46a84afe7b926136d520487155154ab9ba982a8b544ea8fc95","a880cf8d85af2e4189c709b0fea613741649c0e40fffb4360ec70762563d5de0","85bbf436a15bbeda4db888be3062d47f99c66fd05d7c50f0f6473a9151b6a070","9f9c49c95ecd25e0cb2587751925976cf64fd184714cb11e213749c80cf0f927","f0c75c08a71f9212c93a719a25fb0320d53f2e50ca89a812640e08f8ad8c408c",{"version":"ab9b9a36e5284fd8d3bf2f7d5fcbc60052f25f27e4d20954782099282c60d23e","affectsGlobalScope":true},"9cafe917bf667f1027b2bb62e2de454ecd2119c80873ad76fc41d941089753b8","8e9c23ba78aabc2e0a27033f18737a6df754067731e69dc5f52823957d60a4b6","a9c4ccaf07ab3bc395082fe5edb3ba4ed06c2f69d57e749937462a891665b1e4","f0cb4b3ab88193e3e51e9e2622e4c375955003f1f81239d72c5b7a95415dad3e","92450d617e92f96354d281c8ed5613fd16cacea79eb60b1e9736494b3c057e69","8a9086357fe289efb682dc925358f30b6312c7219a5ca92212857a0a79612012","92bc42ed0e2d41559513fd457ee30d834c2f0fedb9ed5004c029cbf0ad2f8bd9","1281bdbfcdb7f78b900d5916db2e47ee35b8f2ad0d97e978f2b34ca7064a14c8",{"version":"e6c58ceea712261bceb7fdad76d0bd6ed90ffa89540c54c5ee9d34acb2d2b027","affectsGlobalScope":true},"8e15c5c078373be96ae3bbf4d7cd3690b6970cd82e483ee03004698ce32ccc6d","2776b2e3df17ee63df080d6516b8d2ad6548d8f84ee5bc523f2a7fec7925d25e","a7d96b933c1eaf5ddae2f67f422c06088cfbc39e2e1ff1f1f5ad35b2e383e492","6862b5efd6c862693e6af635fa6f8cd3bad8d2af285a937a79a8b6d741a6f7f2","684944f82d46be5b81443b84206c345f6901af8fe469866d16a94b6749216276","311c1619df14b4fda526b02ebe427b387380402790f3934f7ccad55d67f2e335","3a68b9e1129584f9e42f615b56926b0d2c1d22746e9c4689faf48d0e9749536a","035d49c32d3af05330af244848355cd79368a8616c180c4cb45f2cc129b6b03e","383b6ce682946976e32187310d218fbaf1656e95bae07cbd4426489c524348fc","df9be624e847c0f7202b8633002954e71aec6c22b466f9f58b6ac6386edb77a8","650e6d00a13518701e3b30eb14600b428c5b8bcc0157f9a05edbdc2f6a72b077","202f7d371d1e9f639caff3166e7a12621dc2933b17fb08c1201d057f23032246","1215cddb9652167f65c945b10bbb3d1b2efd1908f245ba4c2c6c204ce23b5940","098de601e1494134d2620166c8410b8f614605b427ac6239a59ebc107f1d973b","9299ac36e50d800d1340fa7be1d7d08f9af466577f417606ffd53e333ff3ae21","becb604e8f5399436f67baa1c4923fea0413533e9000d98d97c9da729eeb4e81","512a0e27cdf069f0d3bbdbe06b852e4d41131e447338b7d45678f456d3ad6707","db8eb32fd00b39fc88064d9f249970e437e7731d096dc3acbab1bffe58c8678e","7e740e39cf1ccd9adefc6765c99553372f8b08170b121c221b962c79126d2835","d95c881d3184ea0d379fb599bc1b767edad59995220b5985128743a518259c10","4472e570d2ea4acf07600f8f80b18fd7dd6c5db57fc9087192547dd53eaa9475","7a2ba384401885bddde58e54b6104307ddb415b5417dc52dfc2136842d7a07be","5b9e4d2999e4a207e96d25ae919c1435f29a820e2c3cf485c2986ad4df300b2f","a04bbf3e3e34cf8ad52dc42197ea42474f8d4d6f9d3df8af0c271400f0c2dd42","8224fcf3a00e38208a7a8705bd3f9fd486bd0efe4d9e56c520b1b3a6f43acc04","d0a4de51b988a54f469e1c1cd7f167269bae91fc70783c17ff97f13046cb1ba9",{"version":"924dfa21135e4aeb4498c4facc93545b30bb844618929d342f9ab552947e34db","affectsGlobalScope":true},"68bb1cebc4ec3f0a3083d4ed22837fab5d38ea761810a4b831e492fabd0bce2f","ee96ecd663350ea2fc2129f0aa4a430e29a8f6f3b3016b15b18bbe309aca46a8","e77787d4cab0e4eb93597ab49357a66c2ae48449071f534ad5396a9e68e0ee1e","96707f79cb94cea7035d9f1b8dbc21f85da6de02a624d69dc79e067d3408ef0e","ea137305952ae12950844a4ab4b549f18dbf8637bac3e5d05b4a36c4546d77a2","5a472f683a5aea0e8b5d770c92a727b7c290337ccdaf6b7128b7d5479f7476ed","162cb6760a1fb4c786a745093431e3279ad005db5c19c2cc95f1906becb6b021","a795c9f33f14d45b8da6ee61bd87ea069597d071e6e00c30cca9c986a5ba8e88","882bf606776771a1b1f8638e6beb33db781e3412640e7e7e8063accfb050d9b8","7d7c8ef7d48a035142c07dae60545ecc0e4af4c337742760cb09726f2f8e31db","8621d21e074eff59690c1114ef94dde6363637959e91df8d4304b1c2c8292c8f",{"version":"ad66649823c68baf176c089a54e7f28226ad803e5e4cadf42f44a40e8138b698","affectsGlobalScope":true},{"version":"eeac4d06039327f81377b1eef141f2717055c7e73e074ab1a1bada6bcca40104","affectsGlobalScope":true},"ed19da84b7dbf00952ad0b98ce5c194f1903bcf7c94d8103e8e0d63b271543ae","615f244330d90649dc7ffb7dbf7b924cdce2a77950d6a33061f632b487e22a45","4a0f0317476f6801c0e19b8ba226ccaf5970a598e6439e6facd1054b59b078e0","8841e2aa774b89bd23302dede20663306dc1b9902431ac64b24be8b8d0e3f649","fd326577c62145816fe1acc306c734c2396487f76719d3785d4e825b34540b33","3ebae8c00411116a66fca65b08228ea0cf0b72724701f9b854442100aab55aba","cddf5c26907c0b8378bc05543161c11637b830da9fadf59e02a11e675d11e180","3d2cd8f3047fff04a71e7037a6a4cb9f4accb28dbd8c0d83164d414811025af0",{"version":"dc49082466ff7e61cfbaf146f106a59274dbb95f726ed1e22a54375f82992953","affectsGlobalScope":true},"9b7ecef2a99fc603b20ce8524a3459d260fa8b128f4dd71c8718e93ded32023d","fe2cd61bbf91d54ff07a1cd0174dd9338c1fd3f6069ae2a6119136aef817a9c8","9f96df319156b4debf90395c415c53f0080a4d9db97966fe69396760217413e0","7c076b2d16b2254072943e10999e08a5a650e0c6621ba04a501fc9e3f03f7371","bca166983a1b4bea5aff7ac14949ed25c065d0a006990136b75c3f4690c4e93c","577eb25bca27a3a4ddd46b57f28cd83211501bfbc4786bd65639b951f20cff82","bfe1b52cf71aea9bf8815810cc5d9490fa9617313e3d3c2ee3809a28b80d0bb4","70b34c8420d6226ed565d55f47fe04912d0ca0ad128825c5a06e018a3498db32","c1d5cc0286eef54f6246a972ec1720efbba6b7b0a53a303e1f2067ca229ecd16","987248017d05678b16a0eff2c323fc3700411b9094ece88ba886c1d006732f8a","11ef35fa1e8aef8229ce6b62ac1a6a0761d1d4bb4de1538bce6d10762a919139","8b06ac3faeacb8484d84ddb44571d8f410697f98d7bfa86c0fda60373a9f5215","7eb06594824ada538b1d8b48c3925a83e7db792f47a081a62cf3e5c4e23cf0ee","f5638f7c2f12a9a1a57b5c41b3c1ea7db3876c003bab68e6a57afd6bcc169af0","0d14fa22c41fdc7277e6f71473b20ebc07f40f00e38875142335d5b63cdfc9d2","d8aab31ba8e618cc3eea10b0945de81cb93b7e8150a013a482332263b9305322","462bccdf75fcafc1ae8c30400c9425e1a4681db5d605d1a0edb4f990a54d8094","5923d8facbac6ecf7c84739a5c701a57af94a6f6648d6229a6c768cf28f0f8cb","7adecb2c3238794c378d336a8182d4c3dd2c4fa6fa1785e2797a3db550edea62","dc12dc0e5aa06f4e1a7692149b78f89116af823b9e1f1e4eae140cd3e0e674e6","1bfc6565b90c8771615cd8cfcf9b36efc0275e5e83ac7d9181307e96eb495161","8a8a96898906f065f296665e411f51010b51372fa260d5373bf9f64356703190","7f82ef88bdb67d9a850dd1c7cd2d690f33e0f0acd208e3c9eba086f3670d4f73",{"version":"3fe15a491a792852283caeece8142bc7427a29c183d9fec8691d95a49c8932a1","affectsGlobalScope":true},"b3338366fe1f2c5f978e2ec200f57d35c5bd2c4c90c2191f1e638cfa5621c1f6","686e548ae30250d62532c8cacb43fccc922b693408371bd3503563c4a0f28eed","cc2dc362fc50995684e9f7e9b38ad9bdf19e74919294a694cbc05392352cad7d","abef3012ae70d98baa449664e9dda50c96fc68b0fd11a592d6590d85bb89cd10","456e83839c811cedebb65c8b05027120336b3bd6920259817d728ffc52d41e2f","ea79d9641e700b2b4a04a857ed1ef692c4caf988017fbabd64c4111f7c287673","0a90b9435b81f45b88c5fb8d30e85b77d3508eb0760dc40b9fb825fd29f92375","8cd7362102d928e21b291a013f80fc68a038d4506d26ea9948c676e3fa1110d9","90f6830fb380f4d2b69df018343ae80ce92991e85a0d7be8d214c643b39d1175","1bfe6db4f3dffacd1da82748cb8f0acec04e8a4d7bd36c09573d5d80a7dec28b","6a8d6deca8ec4250630fea4e5f23bd9bf0face98739ccd22e08a17173117155b","a1d51fd5a8f9c1c038799a43c038397ca3ed99ee73cc0b0aada897e7cc8aca91","6c9708ae545db5f8deb8ef774d412fd1b46adade794664d7c6cfd0a1f6dfd64f","9d14fcf0b69094271127c7b6acb36987be5d1bffa4eb948359549f040fb50349","e3a5287471fb08f053c06fd998632792aa5f022e45278f1e6dd55fb2fa9e7362","28a6c8eeb48e165920067b9193555649fc43c2a28c450f23f622e5eb043d9463","1147c3efa5a256bcd6a3d2cfaf764185b7120bf985f8412d9bae596a0348f77b","67aee88594abc44cd58820dea2ed1a9d373c1c2a59941234e4abe797464bc4da","65d8bfb66a25ff068ea4ce271174b0b4c35aee664b349db941a5688f0e6d621d","f8cb94e0dffd21068a952754ec67d01d35a15fa61bd3af951f949e9b8bde7976","9928c4f48144f7d79716955310c857518d21ada0fcb7017fbf5921e547320cb8","3c7ef314f6691dbba43cb1310a82d610ea648cc4498cd685c3e25442ea2d98a0","25c57e8012a90bcd97570e155c600fa092cd5dbbfd8fffefd8150d2fef2c939b","4bdf362501ecd30c2037b91dda8d091fa2dd9b13990d0718bddb9e02919e35dc","f3e604694b624fa3f83f6684185452992088f5efb2cf136b62474aa106d6f1b6","13cc3979e1f548aacaa23911f2d6e69c1a2999266c4a1952806de1e9593bdaaa","96d14f21b7652903852eef49379d04dbda28c16ed36468f8c9fa08f7c14c9538","e5dd317ef2c7a2882b152337b03d592fafa8351b40351849a16a908b198bd3b5","675e702f2032766a91eeadee64f51014c64688525da99dccd8178f0c599f13a8","fe4a2042d087990ebfc7dc0142d5aaf5a152e4baea86b45f283f103ec1e871ea","d70c026dd2eeaa974f430ea229230a1897fdb897dc74659deebe2afd4feeb08f","187119ff4f9553676a884e296089e131e8cc01691c546273b1d0089c3533ce42","febf0b2de54781102b00f61653b21377390a048fbf5262718c91860d11ff34a6","ca59fe42b81228a317812e95a2e72ccc8c7f1911b5f0c2a032adf41a0161ec5d","9364c7566b0be2f7b70ff5285eb34686f83ccb01bda529b82d23b2a844653bfb","00baffbe8a2f2e4875367479489b5d43b5fc1429ecb4a4cc98cfc3009095f52a","ae9930989ed57478eb03b9b80ad3efa7a3eacdfeff0f78ecf7894c4963a64f93","3c92b6dfd43cc1c2485d9eba5ff0b74a19bb8725b692773ef1d66dac48cda4bd","3e59f00ab03c33717b3130066d4debb272da90eeded4935ff0604c2bc25a5cae","df996e25faa505f85aeb294d15ebe61b399cf1d1e49959cdfaf2cc0815c203f9",{"version":"f2eff8704452659641164876c1ef0df4174659ce7311b0665798ea3f556fa9ad","affectsGlobalScope":true},"188bfaa43ba24777d116db3cc75e853a1d16f7c45a52bb983caa375e77013a82","cee164cd6c157d0ce3d3350c1df75dee40d2da203223a72890430ec6d8ccf4a1","209e814e8e71aec74f69686a9506dd7610b97ab59dcee9446266446f72a76d05","4051f6311deb0ce6052329eeb1cd4b1b104378fe52f882f483130bea75f92197","4d21f81eb1a04a3517c8d5e9765e461eb7348c38ea59c3adbee2bb0adf0731ca","f48dd44f8c5a65b8465b24fe024cecd2f3014f6aadf04e182bad1a4e94ba2afc","736097ddbb2903bef918bb3b5811ef1c9c5656f2a73bd39b22a91b9cc2525e50","208bb742e0f201470da121bc73847c74b62cff4172f38ae5949ae77d6c9c6b71","3663d1b50f356656a314e5df169bb51cb9d5fd75905fa703f75db6bb32030568","c9ad058b2cc9ce6dc2ed92960d6d009e8c04bef46d3f5312283debca6869f613","0d65b782b1a9b5891802ef2022c78481b19dfe133ba8d9f7596fe1320314342d","1477a105951e9b757c50dbc6c5b942877f7db081cb5940db9a56b1a574f2b688","9751247ee3bbcf1c63592f0f4dafb44559680b2b3e5736b7f0578c6a737d74c8","2b8264b2fefd7367e0f20e2c04eed5d3038831fe00f5efbc110ff0131aab899b","c555dd691dd05955e99cd93dd99c685a65e5287813ccb5e6bfde951183248e26","6209c901f30cc321f4b86800d11fad3d67e73a3308f19946b1bc642af0280298","c0a3ea3aee13c4946a6aefce3a6ab9292a40a29f6622cde0fda0b1067a1a1f5f","05fbacd5132cf762230b7f3d8103de1bdb5a7aca620825e1f1f4c76d4ca59164","a45c39934ceab99195e1c84a9e8a4688942e4bb9ed79f8bd12a2ce318d507903","ef1b93df2e8e0dc141c808a9428349bae1537a97089a9722319a24bb92b77125","ad2d24041428f5cd3ede8f72254880af7bc227a2e5b55fc99c5ce1f40d0f9069","914659ed942c9973be1305614ab898888a164689eb4ce965ca36c1790cb0ec74","41fbf1a126e9c91010a8a52dd4c8406f0b267bf8b7791709f95b779529c82b01","82298d9c11b5019b48a6aedf324b1545399f4a95902a9f50cef942d21805fe27","f9a2dd6a6084665f093ed0e9664b8e673be2a45e342a59dd4e0e4e552e68a9ad","ba601641fac98c229ccd4a303f747de376d761babb33229bb7153bed9356c9cc",{"version":"ecf78e637f710f340ec08d5d92b3f31b134a46a4fcf2e758690d8c46ce62cba6","affectsGlobalScope":true},"381899b8d1d4c1be716f18cb5242ba39f66f4b1e31d45af62a32a99f8edcb39d",{"version":"2308de4bd094ed70bdc95ada3cece385c608a1eda179f8e1c71eed70a049cefc","affectsGlobalScope":true},"c45d6f4d3a20be54e46237608f537a8d85397f87b9c3318d68ed925c2f1d0b51","10e3319a9dfaab1513316a33dc885065dbb3779d1560f30a9ef203a7c1c7d9dc","b581b91eb2ca69030b1e66ec8dbd89c937fc38bc36caea2e02c85829701f920a","3a65ccdaf6c6399162b5ce1fdc56fc22810c29bec28ebfe8730041efe4617406","a4645cb1992e50d970ae8dd5a949293650d638d415b06a2dac839f04dab7ac87","21be637d20fcef4043e9e6a1a3a9bcb6c4e3ab37c3c9dc7e2bb8b39c1cb31a57","b56007b250fca8efcbbb3f6d66749dbdc072d51ca3a8373a1f8043d96f00415f","577408ed7e1292cfab6e653d7bc426fd22219b8bbb75280e1f022878fc251638","31cd1b6330b143c804b5da92da576211e985dac4ecfde6362ed0165e1c0de9f2","d8cff432edf7409fd3a0f12010bc05d1c4db49b8790a43e53da0614cdf2894e9","ad19348e4b7cb30ebb2306418dddcc3d4f166f9aa23b30df52a42f7d53eca319","859f6ed1b4f14eab2379802d6f8d6b992d3784035c51657a4e9f54e865db265e","c62bfe4c1716aee85b0ad1bcd12e2f64cee3e4c94fd3b5f57a7131b09b2aa490",{"version":"8f19251323456195ec9236df857bac3b8f97b73b540ef06ead2ceccc3884954f","affectsGlobalScope":true},"4370c91e46f6992a89e3979c50434cf932088e1b5ae6e3a5214d778634dea768",{"version":"cffd3848b7af4922d70028c805b7df5e8f0eac4a8d2410b0f55b47ca62c6c3a8","affectsGlobalScope":true},"14ebc932ce7ac502215a4ed0c9c3ca3ab2e9b4086ba0c045337b602cfd0ff49d","654bd884851f74a93fc2165c9d3d7ec9a6346c5c4ca8a00caa49868c72ad2363","e9b2a4f54b6d842134224f3bc0d5af9845e5bef162c2f66128fef5227c44e601","04c7268a07af1c96824164ef1a8a907a1d5b8d8046e739921ad9ebe7e451c4a2","74b0245c42990ed8a849df955db3f4362c81b13f799ebc981b7bec2d5b414a57","e7e82999afe07444dad1f679c7c0ae15415de820c6f10f02dc5201a93860c3d9","a440a1b0129449cdc6fa715d1998bcd5e914fec1e68b076a4230d71524561d48","550650516d34048712520ffb1fce4a02f2d837761ee45c7d9868a7a35e7b0343","7ddac8a4ba398441cfd6d8a69380401378f122ee8cc2d848e6e32f4db2b6c876","67fc055eb86a0632e2e072838f889ffe1754083cb13c8c80a06a7d895d877aae","e32ec2bef9d536d3d6df979e24f3ea5c7725da62fb2632d6b88832938c1537ce","b0d10e46cfe3f6c476b69af02eaa38e4ccc7430221ce3109ae84bb9fb8282298",{"version":"683691a96f46b420718449463fea488f22b4a2b7250ed34de677478c782ab5f1","affectsGlobalScope":true},"cd4fba36eeb79a6e2ff14bbe1024cd83ae542c1bd1c2a02ed853ebc251974119","8872047ab54bae299d6bdb9730a4cd8e8403e0ffffa1320c32397e3f11ce2b5f","6285301cbce4f12235949b532c476990573de96b692f4aa67916d02e2a2a383e","3833c70307dc3d2b46cb6f2a8b6a90e4d7e7367a21ab18c481d7de0909a43e67",{"version":"40bbeaccf39d6ad00da30e96553f0c4aa1b8a87535393c7fdf939170b639c95d","affectsGlobalScope":true},"9c0456f2bff80d478f2714866d1e2e9c1210112df96127aab59b6037d517f507","2887592574fcdfd087647c539dcb0fbe5af2521270dad4a37f9d17c16190d579","9d74c7330800b325bb19cc8c1a153a612c080a60094e1ab6cfb6e39cf1b88c36","3ba72b1127de9897cf5b2de9be1d2d91166d1335a096435e59b0797745b7c3f1","ad52430a0480fd221ff10281a93e3683cbc6666027e24aea148db93d732a68f7","3d3bfd3a50c4f61b236ff2dfc27d6c13181c44743b0dea4e482a0426dbfb80c6","82a33c85fe78d3cc2026d4e515c394ed3d5662437fe0a02de7eeb7ad80e803bd","4fb0b7d532aa6fb850b6cd2f1ee4f00802d877b5c66a51903bc1fb0624126349","b90c59ac4682368a01c83881b814738eb151de8a58f52eb7edadea2bcffb11b9","8560a87b2e9f8e2c3808c8f6172c9b7eb6c9b08cb9f937db71c285ecf292c81d","ffe3931ff864f28d80ae2f33bd11123ad3d7bad9896b910a1e61504cc093e1f5","083c1bd82f8dc3a1ed6fc9e8eaddf141f7c05df418eca386598821e045253af9","274ebe605bd7f71ce161f9f5328febc7d547a2929f803f04b44ec4a7d8729517","6ca0207e70d985a24396583f55836b10dc181063ab6069733561bfde404d1bad","5908142efeaab38ffdf43927ee0af681ae77e0d7672b956dfb8b6c705dbfe106","f772b188b943549b5c5eb803133314b8aa7689eced80eed0b70e2f30ca07ab9c","0026b816ef05cfbf290e8585820eef0f13250438669107dfc44482bac007b14f","05d64cc1118031b29786632a9a0f6d7cf1dcacb303f27023a466cf3cdc860538","e0fff9119e1a5d2fdd46345734126cd6cb99c2d98a9debf0257047fe3937cc3f","d84398556ba4595ee6be554671da142cfe964cbdebb2f0c517a10f76f2b016c0","e275297155ec3251200abbb334c7f5641fecc68b2a9573e40eed50dff7584762","b2f006ee835f315d01c43c0f5d9e9ad78a5870b380899877b32a33078d065dbd",{"version":"3a1e422f919c70fca66e94dc641ad8d9732b3d2533ac047b8a9aaca9eea3aa10","affectsGlobalScope":true},"b4358a89fcd9c579f84a6c68e2ce44ca91b07e4db3f8f403c2b7a72c1a1e04b6","fdfbe321c556c39a2ecf791d537b999591d0849e971dd938d88f460fea0186f6","6ba73232c9d3267ca36ddb83e335d474d2c0e167481e3dec416c782894e11438","b2d70a269840a9528db473ac7565442434333a05c1f66801a7a672e82beb903e"],"options":{"allowSyntheticDefaultImports":true,"composite":true,"declaration":true,"declarationMap":true,"downlevelIteration":true,"esModuleInterop":true,"jsx":4,"module":1,"noImplicitAny":true,"outDir":"./dist","rootDir":"./src","skipLibCheck":true,"strict":true,"target":2},"fileIdsList":[[69,118,176,316],[118,176,316],[118,176,281,316],[118,176,280,281,282,283,284,285,316],[118,176,280,316],[69,70,71,72,73,118,176,316],[69,71,118,176,316],[79,118,125,176,316],[118,128,176,316],[118,129,130,176,316],[118,129,176,316],[118,131,176,316],[118,135,163,176,316],[118,134,140,176,316],[118,145,176,316],[118,140,176,316],[118,139,176,316],[118,157,176,316],[118,153,176,316],[118,135,152,163,176,316],[118,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,176,316],[58,118,176,316],[91,118,125,176,316],[90,91,118,125,176,177,316],[118,176,180,316],[118,176,182,188,316],[118,176,183,184,185,186,187,316],[118,176,188,316],[90,93,95,98,107,117,118,125,176,316],[118,176,194,316],[118,176,195,316],[118,176,200,205,316],[118,176,229,316],[118,176,213,216,223,224,225,226,316],[118,176,216,219,227,316],[118,176,213,216,219,227,316],[118,176,213,216,219,223,224,226,227,228,316],[118,125,176,316],[118,176,235,237,238,239,240,241,242,243,244,245,246,247,316],[118,176,235,236,238,239,240,241,242,243,244,245,246,247,316],[118,176,236,237,238,239,240,241,242,243,244,245,246,247,316],[118,176,235,236,237,239,240,241,242,243,244,245,246,247,316],[118,176,235,236,237,238,240,241,242,243,244,245,246,247,316],[118,176,235,236,237,238,239,241,242,243,244,245,246,247,316],[118,176,235,236,237,238,239,240,242,243,244,245,246,247,316],[118,176,235,236,237,238,239,240,241,243,244,245,246,247,316],[118,176,235,236,237,238,239,240,241,242,244,245,246,247,316],[118,176,235,236,237,238,239,240,241,242,243,245,246,247,316],[118,176,235,236,237,238,239,240,241,242,243,244,246,247,316],[118,176,235,236,237,238,239,240,241,242,243,244,245,247,316],[118,176,235,236,237,238,239,240,241,242,243,244,245,246,316],[118,176,252,316],[118,176,251,316],[93,117,118,125,176,254,255,316],[75,118,176,316],[78,118,176,316],[79,84,118,176,316],[80,90,91,98,107,117,118,176,316],[80,81,90,98,118,176,316],[82,118,176,316],[83,84,91,99,118,176,316],[84,107,114,118,176,316],[85,87,90,98,118,176,316],[86,118,176,316],[87,88,118,176,316],[89,90,118,176,316],[90,118,176,316],[90,91,92,107,117,118,176,316],[90,91,92,107,118,176,316],[93,98,107,117,118,176,316],[90,91,93,94,98,107,114,117,118,176,316],[93,95,107,114,117,118,176,316],[75,76,77,78,79,80,81,82,83,84,85,86,87,88,89,90,91,92,93,94,95,96,97,98,99,100,101,102,103,104,105,106,107,108,109,110,111,112,113,114,115,116,117,118,119,120,121,122,123,124,176,316],[90,96,118,176,316],[97,117,118,176,316],[87,90,98,107,118,176,316],[99,118,176,316],[100,118,176,316],[78,101,118,176,316],[102,116,118,122,176,316],[103,118,176,316],[104,118,176,316],[90,105,118,176,316],[105,106,118,120,176,316],[90,107,108,109,118,176,316],[107,109,118,176,316],[107,108,118,176,316],[110,118,176,316],[111,118,176,316],[90,112,113,118,176,316],[112,113,118,176,316],[84,98,107,114,118,176,316],[115,118,176,316],[98,116,118,176,316],[79,93,104,117,118,176,316],[84,118,176,316],[107,118,119,176,316],[118,120,176,316],[118,121,176,316],[79,84,90,92,101,107,117,118,120,122,176,316],[107,118,123,176,316],[118,176,265,267,268,316],[118,176,265,268,316],[118,176,265,267,268,269,316],[118,176,259,316],[118,176,265,266,267,316],[118,176,265,316],[118,176,265,266,268,316],[118,176,276,316],[55,56,57,118,176,274,316],[58,118,140,176,248,287,316],[58,118,176,189,290,316],[58,118,176,292,316],[58,118,176,295,316],[54,55,56,57,118,176,316],[118,176,306,316],[118,176,206,316],[118,176,312,316],[118,176,314,316],[118,125,176,316,320,321,322,323,324,325,326,327,328,329,330],[118,176,316,319,320,329],[118,176,316,320,329],[118,176,302,316,319,320,329],[118,176,316,319,320,321,322,323,324,325,326,327,328,330],[118,176,316,320],[84,118,176,316,319,329],[84,118,125,176,309,312,313,316,318,331],[90,93,95,107,114,117,118,123,125,176,316],[118,176,316,335],[90,107,118,125,176,316],[118,176,210,211,316],[118,176,210,316],[118,176,209,211,213,316],[118,176,210,216,217,316],[118,176,209,213,214,215,316],[118,176,209,213,216,218,316],[118,176,209,213,316],[118,176,209,316],[118,176,209,210,212,316],[118,176,209,210,212,213,214,216,217,218,316],[93,107,118,125,176,316],[118,176],[118,176,198,201,316],[118,176,198,201,202,203,316],[118,176,200,316],[118,176,197,204,316],[118,176,199,316],[118,176,220,316],[118,176,219,220,221,222,316],[118,176,286,316],[59,61,118,176,316],[59,118,176,316],[59,61,62,64,118,176,316],[59,60,118,176,316],[58,59,60,62,63,118,176,316],[60],[61,62,64],[58,60]],"referencedMap":[[71,1],[69,2],[280,2],[284,2],[282,3],[286,4],[283,2],[285,2],[281,5],[67,2],[68,2],[74,6],[70,1],[72,7],[73,1],[127,8],[129,9],[131,10],[130,11],[128,2],[132,12],[133,2],[134,2],[136,13],[137,13],[138,2],[139,2],[141,14],[142,2],[143,2],[144,13],[145,2],[146,2],[147,15],[148,2],[149,2],[150,16],[151,2],[152,17],[153,2],[154,2],[155,2],[156,2],[159,2],[158,18],[135,2],[160,19],[161,2],[157,2],[162,2],[163,13],[164,20],[165,21],[166,22],[167,2],[168,2],[169,2],[170,2],[171,2],[172,2],[173,2],[174,23],[175,2],[140,2],[176,2],[178,24],[179,23],[181,25],[183,26],[184,26],[185,26],[182,2],[188,27],[186,28],[187,28],[189,22],[190,2],[191,29],[192,2],[193,2],[194,2],[195,30],[196,31],[206,32],[207,2],[208,2],[230,33],[227,34],[224,35],[225,36],[226,35],[229,37],[228,33],[231,2],[232,2],[233,2],[234,38],[236,39],[237,40],[235,41],[238,42],[239,43],[240,44],[241,45],[242,46],[243,47],[244,48],[245,49],[246,50],[247,51],[248,16],[249,25],[177,2],[250,2],[253,52],[252,53],[255,2],[256,54],[75,55],[76,55],[78,56],[79,57],[80,58],[81,59],[82,60],[83,61],[84,62],[85,63],[86,64],[87,65],[88,65],[89,66],[90,67],[91,68],[92,69],[77,2],[124,2],[93,70],[94,71],[95,72],[125,73],[96,74],[97,75],[98,76],[99,77],[100,78],[101,79],[102,80],[103,81],[104,82],[105,83],[106,84],[107,85],[109,86],[108,87],[110,88],[111,89],[112,90],[113,91],[114,92],[115,93],[116,94],[117,95],[118,96],[119,97],[120,98],[121,99],[122,100],[123,101],[257,2],[258,67],[259,2],[260,2],[261,2],[262,2],[263,2],[264,2],[56,2],[269,102],[270,103],[271,104],[265,105],[268,106],[266,107],[267,108],[272,2],[273,2],[277,109],[274,2],[276,110],[275,2],[278,22],[279,22],[288,111],[289,22],[291,112],[292,113],[293,22],[294,22],[296,114],[295,22],[54,2],[58,115],[59,22],[55,2],[297,2],[57,2],[298,2],[299,2],[300,2],[301,2],[302,2],[303,2],[304,2],[305,2],[307,116],[308,2],[309,2],[310,117],[311,2],[313,118],[180,2],[315,119],[314,38],[317,2],[333,2],[331,120],[330,121],[321,122],[322,123],[329,124],[323,123],[324,122],[325,122],[326,122],[327,125],[320,126],[328,121],[319,2],[332,127],[334,128],[335,2],[336,129],[337,130],[318,2],[212,131],[211,132],[210,133],[218,134],[216,135],[217,136],[214,137],[215,138],[213,139],[219,140],[209,2],[126,2],[197,2],[306,2],[254,141],[316,142],[198,2],[202,143],[204,144],[203,143],[201,145],[205,146],[251,2],[200,147],[199,2],[220,138],[221,148],[222,2],[223,149],[290,2],[312,2],[11,2],[13,2],[12,2],[2,2],[14,2],[15,2],[16,2],[17,2],[18,2],[19,2],[20,2],[21,2],[3,2],[4,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],[33,2],[34,2],[35,2],[36,2],[7,2],[37,2],[42,2],[43,2],[38,2],[39,2],[40,2],[41,2],[8,2],[47,2],[44,2],[45,2],[46,2],[48,2],[9,2],[49,2],[50,2],[51,2],[52,2],[1,2],[10,2],[53,2],[287,150],[60,2],[62,151],[63,152],[65,153],[66,151],[61,154],[64,155]],"exportedModulesMap":[[71,1],[69,2],[280,2],[284,2],[282,3],[286,4],[283,2],[285,2],[281,5],[67,2],[68,2],[74,6],[70,1],[72,7],[73,1],[127,8],[129,9],[131,10],[130,11],[128,2],[132,12],[133,2],[134,2],[136,13],[137,13],[138,2],[139,2],[141,14],[142,2],[143,2],[144,13],[145,2],[146,2],[147,15],[148,2],[149,2],[150,16],[151,2],[152,17],[153,2],[154,2],[155,2],[156,2],[159,2],[158,18],[135,2],[160,19],[161,2],[157,2],[162,2],[163,13],[164,20],[165,21],[166,22],[167,2],[168,2],[169,2],[170,2],[171,2],[172,2],[173,2],[174,23],[175,2],[140,2],[176,2],[178,24],[179,23],[181,25],[183,26],[184,26],[185,26],[182,2],[188,27],[186,28],[187,28],[189,22],[190,2],[191,29],[192,2],[193,2],[194,2],[195,30],[196,31],[206,32],[207,2],[208,2],[230,33],[227,34],[224,35],[225,36],[226,35],[229,37],[228,33],[231,2],[232,2],[233,2],[234,38],[236,39],[237,40],[235,41],[238,42],[239,43],[240,44],[241,45],[242,46],[243,47],[244,48],[245,49],[246,50],[247,51],[248,16],[249,25],[177,2],[250,2],[253,52],[252,53],[255,2],[256,54],[75,55],[76,55],[78,56],[79,57],[80,58],[81,59],[82,60],[83,61],[84,62],[85,63],[86,64],[87,65],[88,65],[89,66],[90,67],[91,68],[92,69],[77,2],[124,2],[93,70],[94,71],[95,72],[125,73],[96,74],[97,75],[98,76],[99,77],[100,78],[101,79],[102,80],[103,81],[104,82],[105,83],[106,84],[107,85],[109,86],[108,87],[110,88],[111,89],[112,90],[113,91],[114,92],[115,93],[116,94],[117,95],[118,96],[119,97],[120,98],[121,99],[122,100],[123,101],[257,2],[258,67],[259,2],[260,2],[261,2],[262,2],[263,2],[264,2],[56,2],[269,102],[270,103],[271,104],[265,105],[268,106],[266,107],[267,108],[272,2],[273,2],[277,109],[274,2],[276,110],[275,2],[278,22],[279,22],[288,111],[289,22],[291,112],[292,113],[293,22],[294,22],[296,114],[295,22],[54,2],[58,115],[59,22],[55,2],[297,2],[57,2],[298,2],[299,2],[300,2],[301,2],[302,2],[303,2],[304,2],[305,2],[307,116],[308,2],[309,2],[310,117],[311,2],[313,118],[180,2],[315,119],[314,38],[317,2],[333,2],[331,120],[330,121],[321,122],[322,123],[329,124],[323,123],[324,122],[325,122],[326,122],[327,125],[320,126],[328,121],[319,2],[332,127],[334,128],[335,2],[336,129],[337,130],[318,2],[212,131],[211,132],[210,133],[218,134],[216,135],[217,136],[214,137],[215,138],[213,139],[219,140],[209,2],[126,2],[197,2],[306,2],[254,141],[316,142],[198,2],[202,143],[204,144],[203,143],[201,145],[205,146],[251,2],[200,147],[199,2],[220,138],[221,148],[222,2],[223,149],[290,2],[312,2],[11,2],[13,2],[12,2],[2,2],[14,2],[15,2],[16,2],[17,2],[18,2],[19,2],[20,2],[21,2],[3,2],[4,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],[33,2],[34,2],[35,2],[36,2],[7,2],[37,2],[42,2],[43,2],[38,2],[39,2],[40,2],[41,2],[8,2],[47,2],[44,2],[45,2],[46,2],[48,2],[9,2],[49,2],[50,2],[51,2],[52,2],[1,2],[10,2],[53,2],[287,150],[60,2],[62,156],[65,157],[61,156],[64,158]],"semanticDiagnosticsPerFile":[71,69,280,284,282,286,283,285,281,67,68,74,70,72,73,127,129,131,130,128,132,133,134,136,137,138,139,141,142,143,144,145,146,147,148,149,150,151,152,153,154,155,156,159,158,135,160,161,157,162,163,164,165,166,167,168,169,170,171,172,173,174,175,140,176,178,179,181,183,184,185,182,188,186,187,189,190,191,192,193,194,195,196,206,207,208,230,227,224,225,226,229,228,231,232,233,234,236,237,235,238,239,240,241,242,243,244,245,246,247,248,249,177,250,253,252,255,256,75,76,78,79,80,81,82,83,84,85,86,87,88,89,90,91,92,77,124,93,94,95,125,96,97,98,99,100,101,102,103,104,105,106,107,109,108,110,111,112,113,114,115,116,117,118,119,120,121,122,123,257,258,259,260,261,262,263,264,56,269,270,271,265,268,266,267,272,273,277,274,276,275,278,279,288,289,291,292,293,294,296,295,54,58,59,55,297,57,298,299,300,301,302,303,304,305,307,308,309,310,311,313,180,315,314,317,333,331,330,321,322,329,323,324,325,326,327,320,328,319,332,334,335,336,337,318,212,211,210,218,216,217,214,215,213,219,209,126,197,306,254,316,198,202,204,203,201,205,251,200,199,220,221,222,223,290,312,11,13,12,2,14,15,16,17,18,19,20,21,3,4,25,22,23,24,26,27,28,5,29,30,31,32,6,33,34,35,36,7,37,42,43,38,39,40,41,8,47,44,45,46,48,9,49,50,51,52,1,10,53,287,60,62,63,65,66,61,64]},"version":"4.7.4"}
|