@zhin.js/adapter-onebot11 1.0.0

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/README.md ADDED
@@ -0,0 +1 @@
1
+ # zhin adapter for onebot11
@@ -0,0 +1,36 @@
1
+ import { EventEmitter } from "events";
2
+ import { Bot, Plugin, Adapter, BotConfig, User, Group, SendOptions } from 'zhin.js';
3
+ declare module '@zhin.js/types' {
4
+ interface GlobalContext {
5
+ onebot11: Adapter<OneBot11WsClient>;
6
+ }
7
+ }
8
+ export interface OneBotV11Config extends BotConfig {
9
+ context: 'onebot11';
10
+ url: string;
11
+ access_token?: string;
12
+ reconnect_interval?: number;
13
+ heartbeat_interval?: number;
14
+ }
15
+ export declare class OneBot11WsClient extends EventEmitter implements Bot<OneBotV11Config> {
16
+ plugin: Plugin;
17
+ config: OneBotV11Config;
18
+ connected?: boolean;
19
+ private ws?;
20
+ private reconnectTimer?;
21
+ private heartbeatTimer?;
22
+ private requestId;
23
+ private pendingRequests;
24
+ constructor(plugin: Plugin, config: OneBotV11Config);
25
+ connect(): Promise<void>;
26
+ disconnect(): Promise<void>;
27
+ sendMessage(options: SendOptions): Promise<void>;
28
+ getUser(userId: string): Promise<User>;
29
+ getGroup(groupId: string): Promise<Group>;
30
+ private callApi;
31
+ private handleWebSocketMessage;
32
+ private handleOneBot11Message;
33
+ private startHeartbeat;
34
+ private scheduleReconnect;
35
+ }
36
+ //# sourceMappingURL=index.d.ts.map
@@ -0,0 +1 @@
1
+ {"version":3,"file":"index.d.ts","sourceRoot":"","sources":["../src/index.ts"],"names":[],"mappings":"AACA,OAAO,EAAC,YAAY,EAAC,MAAM,QAAQ,CAAC;AACpC,OAAO,EAAE,GAAG,EAAC,MAAM,EAAC,OAAO,EAAC,SAAS,EAA0B,IAAI,EAAE,KAAK,EAAkB,WAAW,EAAE,MAAM,SAAS,CAAC;AAEzH,OAAO,QAAQ,gBAAgB,CAAA;IAC7B,UAAU,aAAa;QACrB,QAAQ,EAAC,OAAO,CAAC,gBAAgB,CAAC,CAAA;KACnC;CACF;AAKD,MAAM,WAAW,eAAgB,SAAQ,SAAS;IAChD,OAAO,EAAE,UAAU,CAAC;IACpB,GAAG,EAAE,MAAM,CAAC;IACZ,YAAY,CAAC,EAAE,MAAM,CAAC;IACtB,kBAAkB,CAAC,EAAE,MAAM,CAAC;IAC5B,kBAAkB,CAAC,EAAE,MAAM,CAAC;CAC7B;AA4BD,qBAAa,gBAAiB,SAAQ,YAAa,YAAW,GAAG,CAAC,eAAe,CAAC;IAY7D,MAAM,EAAC,MAAM;IAAQ,MAAM,EAAE,eAAe;IAX/D,SAAS,CAAC,EAAC,OAAO,CAAA;IAClB,OAAO,CAAC,EAAE,CAAC,CAAY;IACvB,OAAO,CAAC,cAAc,CAAC,CAAiB;IACxC,OAAO,CAAC,cAAc,CAAC,CAAiB;IACxC,OAAO,CAAC,SAAS,CAAK;IACtB,OAAO,CAAC,eAAe,CAIlB;gBAEc,MAAM,EAAC,MAAM,EAAQ,MAAM,EAAE,eAAe;IAKzD,OAAO,IAAI,OAAO,CAAC,IAAI,CAAC;IAqCxB,UAAU,IAAI,OAAO,CAAC,IAAI,CAAC;IAwB3B,WAAW,CAAC,OAAO,EAAE,WAAW,GAAG,OAAO,CAAC,IAAI,CAAC;IAsBhD,OAAO,CAAC,MAAM,EAAE,MAAM,GAAG,OAAO,CAAC,IAAI,CAAC;IAYtC,QAAQ,CAAC,OAAO,EAAE,MAAM,GAAG,OAAO,CAAC,KAAK,CAAC;YAYjC,OAAO;IAuBrB,OAAO,CAAC,sBAAsB;IAsB9B,OAAO,CAAC,qBAAqB;IA+B7B,OAAO,CAAC,cAAc;IAStB,OAAO,CAAC,iBAAiB;CAgB1B"}
package/dist/index.js ADDED
@@ -0,0 +1,211 @@
1
+ import WebSocket from 'ws';
2
+ import { EventEmitter } from "events";
3
+ import { Adapter, registerAdapter } from 'zhin.js';
4
+ // ============================================================================
5
+ // OneBot11 适配器实现
6
+ // ============================================================================
7
+ export class OneBot11WsClient extends EventEmitter {
8
+ plugin;
9
+ config;
10
+ connected;
11
+ ws;
12
+ reconnectTimer;
13
+ heartbeatTimer;
14
+ requestId = 0;
15
+ pendingRequests = new Map();
16
+ constructor(plugin, config) {
17
+ super();
18
+ this.plugin = plugin;
19
+ this.config = config;
20
+ }
21
+ async connect() {
22
+ return new Promise((resolve, reject) => {
23
+ let wsUrl = this.config.url;
24
+ const headers = {};
25
+ if (this.config.access_token) {
26
+ headers['Authorization'] = `Bearer ${this.config.access_token}`;
27
+ }
28
+ this.ws = new WebSocket(wsUrl, { headers });
29
+ this.ws.on('open', () => {
30
+ this.connected = true;
31
+ this.startHeartbeat();
32
+ resolve();
33
+ });
34
+ this.ws.on('message', (data) => {
35
+ try {
36
+ const message = JSON.parse(data.toString());
37
+ this.handleWebSocketMessage(message);
38
+ }
39
+ catch (error) {
40
+ this.emit('error', error);
41
+ }
42
+ });
43
+ this.ws.on('close', (code, reason) => {
44
+ this.connected = false;
45
+ reject({ code, reason });
46
+ this.scheduleReconnect();
47
+ });
48
+ this.ws.on('error', (error) => {
49
+ reject(error);
50
+ });
51
+ });
52
+ }
53
+ async disconnect() {
54
+ if (this.reconnectTimer) {
55
+ clearTimeout(this.reconnectTimer);
56
+ this.reconnectTimer = undefined;
57
+ }
58
+ if (this.heartbeatTimer) {
59
+ clearInterval(this.heartbeatTimer);
60
+ this.heartbeatTimer = undefined;
61
+ }
62
+ // 清理所有待处理的请求
63
+ for (const [id, request] of this.pendingRequests) {
64
+ clearTimeout(request.timeout);
65
+ request.reject(new Error('Connection closed'));
66
+ }
67
+ this.pendingRequests.clear();
68
+ if (this.ws) {
69
+ this.ws.close();
70
+ this.ws = undefined;
71
+ }
72
+ }
73
+ async sendMessage(options) {
74
+ options = await this.plugin.app.handleBeforeSend(options);
75
+ this.plugin.logger.info(`send ${options.type}(${options.id}):`, options.content);
76
+ const messageData = {
77
+ message: options.content
78
+ };
79
+ if (options.type === 'group') {
80
+ await this.callApi('send_group_msg', {
81
+ group_id: parseInt(options.id),
82
+ ...messageData
83
+ });
84
+ }
85
+ else if (options.type === 'private') {
86
+ await this.callApi('send_private_msg', {
87
+ user_id: parseInt(options.id),
88
+ ...messageData
89
+ });
90
+ }
91
+ else {
92
+ throw new Error('Either group_id or user_id must be provided');
93
+ }
94
+ }
95
+ async getUser(userId) {
96
+ const response = await this.callApi('get_stranger_info', {
97
+ user_id: parseInt(userId)
98
+ });
99
+ return {
100
+ user_id: userId,
101
+ nickname: response.nickname,
102
+ card: response.card
103
+ };
104
+ }
105
+ async getGroup(groupId) {
106
+ const response = await this.callApi('get_group_info', {
107
+ group_id: parseInt(groupId)
108
+ });
109
+ return {
110
+ group_id: groupId,
111
+ group_name: response.group_name,
112
+ member_count: response.member_count
113
+ };
114
+ }
115
+ async callApi(action, params = {}) {
116
+ if (!this.ws || this.ws.readyState !== WebSocket.OPEN) {
117
+ throw new Error('WebSocket is not connected');
118
+ }
119
+ const echo = `req_${++this.requestId}`;
120
+ const message = {
121
+ action,
122
+ params,
123
+ echo
124
+ };
125
+ return new Promise((resolve, reject) => {
126
+ const timeout = setTimeout(() => {
127
+ this.pendingRequests.delete(echo);
128
+ reject(new Error(`API call timeout: ${action}`));
129
+ }, 30000); // 30秒超时
130
+ this.pendingRequests.set(echo, { resolve, reject, timeout });
131
+ this.ws.send(JSON.stringify(message));
132
+ });
133
+ }
134
+ handleWebSocketMessage(message) {
135
+ // 处理API响应
136
+ if (message.echo && this.pendingRequests.has(message.echo)) {
137
+ const request = this.pendingRequests.get(message.echo);
138
+ this.pendingRequests.delete(message.echo);
139
+ clearTimeout(request.timeout);
140
+ const response = message;
141
+ if (response.status === 'ok') {
142
+ return request.resolve(response.data);
143
+ }
144
+ return request.reject(new Error(`API error: ${response.retcode}`));
145
+ }
146
+ // 处理事件消息
147
+ if (message.post_type === 'message') {
148
+ this.handleOneBot11Message(message);
149
+ }
150
+ else if (message.post_type === 'meta_event' && message.meta_event_type === 'heartbeat') {
151
+ // 心跳消息,暂时忽略
152
+ }
153
+ }
154
+ handleOneBot11Message(onebotMsg) {
155
+ const message = {
156
+ id: onebotMsg.message_id.toString(),
157
+ adapter: 'onebot11',
158
+ bot: `${this.config.name}`,
159
+ sender: {
160
+ id: onebotMsg.user_id.toString(),
161
+ name: onebotMsg.user_id.toString()
162
+ },
163
+ channel: {
164
+ id: (onebotMsg.group_id || onebotMsg.user_id).toString(),
165
+ type: onebotMsg.group_id ? 'group' : 'private'
166
+ },
167
+ content: onebotMsg.message,
168
+ raw: onebotMsg.raw_message,
169
+ timestamp: onebotMsg.time,
170
+ reply: async (content, quote) => {
171
+ if (quote)
172
+ content.unshift({ type: 'reply', data: { message_id: message.id } });
173
+ this.plugin.dispatch('message.send', {
174
+ ...message.channel,
175
+ context: 'onebot11',
176
+ bot: `${this.config.name}`,
177
+ content
178
+ });
179
+ }
180
+ };
181
+ this.plugin.dispatch('message.receive', message);
182
+ this.plugin.logger.info(`recv ${message.channel.type}(${message.channel.id}):`, message.content);
183
+ this.plugin.dispatch(`message.${message.channel.type}.receive`, message);
184
+ }
185
+ startHeartbeat() {
186
+ const interval = this.config.heartbeat_interval || 30000;
187
+ this.heartbeatTimer = setInterval(() => {
188
+ if (this.ws && this.ws.readyState === WebSocket.OPEN) {
189
+ this.ws.ping();
190
+ }
191
+ }, interval);
192
+ }
193
+ scheduleReconnect() {
194
+ if (this.reconnectTimer) {
195
+ return;
196
+ }
197
+ const interval = this.config.reconnect_interval || 5000;
198
+ this.reconnectTimer = setTimeout(async () => {
199
+ this.reconnectTimer = undefined;
200
+ try {
201
+ await this.connect();
202
+ }
203
+ catch (error) {
204
+ this.emit('error', new Error(`Reconnection failed: ${error}`));
205
+ this.scheduleReconnect();
206
+ }
207
+ }, interval);
208
+ }
209
+ }
210
+ registerAdapter(new Adapter('onebot11', OneBot11WsClient));
211
+ //# sourceMappingURL=index.js.map
@@ -0,0 +1 @@
1
+ {"version":3,"file":"index.js","sourceRoot":"","sources":["../src/index.ts"],"names":[],"mappings":"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"}
package/package.json ADDED
@@ -0,0 +1,25 @@
1
+ {
2
+ "name": "@zhin.js/adapter-onebot11",
3
+ "version": "1.0.0",
4
+ "description": "zhin adapter for onebot11",
5
+ "type": "module",
6
+ "main": "./dist/index.js",
7
+ "types": "./dist/index.d.ts",
8
+ "exports": {
9
+ ".": {
10
+ "types": "./dist/index.d.ts",
11
+ "import": "./dist/index.js"
12
+ }
13
+ },
14
+ "devDependencies": {
15
+ "typescript": "^5.3.0",
16
+ "@zhin.js/types": "1.0.0"
17
+ },
18
+ "peerDependencies": {
19
+ "zhin.js": "1.0.0"
20
+ },
21
+ "scripts": {
22
+ "build": "tsc",
23
+ "clean": "rm -rf dist"
24
+ }
25
+ }
package/src/index.ts ADDED
@@ -0,0 +1,274 @@
1
+ import WebSocket from 'ws';
2
+ import {EventEmitter} from "events";
3
+ import { Bot,Plugin,Adapter,BotConfig,Message,registerAdapter, User, Group, MessageSegment, SendOptions } from 'zhin.js';
4
+
5
+ declare module '@zhin.js/types'{
6
+ interface GlobalContext{
7
+ onebot11:Adapter<OneBot11WsClient>
8
+ }
9
+ }
10
+ // ============================================================================
11
+ // OneBot11 配置和类型
12
+ // ============================================================================
13
+
14
+ export interface OneBotV11Config extends BotConfig {
15
+ context: 'onebot11';
16
+ url: string;
17
+ access_token?: string;
18
+ reconnect_interval?: number;
19
+ heartbeat_interval?: number;
20
+ }
21
+
22
+ interface OneBot11Message {
23
+ post_type: string;
24
+ message_type?: string;
25
+ sub_type?: string;
26
+ message_id: number;
27
+ user_id: number;
28
+ group_id?: number;
29
+ message: Array<{
30
+ type: string;
31
+ data: Record<string, any>;
32
+ }>;
33
+ raw_message: string;
34
+ time: number;
35
+ }
36
+
37
+ interface ApiResponse<T = any> {
38
+ status: string;
39
+ retcode: number;
40
+ data: T;
41
+ echo?: string;
42
+ }
43
+
44
+ // ============================================================================
45
+ // OneBot11 适配器实现
46
+ // ============================================================================
47
+
48
+ export class OneBot11WsClient extends EventEmitter implements Bot<OneBotV11Config> {
49
+ connected?:boolean
50
+ private ws?: WebSocket;
51
+ private reconnectTimer?: NodeJS.Timeout;
52
+ private heartbeatTimer?: NodeJS.Timeout;
53
+ private requestId = 0;
54
+ private pendingRequests = new Map<string, {
55
+ resolve: (value: any) => void;
56
+ reject: (error: Error) => void;
57
+ timeout: NodeJS.Timeout;
58
+ }>();
59
+
60
+ constructor(public plugin:Plugin,public config: OneBotV11Config) {
61
+ super();
62
+ }
63
+
64
+
65
+ async connect(): Promise<void> {
66
+ return new Promise((resolve, reject) => {
67
+ let wsUrl = this.config.url;
68
+ const headers: Record<string, string> = {};
69
+
70
+ if (this.config.access_token) {
71
+ headers['Authorization'] = `Bearer ${this.config.access_token}`;
72
+ }
73
+ this.ws = new WebSocket(wsUrl,{headers});
74
+
75
+ this.ws.on('open', () => {
76
+ this.connected=true;
77
+ this.startHeartbeat();
78
+ resolve();
79
+ });
80
+
81
+ this.ws.on('message', (data) => {
82
+ try {
83
+ const message = JSON.parse(data.toString());
84
+ this.handleWebSocketMessage(message);
85
+ } catch (error) {
86
+ this.emit('error',error)
87
+ }
88
+ });
89
+
90
+ this.ws.on('close', (code,reason) => {
91
+ this.connected=false
92
+ reject({code,reason})
93
+ this.scheduleReconnect();
94
+ });
95
+
96
+ this.ws.on('error', (error) => {
97
+ reject(error);
98
+ });
99
+ });
100
+ }
101
+
102
+ async disconnect(): Promise<void> {
103
+ if (this.reconnectTimer) {
104
+ clearTimeout(this.reconnectTimer);
105
+ this.reconnectTimer = undefined;
106
+ }
107
+
108
+ if (this.heartbeatTimer) {
109
+ clearInterval(this.heartbeatTimer);
110
+ this.heartbeatTimer = undefined;
111
+ }
112
+
113
+ // 清理所有待处理的请求
114
+ for (const [id, request] of this.pendingRequests) {
115
+ clearTimeout(request.timeout);
116
+ request.reject(new Error('Connection closed'));
117
+ }
118
+ this.pendingRequests.clear();
119
+
120
+ if (this.ws) {
121
+ this.ws.close();
122
+ this.ws = undefined;
123
+ }
124
+ }
125
+
126
+ async sendMessage(options: SendOptions): Promise<void> {
127
+ options=await this.plugin.app.handleBeforeSend(options)
128
+ this.plugin.logger.info(`send ${options.type}(${options.id}):`,options.content)
129
+ const messageData: any = {
130
+ message: options.content
131
+ };
132
+
133
+ if (options.type==='group') {
134
+ await this.callApi('send_group_msg', {
135
+ group_id: parseInt(options.id),
136
+ ...messageData
137
+ });
138
+ } else if (options.type==='private') {
139
+ await this.callApi('send_private_msg', {
140
+ user_id: parseInt(options.id),
141
+ ...messageData
142
+ });
143
+ } else {
144
+ throw new Error('Either group_id or user_id must be provided');
145
+ }
146
+ }
147
+
148
+ async getUser(userId: string): Promise<User> {
149
+ const response = await this.callApi('get_stranger_info', {
150
+ user_id: parseInt(userId)
151
+ });
152
+
153
+ return {
154
+ user_id: userId,
155
+ nickname: response.nickname,
156
+ card: response.card
157
+ };
158
+ }
159
+
160
+ async getGroup(groupId: string): Promise<Group> {
161
+ const response = await this.callApi('get_group_info', {
162
+ group_id: parseInt(groupId)
163
+ });
164
+
165
+ return {
166
+ group_id: groupId,
167
+ group_name: response.group_name,
168
+ member_count: response.member_count
169
+ };
170
+ }
171
+
172
+ private async callApi(action: string, params: any = {}): Promise<any> {
173
+ if (!this.ws || this.ws.readyState !== WebSocket.OPEN) {
174
+ throw new Error('WebSocket is not connected');
175
+ }
176
+
177
+ const echo = `req_${++this.requestId}`;
178
+ const message = {
179
+ action,
180
+ params,
181
+ echo
182
+ };
183
+
184
+ return new Promise((resolve, reject) => {
185
+ const timeout = setTimeout(() => {
186
+ this.pendingRequests.delete(echo);
187
+ reject(new Error(`API call timeout: ${action}`));
188
+ }, 30000); // 30秒超时
189
+
190
+ this.pendingRequests.set(echo, { resolve, reject, timeout });
191
+ this.ws!.send(JSON.stringify(message));
192
+ });
193
+ }
194
+
195
+ private handleWebSocketMessage(message: any): void {
196
+ // 处理API响应
197
+ if (message.echo && this.pendingRequests.has(message.echo)) {
198
+ const request = this.pendingRequests.get(message.echo)!;
199
+ this.pendingRequests.delete(message.echo);
200
+ clearTimeout(request.timeout);
201
+
202
+ const response = message as ApiResponse;
203
+ if (response.status === 'ok') {
204
+ return request.resolve(response.data);
205
+ }
206
+ return request.reject(new Error(`API error: ${response.retcode}`));
207
+ }
208
+
209
+ // 处理事件消息
210
+ if (message.post_type === 'message') {
211
+ this.handleOneBot11Message(message);
212
+ } else if (message.post_type === 'meta_event' && message.meta_event_type === 'heartbeat') {
213
+ // 心跳消息,暂时忽略
214
+ }
215
+ }
216
+
217
+ private handleOneBot11Message(onebotMsg: OneBot11Message): void {
218
+ const message: Message = {
219
+ id: onebotMsg.message_id.toString(),
220
+ adapter:'onebot11',
221
+ bot:`${this.config.name}`,
222
+ sender:{
223
+ id:onebotMsg.user_id.toString(),
224
+ name:onebotMsg.user_id.toString()
225
+ },
226
+ channel:{
227
+ id:(onebotMsg.group_id||onebotMsg.user_id).toString(),
228
+ type:onebotMsg.group_id?'group':'private'
229
+ },
230
+ content: onebotMsg.message,
231
+ raw: onebotMsg.raw_message,
232
+ timestamp: onebotMsg.time,
233
+ reply:async (content: MessageSegment[], quote?: boolean|string):Promise<void>=> {
234
+ if(quote) content.unshift({type:'reply',data:{message_id:message.id}})
235
+ this.plugin.dispatch('message.send',{
236
+ ...message.channel,
237
+ context:'onebot11',
238
+ bot:`${this.config.name}`,
239
+ content
240
+ })
241
+ }
242
+ };
243
+ this.plugin.dispatch('message.receive',message)
244
+ this.plugin.logger.info(`recv ${message.channel.type}(${message.channel.id}):`,message.content)
245
+ this.plugin.dispatch(`message.${message.channel.type}.receive`,message)
246
+ }
247
+
248
+ private startHeartbeat(): void {
249
+ const interval = this.config.heartbeat_interval || 30000;
250
+ this.heartbeatTimer = setInterval(() => {
251
+ if (this.ws && this.ws.readyState === WebSocket.OPEN) {
252
+ this.ws.ping();
253
+ }
254
+ }, interval);
255
+ }
256
+
257
+ private scheduleReconnect(): void {
258
+ if (this.reconnectTimer) {
259
+ return;
260
+ }
261
+
262
+ const interval = this.config.reconnect_interval || 5000;
263
+ this.reconnectTimer = setTimeout(async () => {
264
+ this.reconnectTimer = undefined;
265
+ try {
266
+ await this.connect();
267
+ } catch (error) {
268
+ this.emit('error',new Error(`Reconnection failed: ${error}`));
269
+ this.scheduleReconnect();
270
+ }
271
+ }, interval);
272
+ }
273
+ }
274
+ registerAdapter(new Adapter('onebot11',OneBot11WsClient))
package/tsconfig.json ADDED
@@ -0,0 +1,25 @@
1
+ {
2
+ "compilerOptions": {
3
+ "target": "ES2022",
4
+ "module": "ESNext",
5
+ "moduleResolution": "node",
6
+ "outDir": "./dist",
7
+ "rootDir": "./src",
8
+ "strict": true,
9
+ "esModuleInterop": true,
10
+ "skipLibCheck": true,
11
+ "forceConsistentCasingInFileNames": true,
12
+ "resolveJsonModule": true,
13
+ "isolatedModules": true,
14
+ "allowSyntheticDefaultImports": true,
15
+ "experimentalDecorators": true,
16
+ "emitDecoratorMetadata": true,
17
+ "declaration": true,
18
+ "declarationMap": true,
19
+ "sourceMap": true,
20
+ "composite": true,
21
+ "verbatimModuleSyntax": false
22
+ },
23
+ "include": ["src/**/*"],
24
+ "exclude": ["dist", "node_modules"]
25
+ }
@@ -0,0 +1 @@
1
+ {"fileNames":["../../node_modules/.pnpm/typescript@5.8.3/node_modules/typescript/lib/lib.es5.d.ts","../../node_modules/.pnpm/typescript@5.8.3/node_modules/typescript/lib/lib.es2015.d.ts","../../node_modules/.pnpm/typescript@5.8.3/node_modules/typescript/lib/lib.es2016.d.ts","../../node_modules/.pnpm/typescript@5.8.3/node_modules/typescript/lib/lib.es2017.d.ts","../../node_modules/.pnpm/typescript@5.8.3/node_modules/typescript/lib/lib.es2018.d.ts","../../node_modules/.pnpm/typescript@5.8.3/node_modules/typescript/lib/lib.es2019.d.ts","../../node_modules/.pnpm/typescript@5.8.3/node_modules/typescript/lib/lib.es2020.d.ts","../../node_modules/.pnpm/typescript@5.8.3/node_modules/typescript/lib/lib.es2021.d.ts","../../node_modules/.pnpm/typescript@5.8.3/node_modules/typescript/lib/lib.es2022.d.ts","../../node_modules/.pnpm/typescript@5.8.3/node_modules/typescript/lib/lib.dom.d.ts","../../node_modules/.pnpm/typescript@5.8.3/node_modules/typescript/lib/lib.dom.iterable.d.ts","../../node_modules/.pnpm/typescript@5.8.3/node_modules/typescript/lib/lib.dom.asynciterable.d.ts","../../node_modules/.pnpm/typescript@5.8.3/node_modules/typescript/lib/lib.webworker.importscripts.d.ts","../../node_modules/.pnpm/typescript@5.8.3/node_modules/typescript/lib/lib.scripthost.d.ts","../../node_modules/.pnpm/typescript@5.8.3/node_modules/typescript/lib/lib.es2015.core.d.ts","../../node_modules/.pnpm/typescript@5.8.3/node_modules/typescript/lib/lib.es2015.collection.d.ts","../../node_modules/.pnpm/typescript@5.8.3/node_modules/typescript/lib/lib.es2015.generator.d.ts","../../node_modules/.pnpm/typescript@5.8.3/node_modules/typescript/lib/lib.es2015.iterable.d.ts","../../node_modules/.pnpm/typescript@5.8.3/node_modules/typescript/lib/lib.es2015.promise.d.ts","../../node_modules/.pnpm/typescript@5.8.3/node_modules/typescript/lib/lib.es2015.proxy.d.ts","../../node_modules/.pnpm/typescript@5.8.3/node_modules/typescript/lib/lib.es2015.reflect.d.ts","../../node_modules/.pnpm/typescript@5.8.3/node_modules/typescript/lib/lib.es2015.symbol.d.ts","../../node_modules/.pnpm/typescript@5.8.3/node_modules/typescript/lib/lib.es2015.symbol.wellknown.d.ts","../../node_modules/.pnpm/typescript@5.8.3/node_modules/typescript/lib/lib.es2016.array.include.d.ts","../../node_modules/.pnpm/typescript@5.8.3/node_modules/typescript/lib/lib.es2016.intl.d.ts","../../node_modules/.pnpm/typescript@5.8.3/node_modules/typescript/lib/lib.es2017.arraybuffer.d.ts","../../node_modules/.pnpm/typescript@5.8.3/node_modules/typescript/lib/lib.es2017.date.d.ts","../../node_modules/.pnpm/typescript@5.8.3/node_modules/typescript/lib/lib.es2017.object.d.ts","../../node_modules/.pnpm/typescript@5.8.3/node_modules/typescript/lib/lib.es2017.sharedmemory.d.ts","../../node_modules/.pnpm/typescript@5.8.3/node_modules/typescript/lib/lib.es2017.string.d.ts","../../node_modules/.pnpm/typescript@5.8.3/node_modules/typescript/lib/lib.es2017.intl.d.ts","../../node_modules/.pnpm/typescript@5.8.3/node_modules/typescript/lib/lib.es2017.typedarrays.d.ts","../../node_modules/.pnpm/typescript@5.8.3/node_modules/typescript/lib/lib.es2018.asyncgenerator.d.ts","../../node_modules/.pnpm/typescript@5.8.3/node_modules/typescript/lib/lib.es2018.asynciterable.d.ts","../../node_modules/.pnpm/typescript@5.8.3/node_modules/typescript/lib/lib.es2018.intl.d.ts","../../node_modules/.pnpm/typescript@5.8.3/node_modules/typescript/lib/lib.es2018.promise.d.ts","../../node_modules/.pnpm/typescript@5.8.3/node_modules/typescript/lib/lib.es2018.regexp.d.ts","../../node_modules/.pnpm/typescript@5.8.3/node_modules/typescript/lib/lib.es2019.array.d.ts","../../node_modules/.pnpm/typescript@5.8.3/node_modules/typescript/lib/lib.es2019.object.d.ts","../../node_modules/.pnpm/typescript@5.8.3/node_modules/typescript/lib/lib.es2019.string.d.ts","../../node_modules/.pnpm/typescript@5.8.3/node_modules/typescript/lib/lib.es2019.symbol.d.ts","../../node_modules/.pnpm/typescript@5.8.3/node_modules/typescript/lib/lib.es2019.intl.d.ts","../../node_modules/.pnpm/typescript@5.8.3/node_modules/typescript/lib/lib.es2020.bigint.d.ts","../../node_modules/.pnpm/typescript@5.8.3/node_modules/typescript/lib/lib.es2020.date.d.ts","../../node_modules/.pnpm/typescript@5.8.3/node_modules/typescript/lib/lib.es2020.promise.d.ts","../../node_modules/.pnpm/typescript@5.8.3/node_modules/typescript/lib/lib.es2020.sharedmemory.d.ts","../../node_modules/.pnpm/typescript@5.8.3/node_modules/typescript/lib/lib.es2020.string.d.ts","../../node_modules/.pnpm/typescript@5.8.3/node_modules/typescript/lib/lib.es2020.symbol.wellknown.d.ts","../../node_modules/.pnpm/typescript@5.8.3/node_modules/typescript/lib/lib.es2020.intl.d.ts","../../node_modules/.pnpm/typescript@5.8.3/node_modules/typescript/lib/lib.es2020.number.d.ts","../../node_modules/.pnpm/typescript@5.8.3/node_modules/typescript/lib/lib.es2021.promise.d.ts","../../node_modules/.pnpm/typescript@5.8.3/node_modules/typescript/lib/lib.es2021.string.d.ts","../../node_modules/.pnpm/typescript@5.8.3/node_modules/typescript/lib/lib.es2021.weakref.d.ts","../../node_modules/.pnpm/typescript@5.8.3/node_modules/typescript/lib/lib.es2021.intl.d.ts","../../node_modules/.pnpm/typescript@5.8.3/node_modules/typescript/lib/lib.es2022.array.d.ts","../../node_modules/.pnpm/typescript@5.8.3/node_modules/typescript/lib/lib.es2022.error.d.ts","../../node_modules/.pnpm/typescript@5.8.3/node_modules/typescript/lib/lib.es2022.intl.d.ts","../../node_modules/.pnpm/typescript@5.8.3/node_modules/typescript/lib/lib.es2022.object.d.ts","../../node_modules/.pnpm/typescript@5.8.3/node_modules/typescript/lib/lib.es2022.string.d.ts","../../node_modules/.pnpm/typescript@5.8.3/node_modules/typescript/lib/lib.es2022.regexp.d.ts","../../node_modules/.pnpm/typescript@5.8.3/node_modules/typescript/lib/lib.esnext.disposable.d.ts","../../node_modules/.pnpm/typescript@5.8.3/node_modules/typescript/lib/lib.esnext.float16.d.ts","../../node_modules/.pnpm/typescript@5.8.3/node_modules/typescript/lib/lib.decorators.d.ts","../../node_modules/.pnpm/typescript@5.8.3/node_modules/typescript/lib/lib.decorators.legacy.d.ts","../../node_modules/.pnpm/typescript@5.8.3/node_modules/typescript/lib/lib.es2022.full.d.ts","../../node_modules/.pnpm/@types+node@24.2.1/node_modules/@types/node/compatibility/iterators.d.ts","../../node_modules/.pnpm/@types+node@24.2.1/node_modules/@types/node/globals.typedarray.d.ts","../../node_modules/.pnpm/@types+node@24.2.1/node_modules/@types/node/buffer.buffer.d.ts","../../node_modules/.pnpm/buffer@5.7.1/node_modules/buffer/index.d.ts","../../node_modules/.pnpm/undici-types@7.10.0/node_modules/undici-types/utility.d.ts","../../node_modules/.pnpm/undici-types@7.10.0/node_modules/undici-types/header.d.ts","../../node_modules/.pnpm/undici-types@7.10.0/node_modules/undici-types/readable.d.ts","../../node_modules/.pnpm/undici-types@7.10.0/node_modules/undici-types/fetch.d.ts","../../node_modules/.pnpm/undici-types@7.10.0/node_modules/undici-types/formdata.d.ts","../../node_modules/.pnpm/undici-types@7.10.0/node_modules/undici-types/connector.d.ts","../../node_modules/.pnpm/undici-types@7.10.0/node_modules/undici-types/client-stats.d.ts","../../node_modules/.pnpm/undici-types@7.10.0/node_modules/undici-types/client.d.ts","../../node_modules/.pnpm/undici-types@7.10.0/node_modules/undici-types/errors.d.ts","../../node_modules/.pnpm/undici-types@7.10.0/node_modules/undici-types/dispatcher.d.ts","../../node_modules/.pnpm/undici-types@7.10.0/node_modules/undici-types/global-dispatcher.d.ts","../../node_modules/.pnpm/undici-types@7.10.0/node_modules/undici-types/global-origin.d.ts","../../node_modules/.pnpm/undici-types@7.10.0/node_modules/undici-types/pool-stats.d.ts","../../node_modules/.pnpm/undici-types@7.10.0/node_modules/undici-types/pool.d.ts","../../node_modules/.pnpm/undici-types@7.10.0/node_modules/undici-types/handlers.d.ts","../../node_modules/.pnpm/undici-types@7.10.0/node_modules/undici-types/balanced-pool.d.ts","../../node_modules/.pnpm/undici-types@7.10.0/node_modules/undici-types/h2c-client.d.ts","../../node_modules/.pnpm/undici-types@7.10.0/node_modules/undici-types/agent.d.ts","../../node_modules/.pnpm/undici-types@7.10.0/node_modules/undici-types/mock-interceptor.d.ts","../../node_modules/.pnpm/undici-types@7.10.0/node_modules/undici-types/mock-call-history.d.ts","../../node_modules/.pnpm/undici-types@7.10.0/node_modules/undici-types/mock-agent.d.ts","../../node_modules/.pnpm/undici-types@7.10.0/node_modules/undici-types/mock-client.d.ts","../../node_modules/.pnpm/undici-types@7.10.0/node_modules/undici-types/mock-pool.d.ts","../../node_modules/.pnpm/undici-types@7.10.0/node_modules/undici-types/mock-errors.d.ts","../../node_modules/.pnpm/undici-types@7.10.0/node_modules/undici-types/proxy-agent.d.ts","../../node_modules/.pnpm/undici-types@7.10.0/node_modules/undici-types/env-http-proxy-agent.d.ts","../../node_modules/.pnpm/undici-types@7.10.0/node_modules/undici-types/retry-handler.d.ts","../../node_modules/.pnpm/undici-types@7.10.0/node_modules/undici-types/retry-agent.d.ts","../../node_modules/.pnpm/undici-types@7.10.0/node_modules/undici-types/api.d.ts","../../node_modules/.pnpm/undici-types@7.10.0/node_modules/undici-types/cache-interceptor.d.ts","../../node_modules/.pnpm/undici-types@7.10.0/node_modules/undici-types/interceptors.d.ts","../../node_modules/.pnpm/undici-types@7.10.0/node_modules/undici-types/util.d.ts","../../node_modules/.pnpm/undici-types@7.10.0/node_modules/undici-types/cookies.d.ts","../../node_modules/.pnpm/undici-types@7.10.0/node_modules/undici-types/patch.d.ts","../../node_modules/.pnpm/undici-types@7.10.0/node_modules/undici-types/websocket.d.ts","../../node_modules/.pnpm/undici-types@7.10.0/node_modules/undici-types/eventsource.d.ts","../../node_modules/.pnpm/undici-types@7.10.0/node_modules/undici-types/diagnostics-channel.d.ts","../../node_modules/.pnpm/undici-types@7.10.0/node_modules/undici-types/content-type.d.ts","../../node_modules/.pnpm/undici-types@7.10.0/node_modules/undici-types/cache.d.ts","../../node_modules/.pnpm/undici-types@7.10.0/node_modules/undici-types/index.d.ts","../../node_modules/.pnpm/@types+node@24.2.1/node_modules/@types/node/globals.d.ts","../../node_modules/.pnpm/@types+node@24.2.1/node_modules/@types/node/assert.d.ts","../../node_modules/.pnpm/@types+node@24.2.1/node_modules/@types/node/assert/strict.d.ts","../../node_modules/.pnpm/@types+node@24.2.1/node_modules/@types/node/async_hooks.d.ts","../../node_modules/.pnpm/@types+node@24.2.1/node_modules/@types/node/buffer.d.ts","../../node_modules/.pnpm/@types+node@24.2.1/node_modules/@types/node/child_process.d.ts","../../node_modules/.pnpm/@types+node@24.2.1/node_modules/@types/node/cluster.d.ts","../../node_modules/.pnpm/@types+node@24.2.1/node_modules/@types/node/console.d.ts","../../node_modules/.pnpm/@types+node@24.2.1/node_modules/@types/node/constants.d.ts","../../node_modules/.pnpm/@types+node@24.2.1/node_modules/@types/node/crypto.d.ts","../../node_modules/.pnpm/@types+node@24.2.1/node_modules/@types/node/dgram.d.ts","../../node_modules/.pnpm/@types+node@24.2.1/node_modules/@types/node/diagnostics_channel.d.ts","../../node_modules/.pnpm/@types+node@24.2.1/node_modules/@types/node/dns.d.ts","../../node_modules/.pnpm/@types+node@24.2.1/node_modules/@types/node/dns/promises.d.ts","../../node_modules/.pnpm/@types+node@24.2.1/node_modules/@types/node/domain.d.ts","../../node_modules/.pnpm/@types+node@24.2.1/node_modules/@types/node/dom-events.d.ts","../../node_modules/.pnpm/@types+node@24.2.1/node_modules/@types/node/events.d.ts","../../node_modules/.pnpm/@types+node@24.2.1/node_modules/@types/node/fs.d.ts","../../node_modules/.pnpm/@types+node@24.2.1/node_modules/@types/node/fs/promises.d.ts","../../node_modules/.pnpm/@types+node@24.2.1/node_modules/@types/node/http.d.ts","../../node_modules/.pnpm/@types+node@24.2.1/node_modules/@types/node/http2.d.ts","../../node_modules/.pnpm/@types+node@24.2.1/node_modules/@types/node/https.d.ts","../../node_modules/.pnpm/@types+node@24.2.1/node_modules/@types/node/inspector.d.ts","../../node_modules/.pnpm/@types+node@24.2.1/node_modules/@types/node/module.d.ts","../../node_modules/.pnpm/@types+node@24.2.1/node_modules/@types/node/net.d.ts","../../node_modules/.pnpm/@types+node@24.2.1/node_modules/@types/node/os.d.ts","../../node_modules/.pnpm/@types+node@24.2.1/node_modules/@types/node/path.d.ts","../../node_modules/.pnpm/@types+node@24.2.1/node_modules/@types/node/perf_hooks.d.ts","../../node_modules/.pnpm/@types+node@24.2.1/node_modules/@types/node/process.d.ts","../../node_modules/.pnpm/@types+node@24.2.1/node_modules/@types/node/punycode.d.ts","../../node_modules/.pnpm/@types+node@24.2.1/node_modules/@types/node/querystring.d.ts","../../node_modules/.pnpm/@types+node@24.2.1/node_modules/@types/node/readline.d.ts","../../node_modules/.pnpm/@types+node@24.2.1/node_modules/@types/node/readline/promises.d.ts","../../node_modules/.pnpm/@types+node@24.2.1/node_modules/@types/node/repl.d.ts","../../node_modules/.pnpm/@types+node@24.2.1/node_modules/@types/node/sea.d.ts","../../node_modules/.pnpm/@types+node@24.2.1/node_modules/@types/node/sqlite.d.ts","../../node_modules/.pnpm/@types+node@24.2.1/node_modules/@types/node/stream.d.ts","../../node_modules/.pnpm/@types+node@24.2.1/node_modules/@types/node/stream/promises.d.ts","../../node_modules/.pnpm/@types+node@24.2.1/node_modules/@types/node/stream/consumers.d.ts","../../node_modules/.pnpm/@types+node@24.2.1/node_modules/@types/node/stream/web.d.ts","../../node_modules/.pnpm/@types+node@24.2.1/node_modules/@types/node/string_decoder.d.ts","../../node_modules/.pnpm/@types+node@24.2.1/node_modules/@types/node/test.d.ts","../../node_modules/.pnpm/@types+node@24.2.1/node_modules/@types/node/timers.d.ts","../../node_modules/.pnpm/@types+node@24.2.1/node_modules/@types/node/timers/promises.d.ts","../../node_modules/.pnpm/@types+node@24.2.1/node_modules/@types/node/tls.d.ts","../../node_modules/.pnpm/@types+node@24.2.1/node_modules/@types/node/trace_events.d.ts","../../node_modules/.pnpm/@types+node@24.2.1/node_modules/@types/node/tty.d.ts","../../node_modules/.pnpm/@types+node@24.2.1/node_modules/@types/node/url.d.ts","../../node_modules/.pnpm/@types+node@24.2.1/node_modules/@types/node/util.d.ts","../../node_modules/.pnpm/@types+node@24.2.1/node_modules/@types/node/v8.d.ts","../../node_modules/.pnpm/@types+node@24.2.1/node_modules/@types/node/vm.d.ts","../../node_modules/.pnpm/@types+node@24.2.1/node_modules/@types/node/wasi.d.ts","../../node_modules/.pnpm/@types+node@24.2.1/node_modules/@types/node/worker_threads.d.ts","../../node_modules/.pnpm/@types+node@24.2.1/node_modules/@types/node/zlib.d.ts","../../node_modules/.pnpm/@types+node@24.2.1/node_modules/@types/node/index.d.ts","../../node_modules/.pnpm/@types+ws@8.18.1/node_modules/@types/ws/index.d.ts","../../packages/types/dist/index.d.ts","../../packages/core/dist/types.d.ts","../../packages/core/dist/bot.d.ts","../../packages/core/dist/config.d.ts","../../packages/hmr/dist/dependency.d.ts","../../packages/hmr/dist/types.d.ts","../../packages/hmr/dist/utils.d.ts","../../packages/hmr/dist/file-watcher.d.ts","../../packages/hmr/dist/module-loader.d.ts","../../packages/hmr/dist/performance.d.ts","../../packages/hmr/dist/reload-manager.d.ts","../../packages/hmr/dist/hmr.d.ts","../../packages/hmr/dist/index.d.ts","../../packages/core/dist/app.d.ts","../../packages/core/dist/plugin.d.ts","../../packages/core/dist/adapter.d.ts","../../packages/core/dist/index.d.ts","../../packages/zhin/dist/index.d.ts","./src/index.ts","../../node_modules/@types/json-schema/index.d.ts","../../node_modules/@types/semver/classes/semver.d.ts","../../node_modules/@types/semver/functions/parse.d.ts","../../node_modules/@types/semver/functions/valid.d.ts","../../node_modules/@types/semver/functions/clean.d.ts","../../node_modules/@types/semver/functions/inc.d.ts","../../node_modules/@types/semver/functions/diff.d.ts","../../node_modules/@types/semver/functions/major.d.ts","../../node_modules/@types/semver/functions/minor.d.ts","../../node_modules/@types/semver/functions/patch.d.ts","../../node_modules/@types/semver/functions/prerelease.d.ts","../../node_modules/@types/semver/functions/compare.d.ts","../../node_modules/@types/semver/functions/rcompare.d.ts","../../node_modules/@types/semver/functions/compare-loose.d.ts","../../node_modules/@types/semver/functions/compare-build.d.ts","../../node_modules/@types/semver/functions/sort.d.ts","../../node_modules/@types/semver/functions/rsort.d.ts","../../node_modules/@types/semver/functions/gt.d.ts","../../node_modules/@types/semver/functions/lt.d.ts","../../node_modules/@types/semver/functions/eq.d.ts","../../node_modules/@types/semver/functions/neq.d.ts","../../node_modules/@types/semver/functions/gte.d.ts","../../node_modules/@types/semver/functions/lte.d.ts","../../node_modules/@types/semver/functions/cmp.d.ts","../../node_modules/@types/semver/functions/coerce.d.ts","../../node_modules/@types/semver/classes/comparator.d.ts","../../node_modules/@types/semver/classes/range.d.ts","../../node_modules/@types/semver/functions/satisfies.d.ts","../../node_modules/@types/semver/ranges/max-satisfying.d.ts","../../node_modules/@types/semver/ranges/min-satisfying.d.ts","../../node_modules/@types/semver/ranges/to-comparators.d.ts","../../node_modules/@types/semver/ranges/min-version.d.ts","../../node_modules/@types/semver/ranges/valid.d.ts","../../node_modules/@types/semver/ranges/outside.d.ts","../../node_modules/@types/semver/ranges/gtr.d.ts","../../node_modules/@types/semver/ranges/ltr.d.ts","../../node_modules/@types/semver/ranges/intersects.d.ts","../../node_modules/@types/semver/ranges/simplify.d.ts","../../node_modules/@types/semver/ranges/subset.d.ts","../../node_modules/@types/semver/internals/identifiers.d.ts","../../node_modules/@types/semver/index.d.ts"],"fileIdsList":[[68,114,126,165,166,183],[68,111,114],[68,113,114],[114],[68,114,119,149],[68,114,115,120,126,127,134,146,157],[68,114,115,116,126,134],[68,114],[68,114,117,158],[68,114,118,119,127,135],[68,114,119,146,154],[68,114,120,122,126,134],[68,113,114,121],[68,114,122,123],[68,114,124,126],[68,113,114,126],[68,114,126,127,128,146,157],[68,114,126,127,128,141,146,149],[68,109,114],[68,109,114,122,126,129,134,146,157],[68,114,126,127,129,130,134,146,154,157],[68,114,129,131,146,154,157],[66,67,68,110,111,112,113,114,115,116,117,118,119,120,121,122,123,124,125,126,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],[68,114,126,132],[68,114,133,157],[68,114,122,126,134,146],[68,114,135],[68,114,136],[68,113,114,137],[68,111,112,113,114,115,116,117,118,119,120,121,122,123,124,126,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],[68,114,139],[68,114,140],[68,114,126,141,142],[68,114,141,143,158,160],[68,114,126,146,147,149],[68,114,148,149],[68,114,146,147],[68,114,149],[68,114,150],[68,111,114,146,151],[68,114,126,152,153],[68,114,152,153],[68,114,119,134,146,154],[68,114,155],[68,114,134,156],[68,114,129,140,157],[68,114,119,158],[68,114,146,159],[68,114,133,160],[68,114,161],[68,114,126,128,137,146,149,157,159,160,162],[68,114,146,163],[68,114,126,129,131,134,146,154,157,163,164],[68,76,79,82,83,114,157],[68,79,114,146,157],[68,79,83,114,157],[68,114,146],[68,73,114],[68,77,114],[68,75,76,79,114,157],[68,114,134,154],[68,114,164],[68,73,114,164],[68,75,79,114,134,157],[68,70,71,72,74,78,114,126,146,157],[68,79,87,114],[68,71,77,114],[68,79,103,104,114],[68,71,74,79,114,149,157,164],[68,79,114],[68,75,79,114,157],[68,70,114],[68,73,74,75,77,78,79,80,81,83,84,85,86,87,88,89,90,91,92,93,94,95,96,97,98,99,100,101,102,104,105,106,107,108,114],[68,79,96,99,114,122],[68,79,87,88,89,114],[68,77,79,88,90,114],[68,78,114],[68,71,73,79,114],[68,79,83,88,90,114],[68,83,114],[68,77,79,82,114,157],[68,71,75,79,87,114],[68,79,96,114],[68,73,79,103,114,149,162,164],[68,114,186,225],[68,114,186,210,225],[68,114,225],[68,114,186],[68,114,186,211,225],[68,114,186,187,188,189,190,191,192,193,194,195,196,197,198,199,200,201,202,203,204,205,206,207,208,209,210,211,212,213,214,215,216,217,218,219,220,221,222,223,224],[68,114,211,225],[68,114,167,168,180],[68,114,166,167,178,180,181,184],[68,114,167],[68,114,167,168,169,178,179,180,181],[68,114,166,167,178,179,184],[68,114,166,184],[68,114,126,166,171,184],[68,114,126,171],[68,114,170,171,173,174,175,176],[68,114,170,171,172,173,174,175,176,177],[68,114,126,170,171,177],[68,114,170],[68,114,171],[68,114,182]],"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":"feecb1be483ed332fad555aff858affd90a48ab19ba7272ee084704eb7167569","impliedFormat":1},{"version":"ee7bad0c15b58988daa84371e0b89d313b762ab83cb5b31b8a2d1162e8eb41c2","impliedFormat":1},{"version":"092c2bfe125ce69dbb1223c85d68d4d2397d7d8411867b5cc03cec902c233763","affectsGlobalScope":true,"impliedFormat":1},{"version":"07f073f19d67f74d732b1adea08e1dc66b1b58d77cb5b43931dee3d798a2fd53","affectsGlobalScope":true,"impliedFormat":1},{"version":"d7a3c8b952931daebdfc7a2897c53c0a1c73624593fa070e46bd537e64dcd20a","affectsGlobalScope":true,"impliedFormat":1},{"version":"80e18897e5884b6723488d4f5652167e7bb5024f946743134ecc4aa4ee731f89","affectsGlobalScope":true,"impliedFormat":1},{"version":"cd034f499c6cdca722b60c04b5b1b78e058487a7085a8e0d6fb50809947ee573","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":"af3dd424cf267428f30ccfc376f47a2c0114546b55c44d8c0f1d57d841e28d74","affectsGlobalScope":true,"impliedFormat":1},{"version":"995c005ab91a498455ea8dfb63aa9f83fa2ea793c3d8aa344be4a1678d06d399","affectsGlobalScope":true,"impliedFormat":1},{"version":"959d36cddf5e7d572a65045b876f2956c973a586da58e5d26cde519184fd9b8a","affectsGlobalScope":true,"impliedFormat":1},{"version":"965f36eae237dd74e6cca203a43e9ca801ce38824ead814728a2807b1910117d","affectsGlobalScope":true,"impliedFormat":1},{"version":"3925a6c820dcb1a06506c90b1577db1fdbf7705d65b62b99dce4be75c637e26b","affectsGlobalScope":true,"impliedFormat":1},{"version":"0a3d63ef2b853447ec4f749d3f368ce642264246e02911fcb1590d8c161b8005","affectsGlobalScope":true,"impliedFormat":1},{"version":"b5ce7a470bc3628408429040c4e3a53a27755022a32fd05e2cb694e7015386c7","affectsGlobalScope":true,"impliedFormat":1},{"version":"8444af78980e3b20b49324f4a16ba35024fef3ee069a0eb67616ea6ca821c47a","affectsGlobalScope":true,"impliedFormat":1},{"version":"3287d9d085fbd618c3971944b65b4be57859f5415f495b33a6adc994edd2f004","affectsGlobalScope":true,"impliedFormat":1},{"version":"b4b67b1a91182421f5df999988c690f14d813b9850b40acd06ed44691f6727ad","affectsGlobalScope":true,"impliedFormat":1},{"version":"51ad4c928303041605b4d7ae32e0c1ee387d43a24cd6f1ebf4a2699e1076d4fa","affectsGlobalScope":true,"impliedFormat":1},{"version":"4245fee526a7d1754529d19227ecbf3be066ff79ebb6a380d78e41648f2f224d","affectsGlobalScope":true,"impliedFormat":1},{"version":"8e7f8264d0fb4c5339605a15daadb037bf238c10b654bb3eee14208f860a32ea","affectsGlobalScope":true,"impliedFormat":1},{"version":"782dec38049b92d4e85c1585fbea5474a219c6984a35b004963b00beb1aab538","affectsGlobalScope":true,"impliedFormat":1},{"version":"3cbad9a1ba4453443026ed38e4b8be018abb26565fa7c944376463ad9df07c41","impliedFormat":1},{"version":"d153a11543fd884b596587ccd97aebbeed950b26933ee000f94009f1ab142848","affectsGlobalScope":true,"impliedFormat":1},{"version":"c0671b50bb99cc7ad46e9c68fa0e7f15ba4bc898b59c31a17ea4611fab5095da","affectsGlobalScope":true,"impliedFormat":1},{"version":"d802f0e6b5188646d307f070d83512e8eb94651858de8a82d1e47f60fb6da4e2","affectsGlobalScope":true,"impliedFormat":1},{"version":"8e9c23ba78aabc2e0a27033f18737a6df754067731e69dc5f52823957d60a4b6","impliedFormat":1},{"version":"cdcf9ea426ad970f96ac930cd176d5c69c6c24eebd9fc580e1572d6c6a88f62c","impliedFormat":1},{"version":"23cd712e2ce083d68afe69224587438e5914b457b8acf87073c22494d706a3d0","impliedFormat":1},{"version":"487b694c3de27ddf4ad107d4007ad304d29effccf9800c8ae23c2093638d906a","impliedFormat":1},{"version":"e525f9e67f5ddba7b5548430211cae2479070b70ef1fd93550c96c10529457bd","impliedFormat":1},{"version":"ccf4552357ce3c159ef75f0f0114e80401702228f1898bdc9402214c9499e8c0","impliedFormat":1},{"version":"c6fd2c5a395f2432786c9cb8deb870b9b0e8ff7e22c029954fabdd692bff6195","impliedFormat":1},{"version":"68834d631c8838c715f225509cfc3927913b9cc7a4870460b5b60c8dbdb99baf","impliedFormat":1},{"version":"4bc0794175abedf989547e628949888c1085b1efcd93fc482bccd77ee27f8b7c","impliedFormat":1},{"version":"3c8e93af4d6ce21eb4c8d005ad6dc02e7b5e6781f429d52a35290210f495a674","impliedFormat":1},{"version":"2c9875466123715464539bfd69bcaccb8ff6f3e217809428e0d7bd6323416d01","impliedFormat":1},{"version":"ea6bc8de8b59f90a7a3960005fd01988f98fd0784e14bc6922dde2e93305ec7d","impliedFormat":1},{"version":"36107995674b29284a115e21a0618c4c2751b32a8766dd4cb3ba740308b16d59","impliedFormat":1},{"version":"914a0ae30d96d71915fc519ccb4efbf2b62c0ddfb3a3fc6129151076bc01dc60","impliedFormat":1},{"version":"33e981bf6376e939f99bd7f89abec757c64897d33c005036b9a10d9587d80187","impliedFormat":1},{"version":"6c8e442ba33b07892169a14f7757321e49ab0f1032d676d321a1fdab8a67d40c","impliedFormat":1},{"version":"b41767d372275c154c7ea6c9d5449d9a741b8ce080f640155cc88ba1763e35b3","impliedFormat":1},{"version":"1cd673d367293fc5cb31cd7bf03d598eb368e4f31f39cf2b908abbaf120ab85a","impliedFormat":1},{"version":"af13e99445f37022c730bfcafcdc1761e9382ce1ea02afb678e3130b01ce5676","impliedFormat":1},{"version":"3825bf209f1662dfd039010a27747b73d0ef379f79970b1d05601ec8e8a4249f","impliedFormat":1},{"version":"0b6e25234b4eec6ed96ab138d96eb70b135690d7dd01f3dd8a8ab291c35a683a","impliedFormat":1},{"version":"9666f2f84b985b62400d2e5ab0adae9ff44de9b2a34803c2c5bd3c8325b17dc0","impliedFormat":1},{"version":"da52342062e70c77213e45107921100ba9f9b3a30dd019444cf349e5fb3470c4","impliedFormat":1},{"version":"e9ace91946385d29192766bf783b8460c7dbcbfc63284aa3c9cae6de5155c8bc","impliedFormat":1},{"version":"40b463c6766ca1b689bfcc46d26b5e295954f32ad43e37ee6953c0a677e4ae2b","impliedFormat":1},{"version":"249b9cab7f5d628b71308c7d9bb0a808b50b091e640ba3ed6e2d0516f4a8d91d","impliedFormat":1},{"version":"1e30c045732e7db8f7a82cf90b516ebe693d2f499ce2250a977ec0d12e44a529","impliedFormat":1},{"version":"84b736594d8760f43400202859cda55607663090a43445a078963031d47e25e7","impliedFormat":1},{"version":"499e5b055a5aba1e1998f7311a6c441a369831c70905cc565ceac93c28083d53","impliedFormat":1},{"version":"54c3e2371e3d016469ad959697fd257e5621e16296fa67082c2575d0bf8eced0","impliedFormat":1},{"version":"beb8233b2c220cfa0feea31fbe9218d89fa02faa81ef744be8dce5acb89bb1fd","impliedFormat":1},{"version":"78b29846349d4dfdd88bd6650cc5d2baaa67f2e89dc8a80c8e26ef7995386583","impliedFormat":1},{"version":"5d0375ca7310efb77e3ef18d068d53784faf62705e0ad04569597ae0e755c401","impliedFormat":1},{"version":"59af37caec41ecf7b2e76059c9672a49e682c1a2aa6f9d7dc78878f53aa284d6","impliedFormat":1},{"version":"addf417b9eb3f938fddf8d81e96393a165e4be0d4a8b6402292f9c634b1cb00d","impliedFormat":1},{"version":"e38d4fdf79e1eadd92ed7844c331dbaa40f29f21541cfee4e1acff4db09cda33","impliedFormat":1},{"version":"8bd86b8e8f6a6aa6c49b71e14c4ffe1211a0e97c80f08d2c8cc98838006e4b88","impliedFormat":1},{"version":"7c10a32ae6f3962672e6869ee2c794e8055d8225ef35c91c0228e354b4e5d2d3","impliedFormat":1},{"version":"2e85db9e6fd73cfa3d7f28e0ab6b55417ea18931423bd47b409a96e4a169e8e6","impliedFormat":1},{"version":"c46e079fe54c76f95c67fb89081b3e399da2c7d109e7dca8e4b58d83e332e605","impliedFormat":1},{"version":"99f569b42ea7e7c5fe404b2848c0893f3e1a56e0547c1cd0f74d5dbb9a9de27e","impliedFormat":1},{"version":"f4b4faedc57701ae727d78ba4a83e466a6e3bdcbe40efbf913b17e860642897c","affectsGlobalScope":true,"impliedFormat":1},{"version":"bbcfd9cd76d92c3ee70475270156755346c9086391e1b9cb643d072e0cf576b8","impliedFormat":1},{"version":"7394959e5a741b185456e1ef5d64599c36c60a323207450991e7a42e08911419","impliedFormat":1},{"version":"72c1f5e0a28e473026074817561d1bc9647909cf253c8d56c41d1df8d95b85f7","impliedFormat":1},{"version":"003ec918ec442c3a4db2c36dc0c9c766977ea1c8bcc1ca7c2085868727c3d3f6","affectsGlobalScope":true,"impliedFormat":1},{"version":"938f94db8400d0b479626b9006245a833d50ce8337f391085fad4af540279567","impliedFormat":1},{"version":"c4e8e8031808b158cfb5ac5c4b38d4a26659aec4b57b6a7e2ba0a141439c208c","impliedFormat":1},{"version":"2c91d8366ff2506296191c26fd97cc1990bab3ee22576275d28b654a21261a44","affectsGlobalScope":true,"impliedFormat":1},{"version":"5524481e56c48ff486f42926778c0a3cce1cc85dc46683b92b1271865bcf015a","impliedFormat":1},{"version":"db39d9a16e4ddcd8a8f2b7b3292b362cc5392f92ad7ccd76f00bccf6838ac7de","affectsGlobalScope":true,"impliedFormat":1},{"version":"289e9894a4668c61b5ffed09e196c1f0c2f87ca81efcaebdf6357cfb198dac14","impliedFormat":1},{"version":"25a1105595236f09f5bce42398be9f9ededc8d538c258579ab662d509aa3b98e","impliedFormat":1},{"version":"5078cd62dbdf91ae8b1dc90b1384dec71a9c0932d62bdafb1a811d2a8e26bef2","impliedFormat":1},{"version":"a2e2bbde231b65c53c764c12313897ffdfb6c49183dd31823ee2405f2f7b5378","impliedFormat":1},{"version":"ad1cc0ed328f3f708771272021be61ab146b32ecf2b78f3224959ff1e2cd2a5c","impliedFormat":1},{"version":"71450bbc2d82821d24ca05699a533e72758964e9852062c53b30f31c36978ab8","affectsGlobalScope":true,"impliedFormat":1},{"version":"62f572306e0b173cc5dfc4c583471151f16ef3779cf27ab96922c92ec82a3bc8","affectsGlobalScope":true,"impliedFormat":1},{"version":"067bdd82d9768baddbdc8df51d85f7b96387c47176bf7f895d2e21e2b6b2f1f4","impliedFormat":1},{"version":"42d30e7d04915facc3ded22b4127c9f517973b4c2b1326e56c10ff70daf6800a","impliedFormat":1},{"version":"bd8b644c5861b94926687618ec2c9e60ad054d334d6b7eb4517f23f53cb11f91","impliedFormat":1},{"version":"bcbabfaca3f6b8a76cb2739e57710daf70ab5c9479ab70f5351c9b4932abf6bd","impliedFormat":1},{"version":"77fced47f495f4ff29bb49c52c605c5e73cd9b47d50080133783032769a9d8a6","impliedFormat":1},{"version":"55f370475031b3d36af8dd47fb3934dff02e0f1330d13f1977c9e676af5c2e70","impliedFormat":1},{"version":"c54f0b30a787b3df16280f4675bd3d9d17bf983ae3cd40087409476bc50b922d","affectsGlobalScope":true,"impliedFormat":1},{"version":"0f5cda0282e1d18198e2887387eb2f026372ebc4e11c4e4516fef8a19ee4d514","impliedFormat":1},{"version":"e99b0e71f07128fc32583e88ccd509a1aaa9524c290efb2f48c22f9bf8ba83b1","impliedFormat":1},{"version":"76957a6d92b94b9e2852cf527fea32ad2dc0ef50f67fe2b14bd027c9ceef2d86","impliedFormat":1},{"version":"5e9f8c1e042b0f598a9be018fc8c3cb670fe579e9f2e18e3388b63327544fe16","affectsGlobalScope":true,"impliedFormat":1},{"version":"a8a99a5e6ed33c4a951b67cc1fd5b64fd6ad719f5747845c165ca12f6c21ba16","affectsGlobalScope":true,"impliedFormat":1},{"version":"a58a15da4c5ba3df60c910a043281256fa52d36a0fcdef9b9100c646282e88dd","impliedFormat":1},{"version":"b36beffbf8acdc3ebc58c8bb4b75574b31a2169869c70fc03f82895b93950a12","impliedFormat":1},{"version":"de263f0089aefbfd73c89562fb7254a7468b1f33b61839aafc3f035d60766cb4","impliedFormat":1},{"version":"70b57b5529051497e9f6482b76d91c0dcbb103d9ead8a0549f5bab8f65e5d031","impliedFormat":1},{"version":"8c81fd4a110490c43d7c578e8c6f69b3af01717189196899a6a44f93daa57a3a","impliedFormat":1},{"version":"1013eb2e2547ad8c100aca52ef9df8c3f209edee32bb387121bb3227f7c00088","impliedFormat":1},{"version":"e07c573ac1971ea89e2c56ff5fd096f6f7bba2e6dbcd5681d39257c8d954d4a8","impliedFormat":1},{"version":"363eedb495912790e867da6ff96e81bf792c8cfe386321e8163b71823a35719a","impliedFormat":1},{"version":"37ba7b45141a45ce6e80e66f2a96c8a5ab1bcef0fc2d0f56bb58df96ec67e972","impliedFormat":1},{"version":"125d792ec6c0c0f657d758055c494301cc5fdb327d9d9d5960b3f129aff76093","impliedFormat":1},{"version":"dba28a419aec76ed864ef43e5f577a5c99a010c32e5949fe4e17a4d57c58dd11","affectsGlobalScope":true,"impliedFormat":1},{"version":"ea713aa14a670b1ea0fbaaca4fd204e645f71ca7653a834a8ec07ee889c45de6","impliedFormat":1},{"version":"1e080418e53f9b7a05db81ab517c4e1d71b7194ee26ddd54016bcef3ac474bd4","impliedFormat":1},{"version":"9705cd157ffbb91c5cab48bdd2de5a437a372e63f870f8a8472e72ff634d47c1","affectsGlobalScope":true,"impliedFormat":1},{"version":"ae86f30d5d10e4f75ce8dcb6e1bd3a12ecec3d071a21e8f462c5c85c678efb41","impliedFormat":1},{"version":"982efeb2573605d4e6d5df4dc7e40846bda8b9e678e058fc99522ab6165c479e","impliedFormat":1},{"version":"e03460fe72b259f6d25ad029f085e4bedc3f90477da4401d8fbc1efa9793230e","impliedFormat":1},{"version":"4286a3a6619514fca656089aee160bb6f2e77f4dd53dc5a96b26a0b4fc778055","impliedFormat":1},{"version":"3b63610eaabadf26aadf51a563e4b2a8bf56eeaab1094f2a2b21509008eaef0c","affectsGlobalScope":true,"impliedFormat":1},{"version":"2d5d50cd0667d9710d4d2f6e077cc4e0f9dc75e106cccaea59999b36873c5a0d","affectsGlobalScope":true,"impliedFormat":1},{"version":"784490137935e1e38c49b9289110e74a1622baf8a8907888dcbe9e476d7c5e44","impliedFormat":1},{"version":"42180b657831d1b8fead051698618b31da623fb71ff37f002cb9d932cfa775f1","impliedFormat":1},{"version":"4f98d6fb4fe7cbeaa04635c6eaa119d966285d4d39f0eb55b2654187b0b27446","impliedFormat":1},{"version":"f8529fe0645fd9af7441191a4961497cc7638f75a777a56248eac6a079bb275d","affectsGlobalScope":true,"impliedFormat":1},{"version":"4445f6ce6289c5b2220398138da23752fd84152c5c95bb8b58dedefc1758c036","impliedFormat":1},{"version":"a51f786b9f3c297668f8f322a6c58f85d84948ef69ade32069d5d63ec917221c","impliedFormat":1},{"version":"1ba59c8bbeed2cb75b239bb12041582fa3e8ef32f8d0bd0ec802e38442d3f317","impliedFormat":1},"4e4c009eaa60113a5cc2e4805a32ddc67ff8681b02a95b74922806ba2ff9d7f8","1c37caad35a7799e92ff3a8a1e859fc7f2f5dab2ee6e1b9fa49f704c800d946f","2134d5d42c3e09ae2ab2a440e52e64f4ca33becc7d6c4ae20b3118a8854a53d9","13fe8b3f2c08695a96abd50ffe039147f0dd883c6ac80cd44a5c8a4d20c3b5c0","2b2442ac3bb78192dfdf3f9b6cfafb8f93eec0c7531ce401187379b9f4d9b233","49f596d3776341f8a4533cef2c746a3f922bfd9e5b1829c0c6c49453ea1bca55","bbd1e8270868cfc75853f5aadc46b0430e3bd2e0a613c5f0f748c255628e53fd","98458749468f101bf7208690332ab4c47dbad038c245250e33b171e551a9d503","2b3e2486ed30eeb2a8f0cc87cc23191b2d73833f9f2dd2e222d3cde68bdd9ea8","33aa68804ebe7671fc5ff8676b12157c43deca9220abf52aecc718c6fd412d4f","a5bcba49196e978ae1da88322f6c6ba48b468402701ff3a1bf1411704dec01fa","5e5c6c7cba4303d542dc06dbbdad2fc9fe8be349c72d2b990ec3336c393c7b06","f09979e8ff15822b2153a721ce7da608a4f23fffe6f850b9c47118967a6c30f5","399224ee0e383e0edbe387674954367481e8a5ebbbdf93fd12f688235787c718","6daf438789e31ea87c4769970f9751a9d6775d03683b9a9b69ee8c9fa1751907","7ebddeccfa0ff3ec68679cfa373d283cae8bbcf2d3a4bfac78fd6cce9e8759f7","f365aab183a0d73b8127b011adf31469546c1df4245512947670afd4924e9eb3","b0ba6358ccb9dcbdd21a994a48c1996516db3bd3db4eba6f4d2babd2abacd34c",{"version":"574dc7a9b26bf0ba1ea11f66d8ecd994890a9802bac98f858f264980f737260d","signature":"2c4ad3d8cdb0ab034e02f3adfb0f8da216eb66b8d93ebdd1644d84b80aa0d64b"},{"version":"f3d8c757e148ad968f0d98697987db363070abada5f503da3c06aefd9d4248c1","impliedFormat":1},{"version":"cf3d384d082b933d987c4e2fe7bfb8710adfd9dc8155190056ed6695a25a559e","impliedFormat":1},{"version":"9871b7ee672bc16c78833bdab3052615834b08375cb144e4d2cba74473f4a589","impliedFormat":1},{"version":"c863198dae89420f3c552b5a03da6ed6d0acfa3807a64772b895db624b0de707","impliedFormat":1},{"version":"8b03a5e327d7db67112ebbc93b4f744133eda2c1743dbb0a990c61a8007823ef","impliedFormat":1},{"version":"86c73f2ee1752bac8eeeece234fd05dfcf0637a4fbd8032e4f5f43102faa8eec","impliedFormat":1},{"version":"42fad1f540271e35ca37cecda12c4ce2eef27f0f5cf0f8dd761d723c744d3159","impliedFormat":1},{"version":"ff3743a5de32bee10906aff63d1de726f6a7fd6ee2da4b8229054dfa69de2c34","impliedFormat":1},{"version":"83acd370f7f84f203e71ebba33ba61b7f1291ca027d7f9a662c6307d74e4ac22","impliedFormat":1},{"version":"1445cec898f90bdd18b2949b9590b3c012f5b7e1804e6e329fb0fe053946d5ec","impliedFormat":1},{"version":"0e5318ec2275d8da858b541920d9306650ae6ac8012f0e872fe66eb50321a669","impliedFormat":1},{"version":"cf530297c3fb3a92ec9591dd4fa229d58b5981e45fe6702a0bd2bea53a5e59be","impliedFormat":1},{"version":"c1f6f7d08d42148ddfe164d36d7aba91f467dbcb3caa715966ff95f55048b3a4","impliedFormat":1},{"version":"f4e9bf9103191ef3b3612d3ec0044ca4044ca5be27711fe648ada06fad4bcc85","impliedFormat":1},{"version":"0c1ee27b8f6a00097c2d6d91a21ee4d096ab52c1e28350f6362542b55380059a","impliedFormat":1},{"version":"7677d5b0db9e020d3017720f853ba18f415219fb3a9597343b1b1012cfd699f7","impliedFormat":1},{"version":"bc1c6bc119c1784b1a2be6d9c47addec0d83ef0d52c8fbe1f14a51b4dfffc675","impliedFormat":1},{"version":"52cf2ce99c2a23de70225e252e9822a22b4e0adb82643ab0b710858810e00bf1","impliedFormat":1},{"version":"770625067bb27a20b9826255a8d47b6b5b0a2d3dfcbd21f89904c731f671ba77","impliedFormat":1},{"version":"d1ed6765f4d7906a05968fb5cd6d1db8afa14dbe512a4884e8ea5c0f5e142c80","impliedFormat":1},{"version":"799c0f1b07c092626cf1efd71d459997635911bb5f7fc1196efe449bba87e965","impliedFormat":1},{"version":"2a184e4462b9914a30b1b5c41cf80c6d3428f17b20d3afb711fff3f0644001fd","impliedFormat":1},{"version":"9eabde32a3aa5d80de34af2c2206cdc3ee094c6504a8d0c2d6d20c7c179503cc","impliedFormat":1},{"version":"397c8051b6cfcb48aa22656f0faca2553c5f56187262135162ee79d2b2f6c966","impliedFormat":1},{"version":"a8ead142e0c87dcd5dc130eba1f8eeed506b08952d905c47621dc2f583b1bff9","impliedFormat":1},{"version":"a02f10ea5f73130efca046429254a4e3c06b5475baecc8f7b99a0014731be8b3","impliedFormat":1},{"version":"c2576a4083232b0e2d9bd06875dd43d371dee2e090325a9eac0133fd5650c1cb","impliedFormat":1},{"version":"4c9a0564bb317349de6a24eb4efea8bb79898fa72ad63a1809165f5bd42970dd","impliedFormat":1},{"version":"f40ac11d8859092d20f953aae14ba967282c3bb056431a37fced1866ec7a2681","impliedFormat":1},{"version":"cc11e9e79d4746cc59e0e17473a59d6f104692fd0eeea1bdb2e206eabed83b03","impliedFormat":1},{"version":"b444a410d34fb5e98aa5ee2b381362044f4884652e8bc8a11c8fe14bbd85518e","impliedFormat":1},{"version":"c35808c1f5e16d2c571aa65067e3cb95afeff843b259ecfa2fc107a9519b5392","impliedFormat":1},{"version":"14d5dc055143e941c8743c6a21fa459f961cbc3deedf1bfe47b11587ca4b3ef5","impliedFormat":1},{"version":"a3ad4e1fc542751005267d50a6298e6765928c0c3a8dce1572f2ba6ca518661c","impliedFormat":1},{"version":"f237e7c97a3a89f4591afd49ecb3bd8d14f51a1c4adc8fcae3430febedff5eb6","impliedFormat":1},{"version":"3ffdfbec93b7aed71082af62b8c3e0cc71261cc68d796665faa1e91604fbae8f","impliedFormat":1},{"version":"662201f943ed45b1ad600d03a90dffe20841e725203ced8b708c91fcd7f9379a","impliedFormat":1},{"version":"c9ef74c64ed051ea5b958621e7fb853fe3b56e8787c1587aefc6ea988b3c7e79","impliedFormat":1},{"version":"2462ccfac5f3375794b861abaa81da380f1bbd9401de59ffa43119a0b644253d","impliedFormat":1},{"version":"34baf65cfee92f110d6653322e2120c2d368ee64b3c7981dff08ed105c4f19b0","impliedFormat":1},{"version":"844ab83672160ca57a2a2ea46da4c64200d8c18d4ebb2087819649cad099ff0e","impliedFormat":1}],"root":[184],"options":{"allowSyntheticDefaultImports":true,"composite":true,"declaration":true,"declarationMap":true,"emitDecoratorMetadata":true,"esModuleInterop":true,"experimentalDecorators":true,"module":99,"outDir":"./dist","rootDir":"./src","skipLibCheck":true,"sourceMap":true,"strict":true,"target":9,"verbatimModuleSyntax":false},"referencedMap":[[184,1],[111,2],[112,2],[113,3],[68,4],[114,5],[115,6],[116,7],[66,8],[117,9],[118,10],[119,11],[120,12],[121,13],[122,14],[123,14],[125,8],[124,15],[126,16],[127,17],[128,18],[110,19],[67,8],[129,20],[130,21],[131,22],[164,23],[132,24],[133,25],[134,26],[135,27],[136,28],[137,29],[138,30],[139,31],[140,32],[141,33],[142,33],[143,34],[144,8],[145,8],[146,35],[148,36],[147,37],[149,38],[150,39],[151,40],[152,41],[153,42],[154,43],[155,44],[156,45],[157,46],[158,47],[159,48],[160,49],[161,50],[162,51],[163,52],[165,53],[69,8],[63,8],[64,8],[12,8],[10,8],[11,8],[16,8],[15,8],[2,8],[17,8],[18,8],[19,8],[20,8],[21,8],[22,8],[23,8],[24,8],[3,8],[25,8],[26,8],[4,8],[27,8],[31,8],[28,8],[29,8],[30,8],[32,8],[33,8],[34,8],[5,8],[35,8],[36,8],[37,8],[38,8],[6,8],[42,8],[39,8],[40,8],[41,8],[43,8],[7,8],[44,8],[49,8],[50,8],[45,8],[46,8],[47,8],[48,8],[8,8],[54,8],[51,8],[52,8],[53,8],[55,8],[9,8],[56,8],[65,8],[57,8],[58,8],[60,8],[59,8],[1,8],[61,8],[62,8],[14,8],[13,8],[87,54],[98,55],[85,56],[99,57],[108,58],[76,59],[77,60],[75,61],[107,62],[102,63],[106,64],[79,65],[95,66],[78,67],[105,68],[73,69],[74,63],[80,70],[81,8],[86,71],[84,70],[71,72],[109,73],[100,74],[90,75],[89,70],[91,76],[93,77],[88,78],[92,79],[103,62],[82,80],[83,81],[94,82],[72,57],[97,83],[96,70],[101,8],[70,8],[104,84],[185,8],[210,85],[211,86],[186,87],[189,87],[208,85],[209,85],[199,85],[198,88],[196,85],[191,85],[204,85],[202,85],[206,85],[190,85],[203,85],[207,85],[192,85],[193,85],[205,85],[187,85],[194,85],[195,85],[197,85],[201,85],[212,89],[200,85],[188,85],[225,90],[224,8],[219,89],[221,91],[220,89],[213,89],[214,89],[216,89],[218,89],[222,91],[223,91],[215,91],[217,91],[181,92],[179,93],[168,94],[169,94],[182,95],[180,96],[167,97],[170,98],[173,99],[177,100],[178,101],[174,102],[175,8],[176,99],[171,103],[172,104],[166,8],[183,105]],"latestChangedDtsFile":"./dist/index.d.ts","version":"5.8.3"}