@bitcredit/bcr-ebill-wasm 0.5.1 → 0.5.2
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- package/index.d.ts +30 -12
- package/index.js +297 -260
- package/index_bg.wasm +0 -0
- package/package.json +1 -1
package/index.d.ts
CHANGED
|
@@ -789,7 +789,23 @@ export interface SignatoryResponse {
|
|
|
789
789
|
}
|
|
790
790
|
|
|
791
791
|
export interface StatusResponse {
|
|
792
|
+
/**
|
|
793
|
+
* Name of the currently configured Bitcoin network (e.g. `mainnet`, `testnet`).
|
|
794
|
+
*/
|
|
792
795
|
bitcoin_network: string;
|
|
796
|
+
/**
|
|
797
|
+
* `true` if the app has an active connection to at least one configured Nostr relay.
|
|
798
|
+
*
|
|
799
|
+
* This reflects the status of the Nostr transport layer, not general internet
|
|
800
|
+
* connectivity or backend/database availability. When `connected` is `false`,
|
|
801
|
+
* operations that require Nostr (such as bill synchronization with other peers,
|
|
802
|
+
* sending or receiving notifications, or other relay-based messaging) will not
|
|
803
|
+
* be able to communicate over the network and may fall back to local-only state.
|
|
804
|
+
*/
|
|
805
|
+
connected: boolean;
|
|
806
|
+
/**
|
|
807
|
+
* Semantic version of the running E-Bills application backend.
|
|
808
|
+
*/
|
|
793
809
|
app_version: string;
|
|
794
810
|
}
|
|
795
811
|
|
|
@@ -833,7 +849,7 @@ export type CompanyStatusWeb = "Invited" | "Active" | "None";
|
|
|
833
849
|
|
|
834
850
|
export type GeneralSearchFilterItemTypeWeb = "Company" | "Bill" | "Contact";
|
|
835
851
|
|
|
836
|
-
export type JsErrorType = "FieldEmpty" | "FieldInvalid" | "InvalidSum" | "InvalidCurrency" | "InvalidContentType" | "IdentityCantBeAnon" | "InvalidContactType" | "InvalidIdentityType" | "InvalidDate" | "InvalidCountry" | "InvalidTimestamp" | "DeadlineBeforeMinimum" | "SelfDraftedBillCantBeBlank" | "RequestToMintForBillAndMintAlreadyActive" | "SignerCantBeAnon" | "ContactIsAnonymous" | "InvalidContact" | "InvalidMint" | "IssueDateAfterMaturityDate" | "MaturityDateInThePast" | "InvalidFileUploadId" | "InvalidNodeId" | "InvalidBillId" | "InvalidBillType" | "DraweeCantBePayee" | "EndorserCantBeEndorsee" | "BuyerCantBeSeller" | "RecourserCantBeRecoursee" | "DraweeNotInContacts" | "PayeeNotInContacts" | "MintNotInContacts" | "BuyerNotInContacts" | "EndorseeNotInContacts" | "RecourseeNotInContacts" | "CancelMintRequestNotPending" | "RejectMintRequestNotOffered" | "AcceptMintRequestNotOffered" | "AcceptMintOfferExpired" | "NoConfirmedEmailForIdentIdentity" | "NoFileForFileUploadId" | "NotFound" | "ExternalApi" | "Crypto" | "Persistence" | "Blockchain" | "Protocol" | "InvalidRelayUrl" | "Serialization" | "Init" | "NotificationNetwork" | "NotificationMessage" | "InvalidOperation" | "BillAlreadyAccepted" | "BillWasRejectedToAccept" | "BillAcceptanceExpired" | "BillWasRejectedToPay" | "BillPaymentExpired" | "BillWasRecoursedToTheEnd" | "BillAlreadyRequestedToAccept" | "BillNotAccepted" | "CallerIsNotDrawee" | "CallerIsNotHolder" | "CallerIsNotRecoursee" | "CallerIsNotBuyer" | "RequestAlreadyRejected" | "BillAlreadyPaid" | "BillWasNotRequestedToPay" | "BillWasNotOfferedToSell" | "BillRequestToAcceptDidNotExpireAndWasNotRejected" | "BillRequestToPayDidNotExpireAndWasNotRejected" | "RecourseeNotPastHolder" | "BillWasNotRequestedToRecourse" | "BillIsNotRequestedToRecourseAndWaitingForPayment" | "BillIsNotOfferToSellWaitingForPayment" | "BillSellDataInvalid" | "BillRecourseDataInvalid" | "BillIsRequestedToPayAndWaitingForPayment" | "BillIsOfferedToSellAndWaitingForPayment" | "BillIsInRecourseAndWaitingForPayment" | "SignatoryNotInContacts" | "SignatoryAlreadySignatory" | "CantRemoveLastSignatory" | "NotASignatory" | "NotARemovedOrRejectedSignatory" | "NotInvitedAsSignatory" | "NoSignerIdentityProof" | "FileIsTooBig" | "FileIsEmpty" | "TooManyFiles" | "InvalidFileName" | "UnknownNodeId" | "CallerMustBeSignatory" | "InvalidSignature" | "InvalidHash" | "InvalidUrl" | "InvalidIdentityProofStatus" | "Json" | "InvalidBillAction" | "InvalidMintRequestId";
|
|
852
|
+
export type JsErrorType = "FieldEmpty" | "FieldInvalid" | "InvalidSum" | "InvalidCurrency" | "InvalidContentType" | "IdentityCantBeAnon" | "InvalidContactType" | "InvalidIdentityType" | "InvalidDate" | "InvalidCountry" | "InvalidTimestamp" | "DeadlineBeforeMinimum" | "SelfDraftedBillCantBeBlank" | "RequestToMintForBillAndMintAlreadyActive" | "SignerCantBeAnon" | "ContactIsAnonymous" | "InvalidContact" | "InvalidMint" | "IssueDateAfterMaturityDate" | "MaturityDateInThePast" | "InvalidFileUploadId" | "InvalidNodeId" | "InvalidBillId" | "InvalidBillType" | "DraweeCantBePayee" | "EndorserCantBeEndorsee" | "BuyerCantBeSeller" | "RecourserCantBeRecoursee" | "DraweeNotInContacts" | "PayeeNotInContacts" | "MintNotInContacts" | "BuyerNotInContacts" | "EndorseeNotInContacts" | "RecourseeNotInContacts" | "CancelMintRequestNotPending" | "RejectMintRequestNotOffered" | "AcceptMintRequestNotOffered" | "AcceptMintOfferExpired" | "NoConfirmedEmailForIdentIdentity" | "NoFileForFileUploadId" | "NotFound" | "ExternalApi" | "Crypto" | "Persistence" | "Blockchain" | "Protocol" | "InvalidRelayUrl" | "Serialization" | "Init" | "NotificationNetwork" | "NotificationMessage" | "InvalidOperation" | "BillAlreadyAccepted" | "BillWasRejectedToAccept" | "BillAcceptanceExpired" | "BillWasRejectedToPay" | "BillPaymentExpired" | "BillWasRecoursedToTheEnd" | "BillAlreadyRequestedToAccept" | "BillNotAccepted" | "CallerIsNotDrawee" | "CallerIsNotHolder" | "CallerIsNotRecoursee" | "CallerIsNotBuyer" | "RequestAlreadyRejected" | "BillAlreadyPaid" | "BillWasNotRequestedToPay" | "BillWasNotOfferedToSell" | "BillRequestToAcceptDidNotExpireAndWasNotRejected" | "BillRequestToPayDidNotExpireAndWasNotRejected" | "RecourseeNotPastHolder" | "BillWasNotRequestedToRecourse" | "BillIsNotRequestedToRecourseAndWaitingForPayment" | "BillIsNotOfferToSellWaitingForPayment" | "BillSellDataInvalid" | "BillRecourseDataInvalid" | "BillIsRequestedToPayAndWaitingForPayment" | "BillIsOfferedToSellAndWaitingForPayment" | "BillIsInRecourseAndWaitingForPayment" | "SignatoryNotInContacts" | "SignatoryAlreadySignatory" | "CantRemoveLastSignatory" | "NotASignatory" | "NotARemovedOrRejectedSignatory" | "NotInvitedAsSignatory" | "NoSignerIdentityProof" | "FileIsTooBig" | "FileIsEmpty" | "TooManyFiles" | "InvalidFileName" | "UnknownNodeId" | "CallerMustBeSignatory" | "InvalidIdentityProof" | "InvalidReferenceBlock" | "InvalidSignature" | "InvalidHash" | "InvalidUrl" | "InvalidIdentityProofStatus" | "Json" | "InvalidBillAction" | "InvalidCompanyAction" | "CompanySignerCreatorMismatch" | "InvalidMintRequestId";
|
|
837
853
|
|
|
838
854
|
export type LightBillParticipantWeb = { Anon: LightBillAnonParticipantWeb } | { Ident: LightBillIdentParticipantWithAddressWeb };
|
|
839
855
|
|
|
@@ -1173,20 +1189,22 @@ export interface InitOutput {
|
|
|
1173
1189
|
readonly general_new: () => number;
|
|
1174
1190
|
readonly identity_new: () => number;
|
|
1175
1191
|
readonly notification_new: () => number;
|
|
1176
|
-
readonly __wbg_bill_free: (a: number, b: number) => void;
|
|
1177
1192
|
readonly __wbg_contact_free: (a: number, b: number) => void;
|
|
1178
1193
|
readonly __wbg_general_free: (a: number, b: number) => void;
|
|
1179
|
-
readonly __wbg_identity_free: (a: number, b: number) => void;
|
|
1180
|
-
readonly __wbg_notification_free: (a: number, b: number) => void;
|
|
1181
1194
|
readonly __wbg_company_free: (a: number, b: number) => void;
|
|
1182
|
-
readonly
|
|
1183
|
-
readonly
|
|
1184
|
-
readonly
|
|
1185
|
-
readonly
|
|
1186
|
-
readonly
|
|
1187
|
-
readonly
|
|
1188
|
-
readonly
|
|
1189
|
-
readonly
|
|
1195
|
+
readonly __wbg_bill_free: (a: number, b: number) => void;
|
|
1196
|
+
readonly __wbg_notification_free: (a: number, b: number) => void;
|
|
1197
|
+
readonly __wbg_identity_free: (a: number, b: number) => void;
|
|
1198
|
+
readonly wasm_bindgen__closure__destroy__h2b64577c0d30e7ff: (a: number, b: number) => void;
|
|
1199
|
+
readonly wasm_bindgen__closure__destroy__h56f6a1c416286713: (a: number, b: number) => void;
|
|
1200
|
+
readonly wasm_bindgen__closure__destroy__h2681b741ef6c8dcf: (a: number, b: number) => void;
|
|
1201
|
+
readonly wasm_bindgen__convert__closures_____invoke__h6aec09e193342f93: (a: number, b: number, c: any) => [number, number];
|
|
1202
|
+
readonly wasm_bindgen__convert__closures_____invoke__h5f1e16860b61a77a: (a: number, b: number, c: any) => [number, number];
|
|
1203
|
+
readonly wasm_bindgen__convert__closures_____invoke__h0a7adf7d3880a828: (a: number, b: number, c: any, d: any) => void;
|
|
1204
|
+
readonly wasm_bindgen__convert__closures_____invoke__h60259d0a007c8ff6: (a: number, b: number, c: any) => void;
|
|
1205
|
+
readonly wasm_bindgen__convert__closures_____invoke__h60259d0a007c8ff6_2: (a: number, b: number, c: any) => void;
|
|
1206
|
+
readonly wasm_bindgen__convert__closures_____invoke__h3af009eb2e384dae: (a: number, b: number) => void;
|
|
1207
|
+
readonly wasm_bindgen__convert__closures_____invoke__hf807c24f46a17e5e: (a: number, b: number) => void;
|
|
1190
1208
|
readonly __wbindgen_malloc: (a: number, b: number) => number;
|
|
1191
1209
|
readonly __wbindgen_realloc: (a: number, b: number, c: number, d: number) => number;
|
|
1192
1210
|
readonly __wbindgen_exn_store: (a: number) => void;
|
package/index.js
CHANGED
|
@@ -22,35 +22,35 @@ export class Api {
|
|
|
22
22
|
* @returns {Company}
|
|
23
23
|
*/
|
|
24
24
|
static company() {
|
|
25
|
-
const ret = wasm.
|
|
25
|
+
const ret = wasm.api_company();
|
|
26
26
|
return Company.__wrap(ret);
|
|
27
27
|
}
|
|
28
28
|
/**
|
|
29
29
|
* @returns {Contact}
|
|
30
30
|
*/
|
|
31
31
|
static contact() {
|
|
32
|
-
const ret = wasm.
|
|
32
|
+
const ret = wasm.api_contact();
|
|
33
33
|
return Contact.__wrap(ret);
|
|
34
34
|
}
|
|
35
35
|
/**
|
|
36
36
|
* @returns {General}
|
|
37
37
|
*/
|
|
38
38
|
static general() {
|
|
39
|
-
const ret = wasm.
|
|
39
|
+
const ret = wasm.api_general();
|
|
40
40
|
return General.__wrap(ret);
|
|
41
41
|
}
|
|
42
42
|
/**
|
|
43
43
|
* @returns {Identity}
|
|
44
44
|
*/
|
|
45
45
|
static identity() {
|
|
46
|
-
const ret = wasm.
|
|
46
|
+
const ret = wasm.api_identity();
|
|
47
47
|
return Identity.__wrap(ret);
|
|
48
48
|
}
|
|
49
49
|
/**
|
|
50
50
|
* @returns {Notification}
|
|
51
51
|
*/
|
|
52
52
|
static notification() {
|
|
53
|
-
const ret = wasm.
|
|
53
|
+
const ret = wasm.api_notification();
|
|
54
54
|
return Notification.__wrap(ret);
|
|
55
55
|
}
|
|
56
56
|
}
|
|
@@ -273,7 +273,7 @@ export class Bill {
|
|
|
273
273
|
* @returns {Bill}
|
|
274
274
|
*/
|
|
275
275
|
static new() {
|
|
276
|
-
const ret = wasm.
|
|
276
|
+
const ret = wasm.bill_new();
|
|
277
277
|
return Bill.__wrap(ret);
|
|
278
278
|
}
|
|
279
279
|
/**
|
|
@@ -596,7 +596,7 @@ export class Company {
|
|
|
596
596
|
* @returns {Company}
|
|
597
597
|
*/
|
|
598
598
|
static new() {
|
|
599
|
-
const ret = wasm.
|
|
599
|
+
const ret = wasm.company_new();
|
|
600
600
|
return Company.__wrap(ret);
|
|
601
601
|
}
|
|
602
602
|
/**
|
|
@@ -770,7 +770,7 @@ export class Contact {
|
|
|
770
770
|
* @returns {Contact}
|
|
771
771
|
*/
|
|
772
772
|
static new() {
|
|
773
|
-
const ret = wasm.
|
|
773
|
+
const ret = wasm.contact_new();
|
|
774
774
|
return Contact.__wrap(ret);
|
|
775
775
|
}
|
|
776
776
|
/**
|
|
@@ -850,7 +850,7 @@ export class General {
|
|
|
850
850
|
* @returns {General}
|
|
851
851
|
*/
|
|
852
852
|
static new() {
|
|
853
|
-
const ret = wasm.
|
|
853
|
+
const ret = wasm.general_new();
|
|
854
854
|
return General.__wrap(ret);
|
|
855
855
|
}
|
|
856
856
|
/**
|
|
@@ -1001,7 +1001,7 @@ export class Identity {
|
|
|
1001
1001
|
* @returns {Identity}
|
|
1002
1002
|
*/
|
|
1003
1003
|
static new() {
|
|
1004
|
-
const ret = wasm.
|
|
1004
|
+
const ret = wasm.identity_new();
|
|
1005
1005
|
return Identity.__wrap(ret);
|
|
1006
1006
|
}
|
|
1007
1007
|
/**
|
|
@@ -1126,7 +1126,7 @@ export class Notification {
|
|
|
1126
1126
|
* @returns {Notification}
|
|
1127
1127
|
*/
|
|
1128
1128
|
static new() {
|
|
1129
|
-
const ret = wasm.
|
|
1129
|
+
const ret = wasm.notification_new();
|
|
1130
1130
|
return Notification.__wrap(ret);
|
|
1131
1131
|
}
|
|
1132
1132
|
/**
|
|
@@ -1179,83 +1179,83 @@ export function task_worker_entry_point(ptr) {
|
|
|
1179
1179
|
function __wbg_get_imports() {
|
|
1180
1180
|
const import0 = {
|
|
1181
1181
|
__proto__: null,
|
|
1182
|
-
|
|
1182
|
+
__wbg_Error_83742b46f01ce22d: function(arg0, arg1) {
|
|
1183
1183
|
const ret = Error(getStringFromWasm0(arg0, arg1));
|
|
1184
1184
|
return ret;
|
|
1185
1185
|
},
|
|
1186
|
-
|
|
1186
|
+
__wbg_Number_a5a435bd7bbec835: function(arg0) {
|
|
1187
1187
|
const ret = Number(arg0);
|
|
1188
1188
|
return ret;
|
|
1189
1189
|
},
|
|
1190
|
-
|
|
1190
|
+
__wbg_String_8564e559799eccda: function(arg0, arg1) {
|
|
1191
1191
|
const ret = String(arg1);
|
|
1192
1192
|
const ptr1 = passStringToWasm0(ret, wasm.__wbindgen_malloc, wasm.__wbindgen_realloc);
|
|
1193
1193
|
const len1 = WASM_VECTOR_LEN;
|
|
1194
1194
|
getDataViewMemory0().setInt32(arg0 + 4 * 1, len1, true);
|
|
1195
1195
|
getDataViewMemory0().setInt32(arg0 + 4 * 0, ptr1, true);
|
|
1196
1196
|
},
|
|
1197
|
-
|
|
1197
|
+
__wbg___wbindgen_bigint_get_as_i64_447a76b5c6ef7bda: function(arg0, arg1) {
|
|
1198
1198
|
const v = arg1;
|
|
1199
1199
|
const ret = typeof(v) === 'bigint' ? v : undefined;
|
|
1200
1200
|
getDataViewMemory0().setBigInt64(arg0 + 8 * 1, isLikeNone(ret) ? BigInt(0) : ret, true);
|
|
1201
1201
|
getDataViewMemory0().setInt32(arg0 + 4 * 0, !isLikeNone(ret), true);
|
|
1202
1202
|
},
|
|
1203
|
-
|
|
1203
|
+
__wbg___wbindgen_boolean_get_c0f3f60bac5a78d1: function(arg0) {
|
|
1204
1204
|
const v = arg0;
|
|
1205
1205
|
const ret = typeof(v) === 'boolean' ? v : undefined;
|
|
1206
1206
|
return isLikeNone(ret) ? 0xFFFFFF : ret ? 1 : 0;
|
|
1207
1207
|
},
|
|
1208
|
-
|
|
1208
|
+
__wbg___wbindgen_debug_string_5398f5bb970e0daa: function(arg0, arg1) {
|
|
1209
1209
|
const ret = debugString(arg1);
|
|
1210
1210
|
const ptr1 = passStringToWasm0(ret, wasm.__wbindgen_malloc, wasm.__wbindgen_realloc);
|
|
1211
1211
|
const len1 = WASM_VECTOR_LEN;
|
|
1212
1212
|
getDataViewMemory0().setInt32(arg0 + 4 * 1, len1, true);
|
|
1213
1213
|
getDataViewMemory0().setInt32(arg0 + 4 * 0, ptr1, true);
|
|
1214
1214
|
},
|
|
1215
|
-
|
|
1215
|
+
__wbg___wbindgen_in_41dbb8413020e076: function(arg0, arg1) {
|
|
1216
1216
|
const ret = arg0 in arg1;
|
|
1217
1217
|
return ret;
|
|
1218
1218
|
},
|
|
1219
|
-
|
|
1219
|
+
__wbg___wbindgen_is_bigint_e2141d4f045b7eda: function(arg0) {
|
|
1220
1220
|
const ret = typeof(arg0) === 'bigint';
|
|
1221
1221
|
return ret;
|
|
1222
1222
|
},
|
|
1223
|
-
|
|
1223
|
+
__wbg___wbindgen_is_falsy_30906e697739fcc2: function(arg0) {
|
|
1224
1224
|
const ret = !arg0;
|
|
1225
1225
|
return ret;
|
|
1226
1226
|
},
|
|
1227
|
-
|
|
1227
|
+
__wbg___wbindgen_is_function_3c846841762788c1: function(arg0) {
|
|
1228
1228
|
const ret = typeof(arg0) === 'function';
|
|
1229
1229
|
return ret;
|
|
1230
1230
|
},
|
|
1231
|
-
|
|
1231
|
+
__wbg___wbindgen_is_object_781bc9f159099513: function(arg0) {
|
|
1232
1232
|
const val = arg0;
|
|
1233
1233
|
const ret = typeof(val) === 'object' && val !== null;
|
|
1234
1234
|
return ret;
|
|
1235
1235
|
},
|
|
1236
|
-
|
|
1236
|
+
__wbg___wbindgen_is_string_7ef6b97b02428fae: function(arg0) {
|
|
1237
1237
|
const ret = typeof(arg0) === 'string';
|
|
1238
1238
|
return ret;
|
|
1239
1239
|
},
|
|
1240
|
-
|
|
1240
|
+
__wbg___wbindgen_is_undefined_52709e72fb9f179c: function(arg0) {
|
|
1241
1241
|
const ret = arg0 === undefined;
|
|
1242
1242
|
return ret;
|
|
1243
1243
|
},
|
|
1244
|
-
|
|
1244
|
+
__wbg___wbindgen_jsval_eq_ee31bfad3e536463: function(arg0, arg1) {
|
|
1245
1245
|
const ret = arg0 === arg1;
|
|
1246
1246
|
return ret;
|
|
1247
1247
|
},
|
|
1248
|
-
|
|
1248
|
+
__wbg___wbindgen_jsval_loose_eq_5bcc3bed3c69e72b: function(arg0, arg1) {
|
|
1249
1249
|
const ret = arg0 == arg1;
|
|
1250
1250
|
return ret;
|
|
1251
1251
|
},
|
|
1252
|
-
|
|
1252
|
+
__wbg___wbindgen_number_get_34bb9d9dcfa21373: function(arg0, arg1) {
|
|
1253
1253
|
const obj = arg1;
|
|
1254
1254
|
const ret = typeof(obj) === 'number' ? obj : undefined;
|
|
1255
1255
|
getDataViewMemory0().setFloat64(arg0 + 8 * 1, isLikeNone(ret) ? 0 : ret, true);
|
|
1256
1256
|
getDataViewMemory0().setInt32(arg0 + 4 * 0, !isLikeNone(ret), true);
|
|
1257
1257
|
},
|
|
1258
|
-
|
|
1258
|
+
__wbg___wbindgen_string_get_395e606bd0ee4427: function(arg0, arg1) {
|
|
1259
1259
|
const obj = arg1;
|
|
1260
1260
|
const ret = typeof(obj) === 'string' ? obj : undefined;
|
|
1261
1261
|
var ptr1 = isLikeNone(ret) ? 0 : passStringToWasm0(ret, wasm.__wbindgen_malloc, wasm.__wbindgen_realloc);
|
|
@@ -1263,114 +1263,117 @@ function __wbg_get_imports() {
|
|
|
1263
1263
|
getDataViewMemory0().setInt32(arg0 + 4 * 1, len1, true);
|
|
1264
1264
|
getDataViewMemory0().setInt32(arg0 + 4 * 0, ptr1, true);
|
|
1265
1265
|
},
|
|
1266
|
-
|
|
1266
|
+
__wbg___wbindgen_throw_6ddd609b62940d55: function(arg0, arg1) {
|
|
1267
1267
|
throw new Error(getStringFromWasm0(arg0, arg1));
|
|
1268
1268
|
},
|
|
1269
|
-
|
|
1269
|
+
__wbg__wbg_cb_unref_6b5b6b8576d35cb1: function(arg0) {
|
|
1270
1270
|
arg0._wbg_cb_unref();
|
|
1271
1271
|
},
|
|
1272
|
-
|
|
1272
|
+
__wbg_abort_5ef96933660780b7: function(arg0) {
|
|
1273
1273
|
arg0.abort();
|
|
1274
1274
|
},
|
|
1275
|
-
|
|
1275
|
+
__wbg_abort_60dcb252ae0031fc: function() { return handleError(function (arg0) {
|
|
1276
1276
|
arg0.abort();
|
|
1277
1277
|
}, arguments); },
|
|
1278
|
-
|
|
1278
|
+
__wbg_abort_6479c2d794ebf2ee: function(arg0, arg1) {
|
|
1279
1279
|
arg0.abort(arg1);
|
|
1280
1280
|
},
|
|
1281
|
-
|
|
1281
|
+
__wbg_advance_670851c833f4530f: function() { return handleError(function (arg0, arg1) {
|
|
1282
1282
|
arg0.advance(arg1 >>> 0);
|
|
1283
1283
|
}, arguments); },
|
|
1284
|
-
|
|
1284
|
+
__wbg_append_608dfb635ee8998f: function() { return handleError(function (arg0, arg1, arg2, arg3, arg4) {
|
|
1285
1285
|
arg0.append(getStringFromWasm0(arg1, arg2), getStringFromWasm0(arg3, arg4));
|
|
1286
1286
|
}, arguments); },
|
|
1287
|
-
|
|
1287
|
+
__wbg_arrayBuffer_eb8e9ca620af2a19: function() { return handleError(function (arg0) {
|
|
1288
1288
|
const ret = arg0.arrayBuffer();
|
|
1289
1289
|
return ret;
|
|
1290
1290
|
}, arguments); },
|
|
1291
|
-
|
|
1291
|
+
__wbg_bound_4e343b4fbe5419fa: function() { return handleError(function (arg0, arg1, arg2, arg3) {
|
|
1292
1292
|
const ret = IDBKeyRange.bound(arg0, arg1, arg2 !== 0, arg3 !== 0);
|
|
1293
1293
|
return ret;
|
|
1294
1294
|
}, arguments); },
|
|
1295
|
-
|
|
1296
|
-
const ret = arg0.call(arg1);
|
|
1295
|
+
__wbg_call_2d781c1f4d5c0ef8: function() { return handleError(function (arg0, arg1, arg2) {
|
|
1296
|
+
const ret = arg0.call(arg1, arg2);
|
|
1297
1297
|
return ret;
|
|
1298
1298
|
}, arguments); },
|
|
1299
|
-
|
|
1300
|
-
const ret = arg0.call(arg1
|
|
1299
|
+
__wbg_call_e133b57c9155d22c: function() { return handleError(function (arg0, arg1) {
|
|
1300
|
+
const ret = arg0.call(arg1);
|
|
1301
1301
|
return ret;
|
|
1302
1302
|
}, arguments); },
|
|
1303
|
-
|
|
1303
|
+
__wbg_clearInterval_f2824d65a83440ff: function(arg0) {
|
|
1304
1304
|
globalThis.clearInterval(arg0);
|
|
1305
1305
|
},
|
|
1306
|
-
|
|
1306
|
+
__wbg_clearTimeout_113b1cde814ec762: function(arg0) {
|
|
1307
1307
|
const ret = clearTimeout(arg0);
|
|
1308
1308
|
return ret;
|
|
1309
1309
|
},
|
|
1310
|
-
|
|
1310
|
+
__wbg_clearTimeout_6b8d9a38b9263d65: function(arg0) {
|
|
1311
1311
|
const ret = clearTimeout(arg0);
|
|
1312
1312
|
return ret;
|
|
1313
1313
|
},
|
|
1314
|
-
|
|
1314
|
+
__wbg_close_af26905c832a88cb: function() { return handleError(function (arg0) {
|
|
1315
1315
|
arg0.close();
|
|
1316
1316
|
}, arguments); },
|
|
1317
|
-
|
|
1317
|
+
__wbg_code_aea376e2d265a64f: function(arg0) {
|
|
1318
1318
|
const ret = arg0.code;
|
|
1319
1319
|
return ret;
|
|
1320
1320
|
},
|
|
1321
|
-
|
|
1321
|
+
__wbg_code_bc4dde4d67926010: function(arg0) {
|
|
1322
1322
|
const ret = arg0.code;
|
|
1323
1323
|
return ret;
|
|
1324
1324
|
},
|
|
1325
|
-
|
|
1325
|
+
__wbg_contains_ef4bfb7fa5a241b7: function(arg0, arg1, arg2) {
|
|
1326
1326
|
const ret = arg0.contains(getStringFromWasm0(arg1, arg2));
|
|
1327
1327
|
return ret;
|
|
1328
1328
|
},
|
|
1329
|
-
|
|
1329
|
+
__wbg_continue_44abcf9ba406e87e: function() { return handleError(function (arg0) {
|
|
1330
1330
|
arg0.continue();
|
|
1331
1331
|
}, arguments); },
|
|
1332
|
-
|
|
1332
|
+
__wbg_createIndex_323cb0213cc21d9b: function() { return handleError(function (arg0, arg1, arg2, arg3, arg4) {
|
|
1333
1333
|
const ret = arg0.createIndex(getStringFromWasm0(arg1, arg2), arg3, arg4);
|
|
1334
1334
|
return ret;
|
|
1335
1335
|
}, arguments); },
|
|
1336
|
-
|
|
1336
|
+
__wbg_createObjectStore_4709de9339ffc6c0: function() { return handleError(function (arg0, arg1, arg2, arg3) {
|
|
1337
1337
|
const ret = arg0.createObjectStore(getStringFromWasm0(arg1, arg2), arg3);
|
|
1338
1338
|
return ret;
|
|
1339
1339
|
}, arguments); },
|
|
1340
|
-
|
|
1340
|
+
__wbg_crypto_38df2bab126b63dc: function(arg0) {
|
|
1341
1341
|
const ret = arg0.crypto;
|
|
1342
1342
|
return ret;
|
|
1343
1343
|
},
|
|
1344
|
-
|
|
1344
|
+
__wbg_data_a3d9ff9cdd801002: function(arg0) {
|
|
1345
1345
|
const ret = arg0.data;
|
|
1346
1346
|
return ret;
|
|
1347
1347
|
},
|
|
1348
|
-
|
|
1348
|
+
__wbg_debug_271c16e6de0bc226: function(arg0, arg1, arg2, arg3) {
|
|
1349
1349
|
console.debug(arg0, arg1, arg2, arg3);
|
|
1350
1350
|
},
|
|
1351
|
-
|
|
1351
|
+
__wbg_deleteIndex_9391b8bace7b0b18: function() { return handleError(function (arg0, arg1, arg2) {
|
|
1352
1352
|
arg0.deleteIndex(getStringFromWasm0(arg1, arg2));
|
|
1353
1353
|
}, arguments); },
|
|
1354
|
-
|
|
1354
|
+
__wbg_deleteObjectStore_65401ab024ac08c1: function() { return handleError(function (arg0, arg1, arg2) {
|
|
1355
1355
|
arg0.deleteObjectStore(getStringFromWasm0(arg1, arg2));
|
|
1356
1356
|
}, arguments); },
|
|
1357
|
-
|
|
1357
|
+
__wbg_delete_40db93c05c546fb9: function() { return handleError(function (arg0, arg1) {
|
|
1358
1358
|
const ret = arg0.delete(arg1);
|
|
1359
1359
|
return ret;
|
|
1360
1360
|
}, arguments); },
|
|
1361
|
-
|
|
1361
|
+
__wbg_done_08ce71ee07e3bd17: function(arg0) {
|
|
1362
1362
|
const ret = arg0.done;
|
|
1363
1363
|
return ret;
|
|
1364
1364
|
},
|
|
1365
|
-
|
|
1365
|
+
__wbg_entries_e8a20ff8c9757101: function(arg0) {
|
|
1366
1366
|
const ret = Object.entries(arg0);
|
|
1367
1367
|
return ret;
|
|
1368
1368
|
},
|
|
1369
|
-
|
|
1369
|
+
__wbg_error_1eece6b0039034ce: function(arg0, arg1, arg2, arg3) {
|
|
1370
|
+
console.error(arg0, arg1, arg2, arg3);
|
|
1371
|
+
},
|
|
1372
|
+
__wbg_error_74898554122344a8: function() { return handleError(function (arg0) {
|
|
1370
1373
|
const ret = arg0.error;
|
|
1371
1374
|
return isLikeNone(ret) ? 0 : addToExternrefTable0(ret);
|
|
1372
1375
|
}, arguments); },
|
|
1373
|
-
|
|
1376
|
+
__wbg_error_a6fa202b58aa1cd3: function(arg0, arg1) {
|
|
1374
1377
|
let deferred0_0;
|
|
1375
1378
|
let deferred0_1;
|
|
1376
1379
|
try {
|
|
@@ -1381,76 +1384,81 @@ function __wbg_get_imports() {
|
|
|
1381
1384
|
wasm.__wbindgen_free(deferred0_0, deferred0_1, 1);
|
|
1382
1385
|
}
|
|
1383
1386
|
},
|
|
1384
|
-
|
|
1385
|
-
console.error(arg0, arg1, arg2, arg3);
|
|
1386
|
-
},
|
|
1387
|
-
__wbg_error_c8eaf2faafef0bdd: function(arg0, arg1) {
|
|
1387
|
+
__wbg_error_ba2b2915aeba36d8: function(arg0, arg1) {
|
|
1388
1388
|
console.error(getStringFromWasm0(arg0, arg1));
|
|
1389
1389
|
},
|
|
1390
|
-
|
|
1391
|
-
const ret = fetch(
|
|
1390
|
+
__wbg_fetch_5550a88cf343aaa9: function(arg0, arg1) {
|
|
1391
|
+
const ret = arg0.fetch(arg1);
|
|
1392
1392
|
return ret;
|
|
1393
1393
|
},
|
|
1394
|
-
|
|
1395
|
-
const ret =
|
|
1394
|
+
__wbg_fetch_9dad4fe911207b37: function(arg0) {
|
|
1395
|
+
const ret = fetch(arg0);
|
|
1396
1396
|
return ret;
|
|
1397
1397
|
},
|
|
1398
|
-
|
|
1398
|
+
__wbg_getRandomValues_3dda8830c2565714: function() { return handleError(function (arg0, arg1) {
|
|
1399
1399
|
globalThis.crypto.getRandomValues(getArrayU8FromWasm0(arg0, arg1));
|
|
1400
1400
|
}, arguments); },
|
|
1401
|
-
|
|
1401
|
+
__wbg_getRandomValues_3f44b700395062e5: function() { return handleError(function (arg0, arg1) {
|
|
1402
1402
|
globalThis.crypto.getRandomValues(getArrayU8FromWasm0(arg0, arg1));
|
|
1403
1403
|
}, arguments); },
|
|
1404
|
-
|
|
1404
|
+
__wbg_getRandomValues_c44a50d8cfdaebeb: function() { return handleError(function (arg0, arg1) {
|
|
1405
1405
|
arg0.getRandomValues(arg1);
|
|
1406
1406
|
}, arguments); },
|
|
1407
|
-
|
|
1407
|
+
__wbg_getTime_1dad7b5386ddd2d9: function(arg0) {
|
|
1408
1408
|
const ret = arg0.getTime();
|
|
1409
1409
|
return ret;
|
|
1410
1410
|
},
|
|
1411
|
-
|
|
1411
|
+
__wbg_getTimezoneOffset_639bcf2dde21158b: function(arg0) {
|
|
1412
1412
|
const ret = arg0.getTimezoneOffset();
|
|
1413
1413
|
return ret;
|
|
1414
1414
|
},
|
|
1415
|
-
|
|
1415
|
+
__wbg_get_326e41e095fb2575: function() { return handleError(function (arg0, arg1) {
|
|
1416
|
+
const ret = Reflect.get(arg0, arg1);
|
|
1417
|
+
return ret;
|
|
1418
|
+
}, arguments); },
|
|
1419
|
+
__wbg_get_3ef1eba1850ade27: function() { return handleError(function (arg0, arg1) {
|
|
1420
|
+
const ret = Reflect.get(arg0, arg1);
|
|
1421
|
+
return ret;
|
|
1422
|
+
}, arguments); },
|
|
1423
|
+
__wbg_get_6ac8c8119f577720: function() { return handleError(function (arg0, arg1) {
|
|
1416
1424
|
const ret = arg0.get(arg1);
|
|
1417
1425
|
return ret;
|
|
1418
1426
|
}, arguments); },
|
|
1419
|
-
|
|
1427
|
+
__wbg_get_7873e3afa59bad00: function(arg0, arg1, arg2) {
|
|
1420
1428
|
const ret = arg1[arg2 >>> 0];
|
|
1421
1429
|
var ptr1 = isLikeNone(ret) ? 0 : passStringToWasm0(ret, wasm.__wbindgen_malloc, wasm.__wbindgen_realloc);
|
|
1422
1430
|
var len1 = WASM_VECTOR_LEN;
|
|
1423
1431
|
getDataViewMemory0().setInt32(arg0 + 4 * 1, len1, true);
|
|
1424
1432
|
getDataViewMemory0().setInt32(arg0 + 4 * 0, ptr1, true);
|
|
1425
1433
|
},
|
|
1426
|
-
|
|
1434
|
+
__wbg_get_a8ee5c45dabc1b3b: function(arg0, arg1) {
|
|
1427
1435
|
const ret = arg0[arg1 >>> 0];
|
|
1428
1436
|
return ret;
|
|
1429
1437
|
},
|
|
1430
|
-
|
|
1431
|
-
const ret =
|
|
1438
|
+
__wbg_get_unchecked_329cfe50afab7352: function(arg0, arg1) {
|
|
1439
|
+
const ret = arg0[arg1 >>> 0];
|
|
1432
1440
|
return ret;
|
|
1433
|
-
},
|
|
1434
|
-
|
|
1441
|
+
},
|
|
1442
|
+
__wbg_get_with_ref_key_6412cf3094599694: function(arg0, arg1) {
|
|
1435
1443
|
const ret = arg0[arg1];
|
|
1436
1444
|
return ret;
|
|
1437
1445
|
},
|
|
1438
|
-
|
|
1446
|
+
__wbg_has_926ef2ff40b308cf: function() { return handleError(function (arg0, arg1) {
|
|
1439
1447
|
const ret = Reflect.has(arg0, arg1);
|
|
1440
1448
|
return ret;
|
|
1441
1449
|
}, arguments); },
|
|
1442
|
-
|
|
1450
|
+
__wbg_headers_eb2234545f9ff993: function(arg0) {
|
|
1443
1451
|
const ret = arg0.headers;
|
|
1444
1452
|
return ret;
|
|
1445
1453
|
},
|
|
1446
|
-
|
|
1454
|
+
__wbg_indexNames_3a9be68017fb9405: function(arg0) {
|
|
1447
1455
|
const ret = arg0.indexNames;
|
|
1448
1456
|
return ret;
|
|
1449
1457
|
},
|
|
1450
|
-
|
|
1458
|
+
__wbg_info_0194681687b5ab04: function(arg0, arg1, arg2, arg3) {
|
|
1451
1459
|
console.info(arg0, arg1, arg2, arg3);
|
|
1452
1460
|
},
|
|
1453
|
-
|
|
1461
|
+
__wbg_instanceof_ArrayBuffer_101e2bf31071a9f6: function(arg0) {
|
|
1454
1462
|
let result;
|
|
1455
1463
|
try {
|
|
1456
1464
|
result = arg0 instanceof ArrayBuffer;
|
|
@@ -1460,7 +1468,7 @@ function __wbg_get_imports() {
|
|
|
1460
1468
|
const ret = result;
|
|
1461
1469
|
return ret;
|
|
1462
1470
|
},
|
|
1463
|
-
|
|
1471
|
+
__wbg_instanceof_Blob_c91af000f11c2d0b: function(arg0) {
|
|
1464
1472
|
let result;
|
|
1465
1473
|
try {
|
|
1466
1474
|
result = arg0 instanceof Blob;
|
|
@@ -1470,7 +1478,7 @@ function __wbg_get_imports() {
|
|
|
1470
1478
|
const ret = result;
|
|
1471
1479
|
return ret;
|
|
1472
1480
|
},
|
|
1473
|
-
|
|
1481
|
+
__wbg_instanceof_IdbFactory_efcffbfd9020e4ac: function(arg0) {
|
|
1474
1482
|
let result;
|
|
1475
1483
|
try {
|
|
1476
1484
|
result = arg0 instanceof IDBFactory;
|
|
@@ -1480,7 +1488,7 @@ function __wbg_get_imports() {
|
|
|
1480
1488
|
const ret = result;
|
|
1481
1489
|
return ret;
|
|
1482
1490
|
},
|
|
1483
|
-
|
|
1491
|
+
__wbg_instanceof_Map_f194b366846aca0c: function(arg0) {
|
|
1484
1492
|
let result;
|
|
1485
1493
|
try {
|
|
1486
1494
|
result = arg0 instanceof Map;
|
|
@@ -1490,7 +1498,7 @@ function __wbg_get_imports() {
|
|
|
1490
1498
|
const ret = result;
|
|
1491
1499
|
return ret;
|
|
1492
1500
|
},
|
|
1493
|
-
|
|
1501
|
+
__wbg_instanceof_Response_9b4d9fd451e051b1: function(arg0) {
|
|
1494
1502
|
let result;
|
|
1495
1503
|
try {
|
|
1496
1504
|
result = arg0 instanceof Response;
|
|
@@ -1500,7 +1508,7 @@ function __wbg_get_imports() {
|
|
|
1500
1508
|
const ret = result;
|
|
1501
1509
|
return ret;
|
|
1502
1510
|
},
|
|
1503
|
-
|
|
1511
|
+
__wbg_instanceof_Uint8Array_740438561a5b956d: function(arg0) {
|
|
1504
1512
|
let result;
|
|
1505
1513
|
try {
|
|
1506
1514
|
result = arg0 instanceof Uint8Array;
|
|
@@ -1510,77 +1518,81 @@ function __wbg_get_imports() {
|
|
|
1510
1518
|
const ret = result;
|
|
1511
1519
|
return ret;
|
|
1512
1520
|
},
|
|
1513
|
-
|
|
1521
|
+
__wbg_isArray_33b91feb269ff46e: function(arg0) {
|
|
1514
1522
|
const ret = Array.isArray(arg0);
|
|
1515
1523
|
return ret;
|
|
1516
1524
|
},
|
|
1517
|
-
|
|
1525
|
+
__wbg_isSafeInteger_ecd6a7f9c3e053cd: function(arg0) {
|
|
1518
1526
|
const ret = Number.isSafeInteger(arg0);
|
|
1519
1527
|
return ret;
|
|
1520
1528
|
},
|
|
1521
|
-
|
|
1529
|
+
__wbg_iterator_d8f549ec8fb061b1: function() {
|
|
1522
1530
|
const ret = Symbol.iterator;
|
|
1523
1531
|
return ret;
|
|
1524
1532
|
},
|
|
1525
|
-
|
|
1533
|
+
__wbg_key_581f2698de7f8240: function() { return handleError(function (arg0) {
|
|
1526
1534
|
const ret = arg0.key;
|
|
1527
1535
|
return ret;
|
|
1528
1536
|
}, arguments); },
|
|
1529
|
-
|
|
1537
|
+
__wbg_length_02c4f6002306a824: function(arg0) {
|
|
1530
1538
|
const ret = arg0.length;
|
|
1531
1539
|
return ret;
|
|
1532
1540
|
},
|
|
1533
|
-
|
|
1541
|
+
__wbg_length_b3416cf66a5452c8: function(arg0) {
|
|
1534
1542
|
const ret = arg0.length;
|
|
1535
1543
|
return ret;
|
|
1536
1544
|
},
|
|
1537
|
-
|
|
1545
|
+
__wbg_length_ea16607d7b61445b: function(arg0) {
|
|
1538
1546
|
const ret = arg0.length;
|
|
1539
1547
|
return ret;
|
|
1540
1548
|
},
|
|
1541
|
-
|
|
1549
|
+
__wbg_log_70972330cfc941dd: function(arg0, arg1, arg2, arg3) {
|
|
1542
1550
|
console.log(arg0, arg1, arg2, arg3);
|
|
1543
1551
|
},
|
|
1544
|
-
|
|
1552
|
+
__wbg_msCrypto_bd5a034af96bcba6: function(arg0) {
|
|
1545
1553
|
const ret = arg0.msCrypto;
|
|
1546
1554
|
return ret;
|
|
1547
1555
|
},
|
|
1548
|
-
|
|
1549
|
-
const ret = new
|
|
1556
|
+
__wbg_new_0837727332ac86ba: function() { return handleError(function () {
|
|
1557
|
+
const ret = new Headers();
|
|
1550
1558
|
return ret;
|
|
1551
1559
|
}, arguments); },
|
|
1552
|
-
|
|
1560
|
+
__wbg_new_0_1dcafdf5e786e876: function() {
|
|
1553
1561
|
const ret = new Date();
|
|
1554
1562
|
return ret;
|
|
1555
1563
|
},
|
|
1556
|
-
|
|
1557
|
-
const ret = new
|
|
1564
|
+
__wbg_new_227d7c05414eb861: function() {
|
|
1565
|
+
const ret = new Error();
|
|
1558
1566
|
return ret;
|
|
1559
1567
|
},
|
|
1560
|
-
|
|
1561
|
-
const ret = new
|
|
1568
|
+
__wbg_new_49d5571bd3f0c4d4: function() {
|
|
1569
|
+
const ret = new Map();
|
|
1562
1570
|
return ret;
|
|
1563
1571
|
},
|
|
1564
|
-
|
|
1565
|
-
const ret = new
|
|
1572
|
+
__wbg_new_5f486cdf45a04d78: function(arg0) {
|
|
1573
|
+
const ret = new Uint8Array(arg0);
|
|
1566
1574
|
return ret;
|
|
1567
1575
|
},
|
|
1568
|
-
|
|
1569
|
-
const ret = new
|
|
1576
|
+
__wbg_new_a70fbab9066b301f: function() {
|
|
1577
|
+
const ret = new Array();
|
|
1570
1578
|
return ret;
|
|
1571
|
-
},
|
|
1572
|
-
|
|
1573
|
-
const ret = new
|
|
1579
|
+
},
|
|
1580
|
+
__wbg_new_ab79df5bd7c26067: function() {
|
|
1581
|
+
const ret = new Object();
|
|
1574
1582
|
return ret;
|
|
1575
1583
|
},
|
|
1576
|
-
|
|
1584
|
+
__wbg_new_c518c60af666645b: function() { return handleError(function () {
|
|
1585
|
+
const ret = new AbortController();
|
|
1586
|
+
return ret;
|
|
1587
|
+
}, arguments); },
|
|
1588
|
+
__wbg_new_d098e265629cd10f: function(arg0, arg1) {
|
|
1577
1589
|
try {
|
|
1578
1590
|
var state0 = {a: arg0, b: arg1};
|
|
1579
1591
|
var cb0 = (arg0, arg1) => {
|
|
1580
1592
|
const a = state0.a;
|
|
1581
1593
|
state0.a = 0;
|
|
1582
1594
|
try {
|
|
1583
|
-
return
|
|
1595
|
+
return wasm_bindgen__convert__closures_____invoke__h0a7adf7d3880a828(a, state0.b, arg0, arg1);
|
|
1584
1596
|
} finally {
|
|
1585
1597
|
state0.a = a;
|
|
1586
1598
|
}
|
|
@@ -1591,379 +1603,393 @@ function __wbg_get_imports() {
|
|
|
1591
1603
|
state0.a = state0.b = 0;
|
|
1592
1604
|
}
|
|
1593
1605
|
},
|
|
1594
|
-
|
|
1595
|
-
const ret = new
|
|
1606
|
+
__wbg_new_dd50bcc3f60ba434: function() { return handleError(function (arg0, arg1) {
|
|
1607
|
+
const ret = new WebSocket(getStringFromWasm0(arg0, arg1));
|
|
1596
1608
|
return ret;
|
|
1597
1609
|
}, arguments); },
|
|
1598
|
-
|
|
1599
|
-
const ret = new
|
|
1600
|
-
return ret;
|
|
1601
|
-
},
|
|
1602
|
-
__wbg_new_dd2b680c8bf6ae29: function(arg0) {
|
|
1603
|
-
const ret = new Uint8Array(arg0);
|
|
1610
|
+
__wbg_new_fd94ca5c9639abd2: function(arg0) {
|
|
1611
|
+
const ret = new Date(arg0);
|
|
1604
1612
|
return ret;
|
|
1605
1613
|
},
|
|
1606
|
-
|
|
1614
|
+
__wbg_new_from_slice_22da9388ac046e50: function(arg0, arg1) {
|
|
1607
1615
|
const ret = new Uint8Array(getArrayU8FromWasm0(arg0, arg1));
|
|
1608
1616
|
return ret;
|
|
1609
1617
|
},
|
|
1610
|
-
|
|
1611
|
-
|
|
1618
|
+
__wbg_new_typed_aaaeaf29cf802876: function(arg0, arg1) {
|
|
1619
|
+
try {
|
|
1620
|
+
var state0 = {a: arg0, b: arg1};
|
|
1621
|
+
var cb0 = (arg0, arg1) => {
|
|
1622
|
+
const a = state0.a;
|
|
1623
|
+
state0.a = 0;
|
|
1624
|
+
try {
|
|
1625
|
+
return wasm_bindgen__convert__closures_____invoke__h0a7adf7d3880a828(a, state0.b, arg0, arg1);
|
|
1626
|
+
} finally {
|
|
1627
|
+
state0.a = a;
|
|
1628
|
+
}
|
|
1629
|
+
};
|
|
1630
|
+
const ret = new Promise(cb0);
|
|
1631
|
+
return ret;
|
|
1632
|
+
} finally {
|
|
1633
|
+
state0.a = state0.b = 0;
|
|
1634
|
+
}
|
|
1635
|
+
},
|
|
1636
|
+
__wbg_new_typed_bccac67128ed885a: function() {
|
|
1637
|
+
const ret = new Array();
|
|
1612
1638
|
return ret;
|
|
1613
1639
|
},
|
|
1614
|
-
|
|
1640
|
+
__wbg_new_with_length_825018a1616e9e55: function(arg0) {
|
|
1615
1641
|
const ret = new Uint8Array(arg0 >>> 0);
|
|
1616
1642
|
return ret;
|
|
1617
1643
|
},
|
|
1618
|
-
|
|
1644
|
+
__wbg_new_with_str_and_init_b4b54d1a819bc724: function() { return handleError(function (arg0, arg1, arg2) {
|
|
1619
1645
|
const ret = new Request(getStringFromWasm0(arg0, arg1), arg2);
|
|
1620
1646
|
return ret;
|
|
1621
1647
|
}, arguments); },
|
|
1622
|
-
|
|
1648
|
+
__wbg_next_11b99ee6237339e3: function() { return handleError(function (arg0) {
|
|
1623
1649
|
const ret = arg0.next();
|
|
1624
1650
|
return ret;
|
|
1625
1651
|
}, arguments); },
|
|
1626
|
-
|
|
1652
|
+
__wbg_next_e01a967809d1aa68: function(arg0) {
|
|
1627
1653
|
const ret = arg0.next;
|
|
1628
1654
|
return ret;
|
|
1629
1655
|
},
|
|
1630
|
-
|
|
1656
|
+
__wbg_node_84ea875411254db1: function(arg0) {
|
|
1631
1657
|
const ret = arg0.node;
|
|
1632
1658
|
return ret;
|
|
1633
1659
|
},
|
|
1634
|
-
|
|
1660
|
+
__wbg_now_16f0c993d5dd6c27: function() {
|
|
1635
1661
|
const ret = Date.now();
|
|
1636
1662
|
return ret;
|
|
1637
|
-
}, arguments); },
|
|
1638
|
-
__wbg_now_71123b9940376874: function(arg0) {
|
|
1639
|
-
const ret = arg0.now();
|
|
1640
|
-
return ret;
|
|
1641
1663
|
},
|
|
1642
|
-
|
|
1664
|
+
__wbg_now_67c2115a7c146997: function() { return handleError(function () {
|
|
1643
1665
|
const ret = Date.now();
|
|
1644
1666
|
return ret;
|
|
1667
|
+
}, arguments); },
|
|
1668
|
+
__wbg_now_6c1d1e978b8b5f6e: function(arg0) {
|
|
1669
|
+
const ret = arg0.now();
|
|
1670
|
+
return ret;
|
|
1645
1671
|
},
|
|
1646
|
-
|
|
1672
|
+
__wbg_now_c6d7a7d35f74f6f1: function(arg0) {
|
|
1647
1673
|
const ret = arg0.now();
|
|
1648
1674
|
return ret;
|
|
1649
1675
|
},
|
|
1650
|
-
|
|
1676
|
+
__wbg_objectStoreNames_564985d2e9ae7523: function(arg0) {
|
|
1651
1677
|
const ret = arg0.objectStoreNames;
|
|
1652
1678
|
return ret;
|
|
1653
1679
|
},
|
|
1654
|
-
|
|
1680
|
+
__wbg_objectStore_f314ab152a5c7bd0: function() { return handleError(function (arg0, arg1, arg2) {
|
|
1655
1681
|
const ret = arg0.objectStore(getStringFromWasm0(arg1, arg2));
|
|
1656
1682
|
return ret;
|
|
1657
1683
|
}, arguments); },
|
|
1658
|
-
|
|
1659
|
-
const ret = arg0.openCursor(arg1);
|
|
1660
|
-
return ret;
|
|
1661
|
-
}, arguments); },
|
|
1662
|
-
__wbg_openCursor_2df325852ae85998: function() { return handleError(function (arg0) {
|
|
1684
|
+
__wbg_openCursor_7f0cc3f660850dc1: function() { return handleError(function (arg0) {
|
|
1663
1685
|
const ret = arg0.openCursor();
|
|
1664
1686
|
return ret;
|
|
1665
1687
|
}, arguments); },
|
|
1666
|
-
|
|
1688
|
+
__wbg_openCursor_92dbb828857828a4: function() { return handleError(function (arg0, arg1, arg2) {
|
|
1667
1689
|
const ret = arg0.openCursor(arg1, __wbindgen_enum_IdbCursorDirection[arg2]);
|
|
1668
1690
|
return ret;
|
|
1669
1691
|
}, arguments); },
|
|
1670
|
-
|
|
1671
|
-
const ret = arg0.
|
|
1692
|
+
__wbg_openCursor_d2c404b7a149da6b: function() { return handleError(function (arg0, arg1) {
|
|
1693
|
+
const ret = arg0.openCursor(arg1);
|
|
1672
1694
|
return ret;
|
|
1673
1695
|
}, arguments); },
|
|
1674
|
-
|
|
1696
|
+
__wbg_open_e7a9d3d6344572f6: function() { return handleError(function (arg0, arg1, arg2, arg3) {
|
|
1675
1697
|
const ret = arg0.open(getStringFromWasm0(arg1, arg2), arg3 >>> 0);
|
|
1676
1698
|
return ret;
|
|
1677
1699
|
}, arguments); },
|
|
1678
|
-
|
|
1700
|
+
__wbg_open_f3dc09caa3990bc4: function() { return handleError(function (arg0, arg1, arg2) {
|
|
1701
|
+
const ret = arg0.open(getStringFromWasm0(arg1, arg2));
|
|
1702
|
+
return ret;
|
|
1703
|
+
}, arguments); },
|
|
1704
|
+
__wbg_performance_9df3cb88b297e33d: function(arg0) {
|
|
1679
1705
|
const ret = arg0.performance;
|
|
1680
1706
|
return ret;
|
|
1681
1707
|
},
|
|
1682
|
-
|
|
1708
|
+
__wbg_postMessage_564f0071531c08c3: function() { return handleError(function (arg0, arg1) {
|
|
1683
1709
|
arg0.postMessage(arg1);
|
|
1684
1710
|
}, arguments); },
|
|
1685
|
-
|
|
1711
|
+
__wbg_process_44c7a14e11e9f69e: function(arg0) {
|
|
1686
1712
|
const ret = arg0.process;
|
|
1687
1713
|
return ret;
|
|
1688
1714
|
},
|
|
1689
|
-
|
|
1715
|
+
__wbg_prototypesetcall_d62e5099504357e6: function(arg0, arg1, arg2) {
|
|
1690
1716
|
Uint8Array.prototype.set.call(getArrayU8FromWasm0(arg0, arg1), arg2);
|
|
1691
1717
|
},
|
|
1692
|
-
|
|
1718
|
+
__wbg_push_e87b0e732085a946: function(arg0, arg1) {
|
|
1693
1719
|
const ret = arg0.push(arg1);
|
|
1694
1720
|
return ret;
|
|
1695
1721
|
},
|
|
1696
|
-
|
|
1697
|
-
const ret = arg0.put(arg1
|
|
1722
|
+
__wbg_put_ae369598c083f1f5: function() { return handleError(function (arg0, arg1) {
|
|
1723
|
+
const ret = arg0.put(arg1);
|
|
1698
1724
|
return ret;
|
|
1699
1725
|
}, arguments); },
|
|
1700
|
-
|
|
1701
|
-
const ret = arg0.put(arg1);
|
|
1726
|
+
__wbg_put_f1673d719f93ce22: function() { return handleError(function (arg0, arg1, arg2) {
|
|
1727
|
+
const ret = arg0.put(arg1, arg2);
|
|
1702
1728
|
return ret;
|
|
1703
1729
|
}, arguments); },
|
|
1704
|
-
|
|
1730
|
+
__wbg_queueMicrotask_0c399741342fb10f: function(arg0) {
|
|
1705
1731
|
const ret = arg0.queueMicrotask;
|
|
1706
1732
|
return ret;
|
|
1707
1733
|
},
|
|
1708
|
-
|
|
1734
|
+
__wbg_queueMicrotask_a082d78ce798393e: function(arg0) {
|
|
1709
1735
|
queueMicrotask(arg0);
|
|
1710
1736
|
},
|
|
1711
|
-
|
|
1737
|
+
__wbg_randomFillSync_6c25eac9869eb53c: function() { return handleError(function (arg0, arg1) {
|
|
1712
1738
|
arg0.randomFillSync(arg1);
|
|
1713
1739
|
}, arguments); },
|
|
1714
|
-
|
|
1740
|
+
__wbg_readyState_1f1e7f1bdf9f4d42: function(arg0) {
|
|
1715
1741
|
const ret = arg0.readyState;
|
|
1716
1742
|
return ret;
|
|
1717
1743
|
},
|
|
1718
|
-
|
|
1744
|
+
__wbg_reason_cbcb9911796c4714: function(arg0, arg1) {
|
|
1719
1745
|
const ret = arg1.reason;
|
|
1720
1746
|
const ptr1 = passStringToWasm0(ret, wasm.__wbindgen_malloc, wasm.__wbindgen_realloc);
|
|
1721
1747
|
const len1 = WASM_VECTOR_LEN;
|
|
1722
1748
|
getDataViewMemory0().setInt32(arg0 + 4 * 1, len1, true);
|
|
1723
1749
|
getDataViewMemory0().setInt32(arg0 + 4 * 0, ptr1, true);
|
|
1724
1750
|
},
|
|
1725
|
-
|
|
1751
|
+
__wbg_require_b4edbdcf3e2a1ef0: function() { return handleError(function () {
|
|
1726
1752
|
const ret = module.require;
|
|
1727
1753
|
return ret;
|
|
1728
1754
|
}, arguments); },
|
|
1729
|
-
|
|
1755
|
+
__wbg_resolve_ae8d83246e5bcc12: function(arg0) {
|
|
1730
1756
|
const ret = Promise.resolve(arg0);
|
|
1731
1757
|
return ret;
|
|
1732
1758
|
},
|
|
1733
|
-
|
|
1759
|
+
__wbg_result_c5baa2d3d690a01a: function() { return handleError(function (arg0) {
|
|
1734
1760
|
const ret = arg0.result;
|
|
1735
1761
|
return ret;
|
|
1736
1762
|
}, arguments); },
|
|
1737
|
-
|
|
1738
|
-
arg0.send(getArrayU8FromWasm0(arg1, arg2));
|
|
1739
|
-
}, arguments); },
|
|
1740
|
-
__wbg_send_bc0336a1b5ce4fb7: function() { return handleError(function (arg0, arg1, arg2) {
|
|
1763
|
+
__wbg_send_4a1dc66e8653e5ed: function() { return handleError(function (arg0, arg1, arg2) {
|
|
1741
1764
|
arg0.send(getStringFromWasm0(arg1, arg2));
|
|
1742
1765
|
}, arguments); },
|
|
1743
|
-
|
|
1766
|
+
__wbg_send_d31a693c975dea74: function() { return handleError(function (arg0, arg1, arg2) {
|
|
1767
|
+
arg0.send(getArrayU8FromWasm0(arg1, arg2));
|
|
1768
|
+
}, arguments); },
|
|
1769
|
+
__wbg_setInterval_589c59a1e7427be3: function(arg0, arg1) {
|
|
1744
1770
|
const ret = globalThis.setInterval(arg0, arg1);
|
|
1745
1771
|
return ret;
|
|
1746
1772
|
},
|
|
1747
|
-
|
|
1748
|
-
const ret = setTimeout(arg0, arg1);
|
|
1749
|
-
return ret;
|
|
1750
|
-
},
|
|
1751
|
-
__wbg_setTimeout_c3c682fa1d6caf77: function(arg0, arg1) {
|
|
1773
|
+
__wbg_setTimeout_3b5e32486c12c54e: function(arg0, arg1) {
|
|
1752
1774
|
globalThis.setTimeout(arg0, arg1);
|
|
1753
1775
|
},
|
|
1754
|
-
|
|
1755
|
-
const ret = setTimeout(
|
|
1776
|
+
__wbg_setTimeout_53a884cc10ca946c: function() { return handleError(function (arg0, arg1, arg2) {
|
|
1777
|
+
const ret = arg0.setTimeout(arg1, arg2);
|
|
1756
1778
|
return ret;
|
|
1757
1779
|
}, arguments); },
|
|
1758
|
-
|
|
1759
|
-
const ret =
|
|
1780
|
+
__wbg_setTimeout_ef24d2fc3ad97385: function() { return handleError(function (arg0, arg1) {
|
|
1781
|
+
const ret = setTimeout(arg0, arg1);
|
|
1760
1782
|
return ret;
|
|
1761
1783
|
}, arguments); },
|
|
1762
|
-
|
|
1763
|
-
const ret = arg0
|
|
1784
|
+
__wbg_setTimeout_f757f00851f76c42: function(arg0, arg1) {
|
|
1785
|
+
const ret = setTimeout(arg0, arg1);
|
|
1764
1786
|
return ret;
|
|
1765
1787
|
},
|
|
1766
|
-
|
|
1788
|
+
__wbg_set_282384002438957f: function(arg0, arg1, arg2) {
|
|
1789
|
+
arg0[arg1 >>> 0] = arg2;
|
|
1790
|
+
},
|
|
1791
|
+
__wbg_set_6be42768c690e380: function(arg0, arg1, arg2) {
|
|
1767
1792
|
arg0[arg1] = arg2;
|
|
1768
1793
|
},
|
|
1769
|
-
|
|
1794
|
+
__wbg_set_auto_increment_ffc3cd6470763a4c: function(arg0, arg1) {
|
|
1770
1795
|
arg0.autoIncrement = arg1 !== 0;
|
|
1771
1796
|
},
|
|
1772
|
-
|
|
1797
|
+
__wbg_set_bf7251625df30a02: function(arg0, arg1, arg2) {
|
|
1798
|
+
const ret = arg0.set(arg1, arg2);
|
|
1799
|
+
return ret;
|
|
1800
|
+
},
|
|
1801
|
+
__wbg_set_binaryType_3dcf8281ec100a8f: function(arg0, arg1) {
|
|
1773
1802
|
arg0.binaryType = __wbindgen_enum_BinaryType[arg1];
|
|
1774
1803
|
},
|
|
1775
|
-
|
|
1804
|
+
__wbg_set_body_a3d856b097dfda04: function(arg0, arg1) {
|
|
1776
1805
|
arg0.body = arg1;
|
|
1777
1806
|
},
|
|
1778
|
-
|
|
1807
|
+
__wbg_set_cache_ec7e430c6056ebda: function(arg0, arg1) {
|
|
1779
1808
|
arg0.cache = __wbindgen_enum_RequestCache[arg1];
|
|
1780
1809
|
},
|
|
1781
|
-
|
|
1810
|
+
__wbg_set_credentials_ed63183445882c65: function(arg0, arg1) {
|
|
1782
1811
|
arg0.credentials = __wbindgen_enum_RequestCredentials[arg1];
|
|
1783
1812
|
},
|
|
1784
|
-
|
|
1785
|
-
arg0[arg1 >>> 0] = arg2;
|
|
1786
|
-
},
|
|
1787
|
-
__wbg_set_headers_cfc5f4b2c1f20549: function(arg0, arg1) {
|
|
1813
|
+
__wbg_set_headers_3c8fecc693b75327: function(arg0, arg1) {
|
|
1788
1814
|
arg0.headers = arg1;
|
|
1789
1815
|
},
|
|
1790
|
-
|
|
1816
|
+
__wbg_set_key_path_3c45a8ff0b89e678: function(arg0, arg1) {
|
|
1791
1817
|
arg0.keyPath = arg1;
|
|
1792
1818
|
},
|
|
1793
|
-
|
|
1819
|
+
__wbg_set_method_8c015e8bcafd7be1: function(arg0, arg1, arg2) {
|
|
1794
1820
|
arg0.method = getStringFromWasm0(arg1, arg2);
|
|
1795
1821
|
},
|
|
1796
|
-
|
|
1822
|
+
__wbg_set_mode_5a87f2c809cf37c2: function(arg0, arg1) {
|
|
1797
1823
|
arg0.mode = __wbindgen_enum_RequestMode[arg1];
|
|
1798
1824
|
},
|
|
1799
|
-
|
|
1825
|
+
__wbg_set_multi_entry_38c253febe05d3be: function(arg0, arg1) {
|
|
1800
1826
|
arg0.multiEntry = arg1 !== 0;
|
|
1801
1827
|
},
|
|
1802
|
-
|
|
1828
|
+
__wbg_set_onabort_63885d8d7841a8d5: function(arg0, arg1) {
|
|
1803
1829
|
arg0.onabort = arg1;
|
|
1804
1830
|
},
|
|
1805
|
-
|
|
1831
|
+
__wbg_set_onclose_8da801226bdd7a7b: function(arg0, arg1) {
|
|
1806
1832
|
arg0.onclose = arg1;
|
|
1807
1833
|
},
|
|
1808
|
-
|
|
1834
|
+
__wbg_set_oncomplete_f31e6dc6d16c1ff8: function(arg0, arg1) {
|
|
1809
1835
|
arg0.oncomplete = arg1;
|
|
1810
1836
|
},
|
|
1811
|
-
|
|
1837
|
+
__wbg_set_onerror_8a268cb237177bba: function(arg0, arg1) {
|
|
1812
1838
|
arg0.onerror = arg1;
|
|
1813
1839
|
},
|
|
1814
|
-
|
|
1840
|
+
__wbg_set_onerror_901ca711f94a5bbb: function(arg0, arg1) {
|
|
1815
1841
|
arg0.onerror = arg1;
|
|
1816
1842
|
},
|
|
1817
|
-
|
|
1843
|
+
__wbg_set_onerror_c1ecd6233c533c08: function(arg0, arg1) {
|
|
1818
1844
|
arg0.onerror = arg1;
|
|
1819
1845
|
},
|
|
1820
|
-
|
|
1846
|
+
__wbg_set_onmessage_6f80ab771bf151aa: function(arg0, arg1) {
|
|
1821
1847
|
arg0.onmessage = arg1;
|
|
1822
1848
|
},
|
|
1823
|
-
|
|
1849
|
+
__wbg_set_onopen_34e3e24cf9337ddd: function(arg0, arg1) {
|
|
1824
1850
|
arg0.onopen = arg1;
|
|
1825
1851
|
},
|
|
1826
|
-
|
|
1852
|
+
__wbg_set_onsuccess_fca94ded107b64af: function(arg0, arg1) {
|
|
1827
1853
|
arg0.onsuccess = arg1;
|
|
1828
1854
|
},
|
|
1829
|
-
|
|
1855
|
+
__wbg_set_onupgradeneeded_860ce42184f987e7: function(arg0, arg1) {
|
|
1830
1856
|
arg0.onupgradeneeded = arg1;
|
|
1831
1857
|
},
|
|
1832
|
-
|
|
1858
|
+
__wbg_set_signal_0cebecb698f25d21: function(arg0, arg1) {
|
|
1833
1859
|
arg0.signal = arg1;
|
|
1834
1860
|
},
|
|
1835
|
-
|
|
1861
|
+
__wbg_set_unique_a39d85db47f8e025: function(arg0, arg1) {
|
|
1836
1862
|
arg0.unique = arg1 !== 0;
|
|
1837
1863
|
},
|
|
1838
|
-
|
|
1864
|
+
__wbg_signal_166e1da31adcac18: function(arg0) {
|
|
1839
1865
|
const ret = arg0.signal;
|
|
1840
1866
|
return ret;
|
|
1841
1867
|
},
|
|
1842
|
-
|
|
1868
|
+
__wbg_stack_3b0d974bbf31e44f: function(arg0, arg1) {
|
|
1843
1869
|
const ret = arg1.stack;
|
|
1844
1870
|
const ptr1 = passStringToWasm0(ret, wasm.__wbindgen_malloc, wasm.__wbindgen_realloc);
|
|
1845
1871
|
const len1 = WASM_VECTOR_LEN;
|
|
1846
1872
|
getDataViewMemory0().setInt32(arg0 + 4 * 1, len1, true);
|
|
1847
1873
|
getDataViewMemory0().setInt32(arg0 + 4 * 0, ptr1, true);
|
|
1848
1874
|
},
|
|
1849
|
-
|
|
1875
|
+
__wbg_static_accessor_GLOBAL_8adb955bd33fac2f: function() {
|
|
1850
1876
|
const ret = typeof global === 'undefined' ? null : global;
|
|
1851
1877
|
return isLikeNone(ret) ? 0 : addToExternrefTable0(ret);
|
|
1852
1878
|
},
|
|
1853
|
-
|
|
1879
|
+
__wbg_static_accessor_GLOBAL_THIS_ad356e0db91c7913: function() {
|
|
1854
1880
|
const ret = typeof globalThis === 'undefined' ? null : globalThis;
|
|
1855
1881
|
return isLikeNone(ret) ? 0 : addToExternrefTable0(ret);
|
|
1856
1882
|
},
|
|
1857
|
-
|
|
1883
|
+
__wbg_static_accessor_SELF_f207c857566db248: function() {
|
|
1858
1884
|
const ret = typeof self === 'undefined' ? null : self;
|
|
1859
1885
|
return isLikeNone(ret) ? 0 : addToExternrefTable0(ret);
|
|
1860
1886
|
},
|
|
1861
|
-
|
|
1887
|
+
__wbg_static_accessor_WINDOW_bb9f1ba69d61b386: function() {
|
|
1862
1888
|
const ret = typeof window === 'undefined' ? null : window;
|
|
1863
1889
|
return isLikeNone(ret) ? 0 : addToExternrefTable0(ret);
|
|
1864
1890
|
},
|
|
1865
|
-
|
|
1891
|
+
__wbg_status_318629ab93a22955: function(arg0) {
|
|
1866
1892
|
const ret = arg0.status;
|
|
1867
1893
|
return ret;
|
|
1868
1894
|
},
|
|
1869
|
-
|
|
1895
|
+
__wbg_stringify_5ae93966a84901ac: function() { return handleError(function (arg0) {
|
|
1870
1896
|
const ret = JSON.stringify(arg0);
|
|
1871
1897
|
return ret;
|
|
1872
1898
|
}, arguments); },
|
|
1873
|
-
|
|
1899
|
+
__wbg_subarray_a068d24e39478a8a: function(arg0, arg1, arg2) {
|
|
1874
1900
|
const ret = arg0.subarray(arg1 >>> 0, arg2 >>> 0);
|
|
1875
1901
|
return ret;
|
|
1876
1902
|
},
|
|
1877
|
-
|
|
1903
|
+
__wbg_target_7bc90f314634b37b: function(arg0) {
|
|
1878
1904
|
const ret = arg0.target;
|
|
1879
1905
|
return isLikeNone(ret) ? 0 : addToExternrefTable0(ret);
|
|
1880
1906
|
},
|
|
1881
|
-
|
|
1882
|
-
const ret = arg0.then(arg1
|
|
1907
|
+
__wbg_then_098abe61755d12f6: function(arg0, arg1) {
|
|
1908
|
+
const ret = arg0.then(arg1);
|
|
1883
1909
|
return ret;
|
|
1884
1910
|
},
|
|
1885
|
-
|
|
1886
|
-
const ret = arg0.then(arg1);
|
|
1911
|
+
__wbg_then_9e335f6dd892bc11: function(arg0, arg1, arg2) {
|
|
1912
|
+
const ret = arg0.then(arg1, arg2);
|
|
1887
1913
|
return ret;
|
|
1888
1914
|
},
|
|
1889
|
-
|
|
1915
|
+
__wbg_toString_fca8b5e46235cfb4: function(arg0) {
|
|
1890
1916
|
const ret = arg0.toString();
|
|
1891
1917
|
return ret;
|
|
1892
1918
|
},
|
|
1893
|
-
|
|
1894
|
-
const ret = arg0.transaction;
|
|
1895
|
-
return isLikeNone(ret) ? 0 : addToExternrefTable0(ret);
|
|
1896
|
-
},
|
|
1897
|
-
__wbg_transaction_c407989db8e62119: function() { return handleError(function (arg0, arg1, arg2) {
|
|
1919
|
+
__wbg_transaction_3223f7c8d0f40129: function() { return handleError(function (arg0, arg1, arg2) {
|
|
1898
1920
|
const ret = arg0.transaction(arg1, __wbindgen_enum_IdbTransactionMode[arg2]);
|
|
1899
1921
|
return ret;
|
|
1900
1922
|
}, arguments); },
|
|
1901
|
-
|
|
1923
|
+
__wbg_transaction_fda57653957fee06: function(arg0) {
|
|
1924
|
+
const ret = arg0.transaction;
|
|
1925
|
+
return isLikeNone(ret) ? 0 : addToExternrefTable0(ret);
|
|
1926
|
+
},
|
|
1927
|
+
__wbg_url_778f9516ea867e17: function(arg0, arg1) {
|
|
1902
1928
|
const ret = arg1.url;
|
|
1903
1929
|
const ptr1 = passStringToWasm0(ret, wasm.__wbindgen_malloc, wasm.__wbindgen_realloc);
|
|
1904
1930
|
const len1 = WASM_VECTOR_LEN;
|
|
1905
1931
|
getDataViewMemory0().setInt32(arg0 + 4 * 1, len1, true);
|
|
1906
1932
|
getDataViewMemory0().setInt32(arg0 + 4 * 0, ptr1, true);
|
|
1907
1933
|
},
|
|
1908
|
-
|
|
1934
|
+
__wbg_url_7fefc1820fba4e0c: function(arg0, arg1) {
|
|
1909
1935
|
const ret = arg1.url;
|
|
1910
1936
|
const ptr1 = passStringToWasm0(ret, wasm.__wbindgen_malloc, wasm.__wbindgen_realloc);
|
|
1911
1937
|
const len1 = WASM_VECTOR_LEN;
|
|
1912
1938
|
getDataViewMemory0().setInt32(arg0 + 4 * 1, len1, true);
|
|
1913
1939
|
getDataViewMemory0().setInt32(arg0 + 4 * 0, ptr1, true);
|
|
1914
1940
|
},
|
|
1915
|
-
|
|
1941
|
+
__wbg_value_21fc78aab0322612: function(arg0) {
|
|
1916
1942
|
const ret = arg0.value;
|
|
1917
1943
|
return ret;
|
|
1918
1944
|
},
|
|
1919
|
-
|
|
1945
|
+
__wbg_value_79629bd10d556879: function() { return handleError(function (arg0) {
|
|
1920
1946
|
const ret = arg0.value;
|
|
1921
1947
|
return ret;
|
|
1922
1948
|
}, arguments); },
|
|
1923
|
-
|
|
1949
|
+
__wbg_versions_276b2795b1c6a219: function(arg0) {
|
|
1924
1950
|
const ret = arg0.versions;
|
|
1925
1951
|
return ret;
|
|
1926
1952
|
},
|
|
1927
|
-
|
|
1953
|
+
__wbg_warn_809cad1bfc2b3a42: function(arg0, arg1, arg2, arg3) {
|
|
1928
1954
|
console.warn(arg0, arg1, arg2, arg3);
|
|
1929
1955
|
},
|
|
1930
|
-
|
|
1956
|
+
__wbg_wasClean_69f68dc4ed2d2cc7: function(arg0) {
|
|
1931
1957
|
const ret = arg0.wasClean;
|
|
1932
1958
|
return ret;
|
|
1933
1959
|
},
|
|
1934
1960
|
__wbindgen_cast_0000000000000001: function(arg0, arg1) {
|
|
1935
|
-
// Cast intrinsic for `Closure(Closure { dtor_idx:
|
|
1936
|
-
const ret = makeMutClosure(arg0, arg1, wasm.
|
|
1961
|
+
// Cast intrinsic for `Closure(Closure { dtor_idx: 61, function: Function { arguments: [Externref], shim_idx: 666, ret: Result(Unit), inner_ret: Some(Result(Unit)) }, mutable: true }) -> Externref`.
|
|
1962
|
+
const ret = makeMutClosure(arg0, arg1, wasm.wasm_bindgen__closure__destroy__h2b64577c0d30e7ff, wasm_bindgen__convert__closures_____invoke__h6aec09e193342f93);
|
|
1937
1963
|
return ret;
|
|
1938
1964
|
},
|
|
1939
1965
|
__wbindgen_cast_0000000000000002: function(arg0, arg1) {
|
|
1940
|
-
// Cast intrinsic for `Closure(Closure { dtor_idx:
|
|
1941
|
-
const ret = makeMutClosure(arg0, arg1, wasm.
|
|
1966
|
+
// Cast intrinsic for `Closure(Closure { dtor_idx: 61, function: Function { arguments: [NamedExternref("CloseEvent")], shim_idx: 322, ret: Unit, inner_ret: Some(Unit) }, mutable: true }) -> Externref`.
|
|
1967
|
+
const ret = makeMutClosure(arg0, arg1, wasm.wasm_bindgen__closure__destroy__h2b64577c0d30e7ff, wasm_bindgen__convert__closures_____invoke__h60259d0a007c8ff6);
|
|
1942
1968
|
return ret;
|
|
1943
1969
|
},
|
|
1944
1970
|
__wbindgen_cast_0000000000000003: function(arg0, arg1) {
|
|
1945
|
-
// Cast intrinsic for `Closure(Closure { dtor_idx:
|
|
1946
|
-
const ret = makeMutClosure(arg0, arg1, wasm.
|
|
1971
|
+
// Cast intrinsic for `Closure(Closure { dtor_idx: 61, function: Function { arguments: [NamedExternref("MessageEvent")], shim_idx: 322, ret: Unit, inner_ret: Some(Unit) }, mutable: true }) -> Externref`.
|
|
1972
|
+
const ret = makeMutClosure(arg0, arg1, wasm.wasm_bindgen__closure__destroy__h2b64577c0d30e7ff, wasm_bindgen__convert__closures_____invoke__h60259d0a007c8ff6_2);
|
|
1947
1973
|
return ret;
|
|
1948
1974
|
},
|
|
1949
1975
|
__wbindgen_cast_0000000000000004: function(arg0, arg1) {
|
|
1950
|
-
// Cast intrinsic for `Closure(Closure { dtor_idx:
|
|
1951
|
-
const ret = makeMutClosure(arg0, arg1, wasm.
|
|
1976
|
+
// Cast intrinsic for `Closure(Closure { dtor_idx: 61, function: Function { arguments: [], shim_idx: 325, ret: Unit, inner_ret: Some(Unit) }, mutable: true }) -> Externref`.
|
|
1977
|
+
const ret = makeMutClosure(arg0, arg1, wasm.wasm_bindgen__closure__destroy__h2b64577c0d30e7ff, wasm_bindgen__convert__closures_____invoke__h3af009eb2e384dae);
|
|
1952
1978
|
return ret;
|
|
1953
1979
|
},
|
|
1954
1980
|
__wbindgen_cast_0000000000000005: function(arg0, arg1) {
|
|
1955
|
-
// Cast intrinsic for `Closure(Closure { dtor_idx:
|
|
1956
|
-
const ret = makeClosure(arg0, arg1, wasm.
|
|
1981
|
+
// Cast intrinsic for `Closure(Closure { dtor_idx: 61, function: Function { arguments: [], shim_idx: 62, ret: Unit, inner_ret: Some(Unit) }, mutable: false }) -> Externref`.
|
|
1982
|
+
const ret = makeClosure(arg0, arg1, wasm.wasm_bindgen__closure__destroy__h2b64577c0d30e7ff, wasm_bindgen__convert__closures_____invoke__hf807c24f46a17e5e);
|
|
1957
1983
|
return ret;
|
|
1958
1984
|
},
|
|
1959
1985
|
__wbindgen_cast_0000000000000006: function(arg0, arg1) {
|
|
1960
|
-
// Cast intrinsic for `Closure(Closure { dtor_idx:
|
|
1961
|
-
const ret = makeMutClosure(arg0, arg1, wasm.
|
|
1986
|
+
// Cast intrinsic for `Closure(Closure { dtor_idx: 887, function: Function { arguments: [], shim_idx: 325, ret: Unit, inner_ret: Some(Unit) }, mutable: true }) -> Externref`.
|
|
1987
|
+
const ret = makeMutClosure(arg0, arg1, wasm.wasm_bindgen__closure__destroy__h56f6a1c416286713, wasm_bindgen__convert__closures_____invoke__h3af009eb2e384dae);
|
|
1962
1988
|
return ret;
|
|
1963
1989
|
},
|
|
1964
1990
|
__wbindgen_cast_0000000000000007: function(arg0, arg1) {
|
|
1965
|
-
// Cast intrinsic for `Closure(Closure { dtor_idx:
|
|
1966
|
-
const ret = makeMutClosure(arg0, arg1, wasm.
|
|
1991
|
+
// Cast intrinsic for `Closure(Closure { dtor_idx: 892, function: Function { arguments: [NamedExternref("Event")], shim_idx: 893, ret: Result(Unit), inner_ret: Some(Result(Unit)) }, mutable: true }) -> Externref`.
|
|
1992
|
+
const ret = makeMutClosure(arg0, arg1, wasm.wasm_bindgen__closure__destroy__h2681b741ef6c8dcf, wasm_bindgen__convert__closures_____invoke__h5f1e16860b61a77a);
|
|
1967
1993
|
return ret;
|
|
1968
1994
|
},
|
|
1969
1995
|
__wbindgen_cast_0000000000000008: function(arg0) {
|
|
@@ -2007,27 +2033,38 @@ function __wbg_get_imports() {
|
|
|
2007
2033
|
};
|
|
2008
2034
|
}
|
|
2009
2035
|
|
|
2010
|
-
function
|
|
2011
|
-
wasm.
|
|
2036
|
+
function wasm_bindgen__convert__closures_____invoke__h3af009eb2e384dae(arg0, arg1) {
|
|
2037
|
+
wasm.wasm_bindgen__convert__closures_____invoke__h3af009eb2e384dae(arg0, arg1);
|
|
2038
|
+
}
|
|
2039
|
+
|
|
2040
|
+
function wasm_bindgen__convert__closures_____invoke__hf807c24f46a17e5e(arg0, arg1) {
|
|
2041
|
+
wasm.wasm_bindgen__convert__closures_____invoke__hf807c24f46a17e5e(arg0, arg1);
|
|
2042
|
+
}
|
|
2043
|
+
|
|
2044
|
+
function wasm_bindgen__convert__closures_____invoke__h60259d0a007c8ff6(arg0, arg1, arg2) {
|
|
2045
|
+
wasm.wasm_bindgen__convert__closures_____invoke__h60259d0a007c8ff6(arg0, arg1, arg2);
|
|
2012
2046
|
}
|
|
2013
2047
|
|
|
2014
|
-
function
|
|
2015
|
-
wasm.
|
|
2048
|
+
function wasm_bindgen__convert__closures_____invoke__h60259d0a007c8ff6_2(arg0, arg1, arg2) {
|
|
2049
|
+
wasm.wasm_bindgen__convert__closures_____invoke__h60259d0a007c8ff6_2(arg0, arg1, arg2);
|
|
2016
2050
|
}
|
|
2017
2051
|
|
|
2018
|
-
function
|
|
2019
|
-
wasm.
|
|
2052
|
+
function wasm_bindgen__convert__closures_____invoke__h6aec09e193342f93(arg0, arg1, arg2) {
|
|
2053
|
+
const ret = wasm.wasm_bindgen__convert__closures_____invoke__h6aec09e193342f93(arg0, arg1, arg2);
|
|
2054
|
+
if (ret[1]) {
|
|
2055
|
+
throw takeFromExternrefTable0(ret[0]);
|
|
2056
|
+
}
|
|
2020
2057
|
}
|
|
2021
2058
|
|
|
2022
|
-
function
|
|
2023
|
-
const ret = wasm.
|
|
2059
|
+
function wasm_bindgen__convert__closures_____invoke__h5f1e16860b61a77a(arg0, arg1, arg2) {
|
|
2060
|
+
const ret = wasm.wasm_bindgen__convert__closures_____invoke__h5f1e16860b61a77a(arg0, arg1, arg2);
|
|
2024
2061
|
if (ret[1]) {
|
|
2025
2062
|
throw takeFromExternrefTable0(ret[0]);
|
|
2026
2063
|
}
|
|
2027
2064
|
}
|
|
2028
2065
|
|
|
2029
|
-
function
|
|
2030
|
-
wasm.
|
|
2066
|
+
function wasm_bindgen__convert__closures_____invoke__h0a7adf7d3880a828(arg0, arg1, arg2, arg3) {
|
|
2067
|
+
wasm.wasm_bindgen__convert__closures_____invoke__h0a7adf7d3880a828(arg0, arg1, arg2, arg3);
|
|
2031
2068
|
}
|
|
2032
2069
|
|
|
2033
2070
|
|
package/index_bg.wasm
CHANGED
|
Binary file
|