@bitwarden/commercial-sdk-internal 0.2.0-main.372 → 0.2.0-main.374

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.
@@ -3,16 +3,6 @@ export function __wbg_set_wasm(val) {
3
3
  wasm = val;
4
4
  }
5
5
 
6
- const heap = new Array(128).fill(undefined);
7
-
8
- heap.push(undefined, null, true, false);
9
-
10
- function getObject(idx) {
11
- return heap[idx];
12
- }
13
-
14
- let WASM_VECTOR_LEN = 0;
15
-
16
6
  let cachedUint8ArrayMemory0 = null;
17
7
 
18
8
  function getUint8ArrayMemory0() {
@@ -22,24 +12,60 @@ function getUint8ArrayMemory0() {
22
12
  return cachedUint8ArrayMemory0;
23
13
  }
24
14
 
25
- const lTextEncoder =
26
- typeof TextEncoder === "undefined" ? (0, module.require)("util").TextEncoder : TextEncoder;
15
+ let cachedTextDecoder = new TextDecoder("utf-8", { ignoreBOM: true, fatal: true });
27
16
 
28
- let cachedTextEncoder = new lTextEncoder("utf-8");
17
+ cachedTextDecoder.decode();
29
18
 
30
- const encodeString =
31
- typeof cachedTextEncoder.encodeInto === "function"
32
- ? function (arg, view) {
33
- return cachedTextEncoder.encodeInto(arg, view);
34
- }
35
- : function (arg, view) {
36
- const buf = cachedTextEncoder.encode(arg);
37
- view.set(buf);
38
- return {
39
- read: arg.length,
40
- written: buf.length,
41
- };
42
- };
19
+ const MAX_SAFARI_DECODE_BYTES = 2146435072;
20
+ let numBytesDecoded = 0;
21
+ function decodeText(ptr, len) {
22
+ numBytesDecoded += len;
23
+ if (numBytesDecoded >= MAX_SAFARI_DECODE_BYTES) {
24
+ cachedTextDecoder = new TextDecoder("utf-8", { ignoreBOM: true, fatal: true });
25
+ cachedTextDecoder.decode();
26
+ numBytesDecoded = len;
27
+ }
28
+ return cachedTextDecoder.decode(getUint8ArrayMemory0().subarray(ptr, ptr + len));
29
+ }
30
+
31
+ function getStringFromWasm0(ptr, len) {
32
+ ptr = ptr >>> 0;
33
+ return decodeText(ptr, len);
34
+ }
35
+
36
+ let heap = new Array(128).fill(undefined);
37
+
38
+ heap.push(undefined, null, true, false);
39
+
40
+ let heap_next = heap.length;
41
+
42
+ function addHeapObject(obj) {
43
+ if (heap_next === heap.length) heap.push(heap.length + 1);
44
+ const idx = heap_next;
45
+ heap_next = heap[idx];
46
+
47
+ heap[idx] = obj;
48
+ return idx;
49
+ }
50
+
51
+ function getObject(idx) {
52
+ return heap[idx];
53
+ }
54
+
55
+ let WASM_VECTOR_LEN = 0;
56
+
57
+ const cachedTextEncoder = new TextEncoder();
58
+
59
+ if (!("encodeInto" in cachedTextEncoder)) {
60
+ cachedTextEncoder.encodeInto = function (arg, view) {
61
+ const buf = cachedTextEncoder.encode(arg);
62
+ view.set(buf);
63
+ return {
64
+ read: arg.length,
65
+ written: buf.length,
66
+ };
67
+ };
68
+ }
43
69
 
44
70
  function passStringToWasm0(arg, malloc, realloc) {
45
71
  if (realloc === undefined) {
@@ -71,7 +97,7 @@ function passStringToWasm0(arg, malloc, realloc) {
71
97
  }
72
98
  ptr = realloc(ptr, len, (len = offset + arg.length * 3), 1) >>> 0;
73
99
  const view = getUint8ArrayMemory0().subarray(ptr + offset, ptr + len);
74
- const ret = encodeString(arg, view);
100
+ const ret = cachedTextEncoder.encodeInto(arg, view);
75
101
 
76
102
  offset += ret.written;
77
103
  ptr = realloc(ptr, len, offset, 1) >>> 0;
@@ -95,90 +121,10 @@ function getDataViewMemory0() {
95
121
  return cachedDataViewMemory0;
96
122
  }
97
123
 
98
- let heap_next = heap.length;
99
-
100
- function addHeapObject(obj) {
101
- if (heap_next === heap.length) heap.push(heap.length + 1);
102
- const idx = heap_next;
103
- heap_next = heap[idx];
104
-
105
- heap[idx] = obj;
106
- return idx;
107
- }
108
-
109
- function handleError(f, args) {
110
- try {
111
- return f.apply(this, args);
112
- } catch (e) {
113
- wasm.__wbindgen_exn_store(addHeapObject(e));
114
- }
115
- }
116
-
117
- const lTextDecoder =
118
- typeof TextDecoder === "undefined" ? (0, module.require)("util").TextDecoder : TextDecoder;
119
-
120
- let cachedTextDecoder = new lTextDecoder("utf-8", { ignoreBOM: true, fatal: true });
121
-
122
- cachedTextDecoder.decode();
123
-
124
- function getStringFromWasm0(ptr, len) {
125
- ptr = ptr >>> 0;
126
- return cachedTextDecoder.decode(getUint8ArrayMemory0().subarray(ptr, ptr + len));
127
- }
128
-
129
124
  function isLikeNone(x) {
130
125
  return x === undefined || x === null;
131
126
  }
132
127
 
133
- function dropObject(idx) {
134
- if (idx < 132) return;
135
- heap[idx] = heap_next;
136
- heap_next = idx;
137
- }
138
-
139
- function takeObject(idx) {
140
- const ret = getObject(idx);
141
- dropObject(idx);
142
- return ret;
143
- }
144
-
145
- function getArrayU8FromWasm0(ptr, len) {
146
- ptr = ptr >>> 0;
147
- return getUint8ArrayMemory0().subarray(ptr / 1, ptr / 1 + len);
148
- }
149
-
150
- const CLOSURE_DTORS =
151
- typeof FinalizationRegistry === "undefined"
152
- ? { register: () => {}, unregister: () => {} }
153
- : new FinalizationRegistry((state) => {
154
- wasm.__wbindgen_export_4.get(state.dtor)(state.a, state.b);
155
- });
156
-
157
- function makeMutClosure(arg0, arg1, dtor, f) {
158
- const state = { a: arg0, b: arg1, cnt: 1, dtor };
159
- const real = (...args) => {
160
- // First up with a closure we increment the internal reference
161
- // count. This ensures that the Rust closure environment won't
162
- // be deallocated while we're invoking it.
163
- state.cnt++;
164
- const a = state.a;
165
- state.a = 0;
166
- try {
167
- return f(a, state.b, ...args);
168
- } finally {
169
- if (--state.cnt === 0) {
170
- wasm.__wbindgen_export_4.get(state.dtor)(a, state.b);
171
- CLOSURE_DTORS.unregister(state);
172
- } else {
173
- state.a = a;
174
- }
175
- }
176
- };
177
- real.original = state;
178
- CLOSURE_DTORS.register(real, state, state);
179
- return real;
180
- }
181
-
182
128
  function debugString(val) {
183
129
  // primitive types
184
130
  const type = typeof val;
@@ -243,6 +189,73 @@ function debugString(val) {
243
189
  // TODO we could test for more things here, like `Set`s and `Map`s.
244
190
  return className;
245
191
  }
192
+
193
+ function handleError(f, args) {
194
+ try {
195
+ return f.apply(this, args);
196
+ } catch (e) {
197
+ wasm.__wbindgen_exn_store(addHeapObject(e));
198
+ }
199
+ }
200
+
201
+ function dropObject(idx) {
202
+ if (idx < 132) return;
203
+ heap[idx] = heap_next;
204
+ heap_next = idx;
205
+ }
206
+
207
+ function takeObject(idx) {
208
+ const ret = getObject(idx);
209
+ dropObject(idx);
210
+ return ret;
211
+ }
212
+
213
+ function getArrayU8FromWasm0(ptr, len) {
214
+ ptr = ptr >>> 0;
215
+ return getUint8ArrayMemory0().subarray(ptr / 1, ptr / 1 + len);
216
+ }
217
+
218
+ const CLOSURE_DTORS =
219
+ typeof FinalizationRegistry === "undefined"
220
+ ? { register: () => {}, unregister: () => {} }
221
+ : new FinalizationRegistry((state) => state.dtor(state.a, state.b));
222
+
223
+ function makeMutClosure(arg0, arg1, dtor, f) {
224
+ const state = { a: arg0, b: arg1, cnt: 1, dtor };
225
+ const real = (...args) => {
226
+ // First up with a closure we increment the internal reference
227
+ // count. This ensures that the Rust closure environment won't
228
+ // be deallocated while we're invoking it.
229
+ state.cnt++;
230
+ const a = state.a;
231
+ state.a = 0;
232
+ try {
233
+ return f(a, state.b, ...args);
234
+ } finally {
235
+ state.a = a;
236
+ real._wbg_cb_unref();
237
+ }
238
+ };
239
+ real._wbg_cb_unref = () => {
240
+ if (--state.cnt === 0) {
241
+ state.dtor(state.a, state.b);
242
+ state.a = 0;
243
+ CLOSURE_DTORS.unregister(state);
244
+ }
245
+ };
246
+ CLOSURE_DTORS.register(real, state, state);
247
+ return real;
248
+ }
249
+
250
+ function getArrayJsValueFromWasm0(ptr, len) {
251
+ ptr = ptr >>> 0;
252
+ const mem = getDataViewMemory0();
253
+ const result = [];
254
+ for (let i = ptr; i < ptr + 4 * len; i += 4) {
255
+ result.push(takeObject(mem.getUint32(i, true)));
256
+ }
257
+ return result;
258
+ }
246
259
  /**
247
260
  * @param {LogLevel} level
248
261
  */
@@ -464,16 +477,6 @@ function passArrayJsValueToWasm0(array, malloc) {
464
477
  WASM_VECTOR_LEN = array.length;
465
478
  return ptr;
466
479
  }
467
-
468
- function getArrayJsValueFromWasm0(ptr, len) {
469
- ptr = ptr >>> 0;
470
- const mem = getDataViewMemory0();
471
- const result = [];
472
- for (let i = ptr; i < ptr + 4 * len; i += 4) {
473
- result.push(takeObject(mem.getUint32(i, true)));
474
- }
475
- return result;
476
- }
477
480
  /**
478
481
  * @param {any} error
479
482
  * @returns {boolean}
@@ -872,10 +875,22 @@ export function isEncryptFileError(error) {
872
875
  }
873
876
  }
874
877
 
875
- function __wbg_adapter_54(arg0, arg1, arg2) {
878
+ function wasm_bindgen__convert__closures_____invoke__h76c71c1158b6af01(arg0, arg1) {
879
+ wasm.wasm_bindgen__convert__closures_____invoke__h76c71c1158b6af01(arg0, arg1);
880
+ }
881
+
882
+ function wasm_bindgen__convert__closures_____invoke__h4f8d9ba9b5b9a009(arg0, arg1, arg2) {
883
+ wasm.wasm_bindgen__convert__closures_____invoke__h4f8d9ba9b5b9a009(
884
+ arg0,
885
+ arg1,
886
+ addHeapObject(arg2),
887
+ );
888
+ }
889
+
890
+ function wasm_bindgen__convert__closures_____invoke__hf869d8564f5adb52(arg0, arg1, arg2) {
876
891
  try {
877
892
  const retptr = wasm.__wbindgen_add_to_stack_pointer(-16);
878
- wasm._dyn_core__ops__function__FnMut__A____Output___R_as_wasm_bindgen__closure__WasmClosure___describe__invoke__he3daa5b4d8aa47cd(
893
+ wasm.wasm_bindgen__convert__closures_____invoke__hf869d8564f5adb52(
879
894
  retptr,
880
895
  arg0,
881
896
  arg1,
@@ -891,23 +906,8 @@ function __wbg_adapter_54(arg0, arg1, arg2) {
891
906
  }
892
907
  }
893
908
 
894
- function __wbg_adapter_57(arg0, arg1, arg2) {
895
- wasm._dyn_core__ops__function__FnMut__A____Output___R_as_wasm_bindgen__closure__WasmClosure___describe__invoke__h65ba38d36075af32(
896
- arg0,
897
- arg1,
898
- addHeapObject(arg2),
899
- );
900
- }
901
-
902
- function __wbg_adapter_60(arg0, arg1) {
903
- wasm._dyn_core__ops__function__FnMut_____Output___R_as_wasm_bindgen__closure__WasmClosure___describe__invoke__h1d088d25aee734e6(
904
- arg0,
905
- arg1,
906
- );
907
- }
908
-
909
- function __wbg_adapter_357(arg0, arg1, arg2, arg3) {
910
- wasm.wasm_bindgen__convert__closures__invoke2_mut__h849ee2a9e4ae2f91(
909
+ function wasm_bindgen__convert__closures_____invoke__h4096c3b930b983e7(arg0, arg1, arg2, arg3) {
910
+ wasm.wasm_bindgen__convert__closures_____invoke__h4096c3b930b983e7(
911
911
  arg0,
912
912
  arg1,
913
913
  addHeapObject(arg2),
@@ -1137,6 +1137,7 @@ export class AttachmentsClient {
1137
1137
  }
1138
1138
  }
1139
1139
  }
1140
+ if (Symbol.dispose) AttachmentsClient.prototype[Symbol.dispose] = AttachmentsClient.prototype.free;
1140
1141
 
1141
1142
  const AuthClientFinalization =
1142
1143
  typeof FinalizationRegistry === "undefined"
@@ -1182,6 +1183,7 @@ export class AuthClient {
1182
1183
  return SendAccessClient.__wrap(ret);
1183
1184
  }
1184
1185
  }
1186
+ if (Symbol.dispose) AuthClient.prototype[Symbol.dispose] = AuthClient.prototype.free;
1185
1187
 
1186
1188
  const BitwardenClientFinalization =
1187
1189
  typeof FinalizationRegistry === "undefined"
@@ -1346,6 +1348,7 @@ export class BitwardenClient {
1346
1348
  return ExporterClient.__wrap(ret);
1347
1349
  }
1348
1350
  }
1351
+ if (Symbol.dispose) BitwardenClient.prototype[Symbol.dispose] = BitwardenClient.prototype.free;
1349
1352
 
1350
1353
  const CipherRiskClientFinalization =
1351
1354
  typeof FinalizationRegistry === "undefined"
@@ -1428,6 +1431,7 @@ export class CipherRiskClient {
1428
1431
  return takeObject(ret);
1429
1432
  }
1430
1433
  }
1434
+ if (Symbol.dispose) CipherRiskClient.prototype[Symbol.dispose] = CipherRiskClient.prototype.free;
1431
1435
 
1432
1436
  const CiphersClientFinalization =
1433
1437
  typeof FinalizationRegistry === "undefined"
@@ -1743,6 +1747,7 @@ export class CiphersClient {
1743
1747
  }
1744
1748
  }
1745
1749
  }
1750
+ if (Symbol.dispose) CiphersClient.prototype[Symbol.dispose] = CiphersClient.prototype.free;
1746
1751
 
1747
1752
  const CollectionViewNodeItemFinalization =
1748
1753
  typeof FinalizationRegistry === "undefined"
@@ -1807,6 +1812,8 @@ export class CollectionViewNodeItem {
1807
1812
  return takeObject(ret);
1808
1813
  }
1809
1814
  }
1815
+ if (Symbol.dispose)
1816
+ CollectionViewNodeItem.prototype[Symbol.dispose] = CollectionViewNodeItem.prototype.free;
1810
1817
 
1811
1818
  const CollectionViewTreeFinalization =
1812
1819
  typeof FinalizationRegistry === "undefined"
@@ -1877,6 +1884,8 @@ export class CollectionViewTree {
1877
1884
  }
1878
1885
  }
1879
1886
  }
1887
+ if (Symbol.dispose)
1888
+ CollectionViewTree.prototype[Symbol.dispose] = CollectionViewTree.prototype.free;
1880
1889
 
1881
1890
  const CollectionsClientFinalization =
1882
1891
  typeof FinalizationRegistry === "undefined"
@@ -1960,6 +1969,7 @@ export class CollectionsClient {
1960
1969
  return CollectionViewTree.__wrap(ret);
1961
1970
  }
1962
1971
  }
1972
+ if (Symbol.dispose) CollectionsClient.prototype[Symbol.dispose] = CollectionsClient.prototype.free;
1963
1973
 
1964
1974
  const CommercialPasswordManagerClientFinalization =
1965
1975
  typeof FinalizationRegistry === "undefined"
@@ -1999,6 +2009,9 @@ export class CommercialPasswordManagerClient {
1999
2009
  return CommercialVaultClient.__wrap(ret);
2000
2010
  }
2001
2011
  }
2012
+ if (Symbol.dispose)
2013
+ CommercialPasswordManagerClient.prototype[Symbol.dispose] =
2014
+ CommercialPasswordManagerClient.prototype.free;
2002
2015
 
2003
2016
  const CommercialVaultClientFinalization =
2004
2017
  typeof FinalizationRegistry === "undefined"
@@ -2026,6 +2039,8 @@ export class CommercialVaultClient {
2026
2039
  wasm.__wbg_commercialvaultclient_free(ptr, 0);
2027
2040
  }
2028
2041
  }
2042
+ if (Symbol.dispose)
2043
+ CommercialVaultClient.prototype[Symbol.dispose] = CommercialVaultClient.prototype.free;
2029
2044
 
2030
2045
  const CryptoClientFinalization =
2031
2046
  typeof FinalizationRegistry === "undefined"
@@ -2269,6 +2284,7 @@ export class CryptoClient {
2269
2284
  }
2270
2285
  }
2271
2286
  }
2287
+ if (Symbol.dispose) CryptoClient.prototype[Symbol.dispose] = CryptoClient.prototype.free;
2272
2288
 
2273
2289
  const ExporterClientFinalization =
2274
2290
  typeof FinalizationRegistry === "undefined"
@@ -2450,6 +2466,7 @@ export class ExporterClient {
2450
2466
  }
2451
2467
  }
2452
2468
  }
2469
+ if (Symbol.dispose) ExporterClient.prototype[Symbol.dispose] = ExporterClient.prototype.free;
2453
2470
 
2454
2471
  const FoldersClientFinalization =
2455
2472
  typeof FinalizationRegistry === "undefined"
@@ -2584,6 +2601,7 @@ export class FoldersClient {
2584
2601
  return takeObject(ret);
2585
2602
  }
2586
2603
  }
2604
+ if (Symbol.dispose) FoldersClient.prototype[Symbol.dispose] = FoldersClient.prototype.free;
2587
2605
 
2588
2606
  const GeneratorClientFinalization =
2589
2607
  typeof FinalizationRegistry === "undefined"
@@ -2715,6 +2733,7 @@ export class GeneratorClient {
2715
2733
  }
2716
2734
  }
2717
2735
  }
2736
+ if (Symbol.dispose) GeneratorClient.prototype[Symbol.dispose] = GeneratorClient.prototype.free;
2718
2737
 
2719
2738
  const IdentityClientFinalization =
2720
2739
  typeof FinalizationRegistry === "undefined"
@@ -2744,6 +2763,7 @@ export class IdentityClient {
2744
2763
  wasm.__wbg_identityclient_free(ptr, 0);
2745
2764
  }
2746
2765
  }
2766
+ if (Symbol.dispose) IdentityClient.prototype[Symbol.dispose] = IdentityClient.prototype.free;
2747
2767
 
2748
2768
  const IncomingMessageFinalization =
2749
2769
  typeof FinalizationRegistry === "undefined"
@@ -2883,6 +2903,7 @@ export class IncomingMessage {
2883
2903
  return takeObject(ret);
2884
2904
  }
2885
2905
  }
2906
+ if (Symbol.dispose) IncomingMessage.prototype[Symbol.dispose] = IncomingMessage.prototype.free;
2886
2907
 
2887
2908
  const IpcClientFinalization =
2888
2909
  typeof FinalizationRegistry === "undefined"
@@ -2946,6 +2967,7 @@ export class IpcClient {
2946
2967
  return takeObject(ret);
2947
2968
  }
2948
2969
  }
2970
+ if (Symbol.dispose) IpcClient.prototype[Symbol.dispose] = IpcClient.prototype.free;
2949
2971
 
2950
2972
  const IpcClientSubscriptionFinalization =
2951
2973
  typeof FinalizationRegistry === "undefined"
@@ -2987,6 +3009,8 @@ export class IpcClientSubscription {
2987
3009
  return takeObject(ret);
2988
3010
  }
2989
3011
  }
3012
+ if (Symbol.dispose)
3013
+ IpcClientSubscription.prototype[Symbol.dispose] = IpcClientSubscription.prototype.free;
2990
3014
 
2991
3015
  const IpcCommunicationBackendFinalization =
2992
3016
  typeof FinalizationRegistry === "undefined"
@@ -3037,6 +3061,8 @@ export class IpcCommunicationBackend {
3037
3061
  }
3038
3062
  }
3039
3063
  }
3064
+ if (Symbol.dispose)
3065
+ IpcCommunicationBackend.prototype[Symbol.dispose] = IpcCommunicationBackend.prototype.free;
3040
3066
 
3041
3067
  const OutgoingMessageFinalization =
3042
3068
  typeof FinalizationRegistry === "undefined"
@@ -3179,6 +3205,7 @@ export class OutgoingMessage {
3179
3205
  }
3180
3206
  }
3181
3207
  }
3208
+ if (Symbol.dispose) OutgoingMessage.prototype[Symbol.dispose] = OutgoingMessage.prototype.free;
3182
3209
 
3183
3210
  const PlatformClientFinalization =
3184
3211
  typeof FinalizationRegistry === "undefined"
@@ -3230,6 +3257,7 @@ export class PlatformClient {
3230
3257
  }
3231
3258
  }
3232
3259
  }
3260
+ if (Symbol.dispose) PlatformClient.prototype[Symbol.dispose] = PlatformClient.prototype.free;
3233
3261
 
3234
3262
  const PureCryptoFinalization =
3235
3263
  typeof FinalizationRegistry === "undefined"
@@ -4045,6 +4073,7 @@ export class PureCrypto {
4045
4073
  }
4046
4074
  }
4047
4075
  }
4076
+ if (Symbol.dispose) PureCrypto.prototype[Symbol.dispose] = PureCrypto.prototype.free;
4048
4077
 
4049
4078
  const SendAccessClientFinalization =
4050
4079
  typeof FinalizationRegistry === "undefined"
@@ -4086,6 +4115,7 @@ export class SendAccessClient {
4086
4115
  return takeObject(ret);
4087
4116
  }
4088
4117
  }
4118
+ if (Symbol.dispose) SendAccessClient.prototype[Symbol.dispose] = SendAccessClient.prototype.free;
4089
4119
 
4090
4120
  const StateClientFinalization =
4091
4121
  typeof FinalizationRegistry === "undefined"
@@ -4143,6 +4173,7 @@ export class StateClient {
4143
4173
  return takeObject(ret);
4144
4174
  }
4145
4175
  }
4176
+ if (Symbol.dispose) StateClient.prototype[Symbol.dispose] = StateClient.prototype.free;
4146
4177
 
4147
4178
  const TotpClientFinalization =
4148
4179
  typeof FinalizationRegistry === "undefined"
@@ -4207,6 +4238,7 @@ export class TotpClient {
4207
4238
  }
4208
4239
  }
4209
4240
  }
4241
+ if (Symbol.dispose) TotpClient.prototype[Symbol.dispose] = TotpClient.prototype.free;
4210
4242
 
4211
4243
  const VaultClientFinalization =
4212
4244
  typeof FinalizationRegistry === "undefined"
@@ -4282,6 +4314,17 @@ export class VaultClient {
4282
4314
  return CipherRiskClient.__wrap(ret);
4283
4315
  }
4284
4316
  }
4317
+ if (Symbol.dispose) VaultClient.prototype[Symbol.dispose] = VaultClient.prototype.free;
4318
+
4319
+ export function __wbg_Error_e83987f665cf5504(arg0, arg1) {
4320
+ const ret = Error(getStringFromWasm0(arg0, arg1));
4321
+ return addHeapObject(ret);
4322
+ }
4323
+
4324
+ export function __wbg_Number_bb48ca12f395cd08(arg0) {
4325
+ const ret = Number(getObject(arg0));
4326
+ return ret;
4327
+ }
4285
4328
 
4286
4329
  export function __wbg_String_8f0eb39a4a4c2f66(arg0, arg1) {
4287
4330
  const ret = String(getObject(arg1));
@@ -4291,37 +4334,119 @@ export function __wbg_String_8f0eb39a4a4c2f66(arg0, arg1) {
4291
4334
  getDataViewMemory0().setInt32(arg0 + 4 * 0, ptr1, true);
4292
4335
  }
4293
4336
 
4294
- export function __wbg_abort_410ec47a64ac6117(arg0, arg1) {
4295
- getObject(arg0).abort(getObject(arg1));
4337
+ export function __wbg___wbindgen_bigint_get_as_i64_f3ebc5a755000afd(arg0, arg1) {
4338
+ const v = getObject(arg1);
4339
+ const ret = typeof v === "bigint" ? v : undefined;
4340
+ getDataViewMemory0().setBigInt64(arg0 + 8 * 1, isLikeNone(ret) ? BigInt(0) : ret, true);
4341
+ getDataViewMemory0().setInt32(arg0 + 4 * 0, !isLikeNone(ret), true);
4296
4342
  }
4297
4343
 
4298
- export function __wbg_abort_775ef1d17fc65868(arg0) {
4299
- getObject(arg0).abort();
4344
+ export function __wbg___wbindgen_boolean_get_6d5a1ee65bab5f68(arg0) {
4345
+ const v = getObject(arg0);
4346
+ const ret = typeof v === "boolean" ? v : undefined;
4347
+ return isLikeNone(ret) ? 0xffffff : ret ? 1 : 0;
4348
+ }
4349
+
4350
+ export function __wbg___wbindgen_debug_string_df47ffb5e35e6763(arg0, arg1) {
4351
+ const ret = debugString(getObject(arg1));
4352
+ const ptr1 = passStringToWasm0(ret, wasm.__wbindgen_malloc, wasm.__wbindgen_realloc);
4353
+ const len1 = WASM_VECTOR_LEN;
4354
+ getDataViewMemory0().setInt32(arg0 + 4 * 1, len1, true);
4355
+ getDataViewMemory0().setInt32(arg0 + 4 * 0, ptr1, true);
4356
+ }
4357
+
4358
+ export function __wbg___wbindgen_in_bb933bd9e1b3bc0f(arg0, arg1) {
4359
+ const ret = getObject(arg0) in getObject(arg1);
4360
+ return ret;
4361
+ }
4362
+
4363
+ export function __wbg___wbindgen_is_bigint_cb320707dcd35f0b(arg0) {
4364
+ const ret = typeof getObject(arg0) === "bigint";
4365
+ return ret;
4366
+ }
4367
+
4368
+ export function __wbg___wbindgen_is_function_ee8a6c5833c90377(arg0) {
4369
+ const ret = typeof getObject(arg0) === "function";
4370
+ return ret;
4371
+ }
4372
+
4373
+ export function __wbg___wbindgen_is_object_c818261d21f283a4(arg0) {
4374
+ const val = getObject(arg0);
4375
+ const ret = typeof val === "object" && val !== null;
4376
+ return ret;
4377
+ }
4378
+
4379
+ export function __wbg___wbindgen_is_string_fbb76cb2940daafd(arg0) {
4380
+ const ret = typeof getObject(arg0) === "string";
4381
+ return ret;
4382
+ }
4383
+
4384
+ export function __wbg___wbindgen_is_undefined_2d472862bd29a478(arg0) {
4385
+ const ret = getObject(arg0) === undefined;
4386
+ return ret;
4300
4387
  }
4301
4388
 
4302
- export function __wbg_abort_99fc644e2c79c9fb() {
4389
+ export function __wbg___wbindgen_jsval_eq_6b13ab83478b1c50(arg0, arg1) {
4390
+ const ret = getObject(arg0) === getObject(arg1);
4391
+ return ret;
4392
+ }
4393
+
4394
+ export function __wbg___wbindgen_jsval_loose_eq_b664b38a2f582147(arg0, arg1) {
4395
+ const ret = getObject(arg0) == getObject(arg1);
4396
+ return ret;
4397
+ }
4398
+
4399
+ export function __wbg___wbindgen_number_get_a20bf9b85341449d(arg0, arg1) {
4400
+ const obj = getObject(arg1);
4401
+ const ret = typeof obj === "number" ? obj : undefined;
4402
+ getDataViewMemory0().setFloat64(arg0 + 8 * 1, isLikeNone(ret) ? 0 : ret, true);
4403
+ getDataViewMemory0().setInt32(arg0 + 4 * 0, !isLikeNone(ret), true);
4404
+ }
4405
+
4406
+ export function __wbg___wbindgen_string_get_e4f06c90489ad01b(arg0, arg1) {
4407
+ const obj = getObject(arg1);
4408
+ const ret = typeof obj === "string" ? obj : undefined;
4409
+ var ptr1 = isLikeNone(ret)
4410
+ ? 0
4411
+ : passStringToWasm0(ret, wasm.__wbindgen_malloc, wasm.__wbindgen_realloc);
4412
+ var len1 = WASM_VECTOR_LEN;
4413
+ getDataViewMemory0().setInt32(arg0 + 4 * 1, len1, true);
4414
+ getDataViewMemory0().setInt32(arg0 + 4 * 0, ptr1, true);
4415
+ }
4416
+
4417
+ export function __wbg___wbindgen_throw_b855445ff6a94295(arg0, arg1) {
4418
+ throw new Error(getStringFromWasm0(arg0, arg1));
4419
+ }
4420
+
4421
+ export function __wbg__wbg_cb_unref_2454a539ea5790d9(arg0) {
4422
+ getObject(arg0)._wbg_cb_unref();
4423
+ }
4424
+
4425
+ export function __wbg_abort_28ad55c5825b004d(arg0, arg1) {
4426
+ getObject(arg0).abort(getObject(arg1));
4427
+ }
4428
+
4429
+ export function __wbg_abort_3b256cd5ad0ac232() {
4303
4430
  return handleError(function (arg0) {
4304
4431
  getObject(arg0).abort();
4305
4432
  }, arguments);
4306
4433
  }
4307
4434
 
4308
- export function __wbg_addEventListener_dc3da056b615f634(arg0, arg1, arg2, arg3) {
4309
- getObject(arg0).addEventListener(getStringFromWasm0(arg1, arg2), getObject(arg3));
4435
+ export function __wbg_abort_e7eb059f72f9ed0c(arg0) {
4436
+ getObject(arg0).abort();
4310
4437
  }
4311
4438
 
4312
- export function __wbg_append_299d5d48292c0495() {
4313
- return handleError(function (arg0, arg1, arg2, arg3, arg4) {
4314
- getObject(arg0).append(getStringFromWasm0(arg1, arg2), getStringFromWasm0(arg3, arg4));
4315
- }, arguments);
4439
+ export function __wbg_addEventListener_dc3da056b615f634(arg0, arg1, arg2, arg3) {
4440
+ getObject(arg0).addEventListener(getStringFromWasm0(arg1, arg2), getObject(arg3));
4316
4441
  }
4317
4442
 
4318
- export function __wbg_append_8c7dd8d641a5f01b() {
4443
+ export function __wbg_append_45ddba58b0706f62() {
4319
4444
  return handleError(function (arg0, arg1, arg2, arg3, arg4) {
4320
4445
  getObject(arg0).append(getStringFromWasm0(arg1, arg2), getStringFromWasm0(arg3, arg4));
4321
4446
  }, arguments);
4322
4447
  }
4323
4448
 
4324
- export function __wbg_append_b2d1fc16de2a0e81() {
4449
+ export function __wbg_append_892c5e2d5bdd60ac() {
4325
4450
  return handleError(function (arg0, arg1, arg2, arg3, arg4, arg5) {
4326
4451
  getObject(arg0).append(
4327
4452
  getStringFromWasm0(arg1, arg2),
@@ -4331,39 +4456,40 @@ export function __wbg_append_b2d1fc16de2a0e81() {
4331
4456
  }, arguments);
4332
4457
  }
4333
4458
 
4334
- export function __wbg_append_b44785ebeb668479() {
4459
+ export function __wbg_append_b577eb3a177bc0fa() {
4460
+ return handleError(function (arg0, arg1, arg2, arg3, arg4) {
4461
+ getObject(arg0).append(getStringFromWasm0(arg1, arg2), getStringFromWasm0(arg3, arg4));
4462
+ }, arguments);
4463
+ }
4464
+
4465
+ export function __wbg_append_cb0bba4cf263a60b() {
4335
4466
  return handleError(function (arg0, arg1, arg2, arg3) {
4336
4467
  getObject(arg0).append(getStringFromWasm0(arg1, arg2), getObject(arg3));
4337
4468
  }, arguments);
4338
4469
  }
4339
4470
 
4340
- export function __wbg_arrayBuffer_d1b44c4390db422f() {
4471
+ export function __wbg_arrayBuffer_b375eccb84b4ddf3() {
4341
4472
  return handleError(function (arg0) {
4342
4473
  const ret = getObject(arg0).arrayBuffer();
4343
4474
  return addHeapObject(ret);
4344
4475
  }, arguments);
4345
4476
  }
4346
4477
 
4347
- export function __wbg_buffer_609cc3eee51ed158(arg0) {
4348
- const ret = getObject(arg0).buffer;
4349
- return addHeapObject(ret);
4350
- }
4351
-
4352
- export function __wbg_call_672a4d21634d4a24() {
4353
- return handleError(function (arg0, arg1) {
4354
- const ret = getObject(arg0).call(getObject(arg1));
4478
+ export function __wbg_call_525440f72fbfc0ea() {
4479
+ return handleError(function (arg0, arg1, arg2) {
4480
+ const ret = getObject(arg0).call(getObject(arg1), getObject(arg2));
4355
4481
  return addHeapObject(ret);
4356
4482
  }, arguments);
4357
4483
  }
4358
4484
 
4359
- export function __wbg_call_7cccdd69e0791ae2() {
4360
- return handleError(function (arg0, arg1, arg2) {
4361
- const ret = getObject(arg0).call(getObject(arg1), getObject(arg2));
4485
+ export function __wbg_call_e762c39fa8ea36bf() {
4486
+ return handleError(function (arg0, arg1) {
4487
+ const ret = getObject(arg0).call(getObject(arg1));
4362
4488
  return addHeapObject(ret);
4363
4489
  }, arguments);
4364
4490
  }
4365
4491
 
4366
- export function __wbg_cipher_8a6269e122b390ae(arg0) {
4492
+ export function __wbg_cipher_90da44fade4d7231(arg0) {
4367
4493
  const ret = getObject(arg0).cipher;
4368
4494
  return isLikeNone(ret) ? 0 : addHeapObject(ret);
4369
4495
  }
@@ -4378,7 +4504,7 @@ export function __wbg_collectionviewnodeitem_new(arg0) {
4378
4504
  return addHeapObject(ret);
4379
4505
  }
4380
4506
 
4381
- export function __wbg_createObjectStore_d2f9e1016f4d81b9() {
4507
+ export function __wbg_createObjectStore_283a43a822bf49ca() {
4382
4508
  return handleError(function (arg0, arg1, arg2, arg3) {
4383
4509
  const ret = getObject(arg0).createObjectStore(getStringFromWasm0(arg1, arg2), getObject(arg3));
4384
4510
  return addHeapObject(ret);
@@ -4390,26 +4516,33 @@ export function __wbg_crypto_574e78ad8b13b65f(arg0) {
4390
4516
  return addHeapObject(ret);
4391
4517
  }
4392
4518
 
4393
- export function __wbg_debug_e17b51583ca6a632(arg0, arg1, arg2, arg3) {
4519
+ export function __wbg_debug_e55e1461940eb14d(arg0, arg1, arg2, arg3) {
4394
4520
  console.debug(getObject(arg0), getObject(arg1), getObject(arg2), getObject(arg3));
4395
4521
  }
4396
4522
 
4397
- export function __wbg_deleteObjectStore_3f08ae00cd288224() {
4523
+ export function __wbg_deleteObjectStore_444a266b213fafcf() {
4398
4524
  return handleError(function (arg0, arg1, arg2) {
4399
4525
  getObject(arg0).deleteObjectStore(getStringFromWasm0(arg1, arg2));
4400
4526
  }, arguments);
4401
4527
  }
4402
4528
 
4403
- export function __wbg_done_769e5ede4b31c67b(arg0) {
4529
+ export function __wbg_done_2042aa2670fb1db1(arg0) {
4404
4530
  const ret = getObject(arg0).done;
4405
4531
  return ret;
4406
4532
  }
4407
4533
 
4408
- export function __wbg_entries_3265d4158b33e5dc(arg0) {
4534
+ export function __wbg_entries_e171b586f8f6bdbf(arg0) {
4409
4535
  const ret = Object.entries(getObject(arg0));
4410
4536
  return addHeapObject(ret);
4411
4537
  }
4412
4538
 
4539
+ export function __wbg_error_3e929987fcd3e155() {
4540
+ return handleError(function (arg0) {
4541
+ const ret = getObject(arg0).error;
4542
+ return isLikeNone(ret) ? 0 : addHeapObject(ret);
4543
+ }, arguments);
4544
+ }
4545
+
4413
4546
  export function __wbg_error_7534b8e9a36f1ab4(arg0, arg1) {
4414
4547
  let deferred0_0;
4415
4548
  let deferred0_1;
@@ -4422,33 +4555,26 @@ export function __wbg_error_7534b8e9a36f1ab4(arg0, arg1) {
4422
4555
  }
4423
4556
  }
4424
4557
 
4425
- export function __wbg_error_80de38b3f7cc3c3c(arg0, arg1, arg2, arg3) {
4558
+ export function __wbg_error_d8b22cf4e59a6791(arg0, arg1, arg2, arg3) {
4426
4559
  console.error(getObject(arg0), getObject(arg1), getObject(arg2), getObject(arg3));
4427
4560
  }
4428
4561
 
4429
- export function __wbg_error_ff4ddaabdfc5dbb3() {
4430
- return handleError(function (arg0) {
4431
- const ret = getObject(arg0).error;
4432
- return isLikeNone(ret) ? 0 : addHeapObject(ret);
4433
- }, arguments);
4434
- }
4435
-
4436
4562
  export function __wbg_fetch_3afbdcc7ddbf16fe(arg0) {
4437
4563
  const ret = fetch(getObject(arg0));
4438
4564
  return addHeapObject(ret);
4439
4565
  }
4440
4566
 
4441
- export function __wbg_fetch_509096533071c657(arg0, arg1) {
4567
+ export function __wbg_fetch_f8ba0e29a9d6de0d(arg0, arg1) {
4442
4568
  const ret = getObject(arg0).fetch(getObject(arg1));
4443
4569
  return addHeapObject(ret);
4444
4570
  }
4445
4571
 
4446
- export function __wbg_folder_6dfae1b1134b74f8(arg0) {
4572
+ export function __wbg_folder_1f9f19453de069bd(arg0) {
4447
4573
  const ret = getObject(arg0).folder;
4448
4574
  return isLikeNone(ret) ? 0 : addHeapObject(ret);
4449
4575
  }
4450
4576
 
4451
- export function __wbg_getFullYear_17d3c9e4db748eb7(arg0) {
4577
+ export function __wbg_getFullYear_8240d5a15191feae(arg0) {
4452
4578
  const ret = getObject(arg0).getFullYear();
4453
4579
  return ret;
4454
4580
  }
@@ -4465,19 +4591,17 @@ export function __wbg_getRandomValues_b8f5dbd5f3995a9e() {
4465
4591
  }, arguments);
4466
4592
  }
4467
4593
 
4468
- export function __wbg_getTime_46267b1c24877e30(arg0) {
4594
+ export function __wbg_getTime_14776bfb48a1bff9(arg0) {
4469
4595
  const ret = getObject(arg0).getTime();
4470
4596
  return ret;
4471
4597
  }
4472
4598
 
4473
- export function __wbg_get_67b2ba62fc30de12() {
4474
- return handleError(function (arg0, arg1) {
4475
- const ret = Reflect.get(getObject(arg0), getObject(arg1));
4476
- return addHeapObject(ret);
4477
- }, arguments);
4599
+ export function __wbg_get_7bed016f185add81(arg0, arg1) {
4600
+ const ret = getObject(arg0)[arg1 >>> 0];
4601
+ return addHeapObject(ret);
4478
4602
  }
4479
4603
 
4480
- export function __wbg_get_77a3546428c7fc7d() {
4604
+ export function __wbg_get_905bbb36d78e816c() {
4481
4605
  return handleError(function (arg0, arg1, arg2) {
4482
4606
  let deferred0_0;
4483
4607
  let deferred0_1;
@@ -4492,7 +4616,12 @@ export function __wbg_get_77a3546428c7fc7d() {
4492
4616
  }, arguments);
4493
4617
  }
4494
4618
 
4495
- export function __wbg_get_94e67783f37c82cd() {
4619
+ export function __wbg_get_access_token_fb7908159e830dff(arg0) {
4620
+ const ret = getObject(arg0).get_access_token();
4621
+ return addHeapObject(ret);
4622
+ }
4623
+
4624
+ export function __wbg_get_eb8ca7ea2e1397a3() {
4496
4625
  return handleError(function (arg0, arg1, arg2) {
4497
4626
  let deferred0_0;
4498
4627
  let deferred0_1;
@@ -4507,29 +4636,26 @@ export function __wbg_get_94e67783f37c82cd() {
4507
4636
  }, arguments);
4508
4637
  }
4509
4638
 
4510
- export function __wbg_get_b9b93047fe3cf45b(arg0, arg1) {
4511
- const ret = getObject(arg0)[arg1 >>> 0];
4512
- return addHeapObject(ret);
4513
- }
4514
-
4515
- export function __wbg_getaccesstoken_9240256d891025b6(arg0) {
4516
- const ret = getObject(arg0).get_access_token();
4517
- return addHeapObject(ret);
4639
+ export function __wbg_get_efcb449f58ec27c2() {
4640
+ return handleError(function (arg0, arg1) {
4641
+ const ret = Reflect.get(getObject(arg0), getObject(arg1));
4642
+ return addHeapObject(ret);
4643
+ }, arguments);
4518
4644
  }
4519
4645
 
4520
- export function __wbg_getwithrefkey_1dc361bd10053bfe(arg0, arg1) {
4646
+ export function __wbg_get_with_ref_key_1dc361bd10053bfe(arg0, arg1) {
4521
4647
  const ret = getObject(arg0)[getObject(arg1)];
4522
4648
  return addHeapObject(ret);
4523
4649
  }
4524
4650
 
4525
- export function __wbg_has_a5ea9117f258a0ec() {
4651
+ export function __wbg_has_787fafc980c3ccdb() {
4526
4652
  return handleError(function (arg0, arg1) {
4527
4653
  const ret = Reflect.has(getObject(arg0), getObject(arg1));
4528
4654
  return ret;
4529
4655
  }, arguments);
4530
4656
  }
4531
4657
 
4532
- export function __wbg_headers_9cb51cfd2ac780a4(arg0) {
4658
+ export function __wbg_headers_b87d7eaba61c3278(arg0) {
4533
4659
  const ret = getObject(arg0).headers;
4534
4660
  return addHeapObject(ret);
4535
4661
  }
@@ -4539,25 +4665,25 @@ export function __wbg_incomingmessage_new(arg0) {
4539
4665
  return addHeapObject(ret);
4540
4666
  }
4541
4667
 
4542
- export function __wbg_indexedDB_b1f49280282046f8() {
4668
+ export function __wbg_indexedDB_62bfbbd55ec74b14() {
4543
4669
  return handleError(function (arg0) {
4544
4670
  const ret = getObject(arg0).indexedDB;
4545
4671
  return isLikeNone(ret) ? 0 : addHeapObject(ret);
4546
4672
  }, arguments);
4547
4673
  }
4548
4674
 
4549
- export function __wbg_indexedDB_f6b47b0dc333fd2f() {
4675
+ export function __wbg_indexedDB_8b464318fe56681e() {
4550
4676
  return handleError(function (arg0) {
4551
4677
  const ret = getObject(arg0).indexedDB;
4552
4678
  return isLikeNone(ret) ? 0 : addHeapObject(ret);
4553
4679
  }, arguments);
4554
4680
  }
4555
4681
 
4556
- export function __wbg_info_033d8b8a0838f1d3(arg0, arg1, arg2, arg3) {
4682
+ export function __wbg_info_68cd5b51ef7e5137(arg0, arg1, arg2, arg3) {
4557
4683
  console.info(getObject(arg0), getObject(arg1), getObject(arg2), getObject(arg3));
4558
4684
  }
4559
4685
 
4560
- export function __wbg_instanceof_ArrayBuffer_e14585432e3737fc(arg0) {
4686
+ export function __wbg_instanceof_ArrayBuffer_70beb1189ca63b38(arg0) {
4561
4687
  let result;
4562
4688
  try {
4563
4689
  result = getObject(arg0) instanceof ArrayBuffer;
@@ -4568,7 +4694,7 @@ export function __wbg_instanceof_ArrayBuffer_e14585432e3737fc(arg0) {
4568
4694
  return ret;
4569
4695
  }
4570
4696
 
4571
- export function __wbg_instanceof_DomException_ed1ccb7aaf39034c(arg0) {
4697
+ export function __wbg_instanceof_DomException_83b15e7b042a0b1a(arg0) {
4572
4698
  let result;
4573
4699
  try {
4574
4700
  result = getObject(arg0) instanceof DOMException;
@@ -4579,7 +4705,7 @@ export function __wbg_instanceof_DomException_ed1ccb7aaf39034c(arg0) {
4579
4705
  return ret;
4580
4706
  }
4581
4707
 
4582
- export function __wbg_instanceof_IdbDatabase_a3ef009ca00059f9(arg0) {
4708
+ export function __wbg_instanceof_IdbDatabase_fcf75ffeeec3ec8c(arg0) {
4583
4709
  let result;
4584
4710
  try {
4585
4711
  result = getObject(arg0) instanceof IDBDatabase;
@@ -4590,7 +4716,7 @@ export function __wbg_instanceof_IdbDatabase_a3ef009ca00059f9(arg0) {
4590
4716
  return ret;
4591
4717
  }
4592
4718
 
4593
- export function __wbg_instanceof_IdbOpenDbRequest_a3416e156c9db893(arg0) {
4719
+ export function __wbg_instanceof_IdbOpenDbRequest_08e4929084e51476(arg0) {
4594
4720
  let result;
4595
4721
  try {
4596
4722
  result = getObject(arg0) instanceof IDBOpenDBRequest;
@@ -4601,7 +4727,7 @@ export function __wbg_instanceof_IdbOpenDbRequest_a3416e156c9db893(arg0) {
4601
4727
  return ret;
4602
4728
  }
4603
4729
 
4604
- export function __wbg_instanceof_IdbRequest_4813c3f207666aa4(arg0) {
4730
+ export function __wbg_instanceof_IdbRequest_26754883a3cc8f81(arg0) {
4605
4731
  let result;
4606
4732
  try {
4607
4733
  result = getObject(arg0) instanceof IDBRequest;
@@ -4612,7 +4738,7 @@ export function __wbg_instanceof_IdbRequest_4813c3f207666aa4(arg0) {
4612
4738
  return ret;
4613
4739
  }
4614
4740
 
4615
- export function __wbg_instanceof_Map_f3469ce2244d2430(arg0) {
4741
+ export function __wbg_instanceof_Map_8579b5e2ab5437c7(arg0) {
4616
4742
  let result;
4617
4743
  try {
4618
4744
  result = getObject(arg0) instanceof Map;
@@ -4623,7 +4749,7 @@ export function __wbg_instanceof_Map_f3469ce2244d2430(arg0) {
4623
4749
  return ret;
4624
4750
  }
4625
4751
 
4626
- export function __wbg_instanceof_Response_f2cc20d9f7dfd644(arg0) {
4752
+ export function __wbg_instanceof_Response_f4f3e87e07f3135c(arg0) {
4627
4753
  let result;
4628
4754
  try {
4629
4755
  result = getObject(arg0) instanceof Response;
@@ -4634,7 +4760,7 @@ export function __wbg_instanceof_Response_f2cc20d9f7dfd644(arg0) {
4634
4760
  return ret;
4635
4761
  }
4636
4762
 
4637
- export function __wbg_instanceof_Uint8Array_17156bcf118086a9(arg0) {
4763
+ export function __wbg_instanceof_Uint8Array_20c8e73002f7af98(arg0) {
4638
4764
  let result;
4639
4765
  try {
4640
4766
  result = getObject(arg0) instanceof Uint8Array;
@@ -4645,7 +4771,7 @@ export function __wbg_instanceof_Uint8Array_17156bcf118086a9(arg0) {
4645
4771
  return ret;
4646
4772
  }
4647
4773
 
4648
- export function __wbg_instanceof_Window_def73ea0955fc569(arg0) {
4774
+ export function __wbg_instanceof_Window_4846dbb3de56c84c(arg0) {
4649
4775
  let result;
4650
4776
  try {
4651
4777
  result = getObject(arg0) instanceof Window;
@@ -4656,7 +4782,7 @@ export function __wbg_instanceof_Window_def73ea0955fc569(arg0) {
4656
4782
  return ret;
4657
4783
  }
4658
4784
 
4659
- export function __wbg_instanceof_WorkerGlobalScope_dbdbdea7e3b56493(arg0) {
4785
+ export function __wbg_instanceof_WorkerGlobalScope_e31f49b6d33fcadd(arg0) {
4660
4786
  let result;
4661
4787
  try {
4662
4788
  result = getObject(arg0) instanceof WorkerGlobalScope;
@@ -4672,46 +4798,46 @@ export function __wbg_ipcclientsubscription_new(arg0) {
4672
4798
  return addHeapObject(ret);
4673
4799
  }
4674
4800
 
4675
- export function __wbg_isArray_a1eab7e0d067391b(arg0) {
4801
+ export function __wbg_isArray_96e0af9891d0945d(arg0) {
4676
4802
  const ret = Array.isArray(getObject(arg0));
4677
4803
  return ret;
4678
4804
  }
4679
4805
 
4680
- export function __wbg_isSafeInteger_343e2beeeece1bb0(arg0) {
4806
+ export function __wbg_isSafeInteger_d216eda7911dde36(arg0) {
4681
4807
  const ret = Number.isSafeInteger(getObject(arg0));
4682
4808
  return ret;
4683
4809
  }
4684
4810
 
4685
- export function __wbg_iterator_9a24c88df860dc65() {
4811
+ export function __wbg_iterator_e5822695327a3c39() {
4686
4812
  const ret = Symbol.iterator;
4687
4813
  return addHeapObject(ret);
4688
4814
  }
4689
4815
 
4690
- export function __wbg_length_a446193dc22c12f8(arg0) {
4816
+ export function __wbg_length_69bca3cb64fc8748(arg0) {
4691
4817
  const ret = getObject(arg0).length;
4692
4818
  return ret;
4693
4819
  }
4694
4820
 
4695
- export function __wbg_length_e2d2a49132c1b256(arg0) {
4821
+ export function __wbg_length_cdd215e10d9dd507(arg0) {
4696
4822
  const ret = getObject(arg0).length;
4697
4823
  return ret;
4698
4824
  }
4699
4825
 
4700
- export function __wbg_list_005a77213c99fcd3() {
4826
+ export function __wbg_list_3ff9e942e0036bfb() {
4701
4827
  return handleError(function (arg0) {
4702
4828
  const ret = getObject(arg0).list();
4703
4829
  return addHeapObject(ret);
4704
4830
  }, arguments);
4705
4831
  }
4706
4832
 
4707
- export function __wbg_list_b0cae842e3a13e2c() {
4833
+ export function __wbg_list_bdb6eec69b7ea3d2() {
4708
4834
  return handleError(function (arg0) {
4709
4835
  const ret = getObject(arg0).list();
4710
4836
  return addHeapObject(ret);
4711
4837
  }, arguments);
4712
4838
  }
4713
4839
 
4714
- export function __wbg_log_cad59bb680daec67(arg0, arg1, arg2, arg3) {
4840
+ export function __wbg_log_45eb3a49e7cdcb64(arg0, arg1, arg2, arg3) {
4715
4841
  console.log(getObject(arg0), getObject(arg1), getObject(arg2), getObject(arg3));
4716
4842
  }
4717
4843
 
@@ -4720,7 +4846,7 @@ export function __wbg_msCrypto_a61aeb35a24c1329(arg0) {
4720
4846
  return addHeapObject(ret);
4721
4847
  }
4722
4848
 
4723
- export function __wbg_name_f2d27098bfd843e7(arg0, arg1) {
4849
+ export function __wbg_name_3a33ad25b892b2dd(arg0, arg1) {
4724
4850
  const ret = getObject(arg1).name;
4725
4851
  const ptr1 = passStringToWasm0(ret, wasm.__wbindgen_malloc, wasm.__wbindgen_realloc);
4726
4852
  const len1 = WASM_VECTOR_LEN;
@@ -4728,26 +4854,36 @@ export function __wbg_name_f2d27098bfd843e7(arg0, arg1) {
4728
4854
  getDataViewMemory0().setInt32(arg0 + 4 * 0, ptr1, true);
4729
4855
  }
4730
4856
 
4731
- export function __wbg_new0_f788a2397c7ca929() {
4857
+ export function __wbg_new_0_f9740686d739025c() {
4732
4858
  const ret = new Date();
4733
4859
  return addHeapObject(ret);
4734
4860
  }
4735
4861
 
4736
- export function __wbg_new_018dcc2d6c8c2f6a() {
4862
+ export function __wbg_new_1acc0b6eea89d040() {
4863
+ const ret = new Object();
4864
+ return addHeapObject(ret);
4865
+ }
4866
+
4867
+ export function __wbg_new_2531773dac38ebb3() {
4737
4868
  return handleError(function () {
4738
- const ret = new Headers();
4869
+ const ret = new AbortController();
4739
4870
  return addHeapObject(ret);
4740
4871
  }, arguments);
4741
4872
  }
4742
4873
 
4743
- export function __wbg_new_23a2665fac83c611(arg0, arg1) {
4874
+ export function __wbg_new_3c3d849046688a66(arg0, arg1) {
4744
4875
  try {
4745
4876
  var state0 = { a: arg0, b: arg1 };
4746
4877
  var cb0 = (arg0, arg1) => {
4747
4878
  const a = state0.a;
4748
4879
  state0.a = 0;
4749
4880
  try {
4750
- return __wbg_adapter_357(a, state0.b, arg0, arg1);
4881
+ return wasm_bindgen__convert__closures_____invoke__h4096c3b930b983e7(
4882
+ a,
4883
+ state0.b,
4884
+ arg0,
4885
+ arg1,
4886
+ );
4751
4887
  } finally {
4752
4888
  state0.a = a;
4753
4889
  }
@@ -4759,19 +4895,21 @@ export function __wbg_new_23a2665fac83c611(arg0, arg1) {
4759
4895
  }
4760
4896
  }
4761
4897
 
4762
- export function __wbg_new_405e22f390576ce2() {
4763
- const ret = new Object();
4898
+ export function __wbg_new_5a79be3ab53b8aa5(arg0) {
4899
+ const ret = new Uint8Array(getObject(arg0));
4764
4900
  return addHeapObject(ret);
4765
4901
  }
4766
4902
 
4767
- export function __wbg_new_5e0be73521bc8c17() {
4903
+ export function __wbg_new_68651c719dcda04e() {
4768
4904
  const ret = new Map();
4769
4905
  return addHeapObject(ret);
4770
4906
  }
4771
4907
 
4772
- export function __wbg_new_78feb108b6472713() {
4773
- const ret = new Array();
4774
- return addHeapObject(ret);
4908
+ export function __wbg_new_6f694bb0585846e0() {
4909
+ return handleError(function () {
4910
+ const ret = new FormData();
4911
+ return addHeapObject(ret);
4912
+ }, arguments);
4775
4913
  }
4776
4914
 
4777
4915
  export function __wbg_new_8a6f238a6ece86ea() {
@@ -4779,28 +4917,21 @@ export function __wbg_new_8a6f238a6ece86ea() {
4779
4917
  return addHeapObject(ret);
4780
4918
  }
4781
4919
 
4782
- export function __wbg_new_9fd39a253424609a() {
4920
+ export function __wbg_new_9edf9838a2def39c() {
4783
4921
  return handleError(function () {
4784
- const ret = new FormData();
4922
+ const ret = new Headers();
4785
4923
  return addHeapObject(ret);
4786
4924
  }, arguments);
4787
4925
  }
4788
4926
 
4789
- export function __wbg_new_a12002a7f91c75be(arg0) {
4790
- const ret = new Uint8Array(getObject(arg0));
4791
- return addHeapObject(ret);
4792
- }
4793
-
4794
- export function __wbg_new_c68d7209be747379(arg0, arg1) {
4927
+ export function __wbg_new_a7442b4b19c1a356(arg0, arg1) {
4795
4928
  const ret = new Error(getStringFromWasm0(arg0, arg1));
4796
4929
  return addHeapObject(ret);
4797
4930
  }
4798
4931
 
4799
- export function __wbg_new_e25e5aab09ff45db() {
4800
- return handleError(function () {
4801
- const ret = new AbortController();
4802
- return addHeapObject(ret);
4803
- }, arguments);
4932
+ export function __wbg_new_e17d9f43105b08be() {
4933
+ const ret = new Array();
4934
+ return addHeapObject(ret);
4804
4935
  }
4805
4936
 
4806
4937
  export function __wbg_new_f24b6d53abe5bc82(arg0, arg1) {
@@ -4816,72 +4947,72 @@ export function __wbg_new_f24b6d53abe5bc82(arg0, arg1) {
4816
4947
  }
4817
4948
  }
4818
4949
 
4819
- export function __wbg_newnoargs_105ed471475aaf50(arg0, arg1) {
4820
- const ret = new Function(getStringFromWasm0(arg0, arg1));
4950
+ export function __wbg_new_from_slice_92f4d78ca282a2d2(arg0, arg1) {
4951
+ const ret = new Uint8Array(getArrayU8FromWasm0(arg0, arg1));
4821
4952
  return addHeapObject(ret);
4822
4953
  }
4823
4954
 
4824
- export function __wbg_newwithbyteoffsetandlength_d97e637ebe145a9a(arg0, arg1, arg2) {
4825
- const ret = new Uint8Array(getObject(arg0), arg1 >>> 0, arg2 >>> 0);
4955
+ export function __wbg_new_no_args_ee98eee5275000a4(arg0, arg1) {
4956
+ const ret = new Function(getStringFromWasm0(arg0, arg1));
4826
4957
  return addHeapObject(ret);
4827
4958
  }
4828
4959
 
4829
- export function __wbg_newwithlength_a381634e90c276d4(arg0) {
4960
+ export function __wbg_new_with_length_01aa0dc35aa13543(arg0) {
4830
4961
  const ret = new Uint8Array(arg0 >>> 0);
4831
4962
  return addHeapObject(ret);
4832
4963
  }
4833
4964
 
4834
- export function __wbg_newwithstrandinit_06c535e0a867c635() {
4965
+ export function __wbg_new_with_str_and_init_0ae7728b6ec367b1() {
4835
4966
  return handleError(function (arg0, arg1, arg2) {
4836
4967
  const ret = new Request(getStringFromWasm0(arg0, arg1), getObject(arg2));
4837
4968
  return addHeapObject(ret);
4838
4969
  }, arguments);
4839
4970
  }
4840
4971
 
4841
- export function __wbg_newwithu8arraysequenceandoptions_068570c487f69127() {
4972
+ export function __wbg_new_with_u8_array_sequence_and_options_0c1d0bd56d93d25a() {
4842
4973
  return handleError(function (arg0, arg1) {
4843
4974
  const ret = new Blob(getObject(arg0), getObject(arg1));
4844
4975
  return addHeapObject(ret);
4845
4976
  }, arguments);
4846
4977
  }
4847
4978
 
4848
- export function __wbg_next_25feadfc0913fea9(arg0) {
4849
- const ret = getObject(arg0).next;
4850
- return addHeapObject(ret);
4851
- }
4852
-
4853
- export function __wbg_next_6574e1a8a62d1055() {
4979
+ export function __wbg_next_020810e0ae8ebcb0() {
4854
4980
  return handleError(function (arg0) {
4855
4981
  const ret = getObject(arg0).next();
4856
4982
  return addHeapObject(ret);
4857
4983
  }, arguments);
4858
4984
  }
4859
4985
 
4986
+ export function __wbg_next_2c826fe5dfec6b6a(arg0) {
4987
+ const ret = getObject(arg0).next;
4988
+ return addHeapObject(ret);
4989
+ }
4990
+
4860
4991
  export function __wbg_node_905d3e251edff8a2(arg0) {
4861
4992
  const ret = getObject(arg0).node;
4862
4993
  return addHeapObject(ret);
4863
4994
  }
4864
4995
 
4865
- export function __wbg_now_d18023d54d4e5500(arg0) {
4996
+ export function __wbg_now_f5ba683d8ce2c571(arg0) {
4866
4997
  const ret = getObject(arg0).now();
4867
4998
  return ret;
4868
4999
  }
4869
5000
 
4870
- export function __wbg_open_e0c0b2993eb596e1() {
5001
+ export function __wbg_open_9d8c51d122a5a6ea() {
4871
5002
  return handleError(function (arg0, arg1, arg2, arg3) {
4872
5003
  const ret = getObject(arg0).open(getStringFromWasm0(arg1, arg2), arg3 >>> 0);
4873
5004
  return addHeapObject(ret);
4874
5005
  }, arguments);
4875
5006
  }
4876
5007
 
4877
- export function __wbg_parse_def2e24ef1252aff() {
5008
+ export function __wbg_parse_2a704d6b78abb2b8() {
4878
5009
  return handleError(function (arg0, arg1) {
4879
5010
  const ret = JSON.parse(getStringFromWasm0(arg0, arg1));
4880
5011
  return addHeapObject(ret);
4881
5012
  }, arguments);
4882
5013
  }
4883
5014
 
4884
- export function __wbg_preventDefault_c2314fd813c02b3c(arg0) {
5015
+ export function __wbg_preventDefault_1f362670ce7ef430(arg0) {
4885
5016
  getObject(arg0).preventDefault();
4886
5017
  }
4887
5018
 
@@ -4890,27 +5021,31 @@ export function __wbg_process_dc0fbacc7c1c06f7(arg0) {
4890
5021
  return addHeapObject(ret);
4891
5022
  }
4892
5023
 
4893
- export function __wbg_push_737cfc8c1432c2c6(arg0, arg1) {
4894
- const ret = getObject(arg0).push(getObject(arg1));
4895
- return ret;
5024
+ export function __wbg_prototypesetcall_2a6620b6922694b2(arg0, arg1, arg2) {
5025
+ Uint8Array.prototype.set.call(getArrayU8FromWasm0(arg0, arg1), getObject(arg2));
4896
5026
  }
4897
5027
 
4898
- export function __wbg_queueMicrotask_97d92b4fcc8a61c5(arg0) {
4899
- queueMicrotask(getObject(arg0));
5028
+ export function __wbg_push_df81a39d04db858c(arg0, arg1) {
5029
+ const ret = getObject(arg0).push(getObject(arg1));
5030
+ return ret;
4900
5031
  }
4901
5032
 
4902
- export function __wbg_queueMicrotask_d3219def82552485(arg0) {
5033
+ export function __wbg_queueMicrotask_34d692c25c47d05b(arg0) {
4903
5034
  const ret = getObject(arg0).queueMicrotask;
4904
5035
  return addHeapObject(ret);
4905
5036
  }
4906
5037
 
5038
+ export function __wbg_queueMicrotask_9d76cacb20c84d58(arg0) {
5039
+ queueMicrotask(getObject(arg0));
5040
+ }
5041
+
4907
5042
  export function __wbg_randomFillSync_ac0988aba3254290() {
4908
5043
  return handleError(function (arg0, arg1) {
4909
5044
  getObject(arg0).randomFillSync(takeObject(arg1));
4910
5045
  }, arguments);
4911
5046
  }
4912
5047
 
4913
- export function __wbg_remove_4817686ccc51caea() {
5048
+ export function __wbg_remove_33695adbdbc52a3e() {
4914
5049
  return handleError(function (arg0, arg1, arg2) {
4915
5050
  let deferred0_0;
4916
5051
  let deferred0_1;
@@ -4925,7 +5060,7 @@ export function __wbg_remove_4817686ccc51caea() {
4925
5060
  }, arguments);
4926
5061
  }
4927
5062
 
4928
- export function __wbg_remove_d197cb44124071d6() {
5063
+ export function __wbg_remove_dc431ea3d4bc3b57() {
4929
5064
  return handleError(function (arg0, arg1, arg2) {
4930
5065
  let deferred0_0;
4931
5066
  let deferred0_1;
@@ -4947,12 +5082,12 @@ export function __wbg_require_60cc747a6bc5215a() {
4947
5082
  }, arguments);
4948
5083
  }
4949
5084
 
4950
- export function __wbg_resolve_4851785c9c5f573d(arg0) {
5085
+ export function __wbg_resolve_caf97c30b83f7053(arg0) {
4951
5086
  const ret = Promise.resolve(getObject(arg0));
4952
5087
  return addHeapObject(ret);
4953
5088
  }
4954
5089
 
4955
- export function __wbg_result_f29afabdf2c05826() {
5090
+ export function __wbg_result_25e75004b82b9830() {
4956
5091
  return handleError(function (arg0) {
4957
5092
  const ret = getObject(arg0).result;
4958
5093
  return addHeapObject(ret);
@@ -4971,15 +5106,7 @@ export function __wbg_setTimeout_ca12ead8b48245e2(arg0, arg1) {
4971
5106
  return addHeapObject(ret);
4972
5107
  }
4973
5108
 
4974
- export function __wbg_set_37837023f3d740e8(arg0, arg1, arg2) {
4975
- getObject(arg0)[arg1 >>> 0] = takeObject(arg2);
4976
- }
4977
-
4978
- export function __wbg_set_3f1d0b984ed272ed(arg0, arg1, arg2) {
4979
- getObject(arg0)[takeObject(arg1)] = takeObject(arg2);
4980
- }
4981
-
4982
- export function __wbg_set_595fa1ff8502ba96() {
5109
+ export function __wbg_set_33fa6c07f568d210() {
4983
5110
  return handleError(function (arg0, arg1, arg2, arg3) {
4984
5111
  let deferred0_0;
4985
5112
  let deferred0_1;
@@ -4994,11 +5121,11 @@ export function __wbg_set_595fa1ff8502ba96() {
4994
5121
  }, arguments);
4995
5122
  }
4996
5123
 
4997
- export function __wbg_set_65595bdd868b3009(arg0, arg1, arg2) {
4998
- getObject(arg0).set(getObject(arg1), arg2 >>> 0);
5124
+ export function __wbg_set_3f1d0b984ed272ed(arg0, arg1, arg2) {
5125
+ getObject(arg0)[takeObject(arg1)] = takeObject(arg2);
4999
5126
  }
5000
5127
 
5001
- export function __wbg_set_66f7f1ab8b1b0899() {
5128
+ export function __wbg_set_9006732dd4d65e3c() {
5002
5129
  return handleError(function (arg0, arg1, arg2, arg3) {
5003
5130
  let deferred0_0;
5004
5131
  let deferred0_1;
@@ -5013,32 +5140,36 @@ export function __wbg_set_66f7f1ab8b1b0899() {
5013
5140
  }, arguments);
5014
5141
  }
5015
5142
 
5016
- export function __wbg_set_8fc6bf8a5b1071d1(arg0, arg1, arg2) {
5143
+ export function __wbg_set_907fb406c34a251d(arg0, arg1, arg2) {
5017
5144
  const ret = getObject(arg0).set(getObject(arg1), getObject(arg2));
5018
5145
  return addHeapObject(ret);
5019
5146
  }
5020
5147
 
5021
- export function __wbg_setbody_5923b78a95eedf29(arg0, arg1) {
5148
+ export function __wbg_set_body_3c365989753d61f4(arg0, arg1) {
5022
5149
  getObject(arg0).body = getObject(arg1);
5023
5150
  }
5024
5151
 
5025
- export function __wbg_setcredentials_c3a22f1cd105a2c6(arg0, arg1) {
5152
+ export function __wbg_set_c213c871859d6500(arg0, arg1, arg2) {
5153
+ getObject(arg0)[arg1 >>> 0] = takeObject(arg2);
5154
+ }
5155
+
5156
+ export function __wbg_set_credentials_f621cd2d85c0c228(arg0, arg1) {
5026
5157
  getObject(arg0).credentials = __wbindgen_enum_RequestCredentials[arg1];
5027
5158
  }
5028
5159
 
5029
- export function __wbg_setheaders_834c0bdb6a8949ad(arg0, arg1) {
5160
+ export function __wbg_set_headers_6926da238cd32ee4(arg0, arg1) {
5030
5161
  getObject(arg0).headers = getObject(arg1);
5031
5162
  }
5032
5163
 
5033
- export function __wbg_setmethod_3c5280fe5d890842(arg0, arg1, arg2) {
5164
+ export function __wbg_set_method_c02d8cbbe204ac2d(arg0, arg1, arg2) {
5034
5165
  getObject(arg0).method = getStringFromWasm0(arg1, arg2);
5035
5166
  }
5036
5167
 
5037
- export function __wbg_setmode_5dc300b865044b65(arg0, arg1) {
5168
+ export function __wbg_set_mode_52ef73cfa79639cb(arg0, arg1) {
5038
5169
  getObject(arg0).mode = __wbindgen_enum_RequestMode[arg1];
5039
5170
  }
5040
5171
 
5041
- export function __wbg_setname_c0e2d6f348c746f4(arg0, arg1, arg2) {
5172
+ export function __wbg_set_name_c0e2d6f348c746f4(arg0, arg1, arg2) {
5042
5173
  let deferred0_0;
5043
5174
  let deferred0_1;
5044
5175
  try {
@@ -5050,27 +5181,27 @@ export function __wbg_setname_c0e2d6f348c746f4(arg0, arg1, arg2) {
5050
5181
  }
5051
5182
  }
5052
5183
 
5053
- export function __wbg_setonerror_d7e3056cc6e56085(arg0, arg1) {
5184
+ export function __wbg_set_onerror_dc82fea584ffccaa(arg0, arg1) {
5054
5185
  getObject(arg0).onerror = getObject(arg1);
5055
5186
  }
5056
5187
 
5057
- export function __wbg_setonsuccess_afa464ee777a396d(arg0, arg1) {
5188
+ export function __wbg_set_onsuccess_f367d002b462109e(arg0, arg1) {
5058
5189
  getObject(arg0).onsuccess = getObject(arg1);
5059
5190
  }
5060
5191
 
5061
- export function __wbg_setonupgradeneeded_fcf7ce4f2eb0cb5f(arg0, arg1) {
5192
+ export function __wbg_set_onupgradeneeded_0a519a73284a1418(arg0, arg1) {
5062
5193
  getObject(arg0).onupgradeneeded = getObject(arg1);
5063
5194
  }
5064
5195
 
5065
- export function __wbg_setsignal_75b21ef3a81de905(arg0, arg1) {
5196
+ export function __wbg_set_signal_dda2cf7ccb6bee0f(arg0, arg1) {
5066
5197
  getObject(arg0).signal = getObject(arg1);
5067
5198
  }
5068
5199
 
5069
- export function __wbg_settype_39ed370d3edd403c(arg0, arg1, arg2) {
5200
+ export function __wbg_set_type_63fa4c18251f6545(arg0, arg1, arg2) {
5070
5201
  getObject(arg0).type = getStringFromWasm0(arg1, arg2);
5071
5202
  }
5072
5203
 
5073
- export function __wbg_setvariant_d1d41b778dfe9c17(arg0, arg1, arg2) {
5204
+ export function __wbg_set_variant_d1d41b778dfe9c17(arg0, arg1, arg2) {
5074
5205
  let deferred0_0;
5075
5206
  let deferred0_1;
5076
5207
  try {
@@ -5082,7 +5213,7 @@ export function __wbg_setvariant_d1d41b778dfe9c17(arg0, arg1, arg2) {
5082
5213
  }
5083
5214
  }
5084
5215
 
5085
- export function __wbg_signal_aaf9ad74119f20a4(arg0) {
5216
+ export function __wbg_signal_4db5aa055bf9eb9a(arg0) {
5086
5217
  const ret = getObject(arg0).signal;
5087
5218
  return addHeapObject(ret);
5088
5219
  }
@@ -5095,22 +5226,22 @@ export function __wbg_stack_0ed75d68575b0f3c(arg0, arg1) {
5095
5226
  getDataViewMemory0().setInt32(arg0 + 4 * 0, ptr1, true);
5096
5227
  }
5097
5228
 
5098
- export function __wbg_static_accessor_GLOBAL_88a902d13a557d07() {
5229
+ export function __wbg_static_accessor_GLOBAL_89e1d9ac6a1b250e() {
5099
5230
  const ret = typeof global === "undefined" ? null : global;
5100
5231
  return isLikeNone(ret) ? 0 : addHeapObject(ret);
5101
5232
  }
5102
5233
 
5103
- export function __wbg_static_accessor_GLOBAL_THIS_56578be7e9f832b0() {
5234
+ export function __wbg_static_accessor_GLOBAL_THIS_8b530f326a9e48ac() {
5104
5235
  const ret = typeof globalThis === "undefined" ? null : globalThis;
5105
5236
  return isLikeNone(ret) ? 0 : addHeapObject(ret);
5106
5237
  }
5107
5238
 
5108
- export function __wbg_static_accessor_SELF_37c5d418e4bf5819() {
5239
+ export function __wbg_static_accessor_SELF_6fdf4b64710cc91b() {
5109
5240
  const ret = typeof self === "undefined" ? null : self;
5110
5241
  return isLikeNone(ret) ? 0 : addHeapObject(ret);
5111
5242
  }
5112
5243
 
5113
- export function __wbg_static_accessor_WINDOW_5de37043a91a9c40() {
5244
+ export function __wbg_static_accessor_WINDOW_b45bfc5a37f6cfa2() {
5114
5245
  const ret = typeof window === "undefined" ? null : window;
5115
5246
  return isLikeNone(ret) ? 0 : addHeapObject(ret);
5116
5247
  }
@@ -5120,51 +5251,51 @@ export function __wbg_static_accessor_performance_da77b3a901a72934() {
5120
5251
  return addHeapObject(ret);
5121
5252
  }
5122
5253
 
5123
- export function __wbg_status_f6360336ca686bf0(arg0) {
5254
+ export function __wbg_status_de7eed5a7a5bfd5d(arg0) {
5124
5255
  const ret = getObject(arg0).status;
5125
5256
  return ret;
5126
5257
  }
5127
5258
 
5128
- export function __wbg_stringify_f7ed6987935b4a24() {
5259
+ export function __wbg_stringify_b5fb28f6465d9c3e() {
5129
5260
  return handleError(function (arg0) {
5130
5261
  const ret = JSON.stringify(getObject(arg0));
5131
5262
  return addHeapObject(ret);
5132
5263
  }, arguments);
5133
5264
  }
5134
5265
 
5135
- export function __wbg_subarray_aa9065fa9dc5df96(arg0, arg1, arg2) {
5266
+ export function __wbg_subarray_480600f3d6a9f26c(arg0, arg1, arg2) {
5136
5267
  const ret = getObject(arg0).subarray(arg1 >>> 0, arg2 >>> 0);
5137
5268
  return addHeapObject(ret);
5138
5269
  }
5139
5270
 
5140
- export function __wbg_target_0a62d9d79a2a1ede(arg0) {
5271
+ export function __wbg_target_1447f5d3a6fa6fe0(arg0) {
5141
5272
  const ret = getObject(arg0).target;
5142
5273
  return isLikeNone(ret) ? 0 : addHeapObject(ret);
5143
5274
  }
5144
5275
 
5145
- export function __wbg_text_7805bea50de2af49() {
5276
+ export function __wbg_text_dc33c15c17bdfb52() {
5146
5277
  return handleError(function (arg0) {
5147
5278
  const ret = getObject(arg0).text();
5148
5279
  return addHeapObject(ret);
5149
5280
  }, arguments);
5150
5281
  }
5151
5282
 
5152
- export function __wbg_then_44b73946d2fb3e7d(arg0, arg1) {
5283
+ export function __wbg_then_4f46f6544e6b4a28(arg0, arg1) {
5153
5284
  const ret = getObject(arg0).then(getObject(arg1));
5154
5285
  return addHeapObject(ret);
5155
5286
  }
5156
5287
 
5157
- export function __wbg_then_48b406749878a531(arg0, arg1, arg2) {
5288
+ export function __wbg_then_70d05cf780a18d77(arg0, arg1, arg2) {
5158
5289
  const ret = getObject(arg0).then(getObject(arg1), getObject(arg2));
5159
5290
  return addHeapObject(ret);
5160
5291
  }
5161
5292
 
5162
- export function __wbg_transaction_e713aa7b07ccaedd(arg0) {
5293
+ export function __wbg_transaction_9fb8349a0a81725c(arg0) {
5163
5294
  const ret = getObject(arg0).transaction;
5164
5295
  return isLikeNone(ret) ? 0 : addHeapObject(ret);
5165
5296
  }
5166
5297
 
5167
- export function __wbg_url_ae10c34ca209681d(arg0, arg1) {
5298
+ export function __wbg_url_b36d2a5008eb056f(arg0, arg1) {
5168
5299
  const ret = getObject(arg1).url;
5169
5300
  const ptr1 = passStringToWasm0(ret, wasm.__wbindgen_malloc, wasm.__wbindgen_realloc);
5170
5301
  const len1 = WASM_VECTOR_LEN;
@@ -5172,7 +5303,7 @@ export function __wbg_url_ae10c34ca209681d(arg0, arg1) {
5172
5303
  getDataViewMemory0().setInt32(arg0 + 4 * 0, ptr1, true);
5173
5304
  }
5174
5305
 
5175
- export function __wbg_value_cd1ffa7b1ab794f1(arg0) {
5306
+ export function __wbg_value_692627309814bb8c(arg0) {
5176
5307
  const ret = getObject(arg0).value;
5177
5308
  return addHeapObject(ret);
5178
5309
  }
@@ -5182,150 +5313,116 @@ export function __wbg_versions_c01dfd4722a88165(arg0) {
5182
5313
  return addHeapObject(ret);
5183
5314
  }
5184
5315
 
5185
- export function __wbg_warn_aaf1f4664a035bd6(arg0, arg1, arg2, arg3) {
5316
+ export function __wbg_warn_8f5b5437666d0885(arg0, arg1, arg2, arg3) {
5186
5317
  console.warn(getObject(arg0), getObject(arg1), getObject(arg2), getObject(arg3));
5187
5318
  }
5188
5319
 
5189
- export function __wbindgen_array_new() {
5190
- const ret = [];
5320
+ export function __wbindgen_cast_2241b6af4c4b2941(arg0, arg1) {
5321
+ // Cast intrinsic for `Ref(String) -> Externref`.
5322
+ const ret = getStringFromWasm0(arg0, arg1);
5191
5323
  return addHeapObject(ret);
5192
5324
  }
5193
5325
 
5194
- export function __wbindgen_array_push(arg0, arg1) {
5195
- getObject(arg0).push(takeObject(arg1));
5196
- }
5197
-
5198
- export function __wbindgen_as_number(arg0) {
5199
- const ret = +getObject(arg0);
5200
- return ret;
5201
- }
5202
-
5203
- export function __wbindgen_bigint_from_i64(arg0) {
5204
- const ret = arg0;
5326
+ export function __wbindgen_cast_36265b4dca1d434b(arg0, arg1) {
5327
+ // Cast intrinsic for `Closure(Closure { dtor_idx: 268, function: Function { arguments: [], shim_idx: 269, ret: Unit, inner_ret: Some(Unit) }, mutable: true }) -> Externref`.
5328
+ const ret = makeMutClosure(
5329
+ arg0,
5330
+ arg1,
5331
+ wasm.wasm_bindgen__closure__destroy__h04ff7fddf688fec6,
5332
+ wasm_bindgen__convert__closures_____invoke__h76c71c1158b6af01,
5333
+ );
5205
5334
  return addHeapObject(ret);
5206
5335
  }
5207
5336
 
5208
- export function __wbindgen_bigint_from_u64(arg0) {
5337
+ export function __wbindgen_cast_4625c577ab2ec9ee(arg0) {
5338
+ // Cast intrinsic for `U64 -> Externref`.
5209
5339
  const ret = BigInt.asUintN(64, arg0);
5210
5340
  return addHeapObject(ret);
5211
5341
  }
5212
5342
 
5213
- export function __wbindgen_bigint_get_as_i64(arg0, arg1) {
5214
- const v = getObject(arg1);
5215
- const ret = typeof v === "bigint" ? v : undefined;
5216
- getDataViewMemory0().setBigInt64(arg0 + 8 * 1, isLikeNone(ret) ? BigInt(0) : ret, true);
5217
- getDataViewMemory0().setInt32(arg0 + 4 * 0, !isLikeNone(ret), true);
5218
- }
5219
-
5220
- export function __wbindgen_boolean_get(arg0) {
5221
- const v = getObject(arg0);
5222
- const ret = typeof v === "boolean" ? (v ? 1 : 0) : 2;
5223
- return ret;
5224
- }
5225
-
5226
- export function __wbindgen_cb_drop(arg0) {
5227
- const obj = takeObject(arg0).original;
5228
- if (obj.cnt-- == 1) {
5229
- obj.a = 0;
5230
- return true;
5231
- }
5232
- const ret = false;
5233
- return ret;
5234
- }
5235
-
5236
- export function __wbindgen_closure_wrapper196(arg0, arg1, arg2) {
5237
- const ret = makeMutClosure(arg0, arg1, 7, __wbg_adapter_54);
5343
+ export function __wbindgen_cast_5fea77eff9dd275c(arg0, arg1) {
5344
+ var v0 = getArrayJsValueFromWasm0(arg0, arg1).slice();
5345
+ wasm.__wbindgen_free(arg0, arg1 * 4, 4);
5346
+ // Cast intrinsic for `Vector(NamedExternref("CipherRiskResult")) -> Externref`.
5347
+ const ret = v0;
5238
5348
  return addHeapObject(ret);
5239
5349
  }
5240
5350
 
5241
- export function __wbindgen_closure_wrapper198(arg0, arg1, arg2) {
5242
- const ret = makeMutClosure(arg0, arg1, 7, __wbg_adapter_57);
5351
+ export function __wbindgen_cast_7a6d185652cd8149(arg0, arg1) {
5352
+ var v0 = getArrayJsValueFromWasm0(arg0, arg1).slice();
5353
+ wasm.__wbindgen_free(arg0, arg1 * 4, 4);
5354
+ // Cast intrinsic for `Vector(NamedExternref("Cipher")) -> Externref`.
5355
+ const ret = v0;
5243
5356
  return addHeapObject(ret);
5244
5357
  }
5245
5358
 
5246
- export function __wbindgen_closure_wrapper4523(arg0, arg1, arg2) {
5247
- const ret = makeMutClosure(arg0, arg1, 349, __wbg_adapter_60);
5359
+ export function __wbindgen_cast_91244c1b651c8ba8(arg0, arg1) {
5360
+ // Cast intrinsic for `Closure(Closure { dtor_idx: 5, function: Function { arguments: [NamedExternref("IDBVersionChangeEvent")], shim_idx: 6, ret: Unit, inner_ret: Some(Unit) }, mutable: true }) -> Externref`.
5361
+ const ret = makeMutClosure(
5362
+ arg0,
5363
+ arg1,
5364
+ wasm.wasm_bindgen__closure__destroy__h7b7f88151484c167,
5365
+ wasm_bindgen__convert__closures_____invoke__h4f8d9ba9b5b9a009,
5366
+ );
5248
5367
  return addHeapObject(ret);
5249
5368
  }
5250
5369
 
5251
- export function __wbindgen_closure_wrapper8581(arg0, arg1, arg2) {
5252
- const ret = makeMutClosure(arg0, arg1, 516, __wbg_adapter_60);
5370
+ export function __wbindgen_cast_98de615b9dbdc064(arg0, arg1) {
5371
+ // Cast intrinsic for `Closure(Closure { dtor_idx: 268, function: Function { arguments: [Externref], shim_idx: 6, ret: Unit, inner_ret: Some(Unit) }, mutable: true }) -> Externref`.
5372
+ const ret = makeMutClosure(
5373
+ arg0,
5374
+ arg1,
5375
+ wasm.wasm_bindgen__closure__destroy__h04ff7fddf688fec6,
5376
+ wasm_bindgen__convert__closures_____invoke__h4f8d9ba9b5b9a009,
5377
+ );
5253
5378
  return addHeapObject(ret);
5254
5379
  }
5255
5380
 
5256
- export function __wbindgen_closure_wrapper8967(arg0, arg1, arg2) {
5257
- const ret = makeMutClosure(arg0, arg1, 538, __wbg_adapter_57);
5381
+ export function __wbindgen_cast_9ae0607507abb057(arg0) {
5382
+ // Cast intrinsic for `I64 -> Externref`.
5383
+ const ret = arg0;
5258
5384
  return addHeapObject(ret);
5259
5385
  }
5260
5386
 
5261
- export function __wbindgen_debug_string(arg0, arg1) {
5262
- const ret = debugString(getObject(arg1));
5263
- const ptr1 = passStringToWasm0(ret, wasm.__wbindgen_malloc, wasm.__wbindgen_realloc);
5264
- const len1 = WASM_VECTOR_LEN;
5265
- getDataViewMemory0().setInt32(arg0 + 4 * 1, len1, true);
5266
- getDataViewMemory0().setInt32(arg0 + 4 * 0, ptr1, true);
5267
- }
5268
-
5269
- export function __wbindgen_error_new(arg0, arg1) {
5270
- const ret = new Error(getStringFromWasm0(arg0, arg1));
5387
+ export function __wbindgen_cast_cb9088102bce6b30(arg0, arg1) {
5388
+ // Cast intrinsic for `Ref(Slice(U8)) -> NamedExternref("Uint8Array")`.
5389
+ const ret = getArrayU8FromWasm0(arg0, arg1);
5271
5390
  return addHeapObject(ret);
5272
5391
  }
5273
5392
 
5274
- export function __wbindgen_in(arg0, arg1) {
5275
- const ret = getObject(arg0) in getObject(arg1);
5276
- return ret;
5277
- }
5278
-
5279
- export function __wbindgen_is_bigint(arg0) {
5280
- const ret = typeof getObject(arg0) === "bigint";
5281
- return ret;
5282
- }
5283
-
5284
- export function __wbindgen_is_function(arg0) {
5285
- const ret = typeof getObject(arg0) === "function";
5286
- return ret;
5287
- }
5288
-
5289
- export function __wbindgen_is_object(arg0) {
5290
- const val = getObject(arg0);
5291
- const ret = typeof val === "object" && val !== null;
5292
- return ret;
5293
- }
5294
-
5295
- export function __wbindgen_is_string(arg0) {
5296
- const ret = typeof getObject(arg0) === "string";
5297
- return ret;
5298
- }
5299
-
5300
- export function __wbindgen_is_undefined(arg0) {
5301
- const ret = getObject(arg0) === undefined;
5302
- return ret;
5303
- }
5304
-
5305
- export function __wbindgen_jsval_eq(arg0, arg1) {
5306
- const ret = getObject(arg0) === getObject(arg1);
5307
- return ret;
5308
- }
5309
-
5310
- export function __wbindgen_jsval_loose_eq(arg0, arg1) {
5311
- const ret = getObject(arg0) == getObject(arg1);
5312
- return ret;
5393
+ export function __wbindgen_cast_d6cd19b81560fd6e(arg0) {
5394
+ // Cast intrinsic for `F64 -> Externref`.
5395
+ const ret = arg0;
5396
+ return addHeapObject(ret);
5313
5397
  }
5314
5398
 
5315
- export function __wbindgen_memory() {
5316
- const ret = wasm.memory;
5399
+ export function __wbindgen_cast_e904f2c9fda6146b(arg0, arg1) {
5400
+ // Cast intrinsic for `Closure(Closure { dtor_idx: 5, function: Function { arguments: [NamedExternref("Event")], shim_idx: 8, ret: Result(Unit), inner_ret: Some(Result(Unit)) }, mutable: true }) -> Externref`.
5401
+ const ret = makeMutClosure(
5402
+ arg0,
5403
+ arg1,
5404
+ wasm.wasm_bindgen__closure__destroy__h7b7f88151484c167,
5405
+ wasm_bindgen__convert__closures_____invoke__hf869d8564f5adb52,
5406
+ );
5317
5407
  return addHeapObject(ret);
5318
5408
  }
5319
5409
 
5320
- export function __wbindgen_number_get(arg0, arg1) {
5321
- const obj = getObject(arg1);
5322
- const ret = typeof obj === "number" ? obj : undefined;
5323
- getDataViewMemory0().setFloat64(arg0 + 8 * 1, isLikeNone(ret) ? 0 : ret, true);
5324
- getDataViewMemory0().setInt32(arg0 + 4 * 0, !isLikeNone(ret), true);
5410
+ export function __wbindgen_cast_ef90a087adb7475d(arg0, arg1) {
5411
+ var v0 = getArrayJsValueFromWasm0(arg0, arg1).slice();
5412
+ wasm.__wbindgen_free(arg0, arg1 * 4, 4);
5413
+ // Cast intrinsic for `Vector(NamedExternref("FolderView")) -> Externref`.
5414
+ const ret = v0;
5415
+ return addHeapObject(ret);
5325
5416
  }
5326
5417
 
5327
- export function __wbindgen_number_new(arg0) {
5328
- const ret = arg0;
5418
+ export function __wbindgen_cast_f31034722c398fdb(arg0, arg1) {
5419
+ // Cast intrinsic for `Closure(Closure { dtor_idx: 520, function: Function { arguments: [], shim_idx: 269, ret: Unit, inner_ret: Some(Unit) }, mutable: true }) -> Externref`.
5420
+ const ret = makeMutClosure(
5421
+ arg0,
5422
+ arg1,
5423
+ wasm.wasm_bindgen__closure__destroy__h1cce7ce4a094839d,
5424
+ wasm_bindgen__convert__closures_____invoke__h76c71c1158b6af01,
5425
+ );
5329
5426
  return addHeapObject(ret);
5330
5427
  }
5331
5428
 
@@ -5337,23 +5434,3 @@ export function __wbindgen_object_clone_ref(arg0) {
5337
5434
  export function __wbindgen_object_drop_ref(arg0) {
5338
5435
  takeObject(arg0);
5339
5436
  }
5340
-
5341
- export function __wbindgen_string_get(arg0, arg1) {
5342
- const obj = getObject(arg1);
5343
- const ret = typeof obj === "string" ? obj : undefined;
5344
- var ptr1 = isLikeNone(ret)
5345
- ? 0
5346
- : passStringToWasm0(ret, wasm.__wbindgen_malloc, wasm.__wbindgen_realloc);
5347
- var len1 = WASM_VECTOR_LEN;
5348
- getDataViewMemory0().setInt32(arg0 + 4 * 1, len1, true);
5349
- getDataViewMemory0().setInt32(arg0 + 4 * 0, ptr1, true);
5350
- }
5351
-
5352
- export function __wbindgen_string_new(arg0, arg1) {
5353
- const ret = getStringFromWasm0(arg0, arg1);
5354
- return addHeapObject(ret);
5355
- }
5356
-
5357
- export function __wbindgen_throw(arg0, arg1) {
5358
- throw new Error(getStringFromWasm0(arg0, arg1));
5359
- }