laurent commited on
Commit
a025890
1 Parent(s): 6d7ec2c

Add a prompt.

Browse files
.gitattributes CHANGED
@@ -33,3 +33,4 @@ saved_model/**/* filter=lfs diff=lfs merge=lfs -text
33
  *.zip filter=lfs diff=lfs merge=lfs -text
34
  *.zst filter=lfs diff=lfs merge=lfs -text
35
  *tfevents* filter=lfs diff=lfs merge=lfs -text
 
 
33
  *.zip filter=lfs diff=lfs merge=lfs -text
34
  *.zst filter=lfs diff=lfs merge=lfs -text
35
  *tfevents* filter=lfs diff=lfs merge=lfs -text
36
+ tokenizer.json filter=lfs diff=lfs merge=lfs -text
app-a6ac60c1ad530067.js ADDED
@@ -0,0 +1,829 @@
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
1
+ let wasm;
2
+
3
+ const heap = new Array(128).fill(undefined);
4
+
5
+ heap.push(undefined, null, true, false);
6
+
7
+ function getObject(idx) { return heap[idx]; }
8
+
9
+ let heap_next = heap.length;
10
+
11
+ function dropObject(idx) {
12
+ if (idx < 132) return;
13
+ heap[idx] = heap_next;
14
+ heap_next = idx;
15
+ }
16
+
17
+ function takeObject(idx) {
18
+ const ret = getObject(idx);
19
+ dropObject(idx);
20
+ return ret;
21
+ }
22
+
23
+ function addHeapObject(obj) {
24
+ if (heap_next === heap.length) heap.push(heap.length + 1);
25
+ const idx = heap_next;
26
+ heap_next = heap[idx];
27
+
28
+ heap[idx] = obj;
29
+ return idx;
30
+ }
31
+
32
+ const cachedTextDecoder = (typeof TextDecoder !== 'undefined' ? new TextDecoder('utf-8', { ignoreBOM: true, fatal: true }) : { decode: () => { throw Error('TextDecoder not available') } } );
33
+
34
+ if (typeof TextDecoder !== 'undefined') { cachedTextDecoder.decode(); };
35
+
36
+ let cachedUint8Memory0 = null;
37
+
38
+ function getUint8Memory0() {
39
+ if (cachedUint8Memory0 === null || cachedUint8Memory0.byteLength === 0) {
40
+ cachedUint8Memory0 = new Uint8Array(wasm.memory.buffer);
41
+ }
42
+ return cachedUint8Memory0;
43
+ }
44
+
45
+ function getStringFromWasm0(ptr, len) {
46
+ ptr = ptr >>> 0;
47
+ return cachedTextDecoder.decode(getUint8Memory0().subarray(ptr, ptr + len));
48
+ }
49
+
50
+ function debugString(val) {
51
+ // primitive types
52
+ const type = typeof val;
53
+ if (type == 'number' || type == 'boolean' || val == null) {
54
+ return `${val}`;
55
+ }
56
+ if (type == 'string') {
57
+ return `"${val}"`;
58
+ }
59
+ if (type == 'symbol') {
60
+ const description = val.description;
61
+ if (description == null) {
62
+ return 'Symbol';
63
+ } else {
64
+ return `Symbol(${description})`;
65
+ }
66
+ }
67
+ if (type == 'function') {
68
+ const name = val.name;
69
+ if (typeof name == 'string' && name.length > 0) {
70
+ return `Function(${name})`;
71
+ } else {
72
+ return 'Function';
73
+ }
74
+ }
75
+ // objects
76
+ if (Array.isArray(val)) {
77
+ const length = val.length;
78
+ let debug = '[';
79
+ if (length > 0) {
80
+ debug += debugString(val[0]);
81
+ }
82
+ for(let i = 1; i < length; i++) {
83
+ debug += ', ' + debugString(val[i]);
84
+ }
85
+ debug += ']';
86
+ return debug;
87
+ }
88
+ // Test for built-in
89
+ const builtInMatches = /\[object ([^\]]+)\]/.exec(toString.call(val));
90
+ let className;
91
+ if (builtInMatches.length > 1) {
92
+ className = builtInMatches[1];
93
+ } else {
94
+ // Failed to match the standard '[object ClassName]'
95
+ return toString.call(val);
96
+ }
97
+ if (className == 'Object') {
98
+ // we're a user defined class or Object
99
+ // JSON.stringify avoids problems with cycles, and is generally much
100
+ // easier than looping through ownProperties of `val`.
101
+ try {
102
+ return 'Object(' + JSON.stringify(val) + ')';
103
+ } catch (_) {
104
+ return 'Object';
105
+ }
106
+ }
107
+ // errors
108
+ if (val instanceof Error) {
109
+ return `${val.name}: ${val.message}\n${val.stack}`;
110
+ }
111
+ // TODO we could test for more things here, like `Set`s and `Map`s.
112
+ return className;
113
+ }
114
+
115
+ let WASM_VECTOR_LEN = 0;
116
+
117
+ const cachedTextEncoder = (typeof TextEncoder !== 'undefined' ? new TextEncoder('utf-8') : { encode: () => { throw Error('TextEncoder not available') } } );
118
+
119
+ const encodeString = (typeof cachedTextEncoder.encodeInto === 'function'
120
+ ? function (arg, view) {
121
+ return cachedTextEncoder.encodeInto(arg, view);
122
+ }
123
+ : function (arg, view) {
124
+ const buf = cachedTextEncoder.encode(arg);
125
+ view.set(buf);
126
+ return {
127
+ read: arg.length,
128
+ written: buf.length
129
+ };
130
+ });
131
+
132
+ function passStringToWasm0(arg, malloc, realloc) {
133
+
134
+ if (realloc === undefined) {
135
+ const buf = cachedTextEncoder.encode(arg);
136
+ const ptr = malloc(buf.length, 1) >>> 0;
137
+ getUint8Memory0().subarray(ptr, ptr + buf.length).set(buf);
138
+ WASM_VECTOR_LEN = buf.length;
139
+ return ptr;
140
+ }
141
+
142
+ let len = arg.length;
143
+ let ptr = malloc(len, 1) >>> 0;
144
+
145
+ const mem = getUint8Memory0();
146
+
147
+ let offset = 0;
148
+
149
+ for (; offset < len; offset++) {
150
+ const code = arg.charCodeAt(offset);
151
+ if (code > 0x7F) break;
152
+ mem[ptr + offset] = code;
153
+ }
154
+
155
+ if (offset !== len) {
156
+ if (offset !== 0) {
157
+ arg = arg.slice(offset);
158
+ }
159
+ ptr = realloc(ptr, len, len = offset + arg.length * 3, 1) >>> 0;
160
+ const view = getUint8Memory0().subarray(ptr + offset, ptr + len);
161
+ const ret = encodeString(arg, view);
162
+
163
+ offset += ret.written;
164
+ }
165
+
166
+ WASM_VECTOR_LEN = offset;
167
+ return ptr;
168
+ }
169
+
170
+ let cachedInt32Memory0 = null;
171
+
172
+ function getInt32Memory0() {
173
+ if (cachedInt32Memory0 === null || cachedInt32Memory0.byteLength === 0) {
174
+ cachedInt32Memory0 = new Int32Array(wasm.memory.buffer);
175
+ }
176
+ return cachedInt32Memory0;
177
+ }
178
+
179
+ function makeClosure(arg0, arg1, dtor, f) {
180
+ const state = { a: arg0, b: arg1, cnt: 1, dtor };
181
+ const real = (...args) => {
182
+ // First up with a closure we increment the internal reference
183
+ // count. This ensures that the Rust closure environment won't
184
+ // be deallocated while we're invoking it.
185
+ state.cnt++;
186
+ try {
187
+ return f(state.a, state.b, ...args);
188
+ } finally {
189
+ if (--state.cnt === 0) {
190
+ wasm.__wbindgen_export_2.get(state.dtor)(state.a, state.b);
191
+ state.a = 0;
192
+
193
+ }
194
+ }
195
+ };
196
+ real.original = state;
197
+
198
+ return real;
199
+ }
200
+ function __wbg_adapter_18(arg0, arg1, arg2) {
201
+ wasm.wasm_bindgen__convert__closures__invoke1__hee69d633833ebd7c(arg0, arg1, addHeapObject(arg2));
202
+ }
203
+
204
+ function makeMutClosure(arg0, arg1, dtor, f) {
205
+ const state = { a: arg0, b: arg1, cnt: 1, dtor };
206
+ const real = (...args) => {
207
+ // First up with a closure we increment the internal reference
208
+ // count. This ensures that the Rust closure environment won't
209
+ // be deallocated while we're invoking it.
210
+ state.cnt++;
211
+ const a = state.a;
212
+ state.a = 0;
213
+ try {
214
+ return f(a, state.b, ...args);
215
+ } finally {
216
+ if (--state.cnt === 0) {
217
+ wasm.__wbindgen_export_2.get(state.dtor)(a, state.b);
218
+
219
+ } else {
220
+ state.a = a;
221
+ }
222
+ }
223
+ };
224
+ real.original = state;
225
+
226
+ return real;
227
+ }
228
+
229
+ let stack_pointer = 128;
230
+
231
+ function addBorrowedObject(obj) {
232
+ if (stack_pointer == 1) throw new Error('out of js stack');
233
+ heap[--stack_pointer] = obj;
234
+ return stack_pointer;
235
+ }
236
+ function __wbg_adapter_21(arg0, arg1, arg2) {
237
+ try {
238
+ wasm._dyn_core__ops__function__FnMut___A____Output___R_as_wasm_bindgen__closure__WasmClosure___describe__invoke__hadab26222cba6f84(arg0, arg1, addBorrowedObject(arg2));
239
+ } finally {
240
+ heap[stack_pointer++] = undefined;
241
+ }
242
+ }
243
+
244
+ function __wbg_adapter_24(arg0, arg1, arg2) {
245
+ wasm._dyn_core__ops__function__FnMut__A____Output___R_as_wasm_bindgen__closure__WasmClosure___describe__invoke__hfc3f0e78cf729c36(arg0, arg1, addHeapObject(arg2));
246
+ }
247
+
248
+ function isLikeNone(x) {
249
+ return x === undefined || x === null;
250
+ }
251
+
252
+ let cachedUint32Memory0 = null;
253
+
254
+ function getUint32Memory0() {
255
+ if (cachedUint32Memory0 === null || cachedUint32Memory0.byteLength === 0) {
256
+ cachedUint32Memory0 = new Uint32Array(wasm.memory.buffer);
257
+ }
258
+ return cachedUint32Memory0;
259
+ }
260
+
261
+ function getArrayJsValueFromWasm0(ptr, len) {
262
+ ptr = ptr >>> 0;
263
+ const mem = getUint32Memory0();
264
+ const slice = mem.subarray(ptr / 4, ptr / 4 + len);
265
+ const result = [];
266
+ for (let i = 0; i < slice.length; i++) {
267
+ result.push(takeObject(slice[i]));
268
+ }
269
+ return result;
270
+ }
271
+
272
+ function handleError(f, args) {
273
+ try {
274
+ return f.apply(this, args);
275
+ } catch (e) {
276
+ wasm.__wbindgen_exn_store(addHeapObject(e));
277
+ }
278
+ }
279
+
280
+ async function __wbg_load(module, imports) {
281
+ if (typeof Response === 'function' && module instanceof Response) {
282
+ if (typeof WebAssembly.instantiateStreaming === 'function') {
283
+ try {
284
+ return await WebAssembly.instantiateStreaming(module, imports);
285
+
286
+ } catch (e) {
287
+ if (module.headers.get('Content-Type') != 'application/wasm') {
288
+ console.warn("`WebAssembly.instantiateStreaming` failed because your server does not serve wasm with `application/wasm` MIME type. Falling back to `WebAssembly.instantiate` which is slower. Original error:\n", e);
289
+
290
+ } else {
291
+ throw e;
292
+ }
293
+ }
294
+ }
295
+
296
+ const bytes = await module.arrayBuffer();
297
+ return await WebAssembly.instantiate(bytes, imports);
298
+
299
+ } else {
300
+ const instance = await WebAssembly.instantiate(module, imports);
301
+
302
+ if (instance instanceof WebAssembly.Instance) {
303
+ return { instance, module };
304
+
305
+ } else {
306
+ return instance;
307
+ }
308
+ }
309
+ }
310
+
311
+ function __wbg_get_imports() {
312
+ const imports = {};
313
+ imports.wbg = {};
314
+ imports.wbg.__wbindgen_object_drop_ref = function(arg0) {
315
+ takeObject(arg0);
316
+ };
317
+ imports.wbg.__wbindgen_object_clone_ref = function(arg0) {
318
+ const ret = getObject(arg0);
319
+ return addHeapObject(ret);
320
+ };
321
+ imports.wbg.__wbg_log_3af90b48c052f90b = function(arg0, arg1) {
322
+ console.log(getStringFromWasm0(arg0, arg1));
323
+ };
324
+ imports.wbg.__wbindgen_cb_drop = function(arg0) {
325
+ const obj = takeObject(arg0).original;
326
+ if (obj.cnt-- == 1) {
327
+ obj.a = 0;
328
+ return true;
329
+ }
330
+ const ret = false;
331
+ return ret;
332
+ };
333
+ imports.wbg.__wbindgen_string_new = function(arg0, arg1) {
334
+ const ret = getStringFromWasm0(arg0, arg1);
335
+ return addHeapObject(ret);
336
+ };
337
+ imports.wbg.__wbg_listenerid_12315eee21527820 = function(arg0, arg1) {
338
+ const ret = getObject(arg1).__yew_listener_id;
339
+ getInt32Memory0()[arg0 / 4 + 1] = isLikeNone(ret) ? 0 : ret;
340
+ getInt32Memory0()[arg0 / 4 + 0] = !isLikeNone(ret);
341
+ };
342
+ imports.wbg.__wbg_setlistenerid_3183aae8fa5840fb = function(arg0, arg1) {
343
+ getObject(arg0).__yew_listener_id = arg1 >>> 0;
344
+ };
345
+ imports.wbg.__wbg_setsubtreeid_d32e6327eef1f7fc = function(arg0, arg1) {
346
+ getObject(arg0).__yew_subtree_id = arg1 >>> 0;
347
+ };
348
+ imports.wbg.__wbg_subtreeid_e348577f7ef777e3 = function(arg0, arg1) {
349
+ const ret = getObject(arg1).__yew_subtree_id;
350
+ getInt32Memory0()[arg0 / 4 + 1] = isLikeNone(ret) ? 0 : ret;
351
+ getInt32Memory0()[arg0 / 4 + 0] = !isLikeNone(ret);
352
+ };
353
+ imports.wbg.__wbg_cachekey_b61393159c57fd7b = function(arg0, arg1) {
354
+ const ret = getObject(arg1).__yew_subtree_cache_key;
355
+ getInt32Memory0()[arg0 / 4 + 1] = isLikeNone(ret) ? 0 : ret;
356
+ getInt32Memory0()[arg0 / 4 + 0] = !isLikeNone(ret);
357
+ };
358
+ imports.wbg.__wbg_setcachekey_80183b7cfc421143 = function(arg0, arg1) {
359
+ getObject(arg0).__yew_subtree_cache_key = arg1 >>> 0;
360
+ };
361
+ imports.wbg.__wbg_error_71d6845bf00a930f = function(arg0, arg1) {
362
+ var v0 = getArrayJsValueFromWasm0(arg0, arg1).slice();
363
+ wasm.__wbindgen_free(arg0, arg1 * 4);
364
+ console.error(...v0);
365
+ };
366
+ imports.wbg.__wbg_warn_0b90a269a514ae1d = function(arg0, arg1) {
367
+ var v0 = getArrayJsValueFromWasm0(arg0, arg1).slice();
368
+ wasm.__wbindgen_free(arg0, arg1 * 4);
369
+ console.warn(...v0);
370
+ };
371
+ imports.wbg.__wbg_new_abda76e883ba8a5f = function() {
372
+ const ret = new Error();
373
+ return addHeapObject(ret);
374
+ };
375
+ imports.wbg.__wbg_stack_658279fe44541cf6 = function(arg0, arg1) {
376
+ const ret = getObject(arg1).stack;
377
+ const ptr1 = passStringToWasm0(ret, wasm.__wbindgen_malloc, wasm.__wbindgen_realloc);
378
+ const len1 = WASM_VECTOR_LEN;
379
+ getInt32Memory0()[arg0 / 4 + 1] = len1;
380
+ getInt32Memory0()[arg0 / 4 + 0] = ptr1;
381
+ };
382
+ imports.wbg.__wbg_error_f851667af71bcfc6 = function(arg0, arg1) {
383
+ let deferred0_0;
384
+ let deferred0_1;
385
+ try {
386
+ deferred0_0 = arg0;
387
+ deferred0_1 = arg1;
388
+ console.error(getStringFromWasm0(arg0, arg1));
389
+ } finally {
390
+ wasm.__wbindgen_free(deferred0_0, deferred0_1, 1);
391
+ }
392
+ };
393
+ imports.wbg.__wbg_location_7ac41949b772ef21 = function(arg0) {
394
+ const ret = getObject(arg0).location;
395
+ return isLikeNone(ret) ? 0 : addHeapObject(ret);
396
+ };
397
+ imports.wbg.__wbg_body_674aec4c1c0910cd = function(arg0) {
398
+ const ret = getObject(arg0).body;
399
+ return isLikeNone(ret) ? 0 : addHeapObject(ret);
400
+ };
401
+ imports.wbg.__wbg_createElement_4891554b28d3388b = function() { return handleError(function (arg0, arg1, arg2) {
402
+ const ret = getObject(arg0).createElement(getStringFromWasm0(arg1, arg2));
403
+ return addHeapObject(ret);
404
+ }, arguments) };
405
+ imports.wbg.__wbg_createElementNS_119acf9e82482041 = function() { return handleError(function (arg0, arg1, arg2, arg3, arg4) {
406
+ const ret = getObject(arg0).createElementNS(arg1 === 0 ? undefined : getStringFromWasm0(arg1, arg2), getStringFromWasm0(arg3, arg4));
407
+ return addHeapObject(ret);
408
+ }, arguments) };
409
+ imports.wbg.__wbg_createTextNode_2fd22cd7e543f938 = function(arg0, arg1, arg2) {
410
+ const ret = getObject(arg0).createTextNode(getStringFromWasm0(arg1, arg2));
411
+ return addHeapObject(ret);
412
+ };
413
+ imports.wbg.__wbg_instanceof_Window_9029196b662bc42a = function(arg0) {
414
+ let result;
415
+ try {
416
+ result = getObject(arg0) instanceof Window;
417
+ } catch {
418
+ result = false;
419
+ }
420
+ const ret = result;
421
+ return ret;
422
+ };
423
+ imports.wbg.__wbg_document_f7ace2b956f30a4f = function(arg0) {
424
+ const ret = getObject(arg0).document;
425
+ return isLikeNone(ret) ? 0 : addHeapObject(ret);
426
+ };
427
+ imports.wbg.__wbg_location_56243dba507f472d = function(arg0) {
428
+ const ret = getObject(arg0).location;
429
+ return addHeapObject(ret);
430
+ };
431
+ imports.wbg.__wbg_performance_2c295061c8b01e0b = function(arg0) {
432
+ const ret = getObject(arg0).performance;
433
+ return isLikeNone(ret) ? 0 : addHeapObject(ret);
434
+ };
435
+ imports.wbg.__wbg_fetch_336b6f0cb426b46e = function(arg0, arg1) {
436
+ const ret = getObject(arg0).fetch(getObject(arg1));
437
+ return addHeapObject(ret);
438
+ };
439
+ imports.wbg.__wbg_setchecked_e5a50baea447b8a8 = function(arg0, arg1) {
440
+ getObject(arg0).checked = arg1 !== 0;
441
+ };
442
+ imports.wbg.__wbg_value_9423da9d988ee8cf = function(arg0, arg1) {
443
+ const ret = getObject(arg1).value;
444
+ const ptr1 = passStringToWasm0(ret, wasm.__wbindgen_malloc, wasm.__wbindgen_realloc);
445
+ const len1 = WASM_VECTOR_LEN;
446
+ getInt32Memory0()[arg0 / 4 + 1] = len1;
447
+ getInt32Memory0()[arg0 / 4 + 0] = ptr1;
448
+ };
449
+ imports.wbg.__wbg_setvalue_1f95e61cbc382f7f = function(arg0, arg1, arg2) {
450
+ getObject(arg0).value = getStringFromWasm0(arg1, arg2);
451
+ };
452
+ imports.wbg.__wbg_newwithstrandinit_cad5cd6038c7ff5d = function() { return handleError(function (arg0, arg1, arg2) {
453
+ const ret = new Request(getStringFromWasm0(arg0, arg1), getObject(arg2));
454
+ return addHeapObject(ret);
455
+ }, arguments) };
456
+ imports.wbg.__wbg_setonmessage_f0bd0280573b7084 = function(arg0, arg1) {
457
+ getObject(arg0).onmessage = getObject(arg1);
458
+ };
459
+ imports.wbg.__wbg_new_8e7322f46d5d019c = function() { return handleError(function (arg0, arg1) {
460
+ const ret = new Worker(getStringFromWasm0(arg0, arg1));
461
+ return addHeapObject(ret);
462
+ }, arguments) };
463
+ imports.wbg.__wbg_newwithoptions_1bd20b45061ed935 = function() { return handleError(function (arg0, arg1, arg2) {
464
+ const ret = new Worker(getStringFromWasm0(arg0, arg1), getObject(arg2));
465
+ return addHeapObject(ret);
466
+ }, arguments) };
467
+ imports.wbg.__wbg_postMessage_8c609e2bde333d9c = function() { return handleError(function (arg0, arg1) {
468
+ getObject(arg0).postMessage(getObject(arg1));
469
+ }, arguments) };
470
+ imports.wbg.__wbg_instanceof_Response_fc4327dbfcdf5ced = function(arg0) {
471
+ let result;
472
+ try {
473
+ result = getObject(arg0) instanceof Response;
474
+ } catch {
475
+ result = false;
476
+ }
477
+ const ret = result;
478
+ return ret;
479
+ };
480
+ imports.wbg.__wbg_blob_34990e4300d45f53 = function() { return handleError(function (arg0) {
481
+ const ret = getObject(arg0).blob();
482
+ return addHeapObject(ret);
483
+ }, arguments) };
484
+ imports.wbg.__wbg_now_0cfdc90c97d0c24b = function(arg0) {
485
+ const ret = getObject(arg0).now();
486
+ return ret;
487
+ };
488
+ imports.wbg.__wbg_debug_9b8701f894da9929 = function(arg0, arg1, arg2, arg3) {
489
+ console.debug(getObject(arg0), getObject(arg1), getObject(arg2), getObject(arg3));
490
+ };
491
+ imports.wbg.__wbg_error_788ae33f81d3b84b = function(arg0) {
492
+ console.error(getObject(arg0));
493
+ };
494
+ imports.wbg.__wbg_error_d9bce418caafb712 = function(arg0, arg1, arg2, arg3) {
495
+ console.error(getObject(arg0), getObject(arg1), getObject(arg2), getObject(arg3));
496
+ };
497
+ imports.wbg.__wbg_info_bb52f40b06f679de = function(arg0, arg1, arg2, arg3) {
498
+ console.info(getObject(arg0), getObject(arg1), getObject(arg2), getObject(arg3));
499
+ };
500
+ imports.wbg.__wbg_log_ea7093e35e3efd07 = function(arg0, arg1, arg2, arg3) {
501
+ console.log(getObject(arg0), getObject(arg1), getObject(arg2), getObject(arg3));
502
+ };
503
+ imports.wbg.__wbg_warn_dfc0e0cf544a13bd = function(arg0, arg1, arg2, arg3) {
504
+ console.warn(getObject(arg0), getObject(arg1), getObject(arg2), getObject(arg3));
505
+ };
506
+ imports.wbg.__wbg_instanceof_Element_4622f5da1249a3eb = function(arg0) {
507
+ let result;
508
+ try {
509
+ result = getObject(arg0) instanceof Element;
510
+ } catch {
511
+ result = false;
512
+ }
513
+ const ret = result;
514
+ return ret;
515
+ };
516
+ imports.wbg.__wbg_namespaceURI_31718ed49b5343a3 = function(arg0, arg1) {
517
+ const ret = getObject(arg1).namespaceURI;
518
+ var ptr1 = isLikeNone(ret) ? 0 : passStringToWasm0(ret, wasm.__wbindgen_malloc, wasm.__wbindgen_realloc);
519
+ var len1 = WASM_VECTOR_LEN;
520
+ getInt32Memory0()[arg0 / 4 + 1] = len1;
521
+ getInt32Memory0()[arg0 / 4 + 0] = ptr1;
522
+ };
523
+ imports.wbg.__wbg_setinnerHTML_b089587252408b67 = function(arg0, arg1, arg2) {
524
+ getObject(arg0).innerHTML = getStringFromWasm0(arg1, arg2);
525
+ };
526
+ imports.wbg.__wbg_outerHTML_f7749ceff37b5832 = function(arg0, arg1) {
527
+ const ret = getObject(arg1).outerHTML;
528
+ const ptr1 = passStringToWasm0(ret, wasm.__wbindgen_malloc, wasm.__wbindgen_realloc);
529
+ const len1 = WASM_VECTOR_LEN;
530
+ getInt32Memory0()[arg0 / 4 + 1] = len1;
531
+ getInt32Memory0()[arg0 / 4 + 0] = ptr1;
532
+ };
533
+ imports.wbg.__wbg_children_27ed308801b57d3f = function(arg0) {
534
+ const ret = getObject(arg0).children;
535
+ return addHeapObject(ret);
536
+ };
537
+ imports.wbg.__wbg_removeAttribute_d8404da431968808 = function() { return handleError(function (arg0, arg1, arg2) {
538
+ getObject(arg0).removeAttribute(getStringFromWasm0(arg1, arg2));
539
+ }, arguments) };
540
+ imports.wbg.__wbg_setAttribute_e7e80b478b7b8b2f = function() { return handleError(function (arg0, arg1, arg2, arg3, arg4) {
541
+ getObject(arg0).setAttribute(getStringFromWasm0(arg1, arg2), getStringFromWasm0(arg3, arg4));
542
+ }, arguments) };
543
+ imports.wbg.__wbg_origin_50aa482fa6784a0a = function() { return handleError(function (arg0, arg1) {
544
+ const ret = getObject(arg1).origin;
545
+ const ptr1 = passStringToWasm0(ret, wasm.__wbindgen_malloc, wasm.__wbindgen_realloc);
546
+ const len1 = WASM_VECTOR_LEN;
547
+ getInt32Memory0()[arg0 / 4 + 1] = len1;
548
+ getInt32Memory0()[arg0 / 4 + 0] = ptr1;
549
+ }, arguments) };
550
+ imports.wbg.__wbg_pathname_c8fd5c498079312d = function() { return handleError(function (arg0, arg1) {
551
+ const ret = getObject(arg1).pathname;
552
+ const ptr1 = passStringToWasm0(ret, wasm.__wbindgen_malloc, wasm.__wbindgen_realloc);
553
+ const len1 = WASM_VECTOR_LEN;
554
+ getInt32Memory0()[arg0 / 4 + 1] = len1;
555
+ getInt32Memory0()[arg0 / 4 + 0] = ptr1;
556
+ }, arguments) };
557
+ imports.wbg.__wbg_data_ab99ae4a2e1e8bc9 = function(arg0) {
558
+ const ret = getObject(arg0).data;
559
+ return addHeapObject(ret);
560
+ };
561
+ imports.wbg.__wbg_target_f171e89c61e2bccf = function(arg0) {
562
+ const ret = getObject(arg0).target;
563
+ return isLikeNone(ret) ? 0 : addHeapObject(ret);
564
+ };
565
+ imports.wbg.__wbg_bubbles_63572b91f3885ef1 = function(arg0) {
566
+ const ret = getObject(arg0).bubbles;
567
+ return ret;
568
+ };
569
+ imports.wbg.__wbg_cancelBubble_90d1c3aa2a76cbeb = function(arg0) {
570
+ const ret = getObject(arg0).cancelBubble;
571
+ return ret;
572
+ };
573
+ imports.wbg.__wbg_composedPath_cf1bb5b8bcff496f = function(arg0) {
574
+ const ret = getObject(arg0).composedPath();
575
+ return addHeapObject(ret);
576
+ };
577
+ imports.wbg.__wbg_parentNode_9e53f8b17eb98c9d = function(arg0) {
578
+ const ret = getObject(arg0).parentNode;
579
+ return isLikeNone(ret) ? 0 : addHeapObject(ret);
580
+ };
581
+ imports.wbg.__wbg_parentElement_c75962bc9997ea5f = function(arg0) {
582
+ const ret = getObject(arg0).parentElement;
583
+ return isLikeNone(ret) ? 0 : addHeapObject(ret);
584
+ };
585
+ imports.wbg.__wbg_lastChild_0cee692010bac6c2 = function(arg0) {
586
+ const ret = getObject(arg0).lastChild;
587
+ return isLikeNone(ret) ? 0 : addHeapObject(ret);
588
+ };
589
+ imports.wbg.__wbg_nextSibling_304d9aac7c2774ae = function(arg0) {
590
+ const ret = getObject(arg0).nextSibling;
591
+ return isLikeNone(ret) ? 0 : addHeapObject(ret);
592
+ };
593
+ imports.wbg.__wbg_setnodeValue_d1c8382910b45e04 = function(arg0, arg1, arg2) {
594
+ getObject(arg0).nodeValue = arg1 === 0 ? undefined : getStringFromWasm0(arg1, arg2);
595
+ };
596
+ imports.wbg.__wbg_textContent_c5d9e21ee03c63d4 = function(arg0, arg1) {
597
+ const ret = getObject(arg1).textContent;
598
+ var ptr1 = isLikeNone(ret) ? 0 : passStringToWasm0(ret, wasm.__wbindgen_malloc, wasm.__wbindgen_realloc);
599
+ var len1 = WASM_VECTOR_LEN;
600
+ getInt32Memory0()[arg0 / 4 + 1] = len1;
601
+ getInt32Memory0()[arg0 / 4 + 0] = ptr1;
602
+ };
603
+ imports.wbg.__wbg_appendChild_51339d4cde00ee22 = function() { return handleError(function (arg0, arg1) {
604
+ const ret = getObject(arg0).appendChild(getObject(arg1));
605
+ return addHeapObject(ret);
606
+ }, arguments) };
607
+ imports.wbg.__wbg_insertBefore_ffa01d4b747c95fc = function() { return handleError(function (arg0, arg1, arg2) {
608
+ const ret = getObject(arg0).insertBefore(getObject(arg1), getObject(arg2));
609
+ return addHeapObject(ret);
610
+ }, arguments) };
611
+ imports.wbg.__wbg_removeChild_973429f368206138 = function() { return handleError(function (arg0, arg1) {
612
+ const ret = getObject(arg0).removeChild(getObject(arg1));
613
+ return addHeapObject(ret);
614
+ }, arguments) };
615
+ imports.wbg.__wbg_createObjectURL_d82f2880bada6a1d = function() { return handleError(function (arg0, arg1) {
616
+ const ret = URL.createObjectURL(getObject(arg1));
617
+ const ptr1 = passStringToWasm0(ret, wasm.__wbindgen_malloc, wasm.__wbindgen_realloc);
618
+ const len1 = WASM_VECTOR_LEN;
619
+ getInt32Memory0()[arg0 / 4 + 1] = len1;
620
+ getInt32Memory0()[arg0 / 4 + 0] = ptr1;
621
+ }, arguments) };
622
+ imports.wbg.__wbg_newwithstrsequenceandoptions_fd88a547f6d15707 = function() { return handleError(function (arg0, arg1) {
623
+ const ret = new Blob(getObject(arg0), getObject(arg1));
624
+ return addHeapObject(ret);
625
+ }, arguments) };
626
+ imports.wbg.__wbg_arrayBuffer_27cefaea55cbf063 = function(arg0) {
627
+ const ret = getObject(arg0).arrayBuffer();
628
+ return addHeapObject(ret);
629
+ };
630
+ imports.wbg.__wbg_addEventListener_a5963e26cd7b176b = function() { return handleError(function (arg0, arg1, arg2, arg3, arg4) {
631
+ getObject(arg0).addEventListener(getStringFromWasm0(arg1, arg2), getObject(arg3), getObject(arg4));
632
+ }, arguments) };
633
+ imports.wbg.__wbg_instanceof_ShadowRoot_b64337370f59fe2d = function(arg0) {
634
+ let result;
635
+ try {
636
+ result = getObject(arg0) instanceof ShadowRoot;
637
+ } catch {
638
+ result = false;
639
+ }
640
+ const ret = result;
641
+ return ret;
642
+ };
643
+ imports.wbg.__wbg_host_e1c47c33975060d3 = function(arg0) {
644
+ const ret = getObject(arg0).host;
645
+ return addHeapObject(ret);
646
+ };
647
+ imports.wbg.__wbg_value_3c5f08ffc2b7d6f9 = function(arg0, arg1) {
648
+ const ret = getObject(arg1).value;
649
+ const ptr1 = passStringToWasm0(ret, wasm.__wbindgen_malloc, wasm.__wbindgen_realloc);
650
+ const len1 = WASM_VECTOR_LEN;
651
+ getInt32Memory0()[arg0 / 4 + 1] = len1;
652
+ getInt32Memory0()[arg0 / 4 + 0] = ptr1;
653
+ };
654
+ imports.wbg.__wbg_setvalue_0dc100d4b9908028 = function(arg0, arg1, arg2) {
655
+ getObject(arg0).value = getStringFromWasm0(arg1, arg2);
656
+ };
657
+ imports.wbg.__wbg_get_44be0491f933a435 = function(arg0, arg1) {
658
+ const ret = getObject(arg0)[arg1 >>> 0];
659
+ return addHeapObject(ret);
660
+ };
661
+ imports.wbg.__wbg_length_fff51ee6522a1a18 = function(arg0) {
662
+ const ret = getObject(arg0).length;
663
+ return ret;
664
+ };
665
+ imports.wbg.__wbg_new_898a68150f225f2e = function() {
666
+ const ret = new Array();
667
+ return addHeapObject(ret);
668
+ };
669
+ imports.wbg.__wbg_newnoargs_581967eacc0e2604 = function(arg0, arg1) {
670
+ const ret = new Function(getStringFromWasm0(arg0, arg1));
671
+ return addHeapObject(ret);
672
+ };
673
+ imports.wbg.__wbg_call_cb65541d95d71282 = function() { return handleError(function (arg0, arg1) {
674
+ const ret = getObject(arg0).call(getObject(arg1));
675
+ return addHeapObject(ret);
676
+ }, arguments) };
677
+ imports.wbg.__wbg_new_b51585de1b234aff = function() {
678
+ const ret = new Object();
679
+ return addHeapObject(ret);
680
+ };
681
+ imports.wbg.__wbg_self_1ff1d729e9aae938 = function() { return handleError(function () {
682
+ const ret = self.self;
683
+ return addHeapObject(ret);
684
+ }, arguments) };
685
+ imports.wbg.__wbg_window_5f4faef6c12b79ec = function() { return handleError(function () {
686
+ const ret = window.window;
687
+ return addHeapObject(ret);
688
+ }, arguments) };
689
+ imports.wbg.__wbg_globalThis_1d39714405582d3c = function() { return handleError(function () {
690
+ const ret = globalThis.globalThis;
691
+ return addHeapObject(ret);
692
+ }, arguments) };
693
+ imports.wbg.__wbg_global_651f05c6a0944d1c = function() { return handleError(function () {
694
+ const ret = global.global;
695
+ return addHeapObject(ret);
696
+ }, arguments) };
697
+ imports.wbg.__wbindgen_is_undefined = function(arg0) {
698
+ const ret = getObject(arg0) === undefined;
699
+ return ret;
700
+ };
701
+ imports.wbg.__wbg_from_d7c216d4616bb368 = function(arg0) {
702
+ const ret = Array.from(getObject(arg0));
703
+ return addHeapObject(ret);
704
+ };
705
+ imports.wbg.__wbg_push_ca1c26067ef907ac = function(arg0, arg1) {
706
+ const ret = getObject(arg0).push(getObject(arg1));
707
+ return ret;
708
+ };
709
+ imports.wbg.__wbg_is_205d914af04a8faa = function(arg0, arg1) {
710
+ const ret = Object.is(getObject(arg0), getObject(arg1));
711
+ return ret;
712
+ };
713
+ imports.wbg.__wbg_resolve_53698b95aaf7fcf8 = function(arg0) {
714
+ const ret = Promise.resolve(getObject(arg0));
715
+ return addHeapObject(ret);
716
+ };
717
+ imports.wbg.__wbg_then_f7e06ee3c11698eb = function(arg0, arg1) {
718
+ const ret = getObject(arg0).then(getObject(arg1));
719
+ return addHeapObject(ret);
720
+ };
721
+ imports.wbg.__wbg_then_b2267541e2a73865 = function(arg0, arg1, arg2) {
722
+ const ret = getObject(arg0).then(getObject(arg1), getObject(arg2));
723
+ return addHeapObject(ret);
724
+ };
725
+ imports.wbg.__wbg_buffer_085ec1f694018c4f = function(arg0) {
726
+ const ret = getObject(arg0).buffer;
727
+ return addHeapObject(ret);
728
+ };
729
+ imports.wbg.__wbg_newwithbyteoffsetandlength_6da8e527659b86aa = function(arg0, arg1, arg2) {
730
+ const ret = new Uint8Array(getObject(arg0), arg1 >>> 0, arg2 >>> 0);
731
+ return addHeapObject(ret);
732
+ };
733
+ imports.wbg.__wbg_new_8125e318e6245eed = function(arg0) {
734
+ const ret = new Uint8Array(getObject(arg0));
735
+ return addHeapObject(ret);
736
+ };
737
+ imports.wbg.__wbg_set_5cf90238115182c3 = function(arg0, arg1, arg2) {
738
+ getObject(arg0).set(getObject(arg1), arg2 >>> 0);
739
+ };
740
+ imports.wbg.__wbg_length_72e2208bbc0efc61 = function(arg0) {
741
+ const ret = getObject(arg0).length;
742
+ return ret;
743
+ };
744
+ imports.wbg.__wbg_set_092e06b0f9d71865 = function() { return handleError(function (arg0, arg1, arg2) {
745
+ const ret = Reflect.set(getObject(arg0), getObject(arg1), getObject(arg2));
746
+ return ret;
747
+ }, arguments) };
748
+ imports.wbg.__wbindgen_debug_string = function(arg0, arg1) {
749
+ const ret = debugString(getObject(arg1));
750
+ const ptr1 = passStringToWasm0(ret, wasm.__wbindgen_malloc, wasm.__wbindgen_realloc);
751
+ const len1 = WASM_VECTOR_LEN;
752
+ getInt32Memory0()[arg0 / 4 + 1] = len1;
753
+ getInt32Memory0()[arg0 / 4 + 0] = ptr1;
754
+ };
755
+ imports.wbg.__wbindgen_throw = function(arg0, arg1) {
756
+ throw new Error(getStringFromWasm0(arg0, arg1));
757
+ };
758
+ imports.wbg.__wbindgen_memory = function() {
759
+ const ret = wasm.memory;
760
+ return addHeapObject(ret);
761
+ };
762
+ imports.wbg.__wbindgen_closure_wrapper182 = function(arg0, arg1, arg2) {
763
+ const ret = makeClosure(arg0, arg1, 41, __wbg_adapter_18);
764
+ return addHeapObject(ret);
765
+ };
766
+ imports.wbg.__wbindgen_closure_wrapper400 = function(arg0, arg1, arg2) {
767
+ const ret = makeMutClosure(arg0, arg1, 136, __wbg_adapter_21);
768
+ return addHeapObject(ret);
769
+ };
770
+ imports.wbg.__wbindgen_closure_wrapper679 = function(arg0, arg1, arg2) {
771
+ const ret = makeMutClosure(arg0, arg1, 244, __wbg_adapter_24);
772
+ return addHeapObject(ret);
773
+ };
774
+
775
+ return imports;
776
+ }
777
+
778
+ function __wbg_init_memory(imports, maybe_memory) {
779
+
780
+ }
781
+
782
+ function __wbg_finalize_init(instance, module) {
783
+ wasm = instance.exports;
784
+ __wbg_init.__wbindgen_wasm_module = module;
785
+ cachedInt32Memory0 = null;
786
+ cachedUint32Memory0 = null;
787
+ cachedUint8Memory0 = null;
788
+
789
+ wasm.__wbindgen_start();
790
+ return wasm;
791
+ }
792
+
793
+ function initSync(module) {
794
+ if (wasm !== undefined) return wasm;
795
+
796
+ const imports = __wbg_get_imports();
797
+
798
+ __wbg_init_memory(imports);
799
+
800
+ if (!(module instanceof WebAssembly.Module)) {
801
+ module = new WebAssembly.Module(module);
802
+ }
803
+
804
+ const instance = new WebAssembly.Instance(module, imports);
805
+
806
+ return __wbg_finalize_init(instance, module);
807
+ }
808
+
809
+ async function __wbg_init(input) {
810
+ if (wasm !== undefined) return wasm;
811
+
812
+ if (typeof input === 'undefined') {
813
+ input = new URL('app-a6ac60c1ad530067_bg.wasm', import.meta.url);
814
+ }
815
+ const imports = __wbg_get_imports();
816
+
817
+ if (typeof input === 'string' || (typeof Request === 'function' && input instanceof Request) || (typeof URL === 'function' && input instanceof URL)) {
818
+ input = fetch(input);
819
+ }
820
+
821
+ __wbg_init_memory(imports);
822
+
823
+ const { instance, module } = await __wbg_load(await input, imports);
824
+
825
+ return __wbg_finalize_init(instance, module);
826
+ }
827
+
828
+ export { initSync }
829
+ export default __wbg_init;
app-a6ac60c1ad530067_bg.wasm ADDED
@@ -0,0 +1,3 @@
 
 
 
 
1
+ version https://git-lfs.github.com/spec/v1
2
+ oid sha256:f1ee9281e07047e62bb1880a4ab8d4168d263dc1ba2623f6adabae5571766ef5
3
+ size 313016
index.html CHANGED
@@ -4,15 +4,15 @@
4
 
5
 
6
 
7
- <script type="module">import init from '/app-c34faa410cb6796f.js';init('/app-c34faa410cb6796f_bg.wasm');</script>
8
 
9
 
10
  <link rel="stylesheet" href="https://fonts.googleapis.com/css?family=Roboto:300,300italic,700,700italic">
11
  <link rel="stylesheet" href="https://cdnjs.cloudflare.com/ajax/libs/normalize/8.0.1/normalize.css">
12
  <link rel="stylesheet" href="https://cdnjs.cloudflare.com/ajax/libs/milligram/1.4.1/milligram.css">
13
 
14
- <link rel="preload" href="/app-c34faa410cb6796f_bg.wasm" as="fetch" type="application/wasm" crossorigin="">
15
- <link rel="modulepreload" href="/app-c34faa410cb6796f.js"></head>
16
  <body>
17
 
18
  <script>(function () {
 
4
 
5
 
6
 
7
+ <script type="module">import init from '/app-a6ac60c1ad530067.js';init('/app-a6ac60c1ad530067_bg.wasm');</script>
8
 
9
 
10
  <link rel="stylesheet" href="https://fonts.googleapis.com/css?family=Roboto:300,300italic,700,700italic">
11
  <link rel="stylesheet" href="https://cdnjs.cloudflare.com/ajax/libs/normalize/8.0.1/normalize.css">
12
  <link rel="stylesheet" href="https://cdnjs.cloudflare.com/ajax/libs/milligram/1.4.1/milligram.css">
13
 
14
+ <link rel="preload" href="/app-a6ac60c1ad530067_bg.wasm" as="fetch" type="application/wasm" crossorigin="">
15
+ <link rel="modulepreload" href="/app-a6ac60c1ad530067.js"></head>
16
  <body>
17
 
18
  <script>(function () {
tokenizer.json ADDED
@@ -0,0 +1,3 @@
 
 
 
 
1
+ version https://git-lfs.github.com/spec/v1
2
+ oid sha256:8eea70c4866c4f1320ba096fc986ac82038a8374dbe135212ba7628835b4a6f1
3
+ size 1842764
worker.js CHANGED
@@ -36,6 +36,24 @@ function addHeapObject(obj) {
36
  return idx;
37
  }
38
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
39
  function debugString(val) {
40
  // primitive types
41
  const type = typeof val;
@@ -103,15 +121,6 @@ function debugString(val) {
103
 
104
  let WASM_VECTOR_LEN = 0;
105
 
106
- let cachedUint8Memory0 = null;
107
-
108
- function getUint8Memory0() {
109
- if (cachedUint8Memory0 === null || cachedUint8Memory0.byteLength === 0) {
110
- cachedUint8Memory0 = new Uint8Array(wasm.memory.buffer);
111
- }
112
- return cachedUint8Memory0;
113
- }
114
-
115
  const cachedTextEncoder = (typeof TextEncoder !== 'undefined' ? new TextEncoder('utf-8') : { encode: () => { throw Error('TextEncoder not available') } } );
116
 
117
  const encodeString = (typeof cachedTextEncoder.encodeInto === 'function'
@@ -174,15 +183,6 @@ function getInt32Memory0() {
174
  return cachedInt32Memory0;
175
  }
176
 
177
- const cachedTextDecoder = (typeof TextDecoder !== 'undefined' ? new TextDecoder('utf-8', { ignoreBOM: true, fatal: true }) : { decode: () => { throw Error('TextDecoder not available') } } );
178
-
179
- if (typeof TextDecoder !== 'undefined') { cachedTextDecoder.decode(); };
180
-
181
- function getStringFromWasm0(ptr, len) {
182
- ptr = ptr >>> 0;
183
- return cachedTextDecoder.decode(getUint8Memory0().subarray(ptr, ptr + len));
184
- }
185
-
186
  function makeClosure(arg0, arg1, dtor, f) {
187
  const state = { a: arg0, b: arg1, cnt: 1, dtor };
188
  const real = (...args) => {
@@ -204,8 +204,8 @@ function makeClosure(arg0, arg1, dtor, f) {
204
 
205
  return real;
206
  }
207
- function __wbg_adapter_14(arg0, arg1, arg2) {
208
- wasm._dyn_core__ops__function__Fn__A____Output___R_as_wasm_bindgen__closure__WasmClosure___describe__invoke__h0c3c9f9270713bf6(arg0, arg1, addHeapObject(arg2));
209
  }
210
 
211
  function handleError(f, args) {
@@ -253,13 +253,60 @@ function __wbg_get_imports() {
253
  imports.wbg.__wbindgen_object_drop_ref = function(arg0) {
254
  takeObject(arg0);
255
  };
 
 
 
 
256
  imports.wbg.__wbg_log_3af90b48c052f90b = function(arg0, arg1) {
257
  console.log(getStringFromWasm0(arg0, arg1));
258
  };
259
- imports.wbg.__wbindgen_object_clone_ref = function(arg0) {
260
- const ret = getObject(arg0);
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
261
  return addHeapObject(ret);
262
  };
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
263
  imports.wbg.__wbg_new_abda76e883ba8a5f = function() {
264
  const ret = new Error();
265
  return addHeapObject(ret);
@@ -323,6 +370,10 @@ function __wbg_get_imports() {
323
  const ret = getObject(arg0) === undefined;
324
  return ret;
325
  };
 
 
 
 
326
  imports.wbg.__wbg_buffer_085ec1f694018c4f = function(arg0) {
327
  const ret = getObject(arg0).buffer;
328
  return addHeapObject(ret);
@@ -342,6 +393,14 @@ function __wbg_get_imports() {
342
  const ret = getObject(arg0).length;
343
  return ret;
344
  };
 
 
 
 
 
 
 
 
345
  imports.wbg.__wbindgen_debug_string = function(arg0, arg1) {
346
  const ret = debugString(getObject(arg1));
347
  const ptr1 = passStringToWasm0(ret, wasm.__wbindgen_malloc, wasm.__wbindgen_realloc);
@@ -356,8 +415,8 @@ function __wbg_get_imports() {
356
  const ret = wasm.memory;
357
  return addHeapObject(ret);
358
  };
359
- imports.wbg.__wbindgen_closure_wrapper66 = function(arg0, arg1, arg2) {
360
- const ret = makeClosure(arg0, arg1, 26, __wbg_adapter_14);
361
  return addHeapObject(ret);
362
  };
363
 
 
36
  return idx;
37
  }
38
 
39
+ const cachedTextDecoder = (typeof TextDecoder !== 'undefined' ? new TextDecoder('utf-8', { ignoreBOM: true, fatal: true }) : { decode: () => { throw Error('TextDecoder not available') } } );
40
+
41
+ if (typeof TextDecoder !== 'undefined') { cachedTextDecoder.decode(); };
42
+
43
+ let cachedUint8Memory0 = null;
44
+
45
+ function getUint8Memory0() {
46
+ if (cachedUint8Memory0 === null || cachedUint8Memory0.byteLength === 0) {
47
+ cachedUint8Memory0 = new Uint8Array(wasm.memory.buffer);
48
+ }
49
+ return cachedUint8Memory0;
50
+ }
51
+
52
+ function getStringFromWasm0(ptr, len) {
53
+ ptr = ptr >>> 0;
54
+ return cachedTextDecoder.decode(getUint8Memory0().subarray(ptr, ptr + len));
55
+ }
56
+
57
  function debugString(val) {
58
  // primitive types
59
  const type = typeof val;
 
121
 
122
  let WASM_VECTOR_LEN = 0;
123
 
 
 
 
 
 
 
 
 
 
124
  const cachedTextEncoder = (typeof TextEncoder !== 'undefined' ? new TextEncoder('utf-8') : { encode: () => { throw Error('TextEncoder not available') } } );
125
 
126
  const encodeString = (typeof cachedTextEncoder.encodeInto === 'function'
 
183
  return cachedInt32Memory0;
184
  }
185
 
 
 
 
 
 
 
 
 
 
186
  function makeClosure(arg0, arg1, dtor, f) {
187
  const state = { a: arg0, b: arg1, cnt: 1, dtor };
188
  const real = (...args) => {
 
204
 
205
  return real;
206
  }
207
+ function __wbg_adapter_22(arg0, arg1, arg2) {
208
+ wasm._dyn_core__ops__function__Fn__A____Output___R_as_wasm_bindgen__closure__WasmClosure___describe__invoke__h394c66cd6bc0689a(arg0, arg1, addHeapObject(arg2));
209
  }
210
 
211
  function handleError(f, args) {
 
253
  imports.wbg.__wbindgen_object_drop_ref = function(arg0) {
254
  takeObject(arg0);
255
  };
256
+ imports.wbg.__wbindgen_object_clone_ref = function(arg0) {
257
+ const ret = getObject(arg0);
258
+ return addHeapObject(ret);
259
+ };
260
  imports.wbg.__wbg_log_3af90b48c052f90b = function(arg0, arg1) {
261
  console.log(getStringFromWasm0(arg0, arg1));
262
  };
263
+ imports.wbg.__wbindgen_string_new = function(arg0, arg1) {
264
+ const ret = getStringFromWasm0(arg0, arg1);
265
+ return addHeapObject(ret);
266
+ };
267
+ imports.wbg.__wbg_getRandomValues_37fa2ca9e4e07fab = function() { return handleError(function (arg0, arg1) {
268
+ getObject(arg0).getRandomValues(getObject(arg1));
269
+ }, arguments) };
270
+ imports.wbg.__wbg_randomFillSync_dc1e9a60c158336d = function() { return handleError(function (arg0, arg1) {
271
+ getObject(arg0).randomFillSync(takeObject(arg1));
272
+ }, arguments) };
273
+ imports.wbg.__wbg_crypto_c48a774b022d20ac = function(arg0) {
274
+ const ret = getObject(arg0).crypto;
275
+ return addHeapObject(ret);
276
+ };
277
+ imports.wbg.__wbindgen_is_object = function(arg0) {
278
+ const val = getObject(arg0);
279
+ const ret = typeof(val) === 'object' && val !== null;
280
+ return ret;
281
+ };
282
+ imports.wbg.__wbg_process_298734cf255a885d = function(arg0) {
283
+ const ret = getObject(arg0).process;
284
+ return addHeapObject(ret);
285
+ };
286
+ imports.wbg.__wbg_versions_e2e78e134e3e5d01 = function(arg0) {
287
+ const ret = getObject(arg0).versions;
288
+ return addHeapObject(ret);
289
+ };
290
+ imports.wbg.__wbg_node_1cd7a5d853dbea79 = function(arg0) {
291
+ const ret = getObject(arg0).node;
292
  return addHeapObject(ret);
293
  };
294
+ imports.wbg.__wbindgen_is_string = function(arg0) {
295
+ const ret = typeof(getObject(arg0)) === 'string';
296
+ return ret;
297
+ };
298
+ imports.wbg.__wbg_msCrypto_bcb970640f50a1e8 = function(arg0) {
299
+ const ret = getObject(arg0).msCrypto;
300
+ return addHeapObject(ret);
301
+ };
302
+ imports.wbg.__wbg_require_8f08ceecec0f4fee = function() { return handleError(function () {
303
+ const ret = module.require;
304
+ return addHeapObject(ret);
305
+ }, arguments) };
306
+ imports.wbg.__wbindgen_is_function = function(arg0) {
307
+ const ret = typeof(getObject(arg0)) === 'function';
308
+ return ret;
309
+ };
310
  imports.wbg.__wbg_new_abda76e883ba8a5f = function() {
311
  const ret = new Error();
312
  return addHeapObject(ret);
 
370
  const ret = getObject(arg0) === undefined;
371
  return ret;
372
  };
373
+ imports.wbg.__wbg_call_01734de55d61e11d = function() { return handleError(function (arg0, arg1, arg2) {
374
+ const ret = getObject(arg0).call(getObject(arg1), getObject(arg2));
375
+ return addHeapObject(ret);
376
+ }, arguments) };
377
  imports.wbg.__wbg_buffer_085ec1f694018c4f = function(arg0) {
378
  const ret = getObject(arg0).buffer;
379
  return addHeapObject(ret);
 
393
  const ret = getObject(arg0).length;
394
  return ret;
395
  };
396
+ imports.wbg.__wbg_newwithlength_e5d69174d6984cd7 = function(arg0) {
397
+ const ret = new Uint8Array(arg0 >>> 0);
398
+ return addHeapObject(ret);
399
+ };
400
+ imports.wbg.__wbg_subarray_13db269f57aa838d = function(arg0, arg1, arg2) {
401
+ const ret = getObject(arg0).subarray(arg1 >>> 0, arg2 >>> 0);
402
+ return addHeapObject(ret);
403
+ };
404
  imports.wbg.__wbindgen_debug_string = function(arg0, arg1) {
405
  const ret = debugString(getObject(arg1));
406
  const ptr1 = passStringToWasm0(ret, wasm.__wbindgen_malloc, wasm.__wbindgen_realloc);
 
415
  const ret = wasm.memory;
416
  return addHeapObject(ret);
417
  };
418
+ imports.wbg.__wbindgen_closure_wrapper91 = function(arg0, arg1, arg2) {
419
+ const ret = makeClosure(arg0, arg1, 30, __wbg_adapter_22);
420
  return addHeapObject(ret);
421
  };
422
 
worker_bg.wasm CHANGED
@@ -1,3 +1,3 @@
1
  version https://git-lfs.github.com/spec/v1
2
- oid sha256:1793e74fb8e66b09ff45903018509d24b3e2b58a27bd06c98a473e40d3fea830
3
- size 968916
 
1
  version https://git-lfs.github.com/spec/v1
2
+ oid sha256:e22fc1c5b4d0034a76a9438d17df8a527acfdc38939cbb2a4c5430cc8cbf8a18
3
+ size 2633873