porffor 0.2.0-f2bbe1f → 0.2.0-f7ea197

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.
Files changed (52) hide show
  1. package/LICENSE +20 -20
  2. package/README.md +154 -89
  3. package/asur/README.md +2 -0
  4. package/asur/index.js +1262 -0
  5. package/byg/index.js +237 -0
  6. package/compiler/2c.js +317 -72
  7. package/compiler/{sections.js → assemble.js} +63 -15
  8. package/compiler/builtins/annexb_string.js +72 -0
  9. package/compiler/builtins/annexb_string.ts +19 -0
  10. package/compiler/builtins/array.ts +145 -0
  11. package/compiler/builtins/base64.ts +151 -0
  12. package/compiler/builtins/crypto.ts +120 -0
  13. package/compiler/builtins/date.ts +1370 -0
  14. package/compiler/builtins/escape.ts +141 -0
  15. package/compiler/builtins/int.ts +147 -0
  16. package/compiler/builtins/number.ts +527 -0
  17. package/compiler/builtins/porffor.d.ts +42 -0
  18. package/compiler/builtins/string.ts +1055 -0
  19. package/compiler/builtins/tostring.ts +45 -0
  20. package/compiler/builtins.js +470 -269
  21. package/compiler/{codeGen.js → codegen.js} +1098 -392
  22. package/compiler/embedding.js +22 -22
  23. package/compiler/encoding.js +108 -10
  24. package/compiler/generated_builtins.js +1262 -0
  25. package/compiler/index.js +36 -34
  26. package/compiler/log.js +6 -3
  27. package/compiler/opt.js +51 -36
  28. package/compiler/parse.js +36 -28
  29. package/compiler/precompile.js +123 -0
  30. package/compiler/prefs.js +27 -0
  31. package/compiler/prototype.js +177 -37
  32. package/compiler/types.js +37 -0
  33. package/compiler/wasmSpec.js +30 -7
  34. package/compiler/wrap.js +56 -40
  35. package/fib.js +10 -0
  36. package/package.json +9 -5
  37. package/porf +4 -0
  38. package/rhemyn/compile.js +46 -27
  39. package/rhemyn/parse.js +322 -320
  40. package/rhemyn/test/parse.js +58 -58
  41. package/runner/compare.js +34 -34
  42. package/runner/debug.js +122 -0
  43. package/runner/index.js +91 -11
  44. package/runner/profiler.js +102 -0
  45. package/runner/repl.js +42 -9
  46. package/runner/sizes.js +37 -37
  47. package/compiler/builtins/base64.js +0 -92
  48. package/runner/info.js +0 -89
  49. package/runner/profile.js +0 -46
  50. package/runner/results.json +0 -1
  51. package/runner/transform.js +0 -15
  52. package/util/enum.js +0 -20
@@ -0,0 +1,1262 @@
1
+ // autogenerated by compiler/precompile.js
2
+ import { number } from './embedding.js';
3
+
4
+ export const BuiltinFuncs = function() {
5
+ this.__String_prototype_big = {
6
+ wasm: (scope, { allocPage, builtin }) => [...number(allocPage(scope, '__String_prototype_big | string: out', 'i16') * pageSize, 127),[34,2],[65,10],[106],[33,3],[32,0],[33,4],[32,0],[40,1,0],[33,5],[32,4],[32,5],[65,2],[108],[106],[33,6],[3,64],[32,4],[32,6],[72],[4,64],[32,4],[47,0,4],[33,7],[32,3],[32,7],[59,0,4],[32,4],[65,2],[106],[33,4],[32,3],[65,2],[106],[33,3],[12,1],[11],[11],[32,3],[65,60],[59,0,4],[32,3],[65,47],[59,0,6],[32,3],[65,226,0],[59,0,8],[32,3],[65,233,0],[59,0,10],[32,3],[65,231,0],[59,0,12],[32,3],[65,62],[59,0,14],[32,2],[32,5],[65,11],[106],[34,8],[54,1,0],[32,2],[65,2],[15]],
7
+ params: [127,127],
8
+ typedParams: true,
9
+ returns: [127,127],
10
+ typedReturns: true,
11
+ locals: [127,127,127,127,127,127,127],
12
+ localNames: ["_this","_this#type","out","outPtr","thisPtr","thisLen","endPtr","chr","__length_setter_tmp"],
13
+ data: [{"offset":0,"bytes":[5,0,0,0,60,0,98,0,105,0,103,0,62,0]}],
14
+ };
15
+ this.___bytestring_prototype_big = {
16
+ wasm: (scope, { allocPage, builtin }) => [...number(allocPage(scope, '___bytestring_prototype_big | bytestring: out', 'i8') * pageSize, 127),[34,2],[65,5],[106],[33,3],[32,0],[33,4],[32,0],[40,1,0],[33,5],[32,4],[32,5],[106],[33,6],[3,64],[32,4],[32,6],[72],[4,64],[32,4],[32,4],[65,1],[106],[33,4],[45,0,4],[33,7],[32,3],[32,3],[65,1],[106],[33,3],[32,7],[58,0,4],[12,1],[11],[11],[32,3],[65,60],[58,0,4],[32,3],[65,47],[58,0,5],[32,3],[65,226,0],[58,0,6],[32,3],[65,233,0],[58,0,7],[32,3],[65,231,0],[58,0,8],[32,3],[65,62],[58,0,9],[32,2],[32,5],[65,11],[106],[34,8],[54,1,0],[32,2],[65,18],[15]],
17
+ params: [127,127],
18
+ typedParams: true,
19
+ returns: [127,127],
20
+ typedReturns: true,
21
+ locals: [127,127,127,127,127,127,127],
22
+ localNames: ["_this","_this#type","out","outPtr","thisPtr","thisLen","endPtr","chr","__length_setter_tmp"],
23
+ data: [{"offset":0,"bytes":[5,0,0,0,60,98,105,103,62]}],
24
+ };
25
+ this.__String_prototype_blink = {
26
+ wasm: (scope, { allocPage, builtin }) => [...number(allocPage(scope, '__String_prototype_blink | string: out', 'i16') * pageSize, 127),[34,2],[65,14],[106],[33,3],[32,0],[33,4],[32,0],[40,1,0],[33,5],[32,4],[32,5],[65,2],[108],[106],[33,6],[3,64],[32,4],[32,6],[72],[4,64],[32,4],[47,0,4],[33,7],[32,3],[32,7],[59,0,4],[32,4],[65,2],[106],[33,4],[32,3],[65,2],[106],[33,3],[12,1],[11],[11],[32,3],[65,60],[59,0,4],[32,3],[65,47],[59,0,6],[32,3],[65,226,0],[59,0,8],[32,3],[65,236,0],[59,0,10],[32,3],[65,233,0],[59,0,12],[32,3],[65,238,0],[59,0,14],[32,3],[65,235,0],[59,0,16],[32,3],[65,62],[59,0,18],[32,2],[32,5],[65,15],[106],[34,8],[54,1,0],[32,2],[65,2],[15]],
27
+ params: [127,127],
28
+ typedParams: true,
29
+ returns: [127,127],
30
+ typedReturns: true,
31
+ locals: [127,127,127,127,127,127,127],
32
+ localNames: ["_this","_this#type","out","outPtr","thisPtr","thisLen","endPtr","chr","__length_setter_tmp"],
33
+ data: [{"offset":0,"bytes":[7,0,0,0,60,0,98,0,108,0,105,0,110,0,107,0,62,0]}],
34
+ };
35
+ this.___bytestring_prototype_blink = {
36
+ wasm: (scope, { allocPage, builtin }) => [...number(allocPage(scope, '___bytestring_prototype_blink | bytestring: out', 'i8') * pageSize, 127),[34,2],[65,7],[106],[33,3],[32,0],[33,4],[32,0],[40,1,0],[33,5],[32,4],[32,5],[106],[33,6],[3,64],[32,4],[32,6],[72],[4,64],[32,4],[32,4],[65,1],[106],[33,4],[45,0,4],[33,7],[32,3],[32,3],[65,1],[106],[33,3],[32,7],[58,0,4],[12,1],[11],[11],[32,3],[65,60],[58,0,4],[32,3],[65,47],[58,0,5],[32,3],[65,226,0],[58,0,6],[32,3],[65,236,0],[58,0,7],[32,3],[65,233,0],[58,0,8],[32,3],[65,238,0],[58,0,9],[32,3],[65,235,0],[58,0,10],[32,3],[65,62],[58,0,11],[32,2],[32,5],[65,15],[106],[34,8],[54,1,0],[32,2],[65,18],[15]],
37
+ params: [127,127],
38
+ typedParams: true,
39
+ returns: [127,127],
40
+ typedReturns: true,
41
+ locals: [127,127,127,127,127,127,127],
42
+ localNames: ["_this","_this#type","out","outPtr","thisPtr","thisLen","endPtr","chr","__length_setter_tmp"],
43
+ data: [{"offset":0,"bytes":[7,0,0,0,60,98,108,105,110,107,62]}],
44
+ };
45
+ this.__String_prototype_bold = {
46
+ wasm: (scope, { allocPage, builtin }) => [...number(allocPage(scope, '__String_prototype_bold | string: out', 'i16') * pageSize, 127),[34,2],[65,6],[106],[33,3],[32,0],[33,4],[32,0],[40,1,0],[33,5],[32,4],[32,5],[65,2],[108],[106],[33,6],[3,64],[32,4],[32,6],[72],[4,64],[32,4],[47,0,4],[33,7],[32,3],[32,7],[59,0,4],[32,4],[65,2],[106],[33,4],[32,3],[65,2],[106],[33,3],[12,1],[11],[11],[32,3],[65,60],[59,0,4],[32,3],[65,47],[59,0,6],[32,3],[65,226,0],[59,0,8],[32,3],[65,62],[59,0,10],[32,2],[32,5],[65,7],[106],[34,8],[54,1,0],[32,2],[65,2],[15]],
47
+ params: [127,127],
48
+ typedParams: true,
49
+ returns: [127,127],
50
+ typedReturns: true,
51
+ locals: [127,127,127,127,127,127,127],
52
+ localNames: ["_this","_this#type","out","outPtr","thisPtr","thisLen","endPtr","chr","__length_setter_tmp"],
53
+ data: [{"offset":0,"bytes":[3,0,0,0,60,0,98,0,62,0]}],
54
+ };
55
+ this.___bytestring_prototype_bold = {
56
+ wasm: (scope, { allocPage, builtin }) => [...number(allocPage(scope, '___bytestring_prototype_bold | bytestring: out', 'i8') * pageSize, 127),[34,2],[65,3],[106],[33,3],[32,0],[33,4],[32,0],[40,1,0],[33,5],[32,4],[32,5],[106],[33,6],[3,64],[32,4],[32,6],[72],[4,64],[32,4],[32,4],[65,1],[106],[33,4],[45,0,4],[33,7],[32,3],[32,3],[65,1],[106],[33,3],[32,7],[58,0,4],[12,1],[11],[11],[32,3],[65,60],[58,0,4],[32,3],[65,47],[58,0,5],[32,3],[65,226,0],[58,0,6],[32,3],[65,62],[58,0,7],[32,2],[32,5],[65,7],[106],[34,8],[54,1,0],[32,2],[65,18],[15]],
57
+ params: [127,127],
58
+ typedParams: true,
59
+ returns: [127,127],
60
+ typedReturns: true,
61
+ locals: [127,127,127,127,127,127,127],
62
+ localNames: ["_this","_this#type","out","outPtr","thisPtr","thisLen","endPtr","chr","__length_setter_tmp"],
63
+ data: [{"offset":0,"bytes":[3,0,0,0,60,98,62]}],
64
+ };
65
+ this.__String_prototype_fixed = {
66
+ wasm: (scope, { allocPage, builtin }) => [...number(allocPage(scope, '__String_prototype_fixed | string: out', 'i16') * pageSize, 127),[34,2],[65,8],[106],[33,3],[32,0],[33,4],[32,0],[40,1,0],[33,5],[32,4],[32,5],[65,2],[108],[106],[33,6],[3,64],[32,4],[32,6],[72],[4,64],[32,4],[47,0,4],[33,7],[32,3],[32,7],[59,0,4],[32,4],[65,2],[106],[33,4],[32,3],[65,2],[106],[33,3],[12,1],[11],[11],[32,3],[65,60],[59,0,4],[32,3],[65,47],[59,0,6],[32,3],[65,244,0],[59,0,8],[32,3],[65,244,0],[59,0,10],[32,3],[65,62],[59,0,12],[32,2],[32,5],[65,9],[106],[34,8],[54,1,0],[32,2],[65,2],[15]],
67
+ params: [127,127],
68
+ typedParams: true,
69
+ returns: [127,127],
70
+ typedReturns: true,
71
+ locals: [127,127,127,127,127,127,127],
72
+ localNames: ["_this","_this#type","out","outPtr","thisPtr","thisLen","endPtr","chr","__length_setter_tmp"],
73
+ data: [{"offset":0,"bytes":[4,0,0,0,60,0,116,0,116,0,62,0]}],
74
+ };
75
+ this.___bytestring_prototype_fixed = {
76
+ wasm: (scope, { allocPage, builtin }) => [...number(allocPage(scope, '___bytestring_prototype_fixed | bytestring: out', 'i8') * pageSize, 127),[34,2],[65,4],[106],[33,3],[32,0],[33,4],[32,0],[40,1,0],[33,5],[32,4],[32,5],[106],[33,6],[3,64],[32,4],[32,6],[72],[4,64],[32,4],[32,4],[65,1],[106],[33,4],[45,0,4],[33,7],[32,3],[32,3],[65,1],[106],[33,3],[32,7],[58,0,4],[12,1],[11],[11],[32,3],[65,60],[58,0,4],[32,3],[65,47],[58,0,5],[32,3],[65,244,0],[58,0,6],[32,3],[65,244,0],[58,0,7],[32,3],[65,62],[58,0,8],[32,2],[32,5],[65,9],[106],[34,8],[54,1,0],[32,2],[65,18],[15]],
77
+ params: [127,127],
78
+ typedParams: true,
79
+ returns: [127,127],
80
+ typedReturns: true,
81
+ locals: [127,127,127,127,127,127,127],
82
+ localNames: ["_this","_this#type","out","outPtr","thisPtr","thisLen","endPtr","chr","__length_setter_tmp"],
83
+ data: [{"offset":0,"bytes":[4,0,0,0,60,116,116,62]}],
84
+ };
85
+ this.__String_prototype_italics = {
86
+ wasm: (scope, { allocPage, builtin }) => [...number(allocPage(scope, '__String_prototype_italics | string: out', 'i16') * pageSize, 127),[34,2],[65,6],[106],[33,3],[32,0],[33,4],[32,0],[40,1,0],[33,5],[32,4],[32,5],[65,2],[108],[106],[33,6],[3,64],[32,4],[32,6],[72],[4,64],[32,4],[47,0,4],[33,7],[32,3],[32,7],[59,0,4],[32,4],[65,2],[106],[33,4],[32,3],[65,2],[106],[33,3],[12,1],[11],[11],[32,3],[65,60],[59,0,4],[32,3],[65,47],[59,0,6],[32,3],[65,233,0],[59,0,8],[32,3],[65,62],[59,0,10],[32,2],[32,5],[65,7],[106],[34,8],[54,1,0],[32,2],[65,2],[15]],
87
+ params: [127,127],
88
+ typedParams: true,
89
+ returns: [127,127],
90
+ typedReturns: true,
91
+ locals: [127,127,127,127,127,127,127],
92
+ localNames: ["_this","_this#type","out","outPtr","thisPtr","thisLen","endPtr","chr","__length_setter_tmp"],
93
+ data: [{"offset":0,"bytes":[3,0,0,0,60,0,105,0,62,0]}],
94
+ };
95
+ this.___bytestring_prototype_italics = {
96
+ wasm: (scope, { allocPage, builtin }) => [...number(allocPage(scope, '___bytestring_prototype_italics | bytestring: out', 'i8') * pageSize, 127),[34,2],[65,3],[106],[33,3],[32,0],[33,4],[32,0],[40,1,0],[33,5],[32,4],[32,5],[106],[33,6],[3,64],[32,4],[32,6],[72],[4,64],[32,4],[32,4],[65,1],[106],[33,4],[45,0,4],[33,7],[32,3],[32,3],[65,1],[106],[33,3],[32,7],[58,0,4],[12,1],[11],[11],[32,3],[65,60],[58,0,4],[32,3],[65,47],[58,0,5],[32,3],[65,233,0],[58,0,6],[32,3],[65,62],[58,0,7],[32,2],[32,5],[65,7],[106],[34,8],[54,1,0],[32,2],[65,18],[15]],
97
+ params: [127,127],
98
+ typedParams: true,
99
+ returns: [127,127],
100
+ typedReturns: true,
101
+ locals: [127,127,127,127,127,127,127],
102
+ localNames: ["_this","_this#type","out","outPtr","thisPtr","thisLen","endPtr","chr","__length_setter_tmp"],
103
+ data: [{"offset":0,"bytes":[3,0,0,0,60,105,62]}],
104
+ };
105
+ this.__String_prototype_small = {
106
+ wasm: (scope, { allocPage, builtin }) => [...number(allocPage(scope, '__String_prototype_small | string: out', 'i16') * pageSize, 127),[34,2],[65,14],[106],[33,3],[32,0],[33,4],[32,0],[40,1,0],[33,5],[32,4],[32,5],[65,2],[108],[106],[33,6],[3,64],[32,4],[32,6],[72],[4,64],[32,4],[47,0,4],[33,7],[32,3],[32,7],[59,0,4],[32,4],[65,2],[106],[33,4],[32,3],[65,2],[106],[33,3],[12,1],[11],[11],[32,3],[65,60],[59,0,4],[32,3],[65,47],[59,0,6],[32,3],[65,243,0],[59,0,8],[32,3],[65,237,0],[59,0,10],[32,3],[65,225,0],[59,0,12],[32,3],[65,236,0],[59,0,14],[32,3],[65,236,0],[59,0,16],[32,3],[65,62],[59,0,18],[32,2],[32,5],[65,15],[106],[34,8],[54,1,0],[32,2],[65,2],[15]],
107
+ params: [127,127],
108
+ typedParams: true,
109
+ returns: [127,127],
110
+ typedReturns: true,
111
+ locals: [127,127,127,127,127,127,127],
112
+ localNames: ["_this","_this#type","out","outPtr","thisPtr","thisLen","endPtr","chr","__length_setter_tmp"],
113
+ data: [{"offset":0,"bytes":[7,0,0,0,60,0,115,0,109,0,97,0,108,0,108,0,62,0]}],
114
+ };
115
+ this.___bytestring_prototype_small = {
116
+ wasm: (scope, { allocPage, builtin }) => [...number(allocPage(scope, '___bytestring_prototype_small | bytestring: out', 'i8') * pageSize, 127),[34,2],[65,7],[106],[33,3],[32,0],[33,4],[32,0],[40,1,0],[33,5],[32,4],[32,5],[106],[33,6],[3,64],[32,4],[32,6],[72],[4,64],[32,4],[32,4],[65,1],[106],[33,4],[45,0,4],[33,7],[32,3],[32,3],[65,1],[106],[33,3],[32,7],[58,0,4],[12,1],[11],[11],[32,3],[65,60],[58,0,4],[32,3],[65,47],[58,0,5],[32,3],[65,243,0],[58,0,6],[32,3],[65,237,0],[58,0,7],[32,3],[65,225,0],[58,0,8],[32,3],[65,236,0],[58,0,9],[32,3],[65,236,0],[58,0,10],[32,3],[65,62],[58,0,11],[32,2],[32,5],[65,15],[106],[34,8],[54,1,0],[32,2],[65,18],[15]],
117
+ params: [127,127],
118
+ typedParams: true,
119
+ returns: [127,127],
120
+ typedReturns: true,
121
+ locals: [127,127,127,127,127,127,127],
122
+ localNames: ["_this","_this#type","out","outPtr","thisPtr","thisLen","endPtr","chr","__length_setter_tmp"],
123
+ data: [{"offset":0,"bytes":[7,0,0,0,60,115,109,97,108,108,62]}],
124
+ };
125
+ this.__String_prototype_strike = {
126
+ wasm: (scope, { allocPage, builtin }) => [...number(allocPage(scope, '__String_prototype_strike | string: out', 'i16') * pageSize, 127),[34,2],[65,16],[106],[33,3],[32,0],[33,4],[32,0],[40,1,0],[33,5],[32,4],[32,5],[65,2],[108],[106],[33,6],[3,64],[32,4],[32,6],[72],[4,64],[32,4],[47,0,4],[33,7],[32,3],[32,7],[59,0,4],[32,4],[65,2],[106],[33,4],[32,3],[65,2],[106],[33,3],[12,1],[11],[11],[32,3],[65,60],[59,0,4],[32,3],[65,47],[59,0,6],[32,3],[65,243,0],[59,0,8],[32,3],[65,244,0],[59,0,10],[32,3],[65,242,0],[59,0,12],[32,3],[65,233,0],[59,0,14],[32,3],[65,235,0],[59,0,16],[32,3],[65,229,0],[59,0,18],[32,3],[65,62],[59,0,20],[32,2],[32,5],[65,17],[106],[34,8],[54,1,0],[32,2],[65,2],[15]],
127
+ params: [127,127],
128
+ typedParams: true,
129
+ returns: [127,127],
130
+ typedReturns: true,
131
+ locals: [127,127,127,127,127,127,127],
132
+ localNames: ["_this","_this#type","out","outPtr","thisPtr","thisLen","endPtr","chr","__length_setter_tmp"],
133
+ data: [{"offset":0,"bytes":[8,0,0,0,60,0,115,0,116,0,114,0,105,0,107,0,101,0,62,0]}],
134
+ };
135
+ this.___bytestring_prototype_strike = {
136
+ wasm: (scope, { allocPage, builtin }) => [...number(allocPage(scope, '___bytestring_prototype_strike | bytestring: out', 'i8') * pageSize, 127),[34,2],[65,8],[106],[33,3],[32,0],[33,4],[32,0],[40,1,0],[33,5],[32,4],[32,5],[106],[33,6],[3,64],[32,4],[32,6],[72],[4,64],[32,4],[32,4],[65,1],[106],[33,4],[45,0,4],[33,7],[32,3],[32,3],[65,1],[106],[33,3],[32,7],[58,0,4],[12,1],[11],[11],[32,3],[65,60],[58,0,4],[32,3],[65,47],[58,0,5],[32,3],[65,243,0],[58,0,6],[32,3],[65,244,0],[58,0,7],[32,3],[65,242,0],[58,0,8],[32,3],[65,233,0],[58,0,9],[32,3],[65,235,0],[58,0,10],[32,3],[65,229,0],[58,0,11],[32,3],[65,62],[58,0,12],[32,2],[32,5],[65,17],[106],[34,8],[54,1,0],[32,2],[65,18],[15]],
137
+ params: [127,127],
138
+ typedParams: true,
139
+ returns: [127,127],
140
+ typedReturns: true,
141
+ locals: [127,127,127,127,127,127,127],
142
+ localNames: ["_this","_this#type","out","outPtr","thisPtr","thisLen","endPtr","chr","__length_setter_tmp"],
143
+ data: [{"offset":0,"bytes":[8,0,0,0,60,115,116,114,105,107,101,62]}],
144
+ };
145
+ this.__String_prototype_sub = {
146
+ wasm: (scope, { allocPage, builtin }) => [...number(allocPage(scope, '__String_prototype_sub | string: out', 'i16') * pageSize, 127),[34,2],[65,10],[106],[33,3],[32,0],[33,4],[32,0],[40,1,0],[33,5],[32,4],[32,5],[65,2],[108],[106],[33,6],[3,64],[32,4],[32,6],[72],[4,64],[32,4],[47,0,4],[33,7],[32,3],[32,7],[59,0,4],[32,4],[65,2],[106],[33,4],[32,3],[65,2],[106],[33,3],[12,1],[11],[11],[32,3],[65,60],[59,0,4],[32,3],[65,47],[59,0,6],[32,3],[65,243,0],[59,0,8],[32,3],[65,245,0],[59,0,10],[32,3],[65,226,0],[59,0,12],[32,3],[65,62],[59,0,14],[32,2],[32,5],[65,11],[106],[34,8],[54,1,0],[32,2],[65,2],[15]],
147
+ params: [127,127],
148
+ typedParams: true,
149
+ returns: [127,127],
150
+ typedReturns: true,
151
+ locals: [127,127,127,127,127,127,127],
152
+ localNames: ["_this","_this#type","out","outPtr","thisPtr","thisLen","endPtr","chr","__length_setter_tmp"],
153
+ data: [{"offset":0,"bytes":[5,0,0,0,60,0,115,0,117,0,98,0,62,0]}],
154
+ };
155
+ this.___bytestring_prototype_sub = {
156
+ wasm: (scope, { allocPage, builtin }) => [...number(allocPage(scope, '___bytestring_prototype_sub | bytestring: out', 'i8') * pageSize, 127),[34,2],[65,5],[106],[33,3],[32,0],[33,4],[32,0],[40,1,0],[33,5],[32,4],[32,5],[106],[33,6],[3,64],[32,4],[32,6],[72],[4,64],[32,4],[32,4],[65,1],[106],[33,4],[45,0,4],[33,7],[32,3],[32,3],[65,1],[106],[33,3],[32,7],[58,0,4],[12,1],[11],[11],[32,3],[65,60],[58,0,4],[32,3],[65,47],[58,0,5],[32,3],[65,243,0],[58,0,6],[32,3],[65,245,0],[58,0,7],[32,3],[65,226,0],[58,0,8],[32,3],[65,62],[58,0,9],[32,2],[32,5],[65,11],[106],[34,8],[54,1,0],[32,2],[65,18],[15]],
157
+ params: [127,127],
158
+ typedParams: true,
159
+ returns: [127,127],
160
+ typedReturns: true,
161
+ locals: [127,127,127,127,127,127,127],
162
+ localNames: ["_this","_this#type","out","outPtr","thisPtr","thisLen","endPtr","chr","__length_setter_tmp"],
163
+ data: [{"offset":0,"bytes":[5,0,0,0,60,115,117,98,62]}],
164
+ };
165
+ this.__String_prototype_sup = {
166
+ wasm: (scope, { allocPage, builtin }) => [...number(allocPage(scope, '__String_prototype_sup | string: out', 'i16') * pageSize, 127),[34,2],[65,10],[106],[33,3],[32,0],[33,4],[32,0],[40,1,0],[33,5],[32,4],[32,5],[65,2],[108],[106],[33,6],[3,64],[32,4],[32,6],[72],[4,64],[32,4],[47,0,4],[33,7],[32,3],[32,7],[59,0,4],[32,4],[65,2],[106],[33,4],[32,3],[65,2],[106],[33,3],[12,1],[11],[11],[32,3],[65,60],[59,0,4],[32,3],[65,47],[59,0,6],[32,3],[65,243,0],[59,0,8],[32,3],[65,245,0],[59,0,10],[32,3],[65,240,0],[59,0,12],[32,3],[65,62],[59,0,14],[32,2],[32,5],[65,11],[106],[34,8],[54,1,0],[32,2],[65,2],[15]],
167
+ params: [127,127],
168
+ typedParams: true,
169
+ returns: [127,127],
170
+ typedReturns: true,
171
+ locals: [127,127,127,127,127,127,127],
172
+ localNames: ["_this","_this#type","out","outPtr","thisPtr","thisLen","endPtr","chr","__length_setter_tmp"],
173
+ data: [{"offset":0,"bytes":[5,0,0,0,60,0,115,0,117,0,112,0,62,0]}],
174
+ };
175
+ this.___bytestring_prototype_sup = {
176
+ wasm: (scope, { allocPage, builtin }) => [...number(allocPage(scope, '___bytestring_prototype_sup | bytestring: out', 'i8') * pageSize, 127),[34,2],[65,5],[106],[33,3],[32,0],[33,4],[32,0],[40,1,0],[33,5],[32,4],[32,5],[106],[33,6],[3,64],[32,4],[32,6],[72],[4,64],[32,4],[32,4],[65,1],[106],[33,4],[45,0,4],[33,7],[32,3],[32,3],[65,1],[106],[33,3],[32,7],[58,0,4],[12,1],[11],[11],[32,3],[65,60],[58,0,4],[32,3],[65,47],[58,0,5],[32,3],[65,243,0],[58,0,6],[32,3],[65,245,0],[58,0,7],[32,3],[65,240,0],[58,0,8],[32,3],[65,62],[58,0,9],[32,2],[32,5],[65,11],[106],[34,8],[54,1,0],[32,2],[65,18],[15]],
177
+ params: [127,127],
178
+ typedParams: true,
179
+ returns: [127,127],
180
+ typedReturns: true,
181
+ locals: [127,127,127,127,127,127,127],
182
+ localNames: ["_this","_this#type","out","outPtr","thisPtr","thisLen","endPtr","chr","__length_setter_tmp"],
183
+ data: [{"offset":0,"bytes":[5,0,0,0,60,115,117,112,62]}],
184
+ };
185
+ this.__String_prototype_trimLeft = {
186
+ wasm: (scope, { allocPage, builtin }) => [[32,0],[65,2],[16, builtin('__String_prototype_trimStart')],[34,2],[15]],
187
+ params: [127,127],
188
+ typedParams: true,
189
+ returns: [127,127],
190
+ typedReturns: true,
191
+ locals: [127],
192
+ localNames: ["_this","_this#type","#last_type"],
193
+ };
194
+ this.___bytestring_prototype_trimLeft = {
195
+ wasm: (scope, { allocPage, builtin }) => [[32,0],[65,2],[16, builtin('___bytestring_prototype_trimStart')],[34,2],[15]],
196
+ params: [127,127],
197
+ typedParams: true,
198
+ returns: [127,127],
199
+ typedReturns: true,
200
+ locals: [127],
201
+ localNames: ["_this","_this#type","#last_type"],
202
+ };
203
+ this.__String_prototype_trimRight = {
204
+ wasm: (scope, { allocPage, builtin }) => [[32,0],[65,2],[16, builtin('__String_prototype_trimEnd')],[34,2],[15]],
205
+ params: [127,127],
206
+ typedParams: true,
207
+ returns: [127,127],
208
+ typedReturns: true,
209
+ locals: [127],
210
+ localNames: ["_this","_this#type","#last_type"],
211
+ };
212
+ this.___bytestring_prototype_trimEnd = {
213
+ wasm: (scope, { allocPage, builtin }) => [[65,[0]],[8,0],[65,0],[65,0],[15]],
214
+ params: [127,127],
215
+ typedParams: true,
216
+ returns: [127,127],
217
+ typedReturns: true,
218
+ locals: [],
219
+ localNames: ["_this","_this#type"],
220
+ exceptions: [{"constructor":"ReferenceError","message":".bytestring.prototype.trimRight is not defined","exceptId":0}],
221
+ };
222
+ this.__Array_isArray = {
223
+ wasm: (scope, { allocPage, builtin }) => [[32,0],[32,1],[16, builtin('__Porffor_rawType')],[68,0,0,0,0,0,0,48,64],[97],[184],[15]],
224
+ params: [124,127],
225
+ typedParams: true,
226
+ returns: [124],
227
+ returnType: 1,
228
+ locals: [],
229
+ localNames: ["x","x#type"],
230
+ };
231
+ this.___array_prototype_slice = {
232
+ wasm: (scope, { allocPage, builtin }) => [[32,0],[252,3],[40,1,0],[184],[33,6],[32,4],[65,0],[16, builtin('__Porffor_rawType')],[68,0,0,0,0,0,0,8,64],[97],[4,64],[32,6],[33,4],[11],[32,2],[68,0,0,0,0,0,0,0,0],[16, builtin('f64_|')],[33,2],[32,4],[68,0,0,0,0,0,0,0,0],[16, builtin('f64_|')],[33,4],[32,2],[68,0,0,0,0,0,0,0,0],[99],[4,64],[32,6],[32,2],[160],[34,2],[68,0,0,0,0,0,0,0,0],[99],[4,64],[68,0,0,0,0,0,0,0,0],[33,2],[11],[11],[32,2],[32,6],[100],[4,64],[32,6],[33,2],[11],[32,4],[68,0,0,0,0,0,0,0,0],[99],[4,64],[32,6],[32,4],[160],[34,4],[68,0,0,0,0,0,0,0,0],[99],[4,64],[68,0,0,0,0,0,0,0,0],[33,4],[11],[11],[32,4],[32,6],[100],[4,64],[32,6],[33,4],[11],[65,0],[65,0],[54,1,0],...number(allocPage(scope, '___array_prototype_slice | array: out', 'f64') * pageSize, 124),[33,7],[32,2],[32,4],[100],[4,64],[32,7],[65,16],[15],[11],[32,7],[33,8],[32,0],[34,9],[32,4],[68,0,0,0,0,0,0,32,64],[162],[160],[33,10],[32,9],[32,2],[68,0,0,0,0,0,0,32,64],[162],[160],[33,9],[3,64],[32,9],[32,10],[99],[4,64],[32,8],[252,2],[32,9],[252,2],[43,0,4],[57,0,4],[32,9],[68,0,0,0,0,0,0,32,64],[160],[33,9],[32,8],[68,0,0,0,0,0,0,32,64],[160],[33,8],[12,1],[11],[11],[32,7],[252,3],[32,4],[32,2],[161],[34,11],[252,3],[54,1,0],[32,7],[65,16],[15]],
233
+ params: [124,127,124,127,124,127],
234
+ typedParams: true,
235
+ returns: [124,127],
236
+ typedReturns: true,
237
+ locals: [124,124,124,124,124,124],
238
+ localNames: ["_this","_this#type","start","start#type","end","end#type","len","out","outPtr","thisPtr","thisPtrEnd","__length_setter_tmp"],
239
+ };
240
+ this.___array_prototype_indexOf = {
241
+ wasm: (scope, { allocPage, builtin }) => [[32,0],[252,3],[40,1,0],[184],[33,6],[32,4],[68,0,0,0,0,0,0,0,0],[100],[4,64],[32,4],[32,6],[100],[4,64],[32,6],[33,4],[5],[32,4],[68,0,0,0,0,0,0,0,0],[16, builtin('f64_|')],[33,4],[11],[5],[68,0,0,0,0,0,0,0,0],[33,4],[11],[32,4],[33,7],[3,64],[32,7],[32,6],[99],[4,64],[32,7],[252,3],[65,8],[108],[32,0],[252,3],[106],[43,2,4],[32,2],[97],[4,64],[32,7],[65,0],[15],[11],[32,7],[68,0,0,0,0,0,0,240,63],[160],[33,7],[12,1],[11],[11],[68,0,0,0,0,0,0,240,191],[65,0],[15]],
242
+ params: [124,127,124,127,124,127],
243
+ typedParams: true,
244
+ returns: [124,127],
245
+ typedReturns: true,
246
+ locals: [124,124,127],
247
+ localNames: ["_this","_this#type","searchElement","searchElement#type","position","position#type","len","i","#last_type"],
248
+ exceptions: [{"constructor":"TypeError","message":"Member expression is not supported for non-string non-array yet","exceptId":0}],
249
+ };
250
+ this.___array_prototype_lastIndexOf = {
251
+ wasm: (scope, { allocPage, builtin }) => [[32,0],[252,3],[40,1,0],[184],[33,6],[32,4],[68,0,0,0,0,0,0,0,0],[100],[4,64],[32,4],[32,6],[100],[4,64],[32,6],[33,4],[5],[32,4],[68,0,0,0,0,0,0,0,0],[16, builtin('f64_|')],[33,4],[11],[5],[68,0,0,0,0,0,0,0,0],[33,4],[11],[32,6],[68,0,0,0,0,0,0,240,63],[161],[33,7],[3,64],[32,7],[32,4],[102],[4,64],[32,7],[252,3],[65,8],[108],[32,0],[252,3],[106],[43,2,4],[32,2],[97],[4,64],[32,7],[65,0],[15],[11],[32,7],[68,0,0,0,0,0,0,240,63],[161],[33,7],[12,1],[11],[11],[68,0,0,0,0,0,0,240,191],[65,0],[15]],
252
+ params: [124,127,124,127,124,127],
253
+ typedParams: true,
254
+ returns: [124,127],
255
+ typedReturns: true,
256
+ locals: [124,124,127],
257
+ localNames: ["_this","_this#type","searchElement","searchElement#type","position","position#type","len","i","#last_type"],
258
+ exceptions: [{"constructor":"TypeError","message":"Member expression is not supported for non-string non-array yet","exceptId":1}],
259
+ };
260
+ this.___array_prototype_includes = {
261
+ wasm: (scope, { allocPage, builtin }) => [[32,0],[252,3],[40,1,0],[184],[33,6],[32,4],[68,0,0,0,0,0,0,0,0],[100],[4,64],[32,4],[32,6],[100],[4,64],[32,6],[33,4],[5],[32,4],[68,0,0,0,0,0,0,0,0],[16, builtin('f64_|')],[33,4],[11],[5],[68,0,0,0,0,0,0,0,0],[33,4],[11],[32,4],[33,7],[3,64],[32,7],[32,6],[99],[4,64],[32,7],[252,3],[65,8],[108],[32,0],[252,3],[106],[43,2,4],[32,2],[97],[4,64],[68,0,0,0,0,0,0,240,63],[65,1],[15],[11],[32,7],[68,0,0,0,0,0,0,240,63],[160],[33,7],[12,1],[11],[11],[68,0,0,0,0,0,0,0,0],[65,1],[15]],
262
+ params: [124,127,124,127,124,127],
263
+ typedParams: true,
264
+ returns: [124,127],
265
+ typedReturns: true,
266
+ locals: [124,124,127],
267
+ localNames: ["_this","_this#type","searchElement","searchElement#type","position","position#type","len","i","#last_type"],
268
+ exceptions: [{"constructor":"TypeError","message":"Member expression is not supported for non-string non-array yet","exceptId":2}],
269
+ };
270
+ this.___array_prototype_with = {
271
+ wasm: (scope, { allocPage, builtin }) => [[32,0],[252,3],[40,1,0],[184],[33,6],[32,2],[68,0,0,0,0,0,0,0,0],[99],[4,64],[32,6],[32,2],[160],[34,2],[68,0,0,0,0,0,0,0,0],[99],[4,64],[68,0,0,0,0,0,0,0,0],[65,4],[15],[11],[11],[32,2],[32,6],[100],[4,64],[68,0,0,0,0,0,0,0,0],[65,4],[15],[11],[65,0],[65,0],[54,1,128,128,4],...number(allocPage(scope, '___array_prototype_with | array: out', 'f64') * pageSize, 124),[33,7],[32,0],[32,7],[16, builtin('__Porffor_clone')],[32,7],[252,3],[32,2],[252,3],[65,8],[108],[106],[32,4],[34,8],[57,2,4],[32,7],[65,16],[15]],
272
+ params: [124,127,124,127,124,127],
273
+ typedParams: true,
274
+ returns: [124,127],
275
+ typedReturns: true,
276
+ locals: [124,124,124],
277
+ localNames: ["_this","_this#type","index","index#type","value","value#type","len","out","__member_setter_val_tmp"],
278
+ exceptions: [{"constructor":"TypeError","message":"Cannot assign member with non-array","exceptId":3}],
279
+ };
280
+ this.___array_prototype_reverse = {
281
+ wasm: (scope, { allocPage, builtin }) => [[32,0],[252,3],[40,1,0],[184],[33,2],[68,0,0,0,0,0,0,0,0],[33,3],[32,2],[68,0,0,0,0,0,0,240,63],[161],[33,4],[3,64],[32,3],[32,4],[99],[4,64],[32,3],[252,3],[65,8],[108],[32,0],[252,3],[106],[43,2,4],[33,5],[32,0],[252,3],[32,3],[32,3],[68,0,0,0,0,0,0,240,63],[160],[33,3],[252,3],[65,8],[108],[106],[32,4],[252,3],[65,8],[108],[32,0],[252,3],[106],[43,2,4],[34,7],[57,2,4],[32,0],[252,3],[32,4],[32,4],[68,0,0,0,0,0,0,240,63],[161],[33,4],[252,3],[65,8],[108],[106],[32,5],[34,7],[57,2,4],[12,1],[11],[11],[32,0],[65,16],[15]],
282
+ params: [124,127],
283
+ typedParams: true,
284
+ returns: [124,127],
285
+ typedReturns: true,
286
+ locals: [124,124,124,124,127,124],
287
+ localNames: ["_this","_this#type","len","start","end","tmp","#last_type","__member_setter_val_tmp"],
288
+ exceptions: [{"constructor":"TypeError","message":"Member expression is not supported for non-string non-array yet","exceptId":4},{"constructor":"TypeError","message":"Member expression is not supported for non-string non-array yet","exceptId":5},{"constructor":"TypeError","message":"Cannot assign member with non-array","exceptId":6},{"constructor":"TypeError","message":"Cannot assign member with non-array","exceptId":7}],
289
+ };
290
+ this.___array_prototype_toReversed = {
291
+ wasm: (scope, { allocPage, builtin }) => [[32,0],[252,3],[40,1,0],[184],[33,2],[68,0,0,0,0,0,0,0,0],[33,3],[32,2],[68,0,0,0,0,0,0,240,63],[161],[33,4],[65,0],[65,0],[54,1,128,128,8],...number(allocPage(scope, '___array_prototype_toReversed | array: out', 'f64') * pageSize, 124),[34,5],[252,3],[32,2],[34,6],[252,3],[54,1,0],[3,64],[32,3],[32,4],[99],[4,64],[32,5],[252,3],[32,3],[252,3],[65,8],[108],[106],[32,4],[252,3],[65,8],[108],[32,0],[252,3],[106],[43,2,4],[34,7],[57,2,4],[32,5],[252,3],[32,4],[32,4],[68,0,0,0,0,0,0,240,63],[161],[33,4],[252,3],[65,8],[108],[106],[32,3],[32,3],[68,0,0,0,0,0,0,240,63],[160],[33,3],[252,3],[65,8],[108],[32,0],[252,3],[106],[43,2,4],[34,7],[57,2,4],[12,1],[11],[11],[32,5],[65,16],[15]],
292
+ params: [124,127],
293
+ typedParams: true,
294
+ returns: [124,127],
295
+ typedReturns: true,
296
+ locals: [124,124,124,124,124,124,127],
297
+ localNames: ["_this","_this#type","len","start","end","out","__length_setter_tmp","__member_setter_val_tmp","#last_type"],
298
+ exceptions: [{"constructor":"TypeError","message":"Member expression is not supported for non-string non-array yet","exceptId":8},{"constructor":"TypeError","message":"Cannot assign member with non-array","exceptId":9},{"constructor":"TypeError","message":"Member expression is not supported for non-string non-array yet","exceptId":10},{"constructor":"TypeError","message":"Cannot assign member with non-array","exceptId":11}],
299
+ };
300
+ this.btoa = {
301
+ wasm: (scope, { allocPage, builtin }) => [...number(allocPage(scope, 'btoa | bytestring: keyStr', 'i8') * pageSize, 127),[34,2],[33,3],[32,0],[40,1,0],[33,4],...number(allocPage(scope, 'btoa | bytestring: output', 'i8') * pageSize, 127),[34,5],[65,4],[32,4],[65,3],[109],[32,4],[65,3],[111],[69],[69],[106],[108],[34,6],[54,1,0],[32,0],[33,7],[32,5],[33,8],[32,7],[32,4],[106],[33,9],[65,0],[33,10],[3,64],[32,7],[32,9],[72],[4,64],[32,7],[32,7],[65,1],[106],[33,7],[45,0,4],[33,11],[32,7],[32,9],[72],[4,127],[32,7],[32,7],[65,1],[106],[33,7],[45,0,4],[65,0],[33,13],[5],[65,127],[65,0],[33,13],[11],[33,12],[32,7],[32,9],[72],[4,127],[32,7],[32,7],[65,1],[106],[33,7],[45,0,4],[65,0],[33,13],[5],[65,127],[65,0],[33,13],[11],[33,14],[32,11],[65,2],[117],[33,15],[32,11],[65,3],[113],[65,4],[116],[32,12],[65,127],[70],[4,127],[65,0],[65,0],[33,13],[5],[32,12],[65,4],[117],[65,0],[33,13],[11],[114],[33,16],[32,12],[65,15],[113],[65,2],[116],[32,14],[65,127],[70],[4,127],[65,0],[65,0],[33,13],[5],[32,14],[65,6],[117],[65,0],[33,13],[11],[114],[33,17],[32,14],[65,63],[113],[33,18],[32,12],[65,127],[70],[4,64],[65,192,0],[33,17],[65,192,0],[33,18],[5],[32,14],[65,127],[70],[4,64],[65,192,0],[33,18],[11],[11],[32,8],[32,8],[65,1],[106],[33,8],[32,3],[32,15],[106],[45,0,4],[58,0,4],[32,8],[32,8],[65,1],[106],[33,8],[32,3],[32,16],[106],[45,0,4],[58,0,4],[32,8],[32,8],[65,1],[106],[33,8],[32,3],[32,17],[106],[45,0,4],[58,0,4],[32,8],[32,8],[65,1],[106],[33,8],[32,3],[32,18],[106],[45,0,4],[58,0,4],[12,1],[11],[11],[32,5],[15]],
302
+ params: [127,127],
303
+ typedParams: true,
304
+ returns: [127],
305
+ returnType: 18,
306
+ locals: [127,127,127,127,127,127,127,127,127,127,127,127,127,127,127,127,127],
307
+ localNames: ["input","input#type","keyStr","keyStrPtr","len","output","__length_setter_tmp","i","j","endPtr","endPtr#type","chr1","chr2","#last_type","chr3","enc1","enc2","enc3","enc4"],
308
+ data: [{"offset":0,"bytes":[65,0,0,0,65,66,67,68,69,70,71,72,73,74,75,76,77,78,79,80,81,82,83,84,85,86,87,88,89,90,97,98,99,100,101,102,103,104,105,106,107,108,109,110,111,112,113,114,115,116,117,118,119,120,121,122,48,49,50,51,52,53,54,55,56,57,43,47,61]}],
309
+ };
310
+ this.__crypto_randomUUID = {
311
+ wasm: (scope, { allocPage, builtin }) => [...number(allocPage(scope, '__crypto_randomUUID | bytestring: bytes', 'i8') * pageSize, 127),[34,0],[34,1],[34,2],[65,16],[106],[33,3],[3,64],[32,2],[32,3],[72],[4,64],[32,2],[32,2],[65,1],[106],[33,2],[16, builtin('__Porffor_randomByte')],[58,0,4],[12,1],[11],[11],[32,1],[32,1],[45,0,10],[65,15],[113],[65,192,0],[114],[58,0,10],[32,1],[32,1],[45,0,12],[65,63],[113],[65,128,1],[114],[58,0,12],...number(allocPage(scope, '__crypto_randomUUID | bytestring: output', 'i8') * pageSize, 127),[34,4],[33,5],[32,1],[33,6],[32,5],[65,8],[106],[33,7],[3,64],[32,5],[32,7],[72],[4,64],[32,6],[32,6],[65,1],[106],[33,6],[45,0,4],[34,8],[65,15],[113],[65,48],[106],[34,9],[65,57],[74],[4,64],[32,9],[65,39],[106],[33,9],[11],[32,8],[65,4],[117],[65,48],[106],[34,10],[65,57],[74],[4,64],[32,10],[65,39],[106],[33,10],[11],[32,5],[32,5],[65,1],[106],[33,5],[32,10],[58,0,4],[32,5],[32,5],[65,1],[106],[33,5],[32,9],[58,0,4],[12,1],[11],[11],[32,5],[65,1],[106],[34,5],[65,4],[106],[33,7],[3,64],[32,5],[32,7],[72],[4,64],[32,6],[32,6],[65,1],[106],[33,6],[45,0,4],[34,8],[65,15],[113],[65,48],[106],[34,9],[65,57],[74],[4,64],[32,9],[65,39],[106],[33,9],[11],[32,8],[65,4],[117],[65,48],[106],[34,10],[65,57],[74],[4,64],[32,10],[65,39],[106],[33,10],[11],[32,5],[32,5],[65,1],[106],[33,5],[32,10],[58,0,4],[32,5],[32,5],[65,1],[106],[33,5],[32,9],[58,0,4],[12,1],[11],[11],[32,5],[65,1],[106],[34,5],[65,4],[106],[33,7],[3,64],[32,5],[32,7],[72],[4,64],[32,6],[32,6],[65,1],[106],[33,6],[45,0,4],[34,8],[65,15],[113],[65,48],[106],[34,9],[65,57],[74],[4,64],[32,9],[65,39],[106],[33,9],[11],[32,8],[65,4],[117],[65,48],[106],[34,10],[65,57],[74],[4,64],[32,10],[65,39],[106],[33,10],[11],[32,5],[32,5],[65,1],[106],[33,5],[32,10],[58,0,4],[32,5],[32,5],[65,1],[106],[33,5],[32,9],[58,0,4],[12,1],[11],[11],[32,5],[65,1],[106],[34,5],[65,4],[106],[33,7],[3,64],[32,5],[32,7],[72],[4,64],[32,6],[32,6],[65,1],[106],[33,6],[45,0,4],[34,8],[65,15],[113],[65,48],[106],[34,9],[65,57],[74],[4,64],[32,9],[65,39],[106],[33,9],[11],[32,8],[65,4],[117],[65,48],[106],[34,10],[65,57],[74],[4,64],[32,10],[65,39],[106],[33,10],[11],[32,5],[32,5],[65,1],[106],[33,5],[32,10],[58,0,4],[32,5],[32,5],[65,1],[106],[33,5],[32,9],[58,0,4],[12,1],[11],[11],[32,5],[65,1],[106],[34,5],[65,12],[106],[33,7],[3,64],[32,5],[32,7],[72],[4,64],[32,6],[32,6],[65,1],[106],[33,6],[45,0,4],[34,8],[65,15],[113],[65,48],[106],[34,9],[65,57],[74],[4,64],[32,9],[65,39],[106],[33,9],[11],[32,8],[65,4],[117],[65,48],[106],[34,10],[65,57],[74],[4,64],[32,10],[65,39],[106],[33,10],[11],[32,5],[32,5],[65,1],[106],[33,5],[32,10],[58,0,4],[32,5],[32,5],[65,1],[106],[33,5],[32,9],[58,0,4],[12,1],[11],[11],[32,5],[65,1],[106],[33,5],[32,4],[15]],
312
+ params: [],
313
+ typedParams: true,
314
+ returns: [127],
315
+ returnType: 18,
316
+ locals: [127,127,127,127,127,127,127,127,127,127,127],
317
+ localNames: ["bytes","bytesPtr","a","aEndPtr","output","i","j","endPtr","byte","lower","upper"],
318
+ data: [{"offset":0,"bytes":[16,0,0,0,46,46,46,46,46,46,46,46,46,46,46,46,46,46,46,46]},{"offset":65536,"bytes":[36,0,0,0,45,45,45,45,45,45,45,45,45,45,45,45,45,45,45,45,45,45,45,45,45,45,45,45,45,45,45,45,45,45,45,45,45,45,45,45]}],
319
+ };
320
+ this.__ecma262_Day = {
321
+ wasm: (scope, { allocPage, builtin }) => [[32,0],[68,0,0,0,0,112,153,148,65],[163],[16, builtin('__Math_floor')],[15]],
322
+ params: [124,127],
323
+ typedParams: true,
324
+ returns: [124],
325
+ returnType: 0,
326
+ locals: [],
327
+ localNames: ["t","t#type"],
328
+ };
329
+ this.__ecma262_TimeWithinDay = {
330
+ wasm: (scope, { allocPage, builtin }) => [[32,0],[68,0,0,0,0,112,153,148,65],[16, builtin('f64_%')],[15]],
331
+ params: [124,127],
332
+ typedParams: true,
333
+ returns: [124],
334
+ returnType: 0,
335
+ locals: [],
336
+ localNames: ["t","t#type"],
337
+ };
338
+ this.__ecma262_DaysInYear = {
339
+ wasm: (scope, { allocPage, builtin }) => [[32,0],[68,0,0,0,0,0,0,121,64],[16, builtin('f64_%')],[68,0,0,0,0,0,0,0,0],[97],[4,64],[68,0,0,0,0,0,224,118,64],[15],[11],[32,0],[68,0,0,0,0,0,0,89,64],[16, builtin('f64_%')],[68,0,0,0,0,0,0,0,0],[97],[4,64],[68,0,0,0,0,0,208,118,64],[15],[11],[32,0],[68,0,0,0,0,0,0,16,64],[16, builtin('f64_%')],[68,0,0,0,0,0,0,0,0],[97],[4,64],[68,0,0,0,0,0,224,118,64],[15],[11],[68,0,0,0,0,0,208,118,64],[15]],
340
+ params: [124,127],
341
+ typedParams: true,
342
+ returns: [124],
343
+ returnType: 0,
344
+ locals: [],
345
+ localNames: ["y","y#type"],
346
+ };
347
+ this.__ecma262_DayFromYear = {
348
+ wasm: (scope, { allocPage, builtin }) => [[32,0],[68,0,0,0,0,0,200,158,64],[161],[33,2],[32,0],[68,0,0,0,0,0,196,158,64],[161],[68,0,0,0,0,0,0,16,64],[163],[16, builtin('__Math_floor')],[33,3],[32,0],[68,0,0,0,0,0,180,157,64],[161],[68,0,0,0,0,0,0,89,64],[163],[16, builtin('__Math_floor')],[33,4],[32,0],[68,0,0,0,0,0,4,153,64],[161],[68,0,0,0,0,0,0,121,64],[163],[16, builtin('__Math_floor')],[33,5],[68,0,0,0,0,0,208,118,64],[32,2],[162],[32,3],[160],[32,4],[161],[32,5],[160],[15]],
349
+ params: [124,127],
350
+ typedParams: true,
351
+ returns: [124],
352
+ returnType: 0,
353
+ locals: [124,124,124,124],
354
+ localNames: ["y","y#type","numYears1","numYears4","numYears100","numYears400"],
355
+ };
356
+ this.__ecma262_TimeFromYear = {
357
+ wasm: (scope, { allocPage, builtin }) => [[68,0,0,0,0,112,153,148,65],[32,0],[65,0],[16, builtin('__ecma262_DayFromYear')],[162],[15]],
358
+ params: [124,127],
359
+ typedParams: true,
360
+ returns: [124],
361
+ returnType: 0,
362
+ locals: [],
363
+ localNames: ["y","y#type"],
364
+ };
365
+ this.__ecma262_YearFromTime = {
366
+ wasm: (scope, { allocPage, builtin }) => [[32,0],[68,0,0,0,127,195,99,29,66],[163],[16, builtin('__Math_floor')],[68,0,0,0,0,0,200,158,64],[160],[34,2],[65,0],[16, builtin('__ecma262_TimeFromYear')],[34,3],[32,0],[100],[4,64],[32,2],[68,0,0,0,0,0,0,240,63],[161],[15],[11],[32,3],[32,2],[65,0],[16, builtin('__ecma262_DaysInYear')],[68,0,0,0,0,112,153,148,65],[162],[160],[32,0],[101],[4,64],[32,2],[68,0,0,0,0,0,0,240,63],[160],[15],[11],[32,2],[15]],
367
+ params: [124,127],
368
+ typedParams: true,
369
+ returns: [124],
370
+ returnType: 0,
371
+ locals: [124,124],
372
+ localNames: ["t","t#type","y","t2"],
373
+ };
374
+ this.__ecma262_DayWithinYear = {
375
+ wasm: (scope, { allocPage, builtin }) => [[32,0],[65,0],[16, builtin('__ecma262_Day')],[32,0],[65,0],[16, builtin('__ecma262_YearFromTime')],[65,0],[16, builtin('__ecma262_DayFromYear')],[161],[15]],
376
+ params: [124,127],
377
+ typedParams: true,
378
+ returns: [124],
379
+ returnType: 0,
380
+ locals: [],
381
+ localNames: ["t","t#type"],
382
+ };
383
+ this.__ecma262_InLeapYear = {
384
+ wasm: (scope, { allocPage, builtin }) => [[32,0],[65,0],[16, builtin('__ecma262_YearFromTime')],[65,0],[16, builtin('__ecma262_DaysInYear')],[68,0,0,0,0,0,224,118,64],[97],[4,124],[68,0,0,0,0,0,0,240,63],[5],[68,0,0,0,0,0,0,0,0],[11],[15]],
385
+ params: [124,127],
386
+ typedParams: true,
387
+ returns: [124],
388
+ returnType: 0,
389
+ locals: [127],
390
+ localNames: ["t","t#type","#last_type"],
391
+ };
392
+ this.__ecma262_MonthFromTime = {
393
+ wasm: (scope, { allocPage, builtin }) => [[32,0],[65,0],[16, builtin('__ecma262_InLeapYear')],[33,2],[32,0],[65,0],[16, builtin('__ecma262_DayWithinYear')],[34,3],[68,0,0,0,0,0,0,63,64],[99],[4,64],[68,0,0,0,0,0,0,0,0],[15],[11],[32,3],[68,0,0,0,0,0,128,77,64],[32,2],[160],[99],[4,64],[68,0,0,0,0,0,0,240,63],[15],[11],[32,3],[68,0,0,0,0,0,128,86,64],[32,2],[160],[99],[4,64],[68,0,0,0,0,0,0,0,64],[15],[11],[32,3],[68,0,0,0,0,0,0,94,64],[32,2],[160],[99],[4,64],[68,0,0,0,0,0,0,8,64],[15],[11],[32,3],[68,0,0,0,0,0,224,98,64],[32,2],[160],[99],[4,64],[68,0,0,0,0,0,0,16,64],[15],[11],[32,3],[68,0,0,0,0,0,160,102,64],[32,2],[160],[99],[4,64],[68,0,0,0,0,0,0,20,64],[15],[11],[32,3],[68,0,0,0,0,0,128,106,64],[32,2],[160],[99],[4,64],[68,0,0,0,0,0,0,24,64],[15],[11],[32,3],[68,0,0,0,0,0,96,110,64],[32,2],[160],[99],[4,64],[68,0,0,0,0,0,0,28,64],[15],[11],[32,3],[68,0,0,0,0,0,16,113,64],[32,2],[160],[99],[4,64],[68,0,0,0,0,0,0,32,64],[15],[11],[32,3],[68,0,0,0,0,0,0,115,64],[32,2],[160],[99],[4,64],[68,0,0,0,0,0,0,34,64],[15],[11],[32,3],[68,0,0,0,0,0,224,116,64],[32,2],[160],[99],[4,64],[68,0,0,0,0,0,0,36,64],[15],[11],[68,0,0,0,0,0,0,38,64],[15]],
394
+ params: [124,127],
395
+ typedParams: true,
396
+ returns: [124],
397
+ returnType: 0,
398
+ locals: [124,124],
399
+ localNames: ["t","t#type","inLeapYear","dayWithinYear"],
400
+ };
401
+ this.__ecma262_DateFromTime = {
402
+ wasm: (scope, { allocPage, builtin }) => [[32,0],[65,0],[16, builtin('__ecma262_InLeapYear')],[33,2],[32,0],[65,0],[16, builtin('__ecma262_DayWithinYear')],[33,3],[32,0],[65,0],[16, builtin('__ecma262_MonthFromTime')],[33,4],[65,0],[33,5],[32,4],[68,0,0,0,0,0,0,0,0],[97],[4,64],[32,3],[68,0,0,0,0,0,0,240,63],[160],[15],[11],[32,4],[68,0,0,0,0,0,0,240,63],[97],[4,64],[32,3],[68,0,0,0,0,0,0,62,64],[161],[15],[11],[32,4],[68,0,0,0,0,0,0,0,64],[97],[4,64],[32,3],[68,0,0,0,0,0,0,77,64],[161],[32,2],[161],[15],[11],[32,4],[68,0,0,0,0,0,0,8,64],[97],[4,64],[32,3],[68,0,0,0,0,0,64,86,64],[161],[32,2],[161],[15],[11],[32,4],[68,0,0,0,0,0,0,16,64],[97],[4,64],[32,3],[68,0,0,0,0,0,192,93,64],[161],[32,2],[161],[15],[11],[32,4],[68,0,0,0,0,0,0,20,64],[97],[4,64],[32,3],[68,0,0,0,0,0,192,98,64],[161],[32,2],[161],[15],[11],[32,4],[68,0,0,0,0,0,0,24,64],[97],[4,64],[32,3],[68,0,0,0,0,0,128,102,64],[161],[32,2],[161],[15],[11],[32,4],[68,0,0,0,0,0,0,28,64],[97],[4,64],[32,3],[68,0,0,0,0,0,96,106,64],[161],[32,2],[161],[15],[11],[32,4],[68,0,0,0,0,0,0,32,64],[97],[4,64],[32,3],[68,0,0,0,0,0,64,110,64],[161],[32,2],[161],[15],[11],[32,4],[68,0,0,0,0,0,0,34,64],[97],[4,64],[32,3],[68,0,0,0,0,0,0,113,64],[161],[32,2],[161],[15],[11],[32,4],[68,0,0,0,0,0,0,36,64],[97],[4,64],[32,3],[68,0,0,0,0,0,240,114,64],[161],[32,2],[161],[15],[11],[32,3],[68,0,0,0,0,0,208,116,64],[161],[32,2],[161],[15]],
403
+ params: [124,127],
404
+ typedParams: true,
405
+ returns: [124],
406
+ returnType: 0,
407
+ locals: [124,124,124,127],
408
+ localNames: ["t","t#type","inLeapYear","dayWithinYear","month","month#type"],
409
+ };
410
+ this.__ecma262_WeekDay = {
411
+ wasm: (scope, { allocPage, builtin }) => [[32,0],[65,0],[16, builtin('__ecma262_Day')],[68,0,0,0,0,0,0,16,64],[160],[68,0,0,0,0,0,0,28,64],[16, builtin('f64_%')],[15]],
412
+ params: [124,127],
413
+ typedParams: true,
414
+ returns: [124],
415
+ returnType: 0,
416
+ locals: [],
417
+ localNames: ["t","t#type"],
418
+ };
419
+ this.__ecma262_HourFromTime = {
420
+ wasm: (scope, { allocPage, builtin }) => [[32,0],[68,0,0,0,0,64,119,75,65],[163],[16, builtin('__Math_floor')],[68,0,0,0,0,0,0,56,64],[16, builtin('f64_%')],[15]],
421
+ params: [124,127],
422
+ typedParams: true,
423
+ returns: [124],
424
+ returnType: 0,
425
+ locals: [],
426
+ localNames: ["t","t#type"],
427
+ };
428
+ this.__ecma262_MinFromTime = {
429
+ wasm: (scope, { allocPage, builtin }) => [[32,0],[68,0,0,0,0,0,76,237,64],[163],[16, builtin('__Math_floor')],[68,0,0,0,0,0,0,78,64],[16, builtin('f64_%')],[15]],
430
+ params: [124,127],
431
+ typedParams: true,
432
+ returns: [124],
433
+ returnType: 0,
434
+ locals: [],
435
+ localNames: ["t","t#type"],
436
+ };
437
+ this.__ecma262_SecFromTime = {
438
+ wasm: (scope, { allocPage, builtin }) => [[32,0],[68,0,0,0,0,0,64,143,64],[163],[16, builtin('__Math_floor')],[68,0,0,0,0,0,0,78,64],[16, builtin('f64_%')],[15]],
439
+ params: [124,127],
440
+ typedParams: true,
441
+ returns: [124],
442
+ returnType: 0,
443
+ locals: [],
444
+ localNames: ["t","t#type"],
445
+ };
446
+ this.__ecma262_msFromTime = {
447
+ wasm: (scope, { allocPage, builtin }) => [[32,0],[68,0,0,0,0,0,64,143,64],[16, builtin('f64_%')],[15]],
448
+ params: [124,127],
449
+ typedParams: true,
450
+ returns: [124],
451
+ returnType: 0,
452
+ locals: [],
453
+ localNames: ["t","t#type"],
454
+ };
455
+ this.__ecma262_LocalTime = {
456
+ wasm: (scope, { allocPage, builtin }) => [[32,0],[15]],
457
+ params: [124,127],
458
+ typedParams: true,
459
+ returns: [124],
460
+ returnType: 0,
461
+ locals: [],
462
+ localNames: ["t","t#type"],
463
+ };
464
+ this.__ecma262_UTC = {
465
+ wasm: (scope, { allocPage, builtin }) => [[32,0],[16, builtin('__Number_isFinite')],[68,0,0,0,0,0,0,0,0],[97],[4,64],[68,0,0,0,0,0,0,248,127],[15],[11],[32,0],[15]],
466
+ params: [124,127],
467
+ typedParams: true,
468
+ returns: [124],
469
+ returnType: 0,
470
+ locals: [],
471
+ localNames: ["t","t#type"],
472
+ };
473
+ this.__ecma262_ToIntegerOrInfinity = {
474
+ wasm: (scope, { allocPage, builtin }) => [[32,0],[16, builtin('Number')],[34,2],[16, builtin('__Number_isNaN')],[252,3],[4,64],[68,0,0,0,0,0,0,0,0],[15],[11],[32,2],[16, builtin('__Math_trunc')],[15]],
475
+ params: [124,127],
476
+ typedParams: true,
477
+ returns: [124],
478
+ returnType: 0,
479
+ locals: [124],
480
+ localNames: ["argument","argument#type","number"],
481
+ };
482
+ this.__ecma262_MakeTime = {
483
+ wasm: (scope, { allocPage, builtin }) => [[32,0],[16, builtin('__Number_isFinite')],[68,0,0,0,0,0,0,0,0],[97],[32,2],[16, builtin('__Number_isFinite')],[68,0,0,0,0,0,0,0,0],[97],[114],[32,4],[16, builtin('__Number_isFinite')],[68,0,0,0,0,0,0,0,0],[97],[114],[32,6],[16, builtin('__Number_isFinite')],[68,0,0,0,0,0,0,0,0],[97],[114],[4,64],[68,0,0,0,0,0,0,248,127],[15],[11],[32,0],[65,0],[16, builtin('__ecma262_ToIntegerOrInfinity')],[33,8],[32,2],[65,0],[16, builtin('__ecma262_ToIntegerOrInfinity')],[33,9],[32,4],[65,0],[16, builtin('__ecma262_ToIntegerOrInfinity')],[33,10],[32,6],[65,0],[16, builtin('__ecma262_ToIntegerOrInfinity')],[33,11],[32,8],[68,0,0,0,0,64,119,75,65],[162],[32,9],[68,0,0,0,0,0,76,237,64],[162],[160],[32,10],[68,0,0,0,0,0,64,143,64],[162],[160],[32,11],[160],[15]],
484
+ params: [124,127,124,127,124,127,124,127],
485
+ typedParams: true,
486
+ returns: [124],
487
+ returnType: 0,
488
+ locals: [124,124,124,124],
489
+ localNames: ["hour","hour#type","min","min#type","sec","sec#type","ms","ms#type","h","m","s","milli"],
490
+ };
491
+ this.__ecma262_MakeDay = {
492
+ wasm: (scope, { allocPage, builtin }) => [[32,0],[16, builtin('__Number_isFinite')],[68,0,0,0,0,0,0,0,0],[97],[32,2],[16, builtin('__Number_isFinite')],[68,0,0,0,0,0,0,0,0],[97],[114],[32,4],[16, builtin('__Number_isFinite')],[68,0,0,0,0,0,0,0,0],[97],[114],[4,64],[68,0,0,0,0,0,0,248,127],[15],[11],[32,0],[65,0],[16, builtin('__ecma262_ToIntegerOrInfinity')],[33,6],[32,2],[65,0],[16, builtin('__ecma262_ToIntegerOrInfinity')],[33,7],[32,4],[65,0],[16, builtin('__ecma262_ToIntegerOrInfinity')],[33,8],[32,6],[32,7],[68,0,0,0,0,0,0,40,64],[163],[16, builtin('__Math_floor')],[160],[34,9],[16, builtin('__Number_isFinite')],[68,0,0,0,0,0,0,0,0],[97],[4,64],[68,0,0,0,0,0,0,248,127],[15],[11],[32,7],[68,0,0,0,0,0,0,40,64],[16, builtin('f64_%')],[34,10],[68,0,0,0,0,0,0,240,63],[101],[4,64],[32,9],[68,0,0,0,0,0,0,240,63],[161],[33,9],[11],[32,9],[68,0,0,0,0,0,0,0,0],[102],[4,124],[32,9],[65,0],[33,12],[5],[32,9],[68,0,0,0,0,0,240,120,64],[161],[65,0],[33,12],[11],[68,0,0,0,0,0,0,121,64],[163],[16, builtin('__Math_trunc')],[33,11],[32,9],[32,11],[68,0,0,0,0,0,0,121,64],[162],[161],[33,13],[68,0,0,0,0,0,32,99,64],[32,10],[32,10],[68,0,0,0,0,0,0,240,63],[100],[4,124],[68,0,0,0,0,0,0,0,192],[65,0],[33,12],[5],[68,0,0,0,0,0,0,36,64],[65,0],[33,12],[11],[160],[162],[68,0,0,0,0,0,0,0,64],[160],[68,0,0,0,0,0,0,20,64],[163],[16, builtin('__Math_trunc')],[33,14],[32,13],[68,0,0,0,0,0,208,118,64],[162],[32,13],[68,0,0,0,0,0,0,16,64],[163],[16, builtin('__Math_trunc')],[160],[32,13],[68,0,0,0,0,0,0,89,64],[163],[16, builtin('__Math_trunc')],[161],[32,14],[160],[33,15],[32,11],[68,0,0,0,0,136,213,1,65],[162],[32,15],[160],[68,0,0,0,0,216,244,37,65],[161],[34,16],[32,8],[160],[68,0,0,0,0,0,0,240,63],[161],[15]],
493
+ params: [124,127,124,127,124,127],
494
+ typedParams: true,
495
+ returns: [124],
496
+ returnType: 0,
497
+ locals: [124,124,124,124,124,124,127,124,124,124,124],
498
+ localNames: ["year","year#type","month","month#type","date","date#type","y","m","dt","ym","mn","era","#last_type","yoe","doy","doe","day"],
499
+ };
500
+ this.__ecma262_MakeDate = {
501
+ wasm: (scope, { allocPage, builtin }) => [[32,0],[16, builtin('__Number_isFinite')],[68,0,0,0,0,0,0,0,0],[97],[32,2],[16, builtin('__Number_isFinite')],[68,0,0,0,0,0,0,0,0],[97],[114],[4,64],[68,0,0,0,0,0,0,248,127],[15],[11],[32,0],[68,0,0,0,0,112,153,148,65],[162],[32,2],[160],[34,4],[16, builtin('__Number_isFinite')],[68,0,0,0,0,0,0,0,0],[97],[4,64],[68,0,0,0,0,0,0,248,127],[15],[11],[32,4],[15]],
502
+ params: [124,127,124,127],
503
+ typedParams: true,
504
+ returns: [124],
505
+ returnType: 0,
506
+ locals: [124],
507
+ localNames: ["day","day#type","time","time#type","tv"],
508
+ };
509
+ this.__ecma262_MakeFullYear = {
510
+ wasm: (scope, { allocPage, builtin }) => [[32,0],[16, builtin('__Number_isNaN')],[252,3],[4,64],[68,0,0,0,0,0,0,248,127],[15],[11],[32,0],[65,0],[16, builtin('__ecma262_ToIntegerOrInfinity')],[34,2],[68,0,0,0,0,0,0,0,0],[102],[34,3],[4,127],[32,2],[68,0,0,0,0,0,192,88,64],[101],[65,1],[33,4],[5],[32,3],[65,1],[33,4],[11],[4,64],[68,0,0,0,0,0,176,157,64],[32,2],[160],[15],[11],[32,2],[15]],
511
+ params: [124,127],
512
+ typedParams: true,
513
+ returns: [124],
514
+ returnType: 0,
515
+ locals: [124,127,127],
516
+ localNames: ["year","year#type","truncated","logictmpi","#last_type"],
517
+ };
518
+ this.__ecma262_TimeClip = {
519
+ wasm: (scope, { allocPage, builtin }) => [[32,0],[16, builtin('__Number_isFinite')],[68,0,0,0,0,0,0,0,0],[97],[4,64],[68,0,0,0,0,0,0,248,127],[15],[11],[32,0],[16, builtin('__Math_abs')],[68,0,0,220,194,8,178,62,67],[100],[4,64],[68,0,0,0,0,0,0,248,127],[15],[11],[32,0],[65,0],[16, builtin('__ecma262_ToIntegerOrInfinity')],[15]],
520
+ params: [124,127],
521
+ typedParams: true,
522
+ returns: [124],
523
+ returnType: 0,
524
+ locals: [],
525
+ localNames: ["time","time#type"],
526
+ };
527
+ this.Date = {
528
+ wasm: (scope, { allocPage, builtin }) => [[68,0,0,0,0,0,0,0,0],[15]],
529
+ params: [],
530
+ typedParams: true,
531
+ returns: [124],
532
+ returnType: 18,
533
+ locals: [],
534
+ localNames: [],
535
+ };
536
+ this.__Porffor_date_allocate = {
537
+ wasm: (scope, { allocPage, builtin }) => [...number(allocPage(scope, '__Porffor_date_allocate | bytestring: hack', 'i8') * pageSize, 124),[34,0],[252,3],[40,1,0],[184],[68,0,0,0,0,0,0,0,0],[97],[4,64],[32,0],[252,3],[65,1],[64,0],[26],[63,0],[65,1],[107],[65,128,128,4],[108],[184],[34,1],[252,3],[54,1,0],[11],[32,0],[252,3],[40,1,0],[184],[33,2],[32,0],[252,3],[32,2],[68,0,0,0,0,0,0,32,64],[160],[34,1],[252,3],[54,1,0],[32,2],[15]],
538
+ params: [],
539
+ typedParams: true,
540
+ returns: [124],
541
+ returnType: 19,
542
+ locals: [124,124,124],
543
+ localNames: ["hack","__length_setter_tmp","ptr"],
544
+ };
545
+ this.__Porffor_date_read = {
546
+ wasm: (scope, { allocPage, builtin }) => [[32,0],[252,2],[43,0,0],[15]],
547
+ params: [124,127],
548
+ typedParams: true,
549
+ returns: [124],
550
+ returnType: 0,
551
+ locals: [],
552
+ localNames: ["ptr","ptr#type"],
553
+ };
554
+ this.__Porffor_date_write = {
555
+ wasm: (scope, { allocPage, builtin }) => [[32,0],[252,2],[32,2],[57,0,0],[68,0,0,0,0,0,0,0,0],[65,3],[15]],
556
+ params: [124,127,124,127],
557
+ typedParams: true,
558
+ returns: [124,127],
559
+ typedReturns: true,
560
+ locals: [],
561
+ localNames: ["ptr","ptr#type","val","val#type"],
562
+ };
563
+ this.Date$constructor = {
564
+ wasm: (scope, { allocPage, builtin }) => [[32,0],[32,1],[16, builtin('__Porffor_rawType')],[68,0,0,0,0,0,0,8,64],[98],[184],[32,2],[32,3],[16, builtin('__Porffor_rawType')],[68,0,0,0,0,0,0,8,64],[98],[184],[160],[32,4],[32,5],[16, builtin('__Porffor_rawType')],[68,0,0,0,0,0,0,8,64],[98],[184],[160],[32,6],[32,7],[16, builtin('__Porffor_rawType')],[68,0,0,0,0,0,0,8,64],[98],[184],[160],[32,8],[32,9],[16, builtin('__Porffor_rawType')],[68,0,0,0,0,0,0,8,64],[98],[184],[160],[32,10],[32,11],[16, builtin('__Porffor_rawType')],[68,0,0,0,0,0,0,8,64],[98],[184],[160],[32,12],[32,13],[16, builtin('__Porffor_rawType')],[68,0,0,0,0,0,0,8,64],[98],[184],[160],[33,14],[68,0,0,0,0,0,0,0,0],[33,15],[32,14],[68,0,0,0,0,0,0,0,0],[97],[4,64],[16, builtin('__Date_now')],[33,15],[5],[32,14],[68,0,0,0,0,0,0,240,63],[97],[4,64],[32,0],[33,16],[32,1],[33,17],[32,0],[32,1],[16, builtin('__Porffor_rawType')],[33,18],[68,0,0,0,0,0,0,0,0],[33,19],[32,18],[68,0,0,0,0,0,0,51,64],[97],[4,64],[32,16],[32,17],[16, builtin('__Porffor_date_read')],[33,19],[5],[32,18],[68,0,0,0,0,0,0,0,64],[97],[34,20],[69],[4,127],[32,18],[68,0,0,0,0,0,0,50,64],[97],[65,1],[33,21],[5],[32,20],[65,1],[33,21],[11],[4,64],[5],[32,16],[16, builtin('Number')],[33,19],[11],[11],[32,19],[65,0],[16, builtin('__ecma262_TimeClip')],[33,15],[5],[32,0],[16, builtin('Number')],[33,22],[32,2],[16, builtin('Number')],[33,23],[68,0,0,0,0,0,0,240,63],[33,24],[32,14],[68,0,0,0,0,0,0,0,64],[100],[4,64],[32,4],[16, builtin('Number')],[33,24],[11],[68,0,0,0,0,0,0,0,0],[33,25],[32,14],[68,0,0,0,0,0,0,8,64],[100],[4,64],[32,6],[16, builtin('Number')],[33,25],[11],[68,0,0,0,0,0,0,0,0],[33,26],[32,14],[68,0,0,0,0,0,0,16,64],[100],[4,64],[32,8],[16, builtin('Number')],[33,26],[11],[68,0,0,0,0,0,0,0,0],[33,27],[32,14],[68,0,0,0,0,0,0,20,64],[100],[4,64],[32,10],[16, builtin('Number')],[33,27],[11],[68,0,0,0,0,0,0,0,0],[33,28],[32,14],[68,0,0,0,0,0,0,24,64],[100],[4,64],[32,12],[16, builtin('Number')],[33,28],[11],[32,22],[65,0],[16, builtin('__ecma262_MakeFullYear')],[34,29],[65,0],[32,23],[65,0],[32,24],[65,0],[16, builtin('__ecma262_MakeDay')],[65,0],[32,25],[65,0],[32,26],[65,0],[32,27],[65,0],[32,28],[65,0],[16, builtin('__ecma262_MakeTime')],[65,0],[16, builtin('__ecma262_MakeDate')],[34,30],[65,0],[16, builtin('__ecma262_UTC')],[65,0],[16, builtin('__ecma262_TimeClip')],[33,15],[11],[11],[16, builtin('__Porffor_date_allocate')],[34,31],[65,19],[32,15],[65,0],[16, builtin('__Porffor_date_write')],[33,21],[26],[32,31],[15]],
565
+ params: [124,127,124,127,124,127,124,127,124,127,124,127,124,127],
566
+ typedParams: true,
567
+ returns: [124],
568
+ returnType: 19,
569
+ locals: [124,124,124,127,124,124,127,127,124,124,124,124,124,124,124,124,124,124],
570
+ localNames: ["v0","v0#type","v1","v1#type","v2","v2#type","v3","v3#type","v4","v4#type","v5","v5#type","v6","v6#type","numberOfArgs","dv","value","value#type","valueType","tv","logictmpi","#last_type","y","m","dt","h","min","s","milli","yr","finalDate","O"],
571
+ };
572
+ this.__Date_now = {
573
+ wasm: (scope, { allocPage, builtin }) => [[16,3],[16, builtin('__performance_now')],[160],[16, builtin('__Math_trunc')],[15]],
574
+ params: [],
575
+ typedParams: true,
576
+ returns: [124],
577
+ returnType: 0,
578
+ locals: [],
579
+ localNames: [],
580
+ };
581
+ this.__Date_UTC = {
582
+ wasm: (scope, { allocPage, builtin }) => [[32,0],[16, builtin('Number')],[33,14],[68,0,0,0,0,0,0,0,0],[33,15],[32,2],[32,3],[16, builtin('__Porffor_rawType')],[68,0,0,0,0,0,0,8,64],[98],[4,64],[32,2],[16, builtin('Number')],[33,15],[11],[68,0,0,0,0,0,0,240,63],[33,16],[32,4],[32,5],[16, builtin('__Porffor_rawType')],[68,0,0,0,0,0,0,8,64],[98],[4,64],[32,4],[16, builtin('Number')],[33,16],[11],[68,0,0,0,0,0,0,0,0],[33,17],[32,6],[32,7],[16, builtin('__Porffor_rawType')],[68,0,0,0,0,0,0,8,64],[98],[4,64],[32,6],[16, builtin('Number')],[33,17],[11],[68,0,0,0,0,0,0,0,0],[33,18],[32,8],[32,9],[16, builtin('__Porffor_rawType')],[68,0,0,0,0,0,0,8,64],[98],[4,64],[32,8],[16, builtin('Number')],[33,18],[11],[68,0,0,0,0,0,0,0,0],[33,19],[32,10],[32,11],[16, builtin('__Porffor_rawType')],[68,0,0,0,0,0,0,8,64],[98],[4,64],[32,10],[16, builtin('Number')],[33,19],[11],[68,0,0,0,0,0,0,0,0],[33,20],[32,12],[32,13],[16, builtin('__Porffor_rawType')],[68,0,0,0,0,0,0,8,64],[98],[4,64],[32,12],[16, builtin('Number')],[33,17],[11],[32,14],[65,0],[16, builtin('__ecma262_MakeFullYear')],[34,21],[65,0],[32,15],[65,0],[32,16],[65,0],[16, builtin('__ecma262_MakeDay')],[65,0],[32,17],[65,0],[32,18],[65,0],[32,19],[65,0],[32,20],[65,0],[16, builtin('__ecma262_MakeTime')],[65,0],[16, builtin('__ecma262_MakeDate')],[65,0],[16, builtin('__ecma262_TimeClip')],[15]],
583
+ params: [124,127,124,127,124,127,124,127,124,127,124,127,124,127],
584
+ typedParams: true,
585
+ returns: [124],
586
+ returnType: 0,
587
+ locals: [124,124,124,124,124,124,124,124],
588
+ localNames: ["year","year#type","month","month#type","date","date#type","hours","hours#type","minutes","minutes#type","seconds","seconds#type","ms","ms#type","y","m","dt","h","min","s","milli","yr"],
589
+ };
590
+ this.___date_prototype_getDate = {
591
+ wasm: (scope, { allocPage, builtin }) => [[32,0],[65,19],[16, builtin('__Porffor_date_read')],[34,2],[16, builtin('__Number_isNaN')],[252,3],[4,64],[68,0,0,0,0,0,0,248,127],[65,0],[15],[11],[32,2],[65,0],[16, builtin('__ecma262_LocalTime')],[65,0],[16, builtin('__ecma262_DateFromTime')],[65,0],[15]],
592
+ params: [124,127],
593
+ typedParams: true,
594
+ returns: [124,127],
595
+ typedReturns: true,
596
+ locals: [124],
597
+ localNames: ["_this","_this#type","t"],
598
+ };
599
+ this.___date_prototype_getDay = {
600
+ wasm: (scope, { allocPage, builtin }) => [[32,0],[65,19],[16, builtin('__Porffor_date_read')],[34,2],[16, builtin('__Number_isNaN')],[252,3],[4,64],[68,0,0,0,0,0,0,248,127],[65,0],[15],[11],[32,2],[65,0],[16, builtin('__ecma262_LocalTime')],[65,0],[16, builtin('__ecma262_WeekDay')],[65,0],[15]],
601
+ params: [124,127],
602
+ typedParams: true,
603
+ returns: [124,127],
604
+ typedReturns: true,
605
+ locals: [124],
606
+ localNames: ["_this","_this#type","t"],
607
+ };
608
+ this.___date_prototype_getFullYear = {
609
+ wasm: (scope, { allocPage, builtin }) => [[32,0],[65,19],[16, builtin('__Porffor_date_read')],[34,2],[16, builtin('__Number_isNaN')],[252,3],[4,64],[68,0,0,0,0,0,0,248,127],[65,0],[15],[11],[32,2],[65,0],[16, builtin('__ecma262_LocalTime')],[65,0],[16, builtin('__ecma262_YearFromTime')],[65,0],[15]],
610
+ params: [124,127],
611
+ typedParams: true,
612
+ returns: [124,127],
613
+ typedReturns: true,
614
+ locals: [124],
615
+ localNames: ["_this","_this#type","t"],
616
+ };
617
+ this.___date_prototype_getHours = {
618
+ wasm: (scope, { allocPage, builtin }) => [[32,0],[65,19],[16, builtin('__Porffor_date_read')],[34,2],[16, builtin('__Number_isNaN')],[252,3],[4,64],[68,0,0,0,0,0,0,248,127],[65,0],[15],[11],[32,2],[65,0],[16, builtin('__ecma262_LocalTime')],[65,0],[16, builtin('__ecma262_HourFromTime')],[65,0],[15]],
619
+ params: [124,127],
620
+ typedParams: true,
621
+ returns: [124,127],
622
+ typedReturns: true,
623
+ locals: [124],
624
+ localNames: ["_this","_this#type","t"],
625
+ };
626
+ this.___date_prototype_getMilliseconds = {
627
+ wasm: (scope, { allocPage, builtin }) => [[32,0],[65,19],[16, builtin('__Porffor_date_read')],[34,2],[16, builtin('__Number_isNaN')],[252,3],[4,64],[68,0,0,0,0,0,0,248,127],[65,0],[15],[11],[32,2],[65,0],[16, builtin('__ecma262_LocalTime')],[65,0],[16, builtin('__ecma262_msFromTime')],[65,0],[15]],
628
+ params: [124,127],
629
+ typedParams: true,
630
+ returns: [124,127],
631
+ typedReturns: true,
632
+ locals: [124],
633
+ localNames: ["_this","_this#type","t"],
634
+ };
635
+ this.___date_prototype_getMinutes = {
636
+ wasm: (scope, { allocPage, builtin }) => [[32,0],[65,19],[16, builtin('__Porffor_date_read')],[34,2],[16, builtin('__Number_isNaN')],[252,3],[4,64],[68,0,0,0,0,0,0,248,127],[65,0],[15],[11],[32,2],[65,0],[16, builtin('__ecma262_LocalTime')],[65,0],[16, builtin('__ecma262_MinFromTime')],[65,0],[15]],
637
+ params: [124,127],
638
+ typedParams: true,
639
+ returns: [124,127],
640
+ typedReturns: true,
641
+ locals: [124],
642
+ localNames: ["_this","_this#type","t"],
643
+ };
644
+ this.___date_prototype_getMonth = {
645
+ wasm: (scope, { allocPage, builtin }) => [[32,0],[65,19],[16, builtin('__Porffor_date_read')],[34,2],[16, builtin('__Number_isNaN')],[252,3],[4,64],[68,0,0,0,0,0,0,248,127],[65,0],[15],[11],[32,2],[65,0],[16, builtin('__ecma262_LocalTime')],[65,0],[16, builtin('__ecma262_MonthFromTime')],[65,0],[15]],
646
+ params: [124,127],
647
+ typedParams: true,
648
+ returns: [124,127],
649
+ typedReturns: true,
650
+ locals: [124],
651
+ localNames: ["_this","_this#type","t"],
652
+ };
653
+ this.___date_prototype_getSeconds = {
654
+ wasm: (scope, { allocPage, builtin }) => [[32,0],[65,19],[16, builtin('__Porffor_date_read')],[34,2],[16, builtin('__Number_isNaN')],[252,3],[4,64],[68,0,0,0,0,0,0,248,127],[65,0],[15],[11],[32,2],[65,0],[16, builtin('__ecma262_LocalTime')],[65,0],[16, builtin('__ecma262_SecFromTime')],[65,0],[15]],
655
+ params: [124,127],
656
+ typedParams: true,
657
+ returns: [124,127],
658
+ typedReturns: true,
659
+ locals: [124],
660
+ localNames: ["_this","_this#type","t"],
661
+ };
662
+ this.___date_prototype_getTime = {
663
+ wasm: (scope, { allocPage, builtin }) => [[32,0],[65,19],[16, builtin('__Porffor_date_read')],[65,0],[15]],
664
+ params: [124,127],
665
+ typedParams: true,
666
+ returns: [124,127],
667
+ typedReturns: true,
668
+ locals: [],
669
+ localNames: ["_this","_this#type"],
670
+ };
671
+ this.___date_prototype_getTimezoneOffset = {
672
+ wasm: (scope, { allocPage, builtin }) => [[32,0],[65,19],[16, builtin('__Porffor_date_read')],[34,2],[16, builtin('__Number_isNaN')],[252,3],[4,64],[68,0,0,0,0,0,0,248,127],[65,0],[15],[11],[32,2],[32,2],[65,0],[16, builtin('__ecma262_LocalTime')],[161],[68,0,0,0,0,0,76,237,64],[163],[65,0],[15]],
673
+ params: [124,127],
674
+ typedParams: true,
675
+ returns: [124,127],
676
+ typedReturns: true,
677
+ locals: [124],
678
+ localNames: ["_this","_this#type","t"],
679
+ };
680
+ this.___date_prototype_getUTCDate = {
681
+ wasm: (scope, { allocPage, builtin }) => [[32,0],[65,19],[16, builtin('__Porffor_date_read')],[34,2],[16, builtin('__Number_isNaN')],[252,3],[4,64],[68,0,0,0,0,0,0,248,127],[65,0],[15],[11],[32,2],[65,0],[16, builtin('__ecma262_DateFromTime')],[65,0],[15]],
682
+ params: [124,127],
683
+ typedParams: true,
684
+ returns: [124,127],
685
+ typedReturns: true,
686
+ locals: [124],
687
+ localNames: ["_this","_this#type","t"],
688
+ };
689
+ this.___date_prototype_getUTCDay = {
690
+ wasm: (scope, { allocPage, builtin }) => [[32,0],[65,19],[16, builtin('__Porffor_date_read')],[34,2],[16, builtin('__Number_isNaN')],[252,3],[4,64],[68,0,0,0,0,0,0,248,127],[65,0],[15],[11],[32,2],[65,0],[16, builtin('__ecma262_WeekDay')],[65,0],[15]],
691
+ params: [124,127],
692
+ typedParams: true,
693
+ returns: [124,127],
694
+ typedReturns: true,
695
+ locals: [124],
696
+ localNames: ["_this","_this#type","t"],
697
+ };
698
+ this.___date_prototype_getUTCFullYear = {
699
+ wasm: (scope, { allocPage, builtin }) => [[32,0],[65,19],[16, builtin('__Porffor_date_read')],[34,2],[16, builtin('__Number_isNaN')],[252,3],[4,64],[68,0,0,0,0,0,0,248,127],[65,0],[15],[11],[32,2],[65,0],[16, builtin('__ecma262_YearFromTime')],[65,0],[15]],
700
+ params: [124,127],
701
+ typedParams: true,
702
+ returns: [124,127],
703
+ typedReturns: true,
704
+ locals: [124],
705
+ localNames: ["_this","_this#type","t"],
706
+ };
707
+ this.___date_prototype_getUTCHours = {
708
+ wasm: (scope, { allocPage, builtin }) => [[32,0],[65,19],[16, builtin('__Porffor_date_read')],[34,2],[16, builtin('__Number_isNaN')],[252,3],[4,64],[68,0,0,0,0,0,0,248,127],[65,0],[15],[11],[32,2],[65,0],[16, builtin('__ecma262_HourFromTime')],[65,0],[15]],
709
+ params: [124,127],
710
+ typedParams: true,
711
+ returns: [124,127],
712
+ typedReturns: true,
713
+ locals: [124],
714
+ localNames: ["_this","_this#type","t"],
715
+ };
716
+ this.___date_prototype_getUTCMilliseconds = {
717
+ wasm: (scope, { allocPage, builtin }) => [[32,0],[65,19],[16, builtin('__Porffor_date_read')],[34,2],[16, builtin('__Number_isNaN')],[252,3],[4,64],[68,0,0,0,0,0,0,248,127],[65,0],[15],[11],[32,2],[65,0],[16, builtin('__ecma262_msFromTime')],[65,0],[15]],
718
+ params: [124,127],
719
+ typedParams: true,
720
+ returns: [124,127],
721
+ typedReturns: true,
722
+ locals: [124],
723
+ localNames: ["_this","_this#type","t"],
724
+ };
725
+ this.___date_prototype_getUTCMinutes = {
726
+ wasm: (scope, { allocPage, builtin }) => [[32,0],[65,19],[16, builtin('__Porffor_date_read')],[34,2],[16, builtin('__Number_isNaN')],[252,3],[4,64],[68,0,0,0,0,0,0,248,127],[65,0],[15],[11],[32,2],[65,0],[16, builtin('__ecma262_MinFromTime')],[65,0],[15]],
727
+ params: [124,127],
728
+ typedParams: true,
729
+ returns: [124,127],
730
+ typedReturns: true,
731
+ locals: [124],
732
+ localNames: ["_this","_this#type","t"],
733
+ };
734
+ this.___date_prototype_getUTCMonth = {
735
+ wasm: (scope, { allocPage, builtin }) => [[32,0],[65,19],[16, builtin('__Porffor_date_read')],[34,2],[16, builtin('__Number_isNaN')],[252,3],[4,64],[68,0,0,0,0,0,0,248,127],[65,0],[15],[11],[32,2],[65,0],[16, builtin('__ecma262_MonthFromTime')],[65,0],[15]],
736
+ params: [124,127],
737
+ typedParams: true,
738
+ returns: [124,127],
739
+ typedReturns: true,
740
+ locals: [124],
741
+ localNames: ["_this","_this#type","t"],
742
+ };
743
+ this.___date_prototype_getUTCSeconds = {
744
+ wasm: (scope, { allocPage, builtin }) => [[32,0],[65,19],[16, builtin('__Porffor_date_read')],[34,2],[16, builtin('__Number_isNaN')],[252,3],[4,64],[68,0,0,0,0,0,0,248,127],[65,0],[15],[11],[32,2],[65,0],[16, builtin('__ecma262_SecFromTime')],[65,0],[15]],
745
+ params: [124,127],
746
+ typedParams: true,
747
+ returns: [124,127],
748
+ typedReturns: true,
749
+ locals: [124],
750
+ localNames: ["_this","_this#type","t"],
751
+ };
752
+ this.___date_prototype_setDate = {
753
+ wasm: (scope, { allocPage, builtin }) => [[32,0],[65,19],[16, builtin('__Porffor_date_read')],[33,4],[32,2],[16, builtin('Number')],[33,5],[32,4],[16, builtin('__Number_isNaN')],[252,3],[4,64],[68,0,0,0,0,0,0,248,127],[65,0],[15],[11],[32,4],[65,0],[16, builtin('__ecma262_LocalTime')],[34,4],[65,0],[16, builtin('__ecma262_YearFromTime')],[65,0],[32,4],[65,0],[16, builtin('__ecma262_MonthFromTime')],[65,0],[32,5],[65,0],[16, builtin('__ecma262_MakeDay')],[65,0],[32,4],[65,0],[16, builtin('__ecma262_TimeWithinDay')],[65,0],[16, builtin('__ecma262_MakeDate')],[34,6],[65,0],[16, builtin('__ecma262_UTC')],[65,0],[16, builtin('__ecma262_TimeClip')],[33,7],[32,0],[65,19],[32,7],[65,0],[16, builtin('__Porffor_date_write')],[26],[26],[32,7],[65,0],[15]],
754
+ params: [124,127,124,127],
755
+ typedParams: true,
756
+ returns: [124,127],
757
+ typedReturns: true,
758
+ locals: [124,124,124,124,127],
759
+ localNames: ["_this","_this#type","date","date#type","t","dt","newDate","u","#last_type"],
760
+ };
761
+ this.___date_prototype_setFullYear = {
762
+ wasm: (scope, { allocPage, builtin }) => [[32,0],[65,19],[16, builtin('__Porffor_date_read')],[33,8],[32,2],[16, builtin('Number')],[33,9],[32,8],[16, builtin('__Number_isNaN')],[252,3],[4,64],[68,0,0,0,0,0,0,0,0],[33,8],[5],[32,8],[65,0],[16, builtin('__ecma262_LocalTime')],[33,8],[11],[32,4],[32,5],[16, builtin('__Porffor_rawType')],[68,0,0,0,0,0,0,8,64],[97],[4,64],[32,8],[65,0],[16, builtin('__ecma262_MonthFromTime')],[33,10],[5],[32,4],[16, builtin('Number')],[33,10],[11],[32,6],[32,7],[16, builtin('__Porffor_rawType')],[68,0,0,0,0,0,0,8,64],[97],[4,64],[32,8],[65,0],[16, builtin('__ecma262_DateFromTime')],[33,11],[5],[32,6],[16, builtin('Number')],[33,11],[11],[32,9],[65,0],[32,10],[65,0],[32,11],[65,0],[16, builtin('__ecma262_MakeDay')],[65,0],[32,8],[65,0],[16, builtin('__ecma262_TimeWithinDay')],[65,0],[16, builtin('__ecma262_MakeDate')],[34,12],[65,0],[16, builtin('__ecma262_UTC')],[65,0],[16, builtin('__ecma262_TimeClip')],[33,13],[32,0],[65,19],[32,13],[65,0],[16, builtin('__Porffor_date_write')],[26],[26],[32,13],[65,0],[15]],
763
+ params: [124,127,124,127,124,127,124,127],
764
+ typedParams: true,
765
+ returns: [124,127],
766
+ typedReturns: true,
767
+ locals: [124,124,124,124,124,124,127],
768
+ localNames: ["_this","_this#type","year","year#type","month","month#type","date","date#type","t","y","m","dt","newDate","u","#last_type"],
769
+ };
770
+ this.___date_prototype_setHours = {
771
+ wasm: (scope, { allocPage, builtin }) => [[32,0],[65,19],[16, builtin('__Porffor_date_read')],[33,10],[32,2],[16, builtin('Number')],[33,11],[32,10],[16, builtin('__Number_isNaN')],[252,3],[4,64],[68,0,0,0,0,0,0,248,127],[65,0],[15],[11],[32,10],[65,0],[16, builtin('__ecma262_LocalTime')],[33,10],[32,4],[32,5],[16, builtin('__Porffor_rawType')],[68,0,0,0,0,0,0,8,64],[98],[4,64],[32,4],[16, builtin('Number')],[33,12],[5],[32,10],[65,0],[16, builtin('__ecma262_MinFromTime')],[33,12],[11],[32,6],[32,7],[16, builtin('__Porffor_rawType')],[68,0,0,0,0,0,0,8,64],[98],[4,64],[32,6],[16, builtin('Number')],[33,13],[5],[32,10],[65,0],[16, builtin('__ecma262_SecFromTime')],[33,13],[11],[32,8],[32,9],[16, builtin('__Porffor_rawType')],[68,0,0,0,0,0,0,8,64],[98],[4,64],[32,8],[16, builtin('Number')],[33,14],[5],[32,10],[65,0],[16, builtin('__ecma262_msFromTime')],[33,14],[11],[32,10],[65,0],[16, builtin('__ecma262_Day')],[65,0],[32,11],[65,0],[32,12],[65,0],[32,13],[65,0],[32,14],[65,0],[16, builtin('__ecma262_MakeTime')],[65,0],[16, builtin('__ecma262_MakeDate')],[34,15],[65,0],[16, builtin('__ecma262_UTC')],[65,0],[16, builtin('__ecma262_TimeClip')],[33,16],[32,0],[65,19],[32,16],[65,0],[16, builtin('__Porffor_date_write')],[26],[26],[32,16],[65,0],[15]],
772
+ params: [124,127,124,127,124,127,124,127,124,127],
773
+ typedParams: true,
774
+ returns: [124,127],
775
+ typedReturns: true,
776
+ locals: [124,124,124,124,124,124,124,127],
777
+ localNames: ["_this","_this#type","hour","hour#type","min","min#type","sec","sec#type","ms","ms#type","t","h","m","s","milli","date","u","#last_type"],
778
+ };
779
+ this.___date_prototype_setMilliseconds = {
780
+ wasm: (scope, { allocPage, builtin }) => [[32,0],[65,19],[16, builtin('__Porffor_date_read')],[33,4],[32,2],[16, builtin('Number')],[33,5],[32,4],[16, builtin('__Number_isNaN')],[252,3],[4,64],[68,0,0,0,0,0,0,248,127],[65,0],[15],[11],[32,4],[65,0],[16, builtin('__ecma262_LocalTime')],[34,4],[65,0],[16, builtin('__ecma262_HourFromTime')],[65,0],[32,4],[65,0],[16, builtin('__ecma262_MinFromTime')],[65,0],[32,4],[65,0],[16, builtin('__ecma262_SecFromTime')],[65,0],[32,5],[65,0],[16, builtin('__ecma262_MakeTime')],[33,6],[32,4],[65,0],[16, builtin('__ecma262_Day')],[65,0],[32,6],[65,0],[16, builtin('__ecma262_MakeDate')],[65,0],[16, builtin('__ecma262_UTC')],[65,0],[16, builtin('__ecma262_TimeClip')],[33,7],[32,0],[65,19],[32,7],[65,0],[16, builtin('__Porffor_date_write')],[26],[26],[32,7],[65,0],[15]],
781
+ params: [124,127,124,127],
782
+ typedParams: true,
783
+ returns: [124,127],
784
+ typedReturns: true,
785
+ locals: [124,124,124,124,127],
786
+ localNames: ["_this","_this#type","ms","ms#type","t","milli","time","u","#last_type"],
787
+ };
788
+ this.___date_prototype_setMinutes = {
789
+ wasm: (scope, { allocPage, builtin }) => [[32,0],[65,19],[16, builtin('__Porffor_date_read')],[33,8],[32,2],[16, builtin('Number')],[33,9],[32,8],[16, builtin('__Number_isNaN')],[252,3],[4,64],[68,0,0,0,0,0,0,248,127],[65,0],[15],[11],[32,8],[65,0],[16, builtin('__ecma262_LocalTime')],[33,8],[32,4],[32,5],[16, builtin('__Porffor_rawType')],[68,0,0,0,0,0,0,8,64],[98],[4,64],[32,4],[16, builtin('Number')],[33,10],[5],[32,8],[65,0],[16, builtin('__ecma262_SecFromTime')],[33,10],[11],[32,6],[32,7],[16, builtin('__Porffor_rawType')],[68,0,0,0,0,0,0,8,64],[98],[4,64],[32,6],[16, builtin('Number')],[33,11],[5],[32,8],[65,0],[16, builtin('__ecma262_msFromTime')],[33,11],[11],[32,8],[65,0],[16, builtin('__ecma262_Day')],[65,0],[32,8],[65,0],[16, builtin('__ecma262_HourFromTime')],[65,0],[32,9],[65,0],[32,10],[65,0],[32,11],[65,0],[16, builtin('__ecma262_MakeTime')],[65,0],[16, builtin('__ecma262_MakeDate')],[34,12],[65,0],[16, builtin('__ecma262_UTC')],[65,0],[16, builtin('__ecma262_TimeClip')],[33,13],[32,0],[65,19],[32,13],[65,0],[16, builtin('__Porffor_date_write')],[26],[26],[32,13],[65,0],[15]],
790
+ params: [124,127,124,127,124,127,124,127],
791
+ typedParams: true,
792
+ returns: [124,127],
793
+ typedReturns: true,
794
+ locals: [124,124,124,124,124,124,127],
795
+ localNames: ["_this","_this#type","min","min#type","sec","sec#type","ms","ms#type","t","m","s","milli","date","u","#last_type"],
796
+ };
797
+ this.___date_prototype_setMonth = {
798
+ wasm: (scope, { allocPage, builtin }) => [[32,0],[65,19],[16, builtin('__Porffor_date_read')],[33,6],[32,2],[16, builtin('Number')],[33,7],[32,6],[16, builtin('__Number_isNaN')],[252,3],[4,64],[68,0,0,0,0,0,0,248,127],[65,0],[15],[11],[32,6],[65,0],[16, builtin('__ecma262_LocalTime')],[33,6],[32,4],[32,5],[16, builtin('__Porffor_rawType')],[68,0,0,0,0,0,0,8,64],[98],[4,64],[32,4],[16, builtin('Number')],[33,8],[5],[32,6],[65,0],[16, builtin('__ecma262_DateFromTime')],[33,8],[11],[32,6],[65,0],[16, builtin('__ecma262_YearFromTime')],[65,0],[32,7],[65,0],[32,8],[65,0],[16, builtin('__ecma262_MakeDay')],[65,0],[32,6],[65,0],[16, builtin('__ecma262_TimeWithinDay')],[65,0],[16, builtin('__ecma262_MakeDate')],[34,9],[65,0],[16, builtin('__ecma262_UTC')],[65,0],[16, builtin('__ecma262_TimeClip')],[33,10],[32,0],[65,19],[32,10],[65,0],[16, builtin('__Porffor_date_write')],[26],[26],[32,10],[65,0],[15]],
799
+ params: [124,127,124,127,124,127],
800
+ typedParams: true,
801
+ returns: [124,127],
802
+ typedReturns: true,
803
+ locals: [124,124,124,124,124,127],
804
+ localNames: ["_this","_this#type","month","month#type","date","date#type","t","m","dt","newDate","u","#last_type"],
805
+ };
806
+ this.___date_prototype_setSeconds = {
807
+ wasm: (scope, { allocPage, builtin }) => [[32,0],[65,19],[16, builtin('__Porffor_date_read')],[33,6],[32,2],[16, builtin('Number')],[33,7],[32,6],[16, builtin('__Number_isNaN')],[252,3],[4,64],[68,0,0,0,0,0,0,248,127],[65,0],[15],[11],[32,6],[65,0],[16, builtin('__ecma262_LocalTime')],[33,6],[32,4],[32,5],[16, builtin('__Porffor_rawType')],[68,0,0,0,0,0,0,8,64],[98],[4,64],[32,4],[16, builtin('Number')],[33,8],[5],[32,6],[65,0],[16, builtin('__ecma262_msFromTime')],[33,8],[11],[32,6],[65,0],[16, builtin('__ecma262_Day')],[65,0],[32,6],[65,0],[16, builtin('__ecma262_HourFromTime')],[65,0],[32,6],[65,0],[16, builtin('__ecma262_MinFromTime')],[65,0],[32,7],[65,0],[32,8],[65,0],[16, builtin('__ecma262_MakeTime')],[65,0],[16, builtin('__ecma262_MakeDate')],[34,9],[65,0],[16, builtin('__ecma262_UTC')],[65,0],[16, builtin('__ecma262_TimeClip')],[33,10],[32,0],[65,19],[32,10],[65,0],[16, builtin('__Porffor_date_write')],[26],[26],[32,10],[65,0],[15]],
808
+ params: [124,127,124,127,124,127],
809
+ typedParams: true,
810
+ returns: [124,127],
811
+ typedReturns: true,
812
+ locals: [124,124,124,124,124,127],
813
+ localNames: ["_this","_this#type","sec","sec#type","ms","ms#type","t","s","milli","date","u","#last_type"],
814
+ };
815
+ this.___date_prototype_setTime = {
816
+ wasm: (scope, { allocPage, builtin }) => [[32,2],[16, builtin('Number')],[34,4],[65,0],[16, builtin('__ecma262_TimeClip')],[33,5],[32,0],[65,19],[32,5],[65,0],[16, builtin('__Porffor_date_write')],[26],[26],[32,5],[65,0],[15]],
817
+ params: [124,127,124,127],
818
+ typedParams: true,
819
+ returns: [124,127],
820
+ typedReturns: true,
821
+ locals: [124,124,127],
822
+ localNames: ["_this","_this#type","time","time#type","t","v","#last_type"],
823
+ };
824
+ this.___date_prototype_setUTCDate = {
825
+ wasm: (scope, { allocPage, builtin }) => [[32,0],[65,19],[16, builtin('__Porffor_date_read')],[33,4],[32,2],[16, builtin('Number')],[33,5],[32,4],[16, builtin('__Number_isNaN')],[252,3],[4,64],[68,0,0,0,0,0,0,248,127],[65,0],[15],[11],[32,4],[65,0],[16, builtin('__ecma262_YearFromTime')],[65,0],[32,4],[65,0],[16, builtin('__ecma262_MonthFromTime')],[65,0],[32,5],[65,0],[16, builtin('__ecma262_MakeDay')],[65,0],[32,4],[65,0],[16, builtin('__ecma262_TimeWithinDay')],[65,0],[16, builtin('__ecma262_MakeDate')],[33,6],[65,0],[33,7],[32,6],[32,7],[16, builtin('__ecma262_TimeClip')],[33,8],[32,0],[65,19],[32,8],[65,0],[16, builtin('__Porffor_date_write')],[26],[26],[32,8],[65,0],[15]],
826
+ params: [124,127,124,127],
827
+ typedParams: true,
828
+ returns: [124,127],
829
+ typedReturns: true,
830
+ locals: [124,124,124,127,124,127],
831
+ localNames: ["_this","_this#type","date","date#type","t","dt","newDate","newDate#type","v","#last_type"],
832
+ };
833
+ this.___date_prototype_setUTCFullYear = {
834
+ wasm: (scope, { allocPage, builtin }) => [[32,0],[65,19],[16, builtin('__Porffor_date_read')],[34,8],[16, builtin('__Number_isNaN')],[252,3],[4,64],[68,0,0,0,0,0,0,0,0],[33,8],[11],[32,2],[16, builtin('Number')],[33,9],[32,4],[32,5],[16, builtin('__Porffor_rawType')],[68,0,0,0,0,0,0,8,64],[97],[4,64],[32,8],[65,0],[16, builtin('__ecma262_MonthFromTime')],[33,10],[5],[32,4],[16, builtin('Number')],[33,10],[11],[32,6],[32,7],[16, builtin('__Porffor_rawType')],[68,0,0,0,0,0,0,8,64],[97],[4,64],[32,8],[65,0],[16, builtin('__ecma262_DateFromTime')],[33,11],[5],[32,6],[16, builtin('Number')],[33,11],[11],[32,9],[65,0],[32,10],[65,0],[32,11],[65,0],[16, builtin('__ecma262_MakeDay')],[65,0],[32,8],[65,0],[16, builtin('__ecma262_TimeWithinDay')],[65,0],[16, builtin('__ecma262_MakeDate')],[34,12],[65,0],[16, builtin('__ecma262_TimeClip')],[33,13],[32,0],[65,19],[32,13],[65,0],[16, builtin('__Porffor_date_write')],[26],[26],[32,13],[65,0],[15]],
835
+ params: [124,127,124,127,124,127,124,127],
836
+ typedParams: true,
837
+ returns: [124,127],
838
+ typedReturns: true,
839
+ locals: [124,124,124,124,124,124,127],
840
+ localNames: ["_this","_this#type","year","year#type","month","month#type","date","date#type","t","y","m","dt","newDate","v","#last_type"],
841
+ };
842
+ this.___date_prototype_setUTCHours = {
843
+ wasm: (scope, { allocPage, builtin }) => [[32,0],[65,19],[16, builtin('__Porffor_date_read')],[33,10],[32,2],[16, builtin('Number')],[33,11],[32,10],[16, builtin('__Number_isNaN')],[252,3],[4,64],[68,0,0,0,0,0,0,248,127],[65,0],[15],[11],[32,4],[32,5],[16, builtin('__Porffor_rawType')],[68,0,0,0,0,0,0,8,64],[98],[4,64],[32,4],[16, builtin('Number')],[33,12],[5],[32,10],[65,0],[16, builtin('__ecma262_MinFromTime')],[33,12],[11],[32,6],[32,7],[16, builtin('__Porffor_rawType')],[68,0,0,0,0,0,0,8,64],[98],[4,64],[32,6],[16, builtin('Number')],[33,13],[5],[32,10],[65,0],[16, builtin('__ecma262_SecFromTime')],[33,13],[11],[32,8],[32,9],[16, builtin('__Porffor_rawType')],[68,0,0,0,0,0,0,8,64],[98],[4,64],[32,8],[16, builtin('Number')],[33,14],[5],[32,10],[65,0],[16, builtin('__ecma262_msFromTime')],[33,14],[11],[32,10],[65,0],[16, builtin('__ecma262_Day')],[65,0],[32,11],[65,0],[32,12],[65,0],[32,13],[65,0],[32,14],[65,0],[16, builtin('__ecma262_MakeTime')],[65,0],[16, builtin('__ecma262_MakeDate')],[34,15],[65,0],[16, builtin('__ecma262_TimeClip')],[33,16],[32,0],[65,19],[32,16],[65,0],[16, builtin('__Porffor_date_write')],[26],[26],[32,16],[65,0],[15]],
844
+ params: [124,127,124,127,124,127,124,127,124,127],
845
+ typedParams: true,
846
+ returns: [124,127],
847
+ typedReturns: true,
848
+ locals: [124,124,124,124,124,124,124,127],
849
+ localNames: ["_this","_this#type","hour","hour#type","min","min#type","sec","sec#type","ms","ms#type","t","h","m","s","milli","date","v","#last_type"],
850
+ };
851
+ this.___date_prototype_setUTCMilliseconds = {
852
+ wasm: (scope, { allocPage, builtin }) => [[32,0],[65,19],[16, builtin('__Porffor_date_read')],[33,4],[32,2],[16, builtin('Number')],[33,5],[32,4],[16, builtin('__Number_isNaN')],[252,3],[4,64],[68,0,0,0,0,0,0,248,127],[65,0],[15],[11],[32,4],[65,0],[16, builtin('__ecma262_HourFromTime')],[65,0],[32,4],[65,0],[16, builtin('__ecma262_MinFromTime')],[65,0],[32,4],[65,0],[16, builtin('__ecma262_SecFromTime')],[65,0],[32,5],[65,0],[16, builtin('__ecma262_MakeTime')],[33,6],[32,4],[65,0],[16, builtin('__ecma262_Day')],[65,0],[32,6],[65,0],[16, builtin('__ecma262_MakeDate')],[65,0],[16, builtin('__ecma262_TimeClip')],[33,7],[32,0],[65,19],[32,7],[65,0],[16, builtin('__Porffor_date_write')],[26],[26],[32,7],[65,0],[15]],
853
+ params: [124,127,124,127],
854
+ typedParams: true,
855
+ returns: [124,127],
856
+ typedReturns: true,
857
+ locals: [124,124,124,124,127],
858
+ localNames: ["_this","_this#type","ms","ms#type","t","milli","time","v","#last_type"],
859
+ };
860
+ this.___date_prototype_setUTCMinutes = {
861
+ wasm: (scope, { allocPage, builtin }) => [[32,0],[65,19],[16, builtin('__Porffor_date_read')],[33,8],[32,2],[16, builtin('Number')],[33,9],[32,8],[16, builtin('__Number_isNaN')],[252,3],[4,64],[68,0,0,0,0,0,0,248,127],[65,0],[15],[11],[32,4],[32,5],[16, builtin('__Porffor_rawType')],[68,0,0,0,0,0,0,8,64],[98],[4,64],[32,4],[16, builtin('Number')],[33,10],[5],[32,8],[65,0],[16, builtin('__ecma262_SecFromTime')],[33,10],[11],[32,6],[32,7],[16, builtin('__Porffor_rawType')],[68,0,0,0,0,0,0,8,64],[98],[4,64],[32,6],[16, builtin('Number')],[33,11],[5],[32,8],[65,0],[16, builtin('__ecma262_msFromTime')],[33,11],[11],[32,8],[65,0],[16, builtin('__ecma262_Day')],[65,0],[32,8],[65,0],[16, builtin('__ecma262_HourFromTime')],[65,0],[32,9],[65,0],[32,10],[65,0],[32,11],[65,0],[16, builtin('__ecma262_MakeTime')],[65,0],[16, builtin('__ecma262_MakeDate')],[34,12],[65,0],[16, builtin('__ecma262_TimeClip')],[33,13],[32,0],[65,19],[32,13],[65,0],[16, builtin('__Porffor_date_write')],[26],[26],[32,13],[65,0],[15]],
862
+ params: [124,127,124,127,124,127,124,127],
863
+ typedParams: true,
864
+ returns: [124,127],
865
+ typedReturns: true,
866
+ locals: [124,124,124,124,124,124,127],
867
+ localNames: ["_this","_this#type","min","min#type","sec","sec#type","ms","ms#type","t","m","s","milli","date","v","#last_type"],
868
+ };
869
+ this.___date_prototype_setUTCMonth = {
870
+ wasm: (scope, { allocPage, builtin }) => [[32,0],[65,19],[16, builtin('__Porffor_date_read')],[33,6],[32,2],[16, builtin('Number')],[33,7],[32,6],[16, builtin('__Number_isNaN')],[252,3],[4,64],[68,0,0,0,0,0,0,248,127],[65,0],[15],[11],[32,4],[32,5],[16, builtin('__Porffor_rawType')],[68,0,0,0,0,0,0,8,64],[98],[4,64],[32,4],[16, builtin('Number')],[33,8],[5],[32,6],[65,0],[16, builtin('__ecma262_DateFromTime')],[33,8],[11],[32,6],[65,0],[16, builtin('__ecma262_YearFromTime')],[65,0],[32,7],[65,0],[32,8],[65,0],[16, builtin('__ecma262_MakeDay')],[65,0],[32,6],[65,0],[16, builtin('__ecma262_TimeWithinDay')],[65,0],[16, builtin('__ecma262_MakeDate')],[34,9],[65,0],[16, builtin('__ecma262_TimeClip')],[33,10],[32,0],[65,19],[32,10],[65,0],[16, builtin('__Porffor_date_write')],[26],[26],[32,10],[65,0],[15]],
871
+ params: [124,127,124,127,124,127],
872
+ typedParams: true,
873
+ returns: [124,127],
874
+ typedReturns: true,
875
+ locals: [124,124,124,124,124,127],
876
+ localNames: ["_this","_this#type","month","month#type","date","date#type","t","m","dt","newDate","v","#last_type"],
877
+ };
878
+ this.___date_prototype_setUTCSeconds = {
879
+ wasm: (scope, { allocPage, builtin }) => [[32,0],[65,19],[16, builtin('__Porffor_date_read')],[33,6],[32,2],[16, builtin('Number')],[33,7],[32,6],[16, builtin('__Number_isNaN')],[252,3],[4,64],[68,0,0,0,0,0,0,248,127],[65,0],[15],[11],[32,4],[32,5],[16, builtin('__Porffor_rawType')],[68,0,0,0,0,0,0,8,64],[98],[4,64],[32,4],[16, builtin('Number')],[33,8],[5],[32,6],[65,0],[16, builtin('__ecma262_msFromTime')],[33,8],[11],[32,6],[65,0],[16, builtin('__ecma262_Day')],[65,0],[32,6],[65,0],[16, builtin('__ecma262_HourFromTime')],[65,0],[32,6],[65,0],[16, builtin('__ecma262_MinFromTime')],[65,0],[32,7],[65,0],[32,8],[65,0],[16, builtin('__ecma262_MakeTime')],[65,0],[16, builtin('__ecma262_MakeDate')],[34,9],[65,0],[16, builtin('__ecma262_TimeClip')],[33,10],[32,0],[65,19],[32,10],[65,0],[16, builtin('__Porffor_date_write')],[26],[26],[32,10],[65,0],[15]],
880
+ params: [124,127,124,127,124,127],
881
+ typedParams: true,
882
+ returns: [124,127],
883
+ typedReturns: true,
884
+ locals: [124,124,124,124,124,127],
885
+ localNames: ["_this","_this#type","sec","sec#type","ms","ms#type","t","s","milli","date","v","#last_type"],
886
+ };
887
+ this.escape = {
888
+ wasm: (scope, { allocPage, builtin }) => [...number(allocPage(scope, 'escape | bytestring: lut', 'i8') * pageSize, 127),[33,2],[32,0],[40,1,0],[34,3],[33,4],[32,0],[33,5],[32,1],[65,18],[70],[4,64],[32,5],[32,3],[106],[33,6],[3,64],[32,5],[32,6],[72],[4,64],[32,5],[32,5],[65,1],[106],[33,5],[45,0,4],[34,7],[65,128,1],[72],[4,64],[32,2],[32,7],[106],[45,0,4],[4,64],[12,3],[11],[11],[32,4],[65,2],[106],[33,4],[12,1],[11],[11],[32,4],[32,3],[70],[4,64],[32,0],[15],[11],...number(allocPage(scope, 'escape | bytestring: output', 'i8') * pageSize, 127),[34,8],[32,4],[34,9],[54,1,0],[32,0],[33,5],[32,8],[33,10],[3,64],[32,5],[32,6],[72],[4,64],[32,5],[32,5],[65,1],[106],[33,5],[45,0,4],[34,7],[65,128,1],[72],[4,64],[32,2],[32,7],[106],[45,0,4],[4,64],[32,10],[32,10],[65,1],[106],[33,10],[32,7],[58,0,4],[12,3],[11],[11],[32,10],[32,10],[65,1],[106],[33,10],[65,37],[58,0,4],[32,7],[65,15],[113],[65,48],[106],[34,11],[65,57],[74],[4,64],[32,11],[65,7],[106],[33,11],[11],[32,7],[65,4],[117],[65,48],[106],[34,12],[65,57],[74],[4,64],[32,12],[65,7],[106],[33,12],[11],[32,10],[32,10],[65,1],[106],[33,10],[32,12],[58,0,4],[32,10],[32,10],[65,1],[106],[33,10],[32,11],[58,0,4],[12,1],[11],[11],[32,8],[15],[11],[32,5],[32,3],[65,2],[108],[106],[33,6],[3,64],[32,5],[32,6],[72],[4,64],[32,5],[47,0,4],[33,7],[32,5],[65,2],[106],[33,5],[32,7],[65,128,1],[72],[4,64],[32,2],[32,7],[106],[45,0,4],[4,64],[12,3],[11],[11],[32,7],[65,128,2],[72],[4,64],[32,4],[65,2],[106],[33,4],[5],[32,4],[65,5],[106],[33,4],[11],[12,1],[11],[11],[32,4],[32,3],[70],[4,64],[32,0],[15],[11],[65,0],[65,0],[54,1,128,128,4],[65,128,128,4],[34,8],[32,4],[34,9],[54,1,0],[32,0],[33,5],[32,8],[33,10],[3,64],[32,5],[32,6],[72],[4,64],[32,5],[47,0,4],[33,7],[32,5],[65,2],[106],[33,5],[32,7],[65,128,1],[72],[4,64],[32,2],[32,7],[106],[45,0,4],[4,64],[32,10],[32,10],[65,1],[106],[33,10],[32,7],[58,0,4],[12,3],[11],[11],[32,7],[65,128,2],[72],[4,64],[32,10],[32,10],[65,1],[106],[33,10],[65,37],[58,0,4],[32,7],[65,15],[113],[65,48],[106],[34,11],[65,57],[74],[4,64],[32,11],[65,7],[106],[33,11],[11],[32,7],[65,4],[117],[65,48],[106],[34,12],[65,57],[74],[4,64],[32,12],[65,7],[106],[33,12],[11],[32,10],[32,10],[65,1],[106],[33,10],[32,12],[58,0,4],[32,10],[32,10],[65,1],[106],[33,10],[32,11],[58,0,4],[5],[32,10],[65,165,234,1],[59,0,4],[32,10],[65,2],[106],[33,10],[32,7],[65,12],[117],[65,15],[113],[65,48],[106],[34,13],[65,57],[74],[4,64],[32,13],[65,7],[106],[33,13],[11],[32,10],[32,10],[65,1],[106],[33,10],[32,13],[58,0,4],[32,7],[65,8],[117],[65,15],[113],[65,48],[106],[34,13],[65,57],[74],[4,64],[32,13],[65,7],[106],[33,13],[11],[32,10],[32,10],[65,1],[106],[33,10],[32,13],[58,0,4],[32,7],[65,4],[117],[65,15],[113],[65,48],[106],[34,13],[65,57],[74],[4,64],[32,13],[65,7],[106],[33,13],[11],[32,10],[32,10],[65,1],[106],[33,10],[32,13],[58,0,4],[32,7],[65,15],[113],[65,48],[106],[34,13],[65,57],[74],[4,64],[32,13],[65,7],[106],[33,13],[11],[32,10],[32,10],[65,1],[106],[33,10],[32,13],[58,0,4],[11],[12,1],[11],[11],[32,8],[15]],
889
+ params: [127,127],
890
+ typedParams: true,
891
+ returns: [127],
892
+ returnType: 18,
893
+ locals: [127,127,127,127,127,127,127,127,127,127,127,127],
894
+ localNames: ["input","input#type","lut","len","outLength","i","endPtr","chr","output","__length_setter_tmp","j","lower","upper","nibble"],
895
+ data: [{"offset":0,"bytes":[128,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,1,1,1,1,1,1,1,1,1,1,1,1,1,0,0,0,0,0,0,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,0,0,0,0,1,0,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,0,0,0,0,0]}],
896
+ };
897
+ this.parseInt = {
898
+ wasm: (scope, { allocPage, builtin }) => [[32,2],[65,0],[16, builtin('__Porffor_rawType')],[68,0,0,0,0,0,0,0,0],[98],[4,64],[68,0,0,0,0,0,0,36,64],[33,2],[11],[32,2],[68,0,0,0,0,0,0,0,0],[97],[4,64],[68,0,0,0,0,0,0,36,64],[33,2],[11],[32,2],[68,0,0,0,0,0,0,0,64],[99],[34,4],[69],[4,127],[32,2],[68,0,0,0,0,0,0,66,64],[100],[65,1],[33,5],[5],[32,4],[65,1],[33,5],[11],[4,64],[68,0,0,0,0,0,0,248,127],[15],[11],[68,0,0,0,0,0,0,77,64],[33,6],[32,2],[68,0,0,0,0,0,0,36,64],[99],[4,64],[68,0,0,0,0,0,0,72,64],[32,2],[160],[33,6],[11],[68,0,0,0,0,0,0,248,127],[33,7],[32,0],[34,8],[252,2],[40,0,0],[183],[33,9],[32,8],[33,10],[68,0,0,0,0,0,0,0,0],[33,11],[32,0],[32,1],[16, builtin('__Porffor_rawType')],[68,0,0,0,0,0,0,50,64],[97],[4,64],[32,10],[32,9],[160],[33,12],[32,10],[252,2],[45,0,4],[183],[34,13],[68,0,0,0,0,0,128,69,64],[97],[4,64],[32,10],[68,0,0,0,0,0,0,240,63],[160],[33,10],[11],[32,13],[68,0,0,0,0,0,128,70,64],[97],[4,64],[68,0,0,0,0,0,0,240,63],[33,11],[32,10],[68,0,0,0,0,0,0,240,63],[160],[33,10],[11],[32,13],[68,0,0,0,0,0,0,72,64],[97],[4,64],[32,10],[68,0,0,0,0,0,0,240,63],[160],[252,2],[45,0,4],[183],[34,14],[68,0,0,0,0,0,0,94,64],[97],[34,4],[69],[4,127],[32,14],[68,0,0,0,0,0,0,86,64],[97],[65,1],[33,5],[5],[32,4],[65,1],[33,5],[11],[4,64],[32,10],[68,0,0,0,0,0,0,0,64],[160],[33,10],[68,0,0,0,0,0,0,48,64],[33,2],[11],[11],[3,64],[32,10],[32,12],[99],[4,64],[32,10],[32,10],[68,0,0,0,0,0,0,240,63],[160],[33,10],[252,2],[45,0,4],[183],[34,15],[68,0,0,0,0,0,0,72,64],[102],[34,4],[4,127],[32,15],[32,6],[99],[65,1],[33,5],[5],[32,4],[65,1],[33,5],[11],[4,64],[32,7],[16, builtin('__Number_isNaN')],[252,3],[4,64],[68,0,0,0,0,0,0,0,0],[33,7],[11],[32,7],[32,2],[162],[34,7],[32,15],[68,0,0,0,0,0,0,72,64],[161],[160],[33,7],[5],[32,2],[68,0,0,0,0,0,0,36,64],[100],[4,64],[32,15],[68,0,0,0,0,0,64,88,64],[102],[34,4],[4,127],[32,15],[68,0,0,0,0,0,192,85,64],[32,2],[160],[99],[65,1],[33,5],[5],[32,4],[65,1],[33,5],[11],[4,64],[32,7],[16, builtin('__Number_isNaN')],[252,3],[4,64],[68,0,0,0,0,0,0,0,0],[33,7],[11],[32,7],[32,2],[162],[34,7],[32,15],[68,0,0,0,0,0,192,85,64],[161],[160],[33,7],[5],[32,15],[68,0,0,0,0,0,64,80,64],[102],[34,4],[4,127],[32,15],[68,0,0,0,0,0,128,75,64],[32,2],[160],[99],[65,1],[33,5],[5],[32,4],[65,1],[33,5],[11],[4,64],[32,7],[16, builtin('__Number_isNaN')],[252,3],[4,64],[68,0,0,0,0,0,0,0,0],[33,7],[11],[32,7],[32,2],[162],[34,7],[32,15],[68,0,0,0,0,0,128,75,64],[161],[160],[33,7],[5],[32,11],[252,3],[4,64],[32,7],[154],[15],[11],[32,7],[15],[11],[11],[5],[32,11],[252,3],[4,64],[32,7],[154],[15],[11],[32,7],[15],[11],[11],[12,1],[11],[11],[32,11],[252,3],[4,64],[32,7],[154],[15],[11],[32,7],[15],[11],[32,10],[32,9],[68,0,0,0,0,0,0,0,64],[162],[160],[33,12],[32,10],[252,2],[47,0,4],[183],[34,13],[68,0,0,0,0,0,128,69,64],[97],[4,64],[32,10],[68,0,0,0,0,0,0,0,64],[160],[33,10],[11],[32,13],[68,0,0,0,0,0,128,70,64],[97],[4,64],[68,0,0,0,0,0,0,240,63],[33,11],[32,10],[68,0,0,0,0,0,0,0,64],[160],[33,10],[11],[32,13],[68,0,0,0,0,0,0,72,64],[97],[4,64],[32,10],[68,0,0,0,0,0,0,0,64],[160],[252,2],[47,0,4],[183],[34,14],[68,0,0,0,0,0,0,94,64],[97],[34,4],[69],[4,127],[32,14],[68,0,0,0,0,0,0,86,64],[97],[65,1],[33,5],[5],[32,4],[65,1],[33,5],[11],[4,64],[32,10],[68,0,0,0,0,0,0,16,64],[160],[33,10],[68,0,0,0,0,0,0,48,64],[33,2],[11],[11],[3,64],[32,10],[32,12],[99],[4,64],[32,10],[252,2],[47,0,4],[183],[33,15],[32,10],[68,0,0,0,0,0,0,0,64],[160],[33,10],[32,15],[68,0,0,0,0,0,0,72,64],[102],[34,4],[4,127],[32,15],[32,6],[99],[65,1],[33,5],[5],[32,4],[65,1],[33,5],[11],[4,64],[32,7],[16, builtin('__Number_isNaN')],[252,3],[4,64],[68,0,0,0,0,0,0,0,0],[33,7],[11],[32,7],[32,2],[162],[34,7],[32,15],[68,0,0,0,0,0,0,72,64],[161],[160],[33,7],[5],[32,2],[68,0,0,0,0,0,0,36,64],[100],[4,64],[32,15],[68,0,0,0,0,0,64,88,64],[102],[34,4],[4,127],[32,15],[68,0,0,0,0,0,192,85,64],[32,2],[160],[99],[65,1],[33,5],[5],[32,4],[65,1],[33,5],[11],[4,64],[32,7],[16, builtin('__Number_isNaN')],[252,3],[4,64],[68,0,0,0,0,0,0,0,0],[33,7],[11],[32,7],[32,2],[162],[34,7],[32,15],[68,0,0,0,0,0,192,85,64],[161],[160],[33,7],[5],[32,15],[68,0,0,0,0,0,64,80,64],[102],[34,4],[4,127],[32,15],[68,0,0,0,0,0,128,75,64],[32,2],[160],[99],[65,1],[33,5],[5],[32,4],[65,1],[33,5],[11],[4,64],[32,7],[16, builtin('__Number_isNaN')],[252,3],[4,64],[68,0,0,0,0,0,0,0,0],[33,7],[11],[32,7],[32,2],[162],[34,7],[32,15],[68,0,0,0,0,0,128,75,64],[161],[160],[33,7],[5],[32,11],[252,3],[4,64],[32,7],[154],[15],[11],[32,7],[15],[11],[11],[5],[32,11],[252,3],[4,64],[32,7],[154],[15],[11],[32,7],[15],[11],[11],[12,1],[11],[11],[32,11],[252,3],[4,64],[32,7],[154],[15],[11],[32,7],[15]],
899
+ params: [124,127,124,127],
900
+ typedParams: true,
901
+ returns: [124],
902
+ returnType: 0,
903
+ locals: [127,127,124,124,124,124,124,124,124,124,124,124],
904
+ localNames: ["input","input#type","radix","radix#type","logictmpi","#last_type","nMax","n","inputPtr","len","i","negative","endPtr","startChr","second","chr"],
905
+ };
906
+ this.__Number_prototype_toString = {
907
+ wasm: (scope, { allocPage, builtin }) => [...number(allocPage(scope, '__Number_prototype_toString | bytestring: out', 'i8') * pageSize, 124),[34,4],[33,5],[32,0],[16, builtin('__Number_isFinite')],[68,0,0,0,0,0,0,0,0],[97],[4,64],[32,0],[16, builtin('__Number_isNaN')],[252,3],[4,64],[65,0],[65,3],[54,1,0],[65,0],[65,206,0],[58,0,4],[65,0],[65,225,0],[58,0,5],[65,0],[65,206,0],[58,0,6],[68,0,0,0,0,0,0,0,0],[33,4],[5],[32,0],[68,0,0,0,0,0,0,240,127],[97],[4,64],[65,0],[65,8],[54,1,0],[65,0],[65,201,0],[58,0,4],[65,0],[65,238,0],[58,0,5],[65,0],[65,230,0],[58,0,6],[65,0],[65,233,0],[58,0,7],[65,0],[65,238,0],[58,0,8],[65,0],[65,233,0],[58,0,9],[65,0],[65,244,0],[58,0,10],[65,0],[65,249,0],[58,0,11],[68,0,0,0,0,0,0,0,0],[33,4],[5],[65,0],[65,9],[54,1,0],[65,0],[65,45],[58,0,4],[65,0],[65,201,0],[58,0,5],[65,0],[65,238,0],[58,0,6],[65,0],[65,230,0],[58,0,7],[65,0],[65,233,0],[58,0,8],[65,0],[65,238,0],[58,0,9],[65,0],[65,233,0],[58,0,10],[65,0],[65,244,0],[58,0,11],[65,0],[65,249,0],[58,0,12],[68,0,0,0,0,0,0,0,0],[33,4],[11],[11],[32,4],[65,18],[15],[11],[32,2],[32,3],[16, builtin('__Porffor_rawType')],[68,0,0,0,0,0,0,0,0],[98],[4,64],[68,0,0,0,0,0,0,36,64],[34,2],[65,0],[33,3],[26],[11],[32,2],[68,0,0,0,0,0,0,0,0],[16, builtin('f64_|')],[34,2],[65,0],[33,3],[26],[32,2],[68,0,0,0,0,0,0,0,64],[99],[34,6],[69],[4,127],[32,2],[68,0,0,0,0,0,0,66,64],[100],[65,1],[33,7],[5],[32,6],[65,1],[33,7],[11],[4,64],[32,4],[65,18],[15],[11],[32,0],[68,0,0,0,0,0,0,0,0],[97],[4,64],[65,0],[65,1],[54,1,0],[65,0],[65,48],[58,0,4],[68,0,0,0,0,0,0,0,0],[34,4],[65,18],[15],[11],[32,0],[68,0,0,0,0,0,0,0,0],[99],[4,64],[32,0],[154],[33,0],[32,5],[32,5],[68,0,0,0,0,0,0,240,63],[160],[33,5],[252,2],[65,45],[58,0,4],[11],[32,0],[16, builtin('__Math_trunc')],[33,8],...number(allocPage(scope, '__Number_prototype_toString | bytestring: digits', 'i8') * pageSize, 124),[33,9],[68,0,0,0,0,0,0,0,0],[33,10],[32,2],[68,0,0,0,0,0,0,36,64],[97],[4,64],[32,8],[68,80,239,226,214,228,26,75,68],[102],[4,64],[68,0,0,0,0,0,0,240,63],[33,11],[68,0,0,0,0,0,0,240,191],[33,12],[3,64],[32,8],[68,0,0,0,0,0,0,0,0],[100],[4,64],[32,8],[32,2],[16, builtin('f64_%')],[33,13],[32,8],[32,2],[163],[16, builtin('__Math_trunc')],[33,8],[32,12],[68,0,0,0,0,0,0,240,63],[160],[33,12],[32,11],[252,3],[4,64],[32,13],[68,0,0,0,0,0,0,0,0],[97],[4,64],[12,3],[11],[68,0,0,0,0,0,0,0,0],[33,11],[11],[32,9],[32,10],[160],[252,2],[32,13],[252,2],[58,0,4],[32,10],[68,0,0,0,0,0,0,240,63],[160],[33,10],[12,1],[11],[11],[32,9],[32,10],[160],[33,14],[32,5],[32,10],[160],[33,15],[32,5],[68,0,0,0,0,0,0,240,63],[160],[33,16],[3,64],[32,5],[32,15],[99],[4,64],[32,5],[32,16],[97],[4,64],[32,5],[32,5],[68,0,0,0,0,0,0,240,63],[160],[33,5],[252,2],[65,46],[58,0,4],[32,15],[68,0,0,0,0,0,0,240,63],[160],[33,15],[11],[32,14],[68,0,0,0,0,0,0,240,63],[161],[34,14],[252,2],[45,0,4],[183],[34,13],[68,0,0,0,0,0,0,36,64],[99],[4,64],[32,13],[68,0,0,0,0,0,0,72,64],[160],[33,13],[5],[32,13],[68,0,0,0,0,0,192,85,64],[160],[33,13],[11],[32,5],[32,5],[68,0,0,0,0,0,0,240,63],[160],[33,5],[252,2],[32,13],[252,2],[58,0,4],[12,1],[11],[11],[32,5],[32,5],[68,0,0,0,0,0,0,240,63],[160],[33,5],[252,2],[65,229,0],[58,0,4],[32,5],[32,5],[68,0,0,0,0,0,0,240,63],[160],[33,5],[252,2],[65,43],[58,0,4],[68,0,0,0,0,0,0,0,0],[33,10],[3,64],[32,12],[68,0,0,0,0,0,0,0,0],[100],[4,64],[32,9],[32,10],[160],[252,2],[32,12],[32,2],[16, builtin('f64_%')],[252,2],[58,0,4],[32,12],[32,2],[163],[16, builtin('__Math_trunc')],[33,12],[32,10],[68,0,0,0,0,0,0,240,63],[160],[33,10],[12,1],[11],[11],[32,9],[32,10],[160],[33,14],[32,5],[32,10],[160],[33,15],[3,64],[32,5],[32,15],[99],[4,64],[32,14],[68,0,0,0,0,0,0,240,63],[161],[34,14],[252,2],[45,0,4],[183],[34,13],[68,0,0,0,0,0,0,36,64],[99],[4,64],[32,13],[68,0,0,0,0,0,0,72,64],[160],[33,13],[5],[32,13],[68,0,0,0,0,0,192,85,64],[160],[33,13],[11],[32,5],[32,5],[68,0,0,0,0,0,0,240,63],[160],[33,5],[252,2],[32,13],[252,2],[58,0,4],[12,1],[11],[11],[32,4],[252,3],[32,5],[32,4],[161],[34,17],[252,3],[54,1,0],[32,4],[65,18],[15],[11],[32,0],[68,141,237,181,160,247,198,176,62],[99],[4,64],[32,0],[33,18],[68,0,0,0,0,0,0,240,63],[33,12],[3,64],[65,1],[4,64],[32,18],[32,2],[162],[34,18],[16, builtin('__Math_trunc')],[34,19],[68,0,0,0,0,0,0,0,0],[100],[4,64],[32,18],[32,19],[161],[68,187,189,215,217,223,124,219,61],[99],[4,64],[12,2],[11],[5],[32,12],[68,0,0,0,0,0,0,240,63],[160],[33,12],[11],[12,1],[11],[11],[3,64],[32,18],[68,0,0,0,0,0,0,0,0],[100],[4,64],[32,18],[32,2],[16, builtin('f64_%')],[33,13],[32,18],[32,2],[163],[16, builtin('__Math_trunc')],[33,18],[32,9],[32,10],[160],[252,2],[32,13],[252,2],[58,0,4],[32,10],[68,0,0,0,0,0,0,240,63],[160],[33,10],[12,1],[11],[11],[32,9],[32,10],[160],[33,14],[32,5],[32,10],[160],[33,15],[32,5],[68,0,0,0,0,0,0,240,63],[160],[33,16],[3,64],[32,5],[32,15],[99],[4,64],[32,14],[68,0,0,0,0,0,0,240,63],[161],[34,14],[252,2],[45,0,4],[183],[33,13],[32,5],[32,16],[97],[4,64],[32,5],[32,5],[68,0,0,0,0,0,0,240,63],[160],[33,5],[252,2],[65,46],[58,0,4],[32,15],[68,0,0,0,0,0,0,240,63],[160],[33,15],[11],[32,13],[68,0,0,0,0,0,0,36,64],[99],[4,64],[32,13],[68,0,0,0,0,0,0,72,64],[160],[33,13],[5],[32,13],[68,0,0,0,0,0,192,85,64],[160],[33,13],[11],[32,5],[32,5],[68,0,0,0,0,0,0,240,63],[160],[33,5],[252,2],[32,13],[252,2],[58,0,4],[12,1],[11],[11],[32,5],[32,5],[68,0,0,0,0,0,0,240,63],[160],[33,5],[252,2],[65,229,0],[58,0,4],[32,5],[32,5],[68,0,0,0,0,0,0,240,63],[160],[33,5],[252,2],[65,45],[58,0,4],[68,0,0,0,0,0,0,0,0],[33,10],[3,64],[32,12],[68,0,0,0,0,0,0,0,0],[100],[4,64],[32,9],[32,10],[160],[252,2],[32,12],[32,2],[16, builtin('f64_%')],[252,2],[58,0,4],[32,12],[32,2],[163],[16, builtin('__Math_trunc')],[33,12],[32,10],[68,0,0,0,0,0,0,240,63],[160],[33,10],[12,1],[11],[11],[32,9],[32,10],[160],[33,14],[32,5],[32,10],[160],[33,15],[3,64],[32,5],[32,15],[99],[4,64],[32,14],[68,0,0,0,0,0,0,240,63],[161],[34,14],[252,2],[45,0,4],[183],[34,13],[68,0,0,0,0,0,0,36,64],[99],[4,64],[32,13],[68,0,0,0,0,0,0,72,64],[160],[33,13],[5],[32,13],[68,0,0,0,0,0,192,85,64],[160],[33,13],[11],[32,5],[32,5],[68,0,0,0,0,0,0,240,63],[160],[33,5],[252,2],[32,13],[252,2],[58,0,4],[12,1],[11],[11],[32,4],[252,3],[32,5],[32,4],[161],[34,17],[252,3],[54,1,0],[32,4],[65,18],[15],[11],[11],[32,8],[68,0,0,0,0,0,0,0,0],[97],[4,64],[32,9],[252,2],[65,0],[58,0,4],[68,0,0,0,0,0,0,240,63],[33,10],[5],[3,64],[32,8],[68,0,0,0,0,0,0,0,0],[100],[4,64],[32,9],[32,10],[160],[252,2],[32,8],[32,2],[16, builtin('f64_%')],[252,2],[58,0,4],[32,8],[32,2],[163],[16, builtin('__Math_trunc')],[33,8],[32,10],[68,0,0,0,0,0,0,240,63],[160],[33,10],[12,1],[11],[11],[11],[32,9],[32,10],[160],[33,14],[32,5],[32,10],[160],[33,15],[3,64],[32,5],[32,15],[99],[4,64],[32,14],[68,0,0,0,0,0,0,240,63],[161],[34,14],[252,2],[45,0,4],[183],[34,13],[68,0,0,0,0,0,0,36,64],[99],[4,64],[32,13],[68,0,0,0,0,0,0,72,64],[160],[33,13],[5],[32,13],[68,0,0,0,0,0,192,85,64],[160],[33,13],[11],[32,5],[32,5],[68,0,0,0,0,0,0,240,63],[160],[33,5],[252,2],[32,13],[252,2],[58,0,4],[12,1],[11],[11],[32,0],[32,0],[16, builtin('__Math_trunc')],[161],[34,18],[68,0,0,0,0,0,0,0,0],[100],[4,64],[32,5],[32,5],[68,0,0,0,0,0,0,240,63],[160],[33,5],[252,2],[65,46],[58,0,4],[32,18],[68,0,0,0,0,0,0,240,63],[160],[33,18],[68,0,0,0,0,0,0,48,64],[32,10],[161],[33,20],[68,0,0,0,0,0,0,0,0],[33,21],[3,64],[32,21],[32,20],[99],[4,64],[32,18],[32,2],[162],[33,18],[32,21],[68,0,0,0,0,0,0,240,63],[160],[33,21],[12,1],[11],[11],[32,18],[16, builtin('__Math_round')],[33,18],[68,0,0,0,0,0,0,0,0],[33,10],[68,0,0,0,0,0,0,240,63],[33,11],[3,64],[32,18],[68,0,0,0,0,0,0,240,63],[100],[4,64],[32,18],[32,2],[16, builtin('f64_%')],[33,13],[32,18],[32,2],[163],[16, builtin('__Math_trunc')],[33,18],[32,11],[252,3],[4,64],[32,13],[68,0,0,0,0,0,0,0,0],[97],[4,64],[12,3],[11],[68,0,0,0,0,0,0,0,0],[33,11],[11],[32,9],[32,10],[160],[252,2],[32,13],[252,2],[58,0,4],[32,10],[68,0,0,0,0,0,0,240,63],[160],[33,10],[12,1],[11],[11],[32,9],[32,10],[160],[33,14],[32,5],[32,10],[160],[33,15],[3,64],[32,5],[32,15],[99],[4,64],[32,14],[68,0,0,0,0,0,0,240,63],[161],[34,14],[252,2],[45,0,4],[183],[34,13],[68,0,0,0,0,0,0,36,64],[99],[4,64],[32,13],[68,0,0,0,0,0,0,72,64],[160],[33,13],[5],[32,13],[68,0,0,0,0,0,192,85,64],[160],[33,13],[11],[32,5],[32,5],[68,0,0,0,0,0,0,240,63],[160],[33,5],[252,2],[32,13],[252,2],[58,0,4],[12,1],[11],[11],[11],[32,4],[252,3],[32,5],[32,4],[161],[34,17],[252,3],[54,1,0],[32,4],[65,18],[15]],
908
+ params: [124,127,124,127],
909
+ typedParams: true,
910
+ returns: [124,127],
911
+ typedReturns: true,
912
+ locals: [124,124,127,127,124,124,124,124,124,124,124,124,124,124,124,124,124,124],
913
+ localNames: ["_this","_this#type","radix","radix#type","out","outPtr","logictmpi","#last_type","i","digits","l","trailing","e","digit","digitsPtr","endPtr","dotPlace","__length_setter_tmp","decimal","intPart","decimalDigits","j"],
914
+ };
915
+ this.__Number_prototype_toFixed = {
916
+ wasm: (scope, { allocPage, builtin }) => [...number(allocPage(scope, '__Number_prototype_toFixed | bytestring: out', 'i8') * pageSize, 124),[34,4],[33,5],[32,0],[16, builtin('__Number_isFinite')],[68,0,0,0,0,0,0,0,0],[97],[4,64],[32,0],[16, builtin('__Number_isNaN')],[252,3],[4,64],[65,0],[65,3],[54,1,128,128,8],[65,0],[65,206,0],[58,0,132,128,8],[65,0],[65,225,0],[58,0,133,128,8],[65,0],[65,206,0],[58,0,134,128,8],[68,0,0,0,0,0,0,0,65],[33,4],[5],[32,0],[68,0,0,0,0,0,0,240,127],[97],[4,64],[65,0],[65,8],[54,1,128,128,8],[65,0],[65,201,0],[58,0,132,128,8],[65,0],[65,238,0],[58,0,133,128,8],[65,0],[65,230,0],[58,0,134,128,8],[65,0],[65,233,0],[58,0,135,128,8],[65,0],[65,238,0],[58,0,136,128,8],[65,0],[65,233,0],[58,0,137,128,8],[65,0],[65,244,0],[58,0,138,128,8],[65,0],[65,249,0],[58,0,139,128,8],[68,0,0,0,0,0,0,0,65],[33,4],[5],[65,0],[65,9],[54,1,128,128,8],[65,0],[65,45],[58,0,132,128,8],[65,0],[65,201,0],[58,0,133,128,8],[65,0],[65,238,0],[58,0,134,128,8],[65,0],[65,230,0],[58,0,135,128,8],[65,0],[65,233,0],[58,0,136,128,8],[65,0],[65,238,0],[58,0,137,128,8],[65,0],[65,233,0],[58,0,138,128,8],[65,0],[65,244,0],[58,0,139,128,8],[65,0],[65,249,0],[58,0,140,128,8],[68,0,0,0,0,0,0,0,65],[33,4],[11],[11],[32,4],[65,18],[15],[11],[32,2],[68,0,0,0,0,0,0,0,0],[16, builtin('f64_|')],[34,2],[68,0,0,0,0,0,0,0,0],[99],[34,6],[69],[4,127],[32,2],[68,0,0,0,0,0,0,89,64],[100],[65,1],[33,7],[5],[32,6],[65,1],[33,7],[11],[4,64],[32,4],[65,18],[15],[11],[32,0],[68,0,0,0,0,0,0,0,0],[99],[4,64],[32,0],[154],[33,0],[32,5],[32,5],[68,0,0,0,0,0,0,240,63],[160],[33,5],[252,2],[65,45],[58,0,4],[11],[32,0],[16, builtin('__Math_trunc')],[33,8],...number(allocPage(scope, '__Number_prototype_toFixed | bytestring: digits', 'i8') * pageSize, 124),[33,9],[68,0,0,0,0,0,0,0,0],[33,10],[32,8],[68,0,0,0,0,0,0,0,0],[97],[4,64],[32,9],[252,2],[65,0],[58,0,4],[68,0,0,0,0,0,0,240,63],[33,10],[5],[3,64],[32,8],[68,0,0,0,0,0,0,0,0],[100],[4,64],[32,9],[32,10],[160],[252,2],[32,8],[68,0,0,0,0,0,0,36,64],[16, builtin('f64_%')],[252,2],[58,0,4],[32,8],[68,0,0,0,0,0,0,36,64],[163],[16, builtin('__Math_trunc')],[33,8],[32,10],[68,0,0,0,0,0,0,240,63],[160],[33,10],[12,1],[11],[11],[11],[32,9],[32,10],[160],[33,11],[32,5],[32,10],[160],[33,12],[3,64],[32,5],[32,12],[99],[4,64],[32,11],[68,0,0,0,0,0,0,240,63],[161],[34,11],[252,2],[45,0,4],[183],[34,13],[68,0,0,0,0,0,0,36,64],[99],[4,64],[32,13],[68,0,0,0,0,0,0,72,64],[160],[33,13],[5],[32,13],[68,0,0,0,0,0,192,85,64],[160],[33,13],[11],[32,5],[32,5],[68,0,0,0,0,0,0,240,63],[160],[33,5],[252,2],[32,13],[252,2],[58,0,4],[12,1],[11],[11],[32,0],[32,0],[16, builtin('__Math_trunc')],[161],[33,14],[32,2],[68,0,0,0,0,0,0,0,0],[100],[4,64],[32,5],[32,5],[68,0,0,0,0,0,0,240,63],[160],[33,5],[252,2],[65,46],[58,0,4],[32,14],[68,0,0,0,0,0,0,240,63],[160],[33,14],[68,0,0,0,0,0,0,0,0],[33,15],[3,64],[32,15],[32,2],[99],[4,64],[32,14],[68,0,0,0,0,0,0,36,64],[162],[33,14],[32,15],[68,0,0,0,0,0,0,240,63],[160],[33,15],[12,1],[11],[11],[32,14],[16, builtin('__Math_round')],[33,14],[68,0,0,0,0,0,0,0,0],[33,10],[3,64],[32,14],[68,0,0,0,0,0,0,240,63],[100],[4,64],[32,14],[68,0,0,0,0,0,0,36,64],[16, builtin('f64_%')],[33,13],[32,14],[68,0,0,0,0,0,0,36,64],[163],[16, builtin('__Math_trunc')],[33,14],[32,9],[32,10],[160],[252,2],[32,13],[252,2],[58,0,4],[32,10],[68,0,0,0,0,0,0,240,63],[160],[33,10],[12,1],[11],[11],[32,9],[32,10],[160],[33,11],[32,5],[32,10],[160],[33,12],[3,64],[32,5],[32,12],[99],[4,64],[32,11],[68,0,0,0,0,0,0,240,63],[161],[34,11],[252,2],[45,0,4],[183],[34,13],[68,0,0,0,0,0,0,36,64],[99],[4,64],[32,13],[68,0,0,0,0,0,0,72,64],[160],[33,13],[5],[32,13],[68,0,0,0,0,0,192,85,64],[160],[33,13],[11],[32,5],[32,5],[68,0,0,0,0,0,0,240,63],[160],[33,5],[252,2],[32,13],[252,2],[58,0,4],[12,1],[11],[11],[11],[32,4],[252,3],[32,5],[32,4],[161],[34,16],[252,3],[54,1,0],[32,4],[65,18],[15]],
917
+ params: [124,127,124,127],
918
+ typedParams: true,
919
+ returns: [124,127],
920
+ typedReturns: true,
921
+ locals: [124,124,127,127,124,124,124,124,124,124,124,124,124],
922
+ localNames: ["_this","_this#type","fractionDigits","fractionDigits#type","out","outPtr","logictmpi","#last_type","i","digits","l","digitsPtr","endPtr","digit","decimal","j","__length_setter_tmp"],
923
+ };
924
+ this.__Number_prototype_toExponential = {
925
+ wasm: (scope, { allocPage, builtin }) => [...number(allocPage(scope, '__Number_prototype_toExponential | bytestring: out', 'i8') * pageSize, 124),[34,4],[33,5],[32,0],[16, builtin('__Number_isFinite')],[68,0,0,0,0,0,0,0,0],[97],[4,64],[32,0],[16, builtin('__Number_isNaN')],[252,3],[4,64],[65,0],[65,3],[54,1,128,128,16],[65,0],[65,206,0],[58,0,132,128,16],[65,0],[65,225,0],[58,0,133,128,16],[65,0],[65,206,0],[58,0,134,128,16],[68,0,0,0,0,0,0,16,65],[33,4],[5],[32,0],[68,0,0,0,0,0,0,240,127],[97],[4,64],[65,0],[65,8],[54,1,128,128,16],[65,0],[65,201,0],[58,0,132,128,16],[65,0],[65,238,0],[58,0,133,128,16],[65,0],[65,230,0],[58,0,134,128,16],[65,0],[65,233,0],[58,0,135,128,16],[65,0],[65,238,0],[58,0,136,128,16],[65,0],[65,233,0],[58,0,137,128,16],[65,0],[65,244,0],[58,0,138,128,16],[65,0],[65,249,0],[58,0,139,128,16],[68,0,0,0,0,0,0,16,65],[33,4],[5],[65,0],[65,9],[54,1,128,128,16],[65,0],[65,45],[58,0,132,128,16],[65,0],[65,201,0],[58,0,133,128,16],[65,0],[65,238,0],[58,0,134,128,16],[65,0],[65,230,0],[58,0,135,128,16],[65,0],[65,233,0],[58,0,136,128,16],[65,0],[65,238,0],[58,0,137,128,16],[65,0],[65,233,0],[58,0,138,128,16],[65,0],[65,244,0],[58,0,139,128,16],[65,0],[65,249,0],[58,0,140,128,16],[68,0,0,0,0,0,0,16,65],[33,4],[11],[11],[32,4],[65,18],[15],[11],[32,2],[32,3],[16, builtin('__Porffor_rawType')],[68,0,0,0,0,0,0,0,0],[98],[4,64],[68,0,0,0,0,0,0,0,0],[34,2],[65,3],[33,3],[26],[5],[32,2],[68,0,0,0,0,0,0,0,0],[16, builtin('f64_|')],[34,2],[65,0],[33,3],[26],[32,2],[68,0,0,0,0,0,0,0,0],[99],[34,6],[69],[4,127],[32,2],[68,0,0,0,0,0,0,89,64],[100],[65,1],[33,7],[5],[32,6],[65,1],[33,7],[11],[4,64],[32,4],[65,18],[15],[11],[11],[32,0],[68,0,0,0,0,0,0,0,0],[99],[4,64],[32,0],[154],[33,0],[32,5],[32,5],[68,0,0,0,0,0,0,240,63],[160],[33,5],[252,2],[65,45],[58,0,4],[11],[32,0],[33,8],...number(allocPage(scope, '__Number_prototype_toExponential | bytestring: digits', 'i8') * pageSize, 124),[33,9],[68,0,0,0,0,0,0,0,0],[33,10],[68,0,0,0,0,0,0,0,0],[33,11],[32,0],[68,0,0,0,0,0,0,0,0],[97],[4,64],[32,5],[32,5],[68,0,0,0,0,0,0,240,63],[160],[33,5],[252,2],[65,48],[58,0,4],[32,2],[68,0,0,0,0,0,0,0,0],[100],[4,64],[32,5],[32,5],[68,0,0,0,0,0,0,240,63],[160],[33,5],[252,2],[65,46],[58,0,4],[68,0,0,0,0,0,0,0,0],[33,14],[3,64],[32,14],[32,2],[99],[4,64],[32,5],[32,5],[68,0,0,0,0,0,0,240,63],[160],[33,5],[252,2],[65,48],[58,0,4],[32,14],[68,0,0,0,0,0,0,240,63],[160],[33,14],[12,1],[11],[11],[11],[32,5],[32,5],[68,0,0,0,0,0,0,240,63],[160],[33,5],[252,2],[65,229,0],[58,0,4],[32,5],[32,5],[68,0,0,0,0,0,0,240,63],[160],[33,5],[252,2],[65,43],[58,0,4],[5],[32,0],[68,0,0,0,0,0,0,240,63],[99],[4,64],[32,2],[32,3],[16, builtin('__Porffor_rawType')],[68,0,0,0,0,0,0,0,0],[98],[4,64],[68,0,0,0,0,0,0,240,63],[33,11],[3,64],[65,1],[4,64],[32,8],[68,0,0,0,0,0,0,36,64],[162],[34,8],[16, builtin('__Math_trunc')],[34,15],[68,0,0,0,0,0,0,0,0],[100],[4,64],[32,8],[32,15],[161],[68,187,189,215,217,223,124,219,61],[99],[4,64],[12,2],[11],[5],[32,11],[68,0,0,0,0,0,0,240,63],[160],[33,11],[11],[12,1],[11],[11],[5],[68,0,0,0,0,0,0,240,63],[33,11],[68,0,0,0,0,0,0,0,0],[33,14],[3,64],[32,14],[32,2],[101],[4,64],[32,8],[68,0,0,0,0,0,0,36,64],[162],[34,8],[16, builtin('__Math_trunc')],[34,15],[68,0,0,0,0,0,0,0,0],[97],[4,64],[32,11],[68,0,0,0,0,0,0,240,63],[160],[33,11],[5],[32,14],[68,0,0,0,0,0,0,240,63],[160],[33,14],[11],[12,1],[11],[11],[11],[3,64],[32,8],[68,0,0,0,0,0,0,0,0],[100],[4,64],[32,8],[68,0,0,0,0,0,0,36,64],[16, builtin('f64_%')],[33,16],[32,8],[68,0,0,0,0,0,0,36,64],[163],[16, builtin('__Math_trunc')],[33,8],[32,9],[32,10],[160],[252,2],[32,16],[252,2],[58,0,4],[32,10],[68,0,0,0,0,0,0,240,63],[160],[33,10],[12,1],[11],[11],[32,9],[32,10],[160],[33,12],[32,5],[32,10],[160],[33,13],[32,5],[68,0,0,0,0,0,0,240,63],[160],[33,17],[3,64],[32,5],[32,13],[99],[4,64],[32,12],[68,0,0,0,0,0,0,240,63],[161],[34,12],[252,2],[45,0,4],[183],[33,16],[32,5],[32,17],[97],[4,64],[32,5],[32,5],[68,0,0,0,0,0,0,240,63],[160],[33,5],[252,2],[65,46],[58,0,4],[32,13],[68,0,0,0,0,0,0,240,63],[160],[33,13],[11],[32,16],[68,0,0,0,0,0,0,36,64],[99],[4,64],[32,16],[68,0,0,0,0,0,0,72,64],[160],[33,16],[5],[32,16],[68,0,0,0,0,0,192,85,64],[160],[33,16],[11],[32,5],[32,5],[68,0,0,0,0,0,0,240,63],[160],[33,5],[252,2],[32,16],[252,2],[58,0,4],[12,1],[11],[11],[32,5],[32,5],[68,0,0,0,0,0,0,240,63],[160],[33,5],[252,2],[65,229,0],[58,0,4],[32,5],[32,5],[68,0,0,0,0,0,0,240,63],[160],[33,5],[252,2],[65,45],[58,0,4],[5],[68,0,0,0,0,0,0,240,191],[33,11],[3,64],[32,8],[68,0,0,0,0,0,0,240,63],[102],[4,64],[32,8],[68,0,0,0,0,0,0,36,64],[163],[33,8],[32,11],[68,0,0,0,0,0,0,240,63],[160],[33,11],[12,1],[11],[11],[32,2],[32,3],[16, builtin('__Porffor_rawType')],[68,0,0,0,0,0,0,0,0],[98],[4,64],[3,64],[65,1],[4,64],[32,8],[68,0,0,0,0,0,0,36,64],[162],[34,8],[16, builtin('__Math_trunc')],[34,15],[68,0,0,0,0,0,0,0,0],[100],[4,64],[32,8],[32,15],[161],[68,187,189,215,217,223,124,219,61],[99],[4,64],[12,2],[11],[5],[32,11],[68,0,0,0,0,0,0,240,63],[160],[33,11],[11],[12,1],[11],[11],[5],[68,0,0,0,0,0,0,0,0],[33,14],[3,64],[32,14],[32,2],[101],[4,64],[32,8],[68,0,0,0,0,0,0,36,64],[162],[33,8],[32,14],[68,0,0,0,0,0,0,240,63],[160],[33,14],[12,1],[11],[11],[11],[32,8],[16, builtin('__Math_round')],[33,8],[3,64],[32,8],[68,0,0,0,0,0,0,0,0],[100],[4,64],[32,8],[68,0,0,0,0,0,0,36,64],[16, builtin('f64_%')],[33,16],[32,8],[68,0,0,0,0,0,0,36,64],[163],[16, builtin('__Math_trunc')],[33,8],[32,9],[32,10],[160],[252,2],[32,16],[252,2],[58,0,4],[32,10],[68,0,0,0,0,0,0,240,63],[160],[33,10],[12,1],[11],[11],[32,9],[32,10],[160],[33,12],[32,5],[32,10],[160],[33,13],[32,5],[68,0,0,0,0,0,0,240,63],[160],[33,17],[3,64],[32,5],[32,13],[99],[4,64],[32,5],[32,17],[97],[4,64],[32,5],[32,5],[68,0,0,0,0,0,0,240,63],[160],[33,5],[252,2],[65,46],[58,0,4],[32,13],[68,0,0,0,0,0,0,240,63],[160],[33,13],[11],[32,12],[68,0,0,0,0,0,0,240,63],[161],[34,12],[252,2],[45,0,4],[183],[34,16],[68,0,0,0,0,0,0,36,64],[99],[4,64],[32,16],[68,0,0,0,0,0,0,72,64],[160],[33,16],[5],[32,16],[68,0,0,0,0,0,192,85,64],[160],[33,16],[11],[32,5],[32,5],[68,0,0,0,0,0,0,240,63],[160],[33,5],[252,2],[32,16],[252,2],[58,0,4],[12,1],[11],[11],[32,5],[32,5],[68,0,0,0,0,0,0,240,63],[160],[33,5],[252,2],[65,229,0],[58,0,4],[32,5],[32,5],[68,0,0,0,0,0,0,240,63],[160],[33,5],[252,2],[65,43],[58,0,4],[11],[11],[32,11],[68,0,0,0,0,0,0,0,0],[97],[4,64],[32,9],[252,2],[65,0],[58,0,4],[68,0,0,0,0,0,0,240,63],[33,10],[5],[68,0,0,0,0,0,0,0,0],[33,10],[3,64],[32,11],[68,0,0,0,0,0,0,0,0],[100],[4,64],[32,9],[32,10],[160],[252,2],[32,11],[68,0,0,0,0,0,0,36,64],[16, builtin('f64_%')],[252,2],[58,0,4],[32,11],[68,0,0,0,0,0,0,36,64],[163],[16, builtin('__Math_trunc')],[33,11],[32,10],[68,0,0,0,0,0,0,240,63],[160],[33,10],[12,1],[11],[11],[11],[32,9],[32,10],[160],[33,12],[32,5],[32,10],[160],[33,13],[3,64],[32,5],[32,13],[99],[4,64],[32,12],[68,0,0,0,0,0,0,240,63],[161],[34,12],[252,2],[45,0,4],[183],[34,16],[68,0,0,0,0,0,0,36,64],[99],[4,64],[32,16],[68,0,0,0,0,0,0,72,64],[160],[33,16],[5],[32,16],[68,0,0,0,0,0,192,85,64],[160],[33,16],[11],[32,5],[32,5],[68,0,0,0,0,0,0,240,63],[160],[33,5],[252,2],[32,16],[252,2],[58,0,4],[12,1],[11],[11],[32,4],[252,3],[32,5],[32,4],[161],[34,18],[252,3],[54,1,0],[32,4],[65,18],[15]],
926
+ params: [124,127,124,127],
927
+ typedParams: true,
928
+ returns: [124,127],
929
+ typedReturns: true,
930
+ locals: [124,124,127,127,124,124,124,124,124,124,124,124,124,124,124],
931
+ localNames: ["_this","_this#type","fractionDigits","fractionDigits#type","out","outPtr","logictmpi","#last_type","i","digits","l","e","digitsPtr","endPtr","j","intPart","digit","dotPlace","__length_setter_tmp"],
932
+ };
933
+ this.__String_fromCharCode = {
934
+ wasm: (scope, { allocPage, builtin }) => [[32,0],[65,128,2],[72],[4,64],...number(allocPage(scope, '__String_fromCharCode | bytestring: out', 'i8') * pageSize, 127),[34,2],[32,0],[58,0,4],[32,2],[65,18],[15],[11],[65,0],[65,1],[54,1,0],[65,0],[65,46],[59,0,4],[65,0],[34,2],[32,0],[59,0,4],[32,2],[65,2],[15]],
935
+ params: [127,127],
936
+ typedParams: true,
937
+ returns: [127,127],
938
+ typedReturns: true,
939
+ locals: [127],
940
+ localNames: ["code","code#type","out"],
941
+ data: [{"offset":0,"bytes":[1,0,0,0,46]}],
942
+ };
943
+ this.__String_prototype_toUpperCase = {
944
+ wasm: (scope, { allocPage, builtin }) => [[32,0],[40,1,0],[33,2],...number(allocPage(scope, '__String_prototype_toUpperCase | string: out', 'i16') * pageSize, 127),[34,3],[32,2],[54,0,0],[32,0],[33,4],[32,3],[33,5],[32,4],[32,2],[65,2],[108],[106],[33,6],[3,64],[32,4],[32,6],[72],[4,64],[32,4],[47,0,4],[33,7],[32,4],[65,2],[106],[33,4],[32,7],[65,225,0],[78],[4,64],[32,7],[65,250,0],[76],[4,64],[32,7],[65,32],[107],[33,7],[11],[11],[32,5],[32,7],[59,0,4],[32,5],[65,2],[106],[33,5],[12,1],[11],[11],[32,3],[65,2],[15]],
945
+ params: [127,127],
946
+ typedParams: true,
947
+ returns: [127,127],
948
+ typedReturns: true,
949
+ locals: [127,127,127,127,127,127],
950
+ localNames: ["_this","_this#type","len","out","i","j","endPtr","chr"],
951
+ };
952
+ this.___bytestring_prototype_toUpperCase = {
953
+ wasm: (scope, { allocPage, builtin }) => [[32,0],[40,1,0],[33,2],...number(allocPage(scope, '___bytestring_prototype_toUpperCase | bytestring: out', 'i8') * pageSize, 127),[34,3],[32,2],[54,0,0],[32,0],[33,4],[32,3],[33,5],[32,4],[32,2],[106],[33,6],[3,64],[32,4],[32,6],[72],[4,64],[32,4],[32,4],[65,1],[106],[33,4],[45,0,4],[34,7],[65,225,0],[78],[4,64],[32,7],[65,250,0],[76],[4,64],[32,7],[65,32],[107],[33,7],[11],[11],[32,5],[32,5],[65,1],[106],[33,5],[32,7],[58,0,4],[12,1],[11],[11],[32,3],[65,18],[15]],
954
+ params: [127,127],
955
+ typedParams: true,
956
+ returns: [127,127],
957
+ typedReturns: true,
958
+ locals: [127,127,127,127,127,127],
959
+ localNames: ["_this","_this#type","len","out","i","j","endPtr","chr"],
960
+ };
961
+ this.__String_prototype_toLowerCase = {
962
+ wasm: (scope, { allocPage, builtin }) => [[32,0],[40,1,0],[33,2],...number(allocPage(scope, '__String_prototype_toLowerCase | string: out', 'i16') * pageSize, 127),[34,3],[32,2],[54,0,0],[32,0],[33,4],[32,3],[33,5],[32,4],[32,2],[65,2],[108],[106],[33,6],[3,64],[32,4],[32,6],[72],[4,64],[32,4],[47,0,4],[33,7],[32,4],[65,2],[106],[33,4],[32,7],[65,193,0],[78],[4,64],[32,7],[65,218,0],[76],[4,64],[32,7],[65,32],[106],[33,7],[11],[11],[32,5],[32,7],[59,0,4],[32,5],[65,2],[106],[33,5],[12,1],[11],[11],[32,3],[65,2],[15]],
963
+ params: [127,127],
964
+ typedParams: true,
965
+ returns: [127,127],
966
+ typedReturns: true,
967
+ locals: [127,127,127,127,127,127],
968
+ localNames: ["_this","_this#type","len","out","i","j","endPtr","chr"],
969
+ };
970
+ this.___bytestring_prototype_toLowerCase = {
971
+ wasm: (scope, { allocPage, builtin }) => [[32,0],[40,1,0],[33,2],...number(allocPage(scope, '___bytestring_prototype_toLowerCase | bytestring: out', 'i8') * pageSize, 127),[34,3],[32,2],[54,0,0],[32,0],[33,4],[32,3],[33,5],[32,4],[32,2],[106],[33,6],[3,64],[32,4],[32,6],[72],[4,64],[32,4],[32,4],[65,1],[106],[33,4],[45,0,4],[34,7],[65,193,0],[78],[4,64],[32,7],[65,218,0],[76],[4,64],[32,7],[65,32],[106],[33,7],[11],[11],[32,5],[32,5],[65,1],[106],[33,5],[32,7],[58,0,4],[12,1],[11],[11],[32,3],[65,18],[15]],
972
+ params: [127,127],
973
+ typedParams: true,
974
+ returns: [127,127],
975
+ typedReturns: true,
976
+ locals: [127,127,127,127,127,127],
977
+ localNames: ["_this","_this#type","len","out","i","j","endPtr","chr"],
978
+ };
979
+ this.__String_prototype_startsWith = {
980
+ wasm: (scope, { allocPage, builtin }) => [[32,0],[33,6],[32,2],[33,7],[32,0],[40,1,0],[33,8],[32,4],[65,0],[74],[4,64],[32,4],[32,8],[74],[4,64],[32,8],[33,4],[5],[32,4],[65,0],[114],[33,4],[11],[5],[65,0],[33,4],[11],[32,6],[32,4],[65,2],[108],[106],[33,6],[32,2],[40,1,0],[65,2],[108],[33,9],[65,0],[33,10],[3,64],[32,10],[32,9],[72],[4,64],[32,6],[32,10],[106],[47,0,4],[33,11],[32,7],[32,10],[106],[47,0,4],[33,12],[32,11],[32,12],[71],[4,64],[65,0],[65,1],[15],[11],[32,10],[65,2],[106],[34,10],[12,1],[11],[11],[65,1],[65,1],[15]],
981
+ params: [127,127,127,127,127,127],
982
+ typedParams: true,
983
+ returns: [127,127],
984
+ typedReturns: true,
985
+ locals: [127,127,127,127,127,127,127],
986
+ localNames: ["_this","_this#type","searchString","searchString#type","position","position#type","thisPtr","searchPtr","len","searchLen","i","chr","expected"],
987
+ };
988
+ this.___bytestring_prototype_startsWith = {
989
+ wasm: (scope, { allocPage, builtin }) => [[32,3],[65,18],[71],[4,64],[65,0],[65,1],[15],[11],[32,0],[33,6],[32,2],[33,7],[32,0],[40,1,0],[33,8],[32,4],[65,0],[74],[4,64],[32,4],[32,8],[74],[4,64],[32,8],[33,4],[5],[32,4],[65,0],[114],[33,4],[11],[5],[65,0],[33,4],[11],[32,6],[32,4],[106],[33,6],[32,2],[40,1,0],[33,9],[65,0],[33,10],[3,64],[32,10],[32,9],[72],[4,64],[32,6],[32,10],[106],[45,0,4],[33,11],[32,7],[32,10],[106],[45,0,4],[33,12],[32,11],[32,12],[71],[4,64],[65,0],[65,1],[15],[11],[32,10],[65,1],[106],[33,10],[12,1],[11],[11],[65,1],[65,1],[15]],
990
+ params: [127,127,127,127,127,127],
991
+ typedParams: true,
992
+ returns: [127,127],
993
+ typedReturns: true,
994
+ locals: [127,127,127,127,127,127,127],
995
+ localNames: ["_this","_this#type","searchString","searchString#type","position","position#type","thisPtr","searchPtr","len","searchLen","i","chr","expected"],
996
+ };
997
+ this.__String_prototype_endsWith = {
998
+ wasm: (scope, { allocPage, builtin }) => [[32,0],[33,6],[32,2],[33,7],[32,2],[40,1,0],[33,8],[32,0],[40,1,0],[33,9],[32,5],[65,3],[70],[4,64],[32,9],[33,4],[11],[32,4],[65,0],[74],[4,64],[32,4],[32,9],[74],[4,64],[32,9],[33,4],[5],[32,4],[65,0],[114],[33,4],[11],[5],[65,0],[33,4],[11],[32,4],[32,8],[107],[34,4],[65,0],[72],[4,64],[65,0],[65,1],[15],[11],[32,6],[32,4],[65,2],[108],[106],[33,6],[32,7],[32,8],[65,2],[108],[106],[33,10],[3,64],[32,7],[32,10],[72],[4,64],[32,6],[47,0,4],[33,11],[32,7],[47,0,4],[33,12],[32,6],[65,2],[106],[33,6],[32,7],[65,2],[106],[33,7],[32,11],[32,12],[71],[4,64],[65,0],[65,1],[15],[11],[12,1],[11],[11],[65,1],[65,1],[15]],
999
+ params: [127,127,127,127,127,127],
1000
+ typedParams: true,
1001
+ returns: [127,127],
1002
+ typedReturns: true,
1003
+ locals: [127,127,127,127,127,127,127],
1004
+ localNames: ["_this","_this#type","searchString","searchString#type","endPosition","endPosition#type","i","j","searchLen","len","endPtr","chr","expected"],
1005
+ };
1006
+ this.___bytestring_prototype_endsWith = {
1007
+ wasm: (scope, { allocPage, builtin }) => [[32,3],[65,18],[71],[4,64],[65,0],[65,1],[15],[11],[32,0],[33,6],[32,2],[33,7],[32,2],[40,1,0],[33,8],[32,0],[40,1,0],[33,9],[32,5],[65,3],[70],[4,64],[32,9],[33,4],[11],[32,4],[65,0],[74],[4,64],[32,4],[32,9],[74],[4,64],[32,9],[33,4],[5],[32,4],[65,0],[114],[33,4],[11],[5],[65,0],[33,4],[11],[32,4],[32,8],[107],[34,4],[65,0],[72],[4,64],[65,0],[65,1],[15],[11],[32,6],[32,4],[106],[33,6],[32,7],[32,8],[106],[33,10],[3,64],[32,7],[32,10],[72],[4,64],[32,6],[32,6],[65,1],[106],[33,6],[45,0,4],[33,11],[32,7],[32,7],[65,1],[106],[33,7],[45,0,4],[33,12],[32,11],[32,12],[71],[4,64],[65,0],[65,1],[15],[11],[12,1],[11],[11],[65,1],[65,1],[15]],
1008
+ params: [127,127,127,127,127,127],
1009
+ typedParams: true,
1010
+ returns: [127,127],
1011
+ typedReturns: true,
1012
+ locals: [127,127,127,127,127,127,127],
1013
+ localNames: ["_this","_this#type","searchString","searchString#type","endPosition","endPosition#type","i","j","searchLen","len","endPtr","chr","expected"],
1014
+ };
1015
+ this.__String_prototype_indexOf = {
1016
+ wasm: (scope, { allocPage, builtin }) => [[32,0],[33,6],[32,2],[33,7],[32,2],[40,1,0],[65,2],[108],[33,8],[32,0],[40,1,0],[33,9],[32,4],[65,0],[74],[4,64],[32,4],[32,9],[74],[4,64],[32,9],[33,4],[5],[32,4],[65,0],[114],[33,4],[11],[5],[65,0],[33,4],[11],[32,6],[32,9],[65,2],[108],[106],[32,8],[107],[33,10],[32,6],[32,4],[65,2],[108],[106],[33,6],[3,64],[32,6],[32,10],[76],[4,64],[65,1],[33,11],[65,0],[33,12],[3,64],[32,12],[32,8],[72],[4,64],[2,64],[32,6],[32,12],[106],[47,0,4],[33,13],[32,7],[32,12],[106],[47,0,4],[33,14],[32,13],[32,14],[71],[4,64],[65,0],[33,11],[12,2],[11],[11],[32,12],[65,2],[106],[34,12],[12,1],[11],[11],[32,11],[4,64],[32,6],[32,0],[107],[65,2],[109],[65,0],[15],[11],[32,6],[65,2],[106],[33,6],[12,1],[11],[11],[65,127],[65,0],[15]],
1017
+ params: [127,127,127,127,127,127],
1018
+ typedParams: true,
1019
+ returns: [127,127],
1020
+ typedReturns: true,
1021
+ locals: [127,127,127,127,127,127,127,127,127],
1022
+ localNames: ["_this","_this#type","searchString","searchString#type","position","position#type","thisPtr","searchPtr","searchLenX2","len","thisPtrEnd","match","i","chr","expected"],
1023
+ };
1024
+ this.___bytestring_prototype_indexOf = {
1025
+ wasm: (scope, { allocPage, builtin }) => [[32,3],[65,18],[71],[4,64],[65,127],[65,0],[15],[11],[32,0],[33,6],[32,2],[33,7],[32,2],[40,1,0],[33,8],[32,0],[40,1,0],[33,9],[32,4],[65,0],[74],[4,64],[32,4],[32,9],[74],[4,64],[32,9],[33,4],[5],[32,4],[65,0],[114],[33,4],[11],[5],[65,0],[33,4],[11],[32,6],[32,9],[106],[32,8],[107],[33,10],[32,6],[32,4],[106],[33,6],[3,64],[32,6],[32,10],[76],[4,64],[65,1],[33,11],[65,0],[33,12],[3,64],[32,12],[32,8],[72],[4,64],[2,64],[32,6],[32,12],[106],[45,0,4],[33,13],[32,7],[32,12],[106],[45,0,4],[33,14],[32,13],[32,14],[71],[4,64],[65,0],[33,11],[12,2],[11],[11],[32,12],[65,1],[106],[33,12],[12,1],[11],[11],[32,11],[4,64],[32,6],[32,0],[107],[65,0],[15],[11],[32,6],[65,1],[106],[33,6],[12,1],[11],[11],[65,127],[65,0],[15]],
1026
+ params: [127,127,127,127,127,127],
1027
+ typedParams: true,
1028
+ returns: [127,127],
1029
+ typedReturns: true,
1030
+ locals: [127,127,127,127,127,127,127,127,127],
1031
+ localNames: ["_this","_this#type","searchString","searchString#type","position","position#type","thisPtr","searchPtr","searchLen","len","thisPtrEnd","match","i","chr","expected"],
1032
+ };
1033
+ this.__String_prototype_lastIndexOf = {
1034
+ wasm: (scope, { allocPage, builtin }) => [[32,0],[33,6],[32,2],[33,7],[32,2],[40,1,0],[34,8],[65,2],[108],[33,9],[32,0],[40,1,0],[33,10],[32,5],[65,3],[70],[4,64],[32,10],[32,8],[107],[33,4],[11],[32,4],[65,0],[74],[4,64],[32,10],[32,8],[107],[33,11],[32,4],[32,11],[74],[4,64],[32,11],[33,4],[5],[32,4],[65,0],[114],[33,4],[11],[5],[65,0],[33,4],[11],[32,6],[33,12],[32,6],[32,4],[65,2],[108],[106],[33,6],[3,64],[32,6],[32,12],[78],[4,64],[65,1],[33,13],[65,0],[33,14],[3,64],[32,14],[32,9],[72],[4,64],[2,64],[32,6],[32,14],[106],[45,0,4],[33,15],[32,7],[32,14],[106],[45,0,4],[33,16],[32,15],[32,16],[71],[4,64],[65,0],[33,13],[12,2],[11],[11],[32,14],[65,2],[106],[34,14],[12,1],[11],[11],[32,13],[4,64],[32,6],[32,0],[107],[65,2],[109],[65,0],[15],[11],[32,6],[65,2],[107],[33,6],[12,1],[11],[11],[65,127],[65,0],[15]],
1035
+ params: [127,127,127,127,127,127],
1036
+ typedParams: true,
1037
+ returns: [127,127],
1038
+ typedReturns: true,
1039
+ locals: [127,127,127,127,127,127,127,127,127,127,127],
1040
+ localNames: ["_this","_this#type","searchString","searchString#type","position","position#type","thisPtr","searchPtr","searchLen","searchLenX2","len","max","thisPtrStart","match","i","chr","expected"],
1041
+ };
1042
+ this.___bytestring_prototype_lastIndexOf = {
1043
+ wasm: (scope, { allocPage, builtin }) => [[32,3],[65,18],[71],[4,64],[65,127],[65,0],[15],[11],[32,0],[33,6],[32,2],[33,7],[32,2],[40,1,0],[33,8],[32,0],[40,1,0],[33,9],[32,5],[65,3],[70],[4,64],[32,9],[32,8],[107],[33,4],[11],[32,4],[65,0],[74],[4,64],[32,9],[32,8],[107],[33,10],[32,4],[32,10],[74],[4,64],[32,10],[33,4],[5],[32,4],[65,0],[114],[33,4],[11],[5],[65,0],[33,4],[11],[32,6],[33,11],[32,6],[32,4],[106],[33,6],[3,64],[32,6],[32,11],[78],[4,64],[65,1],[33,12],[65,0],[33,13],[3,64],[32,13],[32,8],[72],[4,64],[2,64],[32,6],[32,13],[106],[45,0,4],[33,14],[32,7],[32,13],[106],[45,0,4],[33,15],[32,14],[32,15],[71],[4,64],[65,0],[33,12],[12,2],[11],[11],[32,13],[65,1],[106],[33,13],[12,1],[11],[11],[32,12],[4,64],[32,6],[32,0],[107],[65,0],[15],[11],[32,6],[65,1],[107],[33,6],[12,1],[11],[11],[65,127],[65,0],[15]],
1044
+ params: [127,127,127,127,127,127],
1045
+ typedParams: true,
1046
+ returns: [127,127],
1047
+ typedReturns: true,
1048
+ locals: [127,127,127,127,127,127,127,127,127,127],
1049
+ localNames: ["_this","_this#type","searchString","searchString#type","position","position#type","thisPtr","searchPtr","searchLen","len","max","thisPtrStart","match","i","chr","expected"],
1050
+ };
1051
+ this.__String_prototype_includes = {
1052
+ wasm: (scope, { allocPage, builtin }) => [[32,0],[33,6],[32,2],[33,7],[32,2],[40,1,0],[65,2],[108],[33,8],[32,0],[40,1,0],[33,9],[32,4],[65,0],[74],[4,64],[32,4],[32,9],[74],[4,64],[32,9],[33,4],[5],[32,4],[65,0],[114],[33,4],[11],[5],[65,0],[33,4],[11],[32,6],[32,9],[65,2],[108],[106],[32,8],[107],[33,10],[32,6],[32,4],[65,2],[108],[106],[33,6],[3,64],[32,6],[32,10],[76],[4,64],[65,1],[33,11],[65,0],[33,12],[3,64],[32,12],[32,8],[72],[4,64],[2,64],[32,6],[32,12],[106],[47,0,4],[33,13],[32,7],[32,12],[106],[47,0,4],[33,14],[32,13],[32,14],[71],[4,64],[65,0],[33,11],[12,2],[11],[11],[32,12],[65,2],[106],[34,12],[12,1],[11],[11],[32,11],[4,64],[65,1],[65,1],[15],[11],[32,6],[65,2],[106],[33,6],[12,1],[11],[11],[65,0],[65,1],[15]],
1053
+ params: [127,127,127,127,127,127],
1054
+ typedParams: true,
1055
+ returns: [127,127],
1056
+ typedReturns: true,
1057
+ locals: [127,127,127,127,127,127,127,127,127],
1058
+ localNames: ["_this","_this#type","searchString","searchString#type","position","position#type","thisPtr","searchPtr","searchLenX2","len","thisPtrEnd","match","i","chr","expected"],
1059
+ };
1060
+ this.___bytestring_prototype_includes = {
1061
+ wasm: (scope, { allocPage, builtin }) => [[32,3],[65,18],[71],[4,64],[65,127],[65,0],[15],[11],[32,0],[33,6],[32,2],[33,7],[32,2],[40,1,0],[33,8],[32,0],[40,1,0],[33,9],[32,4],[65,0],[74],[4,64],[32,4],[32,9],[74],[4,64],[32,9],[33,4],[5],[32,4],[65,0],[114],[33,4],[11],[5],[65,0],[33,4],[11],[32,6],[32,9],[106],[32,8],[107],[33,10],[32,6],[32,4],[106],[33,6],[3,64],[32,6],[32,10],[76],[4,64],[65,1],[33,11],[65,0],[33,12],[3,64],[32,12],[32,8],[72],[4,64],[2,64],[32,6],[32,12],[106],[45,0,4],[33,13],[32,7],[32,12],[106],[45,0,4],[33,14],[32,13],[32,14],[71],[4,64],[65,0],[33,11],[12,2],[11],[11],[32,12],[65,1],[106],[33,12],[12,1],[11],[11],[32,11],[4,64],[65,1],[65,1],[15],[11],[32,6],[65,1],[106],[33,6],[12,1],[11],[11],[65,0],[65,1],[15]],
1062
+ params: [127,127,127,127,127,127],
1063
+ typedParams: true,
1064
+ returns: [127,127],
1065
+ typedReturns: true,
1066
+ locals: [127,127,127,127,127,127,127,127,127],
1067
+ localNames: ["_this","_this#type","searchString","searchString#type","position","position#type","thisPtr","searchPtr","searchLen","len","thisPtrEnd","match","i","chr","expected"],
1068
+ };
1069
+ this.__String_prototype_padStart = {
1070
+ wasm: (scope, { allocPage, builtin }) => [...number(allocPage(scope, '__String_prototype_padStart | string: out', 'i16') * pageSize, 127),[34,6],[33,7],[32,0],[33,8],[32,0],[40,1,0],[33,9],[32,2],[65,0],[114],[34,2],[32,9],[107],[34,10],[65,0],[74],[4,64],[32,5],[65,3],[70],[4,64],[65,0],[33,11],[3,64],[32,11],[32,10],[72],[4,64],[32,7],[65,32],[59,0,4],[32,7],[65,2],[106],[33,7],[32,11],[65,1],[106],[33,11],[12,1],[11],[11],[32,6],[32,2],[34,12],[54,1,0],[5],[32,4],[40,1,0],[34,13],[65,0],[74],[4,64],[65,0],[33,11],[3,64],[32,11],[32,10],[72],[4,64],[2,64],[32,7],[32,4],[34,15],[40,1,0],[33,14],[2,127],[32,11],[32,13],[111],[34,16],[32,14],[78],[4,64],[65,127],[12,1],[11],[32,16],[65,2],[108],[32,15],[106],[47,0,4],[11],[59,0,4],[32,7],[65,2],[106],[33,7],[11],[32,11],[65,1],[106],[33,11],[12,1],[11],[11],[32,6],[32,2],[34,12],[54,1,0],[5],[32,6],[32,9],[34,12],[54,1,0],[11],[11],[5],[32,6],[32,9],[34,12],[54,1,0],[11],[32,8],[32,9],[65,2],[108],[106],[33,18],[3,64],[32,8],[32,18],[72],[4,64],[32,7],[32,8],[47,0,4],[59,0,4],[32,8],[65,2],[106],[33,8],[32,7],[65,2],[106],[33,7],[12,1],[11],[11],[32,6],[65,2],[15]],
1071
+ params: [127,127,127,127,127,127],
1072
+ typedParams: true,
1073
+ returns: [127,127],
1074
+ typedReturns: true,
1075
+ locals: [127,127,127,127,127,127,127,127,127,127,127,127,127],
1076
+ localNames: ["_this","_this#type","targetLength","targetLength#type","padString","padString#type","out","outPtr","thisPtr","len","todo","i","__length_setter_tmp","padStringLen","__proto_length_cache","__proto_pointer_cache","__charCodeAt_tmp","#last_type","thisPtrEnd"],
1077
+ exceptions: [{"constructor":"TypeError","message":"'charCodeAt' proto func tried to be called on a type without an impl","exceptId":0}],
1078
+ };
1079
+ this.___bytestring_prototype_padStart = {
1080
+ wasm: (scope, { allocPage, builtin }) => [...number(allocPage(scope, '___bytestring_prototype_padStart | bytestring: out', 'i8') * pageSize, 127),[34,6],[33,7],[32,0],[33,8],[32,4],[33,9],[32,0],[40,1,0],[33,10],[32,2],[65,0],[114],[34,2],[32,10],[107],[34,11],[65,0],[74],[4,64],[32,5],[65,3],[70],[4,64],[65,0],[33,12],[3,64],[32,12],[32,11],[72],[4,64],[32,7],[32,7],[65,1],[106],[33,7],[65,32],[58,0,4],[32,12],[65,1],[106],[33,12],[12,1],[11],[11],[32,6],[32,2],[34,13],[54,1,0],[5],[32,4],[40,1,0],[34,14],[65,0],[74],[4,64],[65,0],[33,12],[3,64],[32,12],[32,11],[72],[4,64],[32,7],[32,7],[65,1],[106],[33,7],[32,9],[32,12],[32,14],[111],[106],[45,0,4],[58,0,4],[32,12],[65,1],[106],[33,12],[12,1],[11],[11],[32,6],[32,2],[34,13],[54,1,0],[5],[32,6],[32,10],[34,13],[54,1,0],[11],[11],[5],[32,6],[32,10],[34,13],[54,1,0],[11],[32,8],[32,10],[106],[33,15],[3,64],[32,8],[32,15],[72],[4,64],[32,7],[32,7],[65,1],[106],[33,7],[32,8],[32,8],[65,1],[106],[33,8],[45,0,4],[58,0,4],[12,1],[11],[11],[32,6],[65,18],[15]],
1081
+ params: [127,127,127,127,127,127],
1082
+ typedParams: true,
1083
+ returns: [127,127],
1084
+ typedReturns: true,
1085
+ locals: [127,127,127,127,127,127,127,127,127,127],
1086
+ localNames: ["_this","_this#type","targetLength","targetLength#type","padString","padString#type","out","outPtr","thisPtr","padStringPtr","len","todo","i","__length_setter_tmp","padStringLen","thisPtrEnd"],
1087
+ };
1088
+ this.__String_prototype_padEnd = {
1089
+ wasm: (scope, { allocPage, builtin }) => [...number(allocPage(scope, '__String_prototype_padEnd | string: out', 'i16') * pageSize, 127),[34,6],[33,7],[32,0],[33,8],[32,0],[40,1,0],[33,9],[32,8],[32,9],[65,2],[108],[106],[33,10],[3,64],[32,8],[32,10],[72],[4,64],[32,7],[32,8],[47,0,4],[59,0,4],[32,8],[65,2],[106],[33,8],[32,7],[65,2],[106],[33,7],[12,1],[11],[11],[32,2],[65,0],[114],[34,2],[32,9],[107],[34,11],[65,0],[74],[4,64],[32,5],[65,3],[70],[4,64],[65,0],[33,12],[3,64],[32,12],[32,11],[72],[4,64],[32,7],[65,32],[59,0,4],[32,7],[65,2],[106],[33,7],[32,12],[65,1],[106],[33,12],[12,1],[11],[11],[32,6],[32,2],[34,13],[54,1,0],[5],[32,4],[40,1,0],[34,14],[65,0],[74],[4,64],[65,0],[33,12],[3,64],[32,12],[32,11],[72],[4,64],[2,64],[32,7],[32,4],[34,16],[40,1,0],[33,15],[2,127],[32,12],[32,14],[111],[34,17],[32,15],[78],[4,64],[65,127],[12,1],[11],[32,17],[65,2],[108],[32,16],[106],[47,0,4],[11],[59,0,4],[32,7],[65,2],[106],[33,7],[11],[32,12],[65,1],[106],[33,12],[12,1],[11],[11],[32,6],[32,2],[34,13],[54,1,0],[5],[32,6],[32,9],[34,13],[54,1,0],[11],[11],[5],[32,6],[32,9],[34,13],[54,1,0],[11],[32,6],[65,2],[15]],
1090
+ params: [127,127,127,127,127,127],
1091
+ typedParams: true,
1092
+ returns: [127,127],
1093
+ typedReturns: true,
1094
+ locals: [127,127,127,127,127,127,127,127,127,127,127,127,127],
1095
+ localNames: ["_this","_this#type","targetLength","targetLength#type","padString","padString#type","out","outPtr","thisPtr","len","thisPtrEnd","todo","i","__length_setter_tmp","padStringLen","__proto_length_cache","__proto_pointer_cache","__charCodeAt_tmp","#last_type"],
1096
+ exceptions: [{"constructor":"TypeError","message":"'charCodeAt' proto func tried to be called on a type without an impl","exceptId":1}],
1097
+ };
1098
+ this.___bytestring_prototype_padEnd = {
1099
+ wasm: (scope, { allocPage, builtin }) => [...number(allocPage(scope, '___bytestring_prototype_padEnd | bytestring: out', 'i8') * pageSize, 127),[34,6],[33,7],[32,0],[33,8],[32,4],[33,9],[32,0],[40,1,0],[33,10],[32,8],[32,10],[106],[33,11],[3,64],[32,8],[32,11],[72],[4,64],[32,7],[32,7],[65,1],[106],[33,7],[32,8],[32,8],[65,1],[106],[33,8],[45,0,4],[58,0,4],[12,1],[11],[11],[32,2],[65,0],[114],[34,2],[32,10],[107],[34,12],[65,0],[74],[4,64],[32,5],[65,3],[70],[4,64],[65,0],[33,13],[3,64],[32,13],[32,12],[72],[4,64],[32,7],[32,7],[65,1],[106],[33,7],[65,32],[58,0,4],[32,13],[65,1],[106],[33,13],[12,1],[11],[11],[32,6],[32,2],[34,14],[54,1,0],[5],[32,4],[40,1,0],[34,15],[65,0],[74],[4,64],[65,0],[33,13],[3,64],[32,13],[32,12],[72],[4,64],[32,7],[32,7],[65,1],[106],[33,7],[32,9],[32,13],[32,15],[111],[106],[45,0,4],[58,0,4],[32,13],[65,1],[106],[33,13],[12,1],[11],[11],[32,6],[32,2],[34,14],[54,1,0],[5],[32,6],[32,10],[34,14],[54,1,0],[11],[11],[5],[32,6],[32,10],[34,14],[54,1,0],[11],[32,6],[65,18],[15]],
1100
+ params: [127,127,127,127,127,127],
1101
+ typedParams: true,
1102
+ returns: [127,127],
1103
+ typedReturns: true,
1104
+ locals: [127,127,127,127,127,127,127,127,127,127],
1105
+ localNames: ["_this","_this#type","targetLength","targetLength#type","padString","padString#type","out","outPtr","thisPtr","padStringPtr","len","thisPtrEnd","todo","i","__length_setter_tmp","padStringLen"],
1106
+ };
1107
+ this.__String_prototype_substring = {
1108
+ wasm: (scope, { allocPage, builtin }) => [[32,0],[40,1,0],[33,6],[32,5],[65,3],[70],[4,64],[32,6],[33,4],[5],[32,2],[32,4],[74],[4,64],[32,4],[33,7],[32,2],[33,4],[32,7],[33,2],[11],[11],[32,2],[65,0],[114],[33,2],[32,4],[65,0],[114],[33,4],[32,2],[65,0],[72],[4,64],[65,0],[33,2],[11],[32,2],[32,6],[74],[4,64],[32,6],[33,2],[11],[32,4],[65,0],[72],[4,64],[65,0],[33,4],[11],[32,4],[32,6],[74],[4,64],[32,6],[33,4],[11],...number(allocPage(scope, '__String_prototype_substring | string: out', 'i16') * pageSize, 127),[34,8],[33,9],[32,0],[34,10],[32,4],[65,2],[108],[106],[33,11],[32,10],[32,2],[65,2],[108],[106],[33,10],[3,64],[32,10],[32,11],[72],[4,64],[32,9],[32,10],[47,0,4],[59,0,4],[32,10],[65,2],[106],[33,10],[32,9],[65,2],[106],[33,9],[12,1],[11],[11],[32,8],[32,4],[32,2],[107],[34,12],[54,1,0],[32,8],[65,2],[15]],
1109
+ params: [127,127,127,127,127,127],
1110
+ typedParams: true,
1111
+ returns: [127,127],
1112
+ typedReturns: true,
1113
+ locals: [127,127,127,127,127,127,127],
1114
+ localNames: ["_this","_this#type","start","start#type","end","end#type","len","tmp","out","outPtr","thisPtr","thisPtrEnd","__length_setter_tmp"],
1115
+ };
1116
+ this.___bytestring_prototype_substring = {
1117
+ wasm: (scope, { allocPage, builtin }) => [[32,0],[40,1,0],[33,6],[32,5],[65,3],[70],[4,64],[32,6],[33,4],[5],[32,2],[32,4],[74],[4,64],[32,4],[33,7],[32,2],[33,4],[32,7],[33,2],[11],[11],[32,2],[65,0],[114],[33,2],[32,4],[65,0],[114],[33,4],[32,2],[65,0],[72],[4,64],[65,0],[33,2],[11],[32,2],[32,6],[74],[4,64],[32,6],[33,2],[11],[32,4],[65,0],[72],[4,64],[65,0],[33,4],[11],[32,4],[32,6],[74],[4,64],[32,6],[33,4],[11],...number(allocPage(scope, '___bytestring_prototype_substring | bytestring: out', 'i8') * pageSize, 127),[34,8],[33,9],[32,0],[34,10],[32,4],[106],[33,11],[32,10],[32,2],[106],[33,10],[3,64],[32,10],[32,11],[72],[4,64],[32,9],[32,9],[65,1],[106],[33,9],[32,10],[32,10],[65,1],[106],[33,10],[45,0,4],[58,0,4],[12,1],[11],[11],[32,8],[32,4],[32,2],[107],[34,12],[54,1,0],[32,8],[65,18],[15]],
1118
+ params: [127,127,127,127,127,127],
1119
+ typedParams: true,
1120
+ returns: [127,127],
1121
+ typedReturns: true,
1122
+ locals: [127,127,127,127,127,127,127],
1123
+ localNames: ["_this","_this#type","start","start#type","end","end#type","len","tmp","out","outPtr","thisPtr","thisPtrEnd","__length_setter_tmp"],
1124
+ };
1125
+ this.__String_prototype_substr = {
1126
+ wasm: (scope, { allocPage, builtin }) => [[32,0],[40,1,0],[33,6],[32,2],[65,0],[114],[34,2],[65,0],[72],[4,64],[32,6],[32,2],[106],[34,2],[65,0],[72],[4,64],[65,0],[33,2],[11],[11],[32,5],[65,3],[70],[4,64],[32,6],[32,2],[107],[33,4],[11],[32,4],[65,0],[114],[33,4],[32,2],[32,4],[106],[32,6],[74],[4,64],[32,6],[32,2],[107],[33,4],[11],...number(allocPage(scope, '__String_prototype_substr | string: out', 'i16') * pageSize, 127),[34,7],[33,8],[32,0],[34,9],[32,2],[65,2],[108],[106],[34,9],[32,4],[65,2],[108],[106],[33,10],[3,64],[32,9],[32,10],[72],[4,64],[32,8],[32,9],[47,0,4],[59,0,4],[32,9],[65,2],[106],[33,9],[32,8],[65,2],[106],[33,8],[12,1],[11],[11],[32,7],[32,4],[34,11],[54,1,0],[32,7],[65,2],[15]],
1127
+ params: [127,127,127,127,127,127],
1128
+ typedParams: true,
1129
+ returns: [127,127],
1130
+ typedReturns: true,
1131
+ locals: [127,127,127,127,127,127],
1132
+ localNames: ["_this","_this#type","start","start#type","length","length#type","len","out","outPtr","thisPtr","thisPtrEnd","__length_setter_tmp"],
1133
+ };
1134
+ this.___bytestring_prototype_substr = {
1135
+ wasm: (scope, { allocPage, builtin }) => [[32,0],[40,1,0],[33,6],[32,2],[65,0],[114],[34,2],[65,0],[72],[4,64],[32,6],[32,2],[106],[34,2],[65,0],[72],[4,64],[65,0],[33,2],[11],[11],[32,5],[65,3],[70],[4,64],[32,6],[32,2],[107],[33,4],[11],[32,4],[65,0],[114],[33,4],[32,2],[32,4],[106],[32,6],[74],[4,64],[32,6],[32,2],[107],[33,4],[11],...number(allocPage(scope, '___bytestring_prototype_substr | bytestring: out', 'i8') * pageSize, 127),[34,7],[33,8],[32,0],[34,9],[32,2],[106],[34,9],[32,4],[106],[33,10],[3,64],[32,9],[32,10],[72],[4,64],[32,8],[32,8],[65,1],[106],[33,8],[32,9],[32,9],[65,1],[106],[33,9],[45,0,4],[58,0,4],[12,1],[11],[11],[32,7],[32,4],[34,11],[54,1,0],[32,7],[65,18],[15]],
1136
+ params: [127,127,127,127,127,127],
1137
+ typedParams: true,
1138
+ returns: [127,127],
1139
+ typedReturns: true,
1140
+ locals: [127,127,127,127,127,127],
1141
+ localNames: ["_this","_this#type","start","start#type","length","length#type","len","out","outPtr","thisPtr","thisPtrEnd","__length_setter_tmp"],
1142
+ };
1143
+ this.__String_prototype_slice = {
1144
+ wasm: (scope, { allocPage, builtin }) => [[32,0],[40,1,0],[33,6],[32,5],[65,3],[70],[4,64],[32,6],[33,4],[11],[32,2],[65,0],[114],[33,2],[32,4],[65,0],[114],[33,4],[32,2],[65,0],[72],[4,64],[32,6],[32,2],[106],[34,2],[65,0],[72],[4,64],[65,0],[33,2],[11],[11],[32,2],[32,6],[74],[4,64],[32,6],[33,2],[11],[32,4],[65,0],[72],[4,64],[32,6],[32,4],[106],[34,4],[65,0],[72],[4,64],[65,0],[33,4],[11],[11],[32,4],[32,6],[74],[4,64],[32,6],[33,4],[11],...number(allocPage(scope, '__String_prototype_slice | string: out', 'i16') * pageSize, 127),[33,7],[32,2],[32,4],[74],[4,64],[32,7],[65,2],[15],[11],[32,7],[33,8],[32,0],[34,9],[32,4],[65,2],[108],[106],[33,10],[32,9],[32,2],[65,2],[108],[106],[33,9],[3,64],[32,9],[32,10],[72],[4,64],[32,8],[32,9],[47,0,4],[59,0,4],[32,9],[65,2],[106],[33,9],[32,8],[65,2],[106],[33,8],[12,1],[11],[11],[32,7],[32,4],[32,2],[107],[34,11],[54,1,0],[32,7],[65,2],[15]],
1145
+ params: [127,127,127,127,127,127],
1146
+ typedParams: true,
1147
+ returns: [127,127],
1148
+ typedReturns: true,
1149
+ locals: [127,127,127,127,127,127],
1150
+ localNames: ["_this","_this#type","start","start#type","end","end#type","len","out","outPtr","thisPtr","thisPtrEnd","__length_setter_tmp"],
1151
+ };
1152
+ this.___bytestring_prototype_slice = {
1153
+ wasm: (scope, { allocPage, builtin }) => [[32,0],[40,1,0],[33,6],[32,5],[65,3],[70],[4,64],[32,6],[33,4],[11],[32,2],[65,0],[114],[33,2],[32,4],[65,0],[114],[33,4],[32,2],[65,0],[72],[4,64],[32,6],[32,2],[106],[34,2],[65,0],[72],[4,64],[65,0],[33,2],[11],[11],[32,2],[32,6],[74],[4,64],[32,6],[33,2],[11],[32,4],[65,0],[72],[4,64],[32,6],[32,4],[106],[34,4],[65,0],[72],[4,64],[65,0],[33,4],[11],[11],[32,4],[32,6],[74],[4,64],[32,6],[33,4],[11],...number(allocPage(scope, '___bytestring_prototype_slice | bytestring: out', 'i8') * pageSize, 127),[33,7],[32,2],[32,4],[74],[4,64],[32,7],[65,18],[15],[11],[32,7],[33,8],[32,0],[34,9],[32,4],[106],[33,10],[32,9],[32,2],[106],[33,9],[3,64],[32,9],[32,10],[72],[4,64],[32,8],[32,8],[65,1],[106],[33,8],[32,9],[32,9],[65,1],[106],[33,9],[45,0,4],[58,0,4],[12,1],[11],[11],[32,7],[32,4],[32,2],[107],[34,11],[54,1,0],[32,7],[65,18],[15]],
1154
+ params: [127,127,127,127,127,127],
1155
+ typedParams: true,
1156
+ returns: [127,127],
1157
+ typedReturns: true,
1158
+ locals: [127,127,127,127,127,127],
1159
+ localNames: ["_this","_this#type","start","start#type","end","end#type","len","out","outPtr","thisPtr","thisPtrEnd","__length_setter_tmp"],
1160
+ };
1161
+ this.__String_prototype_trimStart = {
1162
+ wasm: (scope, { allocPage, builtin }) => [...number(allocPage(scope, '__String_prototype_trimStart | string: out', 'i16') * pageSize, 127),[34,2],[33,3],[32,0],[33,4],[32,0],[40,1,0],[33,5],[32,4],[32,5],[65,2],[108],[106],[33,6],[65,0],[33,7],[65,1],[33,8],[3,64],[32,4],[32,6],[72],[4,64],[32,4],[47,0,4],[33,9],[32,4],[65,2],[106],[33,4],[32,8],[4,64],[32,9],[65,9],[70],[32,9],[65,11],[70],[114],[32,9],[65,12],[70],[114],[32,9],[65,32],[70],[114],[32,9],[65,160,1],[70],[114],[32,9],[65,255,253,3],[70],[114],[32,9],[65,10],[70],[114],[32,9],[65,13],[70],[114],[32,9],[65,168,192,0],[70],[114],[32,9],[65,169,192,0],[70],[114],[4,64],[32,7],[65,1],[106],[33,7],[12,3],[11],[65,0],[33,8],[11],[32,3],[32,9],[59,0,4],[32,3],[65,2],[106],[33,3],[12,1],[11],[11],[32,2],[32,5],[32,7],[107],[34,10],[54,1,0],[32,2],[65,2],[15]],
1163
+ params: [127,127],
1164
+ typedParams: true,
1165
+ returns: [127,127],
1166
+ typedReturns: true,
1167
+ locals: [127,127,127,127,127,127,127,127,127],
1168
+ localNames: ["_this","_this#type","out","outPtr","thisPtr","len","thisPtrEnd","n","start","chr","__length_setter_tmp"],
1169
+ };
1170
+ this.___bytestring_prototype_trimStart = {
1171
+ wasm: (scope, { allocPage, builtin }) => [...number(allocPage(scope, '___bytestring_prototype_trimStart | bytestring: out', 'i8') * pageSize, 127),[34,2],[33,3],[32,0],[33,4],[32,0],[40,1,0],[33,5],[32,4],[32,5],[106],[33,6],[65,0],[33,7],[65,1],[33,8],[3,64],[32,4],[32,6],[72],[4,64],[32,4],[32,4],[65,1],[106],[33,4],[45,0,4],[33,9],[32,8],[4,64],[32,9],[65,9],[70],[32,9],[65,11],[70],[114],[32,9],[65,12],[70],[114],[32,9],[65,32],[70],[114],[32,9],[65,160,1],[70],[114],[32,9],[65,255,253,3],[70],[114],[32,9],[65,10],[70],[114],[32,9],[65,13],[70],[114],[32,9],[65,168,192,0],[70],[114],[32,9],[65,169,192,0],[70],[114],[4,64],[32,7],[65,1],[106],[33,7],[12,3],[11],[65,0],[33,8],[11],[32,3],[32,3],[65,1],[106],[33,3],[32,9],[58,0,4],[12,1],[11],[11],[32,2],[32,5],[32,7],[107],[34,10],[54,1,0],[32,2],[65,18],[15]],
1172
+ params: [127,127],
1173
+ typedParams: true,
1174
+ returns: [127,127],
1175
+ typedReturns: true,
1176
+ locals: [127,127,127,127,127,127,127,127,127],
1177
+ localNames: ["_this","_this#type","out","outPtr","thisPtr","len","thisPtrEnd","n","start","chr","__length_setter_tmp"],
1178
+ };
1179
+ this.__String_prototype_trimEnd = {
1180
+ wasm: (scope, { allocPage, builtin }) => [...number(allocPage(scope, '__String_prototype_trimEnd | string: out', 'i16') * pageSize, 127),[34,2],[33,3],[32,0],[33,4],[32,0],[40,1,0],[33,5],[32,4],[33,6],[32,4],[32,5],[65,2],[108],[106],[33,4],[32,3],[32,5],[65,2],[108],[106],[33,3],[65,0],[33,7],[65,1],[33,8],[3,64],[32,4],[32,6],[74],[4,64],[32,4],[65,2],[107],[34,4],[47,0,4],[33,9],[32,3],[65,2],[107],[33,3],[32,8],[4,64],[32,9],[65,9],[70],[32,9],[65,11],[70],[114],[32,9],[65,12],[70],[114],[32,9],[65,32],[70],[114],[32,9],[65,160,1],[70],[114],[32,9],[65,255,253,3],[70],[114],[32,9],[65,10],[70],[114],[32,9],[65,13],[70],[114],[32,9],[65,168,192,0],[70],[114],[32,9],[65,169,192,0],[70],[114],[4,64],[32,7],[65,1],[106],[33,7],[12,3],[11],[65,0],[33,8],[11],[32,3],[32,9],[59,0,4],[12,1],[11],[11],[32,2],[32,5],[32,7],[107],[34,10],[54,1,0],[32,2],[65,2],[15]],
1181
+ params: [127,127],
1182
+ typedParams: true,
1183
+ returns: [127,127],
1184
+ typedReturns: true,
1185
+ locals: [127,127,127,127,127,127,127,127,127],
1186
+ localNames: ["_this","_this#type","out","outPtr","thisPtr","len","thisPtrStart","n","start","chr","__length_setter_tmp"],
1187
+ };
1188
+ this.___bytestring_prototype_trimEnd = {
1189
+ wasm: (scope, { allocPage, builtin }) => [...number(allocPage(scope, '___bytestring_prototype_trimEnd | bytestring: out', 'i8') * pageSize, 127),[34,2],[33,3],[32,0],[33,4],[32,0],[40,1,0],[33,5],[32,4],[33,6],[32,4],[32,5],[106],[33,4],[32,3],[32,5],[106],[33,3],[65,0],[33,7],[65,1],[33,8],[3,64],[32,4],[32,6],[74],[4,64],[32,4],[65,1],[107],[34,4],[45,0,4],[33,9],[32,3],[65,1],[107],[33,3],[32,8],[4,64],[32,9],[65,9],[70],[32,9],[65,11],[70],[114],[32,9],[65,12],[70],[114],[32,9],[65,32],[70],[114],[32,9],[65,160,1],[70],[114],[32,9],[65,255,253,3],[70],[114],[32,9],[65,10],[70],[114],[32,9],[65,13],[70],[114],[32,9],[65,168,192,0],[70],[114],[32,9],[65,169,192,0],[70],[114],[4,64],[32,7],[65,1],[106],[33,7],[12,3],[11],[65,0],[33,8],[11],[32,3],[32,9],[58,0,4],[12,1],[11],[11],[32,2],[32,5],[32,7],[107],[34,10],[54,1,0],[32,2],[65,18],[15]],
1190
+ params: [127,127],
1191
+ typedParams: true,
1192
+ returns: [127,127],
1193
+ typedReturns: true,
1194
+ locals: [127,127,127,127,127,127,127,127,127],
1195
+ localNames: ["_this","_this#type","out","outPtr","thisPtr","len","thisPtrStart","n","start","chr","__length_setter_tmp"],
1196
+ };
1197
+ this.__String_prototype_trim = {
1198
+ wasm: (scope, { allocPage, builtin }) => [[32,0],[65,2],[16, builtin('__String_prototype_trimEnd')],[34,2],[16, builtin('__String_prototype_trimStart')],[34,2],[15]],
1199
+ params: [127,127],
1200
+ typedParams: true,
1201
+ returns: [127,127],
1202
+ typedReturns: true,
1203
+ locals: [127],
1204
+ localNames: ["_this","_this#type","#last_type"],
1205
+ };
1206
+ this.___bytestring_prototype_trim = {
1207
+ wasm: (scope, { allocPage, builtin }) => [[32,0],[65,18],[16, builtin('___bytestring_prototype_trimEnd')],[34,2],[16, builtin('___bytestring_prototype_trimStart')],[34,2],[15]],
1208
+ params: [127,127],
1209
+ typedParams: true,
1210
+ returns: [127,127],
1211
+ typedReturns: true,
1212
+ locals: [127],
1213
+ localNames: ["_this","_this#type","#last_type"],
1214
+ };
1215
+ this.__Boolean_prototype_toString = {
1216
+ wasm: (scope, { allocPage, builtin }) => [...number(allocPage(scope, '__Boolean_prototype_toString | bytestring: out', 'i8') * pageSize, 124),[33,2],[32,0],[252,3],[4,64],[65,0],[65,4],[54,1,0],[65,0],[65,244,0],[58,0,4],[65,0],[65,242,0],[58,0,5],[65,0],[65,245,0],[58,0,6],[65,0],[65,229,0],[58,0,7],[68,0,0,0,0,0,0,0,0],[33,2],[5],[65,0],[65,5],[54,1,0],[65,0],[65,230,0],[58,0,4],[65,0],[65,225,0],[58,0,5],[65,0],[65,236,0],[58,0,6],[65,0],[65,243,0],[58,0,7],[65,0],[65,229,0],[58,0,8],[68,0,0,0,0,0,0,0,0],[33,2],[11],[32,2],[65,18],[15]],
1217
+ params: [124,127],
1218
+ typedParams: true,
1219
+ returns: [124,127],
1220
+ typedReturns: true,
1221
+ locals: [124],
1222
+ localNames: ["_this","_this#type","out"],
1223
+ };
1224
+ this.__String_prototype_toString = {
1225
+ wasm: (scope, { allocPage, builtin }) => [...number(allocPage(scope, '__String_prototype_toString | string: out', 'i16') * pageSize, 124),[33,2],[32,0],[32,2],[16, builtin('__Porffor_clone')],[32,2],[65,2],[15]],
1226
+ params: [124,127],
1227
+ typedParams: true,
1228
+ returns: [124,127],
1229
+ typedReturns: true,
1230
+ locals: [124],
1231
+ localNames: ["_this","_this#type","out"],
1232
+ };
1233
+ this.___bytestring_prototype_toString = {
1234
+ wasm: (scope, { allocPage, builtin }) => [...number(allocPage(scope, '___bytestring_prototype_toString | bytestring: out', 'i8') * pageSize, 124),[33,2],[32,0],[32,2],[16, builtin('__Porffor_clone')],[32,2],[65,18],[15]],
1235
+ params: [124,127],
1236
+ typedParams: true,
1237
+ returns: [124,127],
1238
+ typedReturns: true,
1239
+ locals: [124],
1240
+ localNames: ["_this","_this#type","out"],
1241
+ };
1242
+ this.__Object_prototype_toString = {
1243
+ wasm: (scope, { allocPage, builtin }) => [...number(allocPage(scope, '__Object_prototype_toString | bytestring: out', 'i8') * pageSize, 124),[34,2],[65,18],[15]],
1244
+ params: [124,127],
1245
+ typedParams: true,
1246
+ returns: [124,127],
1247
+ typedReturns: true,
1248
+ locals: [124],
1249
+ localNames: ["_this","_this#type","out"],
1250
+ data: [{"offset":0,"bytes":[15,0,0,0,91,111,98,106,101,99,116,32,79,98,106,101,99,116,93]}],
1251
+ };
1252
+ this.__Function_prototype_toString = {
1253
+ wasm: (scope, { allocPage, builtin }) => [...number(allocPage(scope, '__Function_prototype_toString | bytestring: out', 'i8') * pageSize, 124),[34,2],[65,18],[15]],
1254
+ params: [124,127],
1255
+ typedParams: true,
1256
+ returns: [124,127],
1257
+ typedReturns: true,
1258
+ locals: [124],
1259
+ localNames: ["_this","_this#type","out"],
1260
+ data: [{"offset":0,"bytes":[14,0,0,0,102,117,110,99,116,105,111,110,32,40,41,32,123,125]}],
1261
+ };
1262
+ };