@xmtp/wasm-bindings 1.5.0-dev.c78b650 → 1.5.0-rc2

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.
@@ -2,8 +2,6 @@ import { JSArrayBufferCopy } from './snippets/wasm-array-cp-201e2a98f0e691f7/cop
2
2
 
3
3
  let wasm;
4
4
 
5
- let WASM_VECTOR_LEN = 0;
6
-
7
5
  let cachedUint8ArrayMemory0 = null;
8
6
 
9
7
  function getUint8ArrayMemory0() {
@@ -13,6 +11,29 @@ function getUint8ArrayMemory0() {
13
11
  return cachedUint8ArrayMemory0;
14
12
  }
15
13
 
14
+ let cachedTextDecoder = (typeof TextDecoder !== 'undefined' ? new TextDecoder('utf-8', { ignoreBOM: true, fatal: true }) : { decode: () => { throw Error('TextDecoder not available') } } );
15
+
16
+ if (typeof TextDecoder !== 'undefined') { cachedTextDecoder.decode(); };
17
+
18
+ const MAX_SAFARI_DECODE_BYTES = 2146435072;
19
+ let numBytesDecoded = 0;
20
+ function decodeText(ptr, len) {
21
+ numBytesDecoded += len;
22
+ if (numBytesDecoded >= MAX_SAFARI_DECODE_BYTES) {
23
+ cachedTextDecoder = (typeof TextDecoder !== 'undefined' ? new TextDecoder('utf-8', { ignoreBOM: true, fatal: true }) : { decode: () => { throw Error('TextDecoder not available') } } );
24
+ cachedTextDecoder.decode();
25
+ numBytesDecoded = len;
26
+ }
27
+ return cachedTextDecoder.decode(getUint8ArrayMemory0().subarray(ptr, ptr + len));
28
+ }
29
+
30
+ function getStringFromWasm0(ptr, len) {
31
+ ptr = ptr >>> 0;
32
+ return decodeText(ptr, len);
33
+ }
34
+
35
+ let WASM_VECTOR_LEN = 0;
36
+
16
37
  const cachedTextEncoder = (typeof TextEncoder !== 'undefined' ? new TextEncoder('utf-8') : { encode: () => { throw Error('TextEncoder not available') } } );
17
38
 
18
39
  const encodeString = (typeof cachedTextEncoder.encodeInto === 'function'
@@ -76,15 +97,6 @@ function getDataViewMemory0() {
76
97
  return cachedDataViewMemory0;
77
98
  }
78
99
 
79
- const cachedTextDecoder = (typeof TextDecoder !== 'undefined' ? new TextDecoder('utf-8', { ignoreBOM: true, fatal: true }) : { decode: () => { throw Error('TextDecoder not available') } } );
80
-
81
- if (typeof TextDecoder !== 'undefined') { cachedTextDecoder.decode(); };
82
-
83
- function getStringFromWasm0(ptr, len) {
84
- ptr = ptr >>> 0;
85
- return cachedTextDecoder.decode(getUint8ArrayMemory0().subarray(ptr, ptr + len));
86
- }
87
-
88
100
  function addToExternrefTable0(obj) {
89
101
  const idx = wasm.__externref_table_alloc();
90
102
  wasm.__wbindgen_export_4.set(idx, obj);
@@ -215,68 +227,12 @@ function debugString(val) {
215
227
  // TODO we could test for more things here, like `Set`s and `Map`s.
216
228
  return className;
217
229
  }
218
- /**
219
- * @param {string} host
220
- * @param {Identifier} accountIdentifier
221
- * @returns {Promise<string | undefined>}
222
- */
223
- export function getInboxIdForIdentifier(host, accountIdentifier) {
224
- const ptr0 = passStringToWasm0(host, wasm.__wbindgen_malloc, wasm.__wbindgen_realloc);
225
- const len0 = WASM_VECTOR_LEN;
226
- const ret = wasm.getInboxIdForIdentifier(ptr0, len0, accountIdentifier);
227
- return ret;
228
- }
229
-
230
- function takeFromExternrefTable0(idx) {
231
- const value = wasm.__wbindgen_export_4.get(idx);
232
- wasm.__externref_table_dealloc(idx);
233
- return value;
234
- }
235
- /**
236
- * @param {Identifier} accountIdentifier
237
- * @returns {string}
238
- */
239
- export function generateInboxId(accountIdentifier) {
240
- let deferred2_0;
241
- let deferred2_1;
242
- try {
243
- const ret = wasm.generateInboxId(accountIdentifier);
244
- var ptr1 = ret[0];
245
- var len1 = ret[1];
246
- if (ret[3]) {
247
- ptr1 = 0; len1 = 0;
248
- throw takeFromExternrefTable0(ret[2]);
249
- }
250
- deferred2_0 = ptr1;
251
- deferred2_1 = len1;
252
- return getStringFromWasm0(ptr1, len1);
253
- } finally {
254
- wasm.__wbindgen_free(deferred2_0, deferred2_1, 1);
255
- }
256
- }
257
-
258
- function passArrayJsValueToWasm0(array, malloc) {
259
- const ptr = malloc(array.length * 4, 4) >>> 0;
260
- for (let i = 0; i < array.length; i++) {
261
- const add = addToExternrefTable0(array[i]);
262
- getDataViewMemory0().setUint32(ptr + 4 * i, add, true);
263
- }
264
- WASM_VECTOR_LEN = array.length;
265
- return ptr;
266
- }
267
230
 
268
231
  function _assertClass(instance, klass) {
269
232
  if (!(instance instanceof klass)) {
270
233
  throw new Error(`expected instance of ${klass.name}`);
271
234
  }
272
235
  }
273
-
274
- function passArray8ToWasm0(arg, malloc) {
275
- const ptr = malloc(arg.length * 1, 1) >>> 0;
276
- getUint8ArrayMemory0().set(arg, ptr / 1);
277
- WASM_VECTOR_LEN = arg.length;
278
- return ptr;
279
- }
280
236
  /**
281
237
  * @param {string} host
282
238
  * @param {string} inbox_id
@@ -311,6 +267,21 @@ export function createClient(host, inbox_id, account_identifier, db_path, encryp
311
267
  return ret;
312
268
  }
313
269
 
270
+ function passArrayJsValueToWasm0(array, malloc) {
271
+ const ptr = malloc(array.length * 4, 4) >>> 0;
272
+ for (let i = 0; i < array.length; i++) {
273
+ const add = addToExternrefTable0(array[i]);
274
+ getDataViewMemory0().setUint32(ptr + 4 * i, add, true);
275
+ }
276
+ WASM_VECTOR_LEN = array.length;
277
+ return ptr;
278
+ }
279
+
280
+ function takeFromExternrefTable0(idx) {
281
+ const value = wasm.__wbindgen_export_4.get(idx);
282
+ wasm.__externref_table_dealloc(idx);
283
+ return value;
284
+ }
314
285
  /**
315
286
  * @param {MultiRemoteAttachment} multiRemoteAttachment
316
287
  * @returns {Uint8Array}
@@ -337,30 +308,45 @@ export function decodeMultiRemoteAttachment(bytes) {
337
308
  return MultiRemoteAttachment.__wrap(ret[0]);
338
309
  }
339
310
 
311
+ function passArray8ToWasm0(arg, malloc) {
312
+ const ptr = malloc(arg.length * 1, 1) >>> 0;
313
+ getUint8ArrayMemory0().set(arg, ptr / 1);
314
+ WASM_VECTOR_LEN = arg.length;
315
+ return ptr;
316
+ }
340
317
  /**
341
- * @param {Reaction} reaction
342
- * @returns {Uint8Array}
318
+ * @param {string} host
319
+ * @param {Identifier} accountIdentifier
320
+ * @returns {Promise<string | undefined>}
343
321
  */
344
- export function encodeReaction(reaction) {
345
- _assertClass(reaction, Reaction);
346
- var ptr0 = reaction.__destroy_into_raw();
347
- const ret = wasm.encodeReaction(ptr0);
348
- if (ret[2]) {
349
- throw takeFromExternrefTable0(ret[1]);
350
- }
351
- return takeFromExternrefTable0(ret[0]);
322
+ export function getInboxIdForIdentifier(host, accountIdentifier) {
323
+ const ptr0 = passStringToWasm0(host, wasm.__wbindgen_malloc, wasm.__wbindgen_realloc);
324
+ const len0 = WASM_VECTOR_LEN;
325
+ const ret = wasm.getInboxIdForIdentifier(ptr0, len0, accountIdentifier);
326
+ return ret;
352
327
  }
353
328
 
354
329
  /**
355
- * @param {Uint8Array} bytes
356
- * @returns {Reaction}
330
+ * @param {Identifier} accountIdentifier
331
+ * @returns {string}
357
332
  */
358
- export function decodeReaction(bytes) {
359
- const ret = wasm.decodeReaction(bytes);
360
- if (ret[2]) {
361
- throw takeFromExternrefTable0(ret[1]);
333
+ export function generateInboxId(accountIdentifier) {
334
+ let deferred2_0;
335
+ let deferred2_1;
336
+ try {
337
+ const ret = wasm.generateInboxId(accountIdentifier);
338
+ var ptr1 = ret[0];
339
+ var len1 = ret[1];
340
+ if (ret[3]) {
341
+ ptr1 = 0; len1 = 0;
342
+ throw takeFromExternrefTable0(ret[2]);
343
+ }
344
+ deferred2_0 = ptr1;
345
+ deferred2_1 = len1;
346
+ return getStringFromWasm0(ptr1, len1);
347
+ } finally {
348
+ wasm.__wbindgen_free(deferred2_0, deferred2_1, 1);
362
349
  }
363
- return Reaction.__wrap(ret[0]);
364
350
  }
365
351
 
366
352
  /**
@@ -422,6 +408,32 @@ export function applySignatureRequest(host, signature_request) {
422
408
  return ret;
423
409
  }
424
410
 
411
+ /**
412
+ * @param {Reaction} reaction
413
+ * @returns {Uint8Array}
414
+ */
415
+ export function encodeReaction(reaction) {
416
+ _assertClass(reaction, Reaction);
417
+ var ptr0 = reaction.__destroy_into_raw();
418
+ const ret = wasm.encodeReaction(ptr0);
419
+ if (ret[2]) {
420
+ throw takeFromExternrefTable0(ret[1]);
421
+ }
422
+ return takeFromExternrefTable0(ret[0]);
423
+ }
424
+
425
+ /**
426
+ * @param {Uint8Array} bytes
427
+ * @returns {Reaction}
428
+ */
429
+ export function decodeReaction(bytes) {
430
+ const ret = wasm.decodeReaction(bytes);
431
+ if (ret[2]) {
432
+ throw takeFromExternrefTable0(ret[1]);
433
+ }
434
+ return Reaction.__wrap(ret[0]);
435
+ }
436
+
425
437
  /**
426
438
  * Entry point invoked by JavaScript in a worker.
427
439
  * @param {number} ptr
@@ -433,20 +445,20 @@ export function task_worker_entry_point(ptr) {
433
445
  }
434
446
  }
435
447
 
436
- function __wbg_adapter_50(arg0, arg1) {
437
- wasm._dyn_core__ops__function__FnMut_____Output___R_as_wasm_bindgen__closure__WasmClosure___describe__invoke__h1abf41465a2d63c6(arg0, arg1);
448
+ function __wbg_adapter_48(arg0, arg1) {
449
+ wasm.wasm_bindgen__convert__closures_____invoke__h231d11d7d151a506(arg0, arg1);
438
450
  }
439
451
 
440
- function __wbg_adapter_53(arg0, arg1) {
441
- wasm._dyn_core__ops__function__FnMut_____Output___R_as_wasm_bindgen__closure__WasmClosure___describe__invoke__h8ef89b805ac22e85(arg0, arg1);
452
+ function __wbg_adapter_51(arg0, arg1) {
453
+ wasm.wasm_bindgen__convert__closures_____invoke__hfa5440517c90e88d(arg0, arg1);
442
454
  }
443
455
 
444
- function __wbg_adapter_56(arg0, arg1, arg2) {
445
- wasm.closure5253_externref_shim(arg0, arg1, arg2);
456
+ function __wbg_adapter_54(arg0, arg1, arg2) {
457
+ wasm.closure5306_externref_shim(arg0, arg1, arg2);
446
458
  }
447
459
 
448
- function __wbg_adapter_793(arg0, arg1, arg2, arg3) {
449
- wasm.closure6187_externref_shim(arg0, arg1, arg2, arg3);
460
+ function __wbg_adapter_791(arg0, arg1, arg2, arg3) {
461
+ wasm.closure6250_externref_shim(arg0, arg1, arg2, arg3);
450
462
  }
451
463
 
452
464
  /**
@@ -480,12 +492,13 @@ export const ContentType = Object.freeze({
480
492
  TransactionReference: 9, "9": "TransactionReference",
481
493
  });
482
494
  /**
483
- * @enum {0 | 1 | 2}
495
+ * @enum {0 | 1 | 2 | 3}
484
496
  */
485
497
  export const ConversationType = Object.freeze({
486
498
  Dm: 0, "0": "Dm",
487
499
  Group: 1, "1": "Group",
488
500
  Sync: 2, "2": "Sync",
501
+ Oneshot: 3, "3": "Oneshot",
489
502
  });
490
503
  /**
491
504
  * @enum {0 | 1 | 2}
@@ -1216,7 +1229,7 @@ export class ContentTypeId {
1216
1229
  set authorityId(arg0) {
1217
1230
  const ptr0 = passStringToWasm0(arg0, wasm.__wbindgen_malloc, wasm.__wbindgen_realloc);
1218
1231
  const len0 = WASM_VECTOR_LEN;
1219
- wasm.__wbg_set_contenttypeid_authorityId(this.__wbg_ptr, ptr0, len0);
1232
+ wasm.__wbg_set_consent_entity(this.__wbg_ptr, ptr0, len0);
1220
1233
  }
1221
1234
  /**
1222
1235
  * @returns {string}
@@ -2247,7 +2260,7 @@ export class Conversations {
2247
2260
  * @returns {Promise<ReadableStream>}
2248
2261
  */
2249
2262
  streamLocal(conversation_type) {
2250
- const ret = wasm.conversations_streamLocal(this.__wbg_ptr, isLikeNone(conversation_type) ? 3 : conversation_type);
2263
+ const ret = wasm.conversations_streamLocal(this.__wbg_ptr, isLikeNone(conversation_type) ? 4 : conversation_type);
2251
2264
  return ret;
2252
2265
  }
2253
2266
  /**
@@ -2256,7 +2269,7 @@ export class Conversations {
2256
2269
  * @returns {StreamCloser}
2257
2270
  */
2258
2271
  stream(callback, conversation_type) {
2259
- const ret = wasm.conversations_stream(this.__wbg_ptr, callback, isLikeNone(conversation_type) ? 3 : conversation_type);
2272
+ const ret = wasm.conversations_stream(this.__wbg_ptr, callback, isLikeNone(conversation_type) ? 4 : conversation_type);
2260
2273
  if (ret[2]) {
2261
2274
  throw takeFromExternrefTable0(ret[1]);
2262
2275
  }
@@ -2271,7 +2284,7 @@ export class Conversations {
2271
2284
  streamAllMessages(callback, conversation_type, consent_states) {
2272
2285
  var ptr0 = isLikeNone(consent_states) ? 0 : passArrayJsValueToWasm0(consent_states, wasm.__wbindgen_malloc);
2273
2286
  var len0 = WASM_VECTOR_LEN;
2274
- const ret = wasm.conversations_streamAllMessages(this.__wbg_ptr, callback, isLikeNone(conversation_type) ? 3 : conversation_type, ptr0, len0);
2287
+ const ret = wasm.conversations_streamAllMessages(this.__wbg_ptr, callback, isLikeNone(conversation_type) ? 4 : conversation_type, ptr0, len0);
2275
2288
  if (ret[2]) {
2276
2289
  throw takeFromExternrefTable0(ret[1]);
2277
2290
  }
@@ -3168,7 +3181,7 @@ export class Installation {
3168
3181
  set id(arg0) {
3169
3182
  const ptr0 = passStringToWasm0(arg0, wasm.__wbindgen_malloc, wasm.__wbindgen_realloc);
3170
3183
  const len0 = WASM_VECTOR_LEN;
3171
- wasm.__wbg_set_installation_id(this.__wbg_ptr, ptr0, len0);
3184
+ wasm.__wbg_set_conversationdebuginfo_forkDetails(this.__wbg_ptr, ptr0, len0);
3172
3185
  }
3173
3186
  /**
3174
3187
  * @returns {bigint | undefined}
@@ -3353,7 +3366,7 @@ export class KeyPackageStatus {
3353
3366
  * @returns {Lifetime | undefined}
3354
3367
  */
3355
3368
  get lifetime() {
3356
- const ret = wasm.__wbg_get_keypackagestatus_lifetime(this.__wbg_ptr);
3369
+ const ret = wasm.__wbg_get_createdmoptions_messageDisappearingSettings(this.__wbg_ptr);
3357
3370
  return ret === 0 ? undefined : Lifetime.__wrap(ret);
3358
3371
  }
3359
3372
  /**
@@ -3365,7 +3378,7 @@ export class KeyPackageStatus {
3365
3378
  _assertClass(arg0, Lifetime);
3366
3379
  ptr0 = arg0.__destroy_into_raw();
3367
3380
  }
3368
- wasm.__wbg_set_keypackagestatus_lifetime(this.__wbg_ptr, ptr0);
3381
+ wasm.__wbg_set_createdmoptions_messageDisappearingSettings(this.__wbg_ptr, ptr0);
3369
3382
  }
3370
3383
  /**
3371
3384
  * @returns {string | undefined}
@@ -3418,27 +3431,27 @@ export class Lifetime {
3418
3431
  * @returns {bigint}
3419
3432
  */
3420
3433
  get not_before() {
3421
- const ret = wasm.__wbg_get_apistats_upload_key_package(this.__wbg_ptr);
3434
+ const ret = wasm.__wbg_get_conversationdebuginfo_epoch(this.__wbg_ptr);
3422
3435
  return BigInt.asUintN(64, ret);
3423
3436
  }
3424
3437
  /**
3425
3438
  * @param {bigint} arg0
3426
3439
  */
3427
3440
  set not_before(arg0) {
3428
- wasm.__wbg_set_apistats_upload_key_package(this.__wbg_ptr, arg0);
3441
+ wasm.__wbg_set_conversationdebuginfo_epoch(this.__wbg_ptr, arg0);
3429
3442
  }
3430
3443
  /**
3431
3444
  * @returns {bigint}
3432
3445
  */
3433
3446
  get not_after() {
3434
- const ret = wasm.__wbg_get_apistats_fetch_key_package(this.__wbg_ptr);
3447
+ const ret = wasm.__wbg_get_conversationdebuginfo_cursor(this.__wbg_ptr);
3435
3448
  return BigInt.asUintN(64, ret);
3436
3449
  }
3437
3450
  /**
3438
3451
  * @param {bigint} arg0
3439
3452
  */
3440
3453
  set not_after(arg0) {
3441
- wasm.__wbg_set_apistats_fetch_key_package(this.__wbg_ptr, arg0);
3454
+ wasm.__wbg_set_conversationdebuginfo_cursor(this.__wbg_ptr, arg0);
3442
3455
  }
3443
3456
  }
3444
3457
 
@@ -3484,13 +3497,13 @@ export class ListConversationsOptions {
3484
3497
  */
3485
3498
  get conversationType() {
3486
3499
  const ret = wasm.__wbg_get_listconversationsoptions_conversationType(this.__wbg_ptr);
3487
- return ret === 3 ? undefined : ret;
3500
+ return ret === 4 ? undefined : ret;
3488
3501
  }
3489
3502
  /**
3490
3503
  * @param {ConversationType | null} [arg0]
3491
3504
  */
3492
3505
  set conversationType(arg0) {
3493
- wasm.__wbg_set_listconversationsoptions_conversationType(this.__wbg_ptr, isLikeNone(arg0) ? 3 : arg0);
3506
+ wasm.__wbg_set_listconversationsoptions_conversationType(this.__wbg_ptr, isLikeNone(arg0) ? 4 : arg0);
3494
3507
  }
3495
3508
  /**
3496
3509
  * @returns {bigint | undefined}
@@ -3503,7 +3516,7 @@ export class ListConversationsOptions {
3503
3516
  * @param {bigint | null} [arg0]
3504
3517
  */
3505
3518
  set createdAfterNs(arg0) {
3506
- wasm.__wbg_set_listconversationsoptions_createdAfterNs(this.__wbg_ptr, !isLikeNone(arg0), isLikeNone(arg0) ? BigInt(0) : arg0);
3519
+ wasm.__wbg_set_installation_clientTimestampNs(this.__wbg_ptr, !isLikeNone(arg0), isLikeNone(arg0) ? BigInt(0) : arg0);
3507
3520
  }
3508
3521
  /**
3509
3522
  * @returns {bigint | undefined}
@@ -3555,7 +3568,7 @@ export class ListConversationsOptions {
3555
3568
  constructor(consent_states, conversation_type, created_after_ns, created_before_ns, include_duplicate_dms, limit) {
3556
3569
  var ptr0 = isLikeNone(consent_states) ? 0 : passArrayJsValueToWasm0(consent_states, wasm.__wbindgen_malloc);
3557
3570
  var len0 = WASM_VECTOR_LEN;
3558
- const ret = wasm.listconversationsoptions_new(ptr0, len0, isLikeNone(conversation_type) ? 3 : conversation_type, !isLikeNone(created_after_ns), isLikeNone(created_after_ns) ? BigInt(0) : created_after_ns, !isLikeNone(created_before_ns), isLikeNone(created_before_ns) ? BigInt(0) : created_before_ns, isLikeNone(include_duplicate_dms) ? 0xFFFFFF : include_duplicate_dms ? 1 : 0, !isLikeNone(limit), isLikeNone(limit) ? BigInt(0) : limit);
3571
+ const ret = wasm.listconversationsoptions_new(ptr0, len0, isLikeNone(conversation_type) ? 4 : conversation_type, !isLikeNone(created_after_ns), isLikeNone(created_after_ns) ? BigInt(0) : created_after_ns, !isLikeNone(created_before_ns), isLikeNone(created_before_ns) ? BigInt(0) : created_before_ns, isLikeNone(include_duplicate_dms) ? 0xFFFFFF : include_duplicate_dms ? 1 : 0, !isLikeNone(limit), isLikeNone(limit) ? BigInt(0) : limit);
3559
3572
  this.__wbg_ptr = ret >>> 0;
3560
3573
  ListConversationsOptionsFinalization.register(this, this.__wbg_ptr, this);
3561
3574
  return this;
@@ -3610,7 +3623,7 @@ export class ListMessagesOptions {
3610
3623
  * @param {bigint | null} [arg0]
3611
3624
  */
3612
3625
  set sentBeforeNs(arg0) {
3613
- wasm.__wbg_set_listconversationsoptions_createdAfterNs(this.__wbg_ptr, !isLikeNone(arg0), isLikeNone(arg0) ? BigInt(0) : arg0);
3626
+ wasm.__wbg_set_installation_clientTimestampNs(this.__wbg_ptr, !isLikeNone(arg0), isLikeNone(arg0) ? BigInt(0) : arg0);
3614
3627
  }
3615
3628
  /**
3616
3629
  * @returns {bigint | undefined}
@@ -4484,7 +4497,7 @@ export class Reaction {
4484
4497
  set reference(arg0) {
4485
4498
  const ptr0 = passStringToWasm0(arg0, wasm.__wbindgen_malloc, wasm.__wbindgen_realloc);
4486
4499
  const len0 = WASM_VECTOR_LEN;
4487
- wasm.__wbg_set_consent_entity(this.__wbg_ptr, ptr0, len0);
4500
+ wasm.__wbg_set_reaction_reference(this.__wbg_ptr, ptr0, len0);
4488
4501
  }
4489
4502
  /**
4490
4503
  * @returns {string}
@@ -4704,7 +4717,7 @@ export class RemoteAttachmentInfo {
4704
4717
  set url(arg0) {
4705
4718
  const ptr0 = passStringToWasm0(arg0, wasm.__wbindgen_malloc, wasm.__wbindgen_realloc);
4706
4719
  const len0 = WASM_VECTOR_LEN;
4707
- wasm.__wbg_set_remoteattachmentinfo_url(this.__wbg_ptr, ptr0, len0);
4720
+ wasm.__wbg_set_conversationdebuginfo_localCommitLog(this.__wbg_ptr, ptr0, len0);
4708
4721
  }
4709
4722
  /**
4710
4723
  * @returns {Uint8Array}
@@ -4900,6 +4913,8 @@ export class StreamCloser {
4900
4913
  }
4901
4914
  }
4902
4915
 
4916
+ const EXPECTED_RESPONSE_TYPES = new Set(['basic', 'cors', 'default']);
4917
+
4903
4918
  async function __wbg_load(module, imports) {
4904
4919
  if (typeof Response === 'function' && module instanceof Response) {
4905
4920
  if (typeof WebAssembly.instantiateStreaming === 'function') {
@@ -4907,7 +4922,9 @@ async function __wbg_load(module, imports) {
4907
4922
  return await WebAssembly.instantiateStreaming(module, imports);
4908
4923
 
4909
4924
  } catch (e) {
4910
- if (module.headers.get('Content-Type') != 'application/wasm') {
4925
+ const validResponse = module.ok && EXPECTED_RESPONSE_TYPES.has(module.type);
4926
+
4927
+ if (validResponse && module.headers.get('Content-Type') !== 'application/wasm') {
4911
4928
  console.warn("`WebAssembly.instantiateStreaming` failed because your server does not serve Wasm with `application/wasm` MIME type. Falling back to `WebAssembly.instantiate` which is slower. Original error:\n", e);
4912
4929
 
4913
4930
  } else {
@@ -4934,6 +4951,10 @@ async function __wbg_load(module, imports) {
4934
4951
  function __wbg_get_imports() {
4935
4952
  const imports = {};
4936
4953
  imports.wbg = {};
4954
+ imports.wbg.__wbg_Error_0497d5bdba9362e5 = function(arg0, arg1) {
4955
+ const ret = Error(getStringFromWasm0(arg0, arg1));
4956
+ return ret;
4957
+ };
4937
4958
  imports.wbg.__wbg_String_8f0eb39a4a4c2f66 = function(arg0, arg1) {
4938
4959
  const ret = String(arg1);
4939
4960
  const ptr1 = passStringToWasm0(ret, wasm.__wbindgen_malloc, wasm.__wbindgen_realloc);
@@ -4941,60 +4962,60 @@ function __wbg_get_imports() {
4941
4962
  getDataViewMemory0().setInt32(arg0 + 4 * 1, len1, true);
4942
4963
  getDataViewMemory0().setInt32(arg0 + 4 * 0, ptr1, true);
4943
4964
  };
4944
- imports.wbg.__wbg_abort_410ec47a64ac6117 = function(arg0, arg1) {
4945
- arg0.abort(arg1);
4946
- };
4947
- imports.wbg.__wbg_abort_775ef1d17fc65868 = function(arg0) {
4965
+ imports.wbg.__wbg_abort_18ba44d46e13d7fe = function(arg0) {
4948
4966
  arg0.abort();
4949
4967
  };
4950
- imports.wbg.__wbg_add_883d9432f9188ef2 = function(arg0, arg1) {
4968
+ imports.wbg.__wbg_abort_4198a1129c47f21a = function(arg0, arg1) {
4969
+ arg0.abort(arg1);
4970
+ };
4971
+ imports.wbg.__wbg_add_dd833f9f523abe36 = function(arg0, arg1) {
4951
4972
  const ret = arg0.add(arg1);
4952
4973
  return ret;
4953
4974
  };
4954
- imports.wbg.__wbg_append_8c7dd8d641a5f01b = function() { return handleError(function (arg0, arg1, arg2, arg3, arg4) {
4975
+ imports.wbg.__wbg_append_0342728346e47425 = function() { return handleError(function (arg0, arg1, arg2, arg3, arg4) {
4955
4976
  arg0.append(getStringFromWasm0(arg1, arg2), getStringFromWasm0(arg3, arg4));
4956
4977
  }, arguments) };
4957
- imports.wbg.__wbg_arrayBuffer_d1b44c4390db422f = function() { return handleError(function (arg0) {
4978
+ imports.wbg.__wbg_arrayBuffer_d58b858456021d7f = function() { return handleError(function (arg0) {
4958
4979
  const ret = arg0.arrayBuffer();
4959
4980
  return ret;
4960
4981
  }, arguments) };
4961
- imports.wbg.__wbg_body_0b8fd1fe671660df = function(arg0) {
4982
+ imports.wbg.__wbg_body_e1e045c770257634 = function(arg0) {
4962
4983
  const ret = arg0.body;
4963
4984
  return isLikeNone(ret) ? 0 : addToExternrefTable0(ret);
4964
4985
  };
4965
- imports.wbg.__wbg_buffer_09165b52af8c5237 = function(arg0) {
4986
+ imports.wbg.__wbg_buffer_a1a27a0dfa70165d = function(arg0) {
4966
4987
  const ret = arg0.buffer;
4967
4988
  return ret;
4968
4989
  };
4969
- imports.wbg.__wbg_buffer_609cc3eee51ed158 = function(arg0) {
4990
+ imports.wbg.__wbg_buffer_e495ba54cee589cc = function(arg0) {
4970
4991
  const ret = arg0.buffer;
4971
4992
  return ret;
4972
4993
  };
4973
- imports.wbg.__wbg_byobRequest_77d9adf63337edfb = function(arg0) {
4994
+ imports.wbg.__wbg_byobRequest_56aa768ee4dfed17 = function(arg0) {
4974
4995
  const ret = arg0.byobRequest;
4975
4996
  return isLikeNone(ret) ? 0 : addToExternrefTable0(ret);
4976
4997
  };
4977
- imports.wbg.__wbg_byteLength_e674b853d9c77e1d = function(arg0) {
4998
+ imports.wbg.__wbg_byteLength_937f8a52f9697148 = function(arg0) {
4978
4999
  const ret = arg0.byteLength;
4979
5000
  return ret;
4980
5001
  };
4981
- imports.wbg.__wbg_byteOffset_fd862df290ef848d = function(arg0) {
5002
+ imports.wbg.__wbg_byteOffset_4d94b7170e641898 = function(arg0) {
4982
5003
  const ret = arg0.byteOffset;
4983
5004
  return ret;
4984
5005
  };
4985
- imports.wbg.__wbg_call_672a4d21634d4a24 = function() { return handleError(function (arg0, arg1) {
4986
- const ret = arg0.call(arg1);
5006
+ imports.wbg.__wbg_call_f2db6205e5c51dc8 = function() { return handleError(function (arg0, arg1, arg2) {
5007
+ const ret = arg0.call(arg1, arg2);
4987
5008
  return ret;
4988
5009
  }, arguments) };
4989
- imports.wbg.__wbg_call_7cccdd69e0791ae2 = function() { return handleError(function (arg0, arg1, arg2) {
4990
- const ret = arg0.call(arg1, arg2);
5010
+ imports.wbg.__wbg_call_fbe8be8bf6436ce5 = function() { return handleError(function (arg0, arg1) {
5011
+ const ret = arg0.call(arg1);
4991
5012
  return ret;
4992
5013
  }, arguments) };
4993
- imports.wbg.__wbg_cancel_8a308660caa6cadf = function(arg0) {
5014
+ imports.wbg.__wbg_cancel_4d78160f447bbbeb = function(arg0) {
4994
5015
  const ret = arg0.cancel();
4995
5016
  return ret;
4996
5017
  };
4997
- imports.wbg.__wbg_catch_a6e601879b2610e9 = function(arg0, arg1) {
5018
+ imports.wbg.__wbg_catch_b51fce253ee18ec3 = function(arg0, arg1) {
4998
5019
  const ret = arg0.catch(arg1);
4999
5020
  return ret;
5000
5021
  };
@@ -5010,26 +5031,26 @@ function __wbg_get_imports() {
5010
5031
  const ret = clearTimeout(arg0);
5011
5032
  return ret;
5012
5033
  };
5013
- imports.wbg.__wbg_clear_1f96150ecf4061a6 = function(arg0) {
5034
+ imports.wbg.__wbg_clear_1657d083d00a480f = function(arg0) {
5014
5035
  arg0.clear();
5015
5036
  };
5016
- imports.wbg.__wbg_clear_fca8ee600282eba4 = function(arg0) {
5037
+ imports.wbg.__wbg_clear_1da67706bfcd76cf = function(arg0) {
5017
5038
  arg0.clear();
5018
5039
  };
5019
5040
  imports.wbg.__wbg_client_new = function(arg0) {
5020
5041
  const ret = Client.__wrap(arg0);
5021
5042
  return ret;
5022
5043
  };
5023
- imports.wbg.__wbg_close_304cc1fef3466669 = function() { return handleError(function (arg0) {
5044
+ imports.wbg.__wbg_close_290fb040af98d3ac = function() { return handleError(function (arg0) {
5024
5045
  arg0.close();
5025
5046
  }, arguments) };
5026
- imports.wbg.__wbg_close_5ce03e29be453811 = function() { return handleError(function (arg0) {
5027
- arg0.close();
5028
- }, arguments) };
5029
- imports.wbg.__wbg_close_a17af48266bd9942 = function(arg0) {
5047
+ imports.wbg.__wbg_close_8d9e72339b45f6f5 = function(arg0) {
5030
5048
  arg0.close();
5031
5049
  };
5032
- imports.wbg.__wbg_code_cfd8f6868bdaed9b = function(arg0) {
5050
+ imports.wbg.__wbg_close_b2641ef0870e518c = function() { return handleError(function (arg0) {
5051
+ arg0.close();
5052
+ }, arguments) };
5053
+ imports.wbg.__wbg_code_5e459ca721f994f5 = function(arg0) {
5033
5054
  const ret = arg0.code;
5034
5055
  return ret;
5035
5056
  };
@@ -5045,11 +5066,11 @@ function __wbg_get_imports() {
5045
5066
  const ret = ConversationListItem.__wrap(arg0);
5046
5067
  return ret;
5047
5068
  };
5048
- imports.wbg.__wbg_createSyncAccessHandle_21c18bcd2a29fa13 = function(arg0) {
5069
+ imports.wbg.__wbg_createSyncAccessHandle_05df52d90910c9ce = function(arg0) {
5049
5070
  const ret = arg0.createSyncAccessHandle();
5050
5071
  return ret;
5051
5072
  };
5052
- imports.wbg.__wbg_create_cfe43ccc88c64e0a = function(arg0) {
5073
+ imports.wbg.__wbg_create_f3f7c1f0898ceb7c = function(arg0) {
5053
5074
  const ret = Object.create(arg0);
5054
5075
  return ret;
5055
5076
  };
@@ -5057,38 +5078,41 @@ function __wbg_get_imports() {
5057
5078
  const ret = arg0.crypto;
5058
5079
  return ret;
5059
5080
  };
5060
- imports.wbg.__wbg_debug_3cb59063b29f58c1 = function(arg0) {
5061
- console.debug(arg0);
5062
- };
5063
- imports.wbg.__wbg_debug_e17b51583ca6a632 = function(arg0, arg1, arg2, arg3) {
5081
+ imports.wbg.__wbg_debug_103948ed4c500577 = function(arg0, arg1, arg2, arg3) {
5064
5082
  console.debug(arg0, arg1, arg2, arg3);
5065
5083
  };
5066
- imports.wbg.__wbg_delete_36c8630e530a2a1a = function(arg0, arg1) {
5084
+ imports.wbg.__wbg_debug_58d16ea352cfbca1 = function(arg0) {
5085
+ console.debug(arg0);
5086
+ };
5087
+ imports.wbg.__wbg_delete_8f0ad80b15b2a784 = function(arg0, arg1) {
5067
5088
  const ret = arg0.delete(arg1);
5068
5089
  return ret;
5069
5090
  };
5070
- imports.wbg.__wbg_delete_d6860deb47204f3b = function(arg0, arg1) {
5091
+ imports.wbg.__wbg_delete_aca203d8b0528d61 = function(arg0, arg1) {
5071
5092
  const ret = arg0.delete(arg1);
5072
5093
  return ret;
5073
5094
  };
5074
- imports.wbg.__wbg_done_769e5ede4b31c67b = function(arg0) {
5095
+ imports.wbg.__wbg_done_4d01f352bade43b7 = function(arg0) {
5075
5096
  const ret = arg0.done;
5076
5097
  return ret;
5077
5098
  };
5078
- imports.wbg.__wbg_enqueue_bb16ba72f537dc9e = function() { return handleError(function (arg0, arg1) {
5099
+ imports.wbg.__wbg_enqueue_a62faa171c4fd287 = function() { return handleError(function (arg0, arg1) {
5079
5100
  arg0.enqueue(arg1);
5080
5101
  }, arguments) };
5081
- imports.wbg.__wbg_entries_19efe296f7d36df9 = function(arg0) {
5102
+ imports.wbg.__wbg_entries_14bb5b0fa29e7393 = function(arg0) {
5082
5103
  const ret = arg0.entries();
5083
5104
  return ret;
5084
5105
  };
5085
- imports.wbg.__wbg_entries_3265d4158b33e5dc = function(arg0) {
5106
+ imports.wbg.__wbg_entries_41651c850143b957 = function(arg0) {
5086
5107
  const ret = Object.entries(arg0);
5087
5108
  return ret;
5088
5109
  };
5089
- imports.wbg.__wbg_error_524f506f44df1645 = function(arg0) {
5110
+ imports.wbg.__wbg_error_51ecdd39ec054205 = function(arg0) {
5090
5111
  console.error(arg0);
5091
5112
  };
5113
+ imports.wbg.__wbg_error_624160881466fd69 = function(arg0, arg1, arg2, arg3) {
5114
+ console.error(arg0, arg1, arg2, arg3);
5115
+ };
5092
5116
  imports.wbg.__wbg_error_7534b8e9a36f1ab4 = function(arg0, arg1) {
5093
5117
  let deferred0_0;
5094
5118
  let deferred0_1;
@@ -5100,13 +5124,10 @@ function __wbg_get_imports() {
5100
5124
  wasm.__wbindgen_free(deferred0_0, deferred0_1, 1);
5101
5125
  }
5102
5126
  };
5103
- imports.wbg.__wbg_error_80de38b3f7cc3c3c = function(arg0, arg1, arg2, arg3) {
5104
- console.error(arg0, arg1, arg2, arg3);
5105
- };
5106
5127
  imports.wbg.__wbg_error_e98c298703cffa97 = function(arg0, arg1) {
5107
5128
  console.error(getStringFromWasm0(arg0, arg1));
5108
5129
  };
5109
- imports.wbg.__wbg_fetch_509096533071c657 = function(arg0, arg1) {
5130
+ imports.wbg.__wbg_fetch_a8e43a4e138dfc93 = function(arg0, arg1) {
5110
5131
  const ret = arg0.fetch(arg1);
5111
5132
  return ret;
5112
5133
  };
@@ -5114,50 +5135,50 @@ function __wbg_get_imports() {
5114
5135
  const ret = fetch(arg0);
5115
5136
  return ret;
5116
5137
  };
5117
- imports.wbg.__wbg_fill_3311db9cdf18c6c4 = function(arg0, arg1, arg2, arg3) {
5138
+ imports.wbg.__wbg_fill_45ebe6f76c6747c9 = function(arg0, arg1, arg2, arg3) {
5118
5139
  const ret = arg0.fill(arg1, arg2 >>> 0, arg3 >>> 0);
5119
5140
  return ret;
5120
5141
  };
5121
- imports.wbg.__wbg_flush_1a680a66b21c53d7 = function() { return handleError(function (arg0) {
5142
+ imports.wbg.__wbg_flush_f0630e40db922730 = function() { return handleError(function (arg0) {
5122
5143
  arg0.flush();
5123
5144
  }, arguments) };
5124
- imports.wbg.__wbg_from_2a5d3e218e67aa85 = function(arg0) {
5145
+ imports.wbg.__wbg_from_12ff8e47307bd4c7 = function(arg0) {
5125
5146
  const ret = Array.from(arg0);
5126
5147
  return ret;
5127
5148
  };
5128
- imports.wbg.__wbg_getDate_ef336e14594b35ce = function(arg0) {
5149
+ imports.wbg.__wbg_getDate_18ccd9a4e925d3ec = function(arg0) {
5129
5150
  const ret = arg0.getDate();
5130
5151
  return ret;
5131
5152
  };
5132
- imports.wbg.__wbg_getDay_3da98b461c969439 = function(arg0) {
5153
+ imports.wbg.__wbg_getDay_17f53c92a7986053 = function(arg0) {
5133
5154
  const ret = arg0.getDay();
5134
5155
  return ret;
5135
5156
  };
5136
- imports.wbg.__wbg_getDirectoryHandle_c48a138373d79b3d = function(arg0, arg1, arg2, arg3) {
5157
+ imports.wbg.__wbg_getDirectoryHandle_812e88ca933e7f14 = function(arg0, arg1, arg2, arg3) {
5137
5158
  const ret = arg0.getDirectoryHandle(getStringFromWasm0(arg1, arg2), arg3);
5138
5159
  return ret;
5139
5160
  };
5140
- imports.wbg.__wbg_getDirectory_c206b0540c9acc0f = function(arg0) {
5161
+ imports.wbg.__wbg_getDirectory_d1926c6af50076e5 = function(arg0) {
5141
5162
  const ret = arg0.getDirectory();
5142
5163
  return ret;
5143
5164
  };
5144
- imports.wbg.__wbg_getFileHandle_5fb877d1ecc74d52 = function(arg0, arg1, arg2, arg3) {
5165
+ imports.wbg.__wbg_getFileHandle_1cc9e8420629773c = function(arg0, arg1, arg2, arg3) {
5145
5166
  const ret = arg0.getFileHandle(getStringFromWasm0(arg1, arg2), arg3);
5146
5167
  return ret;
5147
5168
  };
5148
- imports.wbg.__wbg_getFullYear_17d3c9e4db748eb7 = function(arg0) {
5169
+ imports.wbg.__wbg_getFullYear_1383a5751fab658e = function(arg0) {
5149
5170
  const ret = arg0.getFullYear();
5150
5171
  return ret;
5151
5172
  };
5152
- imports.wbg.__wbg_getHours_70451b8de3ce8638 = function(arg0) {
5173
+ imports.wbg.__wbg_getHours_94bc6bb5540c2b71 = function(arg0) {
5153
5174
  const ret = arg0.getHours();
5154
5175
  return ret;
5155
5176
  };
5156
- imports.wbg.__wbg_getMinutes_e793d718371e18f7 = function(arg0) {
5177
+ imports.wbg.__wbg_getMinutes_92b2aadc8feb898e = function(arg0) {
5157
5178
  const ret = arg0.getMinutes();
5158
5179
  return ret;
5159
5180
  };
5160
- imports.wbg.__wbg_getMonth_d37edcd23642c97d = function(arg0) {
5181
+ imports.wbg.__wbg_getMonth_f83b359dffd5f2aa = function(arg0) {
5161
5182
  const ret = arg0.getMonth();
5162
5183
  return ret;
5163
5184
  };
@@ -5174,47 +5195,47 @@ function __wbg_get_imports() {
5174
5195
  const ret = arg0.getReader();
5175
5196
  return ret;
5176
5197
  }, arguments) };
5177
- imports.wbg.__wbg_getSeconds_755197b634cca692 = function(arg0) {
5198
+ imports.wbg.__wbg_getSeconds_5bedd376f55ef40c = function(arg0) {
5178
5199
  const ret = arg0.getSeconds();
5179
5200
  return ret;
5180
5201
  };
5181
- imports.wbg.__wbg_getSize_e7dbd5ffa0b43df1 = function() { return handleError(function (arg0) {
5202
+ imports.wbg.__wbg_getSize_a77eeeffdb4f3fc1 = function() { return handleError(function (arg0) {
5182
5203
  const ret = arg0.getSize();
5183
5204
  return ret;
5184
5205
  }, arguments) };
5185
- imports.wbg.__wbg_getTime_46267b1c24877e30 = function(arg0) {
5206
+ imports.wbg.__wbg_getTime_2afe67905d873e92 = function(arg0) {
5186
5207
  const ret = arg0.getTime();
5187
5208
  return ret;
5188
5209
  };
5189
- imports.wbg.__wbg_getTimezoneOffset_6b5752021c499c47 = function(arg0) {
5210
+ imports.wbg.__wbg_getTimezoneOffset_31f33c0868da345e = function(arg0) {
5190
5211
  const ret = arg0.getTimezoneOffset();
5191
5212
  return ret;
5192
5213
  };
5193
- imports.wbg.__wbg_getUint32_9c3cc8fde7919ed4 = function(arg0, arg1) {
5214
+ imports.wbg.__wbg_getUint32_b1236319485e7707 = function(arg0, arg1) {
5194
5215
  const ret = arg0.getUint32(arg1 >>> 0);
5195
5216
  return ret;
5196
5217
  };
5197
- imports.wbg.__wbg_get_13495dac72693ecc = function(arg0, arg1) {
5218
+ imports.wbg.__wbg_get_6dd1850282dd8588 = function(arg0, arg1) {
5198
5219
  const ret = arg0.get(arg1);
5199
5220
  return ret;
5200
5221
  };
5201
- imports.wbg.__wbg_get_67b2ba62fc30de12 = function() { return handleError(function (arg0, arg1) {
5222
+ imports.wbg.__wbg_get_92470be87867c2e5 = function() { return handleError(function (arg0, arg1) {
5202
5223
  const ret = Reflect.get(arg0, arg1);
5203
5224
  return ret;
5204
5225
  }, arguments) };
5205
- imports.wbg.__wbg_get_b9b93047fe3cf45b = function(arg0, arg1) {
5226
+ imports.wbg.__wbg_get_a131a44bd1eb6979 = function(arg0, arg1) {
5206
5227
  const ret = arg0[arg1 >>> 0];
5207
5228
  return ret;
5208
5229
  };
5209
- imports.wbg.__wbg_getdone_d47073731acd3e74 = function(arg0) {
5230
+ imports.wbg.__wbg_getdone_8355ddb2bc75c731 = function(arg0) {
5210
5231
  const ret = arg0.done;
5211
5232
  return isLikeNone(ret) ? 0xFFFFFF : ret ? 1 : 0;
5212
5233
  };
5213
- imports.wbg.__wbg_getindex_5b00c274b05714aa = function(arg0, arg1) {
5234
+ imports.wbg.__wbg_getindex_ba5b3525ad80a881 = function(arg0, arg1) {
5214
5235
  const ret = arg0[arg1 >>> 0];
5215
5236
  return ret;
5216
5237
  };
5217
- imports.wbg.__wbg_getvalue_009dcd63692bee1f = function(arg0) {
5238
+ imports.wbg.__wbg_getvalue_c1890a401d13f00b = function(arg0) {
5218
5239
  const ret = arg0.value;
5219
5240
  return ret;
5220
5241
  };
@@ -5226,15 +5247,15 @@ function __wbg_get_imports() {
5226
5247
  const ret = GroupMetadata.__wrap(arg0);
5227
5248
  return ret;
5228
5249
  };
5229
- imports.wbg.__wbg_has_76ca66e2f25d1c49 = function(arg0, arg1) {
5250
+ imports.wbg.__wbg_has_2dc42f1e8cb156db = function(arg0, arg1) {
5230
5251
  const ret = arg0.has(arg1);
5231
5252
  return ret;
5232
5253
  };
5233
- imports.wbg.__wbg_has_a5ea9117f258a0ec = function() { return handleError(function (arg0, arg1) {
5254
+ imports.wbg.__wbg_has_809e438ee9d787a7 = function() { return handleError(function (arg0, arg1) {
5234
5255
  const ret = Reflect.has(arg0, arg1);
5235
5256
  return ret;
5236
5257
  }, arguments) };
5237
- imports.wbg.__wbg_headers_9cb51cfd2ac780a4 = function(arg0) {
5258
+ imports.wbg.__wbg_headers_0f0cbdc6290b6780 = function(arg0) {
5238
5259
  const ret = arg0.headers;
5239
5260
  return ret;
5240
5261
  };
@@ -5242,10 +5263,10 @@ function __wbg_get_imports() {
5242
5263
  const ret = InboxState.__wrap(arg0);
5243
5264
  return ret;
5244
5265
  };
5245
- imports.wbg.__wbg_info_033d8b8a0838f1d3 = function(arg0, arg1, arg2, arg3) {
5266
+ imports.wbg.__wbg_info_a1cc312ecc877319 = function(arg0, arg1, arg2, arg3) {
5246
5267
  console.info(arg0, arg1, arg2, arg3);
5247
5268
  };
5248
- imports.wbg.__wbg_info_3daf2e093e091b66 = function(arg0) {
5269
+ imports.wbg.__wbg_info_e56933705c348038 = function(arg0) {
5249
5270
  console.info(arg0);
5250
5271
  };
5251
5272
  imports.wbg.__wbg_installation_new = function(arg0) {
@@ -5256,7 +5277,7 @@ function __wbg_get_imports() {
5256
5277
  const ret = Installation.__unwrap(arg0);
5257
5278
  return ret;
5258
5279
  };
5259
- imports.wbg.__wbg_instanceof_ArrayBuffer_e14585432e3737fc = function(arg0) {
5280
+ imports.wbg.__wbg_instanceof_ArrayBuffer_a8b6f580b363f2bc = function(arg0) {
5260
5281
  let result;
5261
5282
  try {
5262
5283
  result = arg0 instanceof ArrayBuffer;
@@ -5266,7 +5287,7 @@ function __wbg_get_imports() {
5266
5287
  const ret = result;
5267
5288
  return ret;
5268
5289
  };
5269
- imports.wbg.__wbg_instanceof_DomException_ed1ccb7aaf39034c = function(arg0) {
5290
+ imports.wbg.__wbg_instanceof_DomException_77720ed8752d7409 = function(arg0) {
5270
5291
  let result;
5271
5292
  try {
5272
5293
  result = arg0 instanceof DOMException;
@@ -5276,7 +5297,7 @@ function __wbg_get_imports() {
5276
5297
  const ret = result;
5277
5298
  return ret;
5278
5299
  };
5279
- imports.wbg.__wbg_instanceof_Performance_0ac1286c87171f57 = function(arg0) {
5300
+ imports.wbg.__wbg_instanceof_Performance_7c58d8187744b0a5 = function(arg0) {
5280
5301
  let result;
5281
5302
  try {
5282
5303
  result = arg0 instanceof Performance;
@@ -5286,7 +5307,7 @@ function __wbg_get_imports() {
5286
5307
  const ret = result;
5287
5308
  return ret;
5288
5309
  };
5289
- imports.wbg.__wbg_instanceof_Response_f2cc20d9f7dfd644 = function(arg0) {
5310
+ imports.wbg.__wbg_instanceof_Response_e80ce8b7a2b968d2 = function(arg0) {
5290
5311
  let result;
5291
5312
  try {
5292
5313
  result = arg0 instanceof Response;
@@ -5296,7 +5317,7 @@ function __wbg_get_imports() {
5296
5317
  const ret = result;
5297
5318
  return ret;
5298
5319
  };
5299
- imports.wbg.__wbg_instanceof_Uint8Array_17156bcf118086a9 = function(arg0) {
5320
+ imports.wbg.__wbg_instanceof_Uint8Array_ca460677bc155827 = function(arg0) {
5300
5321
  let result;
5301
5322
  try {
5302
5323
  result = arg0 instanceof Uint8Array;
@@ -5306,7 +5327,7 @@ function __wbg_get_imports() {
5306
5327
  const ret = result;
5307
5328
  return ret;
5308
5329
  };
5309
- imports.wbg.__wbg_instanceof_WorkerGlobalScope_dbdbdea7e3b56493 = function(arg0) {
5330
+ imports.wbg.__wbg_instanceof_WorkerGlobalScope_11f8a14c11024785 = function(arg0) {
5310
5331
  let result;
5311
5332
  try {
5312
5333
  result = arg0 instanceof WorkerGlobalScope;
@@ -5316,27 +5337,27 @@ function __wbg_get_imports() {
5316
5337
  const ret = result;
5317
5338
  return ret;
5318
5339
  };
5319
- imports.wbg.__wbg_iterator_9a24c88df860dc65 = function() {
5340
+ imports.wbg.__wbg_iterator_4068add5b2aef7a6 = function() {
5320
5341
  const ret = Symbol.iterator;
5321
5342
  return ret;
5322
5343
  };
5323
- imports.wbg.__wbg_keys_4e7df9a04572b339 = function(arg0) {
5344
+ imports.wbg.__wbg_keys_1abdc63a39dab939 = function(arg0) {
5324
5345
  const ret = arg0.keys();
5325
5346
  return ret;
5326
5347
  };
5327
- imports.wbg.__wbg_keys_867d2062f5df73dc = function(arg0) {
5348
+ imports.wbg.__wbg_keys_a89709494b6fd863 = function(arg0) {
5328
5349
  const ret = arg0.keys();
5329
5350
  return ret;
5330
5351
  };
5331
- imports.wbg.__wbg_length_a446193dc22c12f8 = function(arg0) {
5352
+ imports.wbg.__wbg_length_0ca5b4c83d5d9721 = function(arg0) {
5332
5353
  const ret = arg0.length;
5333
5354
  return ret;
5334
5355
  };
5335
- imports.wbg.__wbg_length_d56737991078581b = function(arg0) {
5356
+ imports.wbg.__wbg_length_ab6d22b5ead75c72 = function(arg0) {
5336
5357
  const ret = arg0.length;
5337
5358
  return ret;
5338
5359
  };
5339
- imports.wbg.__wbg_length_e2d2a49132c1b256 = function(arg0) {
5360
+ imports.wbg.__wbg_length_f00ec12454a5d9fd = function(arg0) {
5340
5361
  const ret = arg0.length;
5341
5362
  return ret;
5342
5363
  };
@@ -5352,7 +5373,7 @@ function __wbg_get_imports() {
5352
5373
  imports.wbg.__wbg_measure_7728846525e2cced = function() { return handleError(function (arg0, arg1, arg2, arg3) {
5353
5374
  arg0.measure(getStringFromWasm0(arg1, arg2), arg3);
5354
5375
  }, arguments) };
5355
- imports.wbg.__wbg_message_5c5d919204d42400 = function(arg0, arg1) {
5376
+ imports.wbg.__wbg_message_2d95ea5aff0d63b9 = function(arg0, arg1) {
5356
5377
  const ret = arg1.message;
5357
5378
  const ptr1 = passStringToWasm0(ret, wasm.__wbindgen_malloc, wasm.__wbindgen_realloc);
5358
5379
  const len1 = WASM_VECTOR_LEN;
@@ -5375,33 +5396,69 @@ function __wbg_get_imports() {
5375
5396
  const ret = arg0.msCrypto;
5376
5397
  return ret;
5377
5398
  };
5378
- imports.wbg.__wbg_name_f2d27098bfd843e7 = function(arg0, arg1) {
5399
+ imports.wbg.__wbg_name_2acff1e83d9735f9 = function(arg0, arg1) {
5379
5400
  const ret = arg1.name;
5380
5401
  const ptr1 = passStringToWasm0(ret, wasm.__wbindgen_malloc, wasm.__wbindgen_realloc);
5381
5402
  const len1 = WASM_VECTOR_LEN;
5382
5403
  getDataViewMemory0().setInt32(arg0 + 4 * 1, len1, true);
5383
5404
  getDataViewMemory0().setInt32(arg0 + 4 * 0, ptr1, true);
5384
5405
  };
5385
- imports.wbg.__wbg_navigator_0a9bf1120e24fec2 = function(arg0) {
5406
+ imports.wbg.__wbg_navigator_6db993f5ffeb46be = function(arg0) {
5386
5407
  const ret = arg0.navigator;
5387
5408
  return ret;
5388
5409
  };
5389
- imports.wbg.__wbg_new0_f788a2397c7ca929 = function() {
5410
+ imports.wbg.__wbg_new0_97314565408dea38 = function() {
5390
5411
  const ret = new Date();
5391
5412
  return ret;
5392
5413
  };
5393
- imports.wbg.__wbg_new_018dcc2d6c8c2f6a = function() { return handleError(function () {
5414
+ imports.wbg.__wbg_new_07b483f72211fd66 = function() {
5415
+ const ret = new Object();
5416
+ return ret;
5417
+ };
5418
+ imports.wbg.__wbg_new_186abcfdff244e42 = function() { return handleError(function () {
5419
+ const ret = new AbortController();
5420
+ return ret;
5421
+ }, arguments) };
5422
+ imports.wbg.__wbg_new_476169e6d59f23ae = function(arg0, arg1) {
5423
+ const ret = new Error(getStringFromWasm0(arg0, arg1));
5424
+ return ret;
5425
+ };
5426
+ imports.wbg.__wbg_new_4796e1cd2eb9ea6d = function() { return handleError(function () {
5394
5427
  const ret = new Headers();
5395
5428
  return ret;
5396
5429
  }, arguments) };
5397
- imports.wbg.__wbg_new_23a2665fac83c611 = function(arg0, arg1) {
5430
+ imports.wbg.__wbg_new_5069c49f18141a33 = function(arg0, arg1, arg2) {
5431
+ const ret = new DataView(arg0, arg1 >>> 0, arg2 >>> 0);
5432
+ return ret;
5433
+ };
5434
+ imports.wbg.__wbg_new_58353953ad2097cc = function() {
5435
+ const ret = new Array();
5436
+ return ret;
5437
+ };
5438
+ imports.wbg.__wbg_new_8a6f238a6ece86ea = function() {
5439
+ const ret = new Error();
5440
+ return ret;
5441
+ };
5442
+ imports.wbg.__wbg_new_a2957aa5684de228 = function(arg0) {
5443
+ const ret = new Date(arg0);
5444
+ return ret;
5445
+ };
5446
+ imports.wbg.__wbg_new_a979b4b45bd55c7f = function() {
5447
+ const ret = new Map();
5448
+ return ret;
5449
+ };
5450
+ imports.wbg.__wbg_new_db7d9b0ee94df522 = function(arg0) {
5451
+ const ret = new Set(arg0);
5452
+ return ret;
5453
+ };
5454
+ imports.wbg.__wbg_new_e30c39c06edaabf2 = function(arg0, arg1) {
5398
5455
  try {
5399
5456
  var state0 = {a: arg0, b: arg1};
5400
5457
  var cb0 = (arg0, arg1) => {
5401
5458
  const a = state0.a;
5402
5459
  state0.a = 0;
5403
5460
  try {
5404
- return __wbg_adapter_793(a, state0.b, arg0, arg1);
5461
+ return __wbg_adapter_791(a, state0.b, arg0, arg1);
5405
5462
  } finally {
5406
5463
  state0.a = a;
5407
5464
  }
@@ -5412,51 +5469,19 @@ function __wbg_get_imports() {
5412
5469
  state0.a = state0.b = 0;
5413
5470
  }
5414
5471
  };
5415
- imports.wbg.__wbg_new_31a97dac4f10fab7 = function(arg0) {
5416
- const ret = new Date(arg0);
5417
- return ret;
5418
- };
5419
- imports.wbg.__wbg_new_405e22f390576ce2 = function() {
5420
- const ret = new Object();
5421
- return ret;
5422
- };
5423
- imports.wbg.__wbg_new_5e0be73521bc8c17 = function() {
5424
- const ret = new Map();
5425
- return ret;
5426
- };
5427
- imports.wbg.__wbg_new_78feb108b6472713 = function() {
5428
- const ret = new Array();
5429
- return ret;
5430
- };
5431
- imports.wbg.__wbg_new_7e079fa25e135eb1 = function(arg0, arg1, arg2) {
5432
- const ret = new DataView(arg0, arg1 >>> 0, arg2 >>> 0);
5433
- return ret;
5434
- };
5435
- imports.wbg.__wbg_new_8a6f238a6ece86ea = function() {
5436
- const ret = new Error();
5437
- return ret;
5438
- };
5439
- imports.wbg.__wbg_new_a12002a7f91c75be = function(arg0) {
5472
+ imports.wbg.__wbg_new_e52b3efaaa774f96 = function(arg0) {
5440
5473
  const ret = new Uint8Array(arg0);
5441
5474
  return ret;
5442
5475
  };
5443
- imports.wbg.__wbg_new_a239edaa1dc2968f = function(arg0) {
5444
- const ret = new Set(arg0);
5476
+ imports.wbg.__wbg_newfromslice_7c05ab1297cb2d88 = function(arg0, arg1) {
5477
+ const ret = new Uint8Array(getArrayU8FromWasm0(arg0, arg1));
5445
5478
  return ret;
5446
5479
  };
5447
- imports.wbg.__wbg_new_c68d7209be747379 = function(arg0, arg1) {
5448
- const ret = new Error(getStringFromWasm0(arg0, arg1));
5449
- return ret;
5450
- };
5451
- imports.wbg.__wbg_new_e25e5aab09ff45db = function() { return handleError(function () {
5452
- const ret = new AbortController();
5453
- return ret;
5454
- }, arguments) };
5455
- imports.wbg.__wbg_newnoargs_105ed471475aaf50 = function(arg0, arg1) {
5480
+ imports.wbg.__wbg_newnoargs_ff528e72d35de39a = function(arg0, arg1) {
5456
5481
  const ret = new Function(getStringFromWasm0(arg0, arg1));
5457
5482
  return ret;
5458
5483
  };
5459
- imports.wbg.__wbg_newwithbyteoffsetandlength_d97e637ebe145a9a = function(arg0, arg1, arg2) {
5484
+ imports.wbg.__wbg_newwithbyteoffsetandlength_3b01ecda099177e8 = function(arg0, arg1, arg2) {
5460
5485
  const ret = new Uint8Array(arg0, arg1 >>> 0, arg2 >>> 0);
5461
5486
  return ret;
5462
5487
  };
@@ -5464,27 +5489,27 @@ function __wbg_get_imports() {
5464
5489
  const ret = new ReadableStream(IntoUnderlyingSource.__wrap(arg0), arg1);
5465
5490
  return ret;
5466
5491
  };
5467
- imports.wbg.__wbg_newwithlength_a381634e90c276d4 = function(arg0) {
5492
+ imports.wbg.__wbg_newwithlength_08f872dc1e3ada2e = function(arg0) {
5468
5493
  const ret = new Uint8Array(arg0 >>> 0);
5469
5494
  return ret;
5470
5495
  };
5471
- imports.wbg.__wbg_newwithstrandinit_06c535e0a867c635 = function() { return handleError(function (arg0, arg1, arg2) {
5496
+ imports.wbg.__wbg_newwithstrandinit_f8a9dbe009d6be37 = function() { return handleError(function (arg0, arg1, arg2) {
5472
5497
  const ret = new Request(getStringFromWasm0(arg0, arg1), arg2);
5473
5498
  return ret;
5474
5499
  }, arguments) };
5475
- imports.wbg.__wbg_newwithyearmonthday_03748851282a850d = function(arg0, arg1, arg2) {
5500
+ imports.wbg.__wbg_newwithyearmonthday_eb1c560e7c1fb22a = function(arg0, arg1, arg2) {
5476
5501
  const ret = new Date(arg0 >>> 0, arg1, arg2);
5477
5502
  return ret;
5478
5503
  };
5479
- imports.wbg.__wbg_next_25feadfc0913fea9 = function(arg0) {
5504
+ imports.wbg.__wbg_next_8bb824d217961b5d = function(arg0) {
5480
5505
  const ret = arg0.next;
5481
5506
  return ret;
5482
5507
  };
5483
- imports.wbg.__wbg_next_6574e1a8a62d1055 = function() { return handleError(function (arg0) {
5508
+ imports.wbg.__wbg_next_9eb6fe77da3db3a2 = function() { return handleError(function (arg0) {
5484
5509
  const ret = arg0.next();
5485
5510
  return ret;
5486
5511
  }, arguments) };
5487
- imports.wbg.__wbg_next_c3ab0d59847b3b5c = function() { return handleError(function (arg0) {
5512
+ imports.wbg.__wbg_next_e2da48d8fff7439a = function() { return handleError(function (arg0) {
5488
5513
  const ret = arg0.next();
5489
5514
  return ret;
5490
5515
  }, arguments) };
@@ -5501,30 +5526,30 @@ function __wbg_get_imports() {
5501
5526
  getDataViewMemory0().setFloat64(arg0 + 8 * 1, isLikeNone(ret) ? 0 : ret, true);
5502
5527
  getDataViewMemory0().setInt32(arg0 + 4 * 0, !isLikeNone(ret), true);
5503
5528
  };
5504
- imports.wbg.__wbg_now_807e54c39636c349 = function() {
5505
- const ret = Date.now();
5529
+ imports.wbg.__wbg_now_7ab37f05ab2d0b81 = function(arg0) {
5530
+ const ret = arg0.now();
5506
5531
  return ret;
5507
5532
  };
5508
- imports.wbg.__wbg_now_d18023d54d4e5500 = function(arg0) {
5509
- const ret = arg0.now();
5533
+ imports.wbg.__wbg_now_eb0821f3bd9f6529 = function() {
5534
+ const ret = Date.now();
5510
5535
  return ret;
5511
5536
  };
5512
- imports.wbg.__wbg_onclose_76766e780ea96fba = function(arg0) {
5537
+ imports.wbg.__wbg_onclose_d864658183e3f115 = function(arg0) {
5513
5538
  arg0.on_close();
5514
5539
  };
5515
- imports.wbg.__wbg_onconsentupdate_416e66cf95f2e49b = function(arg0, arg1) {
5540
+ imports.wbg.__wbg_onconsentupdate_85d8da04c5ab08d0 = function(arg0, arg1) {
5516
5541
  arg0.on_consent_update(arg1);
5517
5542
  };
5518
- imports.wbg.__wbg_onconversation_8324b5fb5282c6d8 = function(arg0, arg1) {
5543
+ imports.wbg.__wbg_onconversation_4b0a4a77b8dccfdf = function(arg0, arg1) {
5519
5544
  arg0.on_conversation(Conversation.__wrap(arg1));
5520
5545
  };
5521
- imports.wbg.__wbg_onerror_be5b67d0e20e80a1 = function(arg0, arg1) {
5546
+ imports.wbg.__wbg_onerror_e273f48cea9e9194 = function(arg0, arg1) {
5522
5547
  arg0.on_error(arg1);
5523
5548
  };
5524
- imports.wbg.__wbg_onmessage_3d645440ed8fe9d3 = function(arg0, arg1) {
5549
+ imports.wbg.__wbg_onmessage_c9224e0bde4825bb = function(arg0, arg1) {
5525
5550
  arg0.on_message(Message.__wrap(arg1));
5526
5551
  };
5527
- imports.wbg.__wbg_onuserpreferenceupdate_a76ead094c66aefe = function(arg0, arg1, arg2) {
5552
+ imports.wbg.__wbg_onuserpreferenceupdate_a3358ab0291c456d = function(arg0, arg1, arg2) {
5528
5553
  var v0 = getArrayJsValueFromWasm0(arg1, arg2).slice();
5529
5554
  wasm.__wbindgen_free(arg1, arg2 * 4, 4);
5530
5555
  arg0.on_user_preference_update(v0);
@@ -5537,44 +5562,44 @@ function __wbg_get_imports() {
5537
5562
  const ret = arg0.performance;
5538
5563
  return ret;
5539
5564
  };
5540
- imports.wbg.__wbg_postMessage_83a8d58d3fcb6c13 = function() { return handleError(function (arg0, arg1) {
5565
+ imports.wbg.__wbg_postMessage_54ce7f4b41ac732e = function() { return handleError(function (arg0, arg1) {
5541
5566
  arg0.postMessage(arg1);
5542
5567
  }, arguments) };
5543
5568
  imports.wbg.__wbg_process_dc0fbacc7c1c06f7 = function(arg0) {
5544
5569
  const ret = arg0.process;
5545
5570
  return ret;
5546
5571
  };
5547
- imports.wbg.__wbg_push_737cfc8c1432c2c6 = function(arg0, arg1) {
5572
+ imports.wbg.__wbg_push_73fd7b5550ebf707 = function(arg0, arg1) {
5548
5573
  const ret = arg0.push(arg1);
5549
5574
  return ret;
5550
5575
  };
5551
- imports.wbg.__wbg_queueMicrotask_97d92b4fcc8a61c5 = function(arg0) {
5576
+ imports.wbg.__wbg_queueMicrotask_46c1df247678729f = function(arg0) {
5552
5577
  queueMicrotask(arg0);
5553
5578
  };
5554
- imports.wbg.__wbg_queueMicrotask_d3219def82552485 = function(arg0) {
5579
+ imports.wbg.__wbg_queueMicrotask_8acf3ccb75ed8d11 = function(arg0) {
5555
5580
  const ret = arg0.queueMicrotask;
5556
5581
  return ret;
5557
5582
  };
5558
5583
  imports.wbg.__wbg_randomFillSync_ac0988aba3254290 = function() { return handleError(function (arg0, arg1) {
5559
5584
  arg0.randomFillSync(arg1);
5560
5585
  }, arguments) };
5561
- imports.wbg.__wbg_random_3ad904d98382defe = function() {
5586
+ imports.wbg.__wbg_random_210bb7fbfa33591d = function() {
5562
5587
  const ret = Math.random();
5563
5588
  return ret;
5564
5589
  };
5565
- imports.wbg.__wbg_read_50be4c2d01bc12b4 = function() { return handleError(function (arg0, arg1, arg2) {
5590
+ imports.wbg.__wbg_read_4dbc5a78288c4eed = function() { return handleError(function (arg0, arg1, arg2, arg3) {
5591
+ const ret = arg0.read(getArrayU8FromWasm0(arg1, arg2), arg3);
5592
+ return ret;
5593
+ }, arguments) };
5594
+ imports.wbg.__wbg_read_8eb30fc4016403e0 = function() { return handleError(function (arg0, arg1, arg2) {
5566
5595
  const ret = arg0.read(arg1, arg2);
5567
5596
  return ret;
5568
5597
  }, arguments) };
5569
- imports.wbg.__wbg_read_a2434af1186cb56c = function(arg0) {
5598
+ imports.wbg.__wbg_read_f4b89f69cc51efc7 = function(arg0) {
5570
5599
  const ret = arg0.read();
5571
5600
  return ret;
5572
5601
  };
5573
- imports.wbg.__wbg_read_f8fdd4b410209222 = function() { return handleError(function (arg0, arg1, arg2, arg3) {
5574
- const ret = arg0.read(getArrayU8FromWasm0(arg1, arg2), arg3);
5575
- return ret;
5576
- }, arguments) };
5577
- imports.wbg.__wbg_releaseLock_091899af97991d2e = function(arg0) {
5602
+ imports.wbg.__wbg_releaseLock_c589dd51c0812aca = function(arg0) {
5578
5603
  arg0.releaseLock();
5579
5604
  };
5580
5605
  imports.wbg.__wbg_remoteattachmentinfo_new = function(arg0) {
@@ -5585,7 +5610,7 @@ function __wbg_get_imports() {
5585
5610
  const ret = RemoteAttachmentInfo.__unwrap(arg0);
5586
5611
  return ret;
5587
5612
  };
5588
- imports.wbg.__wbg_removeEntry_9f6bc325e3383e59 = function(arg0, arg1, arg2) {
5613
+ imports.wbg.__wbg_removeEntry_ddd726e5b0218482 = function(arg0, arg1, arg2) {
5589
5614
  const ret = arg0.removeEntry(getStringFromWasm0(arg1, arg2));
5590
5615
  return ret;
5591
5616
  };
@@ -5593,11 +5618,11 @@ function __wbg_get_imports() {
5593
5618
  const ret = module.require;
5594
5619
  return ret;
5595
5620
  }, arguments) };
5596
- imports.wbg.__wbg_resolve_4851785c9c5f573d = function(arg0) {
5621
+ imports.wbg.__wbg_resolve_0dac8c580ffd4678 = function(arg0) {
5597
5622
  const ret = Promise.resolve(arg0);
5598
5623
  return ret;
5599
5624
  };
5600
- imports.wbg.__wbg_respond_1f279fa9f8edcb1c = function() { return handleError(function (arg0, arg1) {
5625
+ imports.wbg.__wbg_respond_b227f1c3be2bb879 = function() { return handleError(function (arg0, arg1) {
5601
5626
  arg0.respond(arg1 >>> 0);
5602
5627
  }, arguments) };
5603
5628
  imports.wbg.__wbg_setInterval_ed3b5e3c3ebb8a6d = function() { return handleError(function (arg0, arg1) {
@@ -5615,60 +5640,60 @@ function __wbg_get_imports() {
5615
5640
  const ret = setTimeout(arg0, arg1);
5616
5641
  return ret;
5617
5642
  }, arguments) };
5618
- imports.wbg.__wbg_setUint32_ad8826b8caeaf63d = function(arg0, arg1, arg2) {
5643
+ imports.wbg.__wbg_setUint32_909f117d6d6c4344 = function(arg0, arg1, arg2) {
5619
5644
  arg0.setUint32(arg1 >>> 0, arg2 >>> 0);
5620
5645
  };
5621
- imports.wbg.__wbg_set_37837023f3d740e8 = function(arg0, arg1, arg2) {
5622
- arg0[arg1 >>> 0] = arg2;
5623
- };
5624
5646
  imports.wbg.__wbg_set_3f1d0b984ed272ed = function(arg0, arg1, arg2) {
5625
5647
  arg0[arg1] = arg2;
5626
5648
  };
5627
- imports.wbg.__wbg_set_65595bdd868b3009 = function(arg0, arg1, arg2) {
5628
- arg0.set(arg1, arg2 >>> 0);
5629
- };
5630
- imports.wbg.__wbg_set_8fc6bf8a5b1071d1 = function(arg0, arg1, arg2) {
5631
- const ret = arg0.set(arg1, arg2);
5632
- return ret;
5649
+ imports.wbg.__wbg_set_7422acbe992d64ab = function(arg0, arg1, arg2) {
5650
+ arg0[arg1 >>> 0] = arg2;
5633
5651
  };
5634
- imports.wbg.__wbg_set_bb8cecf6a62b9f46 = function() { return handleError(function (arg0, arg1, arg2) {
5652
+ imports.wbg.__wbg_set_c43293f93a35998a = function() { return handleError(function (arg0, arg1, arg2) {
5635
5653
  const ret = Reflect.set(arg0, arg1, arg2);
5636
5654
  return ret;
5637
5655
  }, arguments) };
5638
- imports.wbg.__wbg_setat_2a071a392643c10e = function(arg0, arg1) {
5656
+ imports.wbg.__wbg_set_d6bdfd275fb8a4ce = function(arg0, arg1, arg2) {
5657
+ const ret = arg0.set(arg1, arg2);
5658
+ return ret;
5659
+ };
5660
+ imports.wbg.__wbg_set_fe4e79d1ed3b0e9b = function(arg0, arg1, arg2) {
5661
+ arg0.set(arg1, arg2 >>> 0);
5662
+ };
5663
+ imports.wbg.__wbg_setat_2d0d9be3db4207a9 = function(arg0, arg1) {
5639
5664
  arg0.at = arg1;
5640
5665
  };
5641
- imports.wbg.__wbg_setbody_5923b78a95eedf29 = function(arg0, arg1) {
5666
+ imports.wbg.__wbg_setbody_971ec015fc13d6b4 = function(arg0, arg1) {
5642
5667
  arg0.body = arg1;
5643
5668
  };
5644
- imports.wbg.__wbg_setcache_12f17c3a980650e4 = function(arg0, arg1) {
5669
+ imports.wbg.__wbg_setcache_a94cd14dc0cc72a2 = function(arg0, arg1) {
5645
5670
  arg0.cache = __wbindgen_enum_RequestCache[arg1];
5646
5671
  };
5647
- imports.wbg.__wbg_setcreate_139bad94b2874fb5 = function(arg0, arg1) {
5672
+ imports.wbg.__wbg_setcreate_62b7d997a9936969 = function(arg0, arg1) {
5648
5673
  arg0.create = arg1 !== 0;
5649
5674
  };
5650
- imports.wbg.__wbg_setcreate_4ca762e23d9f78da = function(arg0, arg1) {
5675
+ imports.wbg.__wbg_setcreate_dcf97058ed33f8f0 = function(arg0, arg1) {
5651
5676
  arg0.create = arg1 !== 0;
5652
5677
  };
5653
- imports.wbg.__wbg_setcredentials_c3a22f1cd105a2c6 = function(arg0, arg1) {
5678
+ imports.wbg.__wbg_setcredentials_920d91fb5984c94a = function(arg0, arg1) {
5654
5679
  arg0.credentials = __wbindgen_enum_RequestCredentials[arg1];
5655
5680
  };
5656
- imports.wbg.__wbg_setheaders_834c0bdb6a8949ad = function(arg0, arg1) {
5681
+ imports.wbg.__wbg_setheaders_65a4eb4c0443ae61 = function(arg0, arg1) {
5657
5682
  arg0.headers = arg1;
5658
5683
  };
5659
- imports.wbg.__wbg_sethighwatermark_793c99c89830c8e9 = function(arg0, arg1) {
5684
+ imports.wbg.__wbg_sethighwatermark_3017ad772d071dcb = function(arg0, arg1) {
5660
5685
  arg0.highWaterMark = arg1;
5661
5686
  };
5662
- imports.wbg.__wbg_setmethod_3c5280fe5d890842 = function(arg0, arg1, arg2) {
5687
+ imports.wbg.__wbg_setmethod_8ce1be0b4d701b7c = function(arg0, arg1, arg2) {
5663
5688
  arg0.method = getStringFromWasm0(arg1, arg2);
5664
5689
  };
5665
- imports.wbg.__wbg_setmode_5dc300b865044b65 = function(arg0, arg1) {
5690
+ imports.wbg.__wbg_setmode_bd35f026f55b6247 = function(arg0, arg1) {
5666
5691
  arg0.mode = __wbindgen_enum_RequestMode[arg1];
5667
5692
  };
5668
- imports.wbg.__wbg_setsignal_75b21ef3a81de905 = function(arg0, arg1) {
5693
+ imports.wbg.__wbg_setsignal_8e72abfe7ee03c97 = function(arg0, arg1) {
5669
5694
  arg0.signal = arg1;
5670
5695
  };
5671
- imports.wbg.__wbg_signal_aaf9ad74119f20a4 = function(arg0) {
5696
+ imports.wbg.__wbg_signal_b96223519a041faa = function(arg0) {
5672
5697
  const ret = arg0.signal;
5673
5698
  return ret;
5674
5699
  };
@@ -5676,11 +5701,11 @@ function __wbg_get_imports() {
5676
5701
  const ret = SignatureRequestHandle.__wrap(arg0);
5677
5702
  return ret;
5678
5703
  };
5679
- imports.wbg.__wbg_size_f9d54556ad844dc3 = function(arg0) {
5704
+ imports.wbg.__wbg_size_e6e036b6b1285ed9 = function(arg0) {
5680
5705
  const ret = arg0.size;
5681
5706
  return ret;
5682
5707
  };
5683
- imports.wbg.__wbg_slice_972c243648c9fd2e = function(arg0, arg1, arg2) {
5708
+ imports.wbg.__wbg_slice_3b17e1df768365f2 = function(arg0, arg1, arg2) {
5684
5709
  const ret = arg0.slice(arg1 >>> 0, arg2 >>> 0);
5685
5710
  return ret;
5686
5711
  };
@@ -5691,51 +5716,51 @@ function __wbg_get_imports() {
5691
5716
  getDataViewMemory0().setInt32(arg0 + 4 * 1, len1, true);
5692
5717
  getDataViewMemory0().setInt32(arg0 + 4 * 0, ptr1, true);
5693
5718
  };
5694
- imports.wbg.__wbg_static_accessor_GLOBAL_88a902d13a557d07 = function() {
5719
+ imports.wbg.__wbg_static_accessor_GLOBAL_487c52c58d65314d = function() {
5695
5720
  const ret = typeof global === 'undefined' ? null : global;
5696
5721
  return isLikeNone(ret) ? 0 : addToExternrefTable0(ret);
5697
5722
  };
5698
- imports.wbg.__wbg_static_accessor_GLOBAL_THIS_56578be7e9f832b0 = function() {
5723
+ imports.wbg.__wbg_static_accessor_GLOBAL_THIS_ee9704f328b6b291 = function() {
5699
5724
  const ret = typeof globalThis === 'undefined' ? null : globalThis;
5700
5725
  return isLikeNone(ret) ? 0 : addToExternrefTable0(ret);
5701
5726
  };
5702
- imports.wbg.__wbg_static_accessor_SELF_37c5d418e4bf5819 = function() {
5727
+ imports.wbg.__wbg_static_accessor_SELF_78c9e3071b912620 = function() {
5703
5728
  const ret = typeof self === 'undefined' ? null : self;
5704
5729
  return isLikeNone(ret) ? 0 : addToExternrefTable0(ret);
5705
5730
  };
5706
- imports.wbg.__wbg_static_accessor_WINDOW_5de37043a91a9c40 = function() {
5731
+ imports.wbg.__wbg_static_accessor_WINDOW_a093d21393777366 = function() {
5707
5732
  const ret = typeof window === 'undefined' ? null : window;
5708
5733
  return isLikeNone(ret) ? 0 : addToExternrefTable0(ret);
5709
5734
  };
5710
- imports.wbg.__wbg_status_f6360336ca686bf0 = function(arg0) {
5735
+ imports.wbg.__wbg_status_a54682bbe52f9058 = function(arg0) {
5711
5736
  const ret = arg0.status;
5712
5737
  return ret;
5713
5738
  };
5714
- imports.wbg.__wbg_storage_07eb754b88898955 = function(arg0) {
5739
+ imports.wbg.__wbg_storage_52b923037fa3d04c = function(arg0) {
5715
5740
  const ret = arg0.storage;
5716
5741
  return ret;
5717
5742
  };
5718
- imports.wbg.__wbg_stringify_f7ed6987935b4a24 = function() { return handleError(function (arg0) {
5743
+ imports.wbg.__wbg_stringify_c242842b97f054cc = function() { return handleError(function (arg0) {
5719
5744
  const ret = JSON.stringify(arg0);
5720
5745
  return ret;
5721
5746
  }, arguments) };
5722
- imports.wbg.__wbg_subarray_aa9065fa9dc5df96 = function(arg0, arg1, arg2) {
5747
+ imports.wbg.__wbg_subarray_dd4ade7d53bd8e26 = function(arg0, arg1, arg2) {
5723
5748
  const ret = arg0.subarray(arg1 >>> 0, arg2 >>> 0);
5724
5749
  return ret;
5725
5750
  };
5726
- imports.wbg.__wbg_text_7805bea50de2af49 = function() { return handleError(function (arg0) {
5751
+ imports.wbg.__wbg_text_ec0e22f60e30dd2f = function() { return handleError(function (arg0) {
5727
5752
  const ret = arg0.text();
5728
5753
  return ret;
5729
5754
  }, arguments) };
5730
- imports.wbg.__wbg_then_44b73946d2fb3e7d = function(arg0, arg1) {
5731
- const ret = arg0.then(arg1);
5755
+ imports.wbg.__wbg_then_82ab9fb4080f1707 = function(arg0, arg1, arg2) {
5756
+ const ret = arg0.then(arg1, arg2);
5732
5757
  return ret;
5733
5758
  };
5734
- imports.wbg.__wbg_then_48b406749878a531 = function(arg0, arg1, arg2) {
5735
- const ret = arg0.then(arg1, arg2);
5759
+ imports.wbg.__wbg_then_db882932c0c714c6 = function(arg0, arg1) {
5760
+ const ret = arg0.then(arg1);
5736
5761
  return ret;
5737
5762
  };
5738
- imports.wbg.__wbg_toString_ba82658ec370add0 = function() { return handleError(function (arg0, arg1) {
5763
+ imports.wbg.__wbg_toString_e2fd3ab0d7a3919b = function() { return handleError(function (arg0, arg1) {
5739
5764
  const ret = arg0.toString(arg1);
5740
5765
  return ret;
5741
5766
  }, arguments) };
@@ -5745,20 +5770,20 @@ function __wbg_get_imports() {
5745
5770
  imports.wbg.__wbg_toU8Slice_11519abfa5176ae4 = function(arg0, arg1, arg2, arg3) {
5746
5771
  JSArrayBufferCopy.toU8Slice(arg0, arg1, arg2 >>> 0, arg3 >>> 0);
5747
5772
  };
5748
- imports.wbg.__wbg_truncate_29261a6365c72b01 = function() { return handleError(function (arg0, arg1) {
5749
- arg0.truncate(arg1 >>> 0);
5750
- }, arguments) };
5751
- imports.wbg.__wbg_truncate_4e1b09a0538f4ac4 = function() { return handleError(function (arg0, arg1) {
5773
+ imports.wbg.__wbg_truncate_015f5d17c33dc013 = function() { return handleError(function (arg0, arg1) {
5752
5774
  arg0.truncate(arg1);
5753
5775
  }, arguments) };
5754
- imports.wbg.__wbg_url_ae10c34ca209681d = function(arg0, arg1) {
5776
+ imports.wbg.__wbg_truncate_1b4fd52305f619d7 = function() { return handleError(function (arg0, arg1) {
5777
+ arg0.truncate(arg1 >>> 0);
5778
+ }, arguments) };
5779
+ imports.wbg.__wbg_url_e6ed869ea05b7a71 = function(arg0, arg1) {
5755
5780
  const ret = arg1.url;
5756
5781
  const ptr1 = passStringToWasm0(ret, wasm.__wbindgen_malloc, wasm.__wbindgen_realloc);
5757
5782
  const len1 = WASM_VECTOR_LEN;
5758
5783
  getDataViewMemory0().setInt32(arg0 + 4 * 1, len1, true);
5759
5784
  getDataViewMemory0().setInt32(arg0 + 4 * 0, ptr1, true);
5760
5785
  };
5761
- imports.wbg.__wbg_value_cd1ffa7b1ab794f1 = function(arg0) {
5786
+ imports.wbg.__wbg_value_17b896954e14f896 = function(arg0) {
5762
5787
  const ret = arg0.value;
5763
5788
  return ret;
5764
5789
  };
@@ -5766,22 +5791,22 @@ function __wbg_get_imports() {
5766
5791
  const ret = arg0.versions;
5767
5792
  return ret;
5768
5793
  };
5769
- imports.wbg.__wbg_view_fd8a56e8983f448d = function(arg0) {
5794
+ imports.wbg.__wbg_view_a9ad80dcbad7cf1c = function(arg0) {
5770
5795
  const ret = arg0.view;
5771
5796
  return isLikeNone(ret) ? 0 : addToExternrefTable0(ret);
5772
5797
  };
5773
- imports.wbg.__wbg_warn_4ca3906c248c47c4 = function(arg0) {
5774
- console.warn(arg0);
5775
- };
5776
- imports.wbg.__wbg_warn_aaf1f4664a035bd6 = function(arg0, arg1, arg2, arg3) {
5798
+ imports.wbg.__wbg_warn_90607373221a6b1c = function(arg0, arg1, arg2, arg3) {
5777
5799
  console.warn(arg0, arg1, arg2, arg3);
5778
5800
  };
5779
- imports.wbg.__wbg_write_530d3c84df874f53 = function() { return handleError(function (arg0, arg1, arg2, arg3) {
5780
- const ret = arg0.write(getArrayU8FromWasm0(arg1, arg2), arg3);
5801
+ imports.wbg.__wbg_warn_d89f6637da554c8d = function(arg0) {
5802
+ console.warn(arg0);
5803
+ };
5804
+ imports.wbg.__wbg_write_0afe3c9463f48fc5 = function() { return handleError(function (arg0, arg1, arg2) {
5805
+ const ret = arg0.write(arg1, arg2);
5781
5806
  return ret;
5782
5807
  }, arguments) };
5783
- imports.wbg.__wbg_write_df271225cf2c4e20 = function() { return handleError(function (arg0, arg1, arg2) {
5784
- const ret = arg0.write(arg1, arg2);
5808
+ imports.wbg.__wbg_write_20973b686f7a7721 = function() { return handleError(function (arg0, arg1, arg2, arg3) {
5809
+ const ret = arg0.write(getArrayU8FromWasm0(arg1, arg2), arg3);
5785
5810
  return ret;
5786
5811
  }, arguments) };
5787
5812
  imports.wbg.__wbindgen_array_new = function() {
@@ -5813,16 +5838,16 @@ function __wbg_get_imports() {
5813
5838
  const ret = false;
5814
5839
  return ret;
5815
5840
  };
5816
- imports.wbg.__wbindgen_closure_wrapper20652 = function(arg0, arg1, arg2) {
5817
- const ret = makeMutClosure(arg0, arg1, 4952, __wbg_adapter_50);
5841
+ imports.wbg.__wbindgen_closure_wrapper20687 = function(arg0, arg1, arg2) {
5842
+ const ret = makeMutClosure(arg0, arg1, 5031, __wbg_adapter_48);
5818
5843
  return ret;
5819
5844
  };
5820
- imports.wbg.__wbindgen_closure_wrapper22799 = function(arg0, arg1, arg2) {
5821
- const ret = makeMutClosure(arg0, arg1, 5230, __wbg_adapter_53);
5845
+ imports.wbg.__wbindgen_closure_wrapper22851 = function(arg0, arg1, arg2) {
5846
+ const ret = makeMutClosure(arg0, arg1, 5292, __wbg_adapter_51);
5822
5847
  return ret;
5823
5848
  };
5824
- imports.wbg.__wbindgen_closure_wrapper23454 = function(arg0, arg1, arg2) {
5825
- const ret = makeMutClosure(arg0, arg1, 5254, __wbg_adapter_56);
5849
+ imports.wbg.__wbindgen_closure_wrapper23480 = function(arg0, arg1, arg2) {
5850
+ const ret = makeMutClosure(arg0, arg1, 5305, __wbg_adapter_54);
5826
5851
  return ret;
5827
5852
  };
5828
5853
  imports.wbg.__wbindgen_debug_string = function(arg0, arg1) {
@@ -5832,10 +5857,6 @@ function __wbg_get_imports() {
5832
5857
  getDataViewMemory0().setInt32(arg0 + 4 * 1, len1, true);
5833
5858
  getDataViewMemory0().setInt32(arg0 + 4 * 0, ptr1, true);
5834
5859
  };
5835
- imports.wbg.__wbindgen_error_new = function(arg0, arg1) {
5836
- const ret = new Error(getStringFromWasm0(arg0, arg1));
5837
- return ret;
5838
- };
5839
5860
  imports.wbg.__wbindgen_in = function(arg0, arg1) {
5840
5861
  const ret = arg0 in arg1;
5841
5862
  return ret;