coreum-js 2.6.9 → 2.7.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/CHANGELOG.md +345 -0
- package/dist/main/coreum/index.d.ts +17 -235
- package/dist/main/coreum/index.js +1 -1
- package/dist/main/cosmos/index.d.ts +31 -766
- package/dist/main/cosmos/index.js +1 -1
- package/dist/main/types/msgs.d.ts +672 -0
- package/dist/main/types/msgs.js +3 -0
- package/dist/main/wasm/v1/index.d.ts +13 -266
- package/dist/main/wasm/v1/index.js +1 -1
- package/dist/module/coreum/index.d.ts +17 -235
- package/dist/module/coreum/index.js +1 -1
- package/dist/module/cosmos/index.d.ts +31 -766
- package/dist/module/cosmos/index.js +1 -1
- package/dist/module/types/msgs.d.ts +672 -0
- package/dist/module/types/msgs.js +2 -0
- package/dist/module/wasm/v1/index.d.ts +13 -266
- package/dist/module/wasm/v1/index.js +1 -1
- package/package.json +1 -1
|
@@ -2,6 +2,7 @@ import { GeneratedType } from "@cosmjs/proto-signing";
|
|
|
2
2
|
import { MsgSend as NFTMsgSend } from "./nft/v1beta1/tx";
|
|
3
3
|
import { MsgIssueClass as NFTMsgIssueClass, MsgMint as NFTMsgMint, MsgAddToWhitelist as NFTMsgAddToWhitelist, MsgBurn as NFTMsgBurn, MsgRemoveFromWhitelist as NFTMsgRemoveFromWhitelist, MsgFreeze as NFTMsgFreeze, MsgUnfreeze as NFTMsgUnfreeze } from "./asset/nft/v1/tx";
|
|
4
4
|
import { MsgIssue as FTMsgIssue, MsgMint as FTMsgMint, MsgBurn as FTMsgBurn, MsgFreeze as FTMsgFreeze, MsgUnfreeze as FTMsgUnfreeze, MsgGloballyFreeze as FTMsgGloballyFreeze, MsgGloballyUnfreeze as FTMsgGloballyUnfreeze, MsgSetWhitelistedLimit as FTMsgSetWhitelistedLimit } from "./asset/ft/v1/tx";
|
|
5
|
+
import { FTMsgs, NFTMsgs } from "../types/msgs";
|
|
5
6
|
/** @internal */
|
|
6
7
|
export interface CoreumMessage {
|
|
7
8
|
typeUrl: string;
|
|
@@ -21,22 +22,7 @@ export declare namespace FT {
|
|
|
21
22
|
* @param object Represents the properties available for this MsgMint message.
|
|
22
23
|
* @returns A Msg object with the typeUrl and value object for the proper message
|
|
23
24
|
*/
|
|
24
|
-
const Mint:
|
|
25
|
-
sender?: string;
|
|
26
|
-
coin?: {
|
|
27
|
-
denom?: string;
|
|
28
|
-
amount?: string;
|
|
29
|
-
};
|
|
30
|
-
} & {
|
|
31
|
-
sender?: string;
|
|
32
|
-
coin?: {
|
|
33
|
-
denom?: string;
|
|
34
|
-
amount?: string;
|
|
35
|
-
} & {
|
|
36
|
-
denom?: string;
|
|
37
|
-
amount?: string;
|
|
38
|
-
} & { [K in Exclude<keyof I["coin"], keyof import("../cosmos/base/v1beta1/coin").Coin>]: never; };
|
|
39
|
-
} & { [K_1 in Exclude<keyof I, keyof FTMsgMint>]: never; }>(object: I) => {
|
|
25
|
+
const Mint: (object: FTMsgs.MsgMint) => {
|
|
40
26
|
typeUrl: string;
|
|
41
27
|
value: FTMsgMint;
|
|
42
28
|
};
|
|
@@ -46,27 +32,7 @@ export declare namespace FT {
|
|
|
46
32
|
* @param object Represents the properties available for this MsgIssue message.
|
|
47
33
|
* @returns A Msg object with the typeUrl and value object for the proper message
|
|
48
34
|
*/
|
|
49
|
-
const Issue:
|
|
50
|
-
issuer?: string;
|
|
51
|
-
symbol?: string;
|
|
52
|
-
subunit?: string;
|
|
53
|
-
precision?: number;
|
|
54
|
-
initialAmount?: string;
|
|
55
|
-
description?: string;
|
|
56
|
-
features?: import("./asset/ft/v1/token").Feature[];
|
|
57
|
-
burnRate?: string;
|
|
58
|
-
sendCommissionRate?: string;
|
|
59
|
-
} & {
|
|
60
|
-
issuer?: string;
|
|
61
|
-
symbol?: string;
|
|
62
|
-
subunit?: string;
|
|
63
|
-
precision?: number;
|
|
64
|
-
initialAmount?: string;
|
|
65
|
-
description?: string;
|
|
66
|
-
features?: import("./asset/ft/v1/token").Feature[] & import("./asset/ft/v1/token").Feature[] & { [K in Exclude<keyof I["features"], keyof import("./asset/ft/v1/token").Feature[]>]: never; };
|
|
67
|
-
burnRate?: string;
|
|
68
|
-
sendCommissionRate?: string;
|
|
69
|
-
} & { [K_1 in Exclude<keyof I, keyof FTMsgIssue>]: never; }>(object: I) => {
|
|
35
|
+
const Issue: (object: FTMsgs.MsgIssue) => {
|
|
70
36
|
typeUrl: string;
|
|
71
37
|
value: FTMsgIssue;
|
|
72
38
|
};
|
|
@@ -76,22 +42,7 @@ export declare namespace FT {
|
|
|
76
42
|
* @param object Represents the properties available for this MsgBurn message.
|
|
77
43
|
* @returns A Msg object with the typeUrl and value object for the proper message
|
|
78
44
|
*/
|
|
79
|
-
const Burn:
|
|
80
|
-
sender?: string;
|
|
81
|
-
coin?: {
|
|
82
|
-
denom?: string;
|
|
83
|
-
amount?: string;
|
|
84
|
-
};
|
|
85
|
-
} & {
|
|
86
|
-
sender?: string;
|
|
87
|
-
coin?: {
|
|
88
|
-
denom?: string;
|
|
89
|
-
amount?: string;
|
|
90
|
-
} & {
|
|
91
|
-
denom?: string;
|
|
92
|
-
amount?: string;
|
|
93
|
-
} & { [K in Exclude<keyof I["coin"], keyof import("../cosmos/base/v1beta1/coin").Coin>]: never; };
|
|
94
|
-
} & { [K_1 in Exclude<keyof I, keyof FTMsgBurn>]: never; }>(object: I) => {
|
|
45
|
+
const Burn: (object: FTMsgs.MsgBurn) => {
|
|
95
46
|
typeUrl: string;
|
|
96
47
|
value: FTMsgBurn;
|
|
97
48
|
};
|
|
@@ -101,24 +52,7 @@ export declare namespace FT {
|
|
|
101
52
|
* @param object Represents the properties available for this MsgIssue message.
|
|
102
53
|
* @returns A Msg object with the typeUrl and value object for the proper message
|
|
103
54
|
*/
|
|
104
|
-
const Freeze:
|
|
105
|
-
sender?: string;
|
|
106
|
-
account?: string;
|
|
107
|
-
coin?: {
|
|
108
|
-
denom?: string;
|
|
109
|
-
amount?: string;
|
|
110
|
-
};
|
|
111
|
-
} & {
|
|
112
|
-
sender?: string;
|
|
113
|
-
account?: string;
|
|
114
|
-
coin?: {
|
|
115
|
-
denom?: string;
|
|
116
|
-
amount?: string;
|
|
117
|
-
} & {
|
|
118
|
-
denom?: string;
|
|
119
|
-
amount?: string;
|
|
120
|
-
} & { [K in Exclude<keyof I["coin"], keyof import("../cosmos/base/v1beta1/coin").Coin>]: never; };
|
|
121
|
-
} & { [K_1 in Exclude<keyof I, keyof FTMsgFreeze>]: never; }>(object: I) => {
|
|
55
|
+
const Freeze: (object: FTMsgs.MsgFreeze) => {
|
|
122
56
|
typeUrl: string;
|
|
123
57
|
value: FTMsgFreeze;
|
|
124
58
|
};
|
|
@@ -128,13 +62,7 @@ export declare namespace FT {
|
|
|
128
62
|
* @param object Represents the properties available for this MsgGloballyFreeze message.
|
|
129
63
|
* @returns A Msg object with the typeUrl and value object for the proper message
|
|
130
64
|
*/
|
|
131
|
-
const GloballyFreeze:
|
|
132
|
-
sender?: string;
|
|
133
|
-
denom?: string;
|
|
134
|
-
} & {
|
|
135
|
-
sender?: string;
|
|
136
|
-
denom?: string;
|
|
137
|
-
} & { [K in Exclude<keyof I, keyof FTMsgGloballyFreeze>]: never; }>(object: I) => {
|
|
65
|
+
const GloballyFreeze: (object: FTMsgs.MsgGloballyFreeze) => {
|
|
138
66
|
typeUrl: string;
|
|
139
67
|
value: FTMsgGloballyFreeze;
|
|
140
68
|
};
|
|
@@ -144,13 +72,7 @@ export declare namespace FT {
|
|
|
144
72
|
* @param object Represents the properties available for this MsgGloballyUnfreeze message.
|
|
145
73
|
* @returns A Msg object with the typeUrl and value object for the proper message
|
|
146
74
|
*/
|
|
147
|
-
const GloballyUnfreeze:
|
|
148
|
-
sender?: string;
|
|
149
|
-
denom?: string;
|
|
150
|
-
} & {
|
|
151
|
-
sender?: string;
|
|
152
|
-
denom?: string;
|
|
153
|
-
} & { [K in Exclude<keyof I, keyof FTMsgGloballyUnfreeze>]: never; }>(object: I) => {
|
|
75
|
+
const GloballyUnfreeze: (object: FTMsgs.MsgGloballyUnfreeze) => {
|
|
154
76
|
typeUrl: string;
|
|
155
77
|
value: FTMsgGloballyUnfreeze;
|
|
156
78
|
};
|
|
@@ -160,24 +82,7 @@ export declare namespace FT {
|
|
|
160
82
|
* @param object Represents the properties available for this MsgUnfreeze message.
|
|
161
83
|
* @returns A Msg object with the typeUrl and value object for the proper message
|
|
162
84
|
*/
|
|
163
|
-
const Unfreeze:
|
|
164
|
-
sender?: string;
|
|
165
|
-
account?: string;
|
|
166
|
-
coin?: {
|
|
167
|
-
denom?: string;
|
|
168
|
-
amount?: string;
|
|
169
|
-
};
|
|
170
|
-
} & {
|
|
171
|
-
sender?: string;
|
|
172
|
-
account?: string;
|
|
173
|
-
coin?: {
|
|
174
|
-
denom?: string;
|
|
175
|
-
amount?: string;
|
|
176
|
-
} & {
|
|
177
|
-
denom?: string;
|
|
178
|
-
amount?: string;
|
|
179
|
-
} & { [K in Exclude<keyof I["coin"], keyof import("../cosmos/base/v1beta1/coin").Coin>]: never; };
|
|
180
|
-
} & { [K_1 in Exclude<keyof I, keyof FTMsgUnfreeze>]: never; }>(object: I) => {
|
|
85
|
+
const Unfreeze: (object: FTMsgs.MsgUnfreeze) => {
|
|
181
86
|
typeUrl: string;
|
|
182
87
|
value: FTMsgUnfreeze;
|
|
183
88
|
};
|
|
@@ -187,24 +92,7 @@ export declare namespace FT {
|
|
|
187
92
|
* @param object Represents the properties available for this MsgSetWhitelistedLimit message.
|
|
188
93
|
* @returns A Msg object with the typeUrl and value object for the proper message
|
|
189
94
|
*/
|
|
190
|
-
const SetWhitelistedLimit:
|
|
191
|
-
sender?: string;
|
|
192
|
-
account?: string;
|
|
193
|
-
coin?: {
|
|
194
|
-
denom?: string;
|
|
195
|
-
amount?: string;
|
|
196
|
-
};
|
|
197
|
-
} & {
|
|
198
|
-
sender?: string;
|
|
199
|
-
account?: string;
|
|
200
|
-
coin?: {
|
|
201
|
-
denom?: string;
|
|
202
|
-
amount?: string;
|
|
203
|
-
} & {
|
|
204
|
-
denom?: string;
|
|
205
|
-
amount?: string;
|
|
206
|
-
} & { [K in Exclude<keyof I["coin"], keyof import("../cosmos/base/v1beta1/coin").Coin>]: never; };
|
|
207
|
-
} & { [K_1 in Exclude<keyof I, keyof FTMsgSetWhitelistedLimit>]: never; }>(object: I) => {
|
|
95
|
+
const SetWhitelistedLimit: (object: FTMsgs.MsgSetWhitelistedLimit) => {
|
|
208
96
|
typeUrl: string;
|
|
209
97
|
value: FTMsgSetWhitelistedLimit;
|
|
210
98
|
};
|
|
@@ -219,30 +107,7 @@ export declare namespace NFT {
|
|
|
219
107
|
* @param object Represents the properties available for this MsgMint message.
|
|
220
108
|
* @returns A Msg object with the typeUrl and value object for the proper message
|
|
221
109
|
*/
|
|
222
|
-
const Mint:
|
|
223
|
-
sender?: string;
|
|
224
|
-
classId?: string;
|
|
225
|
-
id?: string;
|
|
226
|
-
uri?: string;
|
|
227
|
-
uriHash?: string;
|
|
228
|
-
data?: {
|
|
229
|
-
typeUrl?: string;
|
|
230
|
-
value?: Uint8Array;
|
|
231
|
-
};
|
|
232
|
-
} & {
|
|
233
|
-
sender?: string;
|
|
234
|
-
classId?: string;
|
|
235
|
-
id?: string;
|
|
236
|
-
uri?: string;
|
|
237
|
-
uriHash?: string;
|
|
238
|
-
data?: {
|
|
239
|
-
typeUrl?: string;
|
|
240
|
-
value?: Uint8Array;
|
|
241
|
-
} & {
|
|
242
|
-
typeUrl?: string;
|
|
243
|
-
value?: Uint8Array;
|
|
244
|
-
} & { [K in Exclude<keyof I["data"], keyof import("../google/protobuf/any").Any>]: never; };
|
|
245
|
-
} & { [K_1 in Exclude<keyof I, keyof NFTMsgMint>]: never; }>(object: I) => {
|
|
110
|
+
const Mint: (object: NFTMsgs.MsgMint) => {
|
|
246
111
|
typeUrl: string;
|
|
247
112
|
value: NFTMsgMint;
|
|
248
113
|
};
|
|
@@ -252,17 +117,7 @@ export declare namespace NFT {
|
|
|
252
117
|
* @param object Represents the properties available for this MsgAddToWhitelist message.
|
|
253
118
|
* @returns A Msg object with the typeUrl and value object for the proper message
|
|
254
119
|
*/
|
|
255
|
-
const AddToWhitelist:
|
|
256
|
-
sender?: string;
|
|
257
|
-
classId?: string;
|
|
258
|
-
id?: string;
|
|
259
|
-
account?: string;
|
|
260
|
-
} & {
|
|
261
|
-
sender?: string;
|
|
262
|
-
classId?: string;
|
|
263
|
-
id?: string;
|
|
264
|
-
account?: string;
|
|
265
|
-
} & { [K in Exclude<keyof I, keyof NFTMsgAddToWhitelist>]: never; }>(object: I) => {
|
|
120
|
+
const AddToWhitelist: (object: NFTMsgs.MsgAddToWhitelist) => {
|
|
266
121
|
typeUrl: string;
|
|
267
122
|
value: NFTMsgAddToWhitelist;
|
|
268
123
|
};
|
|
@@ -272,17 +127,7 @@ export declare namespace NFT {
|
|
|
272
127
|
* @param object Represents the properties available for this MsgRemoveFromWhitelist message.
|
|
273
128
|
* @returns A Msg object with the typeUrl and value object for the proper message
|
|
274
129
|
*/
|
|
275
|
-
const RemoveFromWhitelist:
|
|
276
|
-
sender?: string;
|
|
277
|
-
classId?: string;
|
|
278
|
-
id?: string;
|
|
279
|
-
account?: string;
|
|
280
|
-
} & {
|
|
281
|
-
sender?: string;
|
|
282
|
-
classId?: string;
|
|
283
|
-
id?: string;
|
|
284
|
-
account?: string;
|
|
285
|
-
} & { [K in Exclude<keyof I, keyof NFTMsgRemoveFromWhitelist>]: never; }>(object: I) => {
|
|
130
|
+
const RemoveFromWhitelist: (object: NFTMsgs.MsgRemoveFromWhitelist) => {
|
|
286
131
|
typeUrl: string;
|
|
287
132
|
value: NFTMsgRemoveFromWhitelist;
|
|
288
133
|
};
|
|
@@ -292,15 +137,7 @@ export declare namespace NFT {
|
|
|
292
137
|
* @param object Represents the properties available for this MsgBurn message.
|
|
293
138
|
* @returns A Msg object with the typeUrl and value object for the proper message
|
|
294
139
|
*/
|
|
295
|
-
const Burn:
|
|
296
|
-
sender?: string;
|
|
297
|
-
classId?: string;
|
|
298
|
-
id?: string;
|
|
299
|
-
} & {
|
|
300
|
-
sender?: string;
|
|
301
|
-
classId?: string;
|
|
302
|
-
id?: string;
|
|
303
|
-
} & { [K in Exclude<keyof I, keyof NFTMsgBurn>]: never; }>(object: I) => {
|
|
140
|
+
const Burn: (object: NFTMsgs.MsgBurn) => {
|
|
304
141
|
typeUrl: string;
|
|
305
142
|
value: NFTMsgBurn;
|
|
306
143
|
};
|
|
@@ -310,15 +147,7 @@ export declare namespace NFT {
|
|
|
310
147
|
* @param object Represents the properties available for this MsgFreeze message.
|
|
311
148
|
* @returns A Msg object with the typeUrl and value object for the proper message
|
|
312
149
|
*/
|
|
313
|
-
const Freeze:
|
|
314
|
-
sender?: string;
|
|
315
|
-
classId?: string;
|
|
316
|
-
id?: string;
|
|
317
|
-
} & {
|
|
318
|
-
sender?: string;
|
|
319
|
-
classId?: string;
|
|
320
|
-
id?: string;
|
|
321
|
-
} & { [K in Exclude<keyof I, keyof NFTMsgFreeze>]: never; }>(object: I) => {
|
|
150
|
+
const Freeze: (object: NFTMsgs.MsgFreeze) => {
|
|
322
151
|
typeUrl: string;
|
|
323
152
|
value: NFTMsgFreeze;
|
|
324
153
|
};
|
|
@@ -328,15 +157,7 @@ export declare namespace NFT {
|
|
|
328
157
|
* @param object Represents the properties available for this MsgUnfreeze message.
|
|
329
158
|
* @returns A Msg object with the typeUrl and value object for the proper message
|
|
330
159
|
*/
|
|
331
|
-
const Unfreeze:
|
|
332
|
-
sender?: string;
|
|
333
|
-
classId?: string;
|
|
334
|
-
id?: string;
|
|
335
|
-
} & {
|
|
336
|
-
sender?: string;
|
|
337
|
-
classId?: string;
|
|
338
|
-
id?: string;
|
|
339
|
-
} & { [K in Exclude<keyof I, keyof NFTMsgUnfreeze>]: never; }>(object: I) => {
|
|
160
|
+
const Unfreeze: (object: NFTMsgs.MsgUnfreeze) => {
|
|
340
161
|
typeUrl: string;
|
|
341
162
|
value: NFTMsgUnfreeze;
|
|
342
163
|
};
|
|
@@ -346,36 +167,7 @@ export declare namespace NFT {
|
|
|
346
167
|
* @param object Represents the properties available for this MsgIssueClass message.
|
|
347
168
|
* @returns A Msg object with the typeUrl and value object for the proper message
|
|
348
169
|
*/
|
|
349
|
-
const IssueClass:
|
|
350
|
-
issuer?: string;
|
|
351
|
-
symbol?: string;
|
|
352
|
-
name?: string;
|
|
353
|
-
description?: string;
|
|
354
|
-
uri?: string;
|
|
355
|
-
uriHash?: string;
|
|
356
|
-
data?: {
|
|
357
|
-
typeUrl?: string;
|
|
358
|
-
value?: Uint8Array;
|
|
359
|
-
};
|
|
360
|
-
features?: import("./asset/nft/v1/nft").ClassFeature[];
|
|
361
|
-
royaltyRate?: string;
|
|
362
|
-
} & {
|
|
363
|
-
issuer?: string;
|
|
364
|
-
symbol?: string;
|
|
365
|
-
name?: string;
|
|
366
|
-
description?: string;
|
|
367
|
-
uri?: string;
|
|
368
|
-
uriHash?: string;
|
|
369
|
-
data?: {
|
|
370
|
-
typeUrl?: string;
|
|
371
|
-
value?: Uint8Array;
|
|
372
|
-
} & {
|
|
373
|
-
typeUrl?: string;
|
|
374
|
-
value?: Uint8Array;
|
|
375
|
-
} & { [K in Exclude<keyof I["data"], keyof import("../google/protobuf/any").Any>]: never; };
|
|
376
|
-
features?: import("./asset/nft/v1/nft").ClassFeature[] & import("./asset/nft/v1/nft").ClassFeature[] & { [K_1 in Exclude<keyof I["features"], keyof import("./asset/nft/v1/nft").ClassFeature[]>]: never; };
|
|
377
|
-
royaltyRate?: string;
|
|
378
|
-
} & { [K_2 in Exclude<keyof I, keyof NFTMsgIssueClass>]: never; }>(object: I) => {
|
|
170
|
+
const IssueClass: (object: NFTMsgIssueClass) => {
|
|
379
171
|
typeUrl: string;
|
|
380
172
|
value: NFTMsgIssueClass;
|
|
381
173
|
};
|
|
@@ -385,17 +177,7 @@ export declare namespace NFT {
|
|
|
385
177
|
* @param object Represents the properties available for this MsgSend message.
|
|
386
178
|
* @returns A Msg object with the typeUrl and value object for the proper message
|
|
387
179
|
*/
|
|
388
|
-
const Send:
|
|
389
|
-
classId?: string;
|
|
390
|
-
id?: string;
|
|
391
|
-
sender?: string;
|
|
392
|
-
receiver?: string;
|
|
393
|
-
} & {
|
|
394
|
-
classId?: string;
|
|
395
|
-
id?: string;
|
|
396
|
-
sender?: string;
|
|
397
|
-
receiver?: string;
|
|
398
|
-
} & { [K in Exclude<keyof I, keyof NFTMsgSend>]: never; }>(object: I) => {
|
|
180
|
+
const Send: (object: NFTMsgs.MsgSend) => {
|
|
399
181
|
typeUrl: string;
|
|
400
182
|
value: NFTMsgSend;
|
|
401
183
|
};
|
|
@@ -218,4 +218,4 @@ var NFT;
|
|
|
218
218
|
};
|
|
219
219
|
};
|
|
220
220
|
})(NFT = exports.NFT || (exports.NFT = {}));
|
|
221
|
-
//# sourceMappingURL=data:application/json;base64,
|
|
221
|
+
//# sourceMappingURL=data:application/json;base64,eyJ2ZXJzaW9uIjozLCJmaWxlIjoiaW5kZXguanMiLCJzb3VyY2VSb290IjoiIiwic291cmNlcyI6WyIuLi8uLi8uLi9zcmMvY29yZXVtL2luZGV4LnRzIl0sIm5hbWVzIjpbXSwibWFwcGluZ3MiOiI7OztBQUNBLG1DQUE0RDtBQUM1RCwrQkFBd0M7QUFDeEMseUNBQXlEO0FBQ3pELDBDQVEyQjtBQUMzQix5Q0FTMEI7QUFTMUI7O0dBRUc7QUFDVSxRQUFBLGNBQWMsR0FBMkM7SUFDcEUsR0FBRyx1QkFBZTtJQUNsQixHQUFHLHdCQUFnQjtJQUNuQixHQUFHLHFCQUFlO0NBQ25CLENBQUM7QUFFRjs7R0FFRztBQUNILElBQWlCLEVBQUUsQ0E0R2xCO0FBNUdELFdBQWlCLEVBQUU7SUFDakI7Ozs7O09BS0c7SUFDVSxPQUFJLEdBQUcsVUFBVSxNQUFzQjtRQUNsRCxPQUFPO1lBQ0wsT0FBTyxFQUFFLDZCQUE2QjtZQUN0QyxLQUFLLEVBQUUsWUFBUyxDQUFDLFdBQVcsQ0FBQyxNQUFNLENBQUM7U0FDckMsQ0FBQztJQUNKLENBQUMsQ0FBQztJQUVGOzs7OztPQUtHO0lBQ1UsUUFBSyxHQUFHLFVBQVUsTUFBdUI7UUFDcEQsT0FBTztZQUNMLE9BQU8sRUFBRSw4QkFBOEI7WUFDdkMsS0FBSyxFQUFFLGFBQVUsQ0FBQyxXQUFXLENBQUMsTUFBTSxDQUFDO1NBQ3RDLENBQUM7SUFDSixDQUFDLENBQUM7SUFFRjs7Ozs7T0FLRztJQUNVLE9BQUksR0FBRyxVQUFVLE1BQXNCO1FBQ2xELE9BQU87WUFDTCxPQUFPLEVBQUUsNkJBQTZCO1lBQ3RDLEtBQUssRUFBRSxZQUFTLENBQUMsV0FBVyxDQUFDLE1BQU0sQ0FBQztTQUNyQyxDQUFDO0lBQ0osQ0FBQyxDQUFDO0lBRUY7Ozs7O09BS0c7SUFDVSxTQUFNLEdBQUcsVUFBVSxNQUF3QjtRQUN0RCxPQUFPO1lBQ0wsT0FBTyxFQUFFLCtCQUErQjtZQUN4QyxLQUFLLEVBQUUsY0FBVyxDQUFDLFdBQVcsQ0FBQyxNQUFNLENBQUM7U0FDdkMsQ0FBQztJQUNKLENB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
|