@dcl-regenesislabs/bevy-explorer-web 0.1.0-21595684121.commit-5c97eb7 → 0.1.0-21602670496.commit-9d1da61

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/.env CHANGED
@@ -1 +1 @@
1
- PUBLIC_URL="https://cdn.decentraland.org/@dcl-regenesislabs/bevy-explorer-web/0.1.0-21595684121.commit-5c97eb7"
1
+ PUBLIC_URL="https://cdn.decentraland.org/@dcl-regenesislabs/bevy-explorer-web/0.1.0-21602670496.commit-9d1da61"
package/index.html CHANGED
@@ -1,5 +1,6 @@
1
1
  <!DOCTYPE html>
2
2
  <html lang="en">
3
+
3
4
  <head>
4
5
  <meta charset="UTF-8">
5
6
  <meta name="viewport" content="width=device-width, initial-scale=1.0">
@@ -7,16 +8,22 @@
7
8
  <style>
8
9
  video {
9
10
  display: none;
10
- }
11
- body {
12
- font-family: 'Inter', sans-serif; /* Changed to Inter */
13
- margin: 0px;
14
- background-color: #f7fafc; /* Lighter gray */
15
- color: #2d3748; /* Darker gray for text */
11
+ }
12
+
13
+ body {
14
+ font-family: 'Inter', sans-serif;
15
+ /* Changed to Inter */
16
+ margin: 0px;
17
+ background-color: #f7fafc;
18
+ /* Lighter gray */
19
+ color: #2d3748;
20
+ /* Darker gray for text */
16
21
  display: flex;
17
22
  flex-direction: column;
18
- align-items: center; /* Center content */
23
+ align-items: center;
24
+ /* Center content */
19
25
  }
26
+
20
27
  .container {
21
28
  background-color: #ffffff;
22
29
  padding: 25px;
@@ -24,61 +31,80 @@
24
31
  border-radius: 8px;
25
32
  box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
26
33
  width: 100%;
27
- max-width: 700px; /* Max width for content */
34
+ max-width: 700px;
35
+ /* Max width for content */
28
36
  }
29
- h1 {
30
- color: #2b6cb0; /* Tailwind blue-700 */
37
+
38
+ h1 {
39
+ color: #2b6cb0;
40
+ /* Tailwind blue-700 */
31
41
  text-align: center;
32
42
  margin-bottom: 20px;
33
43
  }
44
+
34
45
  label {
35
46
  display: block;
36
47
  margin-top: 15px;
37
48
  margin-bottom: 5px;
38
49
  font-weight: 600;
39
- color: #4a5568; /* Tailwind gray-700 */
50
+ color: #4a5568;
51
+ /* Tailwind gray-700 */
40
52
  }
53
+
41
54
  input[type="text"] {
42
- width: calc(100% - 22px); /* Full width minus padding and border */
55
+ width: calc(100% - 22px);
56
+ /* Full width minus padding and border */
43
57
  padding: 10px;
44
- border: 1px solid #cbd5e0; /* Tailwind gray-400 */
58
+ border: 1px solid #cbd5e0;
59
+ /* Tailwind gray-400 */
45
60
  border-radius: 6px;
46
61
  font-size: 1rem;
47
62
  color: #2d3748;
48
63
  }
64
+
49
65
  input[type="text"]:focus {
50
66
  outline: none;
51
- border-color: #4299e1; /* Tailwind blue-500 */
67
+ border-color: #4299e1;
68
+ /* Tailwind blue-500 */
52
69
  box-shadow: 0 0 0 3px rgba(66, 153, 225, 0.5);
53
70
  }
54
- button {
55
- padding: 12px 20px;
56
- background-color: #3182ce; /* Tailwind blue-600 */
57
- color: white;
58
- border: none;
59
- border-radius: 6px;
60
- cursor: pointer;
71
+
72
+ button {
73
+ padding: 12px 20px;
74
+ background-color: #3182ce;
75
+ /* Tailwind blue-600 */
76
+ color: white;
77
+ border: none;
78
+ border-radius: 6px;
79
+ cursor: pointer;
61
80
  margin-top: 25px;
62
81
  font-size: 1rem;
63
82
  font-weight: 600;
64
83
  transition: background-color 0.2s ease-in-out;
65
- display: block; /* Make button block to center it */
84
+ display: block;
85
+ /* Make button block to center it */
66
86
  margin-left: auto;
67
87
  margin-right: auto;
68
88
  }
69
- button:hover {
70
- background-color: #2b6cb0; /* Tailwind blue-700 */
89
+
90
+ button:hover {
91
+ background-color: #2b6cb0;
92
+ /* Tailwind blue-700 */
71
93
  }
94
+
72
95
  #canvas-parent {
73
96
  display: none;
74
97
  width: 100%;
75
98
  height: 100vh;
76
99
  }
100
+
77
101
  #mygame-canvas {
78
102
  width: 100%;
79
103
  height: 100%;
80
- display: block; /* Remove extra space below canvas */
104
+ display: block;
105
+ /* Remove extra space below canvas */
81
106
  }
107
+
82
108
  /* Added for better structure and responsiveness */
83
109
  .input-group {
84
110
  margin-bottom: 15px;
@@ -89,32 +115,36 @@
89
115
  body {
90
116
  margin: 10px;
91
117
  }
118
+
92
119
  .container {
93
120
  padding: 20px;
94
121
  }
122
+
95
123
  h1 {
96
124
  font-size: 1.8rem;
97
125
  }
126
+
98
127
  button {
99
128
  width: 100%;
100
129
  }
101
130
  }
102
131
  </style>
103
132
  <link href="https://fonts.googleapis.com/css2?family=Inter:wght@400;600;700&display=swap" rel="stylesheet">
104
- <script>window.PUBLIC_URL = "https://cdn.decentraland.org/@dcl-regenesislabs/bevy-explorer-web/0.1.0-21595684121.commit-5c97eb7";</script>
133
+ <script>window.PUBLIC_URL = "https://cdn.decentraland.org/@dcl-regenesislabs/bevy-explorer-web/0.1.0-21602670496.commit-9d1da61";</script>
105
134
  </head>
135
+
106
136
  <body>
107
137
  <div id="header" class="container">
108
138
  <h1>Bevy Explorer</h1>
109
139
 
110
140
  <div class="input-group">
111
- <label for="initialRealm">Initial Realm:</label>
112
- <input type="text" id="initialRealm" name="initialRealm" placeholder="e.g., world_alpha">
141
+ <label for="realm">Realm:</label>
142
+ <input type="text" id="realm" name="realm" placeholder="e.g., world_alpha">
113
143
  </div>
114
144
 
115
145
  <div class="input-group">
116
- <label for="location">Location:</label>
117
- <input type="text" id="location" name="location" placeholder="e.g., 0,0">
146
+ <label for="position">Position:</label>
147
+ <input type="text" id="position" name="position" placeholder="e.g., 0,0">
118
148
  </div>
119
149
 
120
150
  <div class="input-group">
@@ -128,16 +158,18 @@
128
158
  </div>
129
159
 
130
160
  <button id="initButton" disabled="true">Loading...</button>
131
-
161
+
132
162
  </div>
133
163
  <div id="canvas-parent">
134
- <canvas id="mygame-canvas"></canvas>
164
+ <canvas id="mygame-canvas"></canvas>
135
165
  </div>
136
- <div id="shader-compiling" style="position: absolute; height:30%; aspect-ratio: 1; background: radial-gradient(circle closest-side, #000000aa, #00000000); align-items: center; justify-content: center; display: none;">
137
- <image src="shader_compiling_transparent2.png" style="width: 100%;"/>
166
+ <div id="shader-compiling"
167
+ style="position: absolute; height:30%; aspect-ratio: 1; background: radial-gradient(circle closest-side, #000000aa, #00000000); align-items: center; justify-content: center; display: none;">
168
+ <image src="shader_compiling_transparent2.png" style="width: 100%;" />
138
169
  </div>
139
170
  <script src="https://cdn.jsdelivr.net/npm/livekit-client/dist/livekit-client.umd.min.js"></script>
140
171
  <script src="https://cdn.jsdelivr.net/npm/hls.js@1"></script>
141
- <script type="module" src="https://cdn.decentraland.org/@dcl-regenesislabs/bevy-explorer-web/0.1.0-21595684121.commit-5c97eb7/main.js"></script>
172
+ <script type="module" src="https://cdn.decentraland.org/@dcl-regenesislabs/bevy-explorer-web/0.1.0-21602670496.commit-9d1da61/main.js"></script>
142
173
  </body>
143
- </html>
174
+
175
+ </html>
package/main.js CHANGED
@@ -2,8 +2,8 @@
2
2
  import { initGpuCache } from "./gpu_cache.js";
3
3
  import init, { engine_init, engine_run, gpu_cache_hash } from "./pkg/webgpu_build.js"; // Ensure this path is correct
4
4
 
5
- const initialRealmInput = document.getElementById("initialRealm");
6
- const locationInput = document.getElementById("location");
5
+ const realmInput = document.getElementById("realm");
6
+ const positionInput = document.getElementById("position");
7
7
  const systemSceneInput = document.getElementById("systemScene");
8
8
  const previewInput = document.getElementById("preview");
9
9
  const initButton = document.getElementById("initButton");
@@ -23,18 +23,18 @@ function populateInputsFromQueryParams() {
23
23
  autoStart = false;
24
24
  }
25
25
 
26
- const initialRealmParam = queryParams.get("initialRealm");
27
- if (initialRealmInput && initialRealmParam) {
28
- initialRealmInput.value = decodeURIComponent(initialRealmParam);
29
- } else if (initialRealmInput) {
30
- initialRealmInput.value = DEFAULT_SERVER;
26
+ const realmParam = queryParams.get("realm");
27
+ if (realmInput && realmParam) {
28
+ realmInput.value = decodeURIComponent(realmParam);
29
+ } else if (realmInput) {
30
+ realmInput.value = DEFAULT_SERVER;
31
31
  }
32
32
 
33
- const locationParam = queryParams.get("location");
34
- if (locationInput && locationParam) {
35
- locationInput.value = decodeURIComponent(locationParam);
36
- } else if (locationInput) {
37
- locationInput.value = "";
33
+ const positionParam = queryParams.get("position");
34
+ if (positionInput && positionParam) {
35
+ positionInput.value = decodeURIComponent(positionParam);
36
+ } else if (positionInput) {
37
+ positionInput.value = "";
38
38
  }
39
39
 
40
40
  const systemSceneParam = queryParams.get("systemScene");
@@ -51,8 +51,8 @@ function populateInputsFromQueryParams() {
51
51
  previewInput.checked = false;
52
52
  }
53
53
 
54
- initialRealmInput.disabled = autoStart;
55
- locationInput.disabled = autoStart;
54
+ realmInput.disabled = autoStart;
55
+ positionInput.disabled = autoStart;
56
56
  systemSceneInput.disabled = autoStart;
57
57
  previewInput.disabled = autoStart;
58
58
  }
@@ -288,12 +288,12 @@ async function initEngine() {
288
288
  }
289
289
 
290
290
  function start() {
291
- const initialRealm = initialRealmInput.value;
292
- const location = locationInput.value;
291
+ const realm = realmInput.value;
292
+ const position = positionInput.value;
293
293
  const systemScene = systemSceneInput.value;
294
294
  const preview = previewInput.checked;
295
295
  console.log(
296
- `[Main JS] "Go" button clicked. Initial Realm: "${initialRealm}", Location: "${location}", System Scene: "${systemScene}"`
296
+ `[Main JS] "Go" button clicked. Realm: "${realm}", Position: "${position}", System Scene: "${systemScene}"`
297
297
  );
298
298
  hideHeader();
299
299
 
@@ -304,7 +304,7 @@ function start() {
304
304
  return "unknown";
305
305
  })();
306
306
 
307
- engine_run(platform, initialRealm, location, systemScene, true, preview, 1e7);
307
+ engine_run(platform, realm, position, systemScene, true, preview, 1e7);
308
308
  }
309
309
 
310
310
  initButton.onclick = start;
@@ -324,16 +324,16 @@ initEngine()
324
324
  initButton.textContent = "Load Failed";
325
325
  });
326
326
 
327
- window.set_url_params = (x, y, server, system_scene, preview) => {
327
+ window.set_url_params = (x, y, realm, system_scene, preview) => {
328
328
  try {
329
329
  const urlParams = new URLSearchParams(window.location.search);
330
330
 
331
- urlParams.set("location", `${x},${y}`);
331
+ urlParams.set("position", `${x},${y}`);
332
332
 
333
- if (server != DEFAULT_SERVER) {
334
- urlParams.set("initialServer", server);
333
+ if (realm != DEFAULT_SERVER) {
334
+ urlParams.set("realm", realm);
335
335
  } else {
336
- urlParams.delete("initialServer");
336
+ urlParams.delete("realm");
337
337
  }
338
338
 
339
339
  if (system_scene != DEFAULT_SYSTEMSCENE) {
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@dcl-regenesislabs/bevy-explorer-web",
3
- "version": "0.1.0-21595684121.commit-5c97eb7",
3
+ "version": "0.1.0-21602670496.commit-9d1da61",
4
4
  "scripts": {
5
5
  "postinstall": "node ./scripts/prebuild.js"
6
6
  },
@@ -8,6 +8,6 @@
8
8
  "type": "git",
9
9
  "url": "git+https://github.com/decentraland/bevy-explorer.git"
10
10
  },
11
- "homepage": "https://cdn.decentraland.org/@dcl-regenesislabs/bevy-explorer-web/0.1.0-21595684121.commit-5c97eb7",
12
- "commit": "5c97eb7648df45e15081564657423356ad3d651c"
11
+ "homepage": "https://cdn.decentraland.org/@dcl-regenesislabs/bevy-explorer-web/0.1.0-21602670496.commit-9d1da61",
12
+ "commit": "9d1da61facaf950a8fd3ab3bb0a48be4f22a73ed"
13
13
  }
@@ -310,19 +310,19 @@ export interface InitOutput {
310
310
  readonly __externref_table_dealloc: (a: number) => void;
311
311
  readonly __externref_drop_slice: (a: number, b: number) => void;
312
312
  readonly closure15510_externref_shim: (a: number, b: number, c: number, d: any) => void;
313
- readonly closure41155_externref_shim: (a: number, b: number, c: any) => void;
314
- readonly closure50290_externref_shim: (a: number, b: number, c: any) => void;
313
+ readonly closure41156_externref_shim: (a: number, b: number, c: any) => void;
314
+ readonly closure50291_externref_shim: (a: number, b: number, c: any) => void;
315
315
  readonly _dyn_core_f2710c7f87f75ba1___ops__function__FnMut_____Output______as_wasm_bindgen_654c7ee7fd766678___closure__WasmClosure___describe__invoke______: (a: number, b: number) => void;
316
316
  readonly _dyn_core_f2710c7f87f75ba1___ops__function__FnMut_____Output______as_wasm_bindgen_654c7ee7fd766678___closure__WasmClosure___describe__invoke______15: (a: number, b: number) => void;
317
- readonly closure53944_externref_shim: (a: number, b: number, c: any) => void;
317
+ readonly closure53945_externref_shim: (a: number, b: number, c: any) => void;
318
318
  readonly _dyn_core_f2710c7f87f75ba1___ops__function__FnMut_____Output______as_wasm_bindgen_654c7ee7fd766678___closure__WasmClosure___describe__invoke______17: (a: number, b: number) => void;
319
319
  readonly _dyn_core_f2710c7f87f75ba1___ops__function__FnMut_____Output______as_wasm_bindgen_654c7ee7fd766678___closure__WasmClosure___describe__invoke______18: (a: number, b: number) => void;
320
- readonly closure59014_externref_shim: (a: number, b: number, c: any) => void;
321
- readonly closure59018_externref_shim: (a: number, b: number, c: any, d: any) => void;
320
+ readonly closure59015_externref_shim: (a: number, b: number, c: any) => void;
321
+ readonly closure59019_externref_shim: (a: number, b: number, c: any, d: any) => void;
322
322
  readonly _dyn_core_f2710c7f87f75ba1___ops__function__FnMut_____Output______as_wasm_bindgen_654c7ee7fd766678___closure__WasmClosure___describe__invoke______21: (a: number, b: number) => void;
323
- readonly closure118969_externref_shim: (a: number, b: number, c: any) => void;
324
- readonly closure134232_externref_shim: (a: number, b: number, c: any) => void;
325
- readonly closure137125_externref_shim: (a: number, b: number, c: any, d: any) => void;
323
+ readonly closure118970_externref_shim: (a: number, b: number, c: any) => void;
324
+ readonly closure134233_externref_shim: (a: number, b: number, c: any) => void;
325
+ readonly closure137126_externref_shim: (a: number, b: number, c: any, d: any) => void;
326
326
  readonly __wbindgen_thread_destroy: (a?: number, b?: number, c?: number) => void;
327
327
  readonly __wbindgen_start: (a: number) => void;
328
328
  }
@@ -1414,11 +1414,11 @@ function __wbg_adapter_62(arg0, arg1, arg2, arg3) {
1414
1414
  }
1415
1415
 
1416
1416
  function __wbg_adapter_65(arg0, arg1, arg2) {
1417
- wasm.closure41155_externref_shim(arg0, arg1, arg2);
1417
+ wasm.closure41156_externref_shim(arg0, arg1, arg2);
1418
1418
  }
1419
1419
 
1420
1420
  function __wbg_adapter_68(arg0, arg1, arg2) {
1421
- wasm.closure50290_externref_shim(arg0, arg1, arg2);
1421
+ wasm.closure50291_externref_shim(arg0, arg1, arg2);
1422
1422
  }
1423
1423
 
1424
1424
  function __wbg_adapter_71(arg0, arg1) {
@@ -1430,7 +1430,7 @@ function __wbg_adapter_74(arg0, arg1) {
1430
1430
  }
1431
1431
 
1432
1432
  function __wbg_adapter_77(arg0, arg1, arg2) {
1433
- wasm.closure53944_externref_shim(arg0, arg1, arg2);
1433
+ wasm.closure53945_externref_shim(arg0, arg1, arg2);
1434
1434
  }
1435
1435
 
1436
1436
  function __wbg_adapter_84(arg0, arg1) {
@@ -1442,11 +1442,11 @@ function __wbg_adapter_87(arg0, arg1) {
1442
1442
  }
1443
1443
 
1444
1444
  function __wbg_adapter_90(arg0, arg1, arg2) {
1445
- wasm.closure59014_externref_shim(arg0, arg1, arg2);
1445
+ wasm.closure59015_externref_shim(arg0, arg1, arg2);
1446
1446
  }
1447
1447
 
1448
1448
  function __wbg_adapter_93(arg0, arg1, arg2, arg3) {
1449
- wasm.closure59018_externref_shim(arg0, arg1, arg2, arg3);
1449
+ wasm.closure59019_externref_shim(arg0, arg1, arg2, arg3);
1450
1450
  }
1451
1451
 
1452
1452
  function __wbg_adapter_108(arg0, arg1) {
@@ -1454,15 +1454,15 @@ function __wbg_adapter_108(arg0, arg1) {
1454
1454
  }
1455
1455
 
1456
1456
  function __wbg_adapter_111(arg0, arg1, arg2) {
1457
- wasm.closure118969_externref_shim(arg0, arg1, arg2);
1457
+ wasm.closure118970_externref_shim(arg0, arg1, arg2);
1458
1458
  }
1459
1459
 
1460
1460
  function __wbg_adapter_114(arg0, arg1, arg2) {
1461
- wasm.closure134232_externref_shim(arg0, arg1, arg2);
1461
+ wasm.closure134233_externref_shim(arg0, arg1, arg2);
1462
1462
  }
1463
1463
 
1464
1464
  function __wbg_adapter_1593(arg0, arg1, arg2, arg3) {
1465
- wasm.closure137125_externref_shim(arg0, arg1, arg2, arg3);
1465
+ wasm.closure137126_externref_shim(arg0, arg1, arg2, arg3);
1466
1466
  }
1467
1467
 
1468
1468
  /**
@@ -4767,92 +4767,92 @@ function __wbg_get_imports() {
4767
4767
  const ret = false;
4768
4768
  return ret;
4769
4769
  };
4770
- imports.wbg.__wbindgen_closure_wrapper150462 = function(arg0, arg1, arg2) {
4771
- const ret = makeMutClosure(arg0, arg1, 118970, __wbg_adapter_111);
4770
+ imports.wbg.__wbindgen_closure_wrapper150466 = function(arg0, arg1, arg2) {
4771
+ const ret = makeMutClosure(arg0, arg1, 118971, __wbg_adapter_111);
4772
4772
  return ret;
4773
4773
  };
4774
- imports.wbg.__wbindgen_closure_wrapper171270 = function(arg0, arg1, arg2) {
4775
- const ret = makeMutClosure(arg0, arg1, 134233, __wbg_adapter_114);
4774
+ imports.wbg.__wbindgen_closure_wrapper171274 = function(arg0, arg1, arg2) {
4775
+ const ret = makeMutClosure(arg0, arg1, 134234, __wbg_adapter_114);
4776
4776
  return ret;
4777
4777
  };
4778
- imports.wbg.__wbindgen_closure_wrapper171272 = function(arg0, arg1, arg2) {
4779
- const ret = makeMutClosure(arg0, arg1, 134233, __wbg_adapter_114);
4778
+ imports.wbg.__wbindgen_closure_wrapper171276 = function(arg0, arg1, arg2) {
4779
+ const ret = makeMutClosure(arg0, arg1, 134234, __wbg_adapter_114);
4780
4780
  return ret;
4781
4781
  };
4782
4782
  imports.wbg.__wbindgen_closure_wrapper19906 = function(arg0, arg1, arg2) {
4783
4783
  const ret = makeMutClosure(arg0, arg1, 15511, __wbg_adapter_62);
4784
4784
  return ret;
4785
4785
  };
4786
- imports.wbg.__wbindgen_closure_wrapper53888 = function(arg0, arg1, arg2) {
4787
- const ret = makeClosure(arg0, arg1, 41156, __wbg_adapter_65);
4786
+ imports.wbg.__wbindgen_closure_wrapper53892 = function(arg0, arg1, arg2) {
4787
+ const ret = makeClosure(arg0, arg1, 41157, __wbg_adapter_65);
4788
4788
  return ret;
4789
4789
  };
4790
- imports.wbg.__wbindgen_closure_wrapper66384 = function(arg0, arg1, arg2) {
4791
- const ret = makeMutClosure(arg0, arg1, 50291, __wbg_adapter_68);
4790
+ imports.wbg.__wbindgen_closure_wrapper66388 = function(arg0, arg1, arg2) {
4791
+ const ret = makeMutClosure(arg0, arg1, 50292, __wbg_adapter_68);
4792
4792
  return ret;
4793
4793
  };
4794
- imports.wbg.__wbindgen_closure_wrapper66523 = function(arg0, arg1, arg2) {
4795
- const ret = makeMutClosure(arg0, arg1, 50394, __wbg_adapter_71);
4794
+ imports.wbg.__wbindgen_closure_wrapper66527 = function(arg0, arg1, arg2) {
4795
+ const ret = makeMutClosure(arg0, arg1, 50395, __wbg_adapter_71);
4796
4796
  return ret;
4797
4797
  };
4798
- imports.wbg.__wbindgen_closure_wrapper70345 = function(arg0, arg1, arg2) {
4799
- const ret = makeMutClosure(arg0, arg1, 53331, __wbg_adapter_74);
4800
- return ret;
4801
- };
4802
- imports.wbg.__wbindgen_closure_wrapper71543 = function(arg0, arg1, arg2) {
4803
- const ret = makeMutClosure(arg0, arg1, 53945, __wbg_adapter_77);
4804
- return ret;
4805
- };
4806
- imports.wbg.__wbindgen_closure_wrapper71545 = function(arg0, arg1, arg2) {
4807
- const ret = makeMutClosure(arg0, arg1, 53945, __wbg_adapter_77);
4798
+ imports.wbg.__wbindgen_closure_wrapper70349 = function(arg0, arg1, arg2) {
4799
+ const ret = makeMutClosure(arg0, arg1, 53332, __wbg_adapter_74);
4808
4800
  return ret;
4809
4801
  };
4810
4802
  imports.wbg.__wbindgen_closure_wrapper71547 = function(arg0, arg1, arg2) {
4811
- const ret = makeMutClosure(arg0, arg1, 53945, __wbg_adapter_77);
4803
+ const ret = makeMutClosure(arg0, arg1, 53946, __wbg_adapter_77);
4812
4804
  return ret;
4813
4805
  };
4814
- imports.wbg.__wbindgen_closure_wrapper76110 = function(arg0, arg1, arg2) {
4815
- const ret = makeMutClosure(arg0, arg1, 57177, __wbg_adapter_84);
4806
+ imports.wbg.__wbindgen_closure_wrapper71549 = function(arg0, arg1, arg2) {
4807
+ const ret = makeMutClosure(arg0, arg1, 53946, __wbg_adapter_77);
4816
4808
  return ret;
4817
4809
  };
4818
- imports.wbg.__wbindgen_closure_wrapper77145 = function(arg0, arg1, arg2) {
4819
- const ret = makeMutClosure(arg0, arg1, 57558, __wbg_adapter_87);
4810
+ imports.wbg.__wbindgen_closure_wrapper71551 = function(arg0, arg1, arg2) {
4811
+ const ret = makeMutClosure(arg0, arg1, 53946, __wbg_adapter_77);
4820
4812
  return ret;
4821
4813
  };
4822
- imports.wbg.__wbindgen_closure_wrapper79290 = function(arg0, arg1, arg2) {
4823
- const ret = makeMutClosure(arg0, arg1, 59015, __wbg_adapter_90);
4814
+ imports.wbg.__wbindgen_closure_wrapper76114 = function(arg0, arg1, arg2) {
4815
+ const ret = makeMutClosure(arg0, arg1, 57178, __wbg_adapter_84);
4824
4816
  return ret;
4825
4817
  };
4826
- imports.wbg.__wbindgen_closure_wrapper79292 = function(arg0, arg1, arg2) {
4827
- const ret = makeMutClosure(arg0, arg1, 59015, __wbg_adapter_93);
4818
+ imports.wbg.__wbindgen_closure_wrapper77149 = function(arg0, arg1, arg2) {
4819
+ const ret = makeMutClosure(arg0, arg1, 57559, __wbg_adapter_87);
4828
4820
  return ret;
4829
4821
  };
4830
4822
  imports.wbg.__wbindgen_closure_wrapper79294 = function(arg0, arg1, arg2) {
4831
- const ret = makeMutClosure(arg0, arg1, 59015, __wbg_adapter_90);
4823
+ const ret = makeMutClosure(arg0, arg1, 59016, __wbg_adapter_90);
4832
4824
  return ret;
4833
4825
  };
4834
4826
  imports.wbg.__wbindgen_closure_wrapper79296 = function(arg0, arg1, arg2) {
4835
- const ret = makeMutClosure(arg0, arg1, 59015, __wbg_adapter_90);
4827
+ const ret = makeMutClosure(arg0, arg1, 59016, __wbg_adapter_93);
4836
4828
  return ret;
4837
4829
  };
4838
4830
  imports.wbg.__wbindgen_closure_wrapper79298 = function(arg0, arg1, arg2) {
4839
- const ret = makeMutClosure(arg0, arg1, 59015, __wbg_adapter_90);
4831
+ const ret = makeMutClosure(arg0, arg1, 59016, __wbg_adapter_90);
4840
4832
  return ret;
4841
4833
  };
4842
4834
  imports.wbg.__wbindgen_closure_wrapper79300 = function(arg0, arg1, arg2) {
4843
- const ret = makeMutClosure(arg0, arg1, 59015, __wbg_adapter_90);
4835
+ const ret = makeMutClosure(arg0, arg1, 59016, __wbg_adapter_90);
4844
4836
  return ret;
4845
4837
  };
4846
4838
  imports.wbg.__wbindgen_closure_wrapper79302 = function(arg0, arg1, arg2) {
4847
- const ret = makeMutClosure(arg0, arg1, 59015, __wbg_adapter_90);
4839
+ const ret = makeMutClosure(arg0, arg1, 59016, __wbg_adapter_90);
4848
4840
  return ret;
4849
4841
  };
4850
4842
  imports.wbg.__wbindgen_closure_wrapper79304 = function(arg0, arg1, arg2) {
4851
- const ret = makeMutClosure(arg0, arg1, 59015, __wbg_adapter_90);
4843
+ const ret = makeMutClosure(arg0, arg1, 59016, __wbg_adapter_90);
4852
4844
  return ret;
4853
4845
  };
4854
4846
  imports.wbg.__wbindgen_closure_wrapper79306 = function(arg0, arg1, arg2) {
4855
- const ret = makeMutClosure(arg0, arg1, 59015, __wbg_adapter_108);
4847
+ const ret = makeMutClosure(arg0, arg1, 59016, __wbg_adapter_90);
4848
+ return ret;
4849
+ };
4850
+ imports.wbg.__wbindgen_closure_wrapper79308 = function(arg0, arg1, arg2) {
4851
+ const ret = makeMutClosure(arg0, arg1, 59016, __wbg_adapter_90);
4852
+ return ret;
4853
+ };
4854
+ imports.wbg.__wbindgen_closure_wrapper79310 = function(arg0, arg1, arg2) {
4855
+ const ret = makeMutClosure(arg0, arg1, 59016, __wbg_adapter_108);
4856
4856
  return ret;
4857
4857
  };
4858
4858
  imports.wbg.__wbindgen_debug_string = function(arg0, arg1) {
@@ -5252,7 +5252,7 @@ function __wbg_get_imports() {
5252
5252
  }
5253
5253
 
5254
5254
  function __wbg_init_memory(imports, memory) {
5255
- imports.wbg.memory = memory || new WebAssembly.Memory({initial:1013,maximum:65536,shared:true});
5255
+ imports.wbg.memory = memory || new WebAssembly.Memory({initial:1014,maximum:65536,shared:true});
5256
5256
  }
5257
5257
 
5258
5258
  function __wbg_finalize_init(instance, module, thread_stack_size) {
Binary file
@@ -147,18 +147,18 @@ export const __wbindgen_export_7: WebAssembly.Table;
147
147
  export const __externref_table_dealloc: (a: number) => void;
148
148
  export const __externref_drop_slice: (a: number, b: number) => void;
149
149
  export const closure15510_externref_shim: (a: number, b: number, c: number, d: any) => void;
150
- export const closure41155_externref_shim: (a: number, b: number, c: any) => void;
151
- export const closure50290_externref_shim: (a: number, b: number, c: any) => void;
150
+ export const closure41156_externref_shim: (a: number, b: number, c: any) => void;
151
+ export const closure50291_externref_shim: (a: number, b: number, c: any) => void;
152
152
  export const _dyn_core_f2710c7f87f75ba1___ops__function__FnMut_____Output______as_wasm_bindgen_654c7ee7fd766678___closure__WasmClosure___describe__invoke______: (a: number, b: number) => void;
153
153
  export const _dyn_core_f2710c7f87f75ba1___ops__function__FnMut_____Output______as_wasm_bindgen_654c7ee7fd766678___closure__WasmClosure___describe__invoke______15: (a: number, b: number) => void;
154
- export const closure53944_externref_shim: (a: number, b: number, c: any) => void;
154
+ export const closure53945_externref_shim: (a: number, b: number, c: any) => void;
155
155
  export const _dyn_core_f2710c7f87f75ba1___ops__function__FnMut_____Output______as_wasm_bindgen_654c7ee7fd766678___closure__WasmClosure___describe__invoke______17: (a: number, b: number) => void;
156
156
  export const _dyn_core_f2710c7f87f75ba1___ops__function__FnMut_____Output______as_wasm_bindgen_654c7ee7fd766678___closure__WasmClosure___describe__invoke______18: (a: number, b: number) => void;
157
- export const closure59014_externref_shim: (a: number, b: number, c: any) => void;
158
- export const closure59018_externref_shim: (a: number, b: number, c: any, d: any) => void;
157
+ export const closure59015_externref_shim: (a: number, b: number, c: any) => void;
158
+ export const closure59019_externref_shim: (a: number, b: number, c: any, d: any) => void;
159
159
  export const _dyn_core_f2710c7f87f75ba1___ops__function__FnMut_____Output______as_wasm_bindgen_654c7ee7fd766678___closure__WasmClosure___describe__invoke______21: (a: number, b: number) => void;
160
- export const closure118969_externref_shim: (a: number, b: number, c: any) => void;
161
- export const closure134232_externref_shim: (a: number, b: number, c: any) => void;
162
- export const closure137125_externref_shim: (a: number, b: number, c: any, d: any) => void;
160
+ export const closure118970_externref_shim: (a: number, b: number, c: any) => void;
161
+ export const closure134233_externref_shim: (a: number, b: number, c: any) => void;
162
+ export const closure137126_externref_shim: (a: number, b: number, c: any, d: any) => void;
163
163
  export const __wbindgen_thread_destroy: (a?: number, b?: number, c?: number) => void;
164
164
  export const __wbindgen_start: (a: number) => void;