claim169 0.1.0-alpha
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 +392 -0
- package/dist/index.d.ts +319 -0
- package/dist/index.d.ts.map +1 -0
- package/dist/index.js +582 -0
- package/dist/index.js.map +1 -0
- package/dist/types.d.ts +476 -0
- package/dist/types.d.ts.map +1 -0
- package/dist/types.js +29 -0
- package/dist/types.js.map +1 -0
- package/package.json +53 -0
- package/wasm/README.md +264 -0
- package/wasm/claim169_wasm.d.ts +99 -0
- package/wasm/claim169_wasm.js +9 -0
- package/wasm/claim169_wasm_bg.js +822 -0
- package/wasm/claim169_wasm_bg.wasm +0 -0
- package/wasm/claim169_wasm_bg.wasm.d.ts +36 -0
- package/wasm/package.json +19 -0
|
@@ -0,0 +1,822 @@
|
|
|
1
|
+
/**
|
|
2
|
+
* Decoder builder for Claim 169 credentials
|
|
3
|
+
*/
|
|
4
|
+
export class WasmDecoder {
|
|
5
|
+
static __wrap(ptr) {
|
|
6
|
+
ptr = ptr >>> 0;
|
|
7
|
+
const obj = Object.create(WasmDecoder.prototype);
|
|
8
|
+
obj.__wbg_ptr = ptr;
|
|
9
|
+
WasmDecoderFinalization.register(obj, obj.__wbg_ptr, obj);
|
|
10
|
+
return obj;
|
|
11
|
+
}
|
|
12
|
+
__destroy_into_raw() {
|
|
13
|
+
const ptr = this.__wbg_ptr;
|
|
14
|
+
this.__wbg_ptr = 0;
|
|
15
|
+
WasmDecoderFinalization.unregister(this);
|
|
16
|
+
return ptr;
|
|
17
|
+
}
|
|
18
|
+
free() {
|
|
19
|
+
const ptr = this.__destroy_into_raw();
|
|
20
|
+
wasm.__wbg_wasmdecoder_free(ptr, 0);
|
|
21
|
+
}
|
|
22
|
+
/**
|
|
23
|
+
* Allow decoding without signature verification (INSECURE - testing only)
|
|
24
|
+
* @returns {WasmDecoder}
|
|
25
|
+
*/
|
|
26
|
+
allowUnverified() {
|
|
27
|
+
const ptr = this.__destroy_into_raw();
|
|
28
|
+
const ret = wasm.wasmdecoder_allowUnverified(ptr);
|
|
29
|
+
return WasmDecoder.__wrap(ret);
|
|
30
|
+
}
|
|
31
|
+
/**
|
|
32
|
+
* @param {number} seconds
|
|
33
|
+
* @returns {WasmDecoder}
|
|
34
|
+
*/
|
|
35
|
+
clockSkewTolerance(seconds) {
|
|
36
|
+
const ptr = this.__destroy_into_raw();
|
|
37
|
+
const ret = wasm.wasmdecoder_clockSkewTolerance(ptr, seconds);
|
|
38
|
+
return WasmDecoder.__wrap(ret);
|
|
39
|
+
}
|
|
40
|
+
/**
|
|
41
|
+
* Decode the QR code with configured verification and decryption
|
|
42
|
+
* @returns {any}
|
|
43
|
+
*/
|
|
44
|
+
decode() {
|
|
45
|
+
const ptr = this.__destroy_into_raw();
|
|
46
|
+
const ret = wasm.wasmdecoder_decode(ptr);
|
|
47
|
+
if (ret[2]) {
|
|
48
|
+
throw takeFromExternrefTable0(ret[1]);
|
|
49
|
+
}
|
|
50
|
+
return takeFromExternrefTable0(ret[0]);
|
|
51
|
+
}
|
|
52
|
+
/**
|
|
53
|
+
* Decrypt with AES-128-GCM (16-byte key)
|
|
54
|
+
* @param {Uint8Array} key
|
|
55
|
+
* @returns {WasmDecoder}
|
|
56
|
+
*/
|
|
57
|
+
decryptWithAes128(key) {
|
|
58
|
+
const ptr = this.__destroy_into_raw();
|
|
59
|
+
const ptr0 = passArray8ToWasm0(key, wasm.__wbindgen_malloc);
|
|
60
|
+
const len0 = WASM_VECTOR_LEN;
|
|
61
|
+
const ret = wasm.wasmdecoder_decryptWithAes128(ptr, ptr0, len0);
|
|
62
|
+
if (ret[2]) {
|
|
63
|
+
throw takeFromExternrefTable0(ret[1]);
|
|
64
|
+
}
|
|
65
|
+
return WasmDecoder.__wrap(ret[0]);
|
|
66
|
+
}
|
|
67
|
+
/**
|
|
68
|
+
* Decrypt with AES-256-GCM (32-byte key)
|
|
69
|
+
* @param {Uint8Array} key
|
|
70
|
+
* @returns {WasmDecoder}
|
|
71
|
+
*/
|
|
72
|
+
decryptWithAes256(key) {
|
|
73
|
+
const ptr = this.__destroy_into_raw();
|
|
74
|
+
const ptr0 = passArray8ToWasm0(key, wasm.__wbindgen_malloc);
|
|
75
|
+
const len0 = WASM_VECTOR_LEN;
|
|
76
|
+
const ret = wasm.wasmdecoder_decryptWithAes256(ptr, ptr0, len0);
|
|
77
|
+
if (ret[2]) {
|
|
78
|
+
throw takeFromExternrefTable0(ret[1]);
|
|
79
|
+
}
|
|
80
|
+
return WasmDecoder.__wrap(ret[0]);
|
|
81
|
+
}
|
|
82
|
+
/**
|
|
83
|
+
* @param {number} bytes
|
|
84
|
+
* @returns {WasmDecoder}
|
|
85
|
+
*/
|
|
86
|
+
maxDecompressedBytes(bytes) {
|
|
87
|
+
const ptr = this.__destroy_into_raw();
|
|
88
|
+
const ret = wasm.wasmdecoder_maxDecompressedBytes(ptr, bytes);
|
|
89
|
+
return WasmDecoder.__wrap(ret);
|
|
90
|
+
}
|
|
91
|
+
/**
|
|
92
|
+
* @param {string} qr_text
|
|
93
|
+
*/
|
|
94
|
+
constructor(qr_text) {
|
|
95
|
+
const ptr0 = passStringToWasm0(qr_text, wasm.__wbindgen_malloc, wasm.__wbindgen_realloc);
|
|
96
|
+
const len0 = WASM_VECTOR_LEN;
|
|
97
|
+
const ret = wasm.wasmdecoder_new(ptr0, len0);
|
|
98
|
+
this.__wbg_ptr = ret >>> 0;
|
|
99
|
+
WasmDecoderFinalization.register(this, this.__wbg_ptr, this);
|
|
100
|
+
return this;
|
|
101
|
+
}
|
|
102
|
+
/**
|
|
103
|
+
* @returns {WasmDecoder}
|
|
104
|
+
*/
|
|
105
|
+
skipBiometrics() {
|
|
106
|
+
const ptr = this.__destroy_into_raw();
|
|
107
|
+
const ret = wasm.wasmdecoder_skipBiometrics(ptr);
|
|
108
|
+
return WasmDecoder.__wrap(ret);
|
|
109
|
+
}
|
|
110
|
+
/**
|
|
111
|
+
* Verify with ECDSA P-256 public key (33 or 65 bytes, SEC1 encoded)
|
|
112
|
+
* @param {Uint8Array} public_key
|
|
113
|
+
* @returns {WasmDecoder}
|
|
114
|
+
*/
|
|
115
|
+
verifyWithEcdsaP256(public_key) {
|
|
116
|
+
const ptr = this.__destroy_into_raw();
|
|
117
|
+
const ptr0 = passArray8ToWasm0(public_key, wasm.__wbindgen_malloc);
|
|
118
|
+
const len0 = WASM_VECTOR_LEN;
|
|
119
|
+
const ret = wasm.wasmdecoder_verifyWithEcdsaP256(ptr, ptr0, len0);
|
|
120
|
+
if (ret[2]) {
|
|
121
|
+
throw takeFromExternrefTable0(ret[1]);
|
|
122
|
+
}
|
|
123
|
+
return WasmDecoder.__wrap(ret[0]);
|
|
124
|
+
}
|
|
125
|
+
/**
|
|
126
|
+
* Verify with Ed25519 public key (32 bytes)
|
|
127
|
+
* @param {Uint8Array} public_key
|
|
128
|
+
* @returns {WasmDecoder}
|
|
129
|
+
*/
|
|
130
|
+
verifyWithEd25519(public_key) {
|
|
131
|
+
const ptr = this.__destroy_into_raw();
|
|
132
|
+
const ptr0 = passArray8ToWasm0(public_key, wasm.__wbindgen_malloc);
|
|
133
|
+
const len0 = WASM_VECTOR_LEN;
|
|
134
|
+
const ret = wasm.wasmdecoder_verifyWithEd25519(ptr, ptr0, len0);
|
|
135
|
+
if (ret[2]) {
|
|
136
|
+
throw takeFromExternrefTable0(ret[1]);
|
|
137
|
+
}
|
|
138
|
+
return WasmDecoder.__wrap(ret[0]);
|
|
139
|
+
}
|
|
140
|
+
/**
|
|
141
|
+
* @returns {WasmDecoder}
|
|
142
|
+
*/
|
|
143
|
+
withTimestampValidation() {
|
|
144
|
+
const ptr = this.__destroy_into_raw();
|
|
145
|
+
const ret = wasm.wasmdecoder_withTimestampValidation(ptr);
|
|
146
|
+
return WasmDecoder.__wrap(ret);
|
|
147
|
+
}
|
|
148
|
+
}
|
|
149
|
+
if (Symbol.dispose) WasmDecoder.prototype[Symbol.dispose] = WasmDecoder.prototype.free;
|
|
150
|
+
|
|
151
|
+
/**
|
|
152
|
+
* Encoder builder for creating Claim 169 QR codes
|
|
153
|
+
*/
|
|
154
|
+
export class WasmEncoder {
|
|
155
|
+
static __wrap(ptr) {
|
|
156
|
+
ptr = ptr >>> 0;
|
|
157
|
+
const obj = Object.create(WasmEncoder.prototype);
|
|
158
|
+
obj.__wbg_ptr = ptr;
|
|
159
|
+
WasmEncoderFinalization.register(obj, obj.__wbg_ptr, obj);
|
|
160
|
+
return obj;
|
|
161
|
+
}
|
|
162
|
+
__destroy_into_raw() {
|
|
163
|
+
const ptr = this.__wbg_ptr;
|
|
164
|
+
this.__wbg_ptr = 0;
|
|
165
|
+
WasmEncoderFinalization.unregister(this);
|
|
166
|
+
return ptr;
|
|
167
|
+
}
|
|
168
|
+
free() {
|
|
169
|
+
const ptr = this.__destroy_into_raw();
|
|
170
|
+
wasm.__wbg_wasmencoder_free(ptr, 0);
|
|
171
|
+
}
|
|
172
|
+
/**
|
|
173
|
+
* Allow encoding without a signature (INSECURE - testing only)
|
|
174
|
+
* @returns {WasmEncoder}
|
|
175
|
+
*/
|
|
176
|
+
allowUnsigned() {
|
|
177
|
+
const ptr = this.__destroy_into_raw();
|
|
178
|
+
const ret = wasm.wasmencoder_allowUnsigned(ptr);
|
|
179
|
+
return WasmEncoder.__wrap(ret);
|
|
180
|
+
}
|
|
181
|
+
/**
|
|
182
|
+
* Encode the credential to a Base45 QR string
|
|
183
|
+
* @returns {string}
|
|
184
|
+
*/
|
|
185
|
+
encode() {
|
|
186
|
+
let deferred2_0;
|
|
187
|
+
let deferred2_1;
|
|
188
|
+
try {
|
|
189
|
+
const ptr = this.__destroy_into_raw();
|
|
190
|
+
const ret = wasm.wasmencoder_encode(ptr);
|
|
191
|
+
var ptr1 = ret[0];
|
|
192
|
+
var len1 = ret[1];
|
|
193
|
+
if (ret[3]) {
|
|
194
|
+
ptr1 = 0; len1 = 0;
|
|
195
|
+
throw takeFromExternrefTable0(ret[2]);
|
|
196
|
+
}
|
|
197
|
+
deferred2_0 = ptr1;
|
|
198
|
+
deferred2_1 = len1;
|
|
199
|
+
return getStringFromWasm0(ptr1, len1);
|
|
200
|
+
} finally {
|
|
201
|
+
wasm.__wbindgen_free(deferred2_0, deferred2_1, 1);
|
|
202
|
+
}
|
|
203
|
+
}
|
|
204
|
+
/**
|
|
205
|
+
* Encrypt with AES-128-GCM (16-byte key)
|
|
206
|
+
* @param {Uint8Array} key
|
|
207
|
+
* @returns {WasmEncoder}
|
|
208
|
+
*/
|
|
209
|
+
encryptWithAes128(key) {
|
|
210
|
+
const ptr = this.__destroy_into_raw();
|
|
211
|
+
const ptr0 = passArray8ToWasm0(key, wasm.__wbindgen_malloc);
|
|
212
|
+
const len0 = WASM_VECTOR_LEN;
|
|
213
|
+
const ret = wasm.wasmencoder_encryptWithAes128(ptr, ptr0, len0);
|
|
214
|
+
if (ret[2]) {
|
|
215
|
+
throw takeFromExternrefTable0(ret[1]);
|
|
216
|
+
}
|
|
217
|
+
return WasmEncoder.__wrap(ret[0]);
|
|
218
|
+
}
|
|
219
|
+
/**
|
|
220
|
+
* Encrypt with AES-256-GCM (32-byte key)
|
|
221
|
+
* @param {Uint8Array} key
|
|
222
|
+
* @returns {WasmEncoder}
|
|
223
|
+
*/
|
|
224
|
+
encryptWithAes256(key) {
|
|
225
|
+
const ptr = this.__destroy_into_raw();
|
|
226
|
+
const ptr0 = passArray8ToWasm0(key, wasm.__wbindgen_malloc);
|
|
227
|
+
const len0 = WASM_VECTOR_LEN;
|
|
228
|
+
const ret = wasm.wasmencoder_encryptWithAes256(ptr, ptr0, len0);
|
|
229
|
+
if (ret[2]) {
|
|
230
|
+
throw takeFromExternrefTable0(ret[1]);
|
|
231
|
+
}
|
|
232
|
+
return WasmEncoder.__wrap(ret[0]);
|
|
233
|
+
}
|
|
234
|
+
/**
|
|
235
|
+
* Create a new encoder with the given claim and CWT metadata.
|
|
236
|
+
*
|
|
237
|
+
* @param claim169 - The identity claim data to encode
|
|
238
|
+
* @param cwtMeta - CWT metadata including issuer, expiration, etc.
|
|
239
|
+
* @param {any} claim169
|
|
240
|
+
* @param {any} cwt_meta
|
|
241
|
+
*/
|
|
242
|
+
constructor(claim169, cwt_meta) {
|
|
243
|
+
const ret = wasm.wasmencoder_new(claim169, cwt_meta);
|
|
244
|
+
if (ret[2]) {
|
|
245
|
+
throw takeFromExternrefTable0(ret[1]);
|
|
246
|
+
}
|
|
247
|
+
this.__wbg_ptr = ret[0] >>> 0;
|
|
248
|
+
WasmEncoderFinalization.register(this, this.__wbg_ptr, this);
|
|
249
|
+
return this;
|
|
250
|
+
}
|
|
251
|
+
/**
|
|
252
|
+
* Sign with ECDSA P-256 private key (32 bytes)
|
|
253
|
+
* @param {Uint8Array} private_key
|
|
254
|
+
* @returns {WasmEncoder}
|
|
255
|
+
*/
|
|
256
|
+
signWithEcdsaP256(private_key) {
|
|
257
|
+
const ptr = this.__destroy_into_raw();
|
|
258
|
+
const ptr0 = passArray8ToWasm0(private_key, wasm.__wbindgen_malloc);
|
|
259
|
+
const len0 = WASM_VECTOR_LEN;
|
|
260
|
+
const ret = wasm.wasmencoder_signWithEcdsaP256(ptr, ptr0, len0);
|
|
261
|
+
if (ret[2]) {
|
|
262
|
+
throw takeFromExternrefTable0(ret[1]);
|
|
263
|
+
}
|
|
264
|
+
return WasmEncoder.__wrap(ret[0]);
|
|
265
|
+
}
|
|
266
|
+
/**
|
|
267
|
+
* Sign with Ed25519 private key (32 bytes)
|
|
268
|
+
* @param {Uint8Array} private_key
|
|
269
|
+
* @returns {WasmEncoder}
|
|
270
|
+
*/
|
|
271
|
+
signWithEd25519(private_key) {
|
|
272
|
+
const ptr = this.__destroy_into_raw();
|
|
273
|
+
const ptr0 = passArray8ToWasm0(private_key, wasm.__wbindgen_malloc);
|
|
274
|
+
const len0 = WASM_VECTOR_LEN;
|
|
275
|
+
const ret = wasm.wasmencoder_signWithEd25519(ptr, ptr0, len0);
|
|
276
|
+
if (ret[2]) {
|
|
277
|
+
throw takeFromExternrefTable0(ret[1]);
|
|
278
|
+
}
|
|
279
|
+
return WasmEncoder.__wrap(ret[0]);
|
|
280
|
+
}
|
|
281
|
+
/**
|
|
282
|
+
* Skip biometric fields during encoding
|
|
283
|
+
* @returns {WasmEncoder}
|
|
284
|
+
*/
|
|
285
|
+
skipBiometrics() {
|
|
286
|
+
const ptr = this.__destroy_into_raw();
|
|
287
|
+
const ret = wasm.wasmencoder_skipBiometrics(ptr);
|
|
288
|
+
return WasmEncoder.__wrap(ret);
|
|
289
|
+
}
|
|
290
|
+
}
|
|
291
|
+
if (Symbol.dispose) WasmEncoder.prototype[Symbol.dispose] = WasmEncoder.prototype.free;
|
|
292
|
+
|
|
293
|
+
/**
|
|
294
|
+
* Generate a random 12-byte nonce for AES-GCM encryption
|
|
295
|
+
* @returns {Uint8Array}
|
|
296
|
+
*/
|
|
297
|
+
export function generateNonce() {
|
|
298
|
+
const ret = wasm.generateNonce();
|
|
299
|
+
var v1 = getArrayU8FromWasm0(ret[0], ret[1]).slice();
|
|
300
|
+
wasm.__wbindgen_free(ret[0], ret[1] * 1, 1);
|
|
301
|
+
return v1;
|
|
302
|
+
}
|
|
303
|
+
|
|
304
|
+
export function init_panic_hook() {
|
|
305
|
+
wasm.init_panic_hook();
|
|
306
|
+
}
|
|
307
|
+
|
|
308
|
+
/**
|
|
309
|
+
* Check if the WASM module is loaded correctly
|
|
310
|
+
* @returns {boolean}
|
|
311
|
+
*/
|
|
312
|
+
export function isLoaded() {
|
|
313
|
+
const ret = wasm.isLoaded();
|
|
314
|
+
return ret !== 0;
|
|
315
|
+
}
|
|
316
|
+
|
|
317
|
+
/**
|
|
318
|
+
* Get the library version
|
|
319
|
+
* @returns {string}
|
|
320
|
+
*/
|
|
321
|
+
export function version() {
|
|
322
|
+
let deferred1_0;
|
|
323
|
+
let deferred1_1;
|
|
324
|
+
try {
|
|
325
|
+
const ret = wasm.version();
|
|
326
|
+
deferred1_0 = ret[0];
|
|
327
|
+
deferred1_1 = ret[1];
|
|
328
|
+
return getStringFromWasm0(ret[0], ret[1]);
|
|
329
|
+
} finally {
|
|
330
|
+
wasm.__wbindgen_free(deferred1_0, deferred1_1, 1);
|
|
331
|
+
}
|
|
332
|
+
}
|
|
333
|
+
export function __wbg_Error_8c4e43fe74559d73(arg0, arg1) {
|
|
334
|
+
const ret = Error(getStringFromWasm0(arg0, arg1));
|
|
335
|
+
return ret;
|
|
336
|
+
}
|
|
337
|
+
export function __wbg_Number_04624de7d0e8332d(arg0) {
|
|
338
|
+
const ret = Number(arg0);
|
|
339
|
+
return ret;
|
|
340
|
+
}
|
|
341
|
+
export function __wbg_String_8f0eb39a4a4c2f66(arg0, arg1) {
|
|
342
|
+
const ret = String(arg1);
|
|
343
|
+
const ptr1 = passStringToWasm0(ret, wasm.__wbindgen_malloc, wasm.__wbindgen_realloc);
|
|
344
|
+
const len1 = WASM_VECTOR_LEN;
|
|
345
|
+
getDataViewMemory0().setInt32(arg0 + 4 * 1, len1, true);
|
|
346
|
+
getDataViewMemory0().setInt32(arg0 + 4 * 0, ptr1, true);
|
|
347
|
+
}
|
|
348
|
+
export function __wbg___wbindgen_bigint_get_as_i64_8fcf4ce7f1ca72a2(arg0, arg1) {
|
|
349
|
+
const v = arg1;
|
|
350
|
+
const ret = typeof(v) === 'bigint' ? v : undefined;
|
|
351
|
+
getDataViewMemory0().setBigInt64(arg0 + 8 * 1, isLikeNone(ret) ? BigInt(0) : ret, true);
|
|
352
|
+
getDataViewMemory0().setInt32(arg0 + 4 * 0, !isLikeNone(ret), true);
|
|
353
|
+
}
|
|
354
|
+
export function __wbg___wbindgen_boolean_get_bbbb1c18aa2f5e25(arg0) {
|
|
355
|
+
const v = arg0;
|
|
356
|
+
const ret = typeof(v) === 'boolean' ? v : undefined;
|
|
357
|
+
return isLikeNone(ret) ? 0xFFFFFF : ret ? 1 : 0;
|
|
358
|
+
}
|
|
359
|
+
export function __wbg___wbindgen_debug_string_0bc8482c6e3508ae(arg0, arg1) {
|
|
360
|
+
const ret = debugString(arg1);
|
|
361
|
+
const ptr1 = passStringToWasm0(ret, wasm.__wbindgen_malloc, wasm.__wbindgen_realloc);
|
|
362
|
+
const len1 = WASM_VECTOR_LEN;
|
|
363
|
+
getDataViewMemory0().setInt32(arg0 + 4 * 1, len1, true);
|
|
364
|
+
getDataViewMemory0().setInt32(arg0 + 4 * 0, ptr1, true);
|
|
365
|
+
}
|
|
366
|
+
export function __wbg___wbindgen_in_47fa6863be6f2f25(arg0, arg1) {
|
|
367
|
+
const ret = arg0 in arg1;
|
|
368
|
+
return ret;
|
|
369
|
+
}
|
|
370
|
+
export function __wbg___wbindgen_is_bigint_31b12575b56f32fc(arg0) {
|
|
371
|
+
const ret = typeof(arg0) === 'bigint';
|
|
372
|
+
return ret;
|
|
373
|
+
}
|
|
374
|
+
export function __wbg___wbindgen_is_function_0095a73b8b156f76(arg0) {
|
|
375
|
+
const ret = typeof(arg0) === 'function';
|
|
376
|
+
return ret;
|
|
377
|
+
}
|
|
378
|
+
export function __wbg___wbindgen_is_object_5ae8e5880f2c1fbd(arg0) {
|
|
379
|
+
const val = arg0;
|
|
380
|
+
const ret = typeof(val) === 'object' && val !== null;
|
|
381
|
+
return ret;
|
|
382
|
+
}
|
|
383
|
+
export function __wbg___wbindgen_is_string_cd444516edc5b180(arg0) {
|
|
384
|
+
const ret = typeof(arg0) === 'string';
|
|
385
|
+
return ret;
|
|
386
|
+
}
|
|
387
|
+
export function __wbg___wbindgen_is_undefined_9e4d92534c42d778(arg0) {
|
|
388
|
+
const ret = arg0 === undefined;
|
|
389
|
+
return ret;
|
|
390
|
+
}
|
|
391
|
+
export function __wbg___wbindgen_jsval_eq_11888390b0186270(arg0, arg1) {
|
|
392
|
+
const ret = arg0 === arg1;
|
|
393
|
+
return ret;
|
|
394
|
+
}
|
|
395
|
+
export function __wbg___wbindgen_jsval_loose_eq_9dd77d8cd6671811(arg0, arg1) {
|
|
396
|
+
const ret = arg0 == arg1;
|
|
397
|
+
return ret;
|
|
398
|
+
}
|
|
399
|
+
export function __wbg___wbindgen_number_get_8ff4255516ccad3e(arg0, arg1) {
|
|
400
|
+
const obj = arg1;
|
|
401
|
+
const ret = typeof(obj) === 'number' ? obj : undefined;
|
|
402
|
+
getDataViewMemory0().setFloat64(arg0 + 8 * 1, isLikeNone(ret) ? 0 : ret, true);
|
|
403
|
+
getDataViewMemory0().setInt32(arg0 + 4 * 0, !isLikeNone(ret), true);
|
|
404
|
+
}
|
|
405
|
+
export function __wbg___wbindgen_string_get_72fb696202c56729(arg0, arg1) {
|
|
406
|
+
const obj = arg1;
|
|
407
|
+
const ret = typeof(obj) === 'string' ? obj : undefined;
|
|
408
|
+
var ptr1 = isLikeNone(ret) ? 0 : passStringToWasm0(ret, wasm.__wbindgen_malloc, wasm.__wbindgen_realloc);
|
|
409
|
+
var len1 = WASM_VECTOR_LEN;
|
|
410
|
+
getDataViewMemory0().setInt32(arg0 + 4 * 1, len1, true);
|
|
411
|
+
getDataViewMemory0().setInt32(arg0 + 4 * 0, ptr1, true);
|
|
412
|
+
}
|
|
413
|
+
export function __wbg___wbindgen_throw_be289d5034ed271b(arg0, arg1) {
|
|
414
|
+
throw new Error(getStringFromWasm0(arg0, arg1));
|
|
415
|
+
}
|
|
416
|
+
export function __wbg_call_389efe28435a9388() { return handleError(function (arg0, arg1) {
|
|
417
|
+
const ret = arg0.call(arg1);
|
|
418
|
+
return ret;
|
|
419
|
+
}, arguments); }
|
|
420
|
+
export function __wbg_call_4708e0c13bdc8e95() { return handleError(function (arg0, arg1, arg2) {
|
|
421
|
+
const ret = arg0.call(arg1, arg2);
|
|
422
|
+
return ret;
|
|
423
|
+
}, arguments); }
|
|
424
|
+
export function __wbg_crypto_86f2631e91b51511(arg0) {
|
|
425
|
+
const ret = arg0.crypto;
|
|
426
|
+
return ret;
|
|
427
|
+
}
|
|
428
|
+
export function __wbg_done_57b39ecd9addfe81(arg0) {
|
|
429
|
+
const ret = arg0.done;
|
|
430
|
+
return ret;
|
|
431
|
+
}
|
|
432
|
+
export function __wbg_error_7534b8e9a36f1ab4(arg0, arg1) {
|
|
433
|
+
let deferred0_0;
|
|
434
|
+
let deferred0_1;
|
|
435
|
+
try {
|
|
436
|
+
deferred0_0 = arg0;
|
|
437
|
+
deferred0_1 = arg1;
|
|
438
|
+
console.error(getStringFromWasm0(arg0, arg1));
|
|
439
|
+
} finally {
|
|
440
|
+
wasm.__wbindgen_free(deferred0_0, deferred0_1, 1);
|
|
441
|
+
}
|
|
442
|
+
}
|
|
443
|
+
export function __wbg_getRandomValues_b3f15fcbfabb0f8b() { return handleError(function (arg0, arg1) {
|
|
444
|
+
arg0.getRandomValues(arg1);
|
|
445
|
+
}, arguments); }
|
|
446
|
+
export function __wbg_get_9b94d73e6221f75c(arg0, arg1) {
|
|
447
|
+
const ret = arg0[arg1 >>> 0];
|
|
448
|
+
return ret;
|
|
449
|
+
}
|
|
450
|
+
export function __wbg_get_b3ed3ad4be2bc8ac() { return handleError(function (arg0, arg1) {
|
|
451
|
+
const ret = Reflect.get(arg0, arg1);
|
|
452
|
+
return ret;
|
|
453
|
+
}, arguments); }
|
|
454
|
+
export function __wbg_get_with_ref_key_1dc361bd10053bfe(arg0, arg1) {
|
|
455
|
+
const ret = arg0[arg1];
|
|
456
|
+
return ret;
|
|
457
|
+
}
|
|
458
|
+
export function __wbg_instanceof_ArrayBuffer_c367199e2fa2aa04(arg0) {
|
|
459
|
+
let result;
|
|
460
|
+
try {
|
|
461
|
+
result = arg0 instanceof ArrayBuffer;
|
|
462
|
+
} catch (_) {
|
|
463
|
+
result = false;
|
|
464
|
+
}
|
|
465
|
+
const ret = result;
|
|
466
|
+
return ret;
|
|
467
|
+
}
|
|
468
|
+
export function __wbg_instanceof_Uint8Array_9b9075935c74707c(arg0) {
|
|
469
|
+
let result;
|
|
470
|
+
try {
|
|
471
|
+
result = arg0 instanceof Uint8Array;
|
|
472
|
+
} catch (_) {
|
|
473
|
+
result = false;
|
|
474
|
+
}
|
|
475
|
+
const ret = result;
|
|
476
|
+
return ret;
|
|
477
|
+
}
|
|
478
|
+
export function __wbg_isArray_d314bb98fcf08331(arg0) {
|
|
479
|
+
const ret = Array.isArray(arg0);
|
|
480
|
+
return ret;
|
|
481
|
+
}
|
|
482
|
+
export function __wbg_isSafeInteger_bfbc7332a9768d2a(arg0) {
|
|
483
|
+
const ret = Number.isSafeInteger(arg0);
|
|
484
|
+
return ret;
|
|
485
|
+
}
|
|
486
|
+
export function __wbg_iterator_6ff6560ca1568e55() {
|
|
487
|
+
const ret = Symbol.iterator;
|
|
488
|
+
return ret;
|
|
489
|
+
}
|
|
490
|
+
export function __wbg_length_32ed9a279acd054c(arg0) {
|
|
491
|
+
const ret = arg0.length;
|
|
492
|
+
return ret;
|
|
493
|
+
}
|
|
494
|
+
export function __wbg_length_35a7bace40f36eac(arg0) {
|
|
495
|
+
const ret = arg0.length;
|
|
496
|
+
return ret;
|
|
497
|
+
}
|
|
498
|
+
export function __wbg_msCrypto_d562bbe83e0d4b91(arg0) {
|
|
499
|
+
const ret = arg0.msCrypto;
|
|
500
|
+
return ret;
|
|
501
|
+
}
|
|
502
|
+
export function __wbg_new_361308b2356cecd0() {
|
|
503
|
+
const ret = new Object();
|
|
504
|
+
return ret;
|
|
505
|
+
}
|
|
506
|
+
export function __wbg_new_3eb36ae241fe6f44() {
|
|
507
|
+
const ret = new Array();
|
|
508
|
+
return ret;
|
|
509
|
+
}
|
|
510
|
+
export function __wbg_new_8a6f238a6ece86ea() {
|
|
511
|
+
const ret = new Error();
|
|
512
|
+
return ret;
|
|
513
|
+
}
|
|
514
|
+
export function __wbg_new_dd2b680c8bf6ae29(arg0) {
|
|
515
|
+
const ret = new Uint8Array(arg0);
|
|
516
|
+
return ret;
|
|
517
|
+
}
|
|
518
|
+
export function __wbg_new_no_args_1c7c842f08d00ebb(arg0, arg1) {
|
|
519
|
+
const ret = new Function(getStringFromWasm0(arg0, arg1));
|
|
520
|
+
return ret;
|
|
521
|
+
}
|
|
522
|
+
export function __wbg_new_with_length_a2c39cbe88fd8ff1(arg0) {
|
|
523
|
+
const ret = new Uint8Array(arg0 >>> 0);
|
|
524
|
+
return ret;
|
|
525
|
+
}
|
|
526
|
+
export function __wbg_next_3482f54c49e8af19() { return handleError(function (arg0) {
|
|
527
|
+
const ret = arg0.next();
|
|
528
|
+
return ret;
|
|
529
|
+
}, arguments); }
|
|
530
|
+
export function __wbg_next_418f80d8f5303233(arg0) {
|
|
531
|
+
const ret = arg0.next;
|
|
532
|
+
return ret;
|
|
533
|
+
}
|
|
534
|
+
export function __wbg_node_e1f24f89a7336c2e(arg0) {
|
|
535
|
+
const ret = arg0.node;
|
|
536
|
+
return ret;
|
|
537
|
+
}
|
|
538
|
+
export function __wbg_process_3975fd6c72f520aa(arg0) {
|
|
539
|
+
const ret = arg0.process;
|
|
540
|
+
return ret;
|
|
541
|
+
}
|
|
542
|
+
export function __wbg_prototypesetcall_bdcdcc5842e4d77d(arg0, arg1, arg2) {
|
|
543
|
+
Uint8Array.prototype.set.call(getArrayU8FromWasm0(arg0, arg1), arg2);
|
|
544
|
+
}
|
|
545
|
+
export function __wbg_randomFillSync_f8c153b79f285817() { return handleError(function (arg0, arg1) {
|
|
546
|
+
arg0.randomFillSync(arg1);
|
|
547
|
+
}, arguments); }
|
|
548
|
+
export function __wbg_require_b74f47fc2d022fd6() { return handleError(function () {
|
|
549
|
+
const ret = module.require;
|
|
550
|
+
return ret;
|
|
551
|
+
}, arguments); }
|
|
552
|
+
export function __wbg_set_3f1d0b984ed272ed(arg0, arg1, arg2) {
|
|
553
|
+
arg0[arg1] = arg2;
|
|
554
|
+
}
|
|
555
|
+
export function __wbg_set_f43e577aea94465b(arg0, arg1, arg2) {
|
|
556
|
+
arg0[arg1 >>> 0] = arg2;
|
|
557
|
+
}
|
|
558
|
+
export function __wbg_stack_0ed75d68575b0f3c(arg0, arg1) {
|
|
559
|
+
const ret = arg1.stack;
|
|
560
|
+
const ptr1 = passStringToWasm0(ret, wasm.__wbindgen_malloc, wasm.__wbindgen_realloc);
|
|
561
|
+
const len1 = WASM_VECTOR_LEN;
|
|
562
|
+
getDataViewMemory0().setInt32(arg0 + 4 * 1, len1, true);
|
|
563
|
+
getDataViewMemory0().setInt32(arg0 + 4 * 0, ptr1, true);
|
|
564
|
+
}
|
|
565
|
+
export function __wbg_static_accessor_GLOBAL_12837167ad935116() {
|
|
566
|
+
const ret = typeof global === 'undefined' ? null : global;
|
|
567
|
+
return isLikeNone(ret) ? 0 : addToExternrefTable0(ret);
|
|
568
|
+
}
|
|
569
|
+
export function __wbg_static_accessor_GLOBAL_THIS_e628e89ab3b1c95f() {
|
|
570
|
+
const ret = typeof globalThis === 'undefined' ? null : globalThis;
|
|
571
|
+
return isLikeNone(ret) ? 0 : addToExternrefTable0(ret);
|
|
572
|
+
}
|
|
573
|
+
export function __wbg_static_accessor_SELF_a621d3dfbb60d0ce() {
|
|
574
|
+
const ret = typeof self === 'undefined' ? null : self;
|
|
575
|
+
return isLikeNone(ret) ? 0 : addToExternrefTable0(ret);
|
|
576
|
+
}
|
|
577
|
+
export function __wbg_static_accessor_WINDOW_f8727f0cf888e0bd() {
|
|
578
|
+
const ret = typeof window === 'undefined' ? null : window;
|
|
579
|
+
return isLikeNone(ret) ? 0 : addToExternrefTable0(ret);
|
|
580
|
+
}
|
|
581
|
+
export function __wbg_subarray_a96e1fef17ed23cb(arg0, arg1, arg2) {
|
|
582
|
+
const ret = arg0.subarray(arg1 >>> 0, arg2 >>> 0);
|
|
583
|
+
return ret;
|
|
584
|
+
}
|
|
585
|
+
export function __wbg_value_0546255b415e96c1(arg0) {
|
|
586
|
+
const ret = arg0.value;
|
|
587
|
+
return ret;
|
|
588
|
+
}
|
|
589
|
+
export function __wbg_versions_4e31226f5e8dc909(arg0) {
|
|
590
|
+
const ret = arg0.versions;
|
|
591
|
+
return ret;
|
|
592
|
+
}
|
|
593
|
+
export function __wbindgen_cast_0000000000000001(arg0) {
|
|
594
|
+
// Cast intrinsic for `F64 -> Externref`.
|
|
595
|
+
const ret = arg0;
|
|
596
|
+
return ret;
|
|
597
|
+
}
|
|
598
|
+
export function __wbindgen_cast_0000000000000002(arg0) {
|
|
599
|
+
// Cast intrinsic for `I64 -> Externref`.
|
|
600
|
+
const ret = arg0;
|
|
601
|
+
return ret;
|
|
602
|
+
}
|
|
603
|
+
export function __wbindgen_cast_0000000000000003(arg0, arg1) {
|
|
604
|
+
// Cast intrinsic for `Ref(Slice(U8)) -> NamedExternref("Uint8Array")`.
|
|
605
|
+
const ret = getArrayU8FromWasm0(arg0, arg1);
|
|
606
|
+
return ret;
|
|
607
|
+
}
|
|
608
|
+
export function __wbindgen_cast_0000000000000004(arg0, arg1) {
|
|
609
|
+
// Cast intrinsic for `Ref(String) -> Externref`.
|
|
610
|
+
const ret = getStringFromWasm0(arg0, arg1);
|
|
611
|
+
return ret;
|
|
612
|
+
}
|
|
613
|
+
export function __wbindgen_init_externref_table() {
|
|
614
|
+
const table = wasm.__wbindgen_externrefs;
|
|
615
|
+
const offset = table.grow(4);
|
|
616
|
+
table.set(0, undefined);
|
|
617
|
+
table.set(offset + 0, undefined);
|
|
618
|
+
table.set(offset + 1, null);
|
|
619
|
+
table.set(offset + 2, true);
|
|
620
|
+
table.set(offset + 3, false);
|
|
621
|
+
}
|
|
622
|
+
const WasmDecoderFinalization = (typeof FinalizationRegistry === 'undefined')
|
|
623
|
+
? { register: () => {}, unregister: () => {} }
|
|
624
|
+
: new FinalizationRegistry(ptr => wasm.__wbg_wasmdecoder_free(ptr >>> 0, 1));
|
|
625
|
+
const WasmEncoderFinalization = (typeof FinalizationRegistry === 'undefined')
|
|
626
|
+
? { register: () => {}, unregister: () => {} }
|
|
627
|
+
: new FinalizationRegistry(ptr => wasm.__wbg_wasmencoder_free(ptr >>> 0, 1));
|
|
628
|
+
|
|
629
|
+
function addToExternrefTable0(obj) {
|
|
630
|
+
const idx = wasm.__externref_table_alloc();
|
|
631
|
+
wasm.__wbindgen_externrefs.set(idx, obj);
|
|
632
|
+
return idx;
|
|
633
|
+
}
|
|
634
|
+
|
|
635
|
+
function debugString(val) {
|
|
636
|
+
// primitive types
|
|
637
|
+
const type = typeof val;
|
|
638
|
+
if (type == 'number' || type == 'boolean' || val == null) {
|
|
639
|
+
return `${val}`;
|
|
640
|
+
}
|
|
641
|
+
if (type == 'string') {
|
|
642
|
+
return `"${val}"`;
|
|
643
|
+
}
|
|
644
|
+
if (type == 'symbol') {
|
|
645
|
+
const description = val.description;
|
|
646
|
+
if (description == null) {
|
|
647
|
+
return 'Symbol';
|
|
648
|
+
} else {
|
|
649
|
+
return `Symbol(${description})`;
|
|
650
|
+
}
|
|
651
|
+
}
|
|
652
|
+
if (type == 'function') {
|
|
653
|
+
const name = val.name;
|
|
654
|
+
if (typeof name == 'string' && name.length > 0) {
|
|
655
|
+
return `Function(${name})`;
|
|
656
|
+
} else {
|
|
657
|
+
return 'Function';
|
|
658
|
+
}
|
|
659
|
+
}
|
|
660
|
+
// objects
|
|
661
|
+
if (Array.isArray(val)) {
|
|
662
|
+
const length = val.length;
|
|
663
|
+
let debug = '[';
|
|
664
|
+
if (length > 0) {
|
|
665
|
+
debug += debugString(val[0]);
|
|
666
|
+
}
|
|
667
|
+
for(let i = 1; i < length; i++) {
|
|
668
|
+
debug += ', ' + debugString(val[i]);
|
|
669
|
+
}
|
|
670
|
+
debug += ']';
|
|
671
|
+
return debug;
|
|
672
|
+
}
|
|
673
|
+
// Test for built-in
|
|
674
|
+
const builtInMatches = /\[object ([^\]]+)\]/.exec(toString.call(val));
|
|
675
|
+
let className;
|
|
676
|
+
if (builtInMatches && builtInMatches.length > 1) {
|
|
677
|
+
className = builtInMatches[1];
|
|
678
|
+
} else {
|
|
679
|
+
// Failed to match the standard '[object ClassName]'
|
|
680
|
+
return toString.call(val);
|
|
681
|
+
}
|
|
682
|
+
if (className == 'Object') {
|
|
683
|
+
// we're a user defined class or Object
|
|
684
|
+
// JSON.stringify avoids problems with cycles, and is generally much
|
|
685
|
+
// easier than looping through ownProperties of `val`.
|
|
686
|
+
try {
|
|
687
|
+
return 'Object(' + JSON.stringify(val) + ')';
|
|
688
|
+
} catch (_) {
|
|
689
|
+
return 'Object';
|
|
690
|
+
}
|
|
691
|
+
}
|
|
692
|
+
// errors
|
|
693
|
+
if (val instanceof Error) {
|
|
694
|
+
return `${val.name}: ${val.message}\n${val.stack}`;
|
|
695
|
+
}
|
|
696
|
+
// TODO we could test for more things here, like `Set`s and `Map`s.
|
|
697
|
+
return className;
|
|
698
|
+
}
|
|
699
|
+
|
|
700
|
+
function getArrayU8FromWasm0(ptr, len) {
|
|
701
|
+
ptr = ptr >>> 0;
|
|
702
|
+
return getUint8ArrayMemory0().subarray(ptr / 1, ptr / 1 + len);
|
|
703
|
+
}
|
|
704
|
+
|
|
705
|
+
let cachedDataViewMemory0 = null;
|
|
706
|
+
function getDataViewMemory0() {
|
|
707
|
+
if (cachedDataViewMemory0 === null || cachedDataViewMemory0.buffer.detached === true || (cachedDataViewMemory0.buffer.detached === undefined && cachedDataViewMemory0.buffer !== wasm.memory.buffer)) {
|
|
708
|
+
cachedDataViewMemory0 = new DataView(wasm.memory.buffer);
|
|
709
|
+
}
|
|
710
|
+
return cachedDataViewMemory0;
|
|
711
|
+
}
|
|
712
|
+
|
|
713
|
+
function getStringFromWasm0(ptr, len) {
|
|
714
|
+
ptr = ptr >>> 0;
|
|
715
|
+
return decodeText(ptr, len);
|
|
716
|
+
}
|
|
717
|
+
|
|
718
|
+
let cachedUint8ArrayMemory0 = null;
|
|
719
|
+
function getUint8ArrayMemory0() {
|
|
720
|
+
if (cachedUint8ArrayMemory0 === null || cachedUint8ArrayMemory0.byteLength === 0) {
|
|
721
|
+
cachedUint8ArrayMemory0 = new Uint8Array(wasm.memory.buffer);
|
|
722
|
+
}
|
|
723
|
+
return cachedUint8ArrayMemory0;
|
|
724
|
+
}
|
|
725
|
+
|
|
726
|
+
function handleError(f, args) {
|
|
727
|
+
try {
|
|
728
|
+
return f.apply(this, args);
|
|
729
|
+
} catch (e) {
|
|
730
|
+
const idx = addToExternrefTable0(e);
|
|
731
|
+
wasm.__wbindgen_exn_store(idx);
|
|
732
|
+
}
|
|
733
|
+
}
|
|
734
|
+
|
|
735
|
+
function isLikeNone(x) {
|
|
736
|
+
return x === undefined || x === null;
|
|
737
|
+
}
|
|
738
|
+
|
|
739
|
+
function passArray8ToWasm0(arg, malloc) {
|
|
740
|
+
const ptr = malloc(arg.length * 1, 1) >>> 0;
|
|
741
|
+
getUint8ArrayMemory0().set(arg, ptr / 1);
|
|
742
|
+
WASM_VECTOR_LEN = arg.length;
|
|
743
|
+
return ptr;
|
|
744
|
+
}
|
|
745
|
+
|
|
746
|
+
function passStringToWasm0(arg, malloc, realloc) {
|
|
747
|
+
if (realloc === undefined) {
|
|
748
|
+
const buf = cachedTextEncoder.encode(arg);
|
|
749
|
+
const ptr = malloc(buf.length, 1) >>> 0;
|
|
750
|
+
getUint8ArrayMemory0().subarray(ptr, ptr + buf.length).set(buf);
|
|
751
|
+
WASM_VECTOR_LEN = buf.length;
|
|
752
|
+
return ptr;
|
|
753
|
+
}
|
|
754
|
+
|
|
755
|
+
let len = arg.length;
|
|
756
|
+
let ptr = malloc(len, 1) >>> 0;
|
|
757
|
+
|
|
758
|
+
const mem = getUint8ArrayMemory0();
|
|
759
|
+
|
|
760
|
+
let offset = 0;
|
|
761
|
+
|
|
762
|
+
for (; offset < len; offset++) {
|
|
763
|
+
const code = arg.charCodeAt(offset);
|
|
764
|
+
if (code > 0x7F) break;
|
|
765
|
+
mem[ptr + offset] = code;
|
|
766
|
+
}
|
|
767
|
+
if (offset !== len) {
|
|
768
|
+
if (offset !== 0) {
|
|
769
|
+
arg = arg.slice(offset);
|
|
770
|
+
}
|
|
771
|
+
ptr = realloc(ptr, len, len = offset + arg.length * 3, 1) >>> 0;
|
|
772
|
+
const view = getUint8ArrayMemory0().subarray(ptr + offset, ptr + len);
|
|
773
|
+
const ret = cachedTextEncoder.encodeInto(arg, view);
|
|
774
|
+
|
|
775
|
+
offset += ret.written;
|
|
776
|
+
ptr = realloc(ptr, len, offset, 1) >>> 0;
|
|
777
|
+
}
|
|
778
|
+
|
|
779
|
+
WASM_VECTOR_LEN = offset;
|
|
780
|
+
return ptr;
|
|
781
|
+
}
|
|
782
|
+
|
|
783
|
+
function takeFromExternrefTable0(idx) {
|
|
784
|
+
const value = wasm.__wbindgen_externrefs.get(idx);
|
|
785
|
+
wasm.__externref_table_dealloc(idx);
|
|
786
|
+
return value;
|
|
787
|
+
}
|
|
788
|
+
|
|
789
|
+
let cachedTextDecoder = new TextDecoder('utf-8', { ignoreBOM: true, fatal: true });
|
|
790
|
+
cachedTextDecoder.decode();
|
|
791
|
+
const MAX_SAFARI_DECODE_BYTES = 2146435072;
|
|
792
|
+
let numBytesDecoded = 0;
|
|
793
|
+
function decodeText(ptr, len) {
|
|
794
|
+
numBytesDecoded += len;
|
|
795
|
+
if (numBytesDecoded >= MAX_SAFARI_DECODE_BYTES) {
|
|
796
|
+
cachedTextDecoder = new TextDecoder('utf-8', { ignoreBOM: true, fatal: true });
|
|
797
|
+
cachedTextDecoder.decode();
|
|
798
|
+
numBytesDecoded = len;
|
|
799
|
+
}
|
|
800
|
+
return cachedTextDecoder.decode(getUint8ArrayMemory0().subarray(ptr, ptr + len));
|
|
801
|
+
}
|
|
802
|
+
|
|
803
|
+
const cachedTextEncoder = new TextEncoder();
|
|
804
|
+
|
|
805
|
+
if (!('encodeInto' in cachedTextEncoder)) {
|
|
806
|
+
cachedTextEncoder.encodeInto = function (arg, view) {
|
|
807
|
+
const buf = cachedTextEncoder.encode(arg);
|
|
808
|
+
view.set(buf);
|
|
809
|
+
return {
|
|
810
|
+
read: arg.length,
|
|
811
|
+
written: buf.length
|
|
812
|
+
};
|
|
813
|
+
};
|
|
814
|
+
}
|
|
815
|
+
|
|
816
|
+
let WASM_VECTOR_LEN = 0;
|
|
817
|
+
|
|
818
|
+
|
|
819
|
+
let wasm;
|
|
820
|
+
export function __wbg_set_wasm(val) {
|
|
821
|
+
wasm = val;
|
|
822
|
+
}
|