pdf-master-landing 0.0.1
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- package/README.md +82 -0
- package/bin/deploy.mjs +164 -0
- package/dist/_diag.html +159 -0
- package/dist/app/.last_build_id +1 -0
- package/dist/app/README.md +49 -0
- package/dist/app/apple-touch-icon.png +0 -0
- package/dist/app/assets/AssetManifest.bin +1 -0
- package/dist/app/assets/AssetManifest.bin.json +1 -0
- package/dist/app/assets/FontManifest.json +1 -0
- package/dist/app/assets/NOTICES +33124 -0
- package/dist/app/assets/assets/branding/app_brand.png +0 -0
- package/dist/app/assets/assets/fonts/MiSans-Medium.ttf +0 -0
- package/dist/app/assets/assets/fonts/MiSans-Regular.ttf +0 -0
- package/dist/app/assets/assets/fonts/MiSans-Semibold.ttf +0 -0
- package/dist/app/assets/fonts/MaterialIcons-Regular.otf +0 -0
- package/dist/app/assets/packages/pdfrx/assets/pdfium.wasm +0 -0
- package/dist/app/assets/packages/pdfrx/assets/pdfium_client.js +65 -0
- package/dist/app/assets/packages/pdfrx/assets/pdfium_worker.js +5206 -0
- package/dist/app/assets/packages/toastification/assets/fonts/Toastification_icons.ttf +0 -0
- package/dist/app/assets/shaders/ink_sparkle.frag +127 -0
- package/dist/app/assets/shaders/stretch_effect.frag +64 -0
- package/dist/app/canvaskit/canvaskit.js +193 -0
- package/dist/app/canvaskit/canvaskit.js.symbols +12204 -0
- package/dist/app/canvaskit/canvaskit.wasm +0 -0
- package/dist/app/canvaskit/chromium/canvaskit.js +193 -0
- package/dist/app/canvaskit/chromium/canvaskit.js.symbols +11156 -0
- package/dist/app/canvaskit/chromium/canvaskit.wasm +0 -0
- package/dist/app/canvaskit/experimental_webparagraph/canvaskit.js +171 -0
- package/dist/app/canvaskit/experimental_webparagraph/canvaskit.js.symbols +9134 -0
- package/dist/app/canvaskit/experimental_webparagraph/canvaskit.wasm +0 -0
- package/dist/app/canvaskit/skwasm.js +146 -0
- package/dist/app/canvaskit/skwasm.js.symbols +12943 -0
- package/dist/app/canvaskit/skwasm.wasm +0 -0
- package/dist/app/canvaskit/skwasm_heavy.js +146 -0
- package/dist/app/canvaskit/skwasm_heavy.js.symbols +14568 -0
- package/dist/app/canvaskit/skwasm_heavy.wasm +0 -0
- package/dist/app/canvaskit/wimp.js +135 -0
- package/dist/app/canvaskit/wimp.js.symbols +11461 -0
- package/dist/app/canvaskit/wimp.wasm +0 -0
- package/dist/app/drift_worker.dart.js +13271 -0
- package/dist/app/favicon-32.png +0 -0
- package/dist/app/favicon-96.png +0 -0
- package/dist/app/flutter.js +31 -0
- package/dist/app/flutter_bootstrap.js +42 -0
- package/dist/app/flutter_service_worker.js +31 -0
- package/dist/app/icons/Icon-192.png +0 -0
- package/dist/app/icons/Icon-512.png +0 -0
- package/dist/app/icons/Icon-maskable-192.png +0 -0
- package/dist/app/icons/Icon-maskable-512.png +0 -0
- package/dist/app/index.html +59 -0
- package/dist/app/main.dart.js +162645 -0
- package/dist/app/main.dart.mjs +1216 -0
- package/dist/app/main.dart.wasm +0 -0
- package/dist/app/manifest.json +35 -0
- package/dist/app/sqlite3.wasm +0 -0
- package/dist/app/version.json +1 -0
- package/dist/assets/main-D8sOrAB3.js +1 -0
- package/dist/assets/privacy-DpLJ_d-e.js +1 -0
- package/dist/assets/style-DPCEmzUq.css +1 -0
- package/dist/assets/tokens-dhEWX-dA.js +40 -0
- package/dist/brand/app-mark.png +0 -0
- package/dist/brand/icon-512.png +0 -0
- package/dist/favicon.png +0 -0
- package/dist/index.html +24 -0
- package/dist/privacy.html +21 -0
- package/package.json +41 -0
|
@@ -0,0 +1,1216 @@
|
|
|
1
|
+
// Compiles a dart2wasm-generated main module from `source` which can then
|
|
2
|
+
// instantiatable via the `instantiate` method.
|
|
3
|
+
//
|
|
4
|
+
// `source` needs to be a `Response` object (or promise thereof) e.g. created
|
|
5
|
+
// via the `fetch()` JS API.
|
|
6
|
+
export async function compileStreaming(source) {
|
|
7
|
+
const builtins = {builtins: ['js-string']};
|
|
8
|
+
return new CompiledApp(
|
|
9
|
+
await WebAssembly.compileStreaming(source, builtins), builtins);
|
|
10
|
+
}
|
|
11
|
+
|
|
12
|
+
// Compiles a dart2wasm-generated wasm modules from `bytes` which is then
|
|
13
|
+
// instantiatable via the `instantiate` method.
|
|
14
|
+
export async function compile(bytes) {
|
|
15
|
+
const builtins = {builtins: ['js-string']};
|
|
16
|
+
return new CompiledApp(await WebAssembly.compile(bytes, builtins), builtins);
|
|
17
|
+
}
|
|
18
|
+
|
|
19
|
+
// DEPRECATED: Please use `compile` or `compileStreaming` to get a compiled app,
|
|
20
|
+
// use `instantiate` method to get an instantiated app and then call
|
|
21
|
+
// `invokeMain` to invoke the main function.
|
|
22
|
+
export async function instantiate(modulePromise, importObjectPromise) {
|
|
23
|
+
var moduleOrCompiledApp = await modulePromise;
|
|
24
|
+
if (!(moduleOrCompiledApp instanceof CompiledApp)) {
|
|
25
|
+
moduleOrCompiledApp = new CompiledApp(moduleOrCompiledApp);
|
|
26
|
+
}
|
|
27
|
+
const instantiatedApp = await moduleOrCompiledApp.instantiate(await importObjectPromise);
|
|
28
|
+
return instantiatedApp.instantiatedModule;
|
|
29
|
+
}
|
|
30
|
+
|
|
31
|
+
// DEPRECATED: Please use `compile` or `compileStreaming` to get a compiled app,
|
|
32
|
+
// use `instantiate` method to get an instantiated app and then call
|
|
33
|
+
// `invokeMain` to invoke the main function.
|
|
34
|
+
export const invoke = (moduleInstance, ...args) => {
|
|
35
|
+
moduleInstance.exports.$invokeMain(args);
|
|
36
|
+
}
|
|
37
|
+
|
|
38
|
+
class CompiledApp {
|
|
39
|
+
constructor(module, builtins) {
|
|
40
|
+
this.module = module;
|
|
41
|
+
this.builtins = builtins;
|
|
42
|
+
}
|
|
43
|
+
|
|
44
|
+
// The second argument is an options object containing:
|
|
45
|
+
// `loadDeferredModules` is a JS function that takes an array of module names
|
|
46
|
+
// matching wasm files produced by the dart2wasm compiler. It also takes a
|
|
47
|
+
// callback that should be invoked for each loaded module with 2 arugments:
|
|
48
|
+
// (1) the module name, (2) the loaded module in a format supported by
|
|
49
|
+
// `WebAssembly.compile` or `WebAssembly.compileStreaming`. The callback
|
|
50
|
+
// returns a Promise that resolves when the module is instantiated.
|
|
51
|
+
// loadDeferredModules should return a Promise that resolves when all the
|
|
52
|
+
// modules have been loaded and the callback promises have resolved.
|
|
53
|
+
// `loadDeferredId` is a JS function that takes load ID produced by the
|
|
54
|
+
// compiler when the `load-ids` option is passed. Each load ID maps to one
|
|
55
|
+
// or more wasm files as specified in the emitted JSON file. It also takes a
|
|
56
|
+
// callback that should be invoked for each loaded module with 2 arugments:
|
|
57
|
+
// (1) the module name, (2) the loaded module in a format supported by
|
|
58
|
+
// `WebAssembly.compile` or `WebAssembly.compileStreaming`. The callback
|
|
59
|
+
// returns a Promise that resolves when the module is instantiated.
|
|
60
|
+
// loadDeferredModules should return a Promise that resolves when all the
|
|
61
|
+
// modules have been loaded and the callback promises have resolved.
|
|
62
|
+
// `loadDynamicModule` is a JS function that takes two string names matching,
|
|
63
|
+
// in order, a wasm file produced by the dart2wasm compiler during dynamic
|
|
64
|
+
// module compilation and a corresponding js file produced by the same
|
|
65
|
+
// compilation. It also takes a callback that should be invoked with the
|
|
66
|
+
// loaded module in a format supported by `WebAssembly.compile` or
|
|
67
|
+
// `WebAssembly.compileStreaming` and the result of using the JS 'import'
|
|
68
|
+
// API on the js file path. It should return a Promise that resolves when
|
|
69
|
+
// all the modules have been loaded and the callback promises have resolved.
|
|
70
|
+
async instantiate(additionalImports,
|
|
71
|
+
{loadDeferredModules, loadDynamicModule, loadDeferredId} = {}) {
|
|
72
|
+
let dartInstance;
|
|
73
|
+
|
|
74
|
+
// Prints to the console
|
|
75
|
+
function printToConsole(value) {
|
|
76
|
+
if (typeof dartPrint == "function") {
|
|
77
|
+
dartPrint(value);
|
|
78
|
+
return;
|
|
79
|
+
}
|
|
80
|
+
if (typeof console == "object" && typeof console.log != "undefined") {
|
|
81
|
+
console.log(value);
|
|
82
|
+
return;
|
|
83
|
+
}
|
|
84
|
+
if (typeof print == "function") {
|
|
85
|
+
print(value);
|
|
86
|
+
return;
|
|
87
|
+
}
|
|
88
|
+
|
|
89
|
+
throw "Unable to print message: " + value;
|
|
90
|
+
}
|
|
91
|
+
|
|
92
|
+
// A special symbol attached to functions that wrap Dart functions.
|
|
93
|
+
const jsWrappedDartFunctionSymbol = Symbol("JSWrappedDartFunction");
|
|
94
|
+
|
|
95
|
+
function finalizeWrapper(dartFunction, wrapped) {
|
|
96
|
+
wrapped.dartFunction = dartFunction;
|
|
97
|
+
wrapped[jsWrappedDartFunctionSymbol] = true;
|
|
98
|
+
return wrapped;
|
|
99
|
+
}
|
|
100
|
+
|
|
101
|
+
// Imports
|
|
102
|
+
const dart2wasm = {
|
|
103
|
+
_1: (decoder, codeUnits) => decoder.decode(codeUnits),
|
|
104
|
+
_2: () => new TextDecoder("utf-8", {fatal: true}),
|
|
105
|
+
_3: () => new TextDecoder("utf-8", {fatal: false}),
|
|
106
|
+
_4: (s) => +s,
|
|
107
|
+
_5: x0 => new Uint8Array(x0),
|
|
108
|
+
_6: (x0,x1,x2) => x0.set(x1,x2),
|
|
109
|
+
_7: (x0,x1) => x0.transferFromImageBitmap(x1),
|
|
110
|
+
_8: x0 => x0.arrayBuffer(),
|
|
111
|
+
_9: (x0,x1,x2) => x0.slice(x1,x2),
|
|
112
|
+
_10: (x0,x1) => x0.decode(x1),
|
|
113
|
+
_11: (x0,x1) => x0.segment(x1),
|
|
114
|
+
_12: () => new TextDecoder(),
|
|
115
|
+
_14: x0 => x0.buffer,
|
|
116
|
+
_15: x0 => x0.wasmMemory,
|
|
117
|
+
_16: () => globalThis.window._flutter_skwasmInstance,
|
|
118
|
+
_17: x0 => x0.rasterStartMilliseconds,
|
|
119
|
+
_18: x0 => x0.rasterEndMilliseconds,
|
|
120
|
+
_19: x0 => x0.imageBitmaps,
|
|
121
|
+
_135: (x0,x1) => x0.appendChild(x1),
|
|
122
|
+
_166: (x0,x1,x2) => x0.addEventListener(x1,x2),
|
|
123
|
+
_167: (x0,x1,x2) => x0.removeEventListener(x1,x2),
|
|
124
|
+
_168: (x0,x1) => new OffscreenCanvas(x0,x1),
|
|
125
|
+
_169: x0 => x0.remove(),
|
|
126
|
+
_170: (x0,x1) => x0.append(x1),
|
|
127
|
+
_172: x0 => x0.unlock(),
|
|
128
|
+
_173: x0 => x0.getReader(),
|
|
129
|
+
_174: (x0,x1) => x0.item(x1),
|
|
130
|
+
_175: x0 => x0.next(),
|
|
131
|
+
_176: x0 => x0.now(),
|
|
132
|
+
_177: (x0,x1) => x0.revokeObjectURL(x1),
|
|
133
|
+
_178: x0 => x0.close(),
|
|
134
|
+
_179: (x0,x1,x2,x3,x4) => ({type: x0,data: x1,premultiplyAlpha: x2,colorSpaceConversion: x3,preferAnimation: x4}),
|
|
135
|
+
_180: x0 => new window.ImageDecoder(x0),
|
|
136
|
+
_181: (x0,x1) => ({frameIndex: x0,completeFramesOnly: x1}),
|
|
137
|
+
_182: (x0,x1) => x0.decode(x1),
|
|
138
|
+
_183: (module,f) => finalizeWrapper(f, function(x0) { return module.exports._183(f,arguments.length,x0) }),
|
|
139
|
+
_184: (x0,x1,x2,x3) => x0.addEventListener(x1,x2,x3),
|
|
140
|
+
_186: (x0,x1) => x0.getModifierState(x1),
|
|
141
|
+
_187: x0 => x0.preventDefault(),
|
|
142
|
+
_188: x0 => x0.stopPropagation(),
|
|
143
|
+
_189: (x0,x1) => x0.removeProperty(x1),
|
|
144
|
+
_190: (module,f) => finalizeWrapper(f, function(x0) { return module.exports._190(f,arguments.length,x0) }),
|
|
145
|
+
_191: x0 => new window.FinalizationRegistry(x0),
|
|
146
|
+
_192: (x0,x1,x2,x3) => x0.register(x1,x2,x3),
|
|
147
|
+
_194: (x0,x1) => x0.unregister(x1),
|
|
148
|
+
_195: (x0,x1) => x0.prepend(x1),
|
|
149
|
+
_196: x0 => new Intl.Locale(x0),
|
|
150
|
+
_197: (x0,x1) => x0.observe(x1),
|
|
151
|
+
_198: x0 => x0.disconnect(),
|
|
152
|
+
_199: (x0,x1) => x0.getAttribute(x1),
|
|
153
|
+
_200: (x0,x1) => x0.contains(x1),
|
|
154
|
+
_201: (x0,x1) => x0.querySelector(x1),
|
|
155
|
+
_202: (x0,x1) => x0.matchMedia(x1),
|
|
156
|
+
_203: (module,f) => finalizeWrapper(f, function(x0) { return module.exports._203(f,arguments.length,x0) }),
|
|
157
|
+
_204: (x0,x1,x2) => x0.call(x1,x2),
|
|
158
|
+
_205: x0 => x0.blur(),
|
|
159
|
+
_206: x0 => x0.hasFocus(),
|
|
160
|
+
_207: (x0,x1) => x0.removeAttribute(x1),
|
|
161
|
+
_208: (x0,x1,x2) => x0.insertBefore(x1,x2),
|
|
162
|
+
_209: (x0,x1) => x0.hasAttribute(x1),
|
|
163
|
+
_210: (x0,x1) => x0.getModifierState(x1),
|
|
164
|
+
_211: (x0,x1) => x0.createTextNode(x1),
|
|
165
|
+
_212: x0 => x0.getBoundingClientRect(),
|
|
166
|
+
_213: (x0,x1) => x0.replaceWith(x1),
|
|
167
|
+
_214: (x0,x1) => x0.contains(x1),
|
|
168
|
+
_215: (x0,x1) => x0.closest(x1),
|
|
169
|
+
_216: () => new Array(),
|
|
170
|
+
_653: x0 => new Uint8Array(x0),
|
|
171
|
+
_656: () => globalThis.window.flutterConfiguration,
|
|
172
|
+
_658: x0 => x0.assetBase,
|
|
173
|
+
_663: x0 => x0.canvasKitMaximumSurfaces,
|
|
174
|
+
_664: x0 => x0.debugShowSemanticsNodes,
|
|
175
|
+
_665: x0 => x0.hostElement,
|
|
176
|
+
_666: x0 => x0.multiViewEnabled,
|
|
177
|
+
_667: x0 => x0.nonce,
|
|
178
|
+
_669: x0 => x0.fontFallbackBaseUrl,
|
|
179
|
+
_679: x0 => x0.console,
|
|
180
|
+
_680: x0 => x0.devicePixelRatio,
|
|
181
|
+
_681: x0 => x0.document,
|
|
182
|
+
_682: x0 => x0.history,
|
|
183
|
+
_683: x0 => x0.innerHeight,
|
|
184
|
+
_684: x0 => x0.innerWidth,
|
|
185
|
+
_685: x0 => x0.location,
|
|
186
|
+
_686: x0 => x0.navigator,
|
|
187
|
+
_687: x0 => x0.visualViewport,
|
|
188
|
+
_688: x0 => x0.performance,
|
|
189
|
+
_689: x0 => x0.parent,
|
|
190
|
+
_691: x0 => x0.URL,
|
|
191
|
+
_693: (x0,x1) => x0.getComputedStyle(x1),
|
|
192
|
+
_694: x0 => x0.screen,
|
|
193
|
+
_695: (module,f) => finalizeWrapper(f, function(x0) { return module.exports._695(f,arguments.length,x0) }),
|
|
194
|
+
_696: (x0,x1) => x0.requestAnimationFrame(x1),
|
|
195
|
+
_700: (x0,x1) => x0.warn(x1),
|
|
196
|
+
_702: (x0,x1) => x0.debug(x1),
|
|
197
|
+
_703: x0 => globalThis.parseFloat(x0),
|
|
198
|
+
_704: () => globalThis.window,
|
|
199
|
+
_705: () => globalThis.Intl,
|
|
200
|
+
_706: () => globalThis.Symbol,
|
|
201
|
+
_707: (x0,x1,x2,x3,x4) => globalThis.createImageBitmap(x0,x1,x2,x3,x4),
|
|
202
|
+
_709: x0 => x0.clipboard,
|
|
203
|
+
_710: x0 => x0.maxTouchPoints,
|
|
204
|
+
_711: x0 => x0.vendor,
|
|
205
|
+
_712: x0 => x0.language,
|
|
206
|
+
_713: x0 => x0.platform,
|
|
207
|
+
_714: x0 => x0.userAgent,
|
|
208
|
+
_715: (x0,x1) => x0.vibrate(x1),
|
|
209
|
+
_716: x0 => x0.languages,
|
|
210
|
+
_717: x0 => x0.documentElement,
|
|
211
|
+
_718: (x0,x1) => x0.querySelector(x1),
|
|
212
|
+
_719: (x0,x1) => x0.querySelectorAll(x1),
|
|
213
|
+
_721: (x0,x1) => x0.createElement(x1),
|
|
214
|
+
_724: (x0,x1) => x0.createEvent(x1),
|
|
215
|
+
_725: x0 => x0.activeElement,
|
|
216
|
+
_728: x0 => x0.head,
|
|
217
|
+
_729: x0 => x0.body,
|
|
218
|
+
_731: (x0,x1) => { x0.title = x1 },
|
|
219
|
+
_734: x0 => x0.visibilityState,
|
|
220
|
+
_735: () => globalThis.document,
|
|
221
|
+
_736: (module,f) => finalizeWrapper(f, function(x0) { return module.exports._736(f,arguments.length,x0) }),
|
|
222
|
+
_737: (x0,x1) => x0.dispatchEvent(x1),
|
|
223
|
+
_745: x0 => x0.target,
|
|
224
|
+
_747: x0 => x0.timeStamp,
|
|
225
|
+
_748: x0 => x0.type,
|
|
226
|
+
_750: (x0,x1,x2,x3) => x0.initEvent(x1,x2,x3),
|
|
227
|
+
_756: x0 => x0.baseURI,
|
|
228
|
+
_757: x0 => x0.firstChild,
|
|
229
|
+
_761: x0 => x0.parentElement,
|
|
230
|
+
_763: (x0,x1) => { x0.textContent = x1 },
|
|
231
|
+
_764: x0 => x0.parentNode,
|
|
232
|
+
_765: x0 => x0.nextSibling,
|
|
233
|
+
_766: (x0,x1) => x0.removeChild(x1),
|
|
234
|
+
_767: x0 => x0.isConnected,
|
|
235
|
+
_775: x0 => x0.clientHeight,
|
|
236
|
+
_776: x0 => x0.clientWidth,
|
|
237
|
+
_777: x0 => x0.offsetHeight,
|
|
238
|
+
_778: x0 => x0.offsetWidth,
|
|
239
|
+
_779: x0 => x0.id,
|
|
240
|
+
_780: (x0,x1) => { x0.id = x1 },
|
|
241
|
+
_783: (x0,x1) => { x0.spellcheck = x1 },
|
|
242
|
+
_784: x0 => x0.tagName,
|
|
243
|
+
_785: x0 => x0.style,
|
|
244
|
+
_787: (x0,x1) => x0.querySelectorAll(x1),
|
|
245
|
+
_788: (x0,x1,x2) => x0.setAttribute(x1,x2),
|
|
246
|
+
_789: x0 => x0.tabIndex,
|
|
247
|
+
_790: (x0,x1) => { x0.tabIndex = x1 },
|
|
248
|
+
_791: (x0,x1) => x0.focus(x1),
|
|
249
|
+
_792: x0 => x0.scrollTop,
|
|
250
|
+
_793: (x0,x1) => { x0.scrollTop = x1 },
|
|
251
|
+
_794: (x0,x1) => { x0.scrollLeft = x1 },
|
|
252
|
+
_795: x0 => x0.scrollLeft,
|
|
253
|
+
_796: x0 => x0.classList,
|
|
254
|
+
_797: (x0,x1) => x0.scrollIntoView(x1),
|
|
255
|
+
_800: (x0,x1) => { x0.className = x1 },
|
|
256
|
+
_802: (x0,x1) => x0.getElementsByClassName(x1),
|
|
257
|
+
_803: x0 => x0.click(),
|
|
258
|
+
_804: (x0,x1) => x0.attachShadow(x1),
|
|
259
|
+
_807: x0 => x0.computedStyleMap(),
|
|
260
|
+
_808: (x0,x1) => x0.get(x1),
|
|
261
|
+
_814: (x0,x1) => x0.getPropertyValue(x1),
|
|
262
|
+
_815: (x0,x1,x2,x3) => x0.setProperty(x1,x2,x3),
|
|
263
|
+
_816: x0 => x0.offsetLeft,
|
|
264
|
+
_817: x0 => x0.offsetTop,
|
|
265
|
+
_818: x0 => x0.offsetParent,
|
|
266
|
+
_820: (x0,x1) => { x0.name = x1 },
|
|
267
|
+
_821: x0 => x0.content,
|
|
268
|
+
_822: (x0,x1) => { x0.content = x1 },
|
|
269
|
+
_826: (x0,x1) => { x0.src = x1 },
|
|
270
|
+
_827: x0 => x0.naturalWidth,
|
|
271
|
+
_828: x0 => x0.naturalHeight,
|
|
272
|
+
_832: (x0,x1) => { x0.crossOrigin = x1 },
|
|
273
|
+
_834: (x0,x1) => { x0.decoding = x1 },
|
|
274
|
+
_835: x0 => x0.decode(),
|
|
275
|
+
_840: (x0,x1) => { x0.nonce = x1 },
|
|
276
|
+
_845: (x0,x1) => { x0.width = x1 },
|
|
277
|
+
_847: (x0,x1) => { x0.height = x1 },
|
|
278
|
+
_850: (x0,x1) => x0.getContext(x1),
|
|
279
|
+
_918: x0 => x0.width,
|
|
280
|
+
_919: x0 => x0.height,
|
|
281
|
+
_921: (x0,x1) => x0.fetch(x1),
|
|
282
|
+
_922: x0 => x0.status,
|
|
283
|
+
_924: x0 => x0.body,
|
|
284
|
+
_925: x0 => x0.arrayBuffer(),
|
|
285
|
+
_928: x0 => x0.read(),
|
|
286
|
+
_929: x0 => x0.value,
|
|
287
|
+
_930: x0 => x0.done,
|
|
288
|
+
_937: x0 => x0.name,
|
|
289
|
+
_938: x0 => x0.x,
|
|
290
|
+
_939: x0 => x0.y,
|
|
291
|
+
_942: x0 => x0.top,
|
|
292
|
+
_943: x0 => x0.right,
|
|
293
|
+
_944: x0 => x0.bottom,
|
|
294
|
+
_945: x0 => x0.left,
|
|
295
|
+
_955: x0 => x0.height,
|
|
296
|
+
_956: x0 => x0.width,
|
|
297
|
+
_957: x0 => x0.scale,
|
|
298
|
+
_958: (x0,x1) => { x0.value = x1 },
|
|
299
|
+
_961: (x0,x1) => { x0.placeholder = x1 },
|
|
300
|
+
_963: (x0,x1) => { x0.name = x1 },
|
|
301
|
+
_964: x0 => x0.selectionDirection,
|
|
302
|
+
_965: x0 => x0.selectionStart,
|
|
303
|
+
_966: x0 => x0.selectionEnd,
|
|
304
|
+
_969: x0 => x0.value,
|
|
305
|
+
_971: (x0,x1,x2) => x0.setSelectionRange(x1,x2),
|
|
306
|
+
_972: x0 => x0.readText(),
|
|
307
|
+
_973: (x0,x1) => x0.writeText(x1),
|
|
308
|
+
_975: x0 => x0.altKey,
|
|
309
|
+
_976: x0 => x0.code,
|
|
310
|
+
_977: x0 => x0.ctrlKey,
|
|
311
|
+
_978: x0 => x0.key,
|
|
312
|
+
_979: x0 => x0.keyCode,
|
|
313
|
+
_980: x0 => x0.location,
|
|
314
|
+
_981: x0 => x0.metaKey,
|
|
315
|
+
_982: x0 => x0.repeat,
|
|
316
|
+
_983: x0 => x0.shiftKey,
|
|
317
|
+
_984: x0 => x0.isComposing,
|
|
318
|
+
_986: x0 => x0.state,
|
|
319
|
+
_987: (x0,x1) => x0.go(x1),
|
|
320
|
+
_989: (x0,x1,x2,x3) => x0.pushState(x1,x2,x3),
|
|
321
|
+
_990: (x0,x1,x2,x3) => x0.replaceState(x1,x2,x3),
|
|
322
|
+
_991: x0 => x0.pathname,
|
|
323
|
+
_992: x0 => x0.search,
|
|
324
|
+
_993: x0 => x0.hash,
|
|
325
|
+
_997: x0 => x0.state,
|
|
326
|
+
_1000: (x0,x1) => x0.createObjectURL(x1),
|
|
327
|
+
_1002: x0 => new Blob(x0),
|
|
328
|
+
_1012: x0 => x0.matches,
|
|
329
|
+
_1016: x0 => x0.matches,
|
|
330
|
+
_1020: x0 => x0.relatedTarget,
|
|
331
|
+
_1022: x0 => x0.clientX,
|
|
332
|
+
_1023: x0 => x0.clientY,
|
|
333
|
+
_1024: x0 => x0.offsetX,
|
|
334
|
+
_1025: x0 => x0.offsetY,
|
|
335
|
+
_1028: x0 => x0.button,
|
|
336
|
+
_1029: x0 => x0.buttons,
|
|
337
|
+
_1030: x0 => x0.ctrlKey,
|
|
338
|
+
_1034: x0 => x0.pointerId,
|
|
339
|
+
_1035: x0 => x0.pointerType,
|
|
340
|
+
_1036: x0 => x0.pressure,
|
|
341
|
+
_1037: x0 => x0.tiltX,
|
|
342
|
+
_1038: x0 => x0.tiltY,
|
|
343
|
+
_1039: x0 => x0.getCoalescedEvents(),
|
|
344
|
+
_1042: x0 => x0.deltaX,
|
|
345
|
+
_1043: x0 => x0.deltaY,
|
|
346
|
+
_1044: x0 => x0.wheelDeltaX,
|
|
347
|
+
_1045: x0 => x0.wheelDeltaY,
|
|
348
|
+
_1046: x0 => x0.deltaMode,
|
|
349
|
+
_1053: x0 => x0.changedTouches,
|
|
350
|
+
_1056: x0 => x0.clientX,
|
|
351
|
+
_1057: x0 => x0.clientY,
|
|
352
|
+
_1060: x0 => x0.data,
|
|
353
|
+
_1063: (x0,x1) => { x0.disabled = x1 },
|
|
354
|
+
_1065: (x0,x1) => { x0.type = x1 },
|
|
355
|
+
_1066: (x0,x1) => { x0.max = x1 },
|
|
356
|
+
_1067: (x0,x1) => { x0.min = x1 },
|
|
357
|
+
_1068: x0 => x0.value,
|
|
358
|
+
_1069: (x0,x1) => { x0.value = x1 },
|
|
359
|
+
_1070: x0 => x0.disabled,
|
|
360
|
+
_1071: (x0,x1) => { x0.disabled = x1 },
|
|
361
|
+
_1073: (x0,x1) => { x0.placeholder = x1 },
|
|
362
|
+
_1075: (x0,x1) => { x0.name = x1 },
|
|
363
|
+
_1076: (x0,x1) => { x0.autocomplete = x1 },
|
|
364
|
+
_1078: x0 => x0.selectionDirection,
|
|
365
|
+
_1079: x0 => x0.selectionStart,
|
|
366
|
+
_1081: x0 => x0.selectionEnd,
|
|
367
|
+
_1084: (x0,x1,x2) => x0.setSelectionRange(x1,x2),
|
|
368
|
+
_1085: (x0,x1) => x0.add(x1),
|
|
369
|
+
_1087: (x0,x1) => { x0.noValidate = x1 },
|
|
370
|
+
_1088: (x0,x1) => { x0.method = x1 },
|
|
371
|
+
_1089: (x0,x1) => { x0.action = x1 },
|
|
372
|
+
_1095: (x0,x1) => x0.getContext(x1),
|
|
373
|
+
_1097: x0 => x0.convertToBlob(),
|
|
374
|
+
_1114: x0 => x0.orientation,
|
|
375
|
+
_1115: x0 => x0.width,
|
|
376
|
+
_1116: x0 => x0.height,
|
|
377
|
+
_1117: (x0,x1) => x0.lock(x1),
|
|
378
|
+
_1136: x0 => new ResizeObserver(x0),
|
|
379
|
+
_1139: (module,f) => finalizeWrapper(f, function(x0,x1) { return module.exports._1139(f,arguments.length,x0,x1) }),
|
|
380
|
+
_1147: x0 => x0.length,
|
|
381
|
+
_1148: x0 => x0.iterator,
|
|
382
|
+
_1149: x0 => x0.Segmenter,
|
|
383
|
+
_1150: x0 => x0.v8BreakIterator,
|
|
384
|
+
_1151: (x0,x1) => new Intl.Segmenter(x0,x1),
|
|
385
|
+
_1154: x0 => x0.language,
|
|
386
|
+
_1155: x0 => x0.script,
|
|
387
|
+
_1156: x0 => x0.region,
|
|
388
|
+
_1174: x0 => x0.done,
|
|
389
|
+
_1175: x0 => x0.value,
|
|
390
|
+
_1176: x0 => x0.index,
|
|
391
|
+
_1180: (x0,x1) => new Intl.v8BreakIterator(x0,x1),
|
|
392
|
+
_1181: (x0,x1) => x0.adoptText(x1),
|
|
393
|
+
_1182: x0 => x0.first(),
|
|
394
|
+
_1183: x0 => x0.next(),
|
|
395
|
+
_1184: x0 => x0.current(),
|
|
396
|
+
_1186: () => globalThis.window.FinalizationRegistry,
|
|
397
|
+
_1197: x0 => x0.hostElement,
|
|
398
|
+
_1198: x0 => x0.viewConstraints,
|
|
399
|
+
_1201: x0 => x0.maxHeight,
|
|
400
|
+
_1202: x0 => x0.maxWidth,
|
|
401
|
+
_1203: x0 => x0.minHeight,
|
|
402
|
+
_1204: x0 => x0.minWidth,
|
|
403
|
+
_1205: (module,f) => finalizeWrapper(f, function(x0) { return module.exports._1205(f,arguments.length,x0) }),
|
|
404
|
+
_1206: (module,f) => finalizeWrapper(f, function(x0) { return module.exports._1206(f,arguments.length,x0) }),
|
|
405
|
+
_1207: (x0,x1) => ({addView: x0,removeView: x1}),
|
|
406
|
+
_1210: x0 => x0.loader,
|
|
407
|
+
_1211: () => globalThis._flutter,
|
|
408
|
+
_1212: (x0,x1) => x0.didCreateEngineInitializer(x1),
|
|
409
|
+
_1213: (module,f) => finalizeWrapper(f, function(x0) { return module.exports._1213(f,arguments.length,x0) }),
|
|
410
|
+
_1214: (module,f) => finalizeWrapper(f, function() { return module.exports._1214(f,arguments.length) }),
|
|
411
|
+
_1215: (x0,x1) => ({initializeEngine: x0,autoStart: x1}),
|
|
412
|
+
_1218: (module,f) => finalizeWrapper(f, function(x0) { return module.exports._1218(f,arguments.length,x0) }),
|
|
413
|
+
_1219: x0 => ({runApp: x0}),
|
|
414
|
+
_1221: (module,f) => finalizeWrapper(f, function(x0,x1) { return module.exports._1221(f,arguments.length,x0,x1) }),
|
|
415
|
+
_1222: x0 => new Promise(x0),
|
|
416
|
+
_1223: x0 => x0.length,
|
|
417
|
+
_1224: () => globalThis.window.ImageDecoder,
|
|
418
|
+
_1225: x0 => x0.tracks,
|
|
419
|
+
_1227: x0 => x0.completed,
|
|
420
|
+
_1229: x0 => x0.image,
|
|
421
|
+
_1235: x0 => x0.displayWidth,
|
|
422
|
+
_1236: x0 => x0.displayHeight,
|
|
423
|
+
_1237: x0 => x0.duration,
|
|
424
|
+
_1240: x0 => x0.ready,
|
|
425
|
+
_1241: x0 => x0.selectedTrack,
|
|
426
|
+
_1242: x0 => x0.repetitionCount,
|
|
427
|
+
_1243: x0 => x0.frameCount,
|
|
428
|
+
_1287: (x0,x1) => x0.createElement(x1),
|
|
429
|
+
_1288: (x0,x1) => x0.querySelector(x1),
|
|
430
|
+
_1289: (x0,x1) => x0.appendChild(x1),
|
|
431
|
+
_1290: x0 => ({type: x0}),
|
|
432
|
+
_1291: (x0,x1) => new Blob(x0,x1),
|
|
433
|
+
_1292: x0 => globalThis.URL.createObjectURL(x0),
|
|
434
|
+
_1294: (x0,x1,x2,x3) => x0.sendCommand(x1,x2,x3),
|
|
435
|
+
_1295: () => globalThis.PdfiumWasmCommunicator,
|
|
436
|
+
_1297: x0 => { globalThis.pdfiumWasmWorkerUrl = x0 },
|
|
437
|
+
_1298: (x0,x1) => x0.writeText(x1),
|
|
438
|
+
_1299: x0 => x0.preventDefault(),
|
|
439
|
+
_1300: (module,f) => finalizeWrapper(f, function(x0) { return module.exports._1300(f,arguments.length,x0) }),
|
|
440
|
+
_1301: (x0,x1,x2) => x0.addEventListener(x1,x2),
|
|
441
|
+
_1302: x0 => x0.getDirectory(),
|
|
442
|
+
_1303: x0 => ({create: x0}),
|
|
443
|
+
_1304: (x0,x1,x2) => x0.getDirectoryHandle(x1,x2),
|
|
444
|
+
_1305: x0 => x0.getFile(),
|
|
445
|
+
_1306: x0 => ({create: x0}),
|
|
446
|
+
_1307: (x0,x1,x2) => x0.getFileHandle(x1,x2),
|
|
447
|
+
_1308: x0 => x0.createWritable(),
|
|
448
|
+
_1309: (x0,x1) => x0.write(x1),
|
|
449
|
+
_1310: x0 => x0.close(),
|
|
450
|
+
_1311: x0 => x0.abort(),
|
|
451
|
+
_1312: x0 => x0.arrayBuffer(),
|
|
452
|
+
_1313: x0 => ({recursive: x0}),
|
|
453
|
+
_1314: (x0,x1,x2) => x0.removeEntry(x1,x2),
|
|
454
|
+
_1315: x0 => globalThis.URL.revokeObjectURL(x0),
|
|
455
|
+
_1316: x0 => x0.remove(),
|
|
456
|
+
_1321: (module,f) => finalizeWrapper(f, function(x0) { return module.exports._1321(f,arguments.length,x0) }),
|
|
457
|
+
_1322: (module,f) => finalizeWrapper(f, function(x0) { return module.exports._1322(f,arguments.length,x0) }),
|
|
458
|
+
_1323: (module,f) => finalizeWrapper(f, function(x0) { return module.exports._1323(f,arguments.length,x0) }),
|
|
459
|
+
_1324: (x0,x1) => x0.append(x1),
|
|
460
|
+
_1325: (x0,x1,x2) => x0.setAttribute(x1,x2),
|
|
461
|
+
_1326: (x0,x1) => x0.replaceChildren(x1),
|
|
462
|
+
_1327: x0 => x0.click(),
|
|
463
|
+
_1328: x0 => x0.createRange(),
|
|
464
|
+
_1329: (x0,x1) => x0.selectNode(x1),
|
|
465
|
+
_1330: x0 => x0.getSelection(),
|
|
466
|
+
_1331: x0 => x0.removeAllRanges(),
|
|
467
|
+
_1332: (x0,x1) => x0.addRange(x1),
|
|
468
|
+
_1333: (x0,x1) => x0.createElement(x1),
|
|
469
|
+
_1334: (x0,x1) => x0.append(x1),
|
|
470
|
+
_1335: (x0,x1,x2) => x0.insertRule(x1,x2),
|
|
471
|
+
_1336: (x0,x1) => x0.add(x1),
|
|
472
|
+
_1337: x0 => x0.preventDefault(),
|
|
473
|
+
_1338: (module,f) => finalizeWrapper(f, function(x0) { return module.exports._1338(f,arguments.length,x0) }),
|
|
474
|
+
_1339: (x0,x1,x2) => x0.addEventListener(x1,x2),
|
|
475
|
+
_1340: (x0,x1,x2,x3) => x0.addEventListener(x1,x2,x3),
|
|
476
|
+
_1341: (x0,x1,x2,x3) => x0.removeEventListener(x1,x2,x3),
|
|
477
|
+
_1347: (x0,x1,x2,x3) => x0.open(x1,x2,x3),
|
|
478
|
+
_1348: (module,f) => finalizeWrapper(f, function(x0) { return module.exports._1348(f,arguments.length,x0) }),
|
|
479
|
+
_1349: (x0,x1) => x0.readEntries(x1),
|
|
480
|
+
_1350: x0 => x0.createReader(),
|
|
481
|
+
_1351: () => new Blob(),
|
|
482
|
+
_1352: (x0,x1,x2,x3) => x0.slice(x1,x2,x3),
|
|
483
|
+
_1353: (module,f) => finalizeWrapper(f, function(x0) { return module.exports._1353(f,arguments.length,x0) }),
|
|
484
|
+
_1354: (x0,x1) => x0.file(x1),
|
|
485
|
+
_1355: x0 => x0.webkitGetAsEntry(),
|
|
486
|
+
_1356: (module,f) => finalizeWrapper(f, function(x0) { return module.exports._1356(f,arguments.length,x0) }),
|
|
487
|
+
_1357: (module,f) => finalizeWrapper(f, function(x0) { return module.exports._1357(f,arguments.length,x0) }),
|
|
488
|
+
_1358: (module,f) => finalizeWrapper(f, function(x0) { return module.exports._1358(f,arguments.length,x0) }),
|
|
489
|
+
_1359: (module,f) => finalizeWrapper(f, function(x0) { return module.exports._1359(f,arguments.length,x0) }),
|
|
490
|
+
_1368: (x0,x1) => x0.getItem(x1),
|
|
491
|
+
_1369: (x0,x1) => x0.removeItem(x1),
|
|
492
|
+
_1370: (x0,x1,x2) => x0.setItem(x1,x2),
|
|
493
|
+
_1371: (x0,x1) => x0.item(x1),
|
|
494
|
+
_1372: () => new FileReader(),
|
|
495
|
+
_1373: (x0,x1) => x0.readAsDataURL(x1),
|
|
496
|
+
_1374: (x0,x1) => x0.readAsArrayBuffer(x1),
|
|
497
|
+
_1375: (module,f) => finalizeWrapper(f, function(x0) { return module.exports._1375(f,arguments.length,x0) }),
|
|
498
|
+
_1376: (x0,x1,x2) => x0.removeEventListener(x1,x2),
|
|
499
|
+
_1377: (module,f) => finalizeWrapper(f, function(x0) { return module.exports._1377(f,arguments.length,x0) }),
|
|
500
|
+
_1378: (module,f) => finalizeWrapper(f, function(x0) { return module.exports._1378(f,arguments.length,x0) }),
|
|
501
|
+
_1379: (module,f) => finalizeWrapper(f, function(x0) { return module.exports._1379(f,arguments.length,x0) }),
|
|
502
|
+
_1380: (x0,x1) => x0.removeChild(x1),
|
|
503
|
+
_1382: (x0,x1,x2) => x0.slice(x1,x2),
|
|
504
|
+
_1383: Date.now,
|
|
505
|
+
_1385: s => new Date(s * 1000).getTimezoneOffset() * 60,
|
|
506
|
+
_1386: s => {
|
|
507
|
+
if (!/^\s*[+-]?(?:Infinity|NaN|(?:\.\d+|\d+(?:\.\d*)?)(?:[eE][+-]?\d+)?)\s*$/.test(s)) {
|
|
508
|
+
return NaN;
|
|
509
|
+
}
|
|
510
|
+
return parseFloat(s);
|
|
511
|
+
},
|
|
512
|
+
_1387: () => typeof dartUseDateNowForTicks !== "undefined",
|
|
513
|
+
_1388: () => 1000 * performance.now(),
|
|
514
|
+
_1389: () => Date.now(),
|
|
515
|
+
_1390: () => {
|
|
516
|
+
// On browsers return `globalThis.location.href`
|
|
517
|
+
if (globalThis.location != null) {
|
|
518
|
+
return globalThis.location.href;
|
|
519
|
+
}
|
|
520
|
+
return null;
|
|
521
|
+
},
|
|
522
|
+
_1391: () => {
|
|
523
|
+
return typeof process != "undefined" &&
|
|
524
|
+
Object.prototype.toString.call(process) == "[object process]" &&
|
|
525
|
+
process.platform == "win32"
|
|
526
|
+
},
|
|
527
|
+
_1392: () => new WeakMap(),
|
|
528
|
+
_1393: (map, o) => map.get(o),
|
|
529
|
+
_1394: (map, o, v) => map.set(o, v),
|
|
530
|
+
_1395: x0 => new WeakRef(x0),
|
|
531
|
+
_1396: x0 => x0.deref(),
|
|
532
|
+
_1397: (module,f) => finalizeWrapper(f, function(x0) { return module.exports._1397(f,arguments.length,x0) }),
|
|
533
|
+
_1398: x0 => new FinalizationRegistry(x0),
|
|
534
|
+
_1399: (x0,x1,x2,x3) => x0.register(x1,x2,x3),
|
|
535
|
+
_1401: (x0,x1) => x0.unregister(x1),
|
|
536
|
+
_1403: () => globalThis.WeakRef,
|
|
537
|
+
_1404: () => globalThis.FinalizationRegistry,
|
|
538
|
+
_1406: x0 => x0.call(),
|
|
539
|
+
_1407: s => JSON.stringify(s),
|
|
540
|
+
_1408: s => printToConsole(s),
|
|
541
|
+
_1409: o => {
|
|
542
|
+
if (o === null || o === undefined) return 0;
|
|
543
|
+
if (typeof(o) === 'string') return 1;
|
|
544
|
+
return 2;
|
|
545
|
+
},
|
|
546
|
+
_1410: (o, p, r) => o.replaceAll(p, () => r),
|
|
547
|
+
_1411: (o, p, r) => o.replace(p, () => r),
|
|
548
|
+
_1412: Function.prototype.call.bind(String.prototype.toLowerCase),
|
|
549
|
+
_1413: s => s.toUpperCase(),
|
|
550
|
+
_1414: s => s.trim(),
|
|
551
|
+
_1415: s => s.trimLeft(),
|
|
552
|
+
_1416: s => s.trimRight(),
|
|
553
|
+
_1417: (string, times) => string.repeat(times),
|
|
554
|
+
_1418: Function.prototype.call.bind(String.prototype.indexOf),
|
|
555
|
+
_1419: (s, p, i) => s.lastIndexOf(p, i),
|
|
556
|
+
_1420: (string, token) => string.split(token),
|
|
557
|
+
_1421: Object.is,
|
|
558
|
+
_1425: (o, t) => typeof o === t,
|
|
559
|
+
_1426: (o, c) => o instanceof c,
|
|
560
|
+
_1427: o => Object.keys(o),
|
|
561
|
+
_1431: (o, a) => o + a,
|
|
562
|
+
_1441: (o, a) => o == a,
|
|
563
|
+
_1460: (x0,x1) => x0.call(x1),
|
|
564
|
+
_1481: x0 => new Array(x0),
|
|
565
|
+
_1483: x0 => x0.length,
|
|
566
|
+
_1485: (x0,x1) => x0[x1],
|
|
567
|
+
_1486: (x0,x1,x2) => { x0[x1] = x2 },
|
|
568
|
+
_1489: (x0,x1,x2) => new DataView(x0,x1,x2),
|
|
569
|
+
_1491: x0 => new Int8Array(x0),
|
|
570
|
+
_1492: (x0,x1,x2) => new Uint8Array(x0,x1,x2),
|
|
571
|
+
_1494: x0 => new Uint8ClampedArray(x0),
|
|
572
|
+
_1496: x0 => new Int16Array(x0),
|
|
573
|
+
_1498: x0 => new Uint16Array(x0),
|
|
574
|
+
_1500: x0 => new Int32Array(x0),
|
|
575
|
+
_1502: x0 => new Uint32Array(x0),
|
|
576
|
+
_1504: x0 => new Float32Array(x0),
|
|
577
|
+
_1506: x0 => new Float64Array(x0),
|
|
578
|
+
_1530: x0 => x0.random(),
|
|
579
|
+
_1531: (x0,x1) => x0.getRandomValues(x1),
|
|
580
|
+
_1532: () => globalThis.crypto,
|
|
581
|
+
_1533: () => globalThis.Math,
|
|
582
|
+
_1546: (ms, c) =>
|
|
583
|
+
setTimeout(() => dartInstance.exports.$invokeCallback(c),ms),
|
|
584
|
+
_1547: (handle) => clearTimeout(handle),
|
|
585
|
+
_1548: (ms, c) =>
|
|
586
|
+
setInterval(() => dartInstance.exports.$invokeCallback(c), ms),
|
|
587
|
+
_1549: (handle) => clearInterval(handle),
|
|
588
|
+
_1550: (c) =>
|
|
589
|
+
queueMicrotask(() => dartInstance.exports.$invokeCallback(c)),
|
|
590
|
+
_1551: () => Date.now(),
|
|
591
|
+
_1552: () => new Error().stack,
|
|
592
|
+
_1553: (exn) => {
|
|
593
|
+
let stackString = exn.toString();
|
|
594
|
+
let frames = stackString.split('\n');
|
|
595
|
+
let drop = 4;
|
|
596
|
+
if (frames[0].startsWith('Error')) {
|
|
597
|
+
drop += 1;
|
|
598
|
+
}
|
|
599
|
+
return frames.slice(drop).join('\n');
|
|
600
|
+
},
|
|
601
|
+
_1554: (s, m) => {
|
|
602
|
+
try {
|
|
603
|
+
return new RegExp(s, m);
|
|
604
|
+
} catch (e) {
|
|
605
|
+
return String(e);
|
|
606
|
+
}
|
|
607
|
+
},
|
|
608
|
+
_1555: (x0,x1) => x0.exec(x1),
|
|
609
|
+
_1556: (x0,x1) => x0.test(x1),
|
|
610
|
+
_1557: x0 => x0.pop(),
|
|
611
|
+
_1559: o => o === undefined,
|
|
612
|
+
_1561: o => typeof o === 'function' && o[jsWrappedDartFunctionSymbol] === true,
|
|
613
|
+
_1563: o => {
|
|
614
|
+
const proto = Object.getPrototypeOf(o);
|
|
615
|
+
return proto === Object.prototype || proto === null;
|
|
616
|
+
},
|
|
617
|
+
_1564: o => o instanceof RegExp,
|
|
618
|
+
_1565: (l, r) => l === r,
|
|
619
|
+
_1566: o => o,
|
|
620
|
+
_1567: o => {
|
|
621
|
+
if (o === undefined || o === null) return 0;
|
|
622
|
+
if (typeof o === 'number') return 1;
|
|
623
|
+
return 2;
|
|
624
|
+
},
|
|
625
|
+
_1568: o => o,
|
|
626
|
+
_1569: o => {
|
|
627
|
+
if (o === undefined || o === null) return 0;
|
|
628
|
+
if (typeof o === 'boolean') return 1;
|
|
629
|
+
return 2;
|
|
630
|
+
},
|
|
631
|
+
_1570: o => o,
|
|
632
|
+
_1571: b => !!b,
|
|
633
|
+
_1572: o => o.length,
|
|
634
|
+
_1574: (o, i) => o[i],
|
|
635
|
+
_1575: f => f.dartFunction,
|
|
636
|
+
_1576: () => ({}),
|
|
637
|
+
_1577: () => [],
|
|
638
|
+
_1579: () => globalThis,
|
|
639
|
+
_1580: (constructor, args) => {
|
|
640
|
+
const factoryFunction = constructor.bind.apply(
|
|
641
|
+
constructor, [null, ...args]);
|
|
642
|
+
return new factoryFunction();
|
|
643
|
+
},
|
|
644
|
+
_1581: (o, p) => p in o,
|
|
645
|
+
_1582: (o, p) => o[p],
|
|
646
|
+
_1583: (o, p, v) => o[p] = v,
|
|
647
|
+
_1584: (o, m, a) => o[m].apply(o, a),
|
|
648
|
+
_1586: o => String(o),
|
|
649
|
+
_1587: (p, s, f) => p.then(s, (e) => f(e, e === undefined)),
|
|
650
|
+
_1588: (module,f) => finalizeWrapper(f, function(x0) { return module.exports._1588(f,arguments.length,x0) }),
|
|
651
|
+
_1589: (module,f) => finalizeWrapper(f, function(x0,x1) { return module.exports._1589(f,arguments.length,x0,x1) }),
|
|
652
|
+
_1590: o => {
|
|
653
|
+
if (o === undefined) return 1;
|
|
654
|
+
var type = typeof o;
|
|
655
|
+
if (type === 'boolean') return 2;
|
|
656
|
+
if (type === 'number') return 3;
|
|
657
|
+
if (type === 'string') return 4;
|
|
658
|
+
if (o instanceof Array) return 5;
|
|
659
|
+
if (ArrayBuffer.isView(o)) {
|
|
660
|
+
if (o instanceof Int8Array) return 6;
|
|
661
|
+
if (o instanceof Uint8Array) return 7;
|
|
662
|
+
if (o instanceof Uint8ClampedArray) return 8;
|
|
663
|
+
if (o instanceof Int16Array) return 9;
|
|
664
|
+
if (o instanceof Uint16Array) return 10;
|
|
665
|
+
if (o instanceof Int32Array) return 11;
|
|
666
|
+
if (o instanceof Uint32Array) return 12;
|
|
667
|
+
if (o instanceof Float32Array) return 13;
|
|
668
|
+
if (o instanceof Float64Array) return 14;
|
|
669
|
+
if (o instanceof DataView) return 15;
|
|
670
|
+
}
|
|
671
|
+
if (o instanceof ArrayBuffer) return 16;
|
|
672
|
+
// Feature check for `SharedArrayBuffer` before doing a type-check.
|
|
673
|
+
if (globalThis.SharedArrayBuffer !== undefined &&
|
|
674
|
+
o instanceof SharedArrayBuffer) {
|
|
675
|
+
return 17;
|
|
676
|
+
}
|
|
677
|
+
if (o instanceof Promise) return 18;
|
|
678
|
+
return 19;
|
|
679
|
+
},
|
|
680
|
+
_1591: o => [o],
|
|
681
|
+
_1592: (o0, o1) => [o0, o1],
|
|
682
|
+
_1593: (o0, o1, o2) => [o0, o1, o2],
|
|
683
|
+
_1594: (o0, o1, o2, o3) => [o0, o1, o2, o3],
|
|
684
|
+
_1595: (exn) => {
|
|
685
|
+
if (exn instanceof Error) {
|
|
686
|
+
return exn.stack;
|
|
687
|
+
} else {
|
|
688
|
+
return null;
|
|
689
|
+
}
|
|
690
|
+
},
|
|
691
|
+
_1596: (jsArray, jsArrayOffset, wasmArray, wasmArrayOffset, length) => {
|
|
692
|
+
const getValue = dartInstance.exports.$wasmI8ArrayGet;
|
|
693
|
+
for (let i = 0; i < length; i++) {
|
|
694
|
+
jsArray[jsArrayOffset + i] = getValue(wasmArray, wasmArrayOffset + i);
|
|
695
|
+
}
|
|
696
|
+
},
|
|
697
|
+
_1597: (jsArray, jsArrayOffset, wasmArray, wasmArrayOffset, length) => {
|
|
698
|
+
const setValue = dartInstance.exports.$wasmI8ArraySet;
|
|
699
|
+
for (let i = 0; i < length; i++) {
|
|
700
|
+
setValue(wasmArray, wasmArrayOffset + i, jsArray[jsArrayOffset + i]);
|
|
701
|
+
}
|
|
702
|
+
},
|
|
703
|
+
_1598: (jsArray, jsArrayOffset, wasmArray, wasmArrayOffset, length) => {
|
|
704
|
+
const getValue = dartInstance.exports.$wasmI16ArrayGet;
|
|
705
|
+
for (let i = 0; i < length; i++) {
|
|
706
|
+
jsArray[jsArrayOffset + i] = getValue(wasmArray, wasmArrayOffset + i);
|
|
707
|
+
}
|
|
708
|
+
},
|
|
709
|
+
_1599: (jsArray, jsArrayOffset, wasmArray, wasmArrayOffset, length) => {
|
|
710
|
+
const setValue = dartInstance.exports.$wasmI16ArraySet;
|
|
711
|
+
for (let i = 0; i < length; i++) {
|
|
712
|
+
setValue(wasmArray, wasmArrayOffset + i, jsArray[jsArrayOffset + i]);
|
|
713
|
+
}
|
|
714
|
+
},
|
|
715
|
+
_1600: (jsArray, jsArrayOffset, wasmArray, wasmArrayOffset, length) => {
|
|
716
|
+
const getValue = dartInstance.exports.$wasmI32ArrayGet;
|
|
717
|
+
for (let i = 0; i < length; i++) {
|
|
718
|
+
jsArray[jsArrayOffset + i] = getValue(wasmArray, wasmArrayOffset + i);
|
|
719
|
+
}
|
|
720
|
+
},
|
|
721
|
+
_1601: (jsArray, jsArrayOffset, wasmArray, wasmArrayOffset, length) => {
|
|
722
|
+
const setValue = dartInstance.exports.$wasmI32ArraySet;
|
|
723
|
+
for (let i = 0; i < length; i++) {
|
|
724
|
+
setValue(wasmArray, wasmArrayOffset + i, jsArray[jsArrayOffset + i]);
|
|
725
|
+
}
|
|
726
|
+
},
|
|
727
|
+
_1602: (jsArray, jsArrayOffset, wasmArray, wasmArrayOffset, length) => {
|
|
728
|
+
const getValue = dartInstance.exports.$wasmF32ArrayGet;
|
|
729
|
+
for (let i = 0; i < length; i++) {
|
|
730
|
+
jsArray[jsArrayOffset + i] = getValue(wasmArray, wasmArrayOffset + i);
|
|
731
|
+
}
|
|
732
|
+
},
|
|
733
|
+
_1603: (jsArray, jsArrayOffset, wasmArray, wasmArrayOffset, length) => {
|
|
734
|
+
const setValue = dartInstance.exports.$wasmF32ArraySet;
|
|
735
|
+
for (let i = 0; i < length; i++) {
|
|
736
|
+
setValue(wasmArray, wasmArrayOffset + i, jsArray[jsArrayOffset + i]);
|
|
737
|
+
}
|
|
738
|
+
},
|
|
739
|
+
_1604: (jsArray, jsArrayOffset, wasmArray, wasmArrayOffset, length) => {
|
|
740
|
+
const getValue = dartInstance.exports.$wasmF64ArrayGet;
|
|
741
|
+
for (let i = 0; i < length; i++) {
|
|
742
|
+
jsArray[jsArrayOffset + i] = getValue(wasmArray, wasmArrayOffset + i);
|
|
743
|
+
}
|
|
744
|
+
},
|
|
745
|
+
_1605: (jsArray, jsArrayOffset, wasmArray, wasmArrayOffset, length) => {
|
|
746
|
+
const setValue = dartInstance.exports.$wasmF64ArraySet;
|
|
747
|
+
for (let i = 0; i < length; i++) {
|
|
748
|
+
setValue(wasmArray, wasmArrayOffset + i, jsArray[jsArrayOffset + i]);
|
|
749
|
+
}
|
|
750
|
+
},
|
|
751
|
+
_1606: x0 => new ArrayBuffer(x0),
|
|
752
|
+
_1607: s => {
|
|
753
|
+
if (/[[\]{}()*+?.\\^$|]/.test(s)) {
|
|
754
|
+
s = s.replace(/[[\]{}()*+?.\\^$|]/g, '\\$&');
|
|
755
|
+
}
|
|
756
|
+
return s;
|
|
757
|
+
},
|
|
758
|
+
_1609: x0 => x0.index,
|
|
759
|
+
_1610: x0 => x0.groups,
|
|
760
|
+
_1611: x0 => x0.flags,
|
|
761
|
+
_1612: x0 => x0.multiline,
|
|
762
|
+
_1613: x0 => x0.ignoreCase,
|
|
763
|
+
_1614: x0 => x0.unicode,
|
|
764
|
+
_1615: x0 => x0.dotAll,
|
|
765
|
+
_1616: (x0,x1) => { x0.lastIndex = x1 },
|
|
766
|
+
_1617: (o, p) => p in o,
|
|
767
|
+
_1618: (o, p) => o[p],
|
|
768
|
+
_1619: (o, p, v) => o[p] = v,
|
|
769
|
+
_1621: (x0,x1) => x0.sqlite3changeset_finalize(x1),
|
|
770
|
+
_1622: (x0,x1) => x0.sqlite3session_delete(x1),
|
|
771
|
+
_1623: (x0,x1) => x0.sqlite3_close_v2(x1),
|
|
772
|
+
_1624: (x0,x1) => x0.sqlite3_finalize(x1),
|
|
773
|
+
_1625: (x0,x1) => x0.dart_sqlite3_malloc(x1),
|
|
774
|
+
_1626: (x0,x1) => x0.dart_sqlite3_free(x1),
|
|
775
|
+
_1628: x0 => x0.sqlite3_initialize(),
|
|
776
|
+
_1634: (x0,x1,x2,x3,x4) => x0.sqlite3_open_v2(x1,x2,x3,x4),
|
|
777
|
+
_1635: (x0,x1) => x0.sqlite3_extended_errcode(x1),
|
|
778
|
+
_1636: (x0,x1) => x0.sqlite3_errmsg(x1),
|
|
779
|
+
_1637: (x0,x1) => x0.sqlite3_errstr(x1),
|
|
780
|
+
_1638: (x0,x1) => x0.sqlite3_error_offset(x1),
|
|
781
|
+
_1639: (x0,x1,x2) => x0.sqlite3_extended_result_codes(x1,x2),
|
|
782
|
+
_1640: (x0,x1,x2) => x0.dart_sqlite3_updates(x1,x2),
|
|
783
|
+
_1641: (x0,x1,x2) => x0.dart_sqlite3_commits(x1,x2),
|
|
784
|
+
_1642: (x0,x1,x2) => x0.dart_sqlite3_rollbacks(x1,x2),
|
|
785
|
+
_1643: (x0,x1,x2,x3,x4,x5) => x0.sqlite3_exec(x1,x2,x3,x4,x5),
|
|
786
|
+
_1644: (x0,x1,x2,x3,x4,x5,x6) => x0.sqlite3_prepare_v3(x1,x2,x3,x4,x5,x6),
|
|
787
|
+
_1645: (x0,x1) => x0.sqlite3_bind_parameter_count(x1),
|
|
788
|
+
_1646: (x0,x1,x2) => x0.sqlite3_bind_null(x1,x2),
|
|
789
|
+
_1647: (x0,x1,x2,x3) => x0.sqlite3_bind_int64(x1,x2,x3),
|
|
790
|
+
_1648: (x0,x1,x2,x3) => x0.sqlite3_bind_double(x1,x2,x3),
|
|
791
|
+
_1649: (x0,x1,x2,x3,x4) => x0.dart_sqlite3_bind_text(x1,x2,x3,x4),
|
|
792
|
+
_1650: (x0,x1,x2,x3,x4) => x0.dart_sqlite3_bind_blob(x1,x2,x3,x4),
|
|
793
|
+
_1652: (x0,x1) => x0.sqlite3_column_count(x1),
|
|
794
|
+
_1653: (x0,x1,x2) => x0.sqlite3_column_name(x1,x2),
|
|
795
|
+
_1654: (x0,x1,x2) => x0.sqlite3_column_type(x1,x2),
|
|
796
|
+
_1655: (x0,x1,x2) => x0.sqlite3_column_int64(x1,x2),
|
|
797
|
+
_1656: (x0,x1,x2) => x0.sqlite3_column_double(x1,x2),
|
|
798
|
+
_1657: (x0,x1,x2) => x0.sqlite3_column_bytes(x1,x2),
|
|
799
|
+
_1658: (x0,x1,x2) => x0.sqlite3_column_text(x1,x2),
|
|
800
|
+
_1659: (x0,x1,x2) => x0.sqlite3_column_blob(x1,x2),
|
|
801
|
+
_1660: (x0,x1) => x0.sqlite3_value_type(x1),
|
|
802
|
+
_1662: (x0,x1) => x0.sqlite3_value_int64(x1),
|
|
803
|
+
_1663: (x0,x1) => x0.sqlite3_value_double(x1),
|
|
804
|
+
_1664: (x0,x1) => x0.sqlite3_value_bytes(x1),
|
|
805
|
+
_1665: (x0,x1) => x0.sqlite3_value_text(x1),
|
|
806
|
+
_1666: (x0,x1) => x0.sqlite3_value_blob(x1),
|
|
807
|
+
_1667: (x0,x1) => x0.sqlite3_result_null(x1),
|
|
808
|
+
_1668: (x0,x1,x2) => x0.sqlite3_result_int64(x1,x2),
|
|
809
|
+
_1669: (x0,x1,x2) => x0.sqlite3_result_double(x1,x2),
|
|
810
|
+
_1670: (x0,x1,x2,x3,x4) => x0.sqlite3_result_text(x1,x2,x3,x4),
|
|
811
|
+
_1671: (x0,x1,x2,x3,x4) => x0.sqlite3_result_blob64(x1,x2,x3,x4),
|
|
812
|
+
_1672: (x0,x1,x2,x3) => x0.sqlite3_result_error(x1,x2,x3),
|
|
813
|
+
_1673: (x0,x1,x2) => x0.sqlite3_result_subtype(x1,x2),
|
|
814
|
+
_1676: (x0,x1) => x0.sqlite3_step(x1),
|
|
815
|
+
_1677: (x0,x1) => x0.sqlite3_reset(x1),
|
|
816
|
+
_1678: (x0,x1) => x0.sqlite3_changes(x1),
|
|
817
|
+
_1679: (x0,x1) => x0.sqlite3_stmt_isexplain(x1),
|
|
818
|
+
_1681: (x0,x1) => x0.sqlite3_last_insert_rowid(x1),
|
|
819
|
+
_1698: (x0,x1,x2,x3) => x0.dart_sqlite3_register_vfs(x1,x2,x3),
|
|
820
|
+
_1701: (x0,x1,x2,x3,x4,x5,x6) => x0.dart_sqlite3_create_function_v2(x1,x2,x3,x4,x5,x6),
|
|
821
|
+
_1703: (module,f) => finalizeWrapper(f, function(x0) { return module.exports._1703(f,arguments.length,x0) }),
|
|
822
|
+
_1704: (module,f) => finalizeWrapper(f, function(x0,x1) { return module.exports._1704(f,arguments.length,x0,x1) }),
|
|
823
|
+
_1705: (module,f) => finalizeWrapper(f, function(x0,x1,x2,x3,x4) { return module.exports._1705(f,arguments.length,x0,x1,x2,x3,x4) }),
|
|
824
|
+
_1706: (module,f) => finalizeWrapper(f, function(x0,x1,x2) { return module.exports._1706(f,arguments.length,x0,x1,x2) }),
|
|
825
|
+
_1707: (module,f) => finalizeWrapper(f, function(x0,x1,x2,x3) { return module.exports._1707(f,arguments.length,x0,x1,x2,x3) }),
|
|
826
|
+
_1708: (module,f) => finalizeWrapper(f, function(x0,x1,x2,x3) { return module.exports._1708(f,arguments.length,x0,x1,x2,x3) }),
|
|
827
|
+
_1709: (module,f) => finalizeWrapper(f, function(x0,x1,x2) { return module.exports._1709(f,arguments.length,x0,x1,x2) }),
|
|
828
|
+
_1710: (module,f) => finalizeWrapper(f, function(x0,x1) { return module.exports._1710(f,arguments.length,x0,x1) }),
|
|
829
|
+
_1711: (module,f) => finalizeWrapper(f, function(x0,x1) { return module.exports._1711(f,arguments.length,x0,x1) }),
|
|
830
|
+
_1712: (module,f) => finalizeWrapper(f, function(x0) { return module.exports._1712(f,arguments.length,x0) }),
|
|
831
|
+
_1713: (module,f) => finalizeWrapper(f, function(x0,x1,x2,x3) { return module.exports._1713(f,arguments.length,x0,x1,x2,x3) }),
|
|
832
|
+
_1714: (module,f) => finalizeWrapper(f, function(x0,x1,x2,x3) { return module.exports._1714(f,arguments.length,x0,x1,x2,x3) }),
|
|
833
|
+
_1715: (module,f) => finalizeWrapper(f, function(x0,x1) { return module.exports._1715(f,arguments.length,x0,x1) }),
|
|
834
|
+
_1716: (module,f) => finalizeWrapper(f, function(x0,x1) { return module.exports._1716(f,arguments.length,x0,x1) }),
|
|
835
|
+
_1717: (module,f) => finalizeWrapper(f, function(x0,x1) { return module.exports._1717(f,arguments.length,x0,x1) }),
|
|
836
|
+
_1718: (module,f) => finalizeWrapper(f, function(x0,x1) { return module.exports._1718(f,arguments.length,x0,x1) }),
|
|
837
|
+
_1719: (module,f) => finalizeWrapper(f, function(x0,x1) { return module.exports._1719(f,arguments.length,x0,x1) }),
|
|
838
|
+
_1720: (module,f) => finalizeWrapper(f, function(x0,x1) { return module.exports._1720(f,arguments.length,x0,x1) }),
|
|
839
|
+
_1721: (module,f) => finalizeWrapper(f, function(x0) { return module.exports._1721(f,arguments.length,x0) }),
|
|
840
|
+
_1722: (module,f) => finalizeWrapper(f, function(x0) { return module.exports._1722(f,arguments.length,x0) }),
|
|
841
|
+
_1723: (module,f) => finalizeWrapper(f, function(x0) { return module.exports._1723(f,arguments.length,x0) }),
|
|
842
|
+
_1724: (module,f) => finalizeWrapper(f, function(x0,x1,x2,x3,x4) { return module.exports._1724(f,arguments.length,x0,x1,x2,x3,x4) }),
|
|
843
|
+
_1725: (module,f) => finalizeWrapper(f, function(x0,x1,x2,x3) { return module.exports._1725(f,arguments.length,x0,x1,x2,x3) }),
|
|
844
|
+
_1726: (module,f) => finalizeWrapper(f, function(x0,x1,x2,x3) { return module.exports._1726(f,arguments.length,x0,x1,x2,x3) }),
|
|
845
|
+
_1727: (module,f) => finalizeWrapper(f, function(x0,x1,x2,x3) { return module.exports._1727(f,arguments.length,x0,x1,x2,x3) }),
|
|
846
|
+
_1728: (module,f) => finalizeWrapper(f, function(x0,x1) { return module.exports._1728(f,arguments.length,x0,x1) }),
|
|
847
|
+
_1729: (module,f) => finalizeWrapper(f, function(x0,x1) { return module.exports._1729(f,arguments.length,x0,x1) }),
|
|
848
|
+
_1730: (module,f) => finalizeWrapper(f, function(x0,x1,x2,x3,x4) { return module.exports._1730(f,arguments.length,x0,x1,x2,x3,x4) }),
|
|
849
|
+
_1731: (module,f) => finalizeWrapper(f, function(x0,x1) { return module.exports._1731(f,arguments.length,x0,x1) }),
|
|
850
|
+
_1732: (module,f) => finalizeWrapper(f, function(x0,x1) { return module.exports._1732(f,arguments.length,x0,x1) }),
|
|
851
|
+
_1733: (module,f) => finalizeWrapper(f, function(x0,x1,x2) { return module.exports._1733(f,arguments.length,x0,x1,x2) }),
|
|
852
|
+
_1734: (x0,x1,x2) => x0.instantiateStreaming(x1,x2),
|
|
853
|
+
_1738: x0 => new URL(x0),
|
|
854
|
+
_1739: (x0,x1) => new URL(x0,x1),
|
|
855
|
+
_1740: (x0,x1) => globalThis.fetch(x0,x1),
|
|
856
|
+
_1741: (x0,x1,x2) => x0.postMessage(x1,x2),
|
|
857
|
+
_1742: (x0,x1,x2) => x0.postMessage(x1,x2),
|
|
858
|
+
_1744: (x0,x1) => ({i: x0,p: x1}),
|
|
859
|
+
_1745: (x0,x1) => ({c: x0,r: x1}),
|
|
860
|
+
_1746: x0 => x0.i,
|
|
861
|
+
_1747: x0 => x0.p,
|
|
862
|
+
_1748: x0 => x0.c,
|
|
863
|
+
_1749: x0 => x0.r,
|
|
864
|
+
_1750: (module,f) => finalizeWrapper(f, function(x0) { return module.exports._1750(f,arguments.length,x0) }),
|
|
865
|
+
_1751: (x0,x1) => x0.postMessage(x1),
|
|
866
|
+
_1752: x0 => x0.close(),
|
|
867
|
+
_1754: x0 => new Worker(x0),
|
|
868
|
+
_1756: x0 => x0.createSyncAccessHandle(),
|
|
869
|
+
_1757: x0 => x0.close(),
|
|
870
|
+
_1760: x0 => x0.close(),
|
|
871
|
+
_1763: (x0,x1,x2) => x0.open(x1,x2),
|
|
872
|
+
_1771: (x0,x1) => new SharedWorker(x0,x1),
|
|
873
|
+
_1772: x0 => x0.start(),
|
|
874
|
+
_1773: x0 => x0.terminate(),
|
|
875
|
+
_1774: () => new MessageChannel(),
|
|
876
|
+
_1777: x0 => new SharedArrayBuffer(x0),
|
|
877
|
+
_1778: x0 => ({at: x0}),
|
|
878
|
+
_1779: x0 => x0.getSize(),
|
|
879
|
+
_1780: (x0,x1) => x0.truncate(x1),
|
|
880
|
+
_1781: x0 => x0.flush(),
|
|
881
|
+
_1784: x0 => x0.synchronizationBuffer,
|
|
882
|
+
_1785: x0 => x0.communicationBuffer,
|
|
883
|
+
_1786: (x0,x1,x2,x3) => ({clientVersion: x0,root: x1,synchronizationBuffer: x2,communicationBuffer: x3}),
|
|
884
|
+
_1787: (x0,x1) => globalThis.IDBKeyRange.bound(x0,x1),
|
|
885
|
+
_1788: x0 => ({autoIncrement: x0}),
|
|
886
|
+
_1789: (x0,x1,x2) => x0.createObjectStore(x1,x2),
|
|
887
|
+
_1790: x0 => ({unique: x0}),
|
|
888
|
+
_1791: (x0,x1,x2,x3) => x0.createIndex(x1,x2,x3),
|
|
889
|
+
_1792: (x0,x1) => x0.createObjectStore(x1),
|
|
890
|
+
_1793: (module,f) => finalizeWrapper(f, function(x0) { return module.exports._1793(f,arguments.length,x0) }),
|
|
891
|
+
_1794: (x0,x1,x2) => x0.transaction(x1,x2),
|
|
892
|
+
_1795: (x0,x1) => x0.objectStore(x1),
|
|
893
|
+
_1797: (x0,x1) => x0.index(x1),
|
|
894
|
+
_1798: x0 => x0.openKeyCursor(),
|
|
895
|
+
_1799: (x0,x1) => x0.getKey(x1),
|
|
896
|
+
_1800: (x0,x1) => ({name: x0,length: x1}),
|
|
897
|
+
_1801: (x0,x1) => x0.put(x1),
|
|
898
|
+
_1802: (x0,x1) => x0.get(x1),
|
|
899
|
+
_1803: (x0,x1) => x0.openCursor(x1),
|
|
900
|
+
_1804: x0 => globalThis.IDBKeyRange.only(x0),
|
|
901
|
+
_1805: (x0,x1,x2) => x0.put(x1,x2),
|
|
902
|
+
_1806: (x0,x1) => x0.update(x1),
|
|
903
|
+
_1807: (x0,x1) => x0.delete(x1),
|
|
904
|
+
_1808: x0 => x0.name,
|
|
905
|
+
_1809: x0 => x0.length,
|
|
906
|
+
_1812: x0 => x0.continue(),
|
|
907
|
+
_1813: () => globalThis.indexedDB,
|
|
908
|
+
_1814: () => globalThis.navigator,
|
|
909
|
+
_1815: (x0,x1) => x0.read(x1),
|
|
910
|
+
_1816: (x0,x1,x2) => x0.read(x1,x2),
|
|
911
|
+
_1817: (x0,x1) => x0.write(x1),
|
|
912
|
+
_1818: (x0,x1,x2) => x0.write(x1,x2),
|
|
913
|
+
_1820: (x0,x1,x2) => globalThis.Atomics.wait(x0,x1,x2),
|
|
914
|
+
_1822: (x0,x1,x2) => globalThis.Atomics.notify(x0,x1,x2),
|
|
915
|
+
_1823: (x0,x1,x2) => globalThis.Atomics.store(x0,x1,x2),
|
|
916
|
+
_1824: (x0,x1) => globalThis.Atomics.load(x0,x1),
|
|
917
|
+
_1825: () => globalThis.Int32Array,
|
|
918
|
+
_1827: () => globalThis.Uint8Array,
|
|
919
|
+
_1829: () => globalThis.DataView,
|
|
920
|
+
_1831: x0 => x0.byteLength,
|
|
921
|
+
_1833: x0 => globalThis.BigInt(x0),
|
|
922
|
+
_1834: x0 => globalThis.Number(x0),
|
|
923
|
+
_1841: x0 => new BroadcastChannel(x0),
|
|
924
|
+
_1842: x0 => globalThis.Array.isArray(x0),
|
|
925
|
+
_1843: (x0,x1) => x0.postMessage(x1),
|
|
926
|
+
_1845: (x0,x1) => ({kind: x0,table: x1}),
|
|
927
|
+
_1846: x0 => x0.kind,
|
|
928
|
+
_1847: x0 => x0.table,
|
|
929
|
+
_1848: () => new XMLHttpRequest(),
|
|
930
|
+
_1849: (x0,x1,x2,x3) => x0.open(x1,x2,x3),
|
|
931
|
+
_1853: x0 => x0.send(),
|
|
932
|
+
_1855: (module,f) => finalizeWrapper(f, function(x0) { return module.exports._1855(f,arguments.length,x0) }),
|
|
933
|
+
_1856: (module,f) => finalizeWrapper(f, function(x0) { return module.exports._1856(f,arguments.length,x0) }),
|
|
934
|
+
_1864: (x0,x1) => x0.contains(x1),
|
|
935
|
+
_1865: (module,f) => finalizeWrapper(f, function(x0) { return module.exports._1865(f,arguments.length,x0) }),
|
|
936
|
+
_1877: (x0,x1) => x0.key(x1),
|
|
937
|
+
_1878: o => o instanceof Array,
|
|
938
|
+
_1881: (a, l) => a.length = l,
|
|
939
|
+
_1882: a => a.pop(),
|
|
940
|
+
_1883: (a, i) => a.splice(i, 1),
|
|
941
|
+
_1884: (a, s) => a.join(s),
|
|
942
|
+
_1885: (a, s, e) => a.slice(s, e),
|
|
943
|
+
_1888: a => a.length,
|
|
944
|
+
_1889: (a, l) => a.length = l,
|
|
945
|
+
_1890: (a, i) => a[i],
|
|
946
|
+
_1891: (a, i, v) => a[i] = v,
|
|
947
|
+
_1893: o => {
|
|
948
|
+
if (o === null || o === undefined) return 0;
|
|
949
|
+
if (o instanceof ArrayBuffer) return 1;
|
|
950
|
+
if (globalThis.SharedArrayBuffer !== undefined &&
|
|
951
|
+
o instanceof SharedArrayBuffer) {
|
|
952
|
+
return 2;
|
|
953
|
+
}
|
|
954
|
+
return 3;
|
|
955
|
+
},
|
|
956
|
+
_1894: (o, offsetInBytes, lengthInBytes) => {
|
|
957
|
+
var dst = new ArrayBuffer(lengthInBytes);
|
|
958
|
+
new Uint8Array(dst).set(new Uint8Array(o, offsetInBytes, lengthInBytes));
|
|
959
|
+
return new DataView(dst);
|
|
960
|
+
},
|
|
961
|
+
_1895: o => {
|
|
962
|
+
if (o === null || o === undefined) return 0;
|
|
963
|
+
if (o instanceof DataView) return 1;
|
|
964
|
+
return 2;
|
|
965
|
+
},
|
|
966
|
+
_1896: o => {
|
|
967
|
+
if (o === null || o === undefined) return 0;
|
|
968
|
+
if (o instanceof Uint8Array) return 1;
|
|
969
|
+
return 2;
|
|
970
|
+
},
|
|
971
|
+
_1897: (o, start, length) => new Uint8Array(o.buffer, o.byteOffset + start, length),
|
|
972
|
+
_1898: o => {
|
|
973
|
+
if (o === null || o === undefined) return 0;
|
|
974
|
+
if (o instanceof Int8Array) return 1;
|
|
975
|
+
return 2;
|
|
976
|
+
},
|
|
977
|
+
_1899: (o, start, length) => new Int8Array(o.buffer, o.byteOffset + start, length),
|
|
978
|
+
_1900: o => o instanceof Uint8ClampedArray,
|
|
979
|
+
_1901: (o, start, length) => new Uint8ClampedArray(o.buffer, o.byteOffset + start, length),
|
|
980
|
+
_1902: o => o instanceof Uint16Array,
|
|
981
|
+
_1903: (o, start, length) => new Uint16Array(o.buffer, o.byteOffset + start, length),
|
|
982
|
+
_1904: o => o instanceof Int16Array,
|
|
983
|
+
_1905: (o, start, length) => new Int16Array(o.buffer, o.byteOffset + start, length),
|
|
984
|
+
_1906: o => {
|
|
985
|
+
if (o === null || o === undefined) return 0;
|
|
986
|
+
if (o instanceof Uint32Array) return 1;
|
|
987
|
+
return 2;
|
|
988
|
+
},
|
|
989
|
+
_1907: (o, start, length) => new Uint32Array(o.buffer, o.byteOffset + start, length),
|
|
990
|
+
_1908: o => {
|
|
991
|
+
if (o === null || o === undefined) return 0;
|
|
992
|
+
if (o instanceof Int32Array) return 1;
|
|
993
|
+
return 2;
|
|
994
|
+
},
|
|
995
|
+
_1909: (o, start, length) => new Int32Array(o.buffer, o.byteOffset + start, length),
|
|
996
|
+
_1911: (o, start, length) => new BigInt64Array(o.buffer, o.byteOffset + start, length),
|
|
997
|
+
_1912: o => {
|
|
998
|
+
if (o === null || o === undefined) return 0;
|
|
999
|
+
if (o instanceof Float32Array) return 1;
|
|
1000
|
+
return 2;
|
|
1001
|
+
},
|
|
1002
|
+
_1913: (o, start, length) => new Float32Array(o.buffer, o.byteOffset + start, length),
|
|
1003
|
+
_1914: o => {
|
|
1004
|
+
if (o === null || o === undefined) return 0;
|
|
1005
|
+
if (o instanceof Float64Array) return 1;
|
|
1006
|
+
return 2;
|
|
1007
|
+
},
|
|
1008
|
+
_1915: (o, start, length) => new Float64Array(o.buffer, o.byteOffset + start, length),
|
|
1009
|
+
_1916: (a, i) => a.push(i),
|
|
1010
|
+
_1917: (t, s) => t.set(s),
|
|
1011
|
+
_1918: l => new DataView(new ArrayBuffer(l)),
|
|
1012
|
+
_1919: (o) => new DataView(o.buffer, o.byteOffset, o.byteLength),
|
|
1013
|
+
_1920: o => o.byteLength,
|
|
1014
|
+
_1921: o => o.buffer,
|
|
1015
|
+
_1922: o => o.byteOffset,
|
|
1016
|
+
_1923: Function.prototype.call.bind(Object.getOwnPropertyDescriptor(DataView.prototype, 'byteLength').get),
|
|
1017
|
+
_1924: (b, o) => new DataView(b, o),
|
|
1018
|
+
_1925: (b, o, l) => new DataView(b, o, l),
|
|
1019
|
+
_1926: Function.prototype.call.bind(DataView.prototype.getUint8),
|
|
1020
|
+
_1927: Function.prototype.call.bind(DataView.prototype.setUint8),
|
|
1021
|
+
_1928: Function.prototype.call.bind(DataView.prototype.getInt8),
|
|
1022
|
+
_1929: Function.prototype.call.bind(DataView.prototype.setInt8),
|
|
1023
|
+
_1930: Function.prototype.call.bind(DataView.prototype.getUint16),
|
|
1024
|
+
_1931: Function.prototype.call.bind(DataView.prototype.setUint16),
|
|
1025
|
+
_1932: Function.prototype.call.bind(DataView.prototype.getInt16),
|
|
1026
|
+
_1933: Function.prototype.call.bind(DataView.prototype.setInt16),
|
|
1027
|
+
_1934: Function.prototype.call.bind(DataView.prototype.getUint32),
|
|
1028
|
+
_1935: Function.prototype.call.bind(DataView.prototype.setUint32),
|
|
1029
|
+
_1936: Function.prototype.call.bind(DataView.prototype.getInt32),
|
|
1030
|
+
_1937: Function.prototype.call.bind(DataView.prototype.setInt32),
|
|
1031
|
+
_1940: Function.prototype.call.bind(DataView.prototype.getBigInt64),
|
|
1032
|
+
_1941: Function.prototype.call.bind(DataView.prototype.setBigInt64),
|
|
1033
|
+
_1942: Function.prototype.call.bind(DataView.prototype.getFloat32),
|
|
1034
|
+
_1943: Function.prototype.call.bind(DataView.prototype.setFloat32),
|
|
1035
|
+
_1944: Function.prototype.call.bind(DataView.prototype.getFloat64),
|
|
1036
|
+
_1945: Function.prototype.call.bind(DataView.prototype.setFloat64),
|
|
1037
|
+
_1946: Function.prototype.call.bind(Number.prototype.toString),
|
|
1038
|
+
_1947: Function.prototype.call.bind(BigInt.prototype.toString),
|
|
1039
|
+
_1948: Function.prototype.call.bind(Number.prototype.toString),
|
|
1040
|
+
_1949: (d, digits) => d.toFixed(digits),
|
|
1041
|
+
_1961: () => globalThis.document,
|
|
1042
|
+
_1962: () => globalThis.window,
|
|
1043
|
+
_1963: () => globalThis.console,
|
|
1044
|
+
_1968: (x0,x1) => { x0.height = x1 },
|
|
1045
|
+
_1970: (x0,x1) => { x0.width = x1 },
|
|
1046
|
+
_1975: x0 => x0.head,
|
|
1047
|
+
_1976: x0 => x0.classList,
|
|
1048
|
+
_1980: (x0,x1) => { x0.innerText = x1 },
|
|
1049
|
+
_1981: x0 => x0.style,
|
|
1050
|
+
_1983: x0 => x0.sheet,
|
|
1051
|
+
_1994: x0 => x0.offsetX,
|
|
1052
|
+
_1995: x0 => x0.offsetY,
|
|
1053
|
+
_1996: x0 => x0.button,
|
|
1054
|
+
_2002: (x0,x1) => x0.error(x1),
|
|
1055
|
+
_2059: (x0,x1) => { x0.responseType = x1 },
|
|
1056
|
+
_2060: x0 => x0.response,
|
|
1057
|
+
_2119: (x0,x1) => { x0.draggable = x1 },
|
|
1058
|
+
_2135: x0 => x0.style,
|
|
1059
|
+
_2148: (x0,x1) => { x0.oncancel = x1 },
|
|
1060
|
+
_2154: (x0,x1) => { x0.onchange = x1 },
|
|
1061
|
+
_2194: (x0,x1) => { x0.onerror = x1 },
|
|
1062
|
+
_2388: x0 => x0.content,
|
|
1063
|
+
_2494: (x0,x1) => { x0.download = x1 },
|
|
1064
|
+
_2519: (x0,x1) => { x0.href = x1 },
|
|
1065
|
+
_3064: (x0,x1) => { x0.accept = x1 },
|
|
1066
|
+
_3078: x0 => x0.files,
|
|
1067
|
+
_3104: (x0,x1) => { x0.multiple = x1 },
|
|
1068
|
+
_3122: (x0,x1) => { x0.type = x1 },
|
|
1069
|
+
_3372: (x0,x1) => { x0.src = x1 },
|
|
1070
|
+
_3374: (x0,x1) => { x0.type = x1 },
|
|
1071
|
+
_3378: (x0,x1) => { x0.async = x1 },
|
|
1072
|
+
_3392: (x0,x1) => { x0.charset = x1 },
|
|
1073
|
+
_3822: x0 => x0.items,
|
|
1074
|
+
_3825: (x0,x1) => x0[x1],
|
|
1075
|
+
_3829: x0 => x0.length,
|
|
1076
|
+
_3835: x0 => x0.dataTransfer,
|
|
1077
|
+
_3839: () => globalThis.window,
|
|
1078
|
+
_3882: x0 => x0.location,
|
|
1079
|
+
_3901: x0 => x0.navigator,
|
|
1080
|
+
_3972: (x0,x1) => { x0.ondragenter = x1 },
|
|
1081
|
+
_3974: (x0,x1) => { x0.ondragleave = x1 },
|
|
1082
|
+
_3976: (x0,x1) => { x0.ondragover = x1 },
|
|
1083
|
+
_3980: (x0,x1) => { x0.ondrop = x1 },
|
|
1084
|
+
_4158: x0 => x0.indexedDB,
|
|
1085
|
+
_4165: x0 => x0.localStorage,
|
|
1086
|
+
_4173: x0 => x0.href,
|
|
1087
|
+
_4269: x0 => x0.clipboard,
|
|
1088
|
+
_4290: x0 => x0.userAgent,
|
|
1089
|
+
_4291: x0 => x0.vendor,
|
|
1090
|
+
_4303: x0 => x0.storage,
|
|
1091
|
+
_4341: x0 => x0.data,
|
|
1092
|
+
_4371: x0 => x0.port1,
|
|
1093
|
+
_4372: x0 => x0.port2,
|
|
1094
|
+
_4374: (x0,x1) => { x0.onmessage = x1 },
|
|
1095
|
+
_4452: x0 => x0.port,
|
|
1096
|
+
_4487: x0 => x0.length,
|
|
1097
|
+
_6391: x0 => x0.type,
|
|
1098
|
+
_6392: x0 => x0.target,
|
|
1099
|
+
_6493: x0 => x0.firstChild,
|
|
1100
|
+
_6504: () => globalThis.document,
|
|
1101
|
+
_6586: x0 => x0.body,
|
|
1102
|
+
_6917: (x0,x1) => { x0.id = x1 },
|
|
1103
|
+
_6944: x0 => x0.children,
|
|
1104
|
+
_7250: x0 => x0.clientX,
|
|
1105
|
+
_7251: x0 => x0.clientY,
|
|
1106
|
+
_8390: x0 => x0.kind,
|
|
1107
|
+
_8424: x0 => x0.size,
|
|
1108
|
+
_8425: x0 => x0.type,
|
|
1109
|
+
_8432: x0 => x0.name,
|
|
1110
|
+
_8433: x0 => x0.lastModified,
|
|
1111
|
+
_8438: x0 => x0.length,
|
|
1112
|
+
_8443: x0 => x0.result,
|
|
1113
|
+
_8957: x0 => x0.instance,
|
|
1114
|
+
_8959: () => globalThis.WebAssembly,
|
|
1115
|
+
_8981: x0 => x0.exports,
|
|
1116
|
+
_8989: x0 => x0.buffer,
|
|
1117
|
+
_10399: x0 => x0.result,
|
|
1118
|
+
_10400: x0 => x0.error,
|
|
1119
|
+
_10411: (x0,x1) => { x0.onupgradeneeded = x1 },
|
|
1120
|
+
_10413: x0 => x0.oldVersion,
|
|
1121
|
+
_10430: x0 => x0.objectStoreNames,
|
|
1122
|
+
_10492: x0 => x0.key,
|
|
1123
|
+
_10493: x0 => x0.primaryKey,
|
|
1124
|
+
_10495: x0 => x0.value,
|
|
1125
|
+
_10501: x0 => x0.error,
|
|
1126
|
+
_11333: (x0,x1) => { x0.display = x1 },
|
|
1127
|
+
_13239: x0 => x0.isDirectory,
|
|
1128
|
+
_13240: x0 => x0.name,
|
|
1129
|
+
_13241: x0 => x0.fullPath,
|
|
1130
|
+
|
|
1131
|
+
};
|
|
1132
|
+
|
|
1133
|
+
const baseImports = {
|
|
1134
|
+
dart2wasm: dart2wasm,
|
|
1135
|
+
Math: Math,
|
|
1136
|
+
Date: Date,
|
|
1137
|
+
Object: Object,
|
|
1138
|
+
Array: Array,
|
|
1139
|
+
Reflect: Reflect,
|
|
1140
|
+
WebAssembly: {
|
|
1141
|
+
JSTag: WebAssembly.JSTag,
|
|
1142
|
+
},
|
|
1143
|
+
"": new Proxy({}, { get(_, prop) { return prop; } }),
|
|
1144
|
+
|
|
1145
|
+
};
|
|
1146
|
+
|
|
1147
|
+
const jsStringPolyfill = {
|
|
1148
|
+
"charCodeAt": (s, i) => s.charCodeAt(i),
|
|
1149
|
+
"compare": (s1, s2) => {
|
|
1150
|
+
if (s1 < s2) return -1;
|
|
1151
|
+
if (s1 > s2) return 1;
|
|
1152
|
+
return 0;
|
|
1153
|
+
},
|
|
1154
|
+
"concat": (s1, s2) => s1 + s2,
|
|
1155
|
+
"equals": (s1, s2) => s1 === s2,
|
|
1156
|
+
"fromCharCode": (i) => String.fromCharCode(i),
|
|
1157
|
+
"length": (s) => s.length,
|
|
1158
|
+
"substring": (s, a, b) => s.substring(a, b),
|
|
1159
|
+
"fromCharCodeArray": (a, start, end) => {
|
|
1160
|
+
if (end <= start) return '';
|
|
1161
|
+
|
|
1162
|
+
const read = dartInstance.exports.$wasmI16ArrayGet;
|
|
1163
|
+
let result = '';
|
|
1164
|
+
let index = start;
|
|
1165
|
+
const chunkLength = Math.min(end - index, 500);
|
|
1166
|
+
let array = new Array(chunkLength);
|
|
1167
|
+
while (index < end) {
|
|
1168
|
+
const newChunkLength = Math.min(end - index, 500);
|
|
1169
|
+
for (let i = 0; i < newChunkLength; i++) {
|
|
1170
|
+
array[i] = read(a, index++);
|
|
1171
|
+
}
|
|
1172
|
+
if (newChunkLength < chunkLength) {
|
|
1173
|
+
array = array.slice(0, newChunkLength);
|
|
1174
|
+
}
|
|
1175
|
+
result += String.fromCharCode(...array);
|
|
1176
|
+
}
|
|
1177
|
+
return result;
|
|
1178
|
+
},
|
|
1179
|
+
"intoCharCodeArray": (s, a, start) => {
|
|
1180
|
+
if (s === '') return 0;
|
|
1181
|
+
|
|
1182
|
+
const write = dartInstance.exports.$wasmI16ArraySet;
|
|
1183
|
+
for (var i = 0; i < s.length; ++i) {
|
|
1184
|
+
write(a, start++, s.charCodeAt(i));
|
|
1185
|
+
}
|
|
1186
|
+
return s.length;
|
|
1187
|
+
},
|
|
1188
|
+
"test": (s) => typeof s == "string",
|
|
1189
|
+
};
|
|
1190
|
+
|
|
1191
|
+
|
|
1192
|
+
|
|
1193
|
+
|
|
1194
|
+
dartInstance = await WebAssembly.instantiate(this.module, {
|
|
1195
|
+
...baseImports,
|
|
1196
|
+
...additionalImports,
|
|
1197
|
+
|
|
1198
|
+
"wasm:js-string": jsStringPolyfill,
|
|
1199
|
+
});
|
|
1200
|
+
dartInstance.exports.$setThisModule(dartInstance);
|
|
1201
|
+
|
|
1202
|
+
return new InstantiatedApp(this, dartInstance);
|
|
1203
|
+
}
|
|
1204
|
+
}
|
|
1205
|
+
|
|
1206
|
+
class InstantiatedApp {
|
|
1207
|
+
constructor(compiledApp, instantiatedModule) {
|
|
1208
|
+
this.compiledApp = compiledApp;
|
|
1209
|
+
this.instantiatedModule = instantiatedModule;
|
|
1210
|
+
}
|
|
1211
|
+
|
|
1212
|
+
// Call the main function with the given arguments.
|
|
1213
|
+
invokeMain(...args) {
|
|
1214
|
+
this.instantiatedModule.exports.$invokeMain(args);
|
|
1215
|
+
}
|
|
1216
|
+
}
|