@stencil/core 4.17.2 → 4.18.0-dev.1715058114.43454bb
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- package/cli/index.cjs +1 -1
- package/cli/index.js +1 -1
- package/cli/package.json +1 -1
- package/compiler/package.json +1 -1
- package/compiler/stencil.js +464 -461
- package/dev-server/client/index.js +1 -1
- package/dev-server/client/package.json +1 -1
- package/dev-server/connector.html +2 -2
- package/dev-server/index.js +1 -1
- package/dev-server/package.json +1 -1
- package/dev-server/server-process.js +2 -2
- package/dev-server/ws.js +1 -1
- package/internal/app-data/package.json +1 -1
- package/internal/client/index.js +10 -3
- package/internal/client/package.json +1 -1
- package/internal/client/patch-browser.js +1 -1
- package/internal/hydrate/index.js +10 -3
- package/internal/hydrate/package.json +1 -1
- package/internal/hydrate/runner.js +2 -1
- package/internal/package.json +1 -1
- package/internal/stencil-private.d.ts +41 -0
- package/internal/stencil-public-docs.d.ts +34 -0
- package/internal/testing/index.js +10 -3
- package/internal/testing/package.json +1 -1
- package/mock-doc/index.cjs +2 -1
- package/mock-doc/index.d.ts +1 -0
- package/mock-doc/index.js +2 -1
- package/mock-doc/package.json +1 -1
- package/package.json +4 -4
- package/screenshot/index.js +1 -1
- package/screenshot/package.json +1 -1
- package/screenshot/pixel-match.js +1 -1
- package/sys/node/index.js +1 -1
- package/sys/node/package.json +1 -1
- package/sys/node/worker.js +1 -1
- package/testing/index.js +6 -4
- package/testing/package.json +1 -1
package/compiler/stencil.js
CHANGED
|
@@ -1,5 +1,5 @@
|
|
|
1
1
|
/*!
|
|
2
|
-
Stencil Compiler v4.
|
|
2
|
+
Stencil Compiler v4.18.0-dev.1715058114.43454bb | MIT Licensed | https://stenciljs.com
|
|
3
3
|
*/
|
|
4
4
|
"use strict";
|
|
5
5
|
var __create = Object.create;
|
|
@@ -231262,16 +231262,16 @@ ${e.message}`;
|
|
|
231262
231262
|
var typescript_5_4_5_bundle_cache_min_default = ts;
|
|
231263
231263
|
|
|
231264
231264
|
// src/version.ts
|
|
231265
|
-
var buildId = "
|
|
231266
|
-
var minfyJsId = "terser5.
|
|
231265
|
+
var buildId = "1715058114";
|
|
231266
|
+
var minfyJsId = "terser5.31.0_7";
|
|
231267
231267
|
var optimizeCssId = "autoprefixer10.4.19_postcss8.4.38_7";
|
|
231268
231268
|
var parse5Version = "7.1.2";
|
|
231269
231269
|
var rollupVersion = "2.56.3";
|
|
231270
231270
|
var jqueryVersion = "4.0.0-pre";
|
|
231271
|
-
var terserVersion = "5.
|
|
231271
|
+
var terserVersion = "5.31.0";
|
|
231272
231272
|
var typescriptVersion = "5.4.5";
|
|
231273
|
-
var vermoji = "\u{
|
|
231274
|
-
var version = "4.
|
|
231273
|
+
var vermoji = "\u{1F303}";
|
|
231274
|
+
var version = "4.18.0-dev.1715058114.43454bb";
|
|
231275
231275
|
var versions = {
|
|
231276
231276
|
stencil: version,
|
|
231277
231277
|
parse5: parse5Version,
|
|
@@ -238052,7 +238052,7 @@ var import_path19 = require("path");
|
|
|
238052
238052
|
var import_path18 = require("path");
|
|
238053
238053
|
|
|
238054
238054
|
// src/compiler/docs/style-docs.ts
|
|
238055
|
-
function parseStyleDocs(styleDocs, styleText) {
|
|
238055
|
+
function parseStyleDocs(styleDocs, styleText, mode) {
|
|
238056
238056
|
if (typeof styleText !== "string") {
|
|
238057
238057
|
return;
|
|
238058
238058
|
}
|
|
@@ -238064,12 +238064,12 @@ function parseStyleDocs(styleDocs, styleText) {
|
|
|
238064
238064
|
break;
|
|
238065
238065
|
}
|
|
238066
238066
|
const comment = styleText.substring(0, endIndex);
|
|
238067
|
-
parseCssComment(styleDocs, comment);
|
|
238067
|
+
parseCssComment(styleDocs, comment, mode);
|
|
238068
238068
|
styleText = styleText.substring(endIndex + CSS_DOC_END.length);
|
|
238069
238069
|
match2 = styleText.match(CSS_DOC_START);
|
|
238070
238070
|
}
|
|
238071
238071
|
}
|
|
238072
|
-
function parseCssComment(styleDocs, comment) {
|
|
238072
|
+
function parseCssComment(styleDocs, comment, mode) {
|
|
238073
238073
|
const lines = comment.split(/\r?\n/).map((line) => {
|
|
238074
238074
|
line = line.trim();
|
|
238075
238075
|
while (line.startsWith("*")) {
|
|
@@ -238091,7 +238091,8 @@ function parseCssComment(styleDocs, comment) {
|
|
|
238091
238091
|
const cssDoc = {
|
|
238092
238092
|
name: splt[0].trim(),
|
|
238093
238093
|
docs: (splt.shift() && splt.join(`:`)).trim(),
|
|
238094
|
-
annotation: "prop"
|
|
238094
|
+
annotation: "prop",
|
|
238095
|
+
mode
|
|
238095
238096
|
};
|
|
238096
238097
|
if (!styleDocs.some((c) => c.name === cssDoc.name && c.annotation === "prop")) {
|
|
238097
238098
|
styleDocs.push(cssDoc);
|
|
@@ -238673,7 +238674,7 @@ var extTransformsPlugin = (config, compilerCtx, buildCtx, bundleOpts) => {
|
|
|
238673
238674
|
}
|
|
238674
238675
|
if (cmp) {
|
|
238675
238676
|
cmp.styleDocs || (cmp.styleDocs = []);
|
|
238676
|
-
mergeIntoWith(cmp.styleDocs, cssTransformResults.styleDocs, (docs) => docs.name);
|
|
238677
|
+
mergeIntoWith(cmp.styleDocs, cssTransformResults.styleDocs, (docs) => `${docs.name},${docs.mode}`);
|
|
238677
238678
|
}
|
|
238678
238679
|
for (const dep of pluginTransforms.dependencies) {
|
|
238679
238680
|
this.addWatchFile(dep);
|
|
@@ -239978,7 +239979,7 @@ var SourceMapGenerator = class {
|
|
|
239978
239979
|
}
|
|
239979
239980
|
};
|
|
239980
239981
|
|
|
239981
|
-
// scripts/build/terser-
|
|
239982
|
+
// scripts/build/terser-5_31_0-bundle-cache.min.js
|
|
239982
239983
|
function characters(e) {
|
|
239983
239984
|
return e.split("");
|
|
239984
239985
|
}
|
|
@@ -240236,10 +240237,10 @@ function tokenizer2(e, t, n3, i) {
|
|
|
240236
240237
|
for (; e2--; )
|
|
240237
240238
|
s();
|
|
240238
240239
|
}
|
|
240239
|
-
function
|
|
240240
|
+
function c(e2) {
|
|
240240
240241
|
return o.text.substr(o.pos, e2.length) == e2;
|
|
240241
240242
|
}
|
|
240242
|
-
function
|
|
240243
|
+
function l(e2, t2) {
|
|
240243
240244
|
var n4 = o.text.indexOf(e2, o.pos);
|
|
240244
240245
|
if (t2 && -1 == n4)
|
|
240245
240246
|
throw EX_EOF;
|
|
@@ -240251,10 +240252,10 @@ function tokenizer2(e, t, n3, i) {
|
|
|
240251
240252
|
var f = false, p = null;
|
|
240252
240253
|
function d(e2, n4, i2) {
|
|
240253
240254
|
o.regex_allowed = "operator" == e2 && !UNARY_POSTFIX.has(n4) || "keyword" == e2 && KEYWORDS_BEFORE_EXPRESSION.has(n4) || "punc" == e2 && PUNC_BEFORE_EXPRESSION.has(n4) || "arrow" == e2, "punc" != e2 || "." != n4 && "?." != n4 ? i2 || (f = false) : f = true;
|
|
240254
|
-
const r2 = o.tokline, a2 = o.tokcol, s2 = o.tokpos, u2 = o.newline_before,
|
|
240255
|
-
let
|
|
240256
|
-
i2 || (
|
|
240257
|
-
const d2 = new AST_Token(e2, n4, r2, a2, s2, u2,
|
|
240255
|
+
const r2 = o.tokline, a2 = o.tokcol, s2 = o.tokpos, u2 = o.newline_before, c2 = t;
|
|
240256
|
+
let l2 = [], _2 = [];
|
|
240257
|
+
i2 || (l2 = o.comments_before, _2 = o.comments_before = []), o.newline_before = false;
|
|
240258
|
+
const d2 = new AST_Token(e2, n4, r2, a2, s2, u2, l2, _2, c2);
|
|
240258
240259
|
return i2 || (p = d2), d2;
|
|
240259
240260
|
}
|
|
240260
240261
|
function m() {
|
|
@@ -240265,7 +240266,7 @@ function tokenizer2(e, t, n3, i) {
|
|
|
240265
240266
|
js_error(e2, t, o.tokline, o.tokcol, o.tokpos);
|
|
240266
240267
|
}
|
|
240267
240268
|
function h(e2) {
|
|
240268
|
-
var t2 = false, n4 = false, i2 = false, o2 = "." == e2, a2 = false, u2 = false,
|
|
240269
|
+
var t2 = false, n4 = false, i2 = false, o2 = "." == e2, a2 = false, u2 = false, c2 = function(e3) {
|
|
240269
240270
|
for (var t3, n5 = "", i3 = 0; (t3 = r()) && e3(t3, i3++); )
|
|
240270
240271
|
n5 += s();
|
|
240271
240272
|
return n5;
|
|
@@ -240295,16 +240296,16 @@ function tokenizer2(e, t, n3, i) {
|
|
|
240295
240296
|
}
|
|
240296
240297
|
return "n" === r2 ? (a2 = true, true) : RE_NUM_LITERAL.test(r2);
|
|
240297
240298
|
});
|
|
240298
|
-
if (e2 && (
|
|
240299
|
-
const e3 =
|
|
240300
|
-
if (!o2 && RE_BIG_INT.test(
|
|
240299
|
+
if (e2 && (c2 = e2 + c2), LATEST_RAW = c2, RE_OCT_NUMBER.test(c2) && F.has_directive("use strict") && S("Legacy octal literals are not allowed in strict mode"), u2 && (c2.endsWith("_") ? S("Numeric separators are not allowed at the end of numeric literals") : c2.includes("__") && S("Only one underscore is allowed as numeric separator"), c2 = c2.replace(/_/g, "")), c2.endsWith("n")) {
|
|
240300
|
+
const e3 = c2.slice(0, -1), t3 = parse_js_number(e3, RE_HEX_NUMBER.test(e3));
|
|
240301
|
+
if (!o2 && RE_BIG_INT.test(c2) && !isNaN(t3))
|
|
240301
240302
|
return d("big_int", e3);
|
|
240302
240303
|
S("Invalid or unexpected token");
|
|
240303
240304
|
}
|
|
240304
|
-
var
|
|
240305
|
-
if (!isNaN(
|
|
240306
|
-
return d("num",
|
|
240307
|
-
S("Invalid syntax: " +
|
|
240305
|
+
var l2 = parse_js_number(c2);
|
|
240306
|
+
if (!isNaN(l2))
|
|
240307
|
+
return d("num", l2);
|
|
240308
|
+
S("Invalid syntax: " + c2);
|
|
240308
240309
|
}
|
|
240309
240310
|
function A(e2) {
|
|
240310
240311
|
return e2 >= "0" && e2 <= "7";
|
|
@@ -240330,7 +240331,7 @@ function tokenizer2(e, t, n3, i) {
|
|
|
240330
240331
|
if ("{" == r()) {
|
|
240331
240332
|
for (s(true), "}" === r() && S("Expecting hex-character between {}"); "0" == r(); )
|
|
240332
240333
|
s(true);
|
|
240333
|
-
var a2, u2 =
|
|
240334
|
+
var a2, u2 = l("}", true) - o.pos;
|
|
240334
240335
|
return (u2 > 6 || (a2 = E(u2, t2)) > 1114111) && S("Unicode reference out of bounds"), s(true), from_char_code(a2);
|
|
240335
240336
|
}
|
|
240336
240337
|
return String.fromCharCode(E(4, t2));
|
|
@@ -240396,7 +240397,7 @@ function tokenizer2(e, t, n3, i) {
|
|
|
240396
240397
|
return -1 == i2 ? (t2 = o.text.substr(o.pos), o.pos = o.text.length) : (t2 = o.text.substring(o.pos, i2), o.pos = i2), o.col = o.tokcol + (o.pos - o.tokpos), o.comments_before.push(d(e2, t2, true)), o.regex_allowed = n4, F;
|
|
240397
240398
|
}
|
|
240398
240399
|
var D = O2("Unterminated multiline comment", function() {
|
|
240399
|
-
var e2 = o.regex_allowed, t2 =
|
|
240400
|
+
var e2 = o.regex_allowed, t2 = l("*/", true), n4 = o.text.substring(o.pos, t2).replace(/\r\n|\r|\u2028|\u2029/g, "\n");
|
|
240400
240401
|
return u(get_full_char_length(n4) + 2), o.comments_before.push(d("comment2", n4, true)), o.newline_before = o.newline_before || n4.includes("\n"), o.regex_allowed = e2, F;
|
|
240401
240402
|
}), v = O2("Unterminated identifier name", function() {
|
|
240402
240403
|
var e2, t2 = [], n4 = false, i2 = function() {
|
|
@@ -240469,13 +240470,13 @@ function tokenizer2(e, t, n3, i) {
|
|
|
240469
240470
|
function F(e2) {
|
|
240470
240471
|
if (null != e2)
|
|
240471
240472
|
return C2(e2);
|
|
240472
|
-
for (i && 0 == o.pos &&
|
|
240473
|
+
for (i && 0 == o.pos && c("#!") && (_(), u(2), y("comment5")); ; ) {
|
|
240473
240474
|
if (m(), _(), n3) {
|
|
240474
|
-
if (
|
|
240475
|
+
if (c("<!--")) {
|
|
240475
240476
|
u(4), y("comment3");
|
|
240476
240477
|
continue;
|
|
240477
240478
|
}
|
|
240478
|
-
if (
|
|
240479
|
+
if (c("-->") && o.newline_before) {
|
|
240479
240480
|
u(3), y("comment4");
|
|
240480
240481
|
continue;
|
|
240481
240482
|
}
|
|
@@ -240483,8 +240484,8 @@ function tokenizer2(e, t, n3, i) {
|
|
|
240483
240484
|
var t2 = r();
|
|
240484
240485
|
if (!t2)
|
|
240485
240486
|
return d("eof");
|
|
240486
|
-
var
|
|
240487
|
-
switch (
|
|
240487
|
+
var l2 = t2.charCodeAt(0);
|
|
240488
|
+
switch (l2) {
|
|
240488
240489
|
case 34:
|
|
240489
240490
|
case 39:
|
|
240490
240491
|
return g();
|
|
@@ -240510,15 +240511,15 @@ function tokenizer2(e, t, n3, i) {
|
|
|
240510
240511
|
if (o.brace_counter--, o.template_braces.length > 0 && o.template_braces[o.template_braces.length - 1] === o.brace_counter)
|
|
240511
240512
|
return b(false);
|
|
240512
240513
|
}
|
|
240513
|
-
if (is_digit(
|
|
240514
|
+
if (is_digit(l2))
|
|
240514
240515
|
return h();
|
|
240515
240516
|
if (PUNC_CHARS.has(t2))
|
|
240516
240517
|
return d("punc", s());
|
|
240517
240518
|
if (OPERATOR_CHARS.has(t2))
|
|
240518
240519
|
return k();
|
|
240519
|
-
if (92 ==
|
|
240520
|
+
if (92 == l2 || is_identifier_start(t2))
|
|
240520
240521
|
return void 0, A2 = v(), f ? d("name", A2) : KEYWORDS_ATOM.has(A2) ? d("atom", A2) : KEYWORDS.has(A2) ? OPERATORS.has(A2) ? d("operator", A2) : d("keyword", A2) : d("name", A2);
|
|
240521
|
-
if (35 ==
|
|
240522
|
+
if (35 == l2)
|
|
240522
240523
|
return s(), d("privatename", v());
|
|
240523
240524
|
break;
|
|
240524
240525
|
}
|
|
@@ -240570,16 +240571,16 @@ function parse3(e, t) {
|
|
|
240570
240571
|
var r2 = i.input.context();
|
|
240571
240572
|
js_error(e2, r2.filename, null != t2 ? t2 : r2.tokline, null != n4 ? n4 : r2.tokcol, null != o2 ? o2 : r2.tokpos);
|
|
240572
240573
|
}
|
|
240573
|
-
function
|
|
240574
|
+
function c(e2, t2) {
|
|
240574
240575
|
u(t2, e2.line, e2.col);
|
|
240575
240576
|
}
|
|
240576
|
-
function
|
|
240577
|
-
null == e2 && (e2 = i.token),
|
|
240577
|
+
function l(e2) {
|
|
240578
|
+
null == e2 && (e2 = i.token), c(e2, "Unexpected token: " + e2.type + " (" + e2.value + ")");
|
|
240578
240579
|
}
|
|
240579
240580
|
function _(e2, t2) {
|
|
240580
240581
|
if (o(e2, t2))
|
|
240581
240582
|
return a();
|
|
240582
|
-
|
|
240583
|
+
c(i.token, "Unexpected token " + i.token.type + " \xAB" + i.token.value + "\xBB, expected " + e2 + " \xAB" + t2 + "\xBB");
|
|
240583
240584
|
}
|
|
240584
240585
|
function f(e2) {
|
|
240585
240586
|
return _("punc", e2);
|
|
@@ -240597,7 +240598,7 @@ function parse3(e, t) {
|
|
|
240597
240598
|
return i.in_async === i.in_function || 0 === i.in_function && i.input.has_directive("use strict");
|
|
240598
240599
|
}
|
|
240599
240600
|
function h(e2) {
|
|
240600
|
-
o("punc", ";") ? a() : e2 || d() ||
|
|
240601
|
+
o("punc", ";") ? a() : e2 || d() || l();
|
|
240601
240602
|
}
|
|
240602
240603
|
function A() {
|
|
240603
240604
|
f("(");
|
|
@@ -240640,7 +240641,7 @@ function parse3(e, t) {
|
|
|
240640
240641
|
var e3, t2, n5 = s();
|
|
240641
240642
|
o("name") && (e3 = ae(AST_SymbolImport)), o("punc", ",") && a(), ((t2 = ee(true)) || e3) && _("name", "from");
|
|
240642
240643
|
var r2 = i.token;
|
|
240643
|
-
"string" !== r2.type &&
|
|
240644
|
+
"string" !== r2.type && l(), a();
|
|
240644
240645
|
const u2 = Z();
|
|
240645
240646
|
return new AST_Import({ start: n5, imported_name: e3, imported_names: t2, module_name: new AST_String({ start: r2, value: r2.value, quote: r2.quote, end: r2 }), assert_clause: u2, end: i.token });
|
|
240646
240647
|
}();
|
|
@@ -240657,7 +240658,7 @@ function parse3(e, t) {
|
|
|
240657
240658
|
case ";":
|
|
240658
240659
|
return i.in_directives = false, a(), new AST_EmptyStatement();
|
|
240659
240660
|
default:
|
|
240660
|
-
|
|
240661
|
+
l();
|
|
240661
240662
|
}
|
|
240662
240663
|
case "keyword":
|
|
240663
240664
|
switch (i.token.value) {
|
|
@@ -240680,15 +240681,15 @@ function parse3(e, t) {
|
|
|
240680
240681
|
case "for":
|
|
240681
240682
|
return a(), function() {
|
|
240682
240683
|
var e3 = "`for await` invalid in this context", t2 = i.token;
|
|
240683
|
-
"name" == t2.type && "await" == t2.value ? (S() ||
|
|
240684
|
+
"name" == t2.type && "await" == t2.value ? (S() || c(t2, e3), a()) : t2 = false, f("(");
|
|
240684
240685
|
var n5 = null;
|
|
240685
240686
|
if (o("punc", ";"))
|
|
240686
|
-
t2 &&
|
|
240687
|
+
t2 && c(t2, e3);
|
|
240687
240688
|
else {
|
|
240688
240689
|
n5 = o("keyword", "var") ? (a(), L(true)) : o("keyword", "let") ? (a(), V(true)) : o("keyword", "const") ? (a(), U(true)) : Ae(true, true);
|
|
240689
240690
|
var r2 = o("operator", "in"), s2 = o("name", "of");
|
|
240690
|
-
if (t2 && !s2 &&
|
|
240691
|
-
return n5 instanceof AST_Definitions ? n5.definitions.length > 1 &&
|
|
240691
|
+
if (t2 && !s2 && c(t2, e3), r2 || s2)
|
|
240692
|
+
return n5 instanceof AST_Definitions ? n5.definitions.length > 1 && c(n5.start, "Only one variable declaration allowed in for..in loop") : de(n5) || (n5 = me(n5)) instanceof AST_Destructuring || c(n5.start, "Invalid left-hand side in for..in loop"), a(), r2 ? k(n5) : C2(n5, !!t2);
|
|
240692
240693
|
}
|
|
240693
240694
|
return v(n5);
|
|
240694
240695
|
}();
|
|
@@ -240700,22 +240701,22 @@ function parse3(e, t) {
|
|
|
240700
240701
|
return a(), w();
|
|
240701
240702
|
case "return":
|
|
240702
240703
|
0 != i.in_function || t.bare_returns || u("'return' outside of function"), a();
|
|
240703
|
-
var
|
|
240704
|
-
return o("punc", ";") ? a() : d() || (
|
|
240704
|
+
var G2 = null;
|
|
240705
|
+
return o("punc", ";") ? a() : d() || (G2 = Ae(true), h()), new AST_Return({ value: G2 });
|
|
240705
240706
|
case "switch":
|
|
240706
240707
|
return a(), new AST_Switch({ expression: A(), body: Te(P) });
|
|
240707
240708
|
case "throw":
|
|
240708
|
-
return a(), p(i.token) && u("Illegal newline after 'throw'"),
|
|
240709
|
+
return a(), p(i.token) && u("Illegal newline after 'throw'"), G2 = Ae(true), h(), new AST_Throw({ value: G2 });
|
|
240709
240710
|
case "try":
|
|
240710
240711
|
return a(), function() {
|
|
240711
240712
|
var e3, t2 = null, n5 = null;
|
|
240712
240713
|
if (e3 = new AST_TryBlock({ start: i.token, body: I(), end: s() }), o("keyword", "catch")) {
|
|
240713
240714
|
var r2 = i.token;
|
|
240714
240715
|
if (a(), o("punc", "{"))
|
|
240715
|
-
var
|
|
240716
|
+
var c2 = null;
|
|
240716
240717
|
else
|
|
240717
|
-
f("("),
|
|
240718
|
-
t2 = new AST_Catch({ start: r2, argname:
|
|
240718
|
+
f("("), c2 = N(void 0, AST_SymbolCatch), f(")");
|
|
240719
|
+
t2 = new AST_Catch({ start: r2, argname: c2, body: I(), end: s() });
|
|
240719
240720
|
}
|
|
240720
240721
|
return o("keyword", "finally") && (r2 = i.token, a(), n5 = new AST_Finally({ start: r2, body: I(), end: s() })), t2 || n5 || u("Missing catch/finally blocks"), new AST_Try({ body: e3, bcatch: t2, bfinally: n5 });
|
|
240721
240722
|
}();
|
|
@@ -240732,11 +240733,11 @@ function parse3(e, t) {
|
|
|
240732
240733
|
return a(), M2 = te(), o("punc", ";") && h(), M2;
|
|
240733
240734
|
}
|
|
240734
240735
|
}
|
|
240735
|
-
|
|
240736
|
+
l();
|
|
240736
240737
|
});
|
|
240737
240738
|
function b() {
|
|
240738
240739
|
var e2 = ae(AST_Label);
|
|
240739
|
-
"await" === e2.name && i.in_async === i.in_function &&
|
|
240740
|
+
"await" === e2.name && i.in_async === i.in_function && c(i.prev, "await cannot be used as label inside async function"), i.labels.some((t3) => t3.name === e2.name) && u("Label " + e2.name + " defined twice"), f(":"), i.labels.push(e2);
|
|
240740
240741
|
var t2 = g();
|
|
240741
240742
|
return i.labels.pop(), t2 instanceof AST_IterationStatement || e2.references.forEach(function(t3) {
|
|
240742
240743
|
t3 instanceof AST_Continue && (t3 = t3.label.start, u("Continue label `" + e2.name + "` refers to non-IterationStatement.", t3.line, t3.col, t3.pos));
|
|
@@ -240779,10 +240780,10 @@ function parse3(e, t) {
|
|
|
240779
240780
|
}, O2 = function(e2, t2, n4, i2) {
|
|
240780
240781
|
var r2 = e2 === AST_Defun, u2 = o("operator", "*");
|
|
240781
240782
|
u2 && a();
|
|
240782
|
-
var
|
|
240783
|
-
r2 && !
|
|
240784
|
-
var _2 = [], f2 = x(true, u2 || t2, n4,
|
|
240785
|
-
return new e2({ start: _2.start, end: f2.end, is_generator: u2, async: n4, name:
|
|
240783
|
+
var c2 = o("name") ? ae(r2 ? AST_SymbolDefun : AST_SymbolLambda) : null;
|
|
240784
|
+
r2 && !c2 && (i2 ? e2 = AST_Function : l()), !c2 || e2 === AST_Accessor || c2 instanceof AST_SymbolDeclaration || l(s());
|
|
240785
|
+
var _2 = [], f2 = x(true, u2 || t2, n4, c2, _2);
|
|
240786
|
+
return new e2({ start: _2.start, end: f2.end, is_generator: u2, async: n4, name: c2, argnames: _2, body: f2 });
|
|
240786
240787
|
};
|
|
240787
240788
|
class F {
|
|
240788
240789
|
constructor(e2, t2, n4 = false) {
|
|
@@ -240796,10 +240797,10 @@ function parse3(e, t) {
|
|
|
240796
240797
|
case "arguments":
|
|
240797
240798
|
case "eval":
|
|
240798
240799
|
case "yield":
|
|
240799
|
-
this.strict_mode &&
|
|
240800
|
+
this.strict_mode && c(e2, "Unexpected " + e2.value + " identifier as parameter inside strict mode");
|
|
240800
240801
|
break;
|
|
240801
240802
|
default:
|
|
240802
|
-
RESERVED_WORDS.has(e2.value) &&
|
|
240803
|
+
RESERVED_WORDS.has(e2.value) && l();
|
|
240803
240804
|
}
|
|
240804
240805
|
}
|
|
240805
240806
|
mark_default_assignment(e2) {
|
|
@@ -240815,15 +240816,15 @@ function parse3(e, t) {
|
|
|
240815
240816
|
return false !== this.default_assignment || false !== this.spread || this.strict_mode;
|
|
240816
240817
|
}
|
|
240817
240818
|
check_strict() {
|
|
240818
|
-
this.is_strict() && null !== this.duplicate && !this.duplicates_ok &&
|
|
240819
|
+
this.is_strict() && null !== this.duplicate && !this.duplicates_ok && c(this.duplicate, "Parameter " + this.duplicate.value + " was used already");
|
|
240819
240820
|
}
|
|
240820
240821
|
}
|
|
240821
240822
|
function N(e2, t2) {
|
|
240822
240823
|
var n4, r2 = false;
|
|
240823
|
-
return void 0 === e2 && (e2 = new F(true, i.input.has_directive("use strict"))), o("expand", "...") && (r2 = i.token, e2.mark_spread(i.token), a()), n4 = M(e2, t2), o("operator", "=") && false === r2 && (e2.mark_default_assignment(i.token), a(), n4 = new AST_DefaultAssign({ start: n4.start, left: n4, operator: "=", right: Ae(false), end: i.token })), false !== r2 && (o("punc", ")") ||
|
|
240824
|
+
return void 0 === e2 && (e2 = new F(true, i.input.has_directive("use strict"))), o("expand", "...") && (r2 = i.token, e2.mark_spread(i.token), a()), n4 = M(e2, t2), o("operator", "=") && false === r2 && (e2.mark_default_assignment(i.token), a(), n4 = new AST_DefaultAssign({ start: n4.start, left: n4, operator: "=", right: Ae(false), end: i.token })), false !== r2 && (o("punc", ")") || l(), n4 = new AST_Expansion({ start: r2, expression: n4, end: r2 })), e2.check_strict(), n4;
|
|
240824
240825
|
}
|
|
240825
240826
|
function M(e2, t2) {
|
|
240826
|
-
var n4,
|
|
240827
|
+
var n4, c2 = [], _2 = true, p2 = false, d2 = i.token;
|
|
240827
240828
|
if (void 0 === e2) {
|
|
240828
240829
|
const n5 = i.input.has_directive("use strict");
|
|
240829
240830
|
e2 = new F(false, n5, t2 === AST_SymbolVar);
|
|
@@ -240833,45 +240834,45 @@ function parse3(e, t) {
|
|
|
240833
240834
|
if (_2 ? _2 = false : f(","), o("expand", "...") && (p2 = true, n4 = i.token, e2.mark_spread(i.token), a()), o("punc"))
|
|
240834
240835
|
switch (i.token.value) {
|
|
240835
240836
|
case ",":
|
|
240836
|
-
|
|
240837
|
+
c2.push(new AST_Hole({ start: i.token, end: i.token }));
|
|
240837
240838
|
continue;
|
|
240838
240839
|
case "]":
|
|
240839
240840
|
break;
|
|
240840
240841
|
case "[":
|
|
240841
240842
|
case "{":
|
|
240842
|
-
|
|
240843
|
+
c2.push(M(e2, t2));
|
|
240843
240844
|
break;
|
|
240844
240845
|
default:
|
|
240845
|
-
|
|
240846
|
+
l();
|
|
240846
240847
|
}
|
|
240847
240848
|
else
|
|
240848
|
-
o("name") ? (e2.add_parameter(i.token),
|
|
240849
|
-
o("operator", "=") && false === p2 && (e2.mark_default_assignment(i.token), a(),
|
|
240849
|
+
o("name") ? (e2.add_parameter(i.token), c2.push(ae(t2))) : u("Invalid function parameter");
|
|
240850
|
+
o("operator", "=") && false === p2 && (e2.mark_default_assignment(i.token), a(), c2[c2.length - 1] = new AST_DefaultAssign({ start: c2[c2.length - 1].start, left: c2[c2.length - 1], operator: "=", right: Ae(false), end: i.token })), p2 && (o("punc", "]") || u("Rest element must be last element"), c2[c2.length - 1] = new AST_Expansion({ start: n4, expression: c2[c2.length - 1], end: n4 }));
|
|
240850
240851
|
}
|
|
240851
|
-
return f("]"), e2.check_strict(), new AST_Destructuring({ start: d2, names:
|
|
240852
|
+
return f("]"), e2.check_strict(), new AST_Destructuring({ start: d2, names: c2, is_array: true, end: s() });
|
|
240852
240853
|
}
|
|
240853
240854
|
if (o("punc", "{")) {
|
|
240854
240855
|
for (a(); !o("punc", "}"); ) {
|
|
240855
240856
|
if (_2 ? _2 = false : f(","), o("expand", "...") && (p2 = true, n4 = i.token, e2.mark_spread(i.token), a()), o("name") && (is_token(r(), "punc") || is_token(r(), "operator")) && [",", "}", "="].includes(r().value)) {
|
|
240856
240857
|
e2.add_parameter(i.token);
|
|
240857
240858
|
var m2 = s(), S2 = ae(t2);
|
|
240858
|
-
p2 ?
|
|
240859
|
+
p2 ? c2.push(new AST_Expansion({ start: n4, expression: S2, end: S2.end })) : c2.push(new AST_ObjectKeyVal({ start: m2, key: S2.name, value: S2, end: S2.end }));
|
|
240859
240860
|
} else {
|
|
240860
240861
|
if (o("punc", "}"))
|
|
240861
240862
|
continue;
|
|
240862
240863
|
var h2 = i.token, A2 = ne();
|
|
240863
|
-
null === A2 ?
|
|
240864
|
+
null === A2 ? l(s()) : "name" !== s().type || o("punc", ":") ? (f(":"), c2.push(new AST_ObjectKeyVal({ start: h2, quote: h2.quote, key: A2, value: M(e2, t2), end: s() }))) : c2.push(new AST_ObjectKeyVal({ start: s(), key: A2, value: new t2({ start: s(), name: A2, end: s() }), end: s() }));
|
|
240864
240865
|
}
|
|
240865
|
-
p2 ? o("punc", "}") || u("Rest element must be last element") : o("operator", "=") && (e2.mark_default_assignment(i.token), a(),
|
|
240866
|
+
p2 ? o("punc", "}") || u("Rest element must be last element") : o("operator", "=") && (e2.mark_default_assignment(i.token), a(), c2[c2.length - 1].value = new AST_DefaultAssign({ start: c2[c2.length - 1].value.start, left: c2[c2.length - 1].value, operator: "=", right: Ae(false), end: i.token }));
|
|
240866
240867
|
}
|
|
240867
|
-
return f("}"), e2.check_strict(), new AST_Destructuring({ start: d2, names:
|
|
240868
|
+
return f("}"), e2.check_strict(), new AST_Destructuring({ start: d2, names: c2, is_array: false, end: s() });
|
|
240868
240869
|
}
|
|
240869
240870
|
if (o("name"))
|
|
240870
240871
|
return e2.add_parameter(i.token), ae(t2);
|
|
240871
240872
|
u("Invalid function parameter");
|
|
240872
240873
|
}
|
|
240873
240874
|
function x(e2, t2, n4, r2, s2) {
|
|
240874
|
-
var u2 = i.in_loop,
|
|
240875
|
+
var u2 = i.in_loop, c2 = i.labels, l2 = i.in_generator, _2 = i.in_async;
|
|
240875
240876
|
if (++i.in_function, t2 && (i.in_generator = i.in_function), n4 && (i.in_async = i.in_function), s2 && function(e3) {
|
|
240876
240877
|
var t3 = new F(true, i.input.has_directive("use strict"));
|
|
240877
240878
|
for (f("("); !o("punc", ")"); ) {
|
|
@@ -240886,7 +240887,7 @@ function parse3(e, t) {
|
|
|
240886
240887
|
r2 && re(r2), s2 && s2.forEach(re), i.input.pop_directives_stack();
|
|
240887
240888
|
} else
|
|
240888
240889
|
p2 = [new AST_Return({ start: i.token, value: Ae(false), end: i.token })];
|
|
240889
|
-
return --i.in_function, i.in_loop = u2, i.labels =
|
|
240890
|
+
return --i.in_function, i.in_loop = u2, i.labels = c2, i.in_generator = l2, i.in_async = _2, p2;
|
|
240890
240891
|
}
|
|
240891
240892
|
function w() {
|
|
240892
240893
|
var e2 = A(), t2 = g(false, false, true), n4 = null;
|
|
@@ -240895,19 +240896,19 @@ function parse3(e, t) {
|
|
|
240895
240896
|
function I() {
|
|
240896
240897
|
f("{");
|
|
240897
240898
|
for (var e2 = []; !o("punc", "}"); )
|
|
240898
|
-
o("eof") &&
|
|
240899
|
+
o("eof") && l(), e2.push(g());
|
|
240899
240900
|
return a(), e2;
|
|
240900
240901
|
}
|
|
240901
240902
|
function P() {
|
|
240902
240903
|
f("{");
|
|
240903
240904
|
for (var e2, t2 = [], n4 = null, r2 = null; !o("punc", "}"); )
|
|
240904
|
-
o("eof") &&
|
|
240905
|
+
o("eof") && l(), o("keyword", "case") ? (r2 && (r2.end = s()), n4 = [], r2 = new AST_Case({ start: (e2 = i.token, a(), e2), expression: Ae(true), body: n4 }), t2.push(r2), f(":")) : o("keyword", "default") ? (r2 && (r2.end = s()), n4 = [], r2 = new AST_Default({ start: (e2 = i.token, a(), f(":"), e2), body: n4 }), t2.push(r2)) : (n4 || l(), n4.push(g()));
|
|
240905
240906
|
return r2 && (r2.end = s()), a(), t2;
|
|
240906
240907
|
}
|
|
240907
240908
|
function B(e2, t2) {
|
|
240908
240909
|
for (var n4, r2 = []; ; ) {
|
|
240909
|
-
var
|
|
240910
|
-
if (o("punc", "{") || o("punc", "[") ? n4 = new AST_VarDef({ start: i.token, name: M(void 0,
|
|
240910
|
+
var c2 = "var" === t2 ? AST_SymbolVar : "const" === t2 ? AST_SymbolConst : "let" === t2 ? AST_SymbolLet : null;
|
|
240911
|
+
if (o("punc", "{") || o("punc", "[") ? n4 = new AST_VarDef({ start: i.token, name: M(void 0, c2), value: o("operator", "=") ? (_("operator", "="), Ae(false, e2)) : null, end: s() }) : "import" == (n4 = new AST_VarDef({ start: i.token, name: ae(c2), value: o("operator", "=") ? (a(), Ae(false, e2)) : e2 || "const" !== t2 ? null : u("Missing initializer in const declaration"), end: s() })).name.name && u("Unexpected token: import"), r2.push(n4), !o("punc", ","))
|
|
240911
240912
|
break;
|
|
240912
240913
|
a();
|
|
240913
240914
|
}
|
|
@@ -240920,7 +240921,7 @@ function parse3(e, t) {
|
|
|
240920
240921
|
}, U = function(e2) {
|
|
240921
240922
|
return new AST_Const({ start: s(), definitions: B(e2, "const"), end: s() });
|
|
240922
240923
|
};
|
|
240923
|
-
function
|
|
240924
|
+
function G() {
|
|
240924
240925
|
var e2, t2 = i.token;
|
|
240925
240926
|
switch (t2.type) {
|
|
240926
240927
|
case "name":
|
|
@@ -240953,11 +240954,11 @@ function parse3(e, t) {
|
|
|
240953
240954
|
}
|
|
240954
240955
|
return a(), e2;
|
|
240955
240956
|
}
|
|
240956
|
-
function
|
|
240957
|
+
function K(e2, t2) {
|
|
240957
240958
|
var n4 = function(e3, t3) {
|
|
240958
240959
|
return t3 ? new AST_DefaultAssign({ start: e3.start, left: e3, operator: "=", right: t3, end: t3.end }) : e3;
|
|
240959
240960
|
};
|
|
240960
|
-
return e2 instanceof AST_Object ? n4(new AST_Destructuring({ start: e2.start, end: e2.end, is_array: false, names: e2.properties.map((e3) =>
|
|
240961
|
+
return e2 instanceof AST_Object ? n4(new AST_Destructuring({ start: e2.start, end: e2.end, is_array: false, names: e2.properties.map((e3) => K(e3)) }), t2) : e2 instanceof AST_ObjectKeyVal ? (e2.value = K(e2.value), n4(e2, t2)) : e2 instanceof AST_Hole ? e2 : e2 instanceof AST_Destructuring ? (e2.names = e2.names.map((e3) => K(e3)), n4(e2, t2)) : e2 instanceof AST_SymbolRef ? n4(new AST_SymbolFunarg({ name: e2.name, start: e2.start, end: e2.end }), t2) : e2 instanceof AST_Expansion ? (e2.expression = K(e2.expression), n4(e2, t2)) : e2 instanceof AST_Array ? n4(new AST_Destructuring({ start: e2.start, end: e2.end, is_array: true, names: e2.elements.map((e3) => K(e3)) }), t2) : e2 instanceof AST_Assign ? n4(K(e2.left, e2.right), t2) : e2 instanceof AST_DefaultAssign ? (e2.left = K(e2.left), e2) : void u("Invalid function parameter", e2.start.line, e2.start.col);
|
|
240961
240962
|
}
|
|
240962
240963
|
var H2 = function(e2, t2) {
|
|
240963
240964
|
if (o("operator", "new"))
|
|
@@ -240966,7 +240967,7 @@ function parse3(e, t) {
|
|
|
240966
240967
|
if (_("operator", "new"), o("punc", "."))
|
|
240967
240968
|
return a(), _("name", "target"), ue(new AST_NewTarget({ start: t3, end: s() }), e3);
|
|
240968
240969
|
var n4, r2 = H2(false);
|
|
240969
|
-
o("punc", "(") ? (a(), n4 =
|
|
240970
|
+
o("punc", "(") ? (a(), n4 = X(")", true)) : n4 = [];
|
|
240970
240971
|
var u3 = new AST_New({ start: t3, expression: r2, args: n4, end: s() });
|
|
240971
240972
|
return se(u3), ue(u3, e3);
|
|
240972
240973
|
}(e2);
|
|
@@ -240975,30 +240976,30 @@ function parse3(e, t) {
|
|
|
240975
240976
|
var t3 = i.token;
|
|
240976
240977
|
return _("name", "import"), _("punc", "."), _("name", "meta"), ue(new AST_ImportMeta({ start: t3, end: s() }), e3);
|
|
240977
240978
|
}(e2);
|
|
240978
|
-
var u2,
|
|
240979
|
+
var u2, c2 = i.token, p2 = o("name", "async") && "[" != (u2 = r()).value && "arrow" != u2.type && G();
|
|
240979
240980
|
if (o("punc")) {
|
|
240980
240981
|
switch (i.token.value) {
|
|
240981
240982
|
case "(":
|
|
240982
240983
|
if (p2 && !e2)
|
|
240983
240984
|
break;
|
|
240984
240985
|
var d2 = function(e3, t3) {
|
|
240985
|
-
var n4, r2, u3,
|
|
240986
|
+
var n4, r2, u3, c3 = [];
|
|
240986
240987
|
for (f("("); !o("punc", ")"); )
|
|
240987
|
-
n4 &&
|
|
240988
|
-
return f(")"), e3 && o("arrow", "=>") ? n4 && u3 &&
|
|
240988
|
+
n4 && l(n4), o("expand", "...") ? (n4 = i.token, t3 && (r2 = i.token), a(), c3.push(new AST_Expansion({ start: s(), expression: Ae(), end: i.token }))) : c3.push(Ae()), o("punc", ")") || (f(","), o("punc", ")") && (u3 = s(), t3 && (r2 = u3)));
|
|
240989
|
+
return f(")"), e3 && o("arrow", "=>") ? n4 && u3 && l(u3) : r2 && l(r2), c3;
|
|
240989
240990
|
}(t2, !p2);
|
|
240990
240991
|
if (t2 && o("arrow", "=>"))
|
|
240991
|
-
return R(
|
|
240992
|
-
var m2 = p2 ? new AST_Call({ expression: p2, args: d2 }) : he(
|
|
240992
|
+
return R(c2, d2.map((e3) => K(e3)), !!p2);
|
|
240993
|
+
var m2 = p2 ? new AST_Call({ expression: p2, args: d2 }) : he(c2, d2);
|
|
240993
240994
|
if (m2.start) {
|
|
240994
|
-
const e3 =
|
|
240995
|
-
if (n3.set(
|
|
240996
|
-
var S2 =
|
|
240997
|
-
S2.nlb || (S2.nlb =
|
|
240995
|
+
const e3 = c2.comments_before.length;
|
|
240996
|
+
if (n3.set(c2, e3), m2.start.comments_before.unshift(...c2.comments_before), c2.comments_before = m2.start.comments_before, 0 == e3 && c2.comments_before.length > 0) {
|
|
240997
|
+
var S2 = c2.comments_before[0];
|
|
240998
|
+
S2.nlb || (S2.nlb = c2.nlb, c2.nlb = false);
|
|
240998
240999
|
}
|
|
240999
|
-
|
|
241000
|
+
c2.comments_after = m2.start.comments_after;
|
|
241000
241001
|
}
|
|
241001
|
-
m2.start =
|
|
241002
|
+
m2.start = c2;
|
|
241002
241003
|
var h2 = s();
|
|
241003
241004
|
return m2.end && (h2.comments_before = m2.end.comments_before, m2.end.comments_after.push(...h2.comments_after), h2.comments_after = m2.end.comments_after), m2.end = h2, m2 instanceof AST_Call && se(m2), ue(m2, e2);
|
|
241004
241005
|
case "[":
|
|
@@ -241006,39 +241007,39 @@ function parse3(e, t) {
|
|
|
241006
241007
|
case "{":
|
|
241007
241008
|
return ue(Y(), e2);
|
|
241008
241009
|
}
|
|
241009
|
-
p2 ||
|
|
241010
|
+
p2 || l();
|
|
241010
241011
|
}
|
|
241011
241012
|
if (t2 && o("name") && is_token(r(), "arrow")) {
|
|
241012
|
-
var A2 = new AST_SymbolFunarg({ name: i.token.value, start:
|
|
241013
|
-
return a(), R(
|
|
241013
|
+
var A2 = new AST_SymbolFunarg({ name: i.token.value, start: c2, end: c2 });
|
|
241014
|
+
return a(), R(c2, [A2], !!p2);
|
|
241014
241015
|
}
|
|
241015
241016
|
if (o("keyword", "function")) {
|
|
241016
241017
|
a();
|
|
241017
241018
|
var T2 = O2(AST_Function, false, !!p2);
|
|
241018
|
-
return T2.start =
|
|
241019
|
+
return T2.start = c2, T2.end = s(), ue(T2, e2);
|
|
241019
241020
|
}
|
|
241020
241021
|
if (p2)
|
|
241021
241022
|
return ue(p2, e2);
|
|
241022
241023
|
if (o("keyword", "class")) {
|
|
241023
241024
|
a();
|
|
241024
241025
|
var E2 = j(AST_ClassExpression);
|
|
241025
|
-
return E2.start =
|
|
241026
|
+
return E2.start = c2, E2.end = s(), ue(E2, e2);
|
|
241026
241027
|
}
|
|
241027
|
-
return o("template_head") ? ue(
|
|
241028
|
+
return o("template_head") ? ue(z(), e2) : ATOMIC_START_TOKEN.has(i.token.type) ? ue(G(), e2) : void l();
|
|
241028
241029
|
};
|
|
241029
|
-
function
|
|
241030
|
+
function z() {
|
|
241030
241031
|
var e2 = [], t2 = i.token;
|
|
241031
241032
|
for (e2.push(new AST_TemplateSegment({ start: i.token, raw: TEMPLATE_RAWS.get(i.token), value: i.token.value, end: i.token })); !i.token.template_end; )
|
|
241032
241033
|
a(), E(), e2.push(Ae(true)), e2.push(new AST_TemplateSegment({ start: i.token, raw: TEMPLATE_RAWS.get(i.token), value: i.token.value, end: i.token }));
|
|
241033
241034
|
return a(), new AST_TemplateString({ start: t2, segments: e2, end: i.token });
|
|
241034
241035
|
}
|
|
241035
|
-
function
|
|
241036
|
+
function X(e2, t2, n4) {
|
|
241036
241037
|
for (var r2 = true, u2 = []; !o("punc", e2) && (r2 ? r2 = false : f(","), !t2 || !o("punc", e2)); )
|
|
241037
241038
|
o("punc", ",") && n4 ? u2.push(new AST_Hole({ start: i.token, end: i.token })) : o("expand", "...") ? (a(), u2.push(new AST_Expansion({ start: s(), expression: Ae(), end: i.token }))) : u2.push(Ae(false));
|
|
241038
241039
|
return a(), u2;
|
|
241039
241040
|
}
|
|
241040
241041
|
var W = T(function() {
|
|
241041
|
-
return f("["), new AST_Array({ elements:
|
|
241042
|
+
return f("["), new AST_Array({ elements: X("]", !t.strict, true) });
|
|
241042
241043
|
}), q = T((e2, t2) => O2(AST_Accessor, e2, t2)), Y = T(function() {
|
|
241043
241044
|
var e2 = i.token, n4 = true, r2 = [];
|
|
241044
241045
|
for (f("{"); !o("punc", "}") && (n4 ? n4 = false : f(","), t.strict || !o("punc", "}")); ) {
|
|
@@ -241047,37 +241048,37 @@ function parse3(e, t) {
|
|
|
241047
241048
|
continue;
|
|
241048
241049
|
}
|
|
241049
241050
|
o("privatename") && u("private fields are not allowed in an object");
|
|
241050
|
-
var
|
|
241051
|
+
var c2, _2 = ne();
|
|
241051
241052
|
if (o("punc", ":"))
|
|
241052
|
-
null === _2 ?
|
|
241053
|
+
null === _2 ? l(s()) : (a(), c2 = Ae(false));
|
|
241053
241054
|
else {
|
|
241054
241055
|
var p2 = $(_2, e2);
|
|
241055
241056
|
if (p2) {
|
|
241056
241057
|
r2.push(p2);
|
|
241057
241058
|
continue;
|
|
241058
241059
|
}
|
|
241059
|
-
|
|
241060
|
+
c2 = new AST_SymbolRef({ start: s(), name: _2, end: s() });
|
|
241060
241061
|
}
|
|
241061
|
-
o("operator", "=") && (a(),
|
|
241062
|
-
const t2 = new AST_ObjectKeyVal({ start: e2, quote: e2.quote, key: _2 instanceof AST_Node ? _2 : "" + _2, value:
|
|
241062
|
+
o("operator", "=") && (a(), c2 = new AST_Assign({ start: e2, left: c2, operator: "=", right: Ae(false), logical: false, end: s() }));
|
|
241063
|
+
const t2 = new AST_ObjectKeyVal({ start: e2, quote: e2.quote, key: _2 instanceof AST_Node ? _2 : "" + _2, value: c2, end: s() });
|
|
241063
241064
|
r2.push(se(t2));
|
|
241064
241065
|
}
|
|
241065
241066
|
return a(), new AST_Object({ properties: r2 });
|
|
241066
241067
|
});
|
|
241067
241068
|
function j(e2, t2) {
|
|
241068
|
-
var n4, r2, u2,
|
|
241069
|
-
i.input.push_directives_stack(), i.input.add_directive("use strict"), "name" == i.token.type && "extends" != i.token.value && (u2 = ae(e2 === AST_DefClass ? AST_SymbolDefClass : AST_SymbolClass)), e2 !== AST_DefClass || u2 || (t2 ? e2 = AST_ClassExpression :
|
|
241069
|
+
var n4, r2, u2, c2, _2 = [];
|
|
241070
|
+
i.input.push_directives_stack(), i.input.add_directive("use strict"), "name" == i.token.type && "extends" != i.token.value && (u2 = ae(e2 === AST_DefClass ? AST_SymbolDefClass : AST_SymbolClass)), e2 !== AST_DefClass || u2 || (t2 ? e2 = AST_ClassExpression : l()), "extends" == i.token.value && (a(), c2 = Ae(true)), f("{");
|
|
241070
241071
|
const p2 = i.in_class;
|
|
241071
241072
|
for (i.in_class = true; o("punc", ";"); )
|
|
241072
241073
|
a();
|
|
241073
241074
|
for (; !o("punc", "}"); )
|
|
241074
|
-
for (n4 = i.token, (r2 = $(ne(), n4, true)) ||
|
|
241075
|
+
for (n4 = i.token, (r2 = $(ne(), n4, true)) || l(), _2.push(r2); o("punc", ";"); )
|
|
241075
241076
|
a();
|
|
241076
|
-
return i.in_class = p2, i.input.pop_directives_stack(), a(), new e2({ start: n4, name: u2, extends:
|
|
241077
|
+
return i.in_class = p2, i.input.pop_directives_stack(), a(), new e2({ start: n4, name: u2, extends: c2, properties: _2, end: s() });
|
|
241077
241078
|
}
|
|
241078
241079
|
function $(e2, t2, n4) {
|
|
241079
|
-
const r2 = (e3, n5 = AST_SymbolMethod) => "string" == typeof e3 || "number" == typeof e3 ? new n5({ start: t2, name: "" + e3, end: s() }) : (null === e3 &&
|
|
241080
|
-
var
|
|
241080
|
+
const r2 = (e3, n5 = AST_SymbolMethod) => "string" == typeof e3 || "number" == typeof e3 ? new n5({ start: t2, name: "" + e3, end: s() }) : (null === e3 && l(), e3), u2 = () => !(o("punc", "(") || o("punc", ",") || o("punc", "}") || o("punc", ";") || o("operator", "="));
|
|
241081
|
+
var c2 = false, _2 = false, f2 = false, p2 = false, d2 = null;
|
|
241081
241082
|
if (n4 && "static" === e2 && u2()) {
|
|
241082
241083
|
const t3 = function() {
|
|
241083
241084
|
if (!o("punc", "{"))
|
|
@@ -241091,7 +241092,7 @@ function parse3(e, t) {
|
|
|
241091
241092
|
return t3;
|
|
241092
241093
|
_2 = true, e2 = ne();
|
|
241093
241094
|
}
|
|
241094
|
-
"async" === e2 && u2() && (
|
|
241095
|
+
"async" === e2 && u2() && (c2 = true, e2 = ne()), "operator" === s().type && "*" === s().value && (f2 = true, e2 = ne()), "get" !== e2 && "set" !== e2 || !u2() || (d2 = e2, e2 = ne()), "privatename" === s().type && (p2 = true);
|
|
241095
241096
|
const m2 = s();
|
|
241096
241097
|
if (null != d2) {
|
|
241097
241098
|
if (p2)
|
|
@@ -241102,7 +241103,7 @@ function parse3(e, t) {
|
|
|
241102
241103
|
}
|
|
241103
241104
|
}
|
|
241104
241105
|
if (o("punc", "("))
|
|
241105
|
-
return e2 = r2(e2), se(new (p2 ? AST_PrivateMethod : AST_ConciseMethod)({ start: t2, static: _2, is_generator: f2, async:
|
|
241106
|
+
return e2 = r2(e2), se(new (p2 ? AST_PrivateMethod : AST_ConciseMethod)({ start: t2, static: _2, is_generator: f2, async: c2, key: e2, quote: e2 instanceof AST_SymbolMethod ? m2.quote : void 0, value: q(f2, c2), end: s() }));
|
|
241106
241107
|
if (n4) {
|
|
241107
241108
|
const n5 = r2(e2, AST_SymbolClassProperty), i2 = n5 instanceof AST_SymbolClassProperty ? m2.quote : void 0, u3 = p2 ? AST_ClassPrivateProperty : AST_ClassProperty;
|
|
241108
241109
|
if (o("operator", "="))
|
|
@@ -241118,12 +241119,12 @@ function parse3(e, t) {
|
|
|
241118
241119
|
function t2(e3, t3) {
|
|
241119
241120
|
return new e3({ name: ne(), quote: t3 || void 0, start: s(), end: s() });
|
|
241120
241121
|
}
|
|
241121
|
-
var n4, r2, u2 = e2 ? AST_SymbolImportForeign : AST_SymbolExportForeign,
|
|
241122
|
-
return e2 ? n4 = t2(u2,
|
|
241122
|
+
var n4, r2, u2 = e2 ? AST_SymbolImportForeign : AST_SymbolExportForeign, c2 = e2 ? AST_SymbolImport : AST_SymbolExport, l2 = i.token;
|
|
241123
|
+
return e2 ? n4 = t2(u2, l2.quote) : r2 = t2(c2, l2.quote), o("name", "as") ? (a(), e2 ? r2 = t2(c2) : n4 = t2(u2, i.token.quote)) : e2 ? r2 = new c2(n4) : n4 = new u2(r2), new AST_NameMapping({ start: l2, foreign_name: n4, name: r2, end: s() });
|
|
241123
241124
|
}
|
|
241124
241125
|
function J(e2, t2) {
|
|
241125
|
-
var n4, o2, r2 = e2 ? AST_SymbolImportForeign : AST_SymbolExportForeign, a2 = e2 ? AST_SymbolImport : AST_SymbolExport, u2 = i.token,
|
|
241126
|
-
return e2 ? n4 = t2 : o2 = t2, n4 = n4 || new a2({ start: u2, name: "*", end:
|
|
241126
|
+
var n4, o2, r2 = e2 ? AST_SymbolImportForeign : AST_SymbolExportForeign, a2 = e2 ? AST_SymbolImport : AST_SymbolExport, u2 = i.token, c2 = s();
|
|
241127
|
+
return e2 ? n4 = t2 : o2 = t2, n4 = n4 || new a2({ start: u2, name: "*", end: c2 }), o2 = o2 || new r2({ start: u2, name: "*", end: c2 }), new AST_NameMapping({ start: u2, foreign_name: o2, name: n4, end: c2 });
|
|
241127
241128
|
}
|
|
241128
241129
|
function ee(e2) {
|
|
241129
241130
|
var t2;
|
|
@@ -241146,20 +241147,20 @@ function parse3(e, t) {
|
|
|
241146
241147
|
return t2;
|
|
241147
241148
|
}
|
|
241148
241149
|
function te() {
|
|
241149
|
-
var e2, t2, n4, u2,
|
|
241150
|
+
var e2, t2, n4, u2, c2, _2 = i.token;
|
|
241150
241151
|
if (o("keyword", "default"))
|
|
241151
241152
|
e2 = true, a();
|
|
241152
241153
|
else if (t2 = ee(false)) {
|
|
241153
241154
|
if (o("name", "from")) {
|
|
241154
241155
|
a();
|
|
241155
241156
|
var f2 = i.token;
|
|
241156
|
-
"string" !== f2.type &&
|
|
241157
|
+
"string" !== f2.type && l(), a();
|
|
241157
241158
|
const n5 = Z();
|
|
241158
241159
|
return new AST_Export({ start: _2, is_default: e2, exported_names: t2, module_name: new AST_String({ start: f2, value: f2.value, quote: f2.quote, end: f2 }), end: s(), assert_clause: n5 });
|
|
241159
241160
|
}
|
|
241160
241161
|
return new AST_Export({ start: _2, is_default: e2, exported_names: t2, end: s() });
|
|
241161
241162
|
}
|
|
241162
|
-
return o("punc", "{") || e2 && (o("keyword", "class") || o("keyword", "function")) && is_token(r(), "punc") ? (u2 = Ae(false), h()) : (n4 = g(e2)) instanceof AST_Definitions && e2 ?
|
|
241163
|
+
return o("punc", "{") || e2 && (o("keyword", "class") || o("keyword", "function")) && is_token(r(), "punc") ? (u2 = Ae(false), h()) : (n4 = g(e2)) instanceof AST_Definitions && e2 ? l(n4.start) : n4 instanceof AST_Definitions || n4 instanceof AST_Defun || n4 instanceof AST_DefClass ? c2 = n4 : n4 instanceof AST_ClassExpression || n4 instanceof AST_Function ? u2 = n4 : n4 instanceof AST_SimpleStatement ? u2 = n4.body : l(n4.start), new AST_Export({ start: _2, is_default: e2, exported_value: u2, exported_definition: c2, end: s(), assert_clause: null });
|
|
241163
241164
|
}
|
|
241164
241165
|
function ne() {
|
|
241165
241166
|
var e2 = i.token;
|
|
@@ -241170,11 +241171,11 @@ function parse3(e, t) {
|
|
|
241170
241171
|
var t2 = Ae(false);
|
|
241171
241172
|
return f("]"), t2;
|
|
241172
241173
|
}
|
|
241173
|
-
|
|
241174
|
+
l(e2);
|
|
241174
241175
|
case "operator":
|
|
241175
241176
|
if ("*" === e2.value)
|
|
241176
241177
|
return a(), null;
|
|
241177
|
-
["delete", "in", "instanceof", "new", "typeof", "void"].includes(e2.value) ||
|
|
241178
|
+
["delete", "in", "instanceof", "new", "typeof", "void"].includes(e2.value) || l(e2);
|
|
241178
241179
|
case "name":
|
|
241179
241180
|
case "privatename":
|
|
241180
241181
|
case "string":
|
|
@@ -241184,12 +241185,12 @@ function parse3(e, t) {
|
|
|
241184
241185
|
case "atom":
|
|
241185
241186
|
return a(), e2.value;
|
|
241186
241187
|
default:
|
|
241187
|
-
|
|
241188
|
+
l(e2);
|
|
241188
241189
|
}
|
|
241189
241190
|
}
|
|
241190
241191
|
function ie() {
|
|
241191
241192
|
var e2 = i.token;
|
|
241192
|
-
return "name" != e2.type && "privatename" != e2.type &&
|
|
241193
|
+
return "name" != e2.type && "privatename" != e2.type && l(), a(), e2.value;
|
|
241193
241194
|
}
|
|
241194
241195
|
function oe(e2) {
|
|
241195
241196
|
var t2 = i.token.value;
|
|
@@ -241197,7 +241198,7 @@ function parse3(e, t) {
|
|
|
241197
241198
|
}
|
|
241198
241199
|
function re(e2) {
|
|
241199
241200
|
var t2 = e2.name;
|
|
241200
|
-
m() && "yield" == t2 &&
|
|
241201
|
+
m() && "yield" == t2 && c(e2.start, "Yield cannot be used as identifier inside generators"), i.input.has_directive("use strict") && ("yield" == t2 && c(e2.start, "Unexpected yield identifier inside strict mode"), e2 instanceof AST_SymbolDeclaration && ("arguments" == t2 || "eval" == t2) && c(e2.start, "Unexpected " + t2 + " in strict mode"));
|
|
241201
241202
|
}
|
|
241202
241203
|
function ae(e2, t2) {
|
|
241203
241204
|
if (!o("name"))
|
|
@@ -241239,24 +241240,24 @@ function parse3(e, t) {
|
|
|
241239
241240
|
var r2 = e2.start;
|
|
241240
241241
|
if (o("punc", ".")) {
|
|
241241
241242
|
a(), o("privatename") && !i.in_class && u("Private field must be used in an enclosing class");
|
|
241242
|
-
const
|
|
241243
|
-
return se(ue(new
|
|
241243
|
+
const c3 = o("privatename") ? AST_DotHash : AST_Dot;
|
|
241244
|
+
return se(ue(new c3({ start: r2, expression: e2, optional: false, property: ie(), end: s() }), t2, n4));
|
|
241244
241245
|
}
|
|
241245
241246
|
if (o("punc", "[")) {
|
|
241246
241247
|
a();
|
|
241247
|
-
var
|
|
241248
|
-
return f("]"), se(ue(new AST_Sub({ start: r2, expression: e2, optional: false, property:
|
|
241248
|
+
var c2 = Ae(true);
|
|
241249
|
+
return f("]"), se(ue(new AST_Sub({ start: r2, expression: e2, optional: false, property: c2, end: s() }), t2, n4));
|
|
241249
241250
|
}
|
|
241250
241251
|
if (t2 && o("punc", "(")) {
|
|
241251
241252
|
a();
|
|
241252
|
-
var _2 = new AST_Call({ start: r2, expression: e2, optional: false, args:
|
|
241253
|
+
var _2 = new AST_Call({ start: r2, expression: e2, optional: false, args: ce(), end: s() });
|
|
241253
241254
|
return se(_2), ue(_2, true, n4);
|
|
241254
241255
|
}
|
|
241255
241256
|
if (o("punc", "?.")) {
|
|
241256
241257
|
let n5;
|
|
241257
241258
|
if (a(), t2 && o("punc", "(")) {
|
|
241258
241259
|
a();
|
|
241259
|
-
const t3 = new AST_Call({ start: r2, optional: true, expression: e2, args:
|
|
241260
|
+
const t3 = new AST_Call({ start: r2, optional: true, expression: e2, args: ce(), end: s() });
|
|
241260
241261
|
se(t3), n5 = ue(t3, true, true);
|
|
241261
241262
|
} else if (o("name") || o("privatename")) {
|
|
241262
241263
|
o("privatename") && !i.in_class && u("Private field must be used in an enclosing class");
|
|
@@ -241267,27 +241268,27 @@ function parse3(e, t) {
|
|
|
241267
241268
|
const i2 = Ae(true);
|
|
241268
241269
|
f("]"), n5 = se(ue(new AST_Sub({ start: r2, expression: e2, optional: true, property: i2, end: s() }), t2, true));
|
|
241269
241270
|
}
|
|
241270
|
-
return n5 ||
|
|
241271
|
+
return n5 || l(), n5 instanceof AST_Chain ? n5 : new AST_Chain({ start: r2, expression: n5, end: s() });
|
|
241271
241272
|
}
|
|
241272
|
-
return o("template_head") ? (n4 &&
|
|
241273
|
+
return o("template_head") ? (n4 && l(), ue(new AST_PrefixedTemplateString({ start: r2, prefix: e2, template_string: z(), end: s() }), t2)) : e2;
|
|
241273
241274
|
};
|
|
241274
|
-
function
|
|
241275
|
+
function ce() {
|
|
241275
241276
|
for (var e2 = []; !o("punc", ")"); )
|
|
241276
241277
|
o("expand", "...") ? (a(), e2.push(new AST_Expansion({ start: s(), expression: Ae(false), end: s() }))) : e2.push(Ae(false)), o("punc", ")") || f(",");
|
|
241277
241278
|
return a(), e2;
|
|
241278
241279
|
}
|
|
241279
|
-
var
|
|
241280
|
+
var le = function(e2, t2) {
|
|
241280
241281
|
var n4 = i.token;
|
|
241281
241282
|
if ("name" == n4.type && "await" == n4.value && S())
|
|
241282
|
-
return a(), S() || u("Unexpected await expression outside async function", i.prev.line, i.prev.col, i.prev.pos), new AST_Await({ start: s(), end: i.token, expression:
|
|
241283
|
+
return a(), S() || u("Unexpected await expression outside async function", i.prev.line, i.prev.col, i.prev.pos), new AST_Await({ start: s(), end: i.token, expression: le(true) });
|
|
241283
241284
|
if (o("operator") && UNARY_PREFIX.has(n4.value)) {
|
|
241284
241285
|
a(), E();
|
|
241285
|
-
var r2 = _e(AST_UnaryPrefix, n4,
|
|
241286
|
+
var r2 = _e(AST_UnaryPrefix, n4, le(e2));
|
|
241286
241287
|
return r2.start = n4, r2.end = s(), r2;
|
|
241287
241288
|
}
|
|
241288
|
-
for (var
|
|
241289
|
-
|
|
241290
|
-
return
|
|
241289
|
+
for (var c2 = H2(e2, t2); o("operator") && UNARY_POSTFIX.has(i.token.value) && !p(i.token); )
|
|
241290
|
+
c2 instanceof AST_Arrow && l(), (c2 = _e(AST_UnaryPostfix, i.token, c2)).start = n4, c2.end = i.token, a();
|
|
241291
|
+
return c2;
|
|
241291
241292
|
};
|
|
241292
241293
|
function _e(e2, t2, n4) {
|
|
241293
241294
|
var o2 = t2.value;
|
|
@@ -241303,7 +241304,7 @@ function parse3(e, t) {
|
|
|
241303
241304
|
}
|
|
241304
241305
|
var fe = function(e2, t2, n4) {
|
|
241305
241306
|
var r2 = o("operator") ? i.token.value : null;
|
|
241306
|
-
"in" == r2 && n4 && (r2 = null), "**" == r2 && e2 instanceof AST_UnaryPrefix && !is_token(e2.start, "punc", "(") && "--" !== e2.operator && "++" !== e2.operator &&
|
|
241307
|
+
"in" == r2 && n4 && (r2 = null), "**" == r2 && e2 instanceof AST_UnaryPrefix && !is_token(e2.start, "punc", "(") && "--" !== e2.operator && "++" !== e2.operator && l(e2.start);
|
|
241307
241308
|
var s2 = null != r2 ? PRECEDENCE[r2] : null;
|
|
241308
241309
|
if (null != s2 && (s2 > t2 || "**" === r2 && t2 === s2)) {
|
|
241309
241310
|
a();
|
|
@@ -241320,7 +241321,7 @@ function parse3(e, t) {
|
|
|
241320
241321
|
const o2 = new AST_PrivateIn({ start: t3, key: n5, value: pe(e2, PRECEDENCE.in, true), end: s() });
|
|
241321
241322
|
return fe(o2, 0, e2);
|
|
241322
241323
|
}
|
|
241323
|
-
return fe(
|
|
241324
|
+
return fe(le(n4, r2), t2, e2);
|
|
241324
241325
|
}
|
|
241325
241326
|
function de(e2) {
|
|
241326
241327
|
return e2 instanceof AST_PropAccess || e2 instanceof AST_SymbolRef;
|
|
@@ -241330,7 +241331,7 @@ function parse3(e, t) {
|
|
|
241330
241331
|
e2 = new AST_Destructuring({ start: e2.start, names: e2.properties.map(me), is_array: false, end: e2.end });
|
|
241331
241332
|
else if (e2 instanceof AST_Array) {
|
|
241332
241333
|
for (var t2 = [], n4 = 0; n4 < e2.elements.length; n4++)
|
|
241333
|
-
e2.elements[n4] instanceof AST_Expansion && (n4 + 1 !== e2.elements.length &&
|
|
241334
|
+
e2.elements[n4] instanceof AST_Expansion && (n4 + 1 !== e2.elements.length && c(e2.elements[n4].start, "Spread must the be last element in destructuring array"), e2.elements[n4].expression = me(e2.elements[n4].expression)), t2.push(me(e2.elements[n4]));
|
|
241334
241335
|
e2 = new AST_Destructuring({ start: e2.start, names: t2, is_array: true, end: e2.end });
|
|
241335
241336
|
} else
|
|
241336
241337
|
e2 instanceof AST_ObjectProperty ? e2.value = me(e2.value) : e2 instanceof AST_Assign && (e2 = new AST_DefaultAssign({ start: e2.start, left: e2.left, operator: "=", right: e2.right, end: e2.end }));
|
|
@@ -241346,7 +241347,7 @@ function parse3(e, t) {
|
|
|
241346
241347
|
var e3 = i.token, t3 = false, n5 = true;
|
|
241347
241348
|
return d() || o("punc") && PUNC_AFTER_EXPRESSION.has(i.token.value) ? n5 = false : o("operator", "*") && (t3 = true, a()), new AST_Yield({ start: e3, is_star: t3, expression: n5 ? Ae() : null, end: s() });
|
|
241348
241349
|
}();
|
|
241349
|
-
i.input.has_directive("use strict") &&
|
|
241350
|
+
i.input.has_directive("use strict") && c(i.token, "Unexpected yield identifier inside strict mode");
|
|
241350
241351
|
}
|
|
241351
241352
|
var n4 = function(e3) {
|
|
241352
241353
|
var t3 = i.token, n5 = pe(e3, 0, true, true);
|
|
@@ -242674,98 +242675,98 @@ def_transform(AST_Node, noop2), def_transform(AST_LabeledStatement, function(e,
|
|
|
242674
242675
|
}, u(AST_EmptyStatement, function() {
|
|
242675
242676
|
return { type: "EmptyStatement" };
|
|
242676
242677
|
}), u(AST_BlockStatement, function(e2) {
|
|
242677
|
-
return { type: "BlockStatement", body: e2.body.map(
|
|
242678
|
+
return { type: "BlockStatement", body: e2.body.map(l) };
|
|
242678
242679
|
}), u(AST_If, function(e2) {
|
|
242679
|
-
return { type: "IfStatement", test:
|
|
242680
|
+
return { type: "IfStatement", test: l(e2.condition), consequent: l(e2.body), alternate: l(e2.alternative) };
|
|
242680
242681
|
}), u(AST_LabeledStatement, function(e2) {
|
|
242681
|
-
return { type: "LabeledStatement", label:
|
|
242682
|
+
return { type: "LabeledStatement", label: l(e2.label), body: l(e2.body) };
|
|
242682
242683
|
}), u(AST_Break, function(e2) {
|
|
242683
|
-
return { type: "BreakStatement", label:
|
|
242684
|
+
return { type: "BreakStatement", label: l(e2.label) };
|
|
242684
242685
|
}), u(AST_Continue, function(e2) {
|
|
242685
|
-
return { type: "ContinueStatement", label:
|
|
242686
|
+
return { type: "ContinueStatement", label: l(e2.label) };
|
|
242686
242687
|
}), u(AST_With, function(e2) {
|
|
242687
|
-
return { type: "WithStatement", object:
|
|
242688
|
+
return { type: "WithStatement", object: l(e2.expression), body: l(e2.body) };
|
|
242688
242689
|
}), u(AST_Switch, function(e2) {
|
|
242689
|
-
return { type: "SwitchStatement", discriminant:
|
|
242690
|
+
return { type: "SwitchStatement", discriminant: l(e2.expression), cases: e2.body.map(l) };
|
|
242690
242691
|
}), u(AST_Return, function(e2) {
|
|
242691
|
-
return { type: "ReturnStatement", argument:
|
|
242692
|
+
return { type: "ReturnStatement", argument: l(e2.value) };
|
|
242692
242693
|
}), u(AST_Throw, function(e2) {
|
|
242693
|
-
return { type: "ThrowStatement", argument:
|
|
242694
|
+
return { type: "ThrowStatement", argument: l(e2.value) };
|
|
242694
242695
|
}), u(AST_While, function(e2) {
|
|
242695
|
-
return { type: "WhileStatement", test:
|
|
242696
|
+
return { type: "WhileStatement", test: l(e2.condition), body: l(e2.body) };
|
|
242696
242697
|
}), u(AST_Do, function(e2) {
|
|
242697
|
-
return { type: "DoWhileStatement", test:
|
|
242698
|
+
return { type: "DoWhileStatement", test: l(e2.condition), body: l(e2.body) };
|
|
242698
242699
|
}), u(AST_For, function(e2) {
|
|
242699
|
-
return { type: "ForStatement", init:
|
|
242700
|
+
return { type: "ForStatement", init: l(e2.init), test: l(e2.condition), update: l(e2.step), body: l(e2.body) };
|
|
242700
242701
|
}), u(AST_ForIn, function(e2) {
|
|
242701
|
-
return { type: "ForInStatement", left:
|
|
242702
|
+
return { type: "ForInStatement", left: l(e2.init), right: l(e2.object), body: l(e2.body) };
|
|
242702
242703
|
}), u(AST_ForOf, function(e2) {
|
|
242703
|
-
return { type: "ForOfStatement", left:
|
|
242704
|
+
return { type: "ForOfStatement", left: l(e2.init), right: l(e2.object), body: l(e2.body), await: e2.await };
|
|
242704
242705
|
}), u(AST_Await, function(e2) {
|
|
242705
|
-
return { type: "AwaitExpression", argument:
|
|
242706
|
+
return { type: "AwaitExpression", argument: l(e2.expression) };
|
|
242706
242707
|
}), u(AST_Yield, function(e2) {
|
|
242707
|
-
return { type: "YieldExpression", argument:
|
|
242708
|
+
return { type: "YieldExpression", argument: l(e2.expression), delegate: e2.is_star };
|
|
242708
242709
|
}), u(AST_Debugger, function() {
|
|
242709
242710
|
return { type: "DebuggerStatement" };
|
|
242710
242711
|
}), u(AST_VarDef, function(e2) {
|
|
242711
|
-
return { type: "VariableDeclarator", id:
|
|
242712
|
+
return { type: "VariableDeclarator", id: l(e2.name), init: l(e2.value) };
|
|
242712
242713
|
}), u(AST_Catch, function(e2) {
|
|
242713
|
-
return { type: "CatchClause", param:
|
|
242714
|
+
return { type: "CatchClause", param: l(e2.argname), body: f(e2) };
|
|
242714
242715
|
}), u(AST_This, function() {
|
|
242715
242716
|
return { type: "ThisExpression" };
|
|
242716
242717
|
}), u(AST_Super, function() {
|
|
242717
242718
|
return { type: "Super" };
|
|
242718
242719
|
}), u(AST_Binary, function(e2) {
|
|
242719
|
-
return { type: "BinaryExpression", operator: e2.operator, left:
|
|
242720
|
+
return { type: "BinaryExpression", operator: e2.operator, left: l(e2.left), right: l(e2.right) };
|
|
242720
242721
|
}), u(AST_Binary, function(e2) {
|
|
242721
|
-
return { type: "LogicalExpression", operator: e2.operator, left:
|
|
242722
|
+
return { type: "LogicalExpression", operator: e2.operator, left: l(e2.left), right: l(e2.right) };
|
|
242722
242723
|
}), u(AST_Assign, function(e2) {
|
|
242723
|
-
return { type: "AssignmentExpression", operator: e2.operator, left:
|
|
242724
|
+
return { type: "AssignmentExpression", operator: e2.operator, left: l(e2.left), right: l(e2.right) };
|
|
242724
242725
|
}), u(AST_Conditional, function(e2) {
|
|
242725
|
-
return { type: "ConditionalExpression", test:
|
|
242726
|
+
return { type: "ConditionalExpression", test: l(e2.condition), consequent: l(e2.consequent), alternate: l(e2.alternative) };
|
|
242726
242727
|
}), u(AST_New, function(e2) {
|
|
242727
|
-
return { type: "NewExpression", callee:
|
|
242728
|
+
return { type: "NewExpression", callee: l(e2.expression), arguments: e2.args.map(l) };
|
|
242728
242729
|
}), u(AST_Call, function(e2) {
|
|
242729
|
-
return { type: "CallExpression", callee:
|
|
242730
|
+
return { type: "CallExpression", callee: l(e2.expression), optional: e2.optional, arguments: e2.args.map(l) };
|
|
242730
242731
|
}), u(AST_Toplevel, function(e2) {
|
|
242731
242732
|
return p("Program", e2);
|
|
242732
242733
|
}), u(AST_Expansion, function(e2) {
|
|
242733
|
-
return { type: _() ? "RestElement" : "SpreadElement", argument:
|
|
242734
|
+
return { type: _() ? "RestElement" : "SpreadElement", argument: l(e2.expression) };
|
|
242734
242735
|
}), u(AST_PrefixedTemplateString, function(e2) {
|
|
242735
|
-
return { type: "TaggedTemplateExpression", tag:
|
|
242736
|
+
return { type: "TaggedTemplateExpression", tag: l(e2.prefix), quasi: l(e2.template_string) };
|
|
242736
242737
|
}), u(AST_TemplateString, function(e2) {
|
|
242737
242738
|
for (var t2 = [], n4 = [], i2 = 0; i2 < e2.segments.length; i2++)
|
|
242738
|
-
i2 % 2 != 0 ? n4.push(
|
|
242739
|
+
i2 % 2 != 0 ? n4.push(l(e2.segments[i2])) : t2.push({ type: "TemplateElement", value: { raw: e2.segments[i2].raw, cooked: e2.segments[i2].value }, tail: i2 === e2.segments.length - 1 });
|
|
242739
242740
|
return { type: "TemplateLiteral", quasis: t2, expressions: n4 };
|
|
242740
242741
|
}), u(AST_Defun, function(e2) {
|
|
242741
|
-
return { type: "FunctionDeclaration", id:
|
|
242742
|
+
return { type: "FunctionDeclaration", id: l(e2.name), params: e2.argnames.map(l), generator: e2.is_generator, async: e2.async, body: p("BlockStatement", e2) };
|
|
242742
242743
|
}), u(AST_Function, function(e2, t2) {
|
|
242743
242744
|
var n4 = void 0 !== t2.is_generator ? t2.is_generator : e2.is_generator;
|
|
242744
|
-
return { type: "FunctionExpression", id:
|
|
242745
|
+
return { type: "FunctionExpression", id: l(e2.name), params: e2.argnames.map(l), generator: n4, async: e2.async, body: p("BlockStatement", e2) };
|
|
242745
242746
|
}), u(AST_Arrow, function(e2) {
|
|
242746
|
-
var t2 = { type: "BlockStatement", body: e2.body.map(
|
|
242747
|
-
return { type: "ArrowFunctionExpression", params: e2.argnames.map(
|
|
242747
|
+
var t2 = { type: "BlockStatement", body: e2.body.map(l) };
|
|
242748
|
+
return { type: "ArrowFunctionExpression", params: e2.argnames.map(l), async: e2.async, body: t2 };
|
|
242748
242749
|
}), u(AST_Destructuring, function(e2) {
|
|
242749
|
-
return e2.is_array ? { type: "ArrayPattern", elements: e2.names.map(
|
|
242750
|
+
return e2.is_array ? { type: "ArrayPattern", elements: e2.names.map(l) } : { type: "ObjectPattern", properties: e2.names.map(l) };
|
|
242750
242751
|
}), u(AST_Directive, function(e2) {
|
|
242751
242752
|
return { type: "ExpressionStatement", expression: { type: "Literal", value: e2.value, raw: e2.print_to_string() }, directive: e2.value };
|
|
242752
242753
|
}), u(AST_SimpleStatement, function(e2) {
|
|
242753
|
-
return { type: "ExpressionStatement", expression:
|
|
242754
|
+
return { type: "ExpressionStatement", expression: l(e2.body) };
|
|
242754
242755
|
}), u(AST_SwitchBranch, function(e2) {
|
|
242755
|
-
return { type: "SwitchCase", test:
|
|
242756
|
+
return { type: "SwitchCase", test: l(e2.expression), consequent: e2.body.map(l) };
|
|
242756
242757
|
}), u(AST_Try, function(e2) {
|
|
242757
|
-
return { type: "TryStatement", block: f(e2.body), handler:
|
|
242758
|
+
return { type: "TryStatement", block: f(e2.body), handler: l(e2.bcatch), guardedHandlers: [], finalizer: l(e2.bfinally) };
|
|
242758
242759
|
}), u(AST_Catch, function(e2) {
|
|
242759
|
-
return { type: "CatchClause", param:
|
|
242760
|
+
return { type: "CatchClause", param: l(e2.argname), guard: null, body: f(e2) };
|
|
242760
242761
|
}), u(AST_Definitions, function(e2) {
|
|
242761
|
-
return { type: "VariableDeclaration", kind: e2 instanceof AST_Const ? "const" : e2 instanceof AST_Let ? "let" : "var", declarations: e2.definitions.map(
|
|
242762
|
+
return { type: "VariableDeclaration", kind: e2 instanceof AST_Const ? "const" : e2 instanceof AST_Let ? "let" : "var", declarations: e2.definitions.map(l) };
|
|
242762
242763
|
});
|
|
242763
242764
|
const i = (e2) => {
|
|
242764
242765
|
const t2 = [];
|
|
242765
242766
|
if (e2)
|
|
242766
242767
|
for (const { key: n4, value: i2 } of e2.properties) {
|
|
242767
242768
|
const e3 = is_basic_identifier_string(n4) ? { type: "Identifier", name: n4 } : { type: "Literal", value: n4, raw: JSON.stringify(n4) };
|
|
242768
|
-
t2.push({ type: "ImportAttribute", key: e3, value:
|
|
242769
|
+
t2.push({ type: "ImportAttribute", key: e3, value: l(i2) });
|
|
242769
242770
|
}
|
|
242770
242771
|
return t2;
|
|
242771
242772
|
};
|
|
@@ -242781,58 +242782,58 @@ def_transform(AST_Node, noop2), def_transform(AST_LabeledStatement, function(e,
|
|
|
242781
242782
|
if (e2.exported_names) {
|
|
242782
242783
|
var t2 = e2.exported_names[0], n4 = t2.name;
|
|
242783
242784
|
if ("*" === n4.name && !n4.quote) {
|
|
242784
|
-
var o2 = t2.foreign_name, r2 = "*" !== o2.name || o2.quote ?
|
|
242785
|
-
return { type: "ExportAllDeclaration", source:
|
|
242785
|
+
var o2 = t2.foreign_name, r2 = "*" !== o2.name || o2.quote ? l(o2) : null;
|
|
242786
|
+
return { type: "ExportAllDeclaration", source: l(e2.module_name), exported: r2, assertions: i(e2.assert_clause) };
|
|
242786
242787
|
}
|
|
242787
242788
|
return { type: "ExportNamedDeclaration", specifiers: e2.exported_names.map(function(e3) {
|
|
242788
|
-
return { type: "ExportSpecifier", exported:
|
|
242789
|
-
}), declaration:
|
|
242789
|
+
return { type: "ExportSpecifier", exported: l(e3.foreign_name), local: l(e3.name) };
|
|
242790
|
+
}), declaration: l(e2.exported_definition), source: l(e2.module_name), assertions: i(e2.assert_clause) };
|
|
242790
242791
|
}
|
|
242791
|
-
return { type: e2.is_default ? "ExportDefaultDeclaration" : "ExportNamedDeclaration", declaration:
|
|
242792
|
+
return { type: e2.is_default ? "ExportDefaultDeclaration" : "ExportNamedDeclaration", declaration: l(e2.exported_value || e2.exported_definition) };
|
|
242792
242793
|
}), u(AST_Import, function(e2) {
|
|
242793
242794
|
var t2 = [];
|
|
242794
|
-
if (e2.imported_name && t2.push({ type: "ImportDefaultSpecifier", local:
|
|
242795
|
+
if (e2.imported_name && t2.push({ type: "ImportDefaultSpecifier", local: l(e2.imported_name) }), e2.imported_names) {
|
|
242795
242796
|
var n4 = e2.imported_names[0].foreign_name;
|
|
242796
242797
|
"*" !== n4.name || n4.quote ? e2.imported_names.forEach(function(e3) {
|
|
242797
|
-
t2.push({ type: "ImportSpecifier", local:
|
|
242798
|
-
}) : t2.push({ type: "ImportNamespaceSpecifier", local:
|
|
242798
|
+
t2.push({ type: "ImportSpecifier", local: l(e3.name), imported: l(e3.foreign_name) });
|
|
242799
|
+
}) : t2.push({ type: "ImportNamespaceSpecifier", local: l(e2.imported_names[0].name) });
|
|
242799
242800
|
}
|
|
242800
|
-
return { type: "ImportDeclaration", specifiers: t2, source:
|
|
242801
|
+
return { type: "ImportDeclaration", specifiers: t2, source: l(e2.module_name), assertions: i(e2.assert_clause) };
|
|
242801
242802
|
}), u(AST_ImportMeta, function() {
|
|
242802
242803
|
return { type: "MetaProperty", meta: { type: "Identifier", name: "import" }, property: { type: "Identifier", name: "meta" } };
|
|
242803
242804
|
}), u(AST_Sequence, function(e2) {
|
|
242804
|
-
return { type: "SequenceExpression", expressions: e2.expressions.map(
|
|
242805
|
+
return { type: "SequenceExpression", expressions: e2.expressions.map(l) };
|
|
242805
242806
|
}), u(AST_DotHash, function(e2) {
|
|
242806
|
-
return { type: "MemberExpression", object:
|
|
242807
|
+
return { type: "MemberExpression", object: l(e2.expression), computed: false, property: { type: "PrivateIdentifier", name: e2.property }, optional: e2.optional };
|
|
242807
242808
|
}), u(AST_PropAccess, function(e2) {
|
|
242808
242809
|
var t2 = e2 instanceof AST_Sub;
|
|
242809
|
-
return { type: "MemberExpression", object:
|
|
242810
|
+
return { type: "MemberExpression", object: l(e2.expression), computed: t2, property: t2 ? l(e2.property) : { type: "Identifier", name: e2.property }, optional: e2.optional };
|
|
242810
242811
|
}), u(AST_Chain, function(e2) {
|
|
242811
|
-
return { type: "ChainExpression", expression:
|
|
242812
|
+
return { type: "ChainExpression", expression: l(e2.expression) };
|
|
242812
242813
|
}), u(AST_Unary, function(e2) {
|
|
242813
|
-
return { type: "++" == e2.operator || "--" == e2.operator ? "UpdateExpression" : "UnaryExpression", operator: e2.operator, prefix: e2 instanceof AST_UnaryPrefix, argument:
|
|
242814
|
+
return { type: "++" == e2.operator || "--" == e2.operator ? "UpdateExpression" : "UnaryExpression", operator: e2.operator, prefix: e2 instanceof AST_UnaryPrefix, argument: l(e2.expression) };
|
|
242814
242815
|
}), u(AST_Binary, function(e2) {
|
|
242815
|
-
return "=" == e2.operator && _() ? { type: "AssignmentPattern", left:
|
|
242816
|
+
return "=" == e2.operator && _() ? { type: "AssignmentPattern", left: l(e2.left), right: l(e2.right) } : { type: "&&" == e2.operator || "||" == e2.operator || "??" === e2.operator ? "LogicalExpression" : "BinaryExpression", left: l(e2.left), operator: e2.operator, right: l(e2.right) };
|
|
242816
242817
|
}), u(AST_PrivateIn, function(e2) {
|
|
242817
|
-
return { type: "BinaryExpression", left: { type: "PrivateIdentifier", name: e2.key.name }, operator: "in", right:
|
|
242818
|
+
return { type: "BinaryExpression", left: { type: "PrivateIdentifier", name: e2.key.name }, operator: "in", right: l(e2.value) };
|
|
242818
242819
|
}), u(AST_Array, function(e2) {
|
|
242819
|
-
return { type: "ArrayExpression", elements: e2.elements.map(
|
|
242820
|
+
return { type: "ArrayExpression", elements: e2.elements.map(l) };
|
|
242820
242821
|
}), u(AST_Object, function(e2) {
|
|
242821
|
-
return { type: "ObjectExpression", properties: e2.properties.map(
|
|
242822
|
+
return { type: "ObjectExpression", properties: e2.properties.map(l) };
|
|
242822
242823
|
}), u(AST_ObjectProperty, function(e2, t2) {
|
|
242823
|
-
var n4, i2 = e2.key instanceof AST_Node ?
|
|
242824
|
+
var n4, i2 = e2.key instanceof AST_Node ? l(e2.key) : { type: "Identifier", value: e2.key };
|
|
242824
242825
|
"number" == typeof e2.key && (i2 = { type: "Literal", value: Number(e2.key) }), "string" == typeof e2.key && (i2 = { type: "Identifier", name: e2.key });
|
|
242825
242826
|
var o2 = "string" == typeof e2.key || "number" == typeof e2.key, r2 = !o2 && (!(e2.key instanceof AST_Symbol) || e2.key instanceof AST_SymbolRef);
|
|
242826
|
-
return e2 instanceof AST_ObjectKeyVal ? (n4 = "init", r2 = !o2) : e2 instanceof AST_ObjectGetter ? n4 = "get" : e2 instanceof AST_ObjectSetter && (n4 = "set"), e2 instanceof AST_PrivateGetter || e2 instanceof AST_PrivateSetter ? { type: "MethodDefinition", computed: false, kind: e2 instanceof AST_PrivateGetter ? "get" : "set", static: e2.static, key: { type: "PrivateIdentifier", name: e2.key.name }, value:
|
|
242827
|
+
return e2 instanceof AST_ObjectKeyVal ? (n4 = "init", r2 = !o2) : e2 instanceof AST_ObjectGetter ? n4 = "get" : e2 instanceof AST_ObjectSetter && (n4 = "set"), e2 instanceof AST_PrivateGetter || e2 instanceof AST_PrivateSetter ? { type: "MethodDefinition", computed: false, kind: e2 instanceof AST_PrivateGetter ? "get" : "set", static: e2.static, key: { type: "PrivateIdentifier", name: e2.key.name }, value: l(e2.value) } : e2 instanceof AST_ClassPrivateProperty ? { type: "PropertyDefinition", key: { type: "PrivateIdentifier", name: e2.key.name }, value: l(e2.value), computed: false, static: e2.static } : e2 instanceof AST_ClassProperty ? { type: "PropertyDefinition", key: i2, value: l(e2.value), computed: r2, static: e2.static } : t2 instanceof AST_Class ? { type: "MethodDefinition", computed: r2, kind: n4, static: e2.static, key: l(e2.key), value: l(e2.value) } : { type: "Property", computed: r2, kind: n4, key: i2, value: l(e2.value) };
|
|
242827
242828
|
}), u(AST_ConciseMethod, function(e2, t2) {
|
|
242828
242829
|
if (t2 instanceof AST_Object)
|
|
242829
|
-
return { type: "Property", computed: !(e2.key instanceof AST_Symbol) || e2.key instanceof AST_SymbolRef, kind: "init", method: true, shorthand: false, key:
|
|
242830
|
-
const n4 = e2 instanceof AST_PrivateMethod ? { type: "PrivateIdentifier", name: e2.key.name } :
|
|
242831
|
-
return { type: "MethodDefinition", kind: "constructor" === e2.key ? "constructor" : "method", key: n4, value:
|
|
242830
|
+
return { type: "Property", computed: !(e2.key instanceof AST_Symbol) || e2.key instanceof AST_SymbolRef, kind: "init", method: true, shorthand: false, key: l(e2.key), value: l(e2.value) };
|
|
242831
|
+
const n4 = e2 instanceof AST_PrivateMethod ? { type: "PrivateIdentifier", name: e2.key.name } : l(e2.key);
|
|
242832
|
+
return { type: "MethodDefinition", kind: "constructor" === e2.key ? "constructor" : "method", key: n4, value: l(e2.value), computed: !(e2.key instanceof AST_Symbol) || e2.key instanceof AST_SymbolRef, static: e2.static };
|
|
242832
242833
|
}), u(AST_Class, function(e2) {
|
|
242833
|
-
return { type: e2 instanceof AST_ClassExpression ? "ClassExpression" : "ClassDeclaration", superClass:
|
|
242834
|
+
return { type: e2 instanceof AST_ClassExpression ? "ClassExpression" : "ClassDeclaration", superClass: l(e2.extends), id: e2.name ? l(e2.name) : null, body: { type: "ClassBody", body: e2.properties.map(l) } };
|
|
242834
242835
|
}), u(AST_ClassStaticBlock, function(e2) {
|
|
242835
|
-
return { type: "StaticBlock", body: e2.body.map(
|
|
242836
|
+
return { type: "StaticBlock", body: e2.body.map(l) };
|
|
242836
242837
|
}), u(AST_NewTarget, function() {
|
|
242837
242838
|
return { type: "MetaProperty", meta: { type: "Identifier", name: "new" }, property: { type: "Identifier", name: "target" } };
|
|
242838
242839
|
}), u(AST_Symbol, function(e2, t2) {
|
|
@@ -242868,24 +242869,24 @@ def_transform(AST_Node, noop2), def_transform(AST_LabeledStatement, function(e,
|
|
|
242868
242869
|
var n4 = s(e2);
|
|
242869
242870
|
return a = t2, n4;
|
|
242870
242871
|
};
|
|
242871
|
-
var
|
|
242872
|
-
function
|
|
242873
|
-
null ===
|
|
242874
|
-
var t2 = null != e2 ? e2.to_mozilla_ast(
|
|
242875
|
-
return
|
|
242872
|
+
var c = null;
|
|
242873
|
+
function l(e2) {
|
|
242874
|
+
null === c && (c = []), c.push(e2);
|
|
242875
|
+
var t2 = null != e2 ? e2.to_mozilla_ast(c[c.length - 2]) : null;
|
|
242876
|
+
return c.pop(), 0 === c.length && (c = null), t2;
|
|
242876
242877
|
}
|
|
242877
242878
|
function _() {
|
|
242878
|
-
for (var e2 =
|
|
242879
|
-
if (
|
|
242879
|
+
for (var e2 = c.length; e2--; )
|
|
242880
|
+
if (c[e2] instanceof AST_Destructuring)
|
|
242880
242881
|
return true;
|
|
242881
242882
|
return false;
|
|
242882
242883
|
}
|
|
242883
242884
|
function f(e2) {
|
|
242884
|
-
return { type: "BlockStatement", body: e2.body.map(
|
|
242885
|
+
return { type: "BlockStatement", body: e2.body.map(l) };
|
|
242885
242886
|
}
|
|
242886
242887
|
function p(e2, t2) {
|
|
242887
|
-
var n4 = t2.body.map(
|
|
242888
|
-
return t2.body[0] instanceof AST_SimpleStatement && t2.body[0].body instanceof AST_String && n4.unshift(
|
|
242888
|
+
var n4 = t2.body.map(l);
|
|
242889
|
+
return t2.body[0] instanceof AST_SimpleStatement && t2.body[0].body instanceof AST_String && n4.unshift(l(new AST_EmptyStatement(t2.body[0]))), { type: e2, body: n4 };
|
|
242889
242890
|
}
|
|
242890
242891
|
}();
|
|
242891
242892
|
var r_annotation = /[@#]__(PURE|INLINE|NOINLINE)__/;
|
|
@@ -242960,8 +242961,8 @@ function OutputStream(e) {
|
|
|
242960
242961
|
};
|
|
242961
242962
|
}
|
|
242962
242963
|
var o = 0, r = 0, a = 1, s = 0, u = new Rope();
|
|
242963
|
-
let
|
|
242964
|
-
var
|
|
242964
|
+
let c = /* @__PURE__ */ new Set();
|
|
242965
|
+
var l = e.ascii_only ? function(t2, n4 = false, i2 = false) {
|
|
242965
242966
|
return e.ecma >= 2015 && !e.safari10 && !i2 && (t2 = t2.replace(/[\ud800-\udbff][\udc00-\udfff]/g, function(e2) {
|
|
242966
242967
|
return "\\u{" + get_full_char_code(e2, 0).toString(16) + "}";
|
|
242967
242968
|
})), t2.replace(/[\u0000-\u001f\u007f-\uffff]/g, function(e2) {
|
|
@@ -243019,7 +243020,7 @@ function OutputStream(e) {
|
|
|
243019
243020
|
return /[0-9]/.test(get_full_char(t3, r3 + 1)) ? "\\x00" : "\\0";
|
|
243020
243021
|
}
|
|
243021
243022
|
return n6;
|
|
243022
|
-
}), t3 =
|
|
243023
|
+
}), t3 = l(t3), "`" === n5)
|
|
243023
243024
|
return "`" + t3.replace(/`/g, "\\`") + "`";
|
|
243024
243025
|
switch (e.quote_style) {
|
|
243025
243026
|
case 1:
|
|
@@ -243061,8 +243062,8 @@ function OutputStream(e) {
|
|
|
243061
243062
|
A && n4 && (A = false, "\n" !== n4 && (C2("\n"), R())), T && n4 && (T = false, /[\s;})]/.test(n4) || k()), E = -1;
|
|
243062
243063
|
var i2 = g.charAt(g.length - 1);
|
|
243063
243064
|
S && (S = false, (":" !== i2 || "}" !== n4) && (n4 && ";}".includes(n4) || ";" === i2) || (e.semicolons || v.has(n4) ? (u.append(";"), r++, s++) : (D(), r > 0 && (u.append("\n"), s++, a++, r = 0), /^\s+$/.test(t2) && (S = true)), e.beautify || (m = false))), m && ((is_identifier_char(i2) && (is_identifier_char(n4) || "\\" == n4) || "/" == n4 && n4 == i2 || ("+" == n4 || "-" == n4) && n4 == g) && (u.append(" "), r++, s++), m = false), f && (b.push({ token: f, name: p, line: a, col: r }), f = false, h || y()), u.append(t2), d = "(" == t2[t2.length - 1], s += t2.length;
|
|
243064
|
-
var o2 = t2.split(/\r?\n/),
|
|
243065
|
-
a +=
|
|
243065
|
+
var o2 = t2.split(/\r?\n/), c2 = o2.length - 1;
|
|
243066
|
+
a += c2, r += o2[0].length, c2 > 0 && (D(), r = o2[c2].length), g = t2;
|
|
243066
243067
|
}
|
|
243067
243068
|
var k = e.beautify ? function() {
|
|
243068
243069
|
C2(" ");
|
|
@@ -243125,9 +243126,9 @@ function OutputStream(e) {
|
|
|
243125
243126
|
C2(":"), k();
|
|
243126
243127
|
}, last: function() {
|
|
243127
243128
|
return g;
|
|
243128
|
-
}, semicolon: N, force_semicolon: M, to_utf8:
|
|
243129
|
+
}, semicolon: N, force_semicolon: M, to_utf8: l, print_name: function(e2) {
|
|
243129
243130
|
C2(function(e3) {
|
|
243130
|
-
return e3 = e3.toString(),
|
|
243131
|
+
return e3 = e3.toString(), l(e3, true);
|
|
243131
243132
|
}(e2));
|
|
243132
243133
|
}, print_string: function(e2, t2, n4) {
|
|
243133
243134
|
var i2 = _(e2, t2);
|
|
@@ -243150,7 +243151,7 @@ function OutputStream(e) {
|
|
|
243150
243151
|
return C2("]"), t2;
|
|
243151
243152
|
}, add_mapping: w, option: function(t2) {
|
|
243152
243153
|
return e[t2];
|
|
243153
|
-
}, gc_scope: B, printed_comments:
|
|
243154
|
+
}, gc_scope: B, printed_comments: c, prepend_comments: t ? noop2 : function(t2) {
|
|
243154
243155
|
var i2 = t2.start;
|
|
243155
243156
|
if (!i2)
|
|
243156
243157
|
return;
|
|
@@ -243163,8 +243164,8 @@ function OutputStream(e) {
|
|
|
243163
243164
|
}
|
|
243164
243165
|
var a2 = i2.comments_before;
|
|
243165
243166
|
if (a2 || (a2 = i2.comments_before = []), o2.add(a2), r2) {
|
|
243166
|
-
var
|
|
243167
|
-
var t3 =
|
|
243167
|
+
var c2 = new TreeWalker(function(e2) {
|
|
243168
|
+
var t3 = c2.parent();
|
|
243168
243169
|
if (!(t3 instanceof AST_Exit || t3 instanceof AST_Await || t3 instanceof AST_Yield || t3 instanceof AST_Binary && t3.left === e2 || "Call" == t3.TYPE && t3.expression === e2 || t3 instanceof AST_Conditional && t3.condition === e2 || t3 instanceof AST_Dot && t3.expression === e2 || t3 instanceof AST_Sequence && t3.expressions[0] === e2 || t3 instanceof AST_Sub && t3.expression === e2 || t3 instanceof AST_UnaryPostfix))
|
|
243169
243170
|
return true;
|
|
243170
243171
|
if (e2.start) {
|
|
@@ -243172,12 +243173,12 @@ function OutputStream(e) {
|
|
|
243172
243173
|
n4 && !o2.has(n4) && (o2.add(n4), a2 = a2.concat(n4));
|
|
243173
243174
|
}
|
|
243174
243175
|
});
|
|
243175
|
-
|
|
243176
|
+
c2.push(t2), r2.walk(c2);
|
|
243176
243177
|
}
|
|
243177
243178
|
if (0 == s) {
|
|
243178
243179
|
a2.length > 0 && e.shebang && "comment5" === a2[0].type && !o2.has(a2[0]) && (C2("#!" + a2.shift().value + "\n"), R());
|
|
243179
|
-
var
|
|
243180
|
-
|
|
243180
|
+
var l2 = e.preamble;
|
|
243181
|
+
l2 && C2(l2.replace(/\r\n?|[\n\u2028\u2029]|\s*$/g, "\n"));
|
|
243181
243182
|
}
|
|
243182
243183
|
if (0 != (a2 = a2.filter(n3, t2).filter((e2) => !o2.has(e2))).length) {
|
|
243183
243184
|
var _2 = u.hasNLB();
|
|
@@ -243363,7 +243364,7 @@ function OutputStream(e) {
|
|
|
243363
243364
|
}), e(AST_Debugger, function(e2, t2) {
|
|
243364
243365
|
t2.print("debugger"), t2.semicolon();
|
|
243365
243366
|
}), AST_StatementWithBody.DEFMETHOD("_do_print_body", function(e2) {
|
|
243366
|
-
|
|
243367
|
+
l(this.body, e2);
|
|
243367
243368
|
}), e(AST_Statement, function(e2, t2) {
|
|
243368
243369
|
e2.body.print(t2), t2.semicolon();
|
|
243369
243370
|
}), e(AST_Toplevel, function(e2, t2) {
|
|
@@ -243475,8 +243476,8 @@ function OutputStream(e) {
|
|
|
243475
243476
|
break;
|
|
243476
243477
|
n4 = n4.body;
|
|
243477
243478
|
}
|
|
243478
|
-
|
|
243479
|
-
}(e2, t2), t2.space(), t2.print("else"), t2.space(), e2.alternative instanceof AST_If ? e2.alternative.print(t2) :
|
|
243479
|
+
l(e3.body, t3);
|
|
243480
|
+
}(e2, t2), t2.space(), t2.print("else"), t2.space(), e2.alternative instanceof AST_If ? e2.alternative.print(t2) : l(e2.alternative, t2)) : e2._do_print_body(t2);
|
|
243480
243481
|
}), e(AST_Switch, function(e2, t2) {
|
|
243481
243482
|
t2.print("switch"), t2.space(), t2.with_parens(function() {
|
|
243482
243483
|
e2.expression.print(t2);
|
|
@@ -243662,8 +243663,8 @@ function OutputStream(e) {
|
|
|
243662
243663
|
}), e(AST_BigInt, function(e2, t2) {
|
|
243663
243664
|
t2.print(e2.getValue() + "n");
|
|
243664
243665
|
});
|
|
243665
|
-
const s = /(<\s*\/\s*script)/i, u = /^\s*script/i,
|
|
243666
|
-
function
|
|
243666
|
+
const s = /(<\s*\/\s*script)/i, u = /^\s*script/i, c = (e2, t2) => t2.replace("/", "\\/");
|
|
243667
|
+
function l(e2, t2) {
|
|
243667
243668
|
t2.option("braces") ? f(e2, t2) : !e2 || e2 instanceof AST_EmptyStatement ? t2.force_semicolon() : e2 instanceof AST_Let || e2 instanceof AST_Const || e2 instanceof AST_Class ? f(e2, t2) : e2.print(t2);
|
|
243668
243669
|
}
|
|
243669
243670
|
function _(e2) {
|
|
@@ -243686,7 +243687,7 @@ function OutputStream(e) {
|
|
|
243686
243687
|
}
|
|
243687
243688
|
e(AST_RegExp, function(e2, t2) {
|
|
243688
243689
|
let { source: n4, flags: i2 } = e2.getValue();
|
|
243689
|
-
n4 = regexp_source_fix(n4), i2 = i2 ? sort_regexp_flags(i2) : "", n4 = n4.replace(s,
|
|
243690
|
+
n4 = regexp_source_fix(n4), i2 = i2 ? sort_regexp_flags(i2) : "", n4 = n4.replace(s, c), u.test(n4) && t2.last().endsWith("<") && t2.print(" "), t2.print(t2.to_utf8(`/${n4}/${i2}`, false, true));
|
|
243690
243691
|
const o2 = t2.parent();
|
|
243691
243692
|
o2 instanceof AST_Binary && /^\w/.test(o2.operator) && o2.left === e2 && t2.print(" ");
|
|
243692
243693
|
}), p([AST_Node, AST_LabeledStatement, AST_Toplevel], noop2), p([AST_Array, AST_BlockStatement, AST_Catch, AST_Class, AST_Constant, AST_Debugger, AST_Definitions, AST_Directive, AST_Finally, AST_Jump, AST_Lambda, AST_New, AST_Object, AST_StatementWithBody, AST_Symbol, AST_Switch, AST_SwitchBranch, AST_TemplateString, AST_TemplateSegment, AST_Try], function(e2) {
|
|
@@ -243852,8 +243853,8 @@ SymbolDef.next_id = 1, AST_Scope.DEFMETHOD("figure_out_scope", function(e, { par
|
|
|
243852
243853
|
}
|
|
243853
243854
|
if (t2 instanceof AST_Scope) {
|
|
243854
243855
|
t2.init_scope_vars(i);
|
|
243855
|
-
var
|
|
243856
|
-
return r = i = t2, o = /* @__PURE__ */ new Map(), n4(), i =
|
|
243856
|
+
var l = i, _ = r, f = o;
|
|
243857
|
+
return r = i = t2, o = /* @__PURE__ */ new Map(), n4(), i = l, r = _, o = f, true;
|
|
243857
243858
|
}
|
|
243858
243859
|
if (t2 instanceof AST_LabeledStatement) {
|
|
243859
243860
|
var p = t2.label;
|
|
@@ -243869,15 +243870,15 @@ SymbolDef.next_id = 1, AST_Scope.DEFMETHOD("figure_out_scope", function(e, { par
|
|
|
243869
243870
|
r.def_function(t2, "arguments" == t2.name ? void 0 : r);
|
|
243870
243871
|
else if (t2 instanceof AST_SymbolDefun) {
|
|
243871
243872
|
const e2 = r.parent_scope;
|
|
243872
|
-
t2.scope = u.directives["use strict"] ? e2 : e2.get_defun_scope(),
|
|
243873
|
+
t2.scope = u.directives["use strict"] ? e2 : e2.get_defun_scope(), c(t2.scope.def_function(t2, r), 1);
|
|
243873
243874
|
} else if (t2 instanceof AST_SymbolClass)
|
|
243874
|
-
|
|
243875
|
+
c(r.def_variable(t2, r), 1);
|
|
243875
243876
|
else if (t2 instanceof AST_SymbolImport)
|
|
243876
243877
|
i.def_variable(t2);
|
|
243877
243878
|
else if (t2 instanceof AST_SymbolDefClass)
|
|
243878
|
-
|
|
243879
|
+
c((t2.scope = r.parent_scope).def_function(t2, r), 1);
|
|
243879
243880
|
else if (t2 instanceof AST_SymbolVar || t2 instanceof AST_SymbolLet || t2 instanceof AST_SymbolConst || t2 instanceof AST_SymbolCatch) {
|
|
243880
|
-
if ((m = t2 instanceof AST_SymbolBlockDeclaration ? i.def_variable(t2, null) : r.def_variable(t2, "SymbolVar" == t2.TYPE ? null : void 0)).orig.every((e2) => e2 === t2 || (t2 instanceof AST_SymbolBlockDeclaration ? e2 instanceof AST_SymbolLambda : !(e2 instanceof AST_SymbolLet || e2 instanceof AST_SymbolConst))) || js_error(`"${t2.name}" is redeclared`, t2.start.file, t2.start.line, t2.start.col, t2.start.pos), t2 instanceof AST_SymbolFunarg ||
|
|
243881
|
+
if ((m = t2 instanceof AST_SymbolBlockDeclaration ? i.def_variable(t2, null) : r.def_variable(t2, "SymbolVar" == t2.TYPE ? null : void 0)).orig.every((e2) => e2 === t2 || (t2 instanceof AST_SymbolBlockDeclaration ? e2 instanceof AST_SymbolLambda : !(e2 instanceof AST_SymbolLet || e2 instanceof AST_SymbolConst))) || js_error(`"${t2.name}" is redeclared`, t2.start.file, t2.start.line, t2.start.col, t2.start.pos), t2 instanceof AST_SymbolFunarg || c(m, 2), r !== i) {
|
|
243881
243882
|
t2.mark_enclosed();
|
|
243882
243883
|
var m = i.find_variable(t2);
|
|
243883
243884
|
t2.thedef !== m && (t2.thedef = m, t2.reference());
|
|
@@ -243891,7 +243892,7 @@ SymbolDef.next_id = 1, AST_Scope.DEFMETHOD("figure_out_scope", function(e, { par
|
|
|
243891
243892
|
i instanceof AST_Toplevel || !(t2 instanceof AST_Export || t2 instanceof AST_Import) || js_error(`"${t2.TYPE}" statement may only appear at the top level`, t2.start.file, t2.start.line, t2.start.col, t2.start.pos);
|
|
243892
243893
|
}
|
|
243893
243894
|
});
|
|
243894
|
-
function
|
|
243895
|
+
function c(e2, t2) {
|
|
243895
243896
|
if (a) {
|
|
243896
243897
|
var n4 = 0;
|
|
243897
243898
|
do {
|
|
@@ -244851,8 +244852,8 @@ function is_modified(e, t, n3, i, o, r) {
|
|
|
244851
244852
|
return is_modified(e, t, u, u, o + 2);
|
|
244852
244853
|
}
|
|
244853
244854
|
if (a instanceof AST_PropAccess && a.expression === n3) {
|
|
244854
|
-
var
|
|
244855
|
-
return !r && is_modified(e, t, a,
|
|
244855
|
+
var c = read_property(i, a.property);
|
|
244856
|
+
return !r && is_modified(e, t, a, c, o + 1);
|
|
244856
244857
|
}
|
|
244857
244858
|
}
|
|
244858
244859
|
function def_eval(e, t) {
|
|
@@ -245179,8 +245180,8 @@ def_eval(AST_PropAccess, function(e, t) {
|
|
|
245179
245180
|
if (!is_pure_native_method(o.constructor.name, r))
|
|
245180
245181
|
return this;
|
|
245181
245182
|
}
|
|
245182
|
-
for (var u = [],
|
|
245183
|
-
var _ = this.args[
|
|
245183
|
+
for (var u = [], c = 0, l = this.args.length; c < l; c++) {
|
|
245184
|
+
var _ = this.args[c], f = _._eval(e, t);
|
|
245184
245185
|
if (_ === f)
|
|
245185
245186
|
return this;
|
|
245186
245187
|
if (_ instanceof AST_Lambda)
|
|
@@ -245400,7 +245401,7 @@ AST_Scope.DEFMETHOD("drop_unused", function(e) {
|
|
|
245400
245401
|
t instanceof AST_Toplevel && e.top_retain && t.variables.forEach(function(t2) {
|
|
245401
245402
|
e.top_retain(t2) && r.set(t2.id, t2);
|
|
245402
245403
|
});
|
|
245403
|
-
var s = /* @__PURE__ */ new Map(), u = /* @__PURE__ */ new Map(),
|
|
245404
|
+
var s = /* @__PURE__ */ new Map(), u = /* @__PURE__ */ new Map(), c = /* @__PURE__ */ new Set(), l = this, _ = new TreeWalker(function(o2, f2) {
|
|
245404
245405
|
if (o2 instanceof AST_Lambda && o2.uses_arguments && !_.has_directive("use strict") && o2.argnames.forEach(function(e2) {
|
|
245405
245406
|
if (e2 instanceof AST_SymbolDeclaration) {
|
|
245406
245407
|
var t2 = e2.definition();
|
|
@@ -245408,11 +245409,11 @@ AST_Scope.DEFMETHOD("drop_unused", function(e) {
|
|
|
245408
245409
|
}
|
|
245409
245410
|
}), o2 === t)
|
|
245410
245411
|
return;
|
|
245411
|
-
if (o2 instanceof AST_Class && o2.has_side_effects(e) && (o2.is_self_referential() &&
|
|
245412
|
+
if (o2 instanceof AST_Class && o2.has_side_effects(e) && (o2.is_self_referential() && c.add(o2), o2.visit_nondeferred_class_parts(_)), o2 instanceof AST_Defun || o2 instanceof AST_DefClass) {
|
|
245412
245413
|
var d = o2.name.definition();
|
|
245413
|
-
return (_.parent() instanceof AST_Export || !n3 &&
|
|
245414
|
+
return (_.parent() instanceof AST_Export || !n3 && l === t) && d.global && r.set(d.id, d), map_add(u, d.id, o2), true;
|
|
245414
245415
|
}
|
|
245415
|
-
const m =
|
|
245416
|
+
const m = l === t;
|
|
245416
245417
|
if (o2 instanceof AST_SymbolFunarg && m && map_add(s, o2.definition().id, o2), o2 instanceof AST_Definitions && m) {
|
|
245417
245418
|
const t2 = _.parent() instanceof AST_Export;
|
|
245418
245419
|
return o2.definitions.forEach(function(n4) {
|
|
@@ -245434,10 +245435,10 @@ AST_Scope.DEFMETHOD("drop_unused", function(e) {
|
|
|
245434
245435
|
t2 && t2.forEach(function(e3) {
|
|
245435
245436
|
e3.walk(_);
|
|
245436
245437
|
});
|
|
245437
|
-
}),
|
|
245438
|
+
}), c.forEach(function(e2) {
|
|
245438
245439
|
e2.walk(_);
|
|
245439
245440
|
});
|
|
245440
|
-
var f = new TreeTransformer(function(u2,
|
|
245441
|
+
var f = new TreeTransformer(function(u2, c2, _2) {
|
|
245441
245442
|
var p2 = f.parent();
|
|
245442
245443
|
if (i) {
|
|
245443
245444
|
const e2 = o(u2);
|
|
@@ -245450,7 +245451,7 @@ AST_Scope.DEFMETHOD("drop_unused", function(e) {
|
|
|
245450
245451
|
return _2 ? MAP.skip : make_node(AST_Number, u2, { value: 0 });
|
|
245451
245452
|
}
|
|
245452
245453
|
}
|
|
245453
|
-
if (
|
|
245454
|
+
if (l === t) {
|
|
245454
245455
|
if (u2.name && (u2 instanceof AST_ClassExpression && !keep_name(e.option("keep_classnames"), (d = u2.name.definition()).name) || u2 instanceof AST_Function && !keep_name(e.option("keep_fnames"), (d = u2.name.definition()).name)) && (!r.has(d.id) || d.orig.length > 1) && (u2.name = null), u2 instanceof AST_Lambda && !(u2 instanceof AST_Accessor))
|
|
245455
245456
|
for (var S = !e.option("keep_fargs"), h = u2.argnames, A = h.length; --A >= 0; ) {
|
|
245456
245457
|
var T = h[A];
|
|
@@ -245458,7 +245459,7 @@ AST_Scope.DEFMETHOD("drop_unused", function(e) {
|
|
|
245458
245459
|
}
|
|
245459
245460
|
if (u2 instanceof AST_DefClass && u2 !== t) {
|
|
245460
245461
|
const t2 = u2.name.definition();
|
|
245461
|
-
if (
|
|
245462
|
+
if (c2(u2, this), !(t2.global && !n3 || r.has(t2.id))) {
|
|
245462
245463
|
const n4 = u2.drop_side_effect_free(e);
|
|
245463
245464
|
return null == n4 ? (t2.eliminated++, _2 ? MAP.skip : make_node(AST_EmptyStatement, u2)) : n4;
|
|
245464
245465
|
}
|
|
@@ -245478,15 +245479,15 @@ AST_Scope.DEFMETHOD("drop_unused", function(e) {
|
|
|
245478
245479
|
return y.push(t2);
|
|
245479
245480
|
if (!i && !E || n4 && (t2.name.names.length || t2.name.is_array || 1 != e.option("pure_getters")) || r.has(o2.id)) {
|
|
245480
245481
|
if (t2.value && a.has(o2.id) && a.get(o2.id) !== t2 && (t2.value = t2.value.drop_side_effect_free(e)), t2.name instanceof AST_SymbolVar) {
|
|
245481
|
-
var
|
|
245482
|
-
if (
|
|
245482
|
+
var c3 = s.get(o2.id);
|
|
245483
|
+
if (c3.length > 1 && (!t2.value || o2.orig.indexOf(t2.name) > o2.eliminated)) {
|
|
245483
245484
|
if (t2.value) {
|
|
245484
|
-
var
|
|
245485
|
-
o2.references.push(
|
|
245486
|
-
var _3 = make_node(AST_Assign, t2, { operator: "=", logical: false, left:
|
|
245485
|
+
var l2 = make_node(AST_SymbolRef, t2.name, t2.name);
|
|
245486
|
+
o2.references.push(l2);
|
|
245487
|
+
var _3 = make_node(AST_Assign, t2, { operator: "=", logical: false, left: l2, right: t2.value });
|
|
245487
245488
|
a.get(o2.id) === t2 && a.set(o2.id, _3), D.push(_3.transform(f));
|
|
245488
245489
|
}
|
|
245489
|
-
return remove2(
|
|
245490
|
+
return remove2(c3, t2), void o2.eliminated++;
|
|
245490
245491
|
}
|
|
245491
245492
|
}
|
|
245492
245493
|
t2.value ? (D.length > 0 && (y.length > 0 ? (D.push(t2.value), t2.value = make_sequence(t2.value, D)) : g.push(make_node(AST_SimpleStatement, u2, { body: make_sequence(u2, D) })), D = []), y.push(t2)) : b.push(t2);
|
|
@@ -245506,19 +245507,19 @@ AST_Scope.DEFMETHOD("drop_unused", function(e) {
|
|
|
245506
245507
|
}
|
|
245507
245508
|
}
|
|
245508
245509
|
if (u2 instanceof AST_For)
|
|
245509
|
-
return
|
|
245510
|
+
return c2(u2, this), u2.init instanceof AST_BlockStatement && (v = u2.init, u2.init = v.body.pop(), v.body.push(u2)), u2.init instanceof AST_SimpleStatement ? u2.init = u2.init.body : is_empty(u2.init) && (u2.init = null), v ? _2 ? MAP.splice(v.body) : v : u2;
|
|
245510
245511
|
if (u2 instanceof AST_LabeledStatement && u2.body instanceof AST_For) {
|
|
245511
|
-
if (
|
|
245512
|
+
if (c2(u2, this), u2.body instanceof AST_BlockStatement) {
|
|
245512
245513
|
var v = u2.body;
|
|
245513
245514
|
return u2.body = v.body.pop(), v.body.push(u2), _2 ? MAP.splice(v.body) : v;
|
|
245514
245515
|
}
|
|
245515
245516
|
return u2;
|
|
245516
245517
|
}
|
|
245517
245518
|
if (u2 instanceof AST_BlockStatement)
|
|
245518
|
-
return
|
|
245519
|
+
return c2(u2, this), _2 && u2.body.every(can_be_evicted_from_block) ? MAP.splice(u2.body) : u2;
|
|
245519
245520
|
if (u2 instanceof AST_Scope && !(u2 instanceof AST_ClassStaticBlock)) {
|
|
245520
|
-
const e2 =
|
|
245521
|
-
return
|
|
245521
|
+
const e2 = l;
|
|
245522
|
+
return l = u2, c2(u2, this), l = e2, u2;
|
|
245522
245523
|
}
|
|
245523
245524
|
}
|
|
245524
245525
|
});
|
|
@@ -245537,8 +245538,8 @@ AST_Scope.DEFMETHOD("drop_unused", function(e) {
|
|
|
245537
245538
|
if (e2 instanceof AST_Class)
|
|
245538
245539
|
return n4(), true;
|
|
245539
245540
|
if (e2 instanceof AST_Scope && !(e2 instanceof AST_ClassStaticBlock)) {
|
|
245540
|
-
var u2 =
|
|
245541
|
-
return
|
|
245541
|
+
var u2 = l;
|
|
245542
|
+
return l = e2, n4(), l = u2, true;
|
|
245542
245543
|
}
|
|
245543
245544
|
}
|
|
245544
245545
|
t.transform(f);
|
|
@@ -245599,8 +245600,8 @@ function handle_defined_after_hoist(e) {
|
|
|
245599
245600
|
a2++;
|
|
245600
245601
|
}
|
|
245601
245602
|
return a2;
|
|
245602
|
-
}, u = s2(i2.id),
|
|
245603
|
-
-1 != u && -1 !=
|
|
245603
|
+
}, u = s2(i2.id), c = s2(e2.id, u + 1, true);
|
|
245604
|
+
-1 != u && -1 != c && c > u && (e2.fixed = false);
|
|
245604
245605
|
}
|
|
245605
245606
|
}
|
|
245606
245607
|
}
|
|
@@ -245655,17 +245656,17 @@ function tighten_body(e, t) {
|
|
|
245655
245656
|
}();
|
|
245656
245657
|
var a, s = 10;
|
|
245657
245658
|
do {
|
|
245658
|
-
a = false,
|
|
245659
|
+
a = false, c(e), t.option("dead_code") && _(e, t), t.option("if_return") && l(e, t), t.sequences_limit > 0 && (p(e, t), m(e, t)), t.option("join_vars") && h(e), t.option("collapse_vars") && u(e, t);
|
|
245659
245660
|
} while (a && s-- > 0);
|
|
245660
245661
|
function u(e2, t2) {
|
|
245661
245662
|
if (n3.pinned() || i.pinned())
|
|
245662
245663
|
return e2;
|
|
245663
|
-
for (var s2, u2 = [],
|
|
245664
|
+
for (var s2, u2 = [], c2 = e2.length, l2 = new TreeTransformer(function(e3) {
|
|
245664
245665
|
if (C2)
|
|
245665
245666
|
return e3;
|
|
245666
245667
|
if (!v)
|
|
245667
245668
|
return e3 !== f2[p2] ? e3 : ++p2 < f2.length ? M(e3) : (v = true, (S2 = B(e3, 0)) === e3 && (C2 = true), e3);
|
|
245668
|
-
var i2, o2 =
|
|
245669
|
+
var i2, o2 = l2.parent();
|
|
245669
245670
|
if (e3 instanceof AST_Assign && (e3.logical || "=" != e3.operator && A.equivalent_to(e3.left)) || e3 instanceof AST_Await || e3 instanceof AST_Call && A instanceof AST_PropAccess && A.equivalent_to(e3.expression) || (e3 instanceof AST_Call || e3 instanceof AST_PropAccess) && e3.optional || e3 instanceof AST_Debugger || e3 instanceof AST_Destructuring || e3 instanceof AST_Expansion && e3.expression instanceof AST_Symbol && (e3.expression instanceof AST_This || e3.expression.definition().references.length > 1) || e3 instanceof AST_IterationStatement && !(e3 instanceof AST_For) || e3 instanceof AST_LoopControl || e3 instanceof AST_Try || e3 instanceof AST_With || e3 instanceof AST_Yield || e3 instanceof AST_Export || e3 instanceof AST_Class || o2 instanceof AST_For && e3 !== o2.init || !b && e3 instanceof AST_SymbolRef && !e3.is_declared(t2) && !pure_prop_access_globals.has(e3) || e3 instanceof AST_SymbolRef && o2 instanceof AST_Call && has_annotation(o2, _NOINLINE) || e3 instanceof AST_ObjectProperty && e3.key instanceof AST_Node)
|
|
245670
245671
|
return C2 = true, e3;
|
|
245671
245672
|
if (h2 || E && b || !(o2 instanceof AST_Binary && lazy_op.has(o2.operator) && o2.left !== e3 || o2 instanceof AST_Conditional && o2.condition !== e3 || o2 instanceof AST_If && o2.condition !== e3) || (h2 = o2), R && !(e3 instanceof AST_SymbolDeclaration) && A.equivalent_to(e3) && !function(e4, t3) {
|
|
@@ -245678,7 +245679,7 @@ function tighten_body(e, t) {
|
|
|
245678
245679
|
}
|
|
245679
245680
|
}
|
|
245680
245681
|
return false;
|
|
245681
|
-
}(
|
|
245682
|
+
}(l2.find_scope() || n3, T)) {
|
|
245682
245683
|
if (h2)
|
|
245683
245684
|
return C2 = true, e3;
|
|
245684
245685
|
if (is_lhs(e3, o2))
|
|
@@ -245693,7 +245694,7 @@ function tighten_body(e, t) {
|
|
|
245693
245694
|
}
|
|
245694
245695
|
return clear_flag(d2, WRITE_ONLY), d2;
|
|
245695
245696
|
}
|
|
245696
|
-
return (e3 instanceof AST_Call || e3 instanceof AST_Exit && (g || A instanceof AST_PropAccess ||
|
|
245697
|
+
return (e3 instanceof AST_Call || e3 instanceof AST_Exit && (g || A instanceof AST_PropAccess || z(A)) || e3 instanceof AST_PropAccess && (g || e3.expression.may_throw_on_access(t2)) || e3 instanceof AST_SymbolRef && (T.has(e3.name) && T.get(e3.name).modified || g && z(e3)) || e3 instanceof AST_VarDef && e3.value && (T.has(e3.name.name) || g && z(e3.name)) || (i2 = is_lhs(e3.left, e3)) && (i2 instanceof AST_PropAccess || T.has(i2.name)) || y && (r ? e3.has_side_effects(t2) : X(e3))) && (S2 = e3, e3 instanceof AST_Scope && (C2 = true)), M(e3);
|
|
245697
245698
|
}, function(e3) {
|
|
245698
245699
|
C2 || (S2 === e3 && (C2 = true), h2 === e3 && (h2 = null));
|
|
245699
245700
|
}), _2 = new TreeTransformer(function(e3) {
|
|
@@ -245707,34 +245708,34 @@ function tighten_body(e, t) {
|
|
|
245707
245708
|
return v = true, e3;
|
|
245708
245709
|
}
|
|
245709
245710
|
return e3 instanceof AST_SymbolRef && e3.name == F.name ? (--k || (C2 = true), is_lhs(e3, _2.parent()) ? e3 : (F.replaced++, m2.replaced--, d2.value)) : e3 instanceof AST_Default || e3 instanceof AST_Scope ? e3 : void 0;
|
|
245710
|
-
}); --
|
|
245711
|
-
0 ==
|
|
245711
|
+
}); --c2 >= 0; ) {
|
|
245712
|
+
0 == c2 && t2.option("unused") && I();
|
|
245712
245713
|
var f2 = [];
|
|
245713
|
-
for (P(e2[
|
|
245714
|
+
for (P(e2[c2]); u2.length > 0; ) {
|
|
245714
245715
|
f2 = u2.pop();
|
|
245715
245716
|
var p2 = 0, d2 = f2[f2.length - 1], m2 = null, S2 = null, h2 = null, A = L(d2);
|
|
245716
245717
|
if (A && !is_lhs_read_only(A) && !A.has_side_effects(t2)) {
|
|
245717
|
-
var T = U(d2), E =
|
|
245718
|
+
var T = U(d2), E = K(A);
|
|
245718
245719
|
A instanceof AST_SymbolRef && T.set(A.name, { def: A.definition(), modified: false });
|
|
245719
245720
|
var g = (N = d2) instanceof AST_Unary ? unary_side_effects.has(N.operator) : V(N).has_side_effects(t2), b = H2(), y = d2.may_throw(t2), D = d2.name instanceof AST_SymbolFunarg, v = D, C2 = false, k = 0, R = !s2 || !v;
|
|
245720
245721
|
if (!R) {
|
|
245721
245722
|
for (let e3 = t2.self().argnames.lastIndexOf(d2.name) + 1; !C2 && e3 < s2.length; e3++)
|
|
245722
|
-
s2[e3].transform(
|
|
245723
|
+
s2[e3].transform(l2);
|
|
245723
245724
|
R = true;
|
|
245724
245725
|
}
|
|
245725
|
-
for (var O2 =
|
|
245726
|
-
e2[O2].transform(
|
|
245726
|
+
for (var O2 = c2; !C2 && O2 < e2.length; O2++)
|
|
245727
|
+
e2[O2].transform(l2);
|
|
245727
245728
|
if (m2) {
|
|
245728
245729
|
var F = d2.name.definition();
|
|
245729
245730
|
if (C2 && F.references.length - F.replaced > k)
|
|
245730
245731
|
k = false;
|
|
245731
245732
|
else {
|
|
245732
|
-
for (C2 = false, p2 = 0, v = D, O2 =
|
|
245733
|
+
for (C2 = false, p2 = 0, v = D, O2 = c2; !C2 && O2 < e2.length; O2++)
|
|
245733
245734
|
e2[O2].transform(_2);
|
|
245734
245735
|
m2.single_use = false;
|
|
245735
245736
|
}
|
|
245736
245737
|
}
|
|
245737
|
-
k && !
|
|
245738
|
+
k && !G(d2) && e2.splice(c2, 1);
|
|
245738
245739
|
}
|
|
245739
245740
|
}
|
|
245740
245741
|
}
|
|
@@ -245743,7 +245744,7 @@ function tighten_body(e, t) {
|
|
|
245743
245744
|
if (e3 instanceof AST_Scope)
|
|
245744
245745
|
return e3;
|
|
245745
245746
|
if (e3 instanceof AST_Switch) {
|
|
245746
|
-
e3.expression = e3.expression.transform(
|
|
245747
|
+
e3.expression = e3.expression.transform(l2);
|
|
245747
245748
|
for (var t3 = 0, n4 = e3.body.length; !C2 && t3 < n4; t3++) {
|
|
245748
245749
|
var i2 = e3.body[t3];
|
|
245749
245750
|
if (i2 instanceof AST_Case) {
|
|
@@ -245752,7 +245753,7 @@ function tighten_body(e, t) {
|
|
|
245752
245753
|
continue;
|
|
245753
245754
|
p2++;
|
|
245754
245755
|
}
|
|
245755
|
-
if (i2.expression = i2.expression.transform(
|
|
245756
|
+
if (i2.expression = i2.expression.transform(l2), !b)
|
|
245756
245757
|
break;
|
|
245757
245758
|
}
|
|
245758
245759
|
}
|
|
@@ -245805,14 +245806,14 @@ function tighten_body(e, t) {
|
|
|
245805
245806
|
var o2 = n4.argnames.length;
|
|
245806
245807
|
s2 = e3.args.slice(o2);
|
|
245807
245808
|
for (var r2 = /* @__PURE__ */ new Set(), a2 = o2; --a2 >= 0; ) {
|
|
245808
|
-
var
|
|
245809
|
-
const o3 =
|
|
245810
|
-
if (!(o3 && o3.orig.length > 1 || (s2.unshift(make_node(AST_VarDef,
|
|
245811
|
-
if (r2.add(
|
|
245809
|
+
var c3 = n4.argnames[a2], l3 = e3.args[a2];
|
|
245810
|
+
const o3 = c3.definition && c3.definition();
|
|
245811
|
+
if (!(o3 && o3.orig.length > 1 || (s2.unshift(make_node(AST_VarDef, c3, { name: c3, value: l3 })), r2.has(c3.name))))
|
|
245812
|
+
if (r2.add(c3.name), c3 instanceof AST_Expansion) {
|
|
245812
245813
|
var _3 = e3.args.slice(a2);
|
|
245813
|
-
_3.every((e4) => !x(n4, e4, i2)) && u2.unshift([make_node(AST_VarDef,
|
|
245814
|
+
_3.every((e4) => !x(n4, e4, i2)) && u2.unshift([make_node(AST_VarDef, c3, { name: c3.expression, value: make_node(AST_Array, e3, { elements: _3 }) })]);
|
|
245814
245815
|
} else
|
|
245815
|
-
|
|
245816
|
+
l3 ? (l3 instanceof AST_Lambda && l3.pinned() || x(n4, l3, i2)) && (l3 = null) : l3 = make_node(AST_Undefined, c3).transform(t2), l3 && u2.unshift([make_node(AST_VarDef, c3, { name: c3, value: l3 })]);
|
|
245816
245817
|
}
|
|
245817
245818
|
}
|
|
245818
245819
|
}
|
|
@@ -245836,7 +245837,7 @@ function tighten_body(e, t) {
|
|
|
245836
245837
|
f2.pop();
|
|
245837
245838
|
}
|
|
245838
245839
|
function B(e3, t3, n4) {
|
|
245839
|
-
var i2 =
|
|
245840
|
+
var i2 = l2.parent(t3);
|
|
245840
245841
|
return i2 instanceof AST_Assign ? !n4 || i2.logical || i2.left instanceof AST_PropAccess || T.has(i2.left.name) ? e3 : B(i2, t3 + 1, n4) : i2 instanceof AST_Binary ? !n4 || lazy_op.has(i2.operator) && i2.left !== e3 ? e3 : B(i2, t3 + 1, n4) : i2 instanceof AST_Call || i2 instanceof AST_Case ? e3 : i2 instanceof AST_Conditional ? n4 && i2.condition === e3 ? B(i2, t3 + 1, n4) : e3 : i2 instanceof AST_Definitions ? B(i2, t3 + 1, true) : i2 instanceof AST_Exit ? n4 ? B(i2, t3 + 1, n4) : e3 : i2 instanceof AST_If ? n4 && i2.condition === e3 ? B(i2, t3 + 1, n4) : e3 : i2 instanceof AST_IterationStatement ? e3 : i2 instanceof AST_Sequence ? B(i2, t3 + 1, i2.tail_node() !== e3) : i2 instanceof AST_SimpleStatement ? B(i2, t3 + 1, true) : i2 instanceof AST_Switch || i2 instanceof AST_VarDef ? e3 : null;
|
|
245841
245842
|
}
|
|
245842
245843
|
function L(e3) {
|
|
@@ -245877,7 +245878,7 @@ function tighten_body(e, t) {
|
|
|
245877
245878
|
});
|
|
245878
245879
|
return V(e3).walk(i2), n4;
|
|
245879
245880
|
}
|
|
245880
|
-
function
|
|
245881
|
+
function G(n4) {
|
|
245881
245882
|
if (n4.name instanceof AST_SymbolFunarg) {
|
|
245882
245883
|
var i2 = t2.parent(), o2 = t2.self().argnames, r2 = o2.indexOf(n4.name);
|
|
245883
245884
|
if (r2 < 0)
|
|
@@ -245889,7 +245890,7 @@ function tighten_body(e, t) {
|
|
|
245889
245890
|
return true;
|
|
245890
245891
|
}
|
|
245891
245892
|
var s3 = false;
|
|
245892
|
-
return e2[
|
|
245893
|
+
return e2[c2].transform(new TreeTransformer(function(e3, t3, i3) {
|
|
245893
245894
|
return s3 ? e3 : e3 === n4 || e3.body === n4 ? (s3 = true, e3 instanceof AST_VarDef ? (e3.value = e3.name instanceof AST_SymbolConst ? make_node(AST_Undefined, e3.value) : null, e3) : i3 ? MAP.skip : null) : void 0;
|
|
245894
245895
|
}, function(e3) {
|
|
245895
245896
|
if (e3 instanceof AST_Sequence)
|
|
@@ -245901,7 +245902,7 @@ function tighten_body(e, t) {
|
|
|
245901
245902
|
}
|
|
245902
245903
|
}));
|
|
245903
245904
|
}
|
|
245904
|
-
function
|
|
245905
|
+
function K(e3) {
|
|
245905
245906
|
for (; e3 instanceof AST_PropAccess; )
|
|
245906
245907
|
e3 = e3.expression;
|
|
245907
245908
|
return e3 instanceof AST_SymbolRef && e3.definition().scope.get_defun_scope() === i && !(o && (T.has(e3.name) || d2 instanceof AST_Unary || d2 instanceof AST_Assign && !d2.logical && "=" != d2.operator));
|
|
@@ -245918,37 +245919,37 @@ function tighten_body(e, t) {
|
|
|
245918
245919
|
}
|
|
245919
245920
|
return false;
|
|
245920
245921
|
}
|
|
245921
|
-
function
|
|
245922
|
+
function z(e3) {
|
|
245922
245923
|
if (!e3.definition)
|
|
245923
245924
|
return true;
|
|
245924
245925
|
var t3 = e3.definition();
|
|
245925
245926
|
return !(1 == t3.orig.length && t3.orig[0] instanceof AST_SymbolDefun) && (t3.scope.get_defun_scope() !== i || t3.references.some((e4) => e4.scope.get_defun_scope() !== i));
|
|
245926
245927
|
}
|
|
245927
|
-
function
|
|
245928
|
+
function X(e3, t3) {
|
|
245928
245929
|
if (e3 instanceof AST_Assign)
|
|
245929
|
-
return
|
|
245930
|
+
return X(e3.left, true);
|
|
245930
245931
|
if (e3 instanceof AST_Unary)
|
|
245931
|
-
return
|
|
245932
|
+
return X(e3.expression, true);
|
|
245932
245933
|
if (e3 instanceof AST_VarDef)
|
|
245933
|
-
return e3.value &&
|
|
245934
|
+
return e3.value && X(e3.value);
|
|
245934
245935
|
if (t3) {
|
|
245935
245936
|
if (e3 instanceof AST_Dot)
|
|
245936
|
-
return
|
|
245937
|
+
return X(e3.expression, true);
|
|
245937
245938
|
if (e3 instanceof AST_Sub)
|
|
245938
|
-
return
|
|
245939
|
+
return X(e3.expression, true);
|
|
245939
245940
|
if (e3 instanceof AST_SymbolRef)
|
|
245940
245941
|
return e3.definition().scope.get_defun_scope() !== i;
|
|
245941
245942
|
}
|
|
245942
245943
|
return false;
|
|
245943
245944
|
}
|
|
245944
245945
|
}
|
|
245945
|
-
function
|
|
245946
|
+
function c(e2) {
|
|
245946
245947
|
for (var t2 = [], n4 = 0; n4 < e2.length; ) {
|
|
245947
245948
|
var i2 = e2[n4];
|
|
245948
|
-
i2 instanceof AST_BlockStatement && i2.body.every(can_be_evicted_from_block) ? (a = true,
|
|
245949
|
+
i2 instanceof AST_BlockStatement && i2.body.every(can_be_evicted_from_block) ? (a = true, c(i2.body), e2.splice(n4, 1, ...i2.body), n4 += i2.body.length) : i2 instanceof AST_EmptyStatement ? (a = true, e2.splice(n4, 1)) : i2 instanceof AST_Directive ? t2.indexOf(i2.value) < 0 ? (n4++, t2.push(i2.value)) : (a = true, e2.splice(n4, 1)) : n4++;
|
|
245949
245950
|
}
|
|
245950
245951
|
}
|
|
245951
|
-
function
|
|
245952
|
+
function l(e2, t2) {
|
|
245952
245953
|
for (var n4 = t2.self(), i2 = function(e3) {
|
|
245953
245954
|
for (var t3 = 0, n5 = e3.length; --n5 >= 0; ) {
|
|
245954
245955
|
var i3 = e3[n5];
|
|
@@ -245957,8 +245958,8 @@ function tighten_body(e, t) {
|
|
|
245957
245958
|
}
|
|
245958
245959
|
return false;
|
|
245959
245960
|
}(e2), o2 = n4 instanceof AST_Lambda, r2 = Math.min(e2.length, 500); --r2 >= 0; ) {
|
|
245960
|
-
var s2 = e2[r2], u2 = S2(r2),
|
|
245961
|
-
if (o2 && !
|
|
245961
|
+
var s2 = e2[r2], u2 = S2(r2), c2 = e2[u2];
|
|
245962
|
+
if (o2 && !c2 && s2 instanceof AST_Return) {
|
|
245962
245963
|
if (!s2.value) {
|
|
245963
245964
|
a = true, e2.splice(r2, 1);
|
|
245964
245965
|
continue;
|
|
@@ -245980,22 +245981,22 @@ function tighten_body(e, t) {
|
|
|
245980
245981
|
}
|
|
245981
245982
|
}
|
|
245982
245983
|
if (s2 instanceof AST_If && s2.body instanceof AST_Return) {
|
|
245983
|
-
var
|
|
245984
|
-
if (!
|
|
245984
|
+
var l2 = s2.body.value;
|
|
245985
|
+
if (!l2 && !s2.alternative && (o2 && !c2 || c2 instanceof AST_Return && !c2.value)) {
|
|
245985
245986
|
a = true, e2[r2] = make_node(AST_SimpleStatement, s2.condition, { body: s2.condition });
|
|
245986
245987
|
continue;
|
|
245987
245988
|
}
|
|
245988
|
-
if (
|
|
245989
|
-
a = true, (s2 = s2.clone()).alternative =
|
|
245989
|
+
if (l2 && !s2.alternative && c2 instanceof AST_Return && c2.value) {
|
|
245990
|
+
a = true, (s2 = s2.clone()).alternative = c2, e2[r2] = s2.transform(t2), e2.splice(u2, 1);
|
|
245990
245991
|
continue;
|
|
245991
245992
|
}
|
|
245992
|
-
if (
|
|
245993
|
-
a = true, (s2 = s2.clone()).alternative =
|
|
245993
|
+
if (l2 && !s2.alternative && (!c2 && o2 && i2 || c2 instanceof AST_Return)) {
|
|
245994
|
+
a = true, (s2 = s2.clone()).alternative = c2 || make_node(AST_Return, s2, { value: null }), e2[r2] = s2.transform(t2), c2 && e2.splice(u2, 1);
|
|
245994
245995
|
continue;
|
|
245995
245996
|
}
|
|
245996
245997
|
var _2 = e2[h2(r2)];
|
|
245997
|
-
if (t2.option("sequences") && o2 && !s2.alternative && _2 instanceof AST_If && _2.body instanceof AST_Return && S2(u2) == e2.length &&
|
|
245998
|
-
a = true, (s2 = s2.clone()).alternative = make_node(AST_BlockStatement,
|
|
245998
|
+
if (t2.option("sequences") && o2 && !s2.alternative && _2 instanceof AST_If && _2.body instanceof AST_Return && S2(u2) == e2.length && c2 instanceof AST_SimpleStatement) {
|
|
245999
|
+
a = true, (s2 = s2.clone()).alternative = make_node(AST_BlockStatement, c2, { body: [c2, make_node(AST_Return, c2, { value: null })] }), e2[r2] = s2.transform(t2), e2.splice(u2, 1);
|
|
245999
246000
|
continue;
|
|
246000
246001
|
}
|
|
246001
246002
|
}
|
|
@@ -246008,10 +246009,10 @@ function tighten_body(e, t) {
|
|
|
246008
246009
|
if (u3 instanceof AST_Const || u3 instanceof AST_Let)
|
|
246009
246010
|
return false;
|
|
246010
246011
|
}
|
|
246011
|
-
var
|
|
246012
|
+
var c3 = i3 instanceof AST_LoopControl ? t2.loopcontrol_target(i3) : null;
|
|
246012
246013
|
return i3 instanceof AST_Return && o2 && function(e3) {
|
|
246013
246014
|
return !e3 || e3 instanceof AST_UnaryPrefix && "void" == e3.operator;
|
|
246014
|
-
}(i3.value) || i3 instanceof AST_Continue && n4 === loop_body(
|
|
246015
|
+
}(i3.value) || i3 instanceof AST_Continue && n4 === loop_body(c3) || i3 instanceof AST_Break && c3 instanceof AST_BlockStatement && n4 === c3;
|
|
246015
246016
|
}
|
|
246016
246017
|
function d2() {
|
|
246017
246018
|
var t3 = e2.slice(r2 + 1);
|
|
@@ -246045,8 +246046,8 @@ function tighten_body(e, t) {
|
|
|
246045
246046
|
for (var n4, i2 = t2.self(), o2 = 0, r2 = 0, s2 = e2.length; o2 < s2; o2++) {
|
|
246046
246047
|
var u2 = e2[o2];
|
|
246047
246048
|
if (u2 instanceof AST_LoopControl) {
|
|
246048
|
-
var
|
|
246049
|
-
u2 instanceof AST_Break && !(
|
|
246049
|
+
var c2 = t2.loopcontrol_target(u2);
|
|
246050
|
+
u2 instanceof AST_Break && !(c2 instanceof AST_IterationStatement) && loop_body(c2) === i2 || u2 instanceof AST_Continue && loop_body(c2) === i2 ? u2.label && remove2(u2.label.thedef.references, u2) : e2[r2++] = u2;
|
|
246050
246051
|
} else
|
|
246051
246052
|
e2[r2++] = u2;
|
|
246052
246053
|
if (aborts(u2)) {
|
|
@@ -246066,15 +246067,15 @@ function tighten_body(e, t) {
|
|
|
246066
246067
|
for (var n4 = [], i2 = 0, o2 = 0, r2 = e2.length; o2 < r2; o2++) {
|
|
246067
246068
|
var s2 = e2[o2];
|
|
246068
246069
|
if (s2 instanceof AST_SimpleStatement) {
|
|
246069
|
-
n4.length >= t2.sequences_limit &&
|
|
246070
|
+
n4.length >= t2.sequences_limit && c2();
|
|
246070
246071
|
var u2 = s2.body;
|
|
246071
246072
|
n4.length > 0 && (u2 = u2.drop_side_effect_free(t2)), u2 && merge_sequence(n4, u2);
|
|
246072
246073
|
} else
|
|
246073
|
-
s2 instanceof AST_Definitions && f(s2) || s2 instanceof AST_Defun ||
|
|
246074
|
+
s2 instanceof AST_Definitions && f(s2) || s2 instanceof AST_Defun || c2(), e2[i2++] = s2;
|
|
246074
246075
|
}
|
|
246075
|
-
|
|
246076
|
+
c2(), e2.length = i2, i2 != r2 && (a = true);
|
|
246076
246077
|
}
|
|
246077
|
-
function
|
|
246078
|
+
function c2() {
|
|
246078
246079
|
if (n4.length) {
|
|
246079
246080
|
var t3 = make_sequence(n4[0], n4);
|
|
246080
246081
|
e2[i2++] = make_node(AST_SimpleStatement, t3, { body: t3 }), n4 = [];
|
|
@@ -246105,10 +246106,10 @@ function tighten_body(e, t) {
|
|
|
246105
246106
|
for (var i2, o2 = 0, r2 = 0; r2 < e2.length; r2++) {
|
|
246106
246107
|
var s2 = e2[r2];
|
|
246107
246108
|
if (i2 && (s2 instanceof AST_Exit ? s2.value = n4(s2.value || make_node(AST_Undefined, s2).transform(t2)) : s2 instanceof AST_For ? s2.init instanceof AST_Definitions || walk2(i2.body, (e3) => e3 instanceof AST_Scope || (e3 instanceof AST_Binary && "in" === e3.operator ? walk_abort : void 0)) || (s2.init ? s2.init = n4(s2.init) : (s2.init = i2.body, o2--, a = true)) : s2 instanceof AST_ForIn ? s2.init instanceof AST_Const || s2.init instanceof AST_Let || (s2.object = n4(s2.object)) : s2 instanceof AST_If ? s2.condition = n4(s2.condition) : (s2 instanceof AST_Switch || s2 instanceof AST_With) && (s2.expression = n4(s2.expression))), t2.option("conditionals") && s2 instanceof AST_If) {
|
|
246108
|
-
var u2 = [],
|
|
246109
|
-
if (false !==
|
|
246109
|
+
var u2 = [], c2 = d(s2.body, u2), l2 = d(s2.alternative, u2);
|
|
246110
|
+
if (false !== c2 && false !== l2 && u2.length > 0) {
|
|
246110
246111
|
var _2 = u2.length;
|
|
246111
|
-
u2.push(make_node(AST_If, s2, { condition: s2.condition, body:
|
|
246112
|
+
u2.push(make_node(AST_If, s2, { condition: s2.condition, body: c2 || make_node(AST_EmptyStatement, s2.body), alternative: l2 })), u2.unshift(o2, 1), [].splice.apply(e2, u2), r2 += _2, o2 += _2 + 1, i2 = null, a = true;
|
|
246112
246113
|
continue;
|
|
246113
246114
|
}
|
|
246114
246115
|
}
|
|
@@ -246136,21 +246137,21 @@ function tighten_body(e, t) {
|
|
|
246136
246137
|
break;
|
|
246137
246138
|
if (!s2.right.is_constant_expression(n3))
|
|
246138
246139
|
break;
|
|
246139
|
-
var
|
|
246140
|
-
if (
|
|
246140
|
+
var c2 = s2.left.property;
|
|
246141
|
+
if (c2 instanceof AST_Node && (c2 = c2.evaluate(t)), c2 instanceof AST_Node)
|
|
246141
246142
|
break;
|
|
246142
|
-
|
|
246143
|
-
var
|
|
246144
|
-
return e3.key !=
|
|
246143
|
+
c2 = "" + c2;
|
|
246144
|
+
var l2 = t.option("ecma") < 2015 && t.has_directive("use strict") ? function(e3) {
|
|
246145
|
+
return e3.key != c2 && e3.key && e3.key.name != c2;
|
|
246145
246146
|
} : function(e3) {
|
|
246146
|
-
return e3.key && e3.key.name !=
|
|
246147
|
+
return e3.key && e3.key.name != c2;
|
|
246147
246148
|
};
|
|
246148
|
-
if (!r2.value.properties.every(
|
|
246149
|
+
if (!r2.value.properties.every(l2))
|
|
246149
246150
|
break;
|
|
246150
246151
|
var _2 = r2.value.properties.filter(function(e3) {
|
|
246151
|
-
return e3.key ===
|
|
246152
|
+
return e3.key === c2;
|
|
246152
246153
|
})[0];
|
|
246153
|
-
_2 ? _2.value = new AST_Sequence({ start: _2.start, expressions: [_2.value.clone(), s2.right.clone()], end: _2.end }) : r2.value.properties.push(make_node(AST_ObjectKeyVal, s2, { key:
|
|
246154
|
+
_2 ? _2.value = new AST_Sequence({ start: _2.start, expressions: [_2.value.clone(), s2.right.clone()], end: _2.end }) : r2.value.properties.push(make_node(AST_ObjectKeyVal, s2, { key: c2, value: s2.right })), o2.shift(), a2 = true;
|
|
246154
246155
|
} while (o2.length);
|
|
246155
246156
|
return a2 && o2;
|
|
246156
246157
|
}
|
|
@@ -246162,13 +246163,13 @@ function tighten_body(e, t) {
|
|
|
246162
246163
|
if (r2 instanceof AST_Definitions)
|
|
246163
246164
|
s2 && s2.TYPE == r2.TYPE ? (s2.definitions = s2.definitions.concat(r2.definitions), a = true) : t2 && t2.TYPE == r2.TYPE && f(r2) ? (t2.definitions = t2.definitions.concat(r2.definitions), a = true) : (e2[++i2] = r2, t2 = r2);
|
|
246164
246165
|
else if (r2 instanceof AST_Exit)
|
|
246165
|
-
r2.value =
|
|
246166
|
+
r2.value = c2(r2.value);
|
|
246166
246167
|
else if (r2 instanceof AST_For)
|
|
246167
246168
|
(u2 = S(s2, r2.init)) ? (a = true, r2.init = u2.length ? make_sequence(r2.init, u2) : null, e2[++i2] = r2) : s2 instanceof AST_Var && (!r2.init || r2.init.TYPE == s2.TYPE) ? (r2.init && (s2.definitions = s2.definitions.concat(r2.init.definitions)), r2.init = s2, e2[i2] = r2, a = true) : t2 instanceof AST_Var && r2.init instanceof AST_Var && f(r2.init) ? (t2.definitions = t2.definitions.concat(r2.init.definitions), r2.init = null, e2[++i2] = r2, a = true) : e2[++i2] = r2;
|
|
246168
246169
|
else if (r2 instanceof AST_ForIn)
|
|
246169
|
-
r2.object =
|
|
246170
|
+
r2.object = c2(r2.object);
|
|
246170
246171
|
else if (r2 instanceof AST_If)
|
|
246171
|
-
r2.condition =
|
|
246172
|
+
r2.condition = c2(r2.condition);
|
|
246172
246173
|
else if (r2 instanceof AST_SimpleStatement) {
|
|
246173
246174
|
var u2;
|
|
246174
246175
|
if (u2 = S(s2, r2.body)) {
|
|
@@ -246178,9 +246179,9 @@ function tighten_body(e, t) {
|
|
|
246178
246179
|
}
|
|
246179
246180
|
e2[++i2] = r2;
|
|
246180
246181
|
} else
|
|
246181
|
-
r2 instanceof AST_Switch || r2 instanceof AST_With ? r2.expression =
|
|
246182
|
+
r2 instanceof AST_Switch || r2 instanceof AST_With ? r2.expression = c2(r2.expression) : e2[++i2] = r2;
|
|
246182
246183
|
}
|
|
246183
|
-
function
|
|
246184
|
+
function c2(t3) {
|
|
246184
246185
|
e2[++i2] = r2;
|
|
246185
246186
|
var n5 = S(s2, t3);
|
|
246186
246187
|
return n5 ? (a = true, n5.length ? make_sequence(t3, n5) : t3 instanceof AST_Sequence ? t3.tail_node().left : t3.left) : t3;
|
|
@@ -246289,7 +246290,7 @@ function inline_into_call(e, t) {
|
|
|
246289
246290
|
}
|
|
246290
246291
|
}
|
|
246291
246292
|
if (u) {
|
|
246292
|
-
var
|
|
246293
|
+
var c, l, _ = -1;
|
|
246293
246294
|
let r2, s2, u2;
|
|
246294
246295
|
if (o && !i.uses_arguments && !(t.parent() instanceof AST_Class) && !(i.name && i instanceof AST_Function) && (s2 = function(e2) {
|
|
246295
246296
|
var n4 = i.body, o2 = n4.length;
|
|
@@ -246311,16 +246312,16 @@ function inline_into_call(e, t) {
|
|
|
246311
246312
|
}(a)) && (n3 === i || has_annotation(e, _INLINE) || t.option("unused") && 1 == (r2 = n3.definition()).references.length && !is_recursive_ref(t, r2) && i.is_constant_expression(n3.scope)) && !has_annotation(e, _PURE | _NOINLINE) && !i.contains_this() && function() {
|
|
246312
246313
|
var e2 = /* @__PURE__ */ new Set();
|
|
246313
246314
|
do {
|
|
246314
|
-
if ((
|
|
246315
|
+
if ((c = t.parent(++_)).is_block_scope() && c.block_scope && c.block_scope.variables.forEach(function(t2) {
|
|
246315
246316
|
e2.add(t2.name);
|
|
246316
|
-
}),
|
|
246317
|
-
|
|
246318
|
-
else if (
|
|
246319
|
-
|
|
246320
|
-
else if (
|
|
246317
|
+
}), c instanceof AST_Catch)
|
|
246318
|
+
c.argname && e2.add(c.argname.name);
|
|
246319
|
+
else if (c instanceof AST_IterationStatement)
|
|
246320
|
+
l = [];
|
|
246321
|
+
else if (c instanceof AST_SymbolRef && c.fixed_value() instanceof AST_Scope)
|
|
246321
246322
|
return false;
|
|
246322
|
-
} while (!(
|
|
246323
|
-
var n4 = !(
|
|
246323
|
+
} while (!(c instanceof AST_Scope));
|
|
246324
|
+
var n4 = !(c instanceof AST_Toplevel) || t.toplevel.vars, o2 = t.option("inline");
|
|
246324
246325
|
return !(!function(e3, t2) {
|
|
246325
246326
|
for (var n5 = i.body.length, o3 = 0; o3 < n5; o3++) {
|
|
246326
246327
|
var r3 = i.body[o3];
|
|
@@ -246329,9 +246330,9 @@ function inline_into_call(e, t) {
|
|
|
246329
246330
|
return false;
|
|
246330
246331
|
for (var a2 = r3.definitions.length; --a2 >= 0; ) {
|
|
246331
246332
|
var s3 = r3.definitions[a2].name;
|
|
246332
|
-
if (s3 instanceof AST_Destructuring || e3.has(s3.name) || identifier_atom.has(s3.name) ||
|
|
246333
|
+
if (s3 instanceof AST_Destructuring || e3.has(s3.name) || identifier_atom.has(s3.name) || c.conflicting_def(s3.name))
|
|
246333
246334
|
return false;
|
|
246334
|
-
|
|
246335
|
+
l && l.push(s3.definition());
|
|
246335
246336
|
}
|
|
246336
246337
|
}
|
|
246337
246338
|
}
|
|
@@ -246352,13 +246353,13 @@ function inline_into_call(e, t) {
|
|
|
246352
246353
|
return false;
|
|
246353
246354
|
}
|
|
246354
246355
|
if (!has_flag(r3, 1)) {
|
|
246355
|
-
if (!t2 || e3.has(r3.name) || identifier_atom.has(r3.name) ||
|
|
246356
|
+
if (!t2 || e3.has(r3.name) || identifier_atom.has(r3.name) || c.conflicting_def(r3.name))
|
|
246356
246357
|
return false;
|
|
246357
|
-
|
|
246358
|
+
l && l.push(r3.definition());
|
|
246358
246359
|
}
|
|
246359
246360
|
}
|
|
246360
246361
|
return true;
|
|
246361
|
-
}(e2, o2 >= 2 && n4) ||
|
|
246362
|
+
}(e2, o2 >= 2 && n4) || l && 0 != l.length && is_reachable(i, l));
|
|
246362
246363
|
}() && (u2 = t.find_scope()) && !scope_encloses_variables_in_this_scope(u2, i) && !function() {
|
|
246363
246364
|
let e2, n4 = 0;
|
|
246364
246365
|
for (; e2 = t.parent(n4++); ) {
|
|
@@ -246368,7 +246369,7 @@ function inline_into_call(e, t) {
|
|
|
246368
246369
|
break;
|
|
246369
246370
|
}
|
|
246370
246371
|
return false;
|
|
246371
|
-
}() && !(
|
|
246372
|
+
}() && !(c instanceof AST_Class))
|
|
246372
246373
|
return set_flag(i, 256), u2.add_child_scope(i), make_sequence(e, function(n4) {
|
|
246373
246374
|
var o2 = [], r3 = [];
|
|
246374
246375
|
if (function(t2, n5) {
|
|
@@ -246376,11 +246377,11 @@ function inline_into_call(e, t) {
|
|
|
246376
246377
|
n5.push(e.args[r4]);
|
|
246377
246378
|
for (r4 = o3; --r4 >= 0; ) {
|
|
246378
246379
|
var a2 = i.argnames[r4], s3 = e.args[r4];
|
|
246379
|
-
if (has_flag(a2, 1) || !a2.name ||
|
|
246380
|
+
if (has_flag(a2, 1) || !a2.name || c.conflicting_def(a2.name))
|
|
246380
246381
|
s3 && n5.push(s3);
|
|
246381
246382
|
else {
|
|
246382
246383
|
var u3 = make_node(AST_SymbolVar, a2, a2);
|
|
246383
|
-
a2.definition().orig.push(u3), !s3 &&
|
|
246384
|
+
a2.definition().orig.push(u3), !s3 && l && (s3 = make_node(AST_Undefined, e)), m(t2, n5, u3, s3);
|
|
246384
246385
|
}
|
|
246385
246386
|
}
|
|
246386
246387
|
t2.reverse(), n5.reverse();
|
|
@@ -246389,16 +246390,16 @@ function inline_into_call(e, t) {
|
|
|
246389
246390
|
var a2 = i.body[o3];
|
|
246390
246391
|
if (a2 instanceof AST_Var)
|
|
246391
246392
|
for (var s3 = 0, u3 = a2.definitions.length; s3 < u3; s3++) {
|
|
246392
|
-
var
|
|
246393
|
-
if (m(e2, t2, _2,
|
|
246393
|
+
var c2 = a2.definitions[s3], _2 = c2.name;
|
|
246394
|
+
if (m(e2, t2, _2, c2.value), l && i.argnames.every((e3) => e3.name != _2.name)) {
|
|
246394
246395
|
var f2 = i.variables.get(_2.name), p2 = make_node(AST_SymbolRef, _2, _2);
|
|
246395
|
-
f2.references.push(p2), t2.splice(n5++, 0, make_node(AST_Assign,
|
|
246396
|
+
f2.references.push(p2), t2.splice(n5++, 0, make_node(AST_Assign, c2, { operator: "=", logical: false, left: p2, right: make_node(AST_Undefined, _2) }));
|
|
246396
246397
|
}
|
|
246397
246398
|
}
|
|
246398
246399
|
}
|
|
246399
246400
|
}(o2, r3), r3.push(n4), o2.length) {
|
|
246400
|
-
const e2 =
|
|
246401
|
-
|
|
246401
|
+
const e2 = c.body.indexOf(t.parent(_ - 1)) + 1;
|
|
246402
|
+
c.body.splice(e2, 0, make_node(AST_Var, i, { definitions: o2 }));
|
|
246402
246403
|
}
|
|
246403
246404
|
return r3.map((e2) => e2.clone(true));
|
|
246404
246405
|
}(s2)).optimize(t);
|
|
@@ -246418,7 +246419,7 @@ function inline_into_call(e, t) {
|
|
|
246418
246419
|
}
|
|
246419
246420
|
function m(t2, n4, i2, o2) {
|
|
246420
246421
|
var r2 = i2.definition();
|
|
246421
|
-
|
|
246422
|
+
c.variables.has(i2.name) || (c.variables.set(i2.name, r2), c.enclosed.push(r2), t2.push(make_node(AST_VarDef, i2, { name: i2, value: null })));
|
|
246422
246423
|
var a2 = make_node(AST_SymbolRef, i2, i2);
|
|
246423
246424
|
r2.references.push(a2), o2 && n4.push(make_node(AST_Assign, e, { operator: "=", logical: false, left: a2, right: o2.clone() }));
|
|
246424
246425
|
}
|
|
@@ -246442,12 +246443,12 @@ def_reduce_vars(AST_Accessor, function(e, t, n3) {
|
|
|
246442
246443
|
var u = a.fixed;
|
|
246443
246444
|
if (!u && "=" != i.operator && !i.logical)
|
|
246444
246445
|
return o();
|
|
246445
|
-
var
|
|
246446
|
-
return is_modified(n3, e, i,
|
|
246446
|
+
var c = "=" == i.operator, l = c ? i.right : i;
|
|
246447
|
+
return is_modified(n3, e, i, l, 0) ? o() : (a.references.push(r), i.logical || (c || (a.chained = true), a.fixed = c ? function() {
|
|
246447
246448
|
return i.right;
|
|
246448
246449
|
} : function() {
|
|
246449
246450
|
return make_node(AST_Binary, i, { operator: i.operator.slice(0, -1), left: u instanceof AST_Node ? u : u(), right: i.right });
|
|
246450
|
-
}), i.logical ? (mark(e, a, false), push(e), i.right.walk(e), pop(e), true) : (mark(e, a, false), i.right.walk(e), mark(e, a, true), mark_escaped(e, a, r.scope, i,
|
|
246451
|
+
}), i.logical ? (mark(e, a, false), push(e), i.right.walk(e), pop(e), true) : (mark(e, a, false), i.right.walk(e), mark(e, a, true), mark_escaped(e, a, r.scope, i, l, 0, 1), true));
|
|
246451
246452
|
}), def_reduce_vars(AST_Binary, function(e) {
|
|
246452
246453
|
if (lazy_op.has(this.operator))
|
|
246453
246454
|
return this.left.walk(e), push(e), this.right.walk(e), pop(e), true;
|
|
@@ -246803,50 +246804,50 @@ def_optimize(AST_Directive, function(e, t) {
|
|
|
246803
246804
|
if (n3 || i) {
|
|
246804
246805
|
var o = [], r = [], a = /* @__PURE__ */ new Map(), s = 0, u = 0;
|
|
246805
246806
|
walk2(t, (e2) => e2 instanceof AST_Scope && e2 !== t || (e2 instanceof AST_Var ? (++u, true) : void 0)), i = i && u > 1;
|
|
246806
|
-
var
|
|
246807
|
+
var c = new TreeTransformer(function(u2) {
|
|
246807
246808
|
if (u2 !== t) {
|
|
246808
246809
|
if (u2 instanceof AST_Directive)
|
|
246809
246810
|
return o.push(u2), make_node(AST_EmptyStatement, u2);
|
|
246810
|
-
if (n3 && u2 instanceof AST_Defun && !(
|
|
246811
|
+
if (n3 && u2 instanceof AST_Defun && !(c.parent() instanceof AST_Export) && c.parent() === t)
|
|
246811
246812
|
return r.push(u2), make_node(AST_EmptyStatement, u2);
|
|
246812
246813
|
if (i && u2 instanceof AST_Var && !u2.definitions.some((e2) => e2.name instanceof AST_Destructuring)) {
|
|
246813
246814
|
u2.definitions.forEach(function(e2) {
|
|
246814
246815
|
a.set(e2.name.name, e2), ++s;
|
|
246815
246816
|
});
|
|
246816
|
-
var
|
|
246817
|
+
var l2 = u2.to_assignments(e), _2 = c.parent();
|
|
246817
246818
|
if (_2 instanceof AST_ForIn && _2.init === u2) {
|
|
246818
|
-
if (null ==
|
|
246819
|
+
if (null == l2) {
|
|
246819
246820
|
var f2 = u2.definitions[0].name;
|
|
246820
246821
|
return make_node(AST_SymbolRef, f2, f2);
|
|
246821
246822
|
}
|
|
246822
|
-
return
|
|
246823
|
+
return l2;
|
|
246823
246824
|
}
|
|
246824
|
-
return _2 instanceof AST_For && _2.init === u2 ?
|
|
246825
|
+
return _2 instanceof AST_For && _2.init === u2 ? l2 : l2 ? make_node(AST_SimpleStatement, u2, { body: l2 }) : make_node(AST_EmptyStatement, u2);
|
|
246825
246826
|
}
|
|
246826
246827
|
if (u2 instanceof AST_Scope)
|
|
246827
246828
|
return u2;
|
|
246828
246829
|
}
|
|
246829
246830
|
});
|
|
246830
|
-
if (t = t.transform(
|
|
246831
|
-
var
|
|
246831
|
+
if (t = t.transform(c), s > 0) {
|
|
246832
|
+
var l = [];
|
|
246832
246833
|
const e2 = t instanceof AST_Lambda, n4 = e2 ? t.args_as_names() : null;
|
|
246833
246834
|
if (a.forEach((t2, i2) => {
|
|
246834
|
-
e2 && n4.some((e3) => e3.name === t2.name.name) ? a.delete(i2) : ((t2 = t2.clone()).value = null,
|
|
246835
|
-
}),
|
|
246835
|
+
e2 && n4.some((e3) => e3.name === t2.name.name) ? a.delete(i2) : ((t2 = t2.clone()).value = null, l.push(t2), a.set(i2, t2));
|
|
246836
|
+
}), l.length > 0) {
|
|
246836
246837
|
for (; 0 < t.body.length; ) {
|
|
246837
246838
|
if (t.body[0] instanceof AST_SimpleStatement) {
|
|
246838
246839
|
var _, f, p = t.body[0].body;
|
|
246839
246840
|
if (p instanceof AST_Assign && "=" == p.operator && (_ = p.left) instanceof AST_Symbol && a.has(_.name)) {
|
|
246840
246841
|
if ((d = a.get(_.name)).value)
|
|
246841
246842
|
break;
|
|
246842
|
-
d.value = p.right, remove2(
|
|
246843
|
+
d.value = p.right, remove2(l, d), l.push(d), t.body.splice(0, 1);
|
|
246843
246844
|
continue;
|
|
246844
246845
|
}
|
|
246845
246846
|
if (p instanceof AST_Sequence && (f = p.expressions[0]) instanceof AST_Assign && "=" == f.operator && (_ = f.left) instanceof AST_Symbol && a.has(_.name)) {
|
|
246846
246847
|
var d;
|
|
246847
246848
|
if ((d = a.get(_.name)).value)
|
|
246848
246849
|
break;
|
|
246849
|
-
d.value = f.right, remove2(
|
|
246850
|
+
d.value = f.right, remove2(l, d), l.push(d), t.body[0].body = make_sequence(p, p.expressions.slice(1));
|
|
246850
246851
|
continue;
|
|
246851
246852
|
}
|
|
246852
246853
|
}
|
|
@@ -246858,7 +246859,7 @@ def_optimize(AST_Directive, function(e, t) {
|
|
|
246858
246859
|
t.body.splice(0, 1, ...t.body[0].body);
|
|
246859
246860
|
}
|
|
246860
246861
|
}
|
|
246861
|
-
|
|
246862
|
+
l = make_node(AST_Var, t, { definitions: l }), r.push(l);
|
|
246862
246863
|
}
|
|
246863
246864
|
}
|
|
246864
246865
|
t.body = o.concat(r, t.body);
|
|
@@ -246871,13 +246872,13 @@ def_optimize(AST_Directive, function(e, t) {
|
|
|
246871
246872
|
var n3 = t instanceof AST_Toplevel && e.top_retain || return_false, i = /* @__PURE__ */ new Map(), o = new TreeTransformer(function(r, a) {
|
|
246872
246873
|
if (r instanceof AST_VarDef) {
|
|
246873
246874
|
const s = r.name;
|
|
246874
|
-
let u,
|
|
246875
|
-
if (s.scope === t && 1 != (u = s.definition()).escaped && !u.assignments && !u.direct_access && !u.single_use && !e.exposed(u) && !n3(u) && (
|
|
246875
|
+
let u, c;
|
|
246876
|
+
if (s.scope === t && 1 != (u = s.definition()).escaped && !u.assignments && !u.direct_access && !u.single_use && !e.exposed(u) && !n3(u) && (c = s.fixed_value()) === r.value && c instanceof AST_Object && !c.properties.some((e2) => e2 instanceof AST_Expansion || e2.computed_key())) {
|
|
246876
246877
|
a(r, this);
|
|
246877
246878
|
const e2 = /* @__PURE__ */ new Map(), n4 = [];
|
|
246878
|
-
return
|
|
246879
|
-
const u2 = o.find_scope(),
|
|
246880
|
-
e2.set(String(i2),
|
|
246879
|
+
return c.properties.forEach(({ key: i2, value: a2 }) => {
|
|
246880
|
+
const u2 = o.find_scope(), c2 = t.create_symbol(s.CTOR, { source: s, scope: u2, conflict_scopes: /* @__PURE__ */ new Set([u2, ...s.definition().references.map((e3) => e3.scope)]), tentative_name: s.name + "_" + i2 });
|
|
246881
|
+
e2.set(String(i2), c2.definition()), n4.push(make_node(AST_VarDef, r, { name: c2, value: a2 }));
|
|
246881
246882
|
}), i.set(u.id, e2), MAP.splice(n4);
|
|
246882
246883
|
}
|
|
246883
246884
|
} else if (r instanceof AST_PropAccess && r.expression instanceof AST_SymbolRef) {
|
|
@@ -246949,8 +246950,8 @@ def_optimize(AST_Directive, function(e, t) {
|
|
|
246949
246950
|
var r = e.condition.negate(t), a = e.condition.size(), s = r.size(), u = s < a;
|
|
246950
246951
|
if (e.alternative && u) {
|
|
246951
246952
|
u = false, e.condition = r;
|
|
246952
|
-
var
|
|
246953
|
-
e.body = e.alternative || make_node(AST_EmptyStatement, e), e.alternative =
|
|
246953
|
+
var c = e.body;
|
|
246954
|
+
e.body = e.alternative || make_node(AST_EmptyStatement, e), e.alternative = c;
|
|
246954
246955
|
}
|
|
246955
246956
|
if (is_empty(e.body) && is_empty(e.alternative))
|
|
246956
246957
|
return make_node(AST_SimpleStatement, e.condition, { body: e.condition.clone() }).optimize(t);
|
|
@@ -246963,8 +246964,8 @@ def_optimize(AST_Directive, function(e, t) {
|
|
|
246963
246964
|
if (e.body instanceof AST_Exit && e.alternative instanceof AST_Exit && e.body.TYPE == e.alternative.TYPE)
|
|
246964
246965
|
return make_node(e.body.CTOR, e, { value: make_node(AST_Conditional, e, { condition: e.condition, consequent: e.body.value || make_node(AST_Undefined, e.body), alternative: e.alternative.value || make_node(AST_Undefined, e.alternative) }).transform(t) }).optimize(t);
|
|
246965
246966
|
if (e.body instanceof AST_If && !e.body.alternative && !e.alternative && (e = make_node(AST_If, e, { condition: make_node(AST_Binary, e.condition, { operator: "&&", left: e.condition, right: e.body.condition }), body: e.body.body, alternative: null })), aborts(e.body) && e.alternative) {
|
|
246966
|
-
var
|
|
246967
|
-
return e.alternative = null, make_node(AST_BlockStatement, e, { body: [e,
|
|
246967
|
+
var l = e.alternative;
|
|
246968
|
+
return e.alternative = null, make_node(AST_BlockStatement, e, { body: [e, l] }).optimize(t);
|
|
246968
246969
|
}
|
|
246969
246970
|
return aborts(e.alternative) ? (o = e.body, e.body = e.alternative, e.condition = u ? r : e.condition.negate(t), e.alternative = null, make_node(AST_BlockStatement, e, { body: [e, o] }).optimize(t)) : e;
|
|
246970
246971
|
}), def_optimize(AST_Switch, function(e, t) {
|
|
@@ -246978,8 +246979,8 @@ def_optimize(AST_Directive, function(e, t) {
|
|
|
246978
246979
|
if (!t.option("dead_code"))
|
|
246979
246980
|
return e;
|
|
246980
246981
|
i instanceof AST_Node && (i = e.expression.tail_node().evaluate(t));
|
|
246981
|
-
for (var r, a, s = [], u = [],
|
|
246982
|
-
if ((n3 = e.body[
|
|
246982
|
+
for (var r, a, s = [], u = [], c = 0, l = e.body.length; c < l && !a; c++) {
|
|
246983
|
+
if ((n3 = e.body[c]) instanceof AST_Default)
|
|
246983
246984
|
r ? d(n3, u[u.length - 1]) : r = n3;
|
|
246984
246985
|
else if (!(i instanceof AST_Node)) {
|
|
246985
246986
|
var _ = n3.expression.evaluate(t);
|
|
@@ -246994,8 +246995,8 @@ def_optimize(AST_Directive, function(e, t) {
|
|
|
246994
246995
|
}
|
|
246995
246996
|
u.push(n3);
|
|
246996
246997
|
}
|
|
246997
|
-
for (;
|
|
246998
|
-
d(e.body[
|
|
246998
|
+
for (; c < l; )
|
|
246999
|
+
d(e.body[c++], u[u.length - 1]);
|
|
246999
247000
|
e.body = u;
|
|
247000
247001
|
let p = r || a;
|
|
247001
247002
|
if (r = null, a = null, u.every((e2, t2) => (e2 === p || e2.expression instanceof AST_Constant) && (0 === e2.body.length || aborts(e2) || u.length - 1 === t2)))
|
|
@@ -247172,22 +247173,22 @@ def_optimize(AST_Directive, function(e, t) {
|
|
|
247172
247173
|
if (r && i.pinned())
|
|
247173
247174
|
return e;
|
|
247174
247175
|
if (t.option("unused") && o && r && !i.uses_arguments) {
|
|
247175
|
-
for (var a = 0, s = 0, u = 0,
|
|
247176
|
+
for (var a = 0, s = 0, u = 0, c = e.args.length; u < c; u++) {
|
|
247176
247177
|
if (i.argnames[u] instanceof AST_Expansion) {
|
|
247177
247178
|
if (has_flag(i.argnames[u].expression, 1))
|
|
247178
|
-
for (; u <
|
|
247179
|
+
for (; u < c; )
|
|
247179
247180
|
(d = e.args[u++].drop_side_effect_free(t)) && (e.args[a++] = d);
|
|
247180
247181
|
else
|
|
247181
|
-
for (; u <
|
|
247182
|
+
for (; u < c; )
|
|
247182
247183
|
e.args[a++] = e.args[u++];
|
|
247183
247184
|
s = a;
|
|
247184
247185
|
break;
|
|
247185
247186
|
}
|
|
247186
|
-
var
|
|
247187
|
-
if (
|
|
247187
|
+
var l = u >= i.argnames.length;
|
|
247188
|
+
if (l || has_flag(i.argnames[u], 1)) {
|
|
247188
247189
|
if (d = e.args[u].drop_side_effect_free(t))
|
|
247189
247190
|
e.args[a++] = d;
|
|
247190
|
-
else if (!
|
|
247191
|
+
else if (!l) {
|
|
247191
247192
|
e.args[a++] = make_node(AST_Number, e.args[u], { value: 0 });
|
|
247192
247193
|
continue;
|
|
247193
247194
|
}
|
|
@@ -247265,7 +247266,7 @@ def_optimize(AST_Directive, function(e, t) {
|
|
|
247265
247266
|
var f;
|
|
247266
247267
|
if (!(e.args.length > 0 && (f = e.args[0].evaluate(t)) === e.args[0])) {
|
|
247267
247268
|
var p, d, m = [], S = [];
|
|
247268
|
-
for (u = 0,
|
|
247269
|
+
for (u = 0, c = n3.expression.elements.length; u < c; u++) {
|
|
247269
247270
|
var h = n3.expression.elements[u];
|
|
247270
247271
|
if (h instanceof AST_Expansion)
|
|
247271
247272
|
break e;
|
|
@@ -247455,16 +247456,16 @@ def_optimize(AST_Binary, function(e, t) {
|
|
|
247455
247456
|
}
|
|
247456
247457
|
}
|
|
247457
247458
|
if ("+" == e.operator && t.in_boolean_context()) {
|
|
247458
|
-
var u = e.left.evaluate(t),
|
|
247459
|
+
var u = e.left.evaluate(t), c = e.right.evaluate(t);
|
|
247459
247460
|
if (u && "string" == typeof u)
|
|
247460
247461
|
return make_sequence(e, [e.right, make_node(AST_True, e)]).optimize(t);
|
|
247461
|
-
if (
|
|
247462
|
+
if (c && "string" == typeof c)
|
|
247462
247463
|
return make_sequence(e, [e.left, make_node(AST_True, e)]).optimize(t);
|
|
247463
247464
|
}
|
|
247464
247465
|
if (t.option("comparisons") && e.is_boolean()) {
|
|
247465
247466
|
if (!(t.parent() instanceof AST_Binary) || t.parent() instanceof AST_Assign) {
|
|
247466
|
-
var
|
|
247467
|
-
e = best_of(t, e,
|
|
247467
|
+
var l = make_node(AST_UnaryPrefix, e, { operator: "!", expression: e.negate(t, first_in_statement(t)) });
|
|
247468
|
+
e = best_of(t, e, l);
|
|
247468
247469
|
}
|
|
247469
247470
|
if (t.option("unsafe_comps"))
|
|
247470
247471
|
switch (e.operator) {
|
|
@@ -247490,8 +247491,8 @@ def_optimize(AST_Binary, function(e, t) {
|
|
|
247490
247491
|
return maintain_this_binding(t.parent(), t.self(), e.left).optimize(t);
|
|
247491
247492
|
if (!(u instanceof AST_Node))
|
|
247492
247493
|
return make_sequence(e, [e.left, e.right]).optimize(t);
|
|
247493
|
-
if (
|
|
247494
|
-
if (!(
|
|
247494
|
+
if (c = e.right.evaluate(t)) {
|
|
247495
|
+
if (!(c instanceof AST_Node) && ("&&" == (_ = t.parent()).operator && _.left === t.self() || t.in_boolean_context()))
|
|
247495
247496
|
return e.left.optimize(t);
|
|
247496
247497
|
} else {
|
|
247497
247498
|
if (t.in_boolean_context())
|
|
@@ -247507,8 +247508,8 @@ def_optimize(AST_Binary, function(e, t) {
|
|
|
247507
247508
|
return make_sequence(e, [e.left, e.right]).optimize(t);
|
|
247508
247509
|
if (!(u instanceof AST_Node))
|
|
247509
247510
|
return maintain_this_binding(t.parent(), t.self(), e.left).optimize(t);
|
|
247510
|
-
if (
|
|
247511
|
-
if (!(
|
|
247511
|
+
if (c = e.right.evaluate(t)) {
|
|
247512
|
+
if (!(c instanceof AST_Node)) {
|
|
247512
247513
|
if (t.in_boolean_context())
|
|
247513
247514
|
return make_sequence(e, [e.left, make_node(AST_True, e)]).optimize(t);
|
|
247514
247515
|
set_flag(e, 2);
|
|
@@ -247592,18 +247593,18 @@ def_optimize(AST_Binary, function(e, t) {
|
|
|
247592
247593
|
return u2;
|
|
247593
247594
|
if (s2 && "&" === e.operator && !u2.has_side_effects(t))
|
|
247594
247595
|
return s2;
|
|
247595
|
-
const
|
|
247596
|
+
const c2 = (e2) => e2 instanceof AST_Number && -1 === e2.value || e2 instanceof AST_UnaryPrefix && ("-" === e2.operator && e2.expression instanceof AST_Number && 1 === e2.expression.value || "~" === e2.operator && e2.expression instanceof AST_Number && 0 === e2.expression.value), l2 = c2(e.right) ? e.right : c2(e.left) ? e.left : null, _2 = l2 && (l2 === e.right ? e.left : e.right);
|
|
247596
247597
|
switch (e.operator) {
|
|
247597
247598
|
case "|":
|
|
247598
|
-
if (
|
|
247599
|
-
return
|
|
247599
|
+
if (l2 && !_2.has_side_effects(t))
|
|
247600
|
+
return l2;
|
|
247600
247601
|
break;
|
|
247601
247602
|
case "&":
|
|
247602
|
-
if (
|
|
247603
|
+
if (l2 && (_2.is_32_bit_integer() || t.in_32_bit_context()))
|
|
247603
247604
|
return _2;
|
|
247604
247605
|
break;
|
|
247605
247606
|
case "^":
|
|
247606
|
-
if (
|
|
247607
|
+
if (l2)
|
|
247607
247608
|
return _2.bitwise_negate(t.in_32_bit_context());
|
|
247608
247609
|
e.left instanceof AST_UnaryPrefix && "~" === e.left.operator && e.right instanceof AST_UnaryPrefix && "~" === e.right.operator && (e = make_node(AST_Binary, e, { operator: "^", left: e.left.expression, right: e.right.expression }));
|
|
247609
247610
|
}
|
|
@@ -247683,12 +247684,12 @@ function inline_array_like_spread(e) {
|
|
|
247683
247684
|
}
|
|
247684
247685
|
}
|
|
247685
247686
|
}
|
|
247686
|
-
function inline_object_prop_spread(e
|
|
247687
|
-
for (var
|
|
247688
|
-
var
|
|
247689
|
-
if (
|
|
247690
|
-
const
|
|
247691
|
-
|
|
247687
|
+
function inline_object_prop_spread(e) {
|
|
247688
|
+
for (var t = 0; t < e.length; t++) {
|
|
247689
|
+
var n3 = e[t];
|
|
247690
|
+
if (n3 instanceof AST_Expansion) {
|
|
247691
|
+
const i = n3.expression;
|
|
247692
|
+
i instanceof AST_Object && i.properties.every((e2) => e2 instanceof AST_ObjectKeyVal) ? (e.splice(t, 1, ...i.properties), t--) : !(i instanceof AST_Constant || i.is_constant()) || i instanceof AST_String || (e.splice(t, 1), t--);
|
|
247692
247693
|
}
|
|
247693
247694
|
}
|
|
247694
247695
|
}
|
|
@@ -247721,14 +247722,14 @@ function* SourceMap4(e) {
|
|
|
247721
247722
|
var o2 = t.sourcesContent[n4];
|
|
247722
247723
|
o2 && (i[e2] = o2);
|
|
247723
247724
|
}), { add: function(e2, o2, r2, a2, s, u) {
|
|
247724
|
-
let
|
|
247725
|
+
let c = { line: o2, column: r2 };
|
|
247725
247726
|
if (t) {
|
|
247726
|
-
var
|
|
247727
|
-
if (null ===
|
|
247728
|
-
return void n3.addMapping({ generated:
|
|
247729
|
-
e2 =
|
|
247727
|
+
var l = t.originalPositionFor({ line: a2, column: s });
|
|
247728
|
+
if (null === l.source)
|
|
247729
|
+
return void n3.addMapping({ generated: c, original: null, source: null, name: null });
|
|
247730
|
+
e2 = l.source, a2 = l.line, s = l.column, u = l.name || u;
|
|
247730
247731
|
}
|
|
247731
|
-
n3.addMapping({ generated:
|
|
247732
|
+
n3.addMapping({ generated: c, original: { line: a2, column: s }, source: e2, name: u }), n3.setSourceContent(e2, i[e2]);
|
|
247732
247733
|
}, getDecoded: function() {
|
|
247733
247734
|
return n3.toDecodedMap ? a(n3.toDecodedMap()) : null;
|
|
247734
247735
|
}, getEncoded: function() {
|
|
@@ -247811,8 +247812,8 @@ def_optimize(AST_Assign, function(e, t) {
|
|
|
247811
247812
|
}
|
|
247812
247813
|
}
|
|
247813
247814
|
}())) {
|
|
247814
|
-
var
|
|
247815
|
-
return
|
|
247815
|
+
var c = s.clone();
|
|
247816
|
+
return c.args[r] = make_node(AST_Conditional, e, { condition: e.condition, consequent: s.args[r], alternative: u.args[r] }), c;
|
|
247816
247817
|
}
|
|
247817
247818
|
if (u instanceof AST_Conditional && s.equivalent_to(u.consequent))
|
|
247818
247819
|
return make_node(AST_Conditional, e, { condition: make_node(AST_Binary, e, { operator: "||", left: a, right: u.condition }), consequent: s, alternative: u.alternative }).optimize(t);
|
|
@@ -247828,16 +247829,16 @@ def_optimize(AST_Assign, function(e, t) {
|
|
|
247828
247829
|
return make_sequence(e, [e.condition, s]).optimize(t);
|
|
247829
247830
|
if (s instanceof AST_Binary && "||" == s.operator && s.right.equivalent_to(u))
|
|
247830
247831
|
return make_node(AST_Binary, e, { operator: "||", left: make_node(AST_Binary, e, { operator: "&&", left: e.condition, right: s.left }), right: u }).optimize(t);
|
|
247831
|
-
const
|
|
247832
|
+
const l = t.in_boolean_context();
|
|
247832
247833
|
return f(e.consequent) ? p(e.alternative) ? _(e.condition) : make_node(AST_Binary, e, { operator: "||", left: _(e.condition), right: e.alternative }) : p(e.consequent) ? f(e.alternative) ? _(e.condition.negate(t)) : make_node(AST_Binary, e, { operator: "&&", left: _(e.condition.negate(t)), right: e.alternative }) : f(e.alternative) ? make_node(AST_Binary, e, { operator: "||", left: _(e.condition.negate(t)), right: e.consequent }) : p(e.alternative) ? make_node(AST_Binary, e, { operator: "&&", left: _(e.condition), right: e.consequent }) : e;
|
|
247833
247834
|
function _(e2) {
|
|
247834
247835
|
return e2.is_boolean() ? e2 : make_node(AST_UnaryPrefix, e2, { operator: "!", expression: e2.negate(t) });
|
|
247835
247836
|
}
|
|
247836
247837
|
function f(e2) {
|
|
247837
|
-
return e2 instanceof AST_True ||
|
|
247838
|
+
return e2 instanceof AST_True || l && e2 instanceof AST_Constant && e2.getValue() || e2 instanceof AST_UnaryPrefix && "!" == e2.operator && e2.expression instanceof AST_Constant && !e2.expression.getValue();
|
|
247838
247839
|
}
|
|
247839
247840
|
function p(e2) {
|
|
247840
|
-
return e2 instanceof AST_False ||
|
|
247841
|
+
return e2 instanceof AST_False || l && e2 instanceof AST_Constant && !e2.getValue() || e2 instanceof AST_UnaryPrefix && "!" == e2.operator && e2.expression instanceof AST_Constant && e2.expression.getValue();
|
|
247841
247842
|
}
|
|
247842
247843
|
}), def_optimize(AST_Boolean, function(e, t) {
|
|
247843
247844
|
if (t.in_boolean_context())
|
|
@@ -247877,10 +247878,10 @@ def_optimize(AST_Assign, function(e, t) {
|
|
|
247877
247878
|
}
|
|
247878
247879
|
e:
|
|
247879
247880
|
if (t.option("arguments") && i instanceof AST_SymbolRef && "arguments" == i.name && 1 == i.definition().orig.length && (n3 = i.scope) instanceof AST_Lambda && n3.uses_arguments && !(n3 instanceof AST_Arrow) && o instanceof AST_Number) {
|
|
247880
|
-
for (var s = o.getValue(), u = /* @__PURE__ */ new Set(),
|
|
247881
|
-
if (!(l
|
|
247881
|
+
for (var s = o.getValue(), u = /* @__PURE__ */ new Set(), c = n3.argnames, l = 0; l < c.length; l++) {
|
|
247882
|
+
if (!(c[l] instanceof AST_SymbolFunarg))
|
|
247882
247883
|
break e;
|
|
247883
|
-
var _ = l
|
|
247884
|
+
var _ = c[l].name;
|
|
247884
247885
|
if (u.has(_))
|
|
247885
247886
|
break e;
|
|
247886
247887
|
u.add(_);
|
|
@@ -247970,7 +247971,7 @@ def_optimize(AST_Assign, function(e, t) {
|
|
|
247970
247971
|
return n3 !== e ? n3 : (inline_array_like_spread(e.elements), e);
|
|
247971
247972
|
}), def_optimize(AST_Object, function(e, t) {
|
|
247972
247973
|
var n3 = literals_in_boolean_context(e, t);
|
|
247973
|
-
return n3 !== e ? n3 : (inline_object_prop_spread(e.properties
|
|
247974
|
+
return n3 !== e ? n3 : (inline_object_prop_spread(e.properties), e);
|
|
247974
247975
|
}), def_optimize(AST_RegExp, literals_in_boolean_context), def_optimize(AST_Return, function(e, t) {
|
|
247975
247976
|
return e.value && is_undefined(e.value, t) && (e.value = null), e;
|
|
247976
247977
|
}), def_optimize(AST_Arrow, opt_AST_Lambda), def_optimize(AST_Function, function(e, t) {
|
|
@@ -248060,7 +248061,7 @@ def_optimize(AST_Assign, function(e, t) {
|
|
|
248060
248061
|
return !!t2.references.length || !!t2.global && (!e2.toplevel.vars || !!e2.top_retain && e2.top_retain(t2));
|
|
248061
248062
|
}
|
|
248062
248063
|
});
|
|
248063
|
-
var domprops = ["$&", "$'", "$*", "$+", "$1", "$2", "$3", "$4", "$5", "$6", "$7", "$8", "$9", "$_", "$`", "$input", "-moz-animation", "-moz-animation-delay", "-moz-animation-direction", "-moz-animation-duration", "-moz-animation-fill-mode", "-moz-animation-iteration-count", "-moz-animation-name", "-moz-animation-play-state", "-moz-animation-timing-function", "-moz-appearance", "-moz-backface-visibility", "-moz-border-end", "-moz-border-end-color", "-moz-border-end-style", "-moz-border-end-width", "-moz-border-image", "-moz-border-start", "-moz-border-start-color", "-moz-border-start-style", "-moz-border-start-width", "-moz-box-align", "-moz-box-direction", "-moz-box-flex", "-moz-box-ordinal-group", "-moz-box-orient", "-moz-box-pack", "-moz-box-sizing", "-moz-float-edge", "-moz-font-feature-settings", "-moz-font-language-override", "-moz-force-broken-image-icon", "-moz-hyphens", "-moz-image-region", "-moz-margin-end", "-moz-margin-start", "-moz-orient", "-moz-osx-font-smoothing", "-moz-outline-radius", "-moz-outline-radius-bottomleft", "-moz-outline-radius-bottomright", "-moz-outline-radius-topleft", "-moz-outline-radius-topright", "-moz-padding-end", "-moz-padding-start", "-moz-perspective", "-moz-perspective-origin", "-moz-tab-size", "-moz-text-size-adjust", "-moz-transform", "-moz-transform-origin", "-moz-transform-style", "-moz-transition", "-moz-transition-delay", "-moz-transition-duration", "-moz-transition-property", "-moz-transition-timing-function", "-moz-user-focus", "-moz-user-input", "-moz-user-modify", "-moz-user-select", "-moz-window-dragging", "-webkit-align-content", "-webkit-align-items", "-webkit-align-self", "-webkit-animation", "-webkit-animation-delay", "-webkit-animation-direction", "-webkit-animation-duration", "-webkit-animation-fill-mode", "-webkit-animation-iteration-count", "-webkit-animation-name", "-webkit-animation-play-state", "-webkit-animation-timing-function", "-webkit-appearance", "-webkit-backface-visibility", "-webkit-background-clip", "-webkit-background-origin", "-webkit-background-size", "-webkit-border-bottom-left-radius", "-webkit-border-bottom-right-radius", "-webkit-border-image", "-webkit-border-radius", "-webkit-border-top-left-radius", "-webkit-border-top-right-radius", "-webkit-box-align", "-webkit-box-direction", "-webkit-box-flex", "-webkit-box-ordinal-group", "-webkit-box-orient", "-webkit-box-pack", "-webkit-box-shadow", "-webkit-box-sizing", "-webkit-filter", "-webkit-flex", "-webkit-flex-basis", "-webkit-flex-direction", "-webkit-flex-flow", "-webkit-flex-grow", "-webkit-flex-shrink", "-webkit-flex-wrap", "-webkit-justify-content", "-webkit-line-clamp", "-webkit-mask", "-webkit-mask-clip", "-webkit-mask-composite", "-webkit-mask-image", "-webkit-mask-origin", "-webkit-mask-position", "-webkit-mask-position-x", "-webkit-mask-position-y", "-webkit-mask-repeat", "-webkit-mask-size", "-webkit-order", "-webkit-perspective", "-webkit-perspective-origin", "-webkit-text-fill-color", "-webkit-text-size-adjust", "-webkit-text-stroke", "-webkit-text-stroke-color", "-webkit-text-stroke-width", "-webkit-transform", "-webkit-transform-origin", "-webkit-transform-style", "-webkit-transition", "-webkit-transition-delay", "-webkit-transition-duration", "-webkit-transition-property", "-webkit-transition-timing-function", "-webkit-user-select", "0", "1", "10", "11", "12", "13", "14", "15", "16", "17", "18", "19", "2", "20", "3", "4", "5", "6", "7", "8", "9", "@@iterator", "ABORT_ERR", "ACTIVE", "ACTIVE_ATTRIBUTES", "ACTIVE_TEXTURE", "ACTIVE_UNIFORMS", "ACTIVE_UNIFORM_BLOCKS", "ADDITION", "ALIASED_LINE_WIDTH_RANGE", "ALIASED_POINT_SIZE_RANGE", "ALL", "ALLOW_KEYBOARD_INPUT", "ALLPASS", "ALPHA", "ALPHA_BITS", "ALREADY_SIGNALED", "ALT_MASK", "ALWAYS", "ANY_SAMPLES_PASSED", "ANY_SAMPLES_PASSED_CONSERVATIVE", "ANY_TYPE", "ANY_UNORDERED_NODE_TYPE", "ARRAY_BUFFER", "ARRAY_BUFFER_BINDING", "ATTACHED_SHADERS", "ATTRIBUTE_NODE", "AT_TARGET", "AbortController", "AbortSignal", "AbsoluteOrientationSensor", "AbstractRange", "Accelerometer", "AddSearchProvider", "AggregateError", "AnalyserNode", "Animation", "AnimationEffect", "AnimationEvent", "AnimationPlaybackEvent", "AnimationTimeline", "AnonXMLHttpRequest", "Any", "ApplicationCache", "ApplicationCacheErrorEvent", "Array", "ArrayBuffer", "ArrayType", "Atomics", "Attr", "Audio", "AudioBuffer", "AudioBufferSourceNode", "AudioContext", "AudioDestinationNode", "AudioListener", "AudioNode", "AudioParam", "AudioParamMap", "AudioProcessingEvent", "AudioScheduledSourceNode", "AudioStreamTrack", "AudioWorklet", "AudioWorkletNode", "AuthenticatorAssertionResponse", "AuthenticatorAttestationResponse", "AuthenticatorResponse", "AutocompleteErrorEvent", "BACK", "BAD_BOUNDARYPOINTS_ERR", "BAD_REQUEST", "BANDPASS", "BLEND", "BLEND_COLOR", "BLEND_DST_ALPHA", "BLEND_DST_RGB", "BLEND_EQUATION", "BLEND_EQUATION_ALPHA", "BLEND_EQUATION_RGB", "BLEND_SRC_ALPHA", "BLEND_SRC_RGB", "BLUE", "BLUE_BITS", "BLUR", "BOOL", "BOOLEAN_TYPE", "BOOL_VEC2", "BOOL_VEC3", "BOOL_VEC4", "BOTH", "BROWSER_DEFAULT_WEBGL", "BUBBLING_PHASE", "BUFFER_SIZE", "BUFFER_USAGE", "BYTE", "BYTES_PER_ELEMENT", "BackgroundFetchManager", "BackgroundFetchRecord", "BackgroundFetchRegistration", "BarProp", "BarcodeDetector", "BaseAudioContext", "BaseHref", "BatteryManager", "BeforeInstallPromptEvent", "BeforeLoadEvent", "BeforeUnloadEvent", "BigInt", "BigInt64Array", "BigUint64Array", "BiquadFilterNode", "Blob", "BlobEvent", "Bluetooth", "BluetoothCharacteristicProperties", "BluetoothDevice", "BluetoothRemoteGATTCharacteristic", "BluetoothRemoteGATTDescriptor", "BluetoothRemoteGATTServer", "BluetoothRemoteGATTService", "BluetoothUUID", "Boolean", "BroadcastChannel", "ByteLengthQueuingStrategy", "CAPTURING_PHASE", "CCW", "CDATASection", "CDATA_SECTION_NODE", "CHANGE", "CHARSET_RULE", "CHECKING", "CLAMP_TO_EDGE", "CLICK", "CLOSED", "CLOSING", "COLOR", "COLOR_ATTACHMENT0", "COLOR_ATTACHMENT1", "COLOR_ATTACHMENT10", "COLOR_ATTACHMENT11", "COLOR_ATTACHMENT12", "COLOR_ATTACHMENT13", "COLOR_ATTACHMENT14", "COLOR_ATTACHMENT15", "COLOR_ATTACHMENT2", "COLOR_ATTACHMENT3", "COLOR_ATTACHMENT4", "COLOR_ATTACHMENT5", "COLOR_ATTACHMENT6", "COLOR_ATTACHMENT7", "COLOR_ATTACHMENT8", "COLOR_ATTACHMENT9", "COLOR_BUFFER_BIT", "COLOR_CLEAR_VALUE", "COLOR_WRITEMASK", "COMMENT_NODE", "COMPARE_REF_TO_TEXTURE", "COMPILE_STATUS", "COMPLETION_STATUS_KHR", "COMPRESSED_RGBA_S3TC_DXT1_EXT", "COMPRESSED_RGBA_S3TC_DXT3_EXT", "COMPRESSED_RGBA_S3TC_DXT5_EXT", "COMPRESSED_RGB_S3TC_DXT1_EXT", "COMPRESSED_TEXTURE_FORMATS", "COMPUTE", "CONDITION_SATISFIED", "CONFIGURATION_UNSUPPORTED", "CONNECTING", "CONSTANT_ALPHA", "CONSTANT_COLOR", "CONSTRAINT_ERR", "CONTEXT_LOST_WEBGL", "CONTROL_MASK", "COPY_DST", "COPY_READ_BUFFER", "COPY_READ_BUFFER_BINDING", "COPY_SRC", "COPY_WRITE_BUFFER", "COPY_WRITE_BUFFER_BINDING", "COUNTER_STYLE_RULE", "CSS", "CSS2Properties", "CSSAnimation", "CSSCharsetRule", "CSSConditionRule", "CSSCounterStyleRule", "CSSFontFaceRule", "CSSFontFeatureValuesRule", "CSSGroupingRule", "CSSImageValue", "CSSImportRule", "CSSKeyframeRule", "CSSKeyframesRule", "CSSKeywordValue", "CSSMathInvert", "CSSMathMax", "CSSMathMin", "CSSMathNegate", "CSSMathProduct", "CSSMathSum", "CSSMathValue", "CSSMatrixComponent", "CSSMediaRule", "CSSMozDocumentRule", "CSSNameSpaceRule", "CSSNamespaceRule", "CSSNumericArray", "CSSNumericValue", "CSSPageRule", "CSSPerspective", "CSSPositionValue", "CSSPrimitiveValue", "CSSRotate", "CSSRule", "CSSRuleList", "CSSScale", "CSSSkew", "CSSSkewX", "CSSSkewY", "CSSStyleDeclaration", "CSSStyleRule", "CSSStyleSheet", "CSSStyleValue", "CSSSupportsRule", "CSSTransformComponent", "CSSTransformValue", "CSSTransition", "CSSTranslate", "CSSUnitValue", "CSSUnknownRule", "CSSUnparsedValue", "CSSValue", "CSSValueList", "CSSVariableReferenceValue", "CSSVariablesDeclaration", "CSSVariablesRule", "CSSViewportRule", "CSS_ATTR", "CSS_CM", "CSS_COUNTER", "CSS_CUSTOM", "CSS_DEG", "CSS_DIMENSION", "CSS_EMS", "CSS_EXS", "CSS_FILTER_BLUR", "CSS_FILTER_BRIGHTNESS", "CSS_FILTER_CONTRAST", "CSS_FILTER_CUSTOM", "CSS_FILTER_DROP_SHADOW", "CSS_FILTER_GRAYSCALE", "CSS_FILTER_HUE_ROTATE", "CSS_FILTER_INVERT", "CSS_FILTER_OPACITY", "CSS_FILTER_REFERENCE", "CSS_FILTER_SATURATE", "CSS_FILTER_SEPIA", "CSS_GRAD", "CSS_HZ", "CSS_IDENT", "CSS_IN", "CSS_INHERIT", "CSS_KHZ", "CSS_MATRIX", "CSS_MATRIX3D", "CSS_MM", "CSS_MS", "CSS_NUMBER", "CSS_PC", "CSS_PERCENTAGE", "CSS_PERSPECTIVE", "CSS_PRIMITIVE_VALUE", "CSS_PT", "CSS_PX", "CSS_RAD", "CSS_RECT", "CSS_RGBCOLOR", "CSS_ROTATE", "CSS_ROTATE3D", "CSS_ROTATEX", "CSS_ROTATEY", "CSS_ROTATEZ", "CSS_S", "CSS_SCALE", "CSS_SCALE3D", "CSS_SCALEX", "CSS_SCALEY", "CSS_SCALEZ", "CSS_SKEW", "CSS_SKEWX", "CSS_SKEWY", "CSS_STRING", "CSS_TRANSLATE", "CSS_TRANSLATE3D", "CSS_TRANSLATEX", "CSS_TRANSLATEY", "CSS_TRANSLATEZ", "CSS_UNKNOWN", "CSS_URI", "CSS_VALUE_LIST", "CSS_VH", "CSS_VMAX", "CSS_VMIN", "CSS_VW", "CULL_FACE", "CULL_FACE_MODE", "CURRENT_PROGRAM", "CURRENT_QUERY", "CURRENT_VERTEX_ATTRIB", "CUSTOM", "CW", "Cache", "CacheStorage", "CanvasCaptureMediaStream", "CanvasCaptureMediaStreamTrack", "CanvasGradient", "CanvasPattern", "CanvasRenderingContext2D", "CaretPosition", "ChannelMergerNode", "ChannelSplitterNode", "CharacterData", "ClientRect", "ClientRectList", "Clipboard", "ClipboardEvent", "ClipboardItem", "CloseEvent", "Collator", "CommandEvent", "Comment", "CompileError", "CompositionEvent", "CompressionStream", "Console", "ConstantSourceNode", "Controllers", "ConvolverNode", "CountQueuingStrategy", "Counter", "Credential", "CredentialsContainer", "Crypto", "CryptoKey", "CustomElementRegistry", "CustomEvent", "DATABASE_ERR", "DATA_CLONE_ERR", "DATA_ERR", "DBLCLICK", "DECR", "DECR_WRAP", "DELETE_STATUS", "DEPTH", "DEPTH24_STENCIL8", "DEPTH32F_STENCIL8", "DEPTH_ATTACHMENT", "DEPTH_BITS", "DEPTH_BUFFER_BIT", "DEPTH_CLEAR_VALUE", "DEPTH_COMPONENT", "DEPTH_COMPONENT16", "DEPTH_COMPONENT24", "DEPTH_COMPONENT32F", "DEPTH_FUNC", "DEPTH_RANGE", "DEPTH_STENCIL", "DEPTH_STENCIL_ATTACHMENT", "DEPTH_TEST", "DEPTH_WRITEMASK", "DEVICE_INELIGIBLE", "DIRECTION_DOWN", "DIRECTION_LEFT", "DIRECTION_RIGHT", "DIRECTION_UP", "DISABLED", "DISPATCH_REQUEST_ERR", "DITHER", "DOCUMENT_FRAGMENT_NODE", "DOCUMENT_NODE", "DOCUMENT_POSITION_CONTAINED_BY", "DOCUMENT_POSITION_CONTAINS", "DOCUMENT_POSITION_DISCONNECTED", "DOCUMENT_POSITION_FOLLOWING", "DOCUMENT_POSITION_IMPLEMENTATION_SPECIFIC", "DOCUMENT_POSITION_PRECEDING", "DOCUMENT_TYPE_NODE", "DOMCursor", "DOMError", "DOMException", "DOMImplementation", "DOMImplementationLS", "DOMMatrix", "DOMMatrixReadOnly", "DOMParser", "DOMPoint", "DOMPointReadOnly", "DOMQuad", "DOMRect", "DOMRectList", "DOMRectReadOnly", "DOMRequest", "DOMSTRING_SIZE_ERR", "DOMSettableTokenList", "DOMStringList", "DOMStringMap", "DOMTokenList", "DOMTransactionEvent", "DOM_DELTA_LINE", "DOM_DELTA_PAGE", "DOM_DELTA_PIXEL", "DOM_INPUT_METHOD_DROP", "DOM_INPUT_METHOD_HANDWRITING", "DOM_INPUT_METHOD_IME", "DOM_INPUT_METHOD_KEYBOARD", "DOM_INPUT_METHOD_MULTIMODAL", "DOM_INPUT_METHOD_OPTION", "DOM_INPUT_METHOD_PASTE", "DOM_INPUT_METHOD_SCRIPT", "DOM_INPUT_METHOD_UNKNOWN", "DOM_INPUT_METHOD_VOICE", "DOM_KEY_LOCATION_JOYSTICK", "DOM_KEY_LOCATION_LEFT", "DOM_KEY_LOCATION_MOBILE", "DOM_KEY_LOCATION_NUMPAD", "DOM_KEY_LOCATION_RIGHT", "DOM_KEY_LOCATION_STANDARD", "DOM_VK_0", "DOM_VK_1", "DOM_VK_2", "DOM_VK_3", "DOM_VK_4", "DOM_VK_5", "DOM_VK_6", "DOM_VK_7", "DOM_VK_8", "DOM_VK_9", "DOM_VK_A", "DOM_VK_ACCEPT", "DOM_VK_ADD", "DOM_VK_ALT", "DOM_VK_ALTGR", "DOM_VK_AMPERSAND", "DOM_VK_ASTERISK", "DOM_VK_AT", "DOM_VK_ATTN", "DOM_VK_B", "DOM_VK_BACKSPACE", "DOM_VK_BACK_QUOTE", "DOM_VK_BACK_SLASH", "DOM_VK_BACK_SPACE", "DOM_VK_C", "DOM_VK_CANCEL", "DOM_VK_CAPS_LOCK", "DOM_VK_CIRCUMFLEX", "DOM_VK_CLEAR", "DOM_VK_CLOSE_BRACKET", "DOM_VK_CLOSE_CURLY_BRACKET", "DOM_VK_CLOSE_PAREN", "DOM_VK_COLON", "DOM_VK_COMMA", "DOM_VK_CONTEXT_MENU", "DOM_VK_CONTROL", "DOM_VK_CONVERT", "DOM_VK_CRSEL", "DOM_VK_CTRL", "DOM_VK_D", "DOM_VK_DECIMAL", "DOM_VK_DELETE", "DOM_VK_DIVIDE", "DOM_VK_DOLLAR", "DOM_VK_DOUBLE_QUOTE", "DOM_VK_DOWN", "DOM_VK_E", "DOM_VK_EISU", "DOM_VK_END", "DOM_VK_ENTER", "DOM_VK_EQUALS", "DOM_VK_EREOF", "DOM_VK_ESCAPE", "DOM_VK_EXCLAMATION", "DOM_VK_EXECUTE", "DOM_VK_EXSEL", "DOM_VK_F", "DOM_VK_F1", "DOM_VK_F10", "DOM_VK_F11", "DOM_VK_F12", "DOM_VK_F13", "DOM_VK_F14", "DOM_VK_F15", "DOM_VK_F16", "DOM_VK_F17", "DOM_VK_F18", "DOM_VK_F19", "DOM_VK_F2", "DOM_VK_F20", "DOM_VK_F21", "DOM_VK_F22", "DOM_VK_F23", "DOM_VK_F24", "DOM_VK_F25", "DOM_VK_F26", "DOM_VK_F27", "DOM_VK_F28", "DOM_VK_F29", "DOM_VK_F3", "DOM_VK_F30", "DOM_VK_F31", "DOM_VK_F32", "DOM_VK_F33", "DOM_VK_F34", "DOM_VK_F35", "DOM_VK_F36", "DOM_VK_F4", "DOM_VK_F5", "DOM_VK_F6", "DOM_VK_F7", "DOM_VK_F8", "DOM_VK_F9", "DOM_VK_FINAL", "DOM_VK_FRONT", "DOM_VK_G", "DOM_VK_GREATER_THAN", "DOM_VK_H", "DOM_VK_HANGUL", "DOM_VK_HANJA", "DOM_VK_HASH", "DOM_VK_HELP", "DOM_VK_HK_TOGGLE", "DOM_VK_HOME", "DOM_VK_HYPHEN_MINUS", "DOM_VK_I", "DOM_VK_INSERT", "DOM_VK_J", "DOM_VK_JUNJA", "DOM_VK_K", "DOM_VK_KANA", "DOM_VK_KANJI", "DOM_VK_L", "DOM_VK_LEFT", "DOM_VK_LEFT_TAB", "DOM_VK_LESS_THAN", "DOM_VK_M", "DOM_VK_META", "DOM_VK_MODECHANGE", "DOM_VK_MULTIPLY", "DOM_VK_N", "DOM_VK_NONCONVERT", "DOM_VK_NUMPAD0", "DOM_VK_NUMPAD1", "DOM_VK_NUMPAD2", "DOM_VK_NUMPAD3", "DOM_VK_NUMPAD4", "DOM_VK_NUMPAD5", "DOM_VK_NUMPAD6", "DOM_VK_NUMPAD7", "DOM_VK_NUMPAD8", "DOM_VK_NUMPAD9", "DOM_VK_NUM_LOCK", "DOM_VK_O", "DOM_VK_OEM_1", "DOM_VK_OEM_102", "DOM_VK_OEM_2", "DOM_VK_OEM_3", "DOM_VK_OEM_4", "DOM_VK_OEM_5", "DOM_VK_OEM_6", "DOM_VK_OEM_7", "DOM_VK_OEM_8", "DOM_VK_OEM_COMMA", "DOM_VK_OEM_MINUS", "DOM_VK_OEM_PERIOD", "DOM_VK_OEM_PLUS", "DOM_VK_OPEN_BRACKET", "DOM_VK_OPEN_CURLY_BRACKET", "DOM_VK_OPEN_PAREN", "DOM_VK_P", "DOM_VK_PA1", "DOM_VK_PAGEDOWN", "DOM_VK_PAGEUP", "DOM_VK_PAGE_DOWN", "DOM_VK_PAGE_UP", "DOM_VK_PAUSE", "DOM_VK_PERCENT", "DOM_VK_PERIOD", "DOM_VK_PIPE", "DOM_VK_PLAY", "DOM_VK_PLUS", "DOM_VK_PRINT", "DOM_VK_PRINTSCREEN", "DOM_VK_PROCESSKEY", "DOM_VK_PROPERITES", "DOM_VK_Q", "DOM_VK_QUESTION_MARK", "DOM_VK_QUOTE", "DOM_VK_R", "DOM_VK_REDO", "DOM_VK_RETURN", "DOM_VK_RIGHT", "DOM_VK_S", "DOM_VK_SCROLL_LOCK", "DOM_VK_SELECT", "DOM_VK_SEMICOLON", "DOM_VK_SEPARATOR", "DOM_VK_SHIFT", "DOM_VK_SLASH", "DOM_VK_SLEEP", "DOM_VK_SPACE", "DOM_VK_SUBTRACT", "DOM_VK_T", "DOM_VK_TAB", "DOM_VK_TILDE", "DOM_VK_U", "DOM_VK_UNDERSCORE", "DOM_VK_UNDO", "DOM_VK_UNICODE", "DOM_VK_UP", "DOM_VK_V", "DOM_VK_VOLUME_DOWN", "DOM_VK_VOLUME_MUTE", "DOM_VK_VOLUME_UP", "DOM_VK_W", "DOM_VK_WIN", "DOM_VK_WINDOW", "DOM_VK_WIN_ICO_00", "DOM_VK_WIN_ICO_CLEAR", "DOM_VK_WIN_ICO_HELP", "DOM_VK_WIN_OEM_ATTN", "DOM_VK_WIN_OEM_AUTO", "DOM_VK_WIN_OEM_BACKTAB", "DOM_VK_WIN_OEM_CLEAR", "DOM_VK_WIN_OEM_COPY", "DOM_VK_WIN_OEM_CUSEL", "DOM_VK_WIN_OEM_ENLW", "DOM_VK_WIN_OEM_FINISH", "DOM_VK_WIN_OEM_FJ_JISHO", "DOM_VK_WIN_OEM_FJ_LOYA", "DOM_VK_WIN_OEM_FJ_MASSHOU", "DOM_VK_WIN_OEM_FJ_ROYA", "DOM_VK_WIN_OEM_FJ_TOUROKU", "DOM_VK_WIN_OEM_JUMP", "DOM_VK_WIN_OEM_PA1", "DOM_VK_WIN_OEM_PA2", "DOM_VK_WIN_OEM_PA3", "DOM_VK_WIN_OEM_RESET", "DOM_VK_WIN_OEM_WSCTRL", "DOM_VK_X", "DOM_VK_XF86XK_ADD_FAVORITE", "DOM_VK_XF86XK_APPLICATION_LEFT", "DOM_VK_XF86XK_APPLICATION_RIGHT", "DOM_VK_XF86XK_AUDIO_CYCLE_TRACK", "DOM_VK_XF86XK_AUDIO_FORWARD", "DOM_VK_XF86XK_AUDIO_LOWER_VOLUME", "DOM_VK_XF86XK_AUDIO_MEDIA", "DOM_VK_XF86XK_AUDIO_MUTE", "DOM_VK_XF86XK_AUDIO_NEXT", "DOM_VK_XF86XK_AUDIO_PAUSE", "DOM_VK_XF86XK_AUDIO_PLAY", "DOM_VK_XF86XK_AUDIO_PREV", "DOM_VK_XF86XK_AUDIO_RAISE_VOLUME", "DOM_VK_XF86XK_AUDIO_RANDOM_PLAY", "DOM_VK_XF86XK_AUDIO_RECORD", "DOM_VK_XF86XK_AUDIO_REPEAT", "DOM_VK_XF86XK_AUDIO_REWIND", "DOM_VK_XF86XK_AUDIO_STOP", "DOM_VK_XF86XK_AWAY", "DOM_VK_XF86XK_BACK", "DOM_VK_XF86XK_BACK_FORWARD", "DOM_VK_XF86XK_BATTERY", "DOM_VK_XF86XK_BLUE", "DOM_VK_XF86XK_BLUETOOTH", "DOM_VK_XF86XK_BOOK", "DOM_VK_XF86XK_BRIGHTNESS_ADJUST", "DOM_VK_XF86XK_CALCULATOR", "DOM_VK_XF86XK_CALENDAR", "DOM_VK_XF86XK_CD", "DOM_VK_XF86XK_CLOSE", "DOM_VK_XF86XK_COMMUNITY", "DOM_VK_XF86XK_CONTRAST_ADJUST", "DOM_VK_XF86XK_COPY", "DOM_VK_XF86XK_CUT", "DOM_VK_XF86XK_CYCLE_ANGLE", "DOM_VK_XF86XK_DISPLAY", "DOM_VK_XF86XK_DOCUMENTS", "DOM_VK_XF86XK_DOS", "DOM_VK_XF86XK_EJECT", "DOM_VK_XF86XK_EXCEL", "DOM_VK_XF86XK_EXPLORER", "DOM_VK_XF86XK_FAVORITES", "DOM_VK_XF86XK_FINANCE", "DOM_VK_XF86XK_FORWARD", "DOM_VK_XF86XK_FRAME_BACK", "DOM_VK_XF86XK_FRAME_FORWARD", "DOM_VK_XF86XK_GAME", "DOM_VK_XF86XK_GO", "DOM_VK_XF86XK_GREEN", "DOM_VK_XF86XK_HIBERNATE", "DOM_VK_XF86XK_HISTORY", "DOM_VK_XF86XK_HOME_PAGE", "DOM_VK_XF86XK_HOT_LINKS", "DOM_VK_XF86XK_I_TOUCH", "DOM_VK_XF86XK_KBD_BRIGHTNESS_DOWN", "DOM_VK_XF86XK_KBD_BRIGHTNESS_UP", "DOM_VK_XF86XK_KBD_LIGHT_ON_OFF", "DOM_VK_XF86XK_LAUNCH0", "DOM_VK_XF86XK_LAUNCH1", "DOM_VK_XF86XK_LAUNCH2", "DOM_VK_XF86XK_LAUNCH3", "DOM_VK_XF86XK_LAUNCH4", "DOM_VK_XF86XK_LAUNCH5", "DOM_VK_XF86XK_LAUNCH6", "DOM_VK_XF86XK_LAUNCH7", "DOM_VK_XF86XK_LAUNCH8", "DOM_VK_XF86XK_LAUNCH9", "DOM_VK_XF86XK_LAUNCH_A", "DOM_VK_XF86XK_LAUNCH_B", "DOM_VK_XF86XK_LAUNCH_C", "DOM_VK_XF86XK_LAUNCH_D", "DOM_VK_XF86XK_LAUNCH_E", "DOM_VK_XF86XK_LAUNCH_F", "DOM_VK_XF86XK_LIGHT_BULB", "DOM_VK_XF86XK_LOG_OFF", "DOM_VK_XF86XK_MAIL", "DOM_VK_XF86XK_MAIL_FORWARD", "DOM_VK_XF86XK_MARKET", "DOM_VK_XF86XK_MEETING", "DOM_VK_XF86XK_MEMO", "DOM_VK_XF86XK_MENU_KB", "DOM_VK_XF86XK_MENU_PB", "DOM_VK_XF86XK_MESSENGER", "DOM_VK_XF86XK_MON_BRIGHTNESS_DOWN", "DOM_VK_XF86XK_MON_BRIGHTNESS_UP", "DOM_VK_XF86XK_MUSIC", "DOM_VK_XF86XK_MY_COMPUTER", "DOM_VK_XF86XK_MY_SITES", "DOM_VK_XF86XK_NEW", "DOM_VK_XF86XK_NEWS", "DOM_VK_XF86XK_OFFICE_HOME", "DOM_VK_XF86XK_OPEN", "DOM_VK_XF86XK_OPEN_URL", "DOM_VK_XF86XK_OPTION", "DOM_VK_XF86XK_PASTE", "DOM_VK_XF86XK_PHONE", "DOM_VK_XF86XK_PICTURES", "DOM_VK_XF86XK_POWER_DOWN", "DOM_VK_XF86XK_POWER_OFF", "DOM_VK_XF86XK_RED", "DOM_VK_XF86XK_REFRESH", "DOM_VK_XF86XK_RELOAD", "DOM_VK_XF86XK_REPLY", "DOM_VK_XF86XK_ROCKER_DOWN", "DOM_VK_XF86XK_ROCKER_ENTER", "DOM_VK_XF86XK_ROCKER_UP", "DOM_VK_XF86XK_ROTATE_WINDOWS", "DOM_VK_XF86XK_ROTATION_KB", "DOM_VK_XF86XK_ROTATION_PB", "DOM_VK_XF86XK_SAVE", "DOM_VK_XF86XK_SCREEN_SAVER", "DOM_VK_XF86XK_SCROLL_CLICK", "DOM_VK_XF86XK_SCROLL_DOWN", "DOM_VK_XF86XK_SCROLL_UP", "DOM_VK_XF86XK_SEARCH", "DOM_VK_XF86XK_SEND", "DOM_VK_XF86XK_SHOP", "DOM_VK_XF86XK_SPELL", "DOM_VK_XF86XK_SPLIT_SCREEN", "DOM_VK_XF86XK_STANDBY", "DOM_VK_XF86XK_START", "DOM_VK_XF86XK_STOP", "DOM_VK_XF86XK_SUBTITLE", "DOM_VK_XF86XK_SUPPORT", "DOM_VK_XF86XK_SUSPEND", "DOM_VK_XF86XK_TASK_PANE", "DOM_VK_XF86XK_TERMINAL", "DOM_VK_XF86XK_TIME", "DOM_VK_XF86XK_TOOLS", "DOM_VK_XF86XK_TOP_MENU", "DOM_VK_XF86XK_TO_DO_LIST", "DOM_VK_XF86XK_TRAVEL", "DOM_VK_XF86XK_USER1KB", "DOM_VK_XF86XK_USER2KB", "DOM_VK_XF86XK_USER_PB", "DOM_VK_XF86XK_UWB", "DOM_VK_XF86XK_VENDOR_HOME", "DOM_VK_XF86XK_VIDEO", "DOM_VK_XF86XK_VIEW", "DOM_VK_XF86XK_WAKE_UP", "DOM_VK_XF86XK_WEB_CAM", "DOM_VK_XF86XK_WHEEL_BUTTON", "DOM_VK_XF86XK_WLAN", "DOM_VK_XF86XK_WORD", "DOM_VK_XF86XK_WWW", "DOM_VK_XF86XK_XFER", "DOM_VK_XF86XK_YELLOW", "DOM_VK_XF86XK_ZOOM_IN", "DOM_VK_XF86XK_ZOOM_OUT", "DOM_VK_Y", "DOM_VK_Z", "DOM_VK_ZOOM", "DONE", "DONT_CARE", "DOWNLOADING", "DRAGDROP", "DRAW_BUFFER0", "DRAW_BUFFER1", "DRAW_BUFFER10", "DRAW_BUFFER11", "DRAW_BUFFER12", "DRAW_BUFFER13", "DRAW_BUFFER14", "DRAW_BUFFER15", "DRAW_BUFFER2", "DRAW_BUFFER3", "DRAW_BUFFER4", "DRAW_BUFFER5", "DRAW_BUFFER6", "DRAW_BUFFER7", "DRAW_BUFFER8", "DRAW_BUFFER9", "DRAW_FRAMEBUFFER", "DRAW_FRAMEBUFFER_BINDING", "DST_ALPHA", "DST_COLOR", "DYNAMIC_COPY", "DYNAMIC_DRAW", "DYNAMIC_READ", "DataChannel", "DataTransfer", "DataTransferItem", "DataTransferItemList", "DataView", "Date", "DateTimeFormat", "DecompressionStream", "DelayNode", "DeprecationReportBody", "DesktopNotification", "DesktopNotificationCenter", "DeviceLightEvent", "DeviceMotionEvent", "DeviceMotionEventAcceleration", "DeviceMotionEventRotationRate", "DeviceOrientationEvent", "DeviceProximityEvent", "DeviceStorage", "DeviceStorageChangeEvent", "Directory", "DisplayNames", "Document", "DocumentFragment", "DocumentTimeline", "DocumentType", "DragEvent", "DynamicsCompressorNode", "E", "ELEMENT_ARRAY_BUFFER", "ELEMENT_ARRAY_BUFFER_BINDING", "ELEMENT_NODE", "EMPTY", "ENCODING_ERR", "ENDED", "END_TO_END", "END_TO_START", "ENTITY_NODE", "ENTITY_REFERENCE_NODE", "EPSILON", "EQUAL", "EQUALPOWER", "ERROR", "EXPONENTIAL_DISTANCE", "Element", "ElementInternals", "ElementQuery", "EnterPictureInPictureEvent", "Entity", "EntityReference", "Error", "ErrorEvent", "EvalError", "Event", "EventException", "EventSource", "EventTarget", "External", "FASTEST", "FIDOSDK", "FILTER_ACCEPT", "FILTER_INTERRUPT", "FILTER_REJECT", "FILTER_SKIP", "FINISHED_STATE", "FIRST_ORDERED_NODE_TYPE", "FLOAT", "FLOAT_32_UNSIGNED_INT_24_8_REV", "FLOAT_MAT2", "FLOAT_MAT2x3", "FLOAT_MAT2x4", "FLOAT_MAT3", "FLOAT_MAT3x2", "FLOAT_MAT3x4", "FLOAT_MAT4", "FLOAT_MAT4x2", "FLOAT_MAT4x3", "FLOAT_VEC2", "FLOAT_VEC3", "FLOAT_VEC4", "FOCUS", "FONT_FACE_RULE", "FONT_FEATURE_VALUES_RULE", "FRAGMENT", "FRAGMENT_SHADER", "FRAGMENT_SHADER_DERIVATIVE_HINT", "FRAGMENT_SHADER_DERIVATIVE_HINT_OES", "FRAMEBUFFER", "FRAMEBUFFER_ATTACHMENT_ALPHA_SIZE", "FRAMEBUFFER_ATTACHMENT_BLUE_SIZE", "FRAMEBUFFER_ATTACHMENT_COLOR_ENCODING", "FRAMEBUFFER_ATTACHMENT_COMPONENT_TYPE", "FRAMEBUFFER_ATTACHMENT_DEPTH_SIZE", "FRAMEBUFFER_ATTACHMENT_GREEN_SIZE", "FRAMEBUFFER_ATTACHMENT_OBJECT_NAME", "FRAMEBUFFER_ATTACHMENT_OBJECT_TYPE", "FRAMEBUFFER_ATTACHMENT_RED_SIZE", "FRAMEBUFFER_ATTACHMENT_STENCIL_SIZE", "FRAMEBUFFER_ATTACHMENT_TEXTURE_CUBE_MAP_FACE", "FRAMEBUFFER_ATTACHMENT_TEXTURE_LAYER", "FRAMEBUFFER_ATTACHMENT_TEXTURE_LEVEL", "FRAMEBUFFER_BINDING", "FRAMEBUFFER_COMPLETE", "FRAMEBUFFER_DEFAULT", "FRAMEBUFFER_INCOMPLETE_ATTACHMENT", "FRAMEBUFFER_INCOMPLETE_DIMENSIONS", "FRAMEBUFFER_INCOMPLETE_MISSING_ATTACHMENT", "FRAMEBUFFER_INCOMPLETE_MULTISAMPLE", "FRAMEBUFFER_UNSUPPORTED", "FRONT", "FRONT_AND_BACK", "FRONT_FACE", "FUNC_ADD", "FUNC_REVERSE_SUBTRACT", "FUNC_SUBTRACT", "FeaturePolicy", "FeaturePolicyViolationReportBody", "FederatedCredential", "Feed", "FeedEntry", "File", "FileError", "FileList", "FileReader", "FileSystem", "FileSystemDirectoryEntry", "FileSystemDirectoryReader", "FileSystemEntry", "FileSystemFileEntry", "FinalizationRegistry", "FindInPage", "Float32Array", "Float64Array", "FocusEvent", "FontFace", "FontFaceSet", "FontFaceSetLoadEvent", "FormData", "FormDataEvent", "FragmentDirective", "Function", "GENERATE_MIPMAP_HINT", "GEQUAL", "GREATER", "GREEN", "GREEN_BITS", "GainNode", "Gamepad", "GamepadAxisMoveEvent", "GamepadButton", "GamepadButtonEvent", "GamepadEvent", "GamepadHapticActuator", "GamepadPose", "Geolocation", "GeolocationCoordinates", "GeolocationPosition", "GeolocationPositionError", "GestureEvent", "Global", "Gyroscope", "HALF_FLOAT", "HAVE_CURRENT_DATA", "HAVE_ENOUGH_DATA", "HAVE_FUTURE_DATA", "HAVE_METADATA", "HAVE_NOTHING", "HEADERS_RECEIVED", "HIDDEN", "HIERARCHY_REQUEST_ERR", "HIGHPASS", "HIGHSHELF", "HIGH_FLOAT", "HIGH_INT", "HORIZONTAL", "HORIZONTAL_AXIS", "HRTF", "HTMLAllCollection", "HTMLAnchorElement", "HTMLAppletElement", "HTMLAreaElement", "HTMLAudioElement", "HTMLBRElement", "HTMLBaseElement", "HTMLBaseFontElement", "HTMLBlockquoteElement", "HTMLBodyElement", "HTMLButtonElement", "HTMLCanvasElement", "HTMLCollection", "HTMLCommandElement", "HTMLContentElement", "HTMLDListElement", "HTMLDataElement", "HTMLDataListElement", "HTMLDetailsElement", "HTMLDialogElement", "HTMLDirectoryElement", "HTMLDivElement", "HTMLDocument", "HTMLElement", "HTMLEmbedElement", "HTMLFieldSetElement", "HTMLFontElement", "HTMLFormControlsCollection", "HTMLFormElement", "HTMLFrameElement", "HTMLFrameSetElement", "HTMLHRElement", "HTMLHeadElement", "HTMLHeadingElement", "HTMLHtmlElement", "HTMLIFrameElement", "HTMLImageElement", "HTMLInputElement", "HTMLIsIndexElement", "HTMLKeygenElement", "HTMLLIElement", "HTMLLabelElement", "HTMLLegendElement", "HTMLLinkElement", "HTMLMapElement", "HTMLMarqueeElement", "HTMLMediaElement", "HTMLMenuElement", "HTMLMenuItemElement", "HTMLMetaElement", "HTMLMeterElement", "HTMLModElement", "HTMLOListElement", "HTMLObjectElement", "HTMLOptGroupElement", "HTMLOptionElement", "HTMLOptionsCollection", "HTMLOutputElement", "HTMLParagraphElement", "HTMLParamElement", "HTMLPictureElement", "HTMLPreElement", "HTMLProgressElement", "HTMLPropertiesCollection", "HTMLQuoteElement", "HTMLScriptElement", "HTMLSelectElement", "HTMLShadowElement", "HTMLSlotElement", "HTMLSourceElement", "HTMLSpanElement", "HTMLStyleElement", "HTMLTableCaptionElement", "HTMLTableCellElement", "HTMLTableColElement", "HTMLTableElement", "HTMLTableRowElement", "HTMLTableSectionElement", "HTMLTemplateElement", "HTMLTextAreaElement", "HTMLTimeElement", "HTMLTitleElement", "HTMLTrackElement", "HTMLUListElement", "HTMLUnknownElement", "HTMLVideoElement", "HashChangeEvent", "Headers", "History", "Hz", "ICE_CHECKING", "ICE_CLOSED", "ICE_COMPLETED", "ICE_CONNECTED", "ICE_FAILED", "ICE_GATHERING", "ICE_WAITING", "IDBCursor", "IDBCursorWithValue", "IDBDatabase", "IDBDatabaseException", "IDBFactory", "IDBFileHandle", "IDBFileRequest", "IDBIndex", "IDBKeyRange", "IDBMutableFile", "IDBObjectStore", "IDBOpenDBRequest", "IDBRequest", "IDBTransaction", "IDBVersionChangeEvent", "IDLE", "IIRFilterNode", "IMPLEMENTATION_COLOR_READ_FORMAT", "IMPLEMENTATION_COLOR_READ_TYPE", "IMPORT_RULE", "INCR", "INCR_WRAP", "INDEX", "INDEX_SIZE_ERR", "INDIRECT", "INT", "INTERLEAVED_ATTRIBS", "INT_2_10_10_10_REV", "INT_SAMPLER_2D", "INT_SAMPLER_2D_ARRAY", "INT_SAMPLER_3D", "INT_SAMPLER_CUBE", "INT_VEC2", "INT_VEC3", "INT_VEC4", "INUSE_ATTRIBUTE_ERR", "INVALID_ACCESS_ERR", "INVALID_CHARACTER_ERR", "INVALID_ENUM", "INVALID_EXPRESSION_ERR", "INVALID_FRAMEBUFFER_OPERATION", "INVALID_INDEX", "INVALID_MODIFICATION_ERR", "INVALID_NODE_TYPE_ERR", "INVALID_OPERATION", "INVALID_STATE_ERR", "INVALID_VALUE", "INVERSE_DISTANCE", "INVERT", "IceCandidate", "IdleDeadline", "Image", "ImageBitmap", "ImageBitmapRenderingContext", "ImageCapture", "ImageData", "Infinity", "InputDeviceCapabilities", "InputDeviceInfo", "InputEvent", "InputMethodContext", "InstallTrigger", "InstallTriggerImpl", "Instance", "Int16Array", "Int32Array", "Int8Array", "Intent", "InternalError", "IntersectionObserver", "IntersectionObserverEntry", "Intl", "IsSearchProviderInstalled", "Iterator", "JSON", "KEEP", "KEYDOWN", "KEYFRAMES_RULE", "KEYFRAME_RULE", "KEYPRESS", "KEYUP", "KeyEvent", "Keyboard", "KeyboardEvent", "KeyboardLayoutMap", "KeyframeEffect", "LENGTHADJUST_SPACING", "LENGTHADJUST_SPACINGANDGLYPHS", "LENGTHADJUST_UNKNOWN", "LEQUAL", "LESS", "LINEAR", "LINEAR_DISTANCE", "LINEAR_MIPMAP_LINEAR", "LINEAR_MIPMAP_NEAREST", "LINES", "LINE_LOOP", "LINE_STRIP", "LINE_WIDTH", "LINK_STATUS", "LIVE", "LN10", "LN2", "LOADED", "LOADING", "LOG10E", "LOG2E", "LOWPASS", "LOWSHELF", "LOW_FLOAT", "LOW_INT", "LSException", "LSParserFilter", "LUMINANCE", "LUMINANCE_ALPHA", "LargestContentfulPaint", "LayoutShift", "LayoutShiftAttribution", "LinearAccelerationSensor", "LinkError", "ListFormat", "LocalMediaStream", "Locale", "Location", "Lock", "LockManager", "MAP_READ", "MAP_WRITE", "MAX", "MAX_3D_TEXTURE_SIZE", "MAX_ARRAY_TEXTURE_LAYERS", "MAX_CLIENT_WAIT_TIMEOUT_WEBGL", "MAX_COLOR_ATTACHMENTS", "MAX_COMBINED_FRAGMENT_UNIFORM_COMPONENTS", "MAX_COMBINED_TEXTURE_IMAGE_UNITS", "MAX_COMBINED_UNIFORM_BLOCKS", "MAX_COMBINED_VERTEX_UNIFORM_COMPONENTS", "MAX_CUBE_MAP_TEXTURE_SIZE", "MAX_DRAW_BUFFERS", "MAX_ELEMENTS_INDICES", "MAX_ELEMENTS_VERTICES", "MAX_ELEMENT_INDEX", "MAX_FRAGMENT_INPUT_COMPONENTS", "MAX_FRAGMENT_UNIFORM_BLOCKS", "MAX_FRAGMENT_UNIFORM_COMPONENTS", "MAX_FRAGMENT_UNIFORM_VECTORS", "MAX_PROGRAM_TEXEL_OFFSET", "MAX_RENDERBUFFER_SIZE", "MAX_SAFE_INTEGER", "MAX_SAMPLES", "MAX_SERVER_WAIT_TIMEOUT", "MAX_TEXTURE_IMAGE_UNITS", "MAX_TEXTURE_LOD_BIAS", "MAX_TEXTURE_MAX_ANISOTROPY_EXT", "MAX_TEXTURE_SIZE", "MAX_TRANSFORM_FEEDBACK_INTERLEAVED_COMPONENTS", "MAX_TRANSFORM_FEEDBACK_SEPARATE_ATTRIBS", "MAX_TRANSFORM_FEEDBACK_SEPARATE_COMPONENTS", "MAX_UNIFORM_BLOCK_SIZE", "MAX_UNIFORM_BUFFER_BINDINGS", "MAX_VALUE", "MAX_VARYING_COMPONENTS", "MAX_VARYING_VECTORS", "MAX_VERTEX_ATTRIBS", "MAX_VERTEX_OUTPUT_COMPONENTS", "MAX_VERTEX_TEXTURE_IMAGE_UNITS", "MAX_VERTEX_UNIFORM_BLOCKS", "MAX_VERTEX_UNIFORM_COMPONENTS", "MAX_VERTEX_UNIFORM_VECTORS", "MAX_VIEWPORT_DIMS", "MEDIA_ERR_ABORTED", "MEDIA_ERR_DECODE", "MEDIA_ERR_ENCRYPTED", "MEDIA_ERR_NETWORK", "MEDIA_ERR_SRC_NOT_SUPPORTED", "MEDIA_KEYERR_CLIENT", "MEDIA_KEYERR_DOMAIN", "MEDIA_KEYERR_HARDWARECHANGE", "MEDIA_KEYERR_OUTPUT", "MEDIA_KEYERR_SERVICE", "MEDIA_KEYERR_UNKNOWN", "MEDIA_RULE", "MEDIUM_FLOAT", "MEDIUM_INT", "META_MASK", "MIDIAccess", "MIDIConnectionEvent", "MIDIInput", "MIDIInputMap", "MIDIMessageEvent", "MIDIOutput", "MIDIOutputMap", "MIDIPort", "MIN", "MIN_PROGRAM_TEXEL_OFFSET", "MIN_SAFE_INTEGER", "MIN_VALUE", "MIRRORED_REPEAT", "MODE_ASYNCHRONOUS", "MODE_SYNCHRONOUS", "MODIFICATION", "MOUSEDOWN", "MOUSEDRAG", "MOUSEMOVE", "MOUSEOUT", "MOUSEOVER", "MOUSEUP", "MOZ_KEYFRAMES_RULE", "MOZ_KEYFRAME_RULE", "MOZ_SOURCE_CURSOR", "MOZ_SOURCE_ERASER", "MOZ_SOURCE_KEYBOARD", "MOZ_SOURCE_MOUSE", "MOZ_SOURCE_PEN", "MOZ_SOURCE_TOUCH", "MOZ_SOURCE_UNKNOWN", "MSGESTURE_FLAG_BEGIN", "MSGESTURE_FLAG_CANCEL", "MSGESTURE_FLAG_END", "MSGESTURE_FLAG_INERTIA", "MSGESTURE_FLAG_NONE", "MSPOINTER_TYPE_MOUSE", "MSPOINTER_TYPE_PEN", "MSPOINTER_TYPE_TOUCH", "MS_ASYNC_CALLBACK_STATUS_ASSIGN_DELEGATE", "MS_ASYNC_CALLBACK_STATUS_CANCEL", "MS_ASYNC_CALLBACK_STATUS_CHOOSEANY", "MS_ASYNC_CALLBACK_STATUS_ERROR", "MS_ASYNC_CALLBACK_STATUS_JOIN", "MS_ASYNC_OP_STATUS_CANCELED", "MS_ASYNC_OP_STATUS_ERROR", "MS_ASYNC_OP_STATUS_SUCCESS", "MS_MANIPULATION_STATE_ACTIVE", "MS_MANIPULATION_STATE_CANCELLED", "MS_MANIPULATION_STATE_COMMITTED", "MS_MANIPULATION_STATE_DRAGGING", "MS_MANIPULATION_STATE_INERTIA", "MS_MANIPULATION_STATE_PRESELECT", "MS_MANIPULATION_STATE_SELECTING", "MS_MANIPULATION_STATE_STOPPED", "MS_MEDIA_ERR_ENCRYPTED", "MS_MEDIA_KEYERR_CLIENT", "MS_MEDIA_KEYERR_DOMAIN", "MS_MEDIA_KEYERR_HARDWARECHANGE", "MS_MEDIA_KEYERR_OUTPUT", "MS_MEDIA_KEYERR_SERVICE", "MS_MEDIA_KEYERR_UNKNOWN", "Map", "Math", "MathMLElement", "MediaCapabilities", "MediaCapabilitiesInfo", "MediaController", "MediaDeviceInfo", "MediaDevices", "MediaElementAudioSourceNode", "MediaEncryptedEvent", "MediaError", "MediaKeyError", "MediaKeyEvent", "MediaKeyMessageEvent", "MediaKeyNeededEvent", "MediaKeySession", "MediaKeyStatusMap", "MediaKeySystemAccess", "MediaKeys", "MediaList", "MediaMetadata", "MediaQueryList", "MediaQueryListEvent", "MediaRecorder", "MediaRecorderErrorEvent", "MediaSession", "MediaSettingsRange", "MediaSource", "MediaStream", "MediaStreamAudioDestinationNode", "MediaStreamAudioSourceNode", "MediaStreamEvent", "MediaStreamTrack", "MediaStreamTrackAudioSourceNode", "MediaStreamTrackEvent", "Memory", "MessageChannel", "MessageEvent", "MessagePort", "Methods", "MimeType", "MimeTypeArray", "Module", "MouseEvent", "MouseScrollEvent", "MozAnimation", "MozAnimationDelay", "MozAnimationDirection", "MozAnimationDuration", "MozAnimationFillMode", "MozAnimationIterationCount", "MozAnimationName", "MozAnimationPlayState", "MozAnimationTimingFunction", "MozAppearance", "MozBackfaceVisibility", "MozBinding", "MozBorderBottomColors", "MozBorderEnd", "MozBorderEndColor", "MozBorderEndStyle", "MozBorderEndWidth", "MozBorderImage", "MozBorderLeftColors", "MozBorderRightColors", "MozBorderStart", "MozBorderStartColor", "MozBorderStartStyle", "MozBorderStartWidth", "MozBorderTopColors", "MozBoxAlign", "MozBoxDirection", "MozBoxFlex", "MozBoxOrdinalGroup", "MozBoxOrient", "MozBoxPack", "MozBoxSizing", "MozCSSKeyframeRule", "MozCSSKeyframesRule", "MozColumnCount", "MozColumnFill", "MozColumnGap", "MozColumnRule", "MozColumnRuleColor", "MozColumnRuleStyle", "MozColumnRuleWidth", "MozColumnWidth", "MozColumns", "MozContactChangeEvent", "MozFloatEdge", "MozFontFeatureSettings", "MozFontLanguageOverride", "MozForceBrokenImageIcon", "MozHyphens", "MozImageRegion", "MozMarginEnd", "MozMarginStart", "MozMmsEvent", "MozMmsMessage", "MozMobileMessageThread", "MozOSXFontSmoothing", "MozOrient", "MozOsxFontSmoothing", "MozOutlineRadius", "MozOutlineRadiusBottomleft", "MozOutlineRadiusBottomright", "MozOutlineRadiusTopleft", "MozOutlineRadiusTopright", "MozPaddingEnd", "MozPaddingStart", "MozPerspective", "MozPerspectiveOrigin", "MozPowerManager", "MozSettingsEvent", "MozSmsEvent", "MozSmsMessage", "MozStackSizing", "MozTabSize", "MozTextAlignLast", "MozTextDecorationColor", "MozTextDecorationLine", "MozTextDecorationStyle", "MozTextSizeAdjust", "MozTransform", "MozTransformOrigin", "MozTransformStyle", "MozTransition", "MozTransitionDelay", "MozTransitionDuration", "MozTransitionProperty", "MozTransitionTimingFunction", "MozUserFocus", "MozUserInput", "MozUserModify", "MozUserSelect", "MozWindowDragging", "MozWindowShadow", "MutationEvent", "MutationObserver", "MutationRecord", "NAMESPACE_ERR", "NAMESPACE_RULE", "NEAREST", "NEAREST_MIPMAP_LINEAR", "NEAREST_MIPMAP_NEAREST", "NEGATIVE_INFINITY", "NETWORK_EMPTY", "NETWORK_ERR", "NETWORK_IDLE", "NETWORK_LOADED", "NETWORK_LOADING", "NETWORK_NO_SOURCE", "NEVER", "NEW", "NEXT", "NEXT_NO_DUPLICATE", "NICEST", "NODE_AFTER", "NODE_BEFORE", "NODE_BEFORE_AND_AFTER", "NODE_INSIDE", "NONE", "NON_TRANSIENT_ERR", "NOTATION_NODE", "NOTCH", "NOTEQUAL", "NOT_ALLOWED_ERR", "NOT_FOUND_ERR", "NOT_READABLE_ERR", "NOT_SUPPORTED_ERR", "NO_DATA_ALLOWED_ERR", "NO_ERR", "NO_ERROR", "NO_MODIFICATION_ALLOWED_ERR", "NUMBER_TYPE", "NUM_COMPRESSED_TEXTURE_FORMATS", "NaN", "NamedNodeMap", "NavigationPreloadManager", "Navigator", "NearbyLinks", "NetworkInformation", "Node", "NodeFilter", "NodeIterator", "NodeList", "Notation", "Notification", "NotifyPaintEvent", "Number", "NumberFormat", "OBJECT_TYPE", "OBSOLETE", "OK", "ONE", "ONE_MINUS_CONSTANT_ALPHA", "ONE_MINUS_CONSTANT_COLOR", "ONE_MINUS_DST_ALPHA", "ONE_MINUS_DST_COLOR", "ONE_MINUS_SRC_ALPHA", "ONE_MINUS_SRC_COLOR", "OPEN", "OPENED", "OPENING", "ORDERED_NODE_ITERATOR_TYPE", "ORDERED_NODE_SNAPSHOT_TYPE", "OTHER_ERROR", "OUT_OF_MEMORY", "Object", "OfflineAudioCompletionEvent", "OfflineAudioContext", "OfflineResourceList", "OffscreenCanvas", "OffscreenCanvasRenderingContext2D", "Option", "OrientationSensor", "OscillatorNode", "OverconstrainedError", "OverflowEvent", "PACK_ALIGNMENT", "PACK_ROW_LENGTH", "PACK_SKIP_PIXELS", "PACK_SKIP_ROWS", "PAGE_RULE", "PARSE_ERR", "PATHSEG_ARC_ABS", "PATHSEG_ARC_REL", "PATHSEG_CLOSEPATH", "PATHSEG_CURVETO_CUBIC_ABS", "PATHSEG_CURVETO_CUBIC_REL", "PATHSEG_CURVETO_CUBIC_SMOOTH_ABS", "PATHSEG_CURVETO_CUBIC_SMOOTH_REL", "PATHSEG_CURVETO_QUADRATIC_ABS", "PATHSEG_CURVETO_QUADRATIC_REL", "PATHSEG_CURVETO_QUADRATIC_SMOOTH_ABS", "PATHSEG_CURVETO_QUADRATIC_SMOOTH_REL", "PATHSEG_LINETO_ABS", "PATHSEG_LINETO_HORIZONTAL_ABS", "PATHSEG_LINETO_HORIZONTAL_REL", "PATHSEG_LINETO_REL", "PATHSEG_LINETO_VERTICAL_ABS", "PATHSEG_LINETO_VERTICAL_REL", "PATHSEG_MOVETO_ABS", "PATHSEG_MOVETO_REL", "PATHSEG_UNKNOWN", "PATH_EXISTS_ERR", "PEAKING", "PERMISSION_DENIED", "PERSISTENT", "PI", "PIXEL_PACK_BUFFER", "PIXEL_PACK_BUFFER_BINDING", "PIXEL_UNPACK_BUFFER", "PIXEL_UNPACK_BUFFER_BINDING", "PLAYING_STATE", "POINTS", "POLYGON_OFFSET_FACTOR", "POLYGON_OFFSET_FILL", "POLYGON_OFFSET_UNITS", "POSITION_UNAVAILABLE", "POSITIVE_INFINITY", "PREV", "PREV_NO_DUPLICATE", "PROCESSING_INSTRUCTION_NODE", "PageChangeEvent", "PageTransitionEvent", "PaintRequest", "PaintRequestList", "PannerNode", "PasswordCredential", "Path2D", "PaymentAddress", "PaymentInstruments", "PaymentManager", "PaymentMethodChangeEvent", "PaymentRequest", "PaymentRequestUpdateEvent", "PaymentResponse", "Performance", "PerformanceElementTiming", "PerformanceEntry", "PerformanceEventTiming", "PerformanceLongTaskTiming", "PerformanceMark", "PerformanceMeasure", "PerformanceNavigation", "PerformanceNavigationTiming", "PerformanceObserver", "PerformanceObserverEntryList", "PerformancePaintTiming", "PerformanceResourceTiming", "PerformanceServerTiming", "PerformanceTiming", "PeriodicSyncManager", "PeriodicWave", "PermissionStatus", "Permissions", "PhotoCapabilities", "PictureInPictureWindow", "Plugin", "PluginArray", "PluralRules", "PointerEvent", "PopStateEvent", "PopupBlockedEvent", "Presentation", "PresentationAvailability", "PresentationConnection", "PresentationConnectionAvailableEvent", "PresentationConnectionCloseEvent", "PresentationConnectionList", "PresentationReceiver", "PresentationRequest", "ProcessingInstruction", "ProgressEvent", "Promise", "PromiseRejectionEvent", "PropertyNodeList", "Proxy", "PublicKeyCredential", "PushManager", "PushSubscription", "PushSubscriptionOptions", "Q", "QUERY_RESOLVE", "QUERY_RESULT", "QUERY_RESULT_AVAILABLE", "QUOTA_ERR", "QUOTA_EXCEEDED_ERR", "QueryInterface", "R11F_G11F_B10F", "R16F", "R16I", "R16UI", "R32F", "R32I", "R32UI", "R8", "R8I", "R8UI", "R8_SNORM", "RASTERIZER_DISCARD", "READ", "READ_BUFFER", "READ_FRAMEBUFFER", "READ_FRAMEBUFFER_BINDING", "READ_ONLY", "READ_ONLY_ERR", "READ_WRITE", "RED", "RED_BITS", "RED_INTEGER", "REMOVAL", "RENDERBUFFER", "RENDERBUFFER_ALPHA_SIZE", "RENDERBUFFER_BINDING", "RENDERBUFFER_BLUE_SIZE", "RENDERBUFFER_DEPTH_SIZE", "RENDERBUFFER_GREEN_SIZE", "RENDERBUFFER_HEIGHT", "RENDERBUFFER_INTERNAL_FORMAT", "RENDERBUFFER_RED_SIZE", "RENDERBUFFER_SAMPLES", "RENDERBUFFER_STENCIL_SIZE", "RENDERBUFFER_WIDTH", "RENDERER", "RENDERING_INTENT_ABSOLUTE_COLORIMETRIC", "RENDERING_INTENT_AUTO", "RENDERING_INTENT_PERCEPTUAL", "RENDERING_INTENT_RELATIVE_COLORIMETRIC", "RENDERING_INTENT_SATURATION", "RENDERING_INTENT_UNKNOWN", "RENDER_ATTACHMENT", "REPEAT", "REPLACE", "RG", "RG16F", "RG16I", "RG16UI", "RG32F", "RG32I", "RG32UI", "RG8", "RG8I", "RG8UI", "RG8_SNORM", "RGB", "RGB10_A2", "RGB10_A2UI", "RGB16F", "RGB16I", "RGB16UI", "RGB32F", "RGB32I", "RGB32UI", "RGB565", "RGB5_A1", "RGB8", "RGB8I", "RGB8UI", "RGB8_SNORM", "RGB9_E5", "RGBA", "RGBA16F", "RGBA16I", "RGBA16UI", "RGBA32F", "RGBA32I", "RGBA32UI", "RGBA4", "RGBA8", "RGBA8I", "RGBA8UI", "RGBA8_SNORM", "RGBA_INTEGER", "RGBColor", "RGB_INTEGER", "RG_INTEGER", "ROTATION_CLOCKWISE", "ROTATION_COUNTERCLOCKWISE", "RTCCertificate", "RTCDTMFSender", "RTCDTMFToneChangeEvent", "RTCDataChannel", "RTCDataChannelEvent", "RTCDtlsTransport", "RTCError", "RTCErrorEvent", "RTCIceCandidate", "RTCIceTransport", "RTCPeerConnection", "RTCPeerConnectionIceErrorEvent", "RTCPeerConnectionIceEvent", "RTCRtpReceiver", "RTCRtpSender", "RTCRtpTransceiver", "RTCSctpTransport", "RTCSessionDescription", "RTCStatsReport", "RTCTrackEvent", "RadioNodeList", "Range", "RangeError", "RangeException", "ReadableStream", "ReadableStreamDefaultReader", "RecordErrorEvent", "Rect", "ReferenceError", "Reflect", "RegExp", "RelativeOrientationSensor", "RelativeTimeFormat", "RemotePlayback", "Report", "ReportBody", "ReportingObserver", "Request", "ResizeObserver", "ResizeObserverEntry", "ResizeObserverSize", "Response", "RuntimeError", "SAMPLER_2D", "SAMPLER_2D_ARRAY", "SAMPLER_2D_ARRAY_SHADOW", "SAMPLER_2D_SHADOW", "SAMPLER_3D", "SAMPLER_BINDING", "SAMPLER_CUBE", "SAMPLER_CUBE_SHADOW", "SAMPLES", "SAMPLE_ALPHA_TO_COVERAGE", "SAMPLE_BUFFERS", "SAMPLE_COVERAGE", "SAMPLE_COVERAGE_INVERT", "SAMPLE_COVERAGE_VALUE", "SAWTOOTH", "SCHEDULED_STATE", "SCISSOR_BOX", "SCISSOR_TEST", "SCROLL_PAGE_DOWN", "SCROLL_PAGE_UP", "SDP_ANSWER", "SDP_OFFER", "SDP_PRANSWER", "SECURITY_ERR", "SELECT", "SEPARATE_ATTRIBS", "SERIALIZE_ERR", "SEVERITY_ERROR", "SEVERITY_FATAL_ERROR", "SEVERITY_WARNING", "SHADER_COMPILER", "SHADER_TYPE", "SHADING_LANGUAGE_VERSION", "SHIFT_MASK", "SHORT", "SHOWING", "SHOW_ALL", "SHOW_ATTRIBUTE", "SHOW_CDATA_SECTION", "SHOW_COMMENT", "SHOW_DOCUMENT", "SHOW_DOCUMENT_FRAGMENT", "SHOW_DOCUMENT_TYPE", "SHOW_ELEMENT", "SHOW_ENTITY", "SHOW_ENTITY_REFERENCE", "SHOW_NOTATION", "SHOW_PROCESSING_INSTRUCTION", "SHOW_TEXT", "SIGNALED", "SIGNED_NORMALIZED", "SINE", "SOUNDFIELD", "SQLException", "SQRT1_2", "SQRT2", "SQUARE", "SRC_ALPHA", "SRC_ALPHA_SATURATE", "SRC_COLOR", "SRGB", "SRGB8", "SRGB8_ALPHA8", "START_TO_END", "START_TO_START", "STATIC_COPY", "STATIC_DRAW", "STATIC_READ", "STENCIL", "STENCIL_ATTACHMENT", "STENCIL_BACK_FAIL", "STENCIL_BACK_FUNC", "STENCIL_BACK_PASS_DEPTH_FAIL", "STENCIL_BACK_PASS_DEPTH_PASS", "STENCIL_BACK_REF", "STENCIL_BACK_VALUE_MASK", "STENCIL_BACK_WRITEMASK", "STENCIL_BITS", "STENCIL_BUFFER_BIT", "STENCIL_CLEAR_VALUE", "STENCIL_FAIL", "STENCIL_FUNC", "STENCIL_INDEX", "STENCIL_INDEX8", "STENCIL_PASS_DEPTH_FAIL", "STENCIL_PASS_DEPTH_PASS", "STENCIL_REF", "STENCIL_TEST", "STENCIL_VALUE_MASK", "STENCIL_WRITEMASK", "STORAGE", "STORAGE_BINDING", "STREAM_COPY", "STREAM_DRAW", "STREAM_READ", "STRING_TYPE", "STYLE_RULE", "SUBPIXEL_BITS", "SUPPORTS_RULE", "SVGAElement", "SVGAltGlyphDefElement", "SVGAltGlyphElement", "SVGAltGlyphItemElement", "SVGAngle", "SVGAnimateColorElement", "SVGAnimateElement", "SVGAnimateMotionElement", "SVGAnimateTransformElement", "SVGAnimatedAngle", "SVGAnimatedBoolean", "SVGAnimatedEnumeration", "SVGAnimatedInteger", "SVGAnimatedLength", "SVGAnimatedLengthList", "SVGAnimatedNumber", "SVGAnimatedNumberList", "SVGAnimatedPreserveAspectRatio", "SVGAnimatedRect", "SVGAnimatedString", "SVGAnimatedTransformList", "SVGAnimationElement", "SVGCircleElement", "SVGClipPathElement", "SVGColor", "SVGComponentTransferFunctionElement", "SVGCursorElement", "SVGDefsElement", "SVGDescElement", "SVGDiscardElement", "SVGDocument", "SVGElement", "SVGElementInstance", "SVGElementInstanceList", "SVGEllipseElement", "SVGException", "SVGFEBlendElement", "SVGFEColorMatrixElement", "SVGFEComponentTransferElement", "SVGFECompositeElement", "SVGFEConvolveMatrixElement", "SVGFEDiffuseLightingElement", "SVGFEDisplacementMapElement", "SVGFEDistantLightElement", "SVGFEDropShadowElement", "SVGFEFloodElement", "SVGFEFuncAElement", "SVGFEFuncBElement", "SVGFEFuncGElement", "SVGFEFuncRElement", "SVGFEGaussianBlurElement", "SVGFEImageElement", "SVGFEMergeElement", "SVGFEMergeNodeElement", "SVGFEMorphologyElement", "SVGFEOffsetElement", "SVGFEPointLightElement", "SVGFESpecularLightingElement", "SVGFESpotLightElement", "SVGFETileElement", "SVGFETurbulenceElement", "SVGFilterElement", "SVGFontElement", "SVGFontFaceElement", "SVGFontFaceFormatElement", "SVGFontFaceNameElement", "SVGFontFaceSrcElement", "SVGFontFaceUriElement", "SVGForeignObjectElement", "SVGGElement", "SVGGeometryElement", "SVGGlyphElement", "SVGGlyphRefElement", "SVGGradientElement", "SVGGraphicsElement", "SVGHKernElement", "SVGImageElement", "SVGLength", "SVGLengthList", "SVGLineElement", "SVGLinearGradientElement", "SVGMPathElement", "SVGMarkerElement", "SVGMaskElement", "SVGMatrix", "SVGMetadataElement", "SVGMissingGlyphElement", "SVGNumber", "SVGNumberList", "SVGPaint", "SVGPathElement", "SVGPathSeg", "SVGPathSegArcAbs", "SVGPathSegArcRel", "SVGPathSegClosePath", "SVGPathSegCurvetoCubicAbs", "SVGPathSegCurvetoCubicRel", "SVGPathSegCurvetoCubicSmoothAbs", "SVGPathSegCurvetoCubicSmoothRel", "SVGPathSegCurvetoQuadraticAbs", "SVGPathSegCurvetoQuadraticRel", "SVGPathSegCurvetoQuadraticSmoothAbs", "SVGPathSegCurvetoQuadraticSmoothRel", "SVGPathSegLinetoAbs", "SVGPathSegLinetoHorizontalAbs", "SVGPathSegLinetoHorizontalRel", "SVGPathSegLinetoRel", "SVGPathSegLinetoVerticalAbs", "SVGPathSegLinetoVerticalRel", "SVGPathSegList", "SVGPathSegMovetoAbs", "SVGPathSegMovetoRel", "SVGPatternElement", "SVGPoint", "SVGPointList", "SVGPolygonElement", "SVGPolylineElement", "SVGPreserveAspectRatio", "SVGRadialGradientElement", "SVGRect", "SVGRectElement", "SVGRenderingIntent", "SVGSVGElement", "SVGScriptElement", "SVGSetElement", "SVGStopElement", "SVGStringList", "SVGStyleElement", "SVGSwitchElement", "SVGSymbolElement", "SVGTRefElement", "SVGTSpanElement", "SVGTextContentElement", "SVGTextElement", "SVGTextPathElement", "SVGTextPositioningElement", "SVGTitleElement", "SVGTransform", "SVGTransformList", "SVGUnitTypes", "SVGUseElement", "SVGVKernElement", "SVGViewElement", "SVGViewSpec", "SVGZoomAndPan", "SVGZoomEvent", "SVG_ANGLETYPE_DEG", "SVG_ANGLETYPE_GRAD", "SVG_ANGLETYPE_RAD", "SVG_ANGLETYPE_UNKNOWN", "SVG_ANGLETYPE_UNSPECIFIED", "SVG_CHANNEL_A", "SVG_CHANNEL_B", "SVG_CHANNEL_G", "SVG_CHANNEL_R", "SVG_CHANNEL_UNKNOWN", "SVG_COLORTYPE_CURRENTCOLOR", "SVG_COLORTYPE_RGBCOLOR", "SVG_COLORTYPE_RGBCOLOR_ICCCOLOR", "SVG_COLORTYPE_UNKNOWN", "SVG_EDGEMODE_DUPLICATE", "SVG_EDGEMODE_NONE", "SVG_EDGEMODE_UNKNOWN", "SVG_EDGEMODE_WRAP", "SVG_FEBLEND_MODE_COLOR", "SVG_FEBLEND_MODE_COLOR_BURN", "SVG_FEBLEND_MODE_COLOR_DODGE", "SVG_FEBLEND_MODE_DARKEN", "SVG_FEBLEND_MODE_DIFFERENCE", "SVG_FEBLEND_MODE_EXCLUSION", "SVG_FEBLEND_MODE_HARD_LIGHT", "SVG_FEBLEND_MODE_HUE", "SVG_FEBLEND_MODE_LIGHTEN", "SVG_FEBLEND_MODE_LUMINOSITY", "SVG_FEBLEND_MODE_MULTIPLY", "SVG_FEBLEND_MODE_NORMAL", "SVG_FEBLEND_MODE_OVERLAY", "SVG_FEBLEND_MODE_SATURATION", "SVG_FEBLEND_MODE_SCREEN", "SVG_FEBLEND_MODE_SOFT_LIGHT", "SVG_FEBLEND_MODE_UNKNOWN", "SVG_FECOLORMATRIX_TYPE_HUEROTATE", "SVG_FECOLORMATRIX_TYPE_LUMINANCETOALPHA", "SVG_FECOLORMATRIX_TYPE_MATRIX", "SVG_FECOLORMATRIX_TYPE_SATURATE", "SVG_FECOLORMATRIX_TYPE_UNKNOWN", "SVG_FECOMPONENTTRANSFER_TYPE_DISCRETE", "SVG_FECOMPONENTTRANSFER_TYPE_GAMMA", "SVG_FECOMPONENTTRANSFER_TYPE_IDENTITY", "SVG_FECOMPONENTTRANSFER_TYPE_LINEAR", "SVG_FECOMPONENTTRANSFER_TYPE_TABLE", "SVG_FECOMPONENTTRANSFER_TYPE_UNKNOWN", "SVG_FECOMPOSITE_OPERATOR_ARITHMETIC", "SVG_FECOMPOSITE_OPERATOR_ATOP", "SVG_FECOMPOSITE_OPERATOR_IN", "SVG_FECOMPOSITE_OPERATOR_OUT", "SVG_FECOMPOSITE_OPERATOR_OVER", "SVG_FECOMPOSITE_OPERATOR_UNKNOWN", "SVG_FECOMPOSITE_OPERATOR_XOR", "SVG_INVALID_VALUE_ERR", "SVG_LENGTHTYPE_CM", "SVG_LENGTHTYPE_EMS", "SVG_LENGTHTYPE_EXS", "SVG_LENGTHTYPE_IN", "SVG_LENGTHTYPE_MM", "SVG_LENGTHTYPE_NUMBER", "SVG_LENGTHTYPE_PC", "SVG_LENGTHTYPE_PERCENTAGE", "SVG_LENGTHTYPE_PT", "SVG_LENGTHTYPE_PX", "SVG_LENGTHTYPE_UNKNOWN", "SVG_MARKERUNITS_STROKEWIDTH", "SVG_MARKERUNITS_UNKNOWN", "SVG_MARKERUNITS_USERSPACEONUSE", "SVG_MARKER_ORIENT_ANGLE", "SVG_MARKER_ORIENT_AUTO", "SVG_MARKER_ORIENT_UNKNOWN", "SVG_MASKTYPE_ALPHA", "SVG_MASKTYPE_LUMINANCE", "SVG_MATRIX_NOT_INVERTABLE", "SVG_MEETORSLICE_MEET", "SVG_MEETORSLICE_SLICE", "SVG_MEETORSLICE_UNKNOWN", "SVG_MORPHOLOGY_OPERATOR_DILATE", "SVG_MORPHOLOGY_OPERATOR_ERODE", "SVG_MORPHOLOGY_OPERATOR_UNKNOWN", "SVG_PAINTTYPE_CURRENTCOLOR", "SVG_PAINTTYPE_NONE", "SVG_PAINTTYPE_RGBCOLOR", "SVG_PAINTTYPE_RGBCOLOR_ICCCOLOR", "SVG_PAINTTYPE_UNKNOWN", "SVG_PAINTTYPE_URI", "SVG_PAINTTYPE_URI_CURRENTCOLOR", "SVG_PAINTTYPE_URI_NONE", "SVG_PAINTTYPE_URI_RGBCOLOR", "SVG_PAINTTYPE_URI_RGBCOLOR_ICCCOLOR", "SVG_PRESERVEASPECTRATIO_NONE", "SVG_PRESERVEASPECTRATIO_UNKNOWN", "SVG_PRESERVEASPECTRATIO_XMAXYMAX", "SVG_PRESERVEASPECTRATIO_XMAXYMID", "SVG_PRESERVEASPECTRATIO_XMAXYMIN", "SVG_PRESERVEASPECTRATIO_XMIDYMAX", "SVG_PRESERVEASPECTRATIO_XMIDYMID", "SVG_PRESERVEASPECTRATIO_XMIDYMIN", "SVG_PRESERVEASPECTRATIO_XMINYMAX", "SVG_PRESERVEASPECTRATIO_XMINYMID", "SVG_PRESERVEASPECTRATIO_XMINYMIN", "SVG_SPREADMETHOD_PAD", "SVG_SPREADMETHOD_REFLECT", "SVG_SPREADMETHOD_REPEAT", "SVG_SPREADMETHOD_UNKNOWN", "SVG_STITCHTYPE_NOSTITCH", "SVG_STITCHTYPE_STITCH", "SVG_STITCHTYPE_UNKNOWN", "SVG_TRANSFORM_MATRIX", "SVG_TRANSFORM_ROTATE", "SVG_TRANSFORM_SCALE", "SVG_TRANSFORM_SKEWX", "SVG_TRANSFORM_SKEWY", "SVG_TRANSFORM_TRANSLATE", "SVG_TRANSFORM_UNKNOWN", "SVG_TURBULENCE_TYPE_FRACTALNOISE", "SVG_TURBULENCE_TYPE_TURBULENCE", "SVG_TURBULENCE_TYPE_UNKNOWN", "SVG_UNIT_TYPE_OBJECTBOUNDINGBOX", "SVG_UNIT_TYPE_UNKNOWN", "SVG_UNIT_TYPE_USERSPACEONUSE", "SVG_WRONG_TYPE_ERR", "SVG_ZOOMANDPAN_DISABLE", "SVG_ZOOMANDPAN_MAGNIFY", "SVG_ZOOMANDPAN_UNKNOWN", "SYNC_CONDITION", "SYNC_FENCE", "SYNC_FLAGS", "SYNC_FLUSH_COMMANDS_BIT", "SYNC_GPU_COMMANDS_COMPLETE", "SYNC_STATUS", "SYNTAX_ERR", "SavedPages", "Screen", "ScreenOrientation", "Script", "ScriptProcessorNode", "ScrollAreaEvent", "SecurityPolicyViolationEvent", "Selection", "Sensor", "SensorErrorEvent", "ServiceWorker", "ServiceWorkerContainer", "ServiceWorkerRegistration", "SessionDescription", "Set", "ShadowRoot", "SharedArrayBuffer", "SharedWorker", "SimpleGestureEvent", "SourceBuffer", "SourceBufferList", "SpeechSynthesis", "SpeechSynthesisErrorEvent", "SpeechSynthesisEvent", "SpeechSynthesisUtterance", "SpeechSynthesisVoice", "StaticRange", "StereoPannerNode", "StopIteration", "Storage", "StorageEvent", "StorageManager", "String", "StructType", "StylePropertyMap", "StylePropertyMapReadOnly", "StyleSheet", "StyleSheetList", "SubmitEvent", "SubtleCrypto", "Symbol", "SyncManager", "SyntaxError", "TEMPORARY", "TEXTPATH_METHODTYPE_ALIGN", "TEXTPATH_METHODTYPE_STRETCH", "TEXTPATH_METHODTYPE_UNKNOWN", "TEXTPATH_SPACINGTYPE_AUTO", "TEXTPATH_SPACINGTYPE_EXACT", "TEXTPATH_SPACINGTYPE_UNKNOWN", "TEXTURE", "TEXTURE0", "TEXTURE1", "TEXTURE10", "TEXTURE11", "TEXTURE12", "TEXTURE13", "TEXTURE14", "TEXTURE15", "TEXTURE16", "TEXTURE17", "TEXTURE18", "TEXTURE19", "TEXTURE2", "TEXTURE20", "TEXTURE21", "TEXTURE22", "TEXTURE23", "TEXTURE24", "TEXTURE25", "TEXTURE26", "TEXTURE27", "TEXTURE28", "TEXTURE29", "TEXTURE3", "TEXTURE30", "TEXTURE31", "TEXTURE4", "TEXTURE5", "TEXTURE6", "TEXTURE7", "TEXTURE8", "TEXTURE9", "TEXTURE_2D", "TEXTURE_2D_ARRAY", "TEXTURE_3D", "TEXTURE_BASE_LEVEL", "TEXTURE_BINDING", "TEXTURE_BINDING_2D", "TEXTURE_BINDING_2D_ARRAY", "TEXTURE_BINDING_3D", "TEXTURE_BINDING_CUBE_MAP", "TEXTURE_COMPARE_FUNC", "TEXTURE_COMPARE_MODE", "TEXTURE_CUBE_MAP", "TEXTURE_CUBE_MAP_NEGATIVE_X", "TEXTURE_CUBE_MAP_NEGATIVE_Y", "TEXTURE_CUBE_MAP_NEGATIVE_Z", "TEXTURE_CUBE_MAP_POSITIVE_X", "TEXTURE_CUBE_MAP_POSITIVE_Y", "TEXTURE_CUBE_MAP_POSITIVE_Z", "TEXTURE_IMMUTABLE_FORMAT", "TEXTURE_IMMUTABLE_LEVELS", "TEXTURE_MAG_FILTER", "TEXTURE_MAX_ANISOTROPY_EXT", "TEXTURE_MAX_LEVEL", "TEXTURE_MAX_LOD", "TEXTURE_MIN_FILTER", "TEXTURE_MIN_LOD", "TEXTURE_WRAP_R", "TEXTURE_WRAP_S", "TEXTURE_WRAP_T", "TEXT_NODE", "TIMEOUT", "TIMEOUT_ERR", "TIMEOUT_EXPIRED", "TIMEOUT_IGNORED", "TOO_LARGE_ERR", "TRANSACTION_INACTIVE_ERR", "TRANSFORM_FEEDBACK", "TRANSFORM_FEEDBACK_ACTIVE", "TRANSFORM_FEEDBACK_BINDING", "TRANSFORM_FEEDBACK_BUFFER", "TRANSFORM_FEEDBACK_BUFFER_BINDING", "TRANSFORM_FEEDBACK_BUFFER_MODE", "TRANSFORM_FEEDBACK_BUFFER_SIZE", "TRANSFORM_FEEDBACK_BUFFER_START", "TRANSFORM_FEEDBACK_PAUSED", "TRANSFORM_FEEDBACK_PRIMITIVES_WRITTEN", "TRANSFORM_FEEDBACK_VARYINGS", "TRIANGLE", "TRIANGLES", "TRIANGLE_FAN", "TRIANGLE_STRIP", "TYPE_BACK_FORWARD", "TYPE_ERR", "TYPE_MISMATCH_ERR", "TYPE_NAVIGATE", "TYPE_RELOAD", "TYPE_RESERVED", "Table", "TaskAttributionTiming", "Text", "TextDecoder", "TextDecoderStream", "TextEncoder", "TextEncoderStream", "TextEvent", "TextMetrics", "TextTrack", "TextTrackCue", "TextTrackCueList", "TextTrackList", "TimeEvent", "TimeRanges", "Touch", "TouchEvent", "TouchList", "TrackEvent", "TransformStream", "TransitionEvent", "TreeWalker", "TrustedHTML", "TrustedScript", "TrustedScriptURL", "TrustedTypePolicy", "TrustedTypePolicyFactory", "TypeError", "TypedObject", "U2F", "UIEvent", "UNCACHED", "UNIFORM", "UNIFORM_ARRAY_STRIDE", "UNIFORM_BLOCK_ACTIVE_UNIFORMS", "UNIFORM_BLOCK_ACTIVE_UNIFORM_INDICES", "UNIFORM_BLOCK_BINDING", "UNIFORM_BLOCK_DATA_SIZE", "UNIFORM_BLOCK_INDEX", "UNIFORM_BLOCK_REFERENCED_BY_FRAGMENT_SHADER", "UNIFORM_BLOCK_REFERENCED_BY_VERTEX_SHADER", "UNIFORM_BUFFER", "UNIFORM_BUFFER_BINDING", "UNIFORM_BUFFER_OFFSET_ALIGNMENT", "UNIFORM_BUFFER_SIZE", "UNIFORM_BUFFER_START", "UNIFORM_IS_ROW_MAJOR", "UNIFORM_MATRIX_STRIDE", "UNIFORM_OFFSET", "UNIFORM_SIZE", "UNIFORM_TYPE", "UNKNOWN_ERR", "UNKNOWN_RULE", "UNMASKED_RENDERER_WEBGL", "UNMASKED_VENDOR_WEBGL", "UNORDERED_NODE_ITERATOR_TYPE", "UNORDERED_NODE_SNAPSHOT_TYPE", "UNPACK_ALIGNMENT", "UNPACK_COLORSPACE_CONVERSION_WEBGL", "UNPACK_FLIP_Y_WEBGL", "UNPACK_IMAGE_HEIGHT", "UNPACK_PREMULTIPLY_ALPHA_WEBGL", "UNPACK_ROW_LENGTH", "UNPACK_SKIP_IMAGES", "UNPACK_SKIP_PIXELS", "UNPACK_SKIP_ROWS", "UNSCHEDULED_STATE", "UNSENT", "UNSIGNALED", "UNSIGNED_BYTE", "UNSIGNED_INT", "UNSIGNED_INT_10F_11F_11F_REV", "UNSIGNED_INT_24_8", "UNSIGNED_INT_2_10_10_10_REV", "UNSIGNED_INT_5_9_9_9_REV", "UNSIGNED_INT_SAMPLER_2D", "UNSIGNED_INT_SAMPLER_2D_ARRAY", "UNSIGNED_INT_SAMPLER_3D", "UNSIGNED_INT_SAMPLER_CUBE", "UNSIGNED_INT_VEC2", "UNSIGNED_INT_VEC3", "UNSIGNED_INT_VEC4", "UNSIGNED_NORMALIZED", "UNSIGNED_SHORT", "UNSIGNED_SHORT_4_4_4_4", "UNSIGNED_SHORT_5_5_5_1", "UNSIGNED_SHORT_5_6_5", "UNSPECIFIED_EVENT_TYPE_ERR", "UPDATEREADY", "URIError", "URL", "URLSearchParams", "URLUnencoded", "URL_MISMATCH_ERR", "USB", "USBAlternateInterface", "USBConfiguration", "USBConnectionEvent", "USBDevice", "USBEndpoint", "USBInTransferResult", "USBInterface", "USBIsochronousInTransferPacket", "USBIsochronousInTransferResult", "USBIsochronousOutTransferPacket", "USBIsochronousOutTransferResult", "USBOutTransferResult", "UTC", "Uint16Array", "Uint32Array", "Uint8Array", "Uint8ClampedArray", "UserActivation", "UserMessageHandler", "UserMessageHandlersNamespace", "UserProximityEvent", "VALIDATE_STATUS", "VALIDATION_ERR", "VARIABLES_RULE", "VENDOR", "VERSION", "VERSION_CHANGE", "VERSION_ERR", "VERTEX", "VERTEX_ARRAY_BINDING", "VERTEX_ATTRIB_ARRAY_BUFFER_BINDING", "VERTEX_ATTRIB_ARRAY_DIVISOR", "VERTEX_ATTRIB_ARRAY_DIVISOR_ANGLE", "VERTEX_ATTRIB_ARRAY_ENABLED", "VERTEX_ATTRIB_ARRAY_INTEGER", "VERTEX_ATTRIB_ARRAY_NORMALIZED", "VERTEX_ATTRIB_ARRAY_POINTER", "VERTEX_ATTRIB_ARRAY_SIZE", "VERTEX_ATTRIB_ARRAY_STRIDE", "VERTEX_ATTRIB_ARRAY_TYPE", "VERTEX_SHADER", "VERTICAL", "VERTICAL_AXIS", "VER_ERR", "VIEWPORT", "VIEWPORT_RULE", "VRDisplay", "VRDisplayCapabilities", "VRDisplayEvent", "VREyeParameters", "VRFieldOfView", "VRFrameData", "VRPose", "VRStageParameters", "VTTCue", "VTTRegion", "ValidityState", "VideoPlaybackQuality", "VideoStreamTrack", "VisualViewport", "WAIT_FAILED", "WEBKIT_FILTER_RULE", "WEBKIT_KEYFRAMES_RULE", "WEBKIT_KEYFRAME_RULE", "WEBKIT_REGION_RULE", "WRITE", "WRONG_DOCUMENT_ERR", "WakeLock", "WakeLockSentinel", "WasmAnyRef", "WaveShaperNode", "WeakMap", "WeakRef", "WeakSet", "WebAssembly", "WebGL2RenderingContext", "WebGLActiveInfo", "WebGLBuffer", "WebGLContextEvent", "WebGLFramebuffer", "WebGLProgram", "WebGLQuery", "WebGLRenderbuffer", "WebGLRenderingContext", "WebGLSampler", "WebGLShader", "WebGLShaderPrecisionFormat", "WebGLSync", "WebGLTexture", "WebGLTransformFeedback", "WebGLUniformLocation", "WebGLVertexArray", "WebGLVertexArrayObject", "WebKitAnimationEvent", "WebKitBlobBuilder", "WebKitCSSFilterRule", "WebKitCSSFilterValue", "WebKitCSSKeyframeRule", "WebKitCSSKeyframesRule", "WebKitCSSMatrix", "WebKitCSSRegionRule", "WebKitCSSTransformValue", "WebKitDataCue", "WebKitGamepad", "WebKitMediaKeyError", "WebKitMediaKeyMessageEvent", "WebKitMediaKeySession", "WebKitMediaKeys", "WebKitMediaSource", "WebKitMutationObserver", "WebKitNamespace", "WebKitPlaybackTargetAvailabilityEvent", "WebKitPoint", "WebKitShadowRoot", "WebKitSourceBuffer", "WebKitSourceBufferList", "WebKitTransitionEvent", "WebSocket", "WebkitAlignContent", "WebkitAlignItems", "WebkitAlignSelf", "WebkitAnimation", "WebkitAnimationDelay", "WebkitAnimationDirection", "WebkitAnimationDuration", "WebkitAnimationFillMode", "WebkitAnimationIterationCount", "WebkitAnimationName", "WebkitAnimationPlayState", "WebkitAnimationTimingFunction", "WebkitAppearance", "WebkitBackfaceVisibility", "WebkitBackgroundClip", "WebkitBackgroundOrigin", "WebkitBackgroundSize", "WebkitBorderBottomLeftRadius", "WebkitBorderBottomRightRadius", "WebkitBorderImage", "WebkitBorderRadius", "WebkitBorderTopLeftRadius", "WebkitBorderTopRightRadius", "WebkitBoxAlign", "WebkitBoxDirection", "WebkitBoxFlex", "WebkitBoxOrdinalGroup", "WebkitBoxOrient", "WebkitBoxPack", "WebkitBoxShadow", "WebkitBoxSizing", "WebkitFilter", "WebkitFlex", "WebkitFlexBasis", "WebkitFlexDirection", "WebkitFlexFlow", "WebkitFlexGrow", "WebkitFlexShrink", "WebkitFlexWrap", "WebkitJustifyContent", "WebkitLineClamp", "WebkitMask", "WebkitMaskClip", "WebkitMaskComposite", "WebkitMaskImage", "WebkitMaskOrigin", "WebkitMaskPosition", "WebkitMaskPositionX", "WebkitMaskPositionY", "WebkitMaskRepeat", "WebkitMaskSize", "WebkitOrder", "WebkitPerspective", "WebkitPerspectiveOrigin", "WebkitTextFillColor", "WebkitTextSizeAdjust", "WebkitTextStroke", "WebkitTextStrokeColor", "WebkitTextStrokeWidth", "WebkitTransform", "WebkitTransformOrigin", "WebkitTransformStyle", "WebkitTransition", "WebkitTransitionDelay", "WebkitTransitionDuration", "WebkitTransitionProperty", "WebkitTransitionTimingFunction", "WebkitUserSelect", "WheelEvent", "Window", "Worker", "Worklet", "WritableStream", "WritableStreamDefaultWriter", "XMLDocument", "XMLHttpRequest", "XMLHttpRequestEventTarget", "XMLHttpRequestException", "XMLHttpRequestProgressEvent", "XMLHttpRequestUpload", "XMLSerializer", "XMLStylesheetProcessingInstruction", "XPathEvaluator", "XPathException", "XPathExpression", "XPathNSResolver", "XPathResult", "XRBoundedReferenceSpace", "XRDOMOverlayState", "XRFrame", "XRHitTestResult", "XRHitTestSource", "XRInputSource", "XRInputSourceArray", "XRInputSourceEvent", "XRInputSourcesChangeEvent", "XRLayer", "XRPose", "XRRay", "XRReferenceSpace", "XRReferenceSpaceEvent", "XRRenderState", "XRRigidTransform", "XRSession", "XRSessionEvent", "XRSpace", "XRSystem", "XRTransientInputHitTestResult", "XRTransientInputHitTestSource", "XRView", "XRViewerPose", "XRViewport", "XRWebGLLayer", "XSLTProcessor", "ZERO", "_XD0M_", "_YD0M_", "__brand", "__defineGetter__", "__defineSetter__", "__lookupGetter__", "__lookupSetter__", "__opera", "__proto__", "_browserjsran", "a", "aLink", "abbr", "abort", "aborted", "abs", "absolute", "acceleration", "accelerationIncludingGravity", "accelerator", "accept", "acceptCharset", "acceptNode", "access", "accessKey", "accessKeyLabel", "accuracy", "acos", "acosh", "action", "actionURL", "actions", "activated", "active", "activeCues", "activeElement", "activeSourceBuffers", "activeSourceCount", "activeTexture", "activeVRDisplays", "actualBoundingBoxAscent", "actualBoundingBoxDescent", "actualBoundingBoxLeft", "actualBoundingBoxRight", "add", "addAll", "addBehavior", "addCandidate", "addColorStop", "addCue", "addElement", "addEventListener", "addFilter", "addFromString", "addFromUri", "addIceCandidate", "addImport", "addListener", "addModule", "addNamed", "addPageRule", "addPath", "addPointer", "addRange", "addRegion", "addRule", "addSearchEngine", "addSourceBuffer", "addStream", "addTextTrack", "addTrack", "addTransceiver", "addWakeLockListener", "added", "addedNodes", "additionalName", "additiveSymbols", "addons", "address", "addressLine", "addressModeU", "addressModeV", "addressModeW", "adoptNode", "adoptedStyleSheets", "adr", "advance", "after", "album", "alert", "algorithm", "align", "align-content", "align-items", "align-self", "alignContent", "alignItems", "alignSelf", "alignmentBaseline", "alinkColor", "all", "allSettled", "allow", "allowFullscreen", "allowPaymentRequest", "allowedDirections", "allowedFeatures", "allowedToPlay", "allowsFeature", "alpha", "alphaMode", "alphaToCoverageEnabled", "alt", "altGraphKey", "altHtml", "altKey", "altLeft", "alternate", "alternateSetting", "alternates", "altitude", "altitudeAccuracy", "amplitude", "ancestorOrigins", "anchor", "anchorNode", "anchorOffset", "anchors", "and", "angle", "angularAcceleration", "angularVelocity", "animVal", "animate", "animatedInstanceRoot", "animatedNormalizedPathSegList", "animatedPathSegList", "animatedPoints", "animation", "animation-delay", "animation-direction", "animation-duration", "animation-fill-mode", "animation-iteration-count", "animation-name", "animation-play-state", "animation-timing-function", "animationDelay", "animationDirection", "animationDuration", "animationFillMode", "animationIterationCount", "animationName", "animationPlayState", "animationStartTime", "animationTimingFunction", "animationsPaused", "anniversary", "antialias", "anticipatedRemoval", "any", "app", "appCodeName", "appMinorVersion", "appName", "appNotifications", "appVersion", "appearance", "append", "appendBuffer", "appendChild", "appendData", "appendItem", "appendMedium", "appendNamed", "appendRule", "appendStream", "appendWindowEnd", "appendWindowStart", "applets", "applicationCache", "applicationServerKey", "apply", "applyConstraints", "applyElement", "arc", "arcTo", "architecture", "archive", "areas", "arguments", "ariaAtomic", "ariaAutoComplete", "ariaBusy", "ariaChecked", "ariaColCount", "ariaColIndex", "ariaColSpan", "ariaCurrent", "ariaDescription", "ariaDisabled", "ariaExpanded", "ariaHasPopup", "ariaHidden", "ariaKeyShortcuts", "ariaLabel", "ariaLevel", "ariaLive", "ariaModal", "ariaMultiLine", "ariaMultiSelectable", "ariaOrientation", "ariaPlaceholder", "ariaPosInSet", "ariaPressed", "ariaReadOnly", "ariaRelevant", "ariaRequired", "ariaRoleDescription", "ariaRowCount", "ariaRowIndex", "ariaRowSpan", "ariaSelected", "ariaSetSize", "ariaSort", "ariaValueMax", "ariaValueMin", "ariaValueNow", "ariaValueText", "arrayBuffer", "arrayLayerCount", "arrayStride", "artist", "artwork", "as", "asIntN", "asUintN", "asin", "asinh", "aspect", "assert", "assign", "assignedElements", "assignedNodes", "assignedSlot", "async", "asyncIterator", "atEnd", "atan", "atan2", "atanh", "atob", "attachEvent", "attachInternals", "attachShader", "attachShadow", "attachments", "attack", "attestationObject", "attrChange", "attrName", "attributeFilter", "attributeName", "attributeNamespace", "attributeOldValue", "attributeStyleMap", "attributes", "attribution", "audioBitsPerSecond", "audioTracks", "audioWorklet", "authenticatedSignedWrites", "authenticatorData", "autoIncrement", "autobuffer", "autocapitalize", "autocomplete", "autocorrect", "autofocus", "automationRate", "autoplay", "availHeight", "availLeft", "availTop", "availWidth", "availability", "available", "aversion", "ax", "axes", "axis", "ay", "azimuth", "b", "back", "backface-visibility", "backfaceVisibility", "background", "background-attachment", "background-blend-mode", "background-clip", "background-color", "background-image", "background-origin", "background-position", "background-position-x", "background-position-y", "background-repeat", "background-size", "backgroundAttachment", "backgroundBlendMode", "backgroundClip", "backgroundColor", "backgroundFetch", "backgroundImage", "backgroundOrigin", "backgroundPosition", "backgroundPositionX", "backgroundPositionY", "backgroundRepeat", "backgroundSize", "badInput", "badge", "balance", "baseArrayLayer", "baseFrequencyX", "baseFrequencyY", "baseLatency", "baseLayer", "baseMipLevel", "baseNode", "baseOffset", "baseURI", "baseVal", "baselineShift", "battery", "bday", "before", "beginComputePass", "beginElement", "beginElementAt", "beginOcclusionQuery", "beginPath", "beginQuery", "beginRenderPass", "beginTransformFeedback", "beginningOfPassWriteIndex", "behavior", "behaviorCookie", "behaviorPart", "behaviorUrns", "beta", "bezierCurveTo", "bgColor", "bgProperties", "bias", "big", "bigint64", "biguint64", "binaryType", "bind", "bindAttribLocation", "bindBuffer", "bindBufferBase", "bindBufferRange", "bindFramebuffer", "bindGroupLayouts", "bindRenderbuffer", "bindSampler", "bindTexture", "bindTransformFeedback", "bindVertexArray", "binding", "bitness", "blend", "blendColor", "blendEquation", "blendEquationSeparate", "blendFunc", "blendFuncSeparate", "blink", "blitFramebuffer", "blob", "block-size", "blockDirection", "blockSize", "blockedURI", "blue", "bluetooth", "blur", "body", "bodyUsed", "bold", "bookmarks", "booleanValue", "border", "border-block", "border-block-color", "border-block-end", "border-block-end-color", "border-block-end-style", "border-block-end-width", "border-block-start", "border-block-start-color", "border-block-start-style", "border-block-start-width", "border-block-style", "border-block-width", "border-bottom", "border-bottom-color", "border-bottom-left-radius", "border-bottom-right-radius", "border-bottom-style", "border-bottom-width", "border-collapse", "border-color", "border-end-end-radius", "border-end-start-radius", "border-image", "border-image-outset", "border-image-repeat", "border-image-slice", "border-image-source", "border-image-width", "border-inline", "border-inline-color", "border-inline-end", "border-inline-end-color", "border-inline-end-style", "border-inline-end-width", "border-inline-start", "border-inline-start-color", "border-inline-start-style", "border-inline-start-width", "border-inline-style", "border-inline-width", "border-left", "border-left-color", "border-left-style", "border-left-width", "border-radius", "border-right", "border-right-color", "border-right-style", "border-right-width", "border-spacing", "border-start-end-radius", "border-start-start-radius", "border-style", "border-top", "border-top-color", "border-top-left-radius", "border-top-right-radius", "border-top-style", "border-top-width", "border-width", "borderBlock", "borderBlockColor", "borderBlockEnd", "borderBlockEndColor", "borderBlockEndStyle", "borderBlockEndWidth", "borderBlockStart", "borderBlockStartColor", "borderBlockStartStyle", "borderBlockStartWidth", "borderBlockStyle", "borderBlockWidth", "borderBottom", "borderBottomColor", "borderBottomLeftRadius", "borderBottomRightRadius", "borderBottomStyle", "borderBottomWidth", "borderBoxSize", "borderCollapse", "borderColor", "borderColorDark", "borderColorLight", "borderEndEndRadius", "borderEndStartRadius", "borderImage", "borderImageOutset", "borderImageRepeat", "borderImageSlice", "borderImageSource", "borderImageWidth", "borderInline", "borderInlineColor", "borderInlineEnd", "borderInlineEndColor", "borderInlineEndStyle", "borderInlineEndWidth", "borderInlineStart", "borderInlineStartColor", "borderInlineStartStyle", "borderInlineStartWidth", "borderInlineStyle", "borderInlineWidth", "borderLeft", "borderLeftColor", "borderLeftStyle", "borderLeftWidth", "borderRadius", "borderRight", "borderRightColor", "borderRightStyle", "borderRightWidth", "borderSpacing", "borderStartEndRadius", "borderStartStartRadius", "borderStyle", "borderTop", "borderTopColor", "borderTopLeftRadius", "borderTopRightRadius", "borderTopStyle", "borderTopWidth", "borderWidth", "bottom", "bottomMargin", "bound", "boundElements", "boundingClientRect", "boundingHeight", "boundingLeft", "boundingTop", "boundingWidth", "bounds", "boundsGeometry", "box-decoration-break", "box-shadow", "box-sizing", "boxDecorationBreak", "boxShadow", "boxSizing", "brand", "brands", "break-after", "break-before", "break-inside", "breakAfter", "breakBefore", "breakInside", "broadcast", "browserLanguage", "btoa", "bubbles", "buffer", "bufferData", "bufferDepth", "bufferSize", "bufferSubData", "buffered", "bufferedAmount", "bufferedAmountLowThreshold", "buffers", "buildID", "buildNumber", "button", "buttonID", "buttons", "byteLength", "byteOffset", "bytesPerRow", "bytesWritten", "c", "cache", "caches", "call", "caller", "canBeFormatted", "canBeMounted", "canBeShared", "canHaveChildren", "canHaveHTML", "canInsertDTMF", "canMakePayment", "canPlayType", "canPresent", "canTrickleIceCandidates", "cancel", "cancelAndHoldAtTime", "cancelAnimationFrame", "cancelBubble", "cancelIdleCallback", "cancelScheduledValues", "cancelVideoFrameCallback", "cancelWatchAvailability", "cancelable", "candidate", "canonicalUUID", "canvas", "capabilities", "caption", "caption-side", "captionSide", "capture", "captureEvents", "captureStackTrace", "captureStream", "caret-color", "caretBidiLevel", "caretColor", "caretPositionFromPoint", "caretRangeFromPoint", "cast", "catch", "category", "cbrt", "cd", "ceil", "cellIndex", "cellPadding", "cellSpacing", "cells", "ch", "chOff", "chain", "challenge", "changeType", "changedTouches", "channel", "channelCount", "channelCountMode", "channelInterpretation", "char", "charAt", "charCode", "charCodeAt", "charIndex", "charLength", "characterData", "characterDataOldValue", "characterSet", "characteristic", "charging", "chargingTime", "charset", "check", "checkEnclosure", "checkFramebufferStatus", "checkIntersection", "checkValidity", "checked", "childElementCount", "childList", "childNodes", "children", "chrome", "ciphertext", "cite", "city", "claimInterface", "claimed", "classList", "className", "classid", "clear", "clearAppBadge", "clearAttributes", "clearBuffer", "clearBufferfi", "clearBufferfv", "clearBufferiv", "clearBufferuiv", "clearColor", "clearData", "clearDepth", "clearHalt", "clearImmediate", "clearInterval", "clearLiveSeekableRange", "clearMarks", "clearMaxGCPauseAccumulator", "clearMeasures", "clearParameters", "clearRect", "clearResourceTimings", "clearShadow", "clearStencil", "clearTimeout", "clearValue", "clearWatch", "click", "clickCount", "clientDataJSON", "clientHeight", "clientInformation", "clientLeft", "clientRect", "clientRects", "clientTop", "clientWaitSync", "clientWidth", "clientX", "clientY", "clip", "clip-path", "clip-rule", "clipBottom", "clipLeft", "clipPath", "clipPathUnits", "clipRight", "clipRule", "clipTop", "clipboard", "clipboardData", "clone", "cloneContents", "cloneNode", "cloneRange", "close", "closePath", "closed", "closest", "clz", "clz32", "cm", "cmp", "code", "codeBase", "codePointAt", "codeType", "colSpan", "collapse", "collapseToEnd", "collapseToStart", "collapsed", "collect", "colno", "color", "color-adjust", "color-interpolation", "color-interpolation-filters", "colorAdjust", "colorAttachments", "colorDepth", "colorFormats", "colorInterpolation", "colorInterpolationFilters", "colorMask", "colorSpace", "colorType", "cols", "column-count", "column-fill", "column-gap", "column-rule", "column-rule-color", "column-rule-style", "column-rule-width", "column-span", "column-width", "columnCount", "columnFill", "columnGap", "columnNumber", "columnRule", "columnRuleColor", "columnRuleStyle", "columnRuleWidth", "columnSpan", "columnWidth", "columns", "command", "commit", "commitPreferences", "commitStyles", "commonAncestorContainer", "compact", "compare", "compareBoundaryPoints", "compareDocumentPosition", "compareEndPoints", "compareExchange", "compareNode", "comparePoint", "compatMode", "compatible", "compile", "compileShader", "compileStreaming", "complete", "component", "componentFromPoint", "composed", "composedPath", "composite", "compositionEndOffset", "compositionStartOffset", "compressedTexImage2D", "compressedTexImage3D", "compressedTexSubImage2D", "compressedTexSubImage3D", "compute", "computedStyleMap", "concat", "conditionText", "coneInnerAngle", "coneOuterAngle", "coneOuterGain", "configurable", "configuration", "configurationName", "configurationValue", "configurations", "configure", "confirm", "confirmComposition", "confirmSiteSpecificTrackingException", "confirmWebWideTrackingException", "connect", "connectEnd", "connectShark", "connectStart", "connected", "connection", "connectionList", "connectionSpeed", "connectionState", "connections", "console", "consolidate", "constants", "constraint", "constrictionActive", "construct", "constructor", "contactID", "contain", "containerId", "containerName", "containerSrc", "containerType", "contains", "containsNode", "content", "contentBoxSize", "contentDocument", "contentEditable", "contentHint", "contentOverflow", "contentRect", "contentScriptType", "contentStyleType", "contentType", "contentWindow", "context", "contextMenu", "contextmenu", "continue", "continuePrimaryKey", "continuous", "control", "controlTransferIn", "controlTransferOut", "controller", "controls", "controlsList", "convertPointFromNode", "convertQuadFromNode", "convertRectFromNode", "convertToBlob", "convertToSpecifiedUnits", "cookie", "cookieEnabled", "coords", "copyBufferSubData", "copyBufferToBuffer", "copyBufferToTexture", "copyExternalImageToTexture", "copyFromChannel", "copyTexImage2D", "copyTexSubImage2D", "copyTexSubImage3D", "copyTextureToBuffer", "copyTextureToTexture", "copyToChannel", "copyWithin", "correspondingElement", "correspondingUseElement", "corruptedVideoFrames", "cos", "cosh", "count", "countReset", "counter-increment", "counter-reset", "counter-set", "counterIncrement", "counterReset", "counterSet", "country", "cpuClass", "cpuSleepAllowed", "create", "createAnalyser", "createAnswer", "createAttribute", "createAttributeNS", "createBindGroup", "createBindGroupLayout", "createBiquadFilter", "createBuffer", "createBufferSource", "createCDATASection", "createCSSStyleSheet", "createCaption", "createChannelMerger", "createChannelSplitter", "createCommandEncoder", "createComment", "createComputePipeline", "createComputePipelineAsync", "createConstantSource", "createContextualFragment", "createControlRange", "createConvolver", "createDTMFSender", "createDataChannel", "createDelay", "createDelayNode", "createDocument", "createDocumentFragment", "createDocumentType", "createDynamicsCompressor", "createElement", "createElementNS", "createEntityReference", "createEvent", "createEventObject", "createExpression", "createFramebuffer", "createFunction", "createGain", "createGainNode", "createHTML", "createHTMLDocument", "createIIRFilter", "createImageBitmap", "createImageData", "createIndex", "createJavaScriptNode", "createLinearGradient", "createMediaElementSource", "createMediaKeys", "createMediaStreamDestination", "createMediaStreamSource", "createMediaStreamTrackSource", "createMutableFile", "createNSResolver", "createNodeIterator", "createNotification", "createObjectStore", "createObjectURL", "createOffer", "createOscillator", "createPanner", "createPattern", "createPeriodicWave", "createPipelineLayout", "createPolicy", "createPopup", "createProcessingInstruction", "createProgram", "createQuery", "createQuerySet", "createRadialGradient", "createRange", "createRangeCollection", "createReader", "createRenderBundleEncoder", "createRenderPipeline", "createRenderPipelineAsync", "createRenderbuffer", "createSVGAngle", "createSVGLength", "createSVGMatrix", "createSVGNumber", "createSVGPathSegArcAbs", "createSVGPathSegArcRel", "createSVGPathSegClosePath", "createSVGPathSegCurvetoCubicAbs", "createSVGPathSegCurvetoCubicRel", "createSVGPathSegCurvetoCubicSmoothAbs", "createSVGPathSegCurvetoCubicSmoothRel", "createSVGPathSegCurvetoQuadraticAbs", "createSVGPathSegCurvetoQuadraticRel", "createSVGPathSegCurvetoQuadraticSmoothAbs", "createSVGPathSegCurvetoQuadraticSmoothRel", "createSVGPathSegLinetoAbs", "createSVGPathSegLinetoHorizontalAbs", "createSVGPathSegLinetoHorizontalRel", "createSVGPathSegLinetoRel", "createSVGPathSegLinetoVerticalAbs", "createSVGPathSegLinetoVerticalRel", "createSVGPathSegMovetoAbs", "createSVGPathSegMovetoRel", "createSVGPoint", "createSVGRect", "createSVGTransform", "createSVGTransformFromMatrix", "createSampler", "createScript", "createScriptProcessor", "createScriptURL", "createSession", "createShader", "createShaderModule", "createShadowRoot", "createStereoPanner", "createStyleSheet", "createTBody", "createTFoot", "createTHead", "createTextNode", "createTextRange", "createTexture", "createTouch", "createTouchList", "createTransformFeedback", "createTreeWalker", "createVertexArray", "createView", "createWaveShaper", "creationTime", "credentials", "crossOrigin", "crossOriginIsolated", "crypto", "csi", "csp", "cssFloat", "cssRules", "cssText", "cssValueType", "ctrlKey", "ctrlLeft", "cues", "cullFace", "cullMode", "currentDirection", "currentLocalDescription", "currentNode", "currentPage", "currentRect", "currentRemoteDescription", "currentScale", "currentScript", "currentSrc", "currentState", "currentStyle", "currentTarget", "currentTime", "currentTranslate", "currentView", "cursor", "curve", "customElements", "customError", "cx", "cy", "d", "data", "dataFld", "dataFormatAs", "dataLoss", "dataLossMessage", "dataPageSize", "dataSrc", "dataTransfer", "database", "databases", "dataset", "dateTime", "db", "debug", "debuggerEnabled", "declare", "decode", "decodeAudioData", "decodeURI", "decodeURIComponent", "decodedBodySize", "decoding", "decodingInfo", "decrypt", "default", "defaultCharset", "defaultChecked", "defaultMuted", "defaultPlaybackRate", "defaultPolicy", "defaultPrevented", "defaultQueue", "defaultRequest", "defaultSelected", "defaultStatus", "defaultURL", "defaultValue", "defaultView", "defaultstatus", "defer", "define", "defineMagicFunction", "defineMagicVariable", "defineProperties", "defineProperty", "deg", "delay", "delayTime", "delegatesFocus", "delete", "deleteBuffer", "deleteCaption", "deleteCell", "deleteContents", "deleteData", "deleteDatabase", "deleteFramebuffer", "deleteFromDocument", "deleteIndex", "deleteMedium", "deleteObjectStore", "deleteProgram", "deleteProperty", "deleteQuery", "deleteRenderbuffer", "deleteRow", "deleteRule", "deleteSampler", "deleteShader", "deleteSync", "deleteTFoot", "deleteTHead", "deleteTexture", "deleteTransformFeedback", "deleteVertexArray", "deliverChangeRecords", "delivery", "deliveryInfo", "deliveryStatus", "deliveryTimestamp", "delta", "deltaMode", "deltaX", "deltaY", "deltaZ", "dependentLocality", "depthBias", "depthBiasClamp", "depthBiasSlopeScale", "depthClearValue", "depthCompare", "depthFailOp", "depthFar", "depthFunc", "depthLoadOp", "depthMask", "depthNear", "depthOrArrayLayers", "depthRange", "depthReadOnly", "depthStencil", "depthStencilAttachment", "depthStencilFormat", "depthStoreOp", "depthWriteEnabled", "deref", "deriveBits", "deriveKey", "description", "deselectAll", "designMode", "desiredSize", "destination", "destinationURL", "destroy", "detach", "detachEvent", "detachShader", "detail", "details", "detect", "detune", "device", "deviceClass", "deviceId", "deviceMemory", "devicePixelContentBoxSize", "devicePixelRatio", "deviceProtocol", "deviceSubclass", "deviceVersionMajor", "deviceVersionMinor", "deviceVersionSubminor", "deviceXDPI", "deviceYDPI", "didTimeout", "diffuseConstant", "digest", "dimension", "dimensions", "dir", "dirName", "direction", "dirxml", "disable", "disablePictureInPicture", "disableRemotePlayback", "disableVertexAttribArray", "disabled", "dischargingTime", "disconnect", "disconnectShark", "dispatchEvent", "dispatchWorkgroups", "dispatchWorkgroupsIndirect", "display", "displayId", "displayName", "disposition", "distanceModel", "div", "divisor", "djsapi", "djsproxy", "doImport", "doNotTrack", "doScroll", "doctype", "document", "documentElement", "documentMode", "documentURI", "dolphin", "dolphinGameCenter", "dolphininfo", "dolphinmeta", "domComplete", "domContentLoadedEventEnd", "domContentLoadedEventStart", "domInteractive", "domLoading", "domOverlayState", "domain", "domainLookupEnd", "domainLookupStart", "dominant-baseline", "dominantBaseline", "done", "dopplerFactor", "dotAll", "downDegrees", "downlink", "download", "downloadTotal", "downloaded", "dpcm", "dpi", "dppx", "dragDrop", "draggable", "draw", "drawArrays", "drawArraysInstanced", "drawArraysInstancedANGLE", "drawBuffers", "drawCustomFocusRing", "drawElements", "drawElementsInstanced", "drawElementsInstancedANGLE", "drawFocusIfNeeded", "drawImage", "drawImageFromRect", "drawIndexed", "drawIndexedIndirect", "drawIndirect", "drawRangeElements", "drawSystemFocusRing", "drawingBufferHeight", "drawingBufferWidth", "dropEffect", "droppedVideoFrames", "dropzone", "dstFactor", "dtmf", "dump", "dumpProfile", "duplicate", "durability", "duration", "dvname", "dvnum", "dx", "dy", "dynsrc", "e", "edgeMode", "effect", "effectAllowed", "effectiveDirective", "effectiveType", "elapsedTime", "element", "elementFromPoint", "elementTiming", "elements", "elementsFromPoint", "elevation", "ellipse", "em", "email", "embeds", "emma", "empty", "empty-cells", "emptyCells", "emptyHTML", "emptyScript", "emulatedPosition", "enable", "enableBackground", "enableDelegations", "enableStyleSheetsForSet", "enableVertexAttribArray", "enabled", "enabledPlugin", "encode", "encodeInto", "encodeURI", "encodeURIComponent", "encodedBodySize", "encoding", "encodingInfo", "encrypt", "enctype", "end", "endContainer", "endElement", "endElementAt", "endOcclusionQuery", "endOfPassWriteIndex", "endOfStream", "endOffset", "endQuery", "endTime", "endTransformFeedback", "ended", "endpoint", "endpointNumber", "endpoints", "endsWith", "enterKeyHint", "entities", "entries", "entryPoint", "entryType", "enumerable", "enumerate", "enumerateDevices", "enumerateEditable", "environmentBlendMode", "equals", "error", "errorCode", "errorDetail", "errorText", "escape", "estimate", "eval", "evaluate", "event", "eventPhase", "every", "ex", "exception", "exchange", "exec", "execCommand", "execCommandShowHelp", "execScript", "executeBundles", "exitFullscreen", "exitPictureInPicture", "exitPointerLock", "exitPresent", "exp", "expand", "expandEntityReferences", "expando", "expansion", "expiration", "expirationTime", "expires", "expiryDate", "explicitOriginalTarget", "expm1", "exponent", "exponentialRampToValueAtTime", "exportKey", "exports", "extend", "extensions", "extentNode", "extentOffset", "external", "externalResourcesRequired", "externalTexture", "extractContents", "extractable", "eye", "f", "face", "factoryReset", "failOp", "failureReason", "fallback", "family", "familyName", "farthestViewportElement", "fastSeek", "fatal", "featureId", "featurePolicy", "featureSettings", "features", "fenceSync", "fetch", "fetchStart", "fftSize", "fgColor", "fieldOfView", "file", "fileCreatedDate", "fileHandle", "fileModifiedDate", "fileName", "fileSize", "fileUpdatedDate", "filename", "files", "filesystem", "fill", "fill-opacity", "fill-rule", "fillLightMode", "fillOpacity", "fillRect", "fillRule", "fillStyle", "fillText", "filter", "filterResX", "filterResY", "filterUnits", "filters", "finally", "find", "findIndex", "findRule", "findText", "finish", "finished", "fireEvent", "firesTouchEvents", "firstChild", "firstElementChild", "firstPage", "fixed", "flags", "flat", "flatMap", "flex", "flex-basis", "flex-direction", "flex-flow", "flex-grow", "flex-shrink", "flex-wrap", "flexBasis", "flexDirection", "flexFlow", "flexGrow", "flexShrink", "flexWrap", "flipX", "flipY", "float", "float32", "float64", "flood-color", "flood-opacity", "floodColor", "floodOpacity", "floor", "flush", "focus", "focusNode", "focusOffset", "font", "font-family", "font-feature-settings", "font-kerning", "font-language-override", "font-optical-sizing", "font-size", "font-size-adjust", "font-stretch", "font-style", "font-synthesis", "font-variant", "font-variant-alternates", "font-variant-caps", "font-variant-east-asian", "font-variant-ligatures", "font-variant-numeric", "font-variant-position", "font-variation-settings", "font-weight", "fontFamily", "fontFeatureSettings", "fontKerning", "fontLanguageOverride", "fontOpticalSizing", "fontSize", "fontSizeAdjust", "fontSmoothingEnabled", "fontStretch", "fontStyle", "fontSynthesis", "fontVariant", "fontVariantAlternates", "fontVariantCaps", "fontVariantEastAsian", "fontVariantLigatures", "fontVariantNumeric", "fontVariantPosition", "fontVariationSettings", "fontWeight", "fontcolor", "fontfaces", "fonts", "fontsize", "for", "forEach", "force", "forceFallbackAdapter", "forceRedraw", "form", "formAction", "formData", "formEnctype", "formMethod", "formNoValidate", "formTarget", "format", "formatToParts", "forms", "forward", "forwardX", "forwardY", "forwardZ", "foundation", "fr", "fragment", "fragmentDirective", "frame", "frameBorder", "frameElement", "frameSpacing", "framebuffer", "framebufferHeight", "framebufferRenderbuffer", "framebufferTexture2D", "framebufferTextureLayer", "framebufferWidth", "frames", "freeSpace", "freeze", "frequency", "frequencyBinCount", "from", "fromCharCode", "fromCodePoint", "fromElement", "fromEntries", "fromFloat32Array", "fromFloat64Array", "fromMatrix", "fromPoint", "fromQuad", "fromRect", "frontFace", "fround", "fullPath", "fullScreen", "fullVersionList", "fullscreen", "fullscreenElement", "fullscreenEnabled", "fx", "fy", "g", "gain", "gamepad", "gamma", "gap", "gatheringState", "gatt", "genderIdentity", "generateCertificate", "generateKey", "generateMipmap", "generateRequest", "geolocation", "gestureObject", "get", "getActiveAttrib", "getActiveUniform", "getActiveUniformBlockName", "getActiveUniformBlockParameter", "getActiveUniforms", "getAdjacentText", "getAll", "getAllKeys", "getAllResponseHeaders", "getAllowlistForFeature", "getAnimations", "getAsFile", "getAsString", "getAttachedShaders", "getAttribLocation", "getAttribute", "getAttributeNS", "getAttributeNames", "getAttributeNode", "getAttributeNodeNS", "getAttributeType", "getAudioTracks", "getAvailability", "getBBox", "getBattery", "getBigInt64", "getBigUint64", "getBindGroupLayout", "getBlob", "getBookmark", "getBoundingClientRect", "getBounds", "getBoxQuads", "getBufferParameter", "getBufferSubData", "getByteFrequencyData", "getByteTimeDomainData", "getCSSCanvasContext", "getCTM", "getCandidateWindowClientRect", "getCanonicalLocales", "getCapabilities", "getChannelData", "getCharNumAtPosition", "getCharacteristic", "getCharacteristics", "getClientExtensionResults", "getClientRect", "getClientRects", "getCoalescedEvents", "getCompilationInfo", "getCompositionAlternatives", "getComputedStyle", "getComputedTextLength", "getComputedTiming", "getConfiguration", "getConstraints", "getContext", "getContextAttributes", "getContributingSources", "getCounterValue", "getCueAsHTML", "getCueById", "getCurrentPosition", "getCurrentTexture", "getCurrentTime", "getData", "getDatabaseNames", "getDate", "getDay", "getDefaultComputedStyle", "getDescriptor", "getDescriptors", "getDestinationInsertionPoints", "getDevices", "getDirectory", "getDisplayMedia", "getDistributedNodes", "getEditable", "getElementById", "getElementsByClassName", "getElementsByName", "getElementsByTagName", "getElementsByTagNameNS", "getEnclosureList", "getEndPositionOfChar", "getEntries", "getEntriesByName", "getEntriesByType", "getError", "getExtension", "getExtentOfChar", "getEyeParameters", "getFeature", "getFile", "getFiles", "getFilesAndDirectories", "getFingerprints", "getFloat32", "getFloat64", "getFloatFrequencyData", "getFloatTimeDomainData", "getFloatValue", "getFragDataLocation", "getFrameData", "getFramebufferAttachmentParameter", "getFrequencyResponse", "getFullYear", "getGamepads", "getHighEntropyValues", "getHitTestResults", "getHitTestResultsForTransientInput", "getHours", "getIdentityAssertion", "getIds", "getImageData", "getIndexedParameter", "getInstalledRelatedApps", "getInt16", "getInt32", "getInt8", "getInternalformatParameter", "getIntersectionList", "getItem", "getItems", "getKey", "getKeyframes", "getLayers", "getLayoutMap", "getLineDash", "getLocalCandidates", "getLocalParameters", "getLocalStreams", "getMappedRange", "getMarks", "getMatchedCSSRules", "getMaxGCPauseSinceClear", "getMeasures", "getMetadata", "getMilliseconds", "getMinutes", "getModifierState", "getMonth", "getNamedItem", "getNamedItemNS", "getNativeFramebufferScaleFactor", "getNotifications", "getNotifier", "getNumberOfChars", "getOffsetReferenceSpace", "getOutputTimestamp", "getOverrideHistoryNavigationMode", "getOverrideStyle", "getOwnPropertyDescriptor", "getOwnPropertyDescriptors", "getOwnPropertyNames", "getOwnPropertySymbols", "getParameter", "getParameters", "getParent", "getPathSegAtLength", "getPhotoCapabilities", "getPhotoSettings", "getPointAtLength", "getPose", "getPredictedEvents", "getPreference", "getPreferenceDefault", "getPreferredCanvasFormat", "getPresentationAttribute", "getPreventDefault", "getPrimaryService", "getPrimaryServices", "getProgramInfoLog", "getProgramParameter", "getPropertyCSSValue", "getPropertyPriority", "getPropertyShorthand", "getPropertyType", "getPropertyValue", "getPrototypeOf", "getQuery", "getQueryParameter", "getRGBColorValue", "getRandomValues", "getRangeAt", "getReader", "getReceivers", "getRectValue", "getRegistration", "getRegistrations", "getRemoteCandidates", "getRemoteCertificates", "getRemoteParameters", "getRemoteStreams", "getRenderbufferParameter", "getResponseHeader", "getRoot", "getRootNode", "getRotationOfChar", "getSVGDocument", "getSamplerParameter", "getScreenCTM", "getSeconds", "getSelectedCandidatePair", "getSelection", "getSenders", "getService", "getSettings", "getShaderInfoLog", "getShaderParameter", "getShaderPrecisionFormat", "getShaderSource", "getSimpleDuration", "getSiteIcons", "getSources", "getSpeculativeParserUrls", "getStartPositionOfChar", "getStartTime", "getState", "getStats", "getStatusForPolicy", "getStorageUpdates", "getStreamById", "getStringValue", "getSubStringLength", "getSubscription", "getSupportedConstraints", "getSupportedExtensions", "getSupportedFormats", "getSyncParameter", "getSynchronizationSources", "getTags", "getTargetRanges", "getTexParameter", "getTime", "getTimezoneOffset", "getTiming", "getTotalLength", "getTrackById", "getTracks", "getTransceivers", "getTransform", "getTransformFeedbackVarying", "getTransformToElement", "getTransports", "getType", "getTypeMapping", "getUTCDate", "getUTCDay", "getUTCFullYear", "getUTCHours", "getUTCMilliseconds", "getUTCMinutes", "getUTCMonth", "getUTCSeconds", "getUint16", "getUint32", "getUint8", "getUniform", "getUniformBlockIndex", "getUniformIndices", "getUniformLocation", "getUserMedia", "getVRDisplays", "getValues", "getVarDate", "getVariableValue", "getVertexAttrib", "getVertexAttribOffset", "getVideoPlaybackQuality", "getVideoTracks", "getViewerPose", "getViewport", "getVoices", "getWakeLockState", "getWriter", "getYear", "givenName", "global", "globalAlpha", "globalCompositeOperation", "globalThis", "glyphOrientationHorizontal", "glyphOrientationVertical", "glyphRef", "go", "gpu", "grabFrame", "grad", "gradientTransform", "gradientUnits", "grammars", "green", "grid", "grid-area", "grid-auto-columns", "grid-auto-flow", "grid-auto-rows", "grid-column", "grid-column-end", "grid-column-gap", "grid-column-start", "grid-gap", "grid-row", "grid-row-end", "grid-row-gap", "grid-row-start", "grid-template", "grid-template-areas", "grid-template-columns", "grid-template-rows", "gridArea", "gridAutoColumns", "gridAutoFlow", "gridAutoRows", "gridColumn", "gridColumnEnd", "gridColumnGap", "gridColumnStart", "gridGap", "gridRow", "gridRowEnd", "gridRowGap", "gridRowStart", "gridTemplate", "gridTemplateAreas", "gridTemplateColumns", "gridTemplateRows", "gripSpace", "group", "groups", "groupCollapsed", "groupEnd", "groupId", "hadRecentInput", "hand", "handedness", "hapticActuators", "hardwareConcurrency", "has", "hasAttribute", "hasAttributeNS", "hasAttributes", "hasBeenActive", "hasChildNodes", "hasComposition", "hasDynamicOffset", "hasEnrolledInstrument", "hasExtension", "hasExternalDisplay", "hasFeature", "hasFocus", "hasInstance", "hasLayout", "hasOrientation", "hasOwnProperty", "hasPointerCapture", "hasPosition", "hasReading", "hasStorageAccess", "hash", "head", "headers", "heading", "height", "hidden", "hide", "hideFocus", "high", "highWaterMark", "hint", "hints", "history", "honorificPrefix", "honorificSuffix", "horizontalOverflow", "host", "hostCandidate", "hostname", "href", "hrefTranslate", "hreflang", "hspace", "html5TagCheckInerface", "htmlFor", "htmlText", "httpEquiv", "httpRequestStatusCode", "hwTimestamp", "hyphens", "hypot", "iccId", "iceConnectionState", "iceGatheringState", "iceTransport", "icon", "iconURL", "id", "identifier", "identity", "idpLoginUrl", "ignoreBOM", "ignoreCase", "ignoreDepthValues", "image-orientation", "image-rendering", "imageHeight", "imageOrientation", "imageRendering", "imageSizes", "imageSmoothingEnabled", "imageSmoothingQuality", "imageSrcset", "imageWidth", "images", "ime-mode", "imeMode", "implementation", "importExternalTexture", "importKey", "importNode", "importStylesheet", "imports", "impp", "imul", "in", "in1", "in2", "inBandMetadataTrackDispatchType", "inRange", "includes", "incremental", "indeterminate", "index", "indexNames", "indexOf", "indexedDB", "indicate", "indices", "inert", "inertiaDestinationX", "inertiaDestinationY", "info", "init", "initAnimationEvent", "initBeforeLoadEvent", "initClipboardEvent", "initCloseEvent", "initCommandEvent", "initCompositionEvent", "initCustomEvent", "initData", "initDataType", "initDeviceMotionEvent", "initDeviceOrientationEvent", "initDragEvent", "initErrorEvent", "initEvent", "initFocusEvent", "initGestureEvent", "initHashChangeEvent", "initKeyEvent", "initKeyboardEvent", "initMSManipulationEvent", "initMessageEvent", "initMouseEvent", "initMouseScrollEvent", "initMouseWheelEvent", "initMutationEvent", "initNSMouseEvent", "initOverflowEvent", "initPageEvent", "initPageTransitionEvent", "initPointerEvent", "initPopStateEvent", "initProgressEvent", "initScrollAreaEvent", "initSimpleGestureEvent", "initStorageEvent", "initTextEvent", "initTimeEvent", "initTouchEvent", "initTransitionEvent", "initUIEvent", "initWebKitAnimationEvent", "initWebKitTransitionEvent", "initWebKitWheelEvent", "initWheelEvent", "initialTime", "initialize", "initiatorType", "inline-size", "inlineSize", "inlineVerticalFieldOfView", "inner", "innerHTML", "innerHeight", "innerText", "innerWidth", "input", "inputBuffer", "inputEncoding", "inputMethod", "inputMode", "inputSource", "inputSources", "inputType", "inputs", "insertAdjacentElement", "insertAdjacentHTML", "insertAdjacentText", "insertBefore", "insertCell", "insertDTMF", "insertData", "insertDebugMarker", "insertItemBefore", "insertNode", "insertRow", "insertRule", "inset", "inset-block", "inset-block-end", "inset-block-start", "inset-inline", "inset-inline-end", "inset-inline-start", "insetBlock", "insetBlockEnd", "insetBlockStart", "insetInline", "insetInlineEnd", "insetInlineStart", "installing", "instanceRoot", "instantiate", "instantiateStreaming", "instruments", "int16", "int32", "int8", "integrity", "interactionMode", "intercept", "interfaceClass", "interfaceName", "interfaceNumber", "interfaceProtocol", "interfaceSubclass", "interfaces", "interimResults", "internalSubset", "interpretation", "intersectionRatio", "intersectionRect", "intersectsNode", "interval", "invalidIteratorState", "invalidateFramebuffer", "invalidateSubFramebuffer", "inverse", "invertSelf", "is", "is2D", "isActive", "isAlternate", "isArray", "isBingCurrentSearchDefault", "isBuffer", "isCandidateWindowVisible", "isChar", "isCollapsed", "isComposing", "isConcatSpreadable", "isConnected", "isContentEditable", "isContentHandlerRegistered", "isContextLost", "isDefaultNamespace", "isDirectory", "isDisabled", "isEnabled", "isEqual", "isEqualNode", "isExtensible", "isExternalCTAP2SecurityKeySupported", "isFallbackAdapter", "isFile", "isFinite", "isFramebuffer", "isFrozen", "isGenerator", "isHTML", "isHistoryNavigation", "isId", "isIdentity", "isInjected", "isInteger", "isIntersecting", "isLockFree", "isMap", "isMultiLine", "isNaN", "isOpen", "isPointInFill", "isPointInPath", "isPointInRange", "isPointInStroke", "isPrefAlternate", "isPresenting", "isPrimary", "isProgram", "isPropertyImplicit", "isProtocolHandlerRegistered", "isPrototypeOf", "isQuery", "isRenderbuffer", "isSafeInteger", "isSameNode", "isSampler", "isScript", "isScriptURL", "isSealed", "isSecureContext", "isSessionSupported", "isShader", "isSupported", "isSync", "isTextEdit", "isTexture", "isTransformFeedback", "isTrusted", "isTypeSupported", "isUserVerifyingPlatformAuthenticatorAvailable", "isVertexArray", "isView", "isVisible", "isochronousTransferIn", "isochronousTransferOut", "isolation", "italics", "item", "itemId", "itemProp", "itemRef", "itemScope", "itemType", "itemValue", "items", "iterateNext", "iterationComposite", "iterator", "javaEnabled", "jobTitle", "join", "json", "justify-content", "justify-items", "justify-self", "justifyContent", "justifyItems", "justifySelf", "k1", "k2", "k3", "k4", "kHz", "keepalive", "kernelMatrix", "kernelUnitLengthX", "kernelUnitLengthY", "kerning", "key", "keyCode", "keyFor", "keyIdentifier", "keyLightEnabled", "keyLocation", "keyPath", "keyStatuses", "keySystem", "keyText", "keyUsage", "keyboard", "keys", "keytype", "kind", "knee", "label", "labels", "lang", "language", "languages", "largeArcFlag", "lastChild", "lastElementChild", "lastEventId", "lastIndex", "lastIndexOf", "lastInputTime", "lastMatch", "lastMessageSubject", "lastMessageType", "lastModified", "lastModifiedDate", "lastPage", "lastParen", "lastState", "lastStyleSheetSet", "latitude", "layerX", "layerY", "layout", "layoutFlow", "layoutGrid", "layoutGridChar", "layoutGridLine", "layoutGridMode", "layoutGridType", "lbound", "left", "leftContext", "leftDegrees", "leftMargin", "leftProjectionMatrix", "leftViewMatrix", "length", "lengthAdjust", "lengthComputable", "letter-spacing", "letterSpacing", "level", "lighting-color", "lightingColor", "limitingConeAngle", "limits", "line", "line-break", "line-height", "lineAlign", "lineBreak", "lineCap", "lineDashOffset", "lineHeight", "lineJoin", "lineNum", "lineNumber", "linePos", "lineTo", "lineWidth", "linearAcceleration", "linearRampToValueAtTime", "linearVelocity", "lineno", "lines", "link", "linkColor", "linkProgram", "links", "list", "list-style", "list-style-image", "list-style-position", "list-style-type", "listStyle", "listStyleImage", "listStylePosition", "listStyleType", "listener", "load", "loadEventEnd", "loadEventStart", "loadOp", "loadTime", "loadTimes", "loaded", "loading", "localDescription", "localName", "localService", "localStorage", "locale", "localeCompare", "location", "locationbar", "lock", "locked", "lockedFile", "locks", "lodMaxClamp", "lodMinClamp", "log", "log10", "log1p", "log2", "logicalXDPI", "logicalYDPI", "longDesc", "longitude", "lookupNamespaceURI", "lookupPrefix", "loop", "loopEnd", "loopStart", "looping", "lost", "low", "lower", "lowerBound", "lowerOpen", "lowsrc", "m11", "m12", "m13", "m14", "m21", "m22", "m23", "m24", "m31", "m32", "m33", "m34", "m41", "m42", "m43", "m44", "magFilter", "makeXRCompatible", "manifest", "manufacturer", "manufacturerName", "map", "mapAsync", "mapState", "mappedAtCreation", "mapping", "margin", "margin-block", "margin-block-end", "margin-block-start", "margin-bottom", "margin-inline", "margin-inline-end", "margin-inline-start", "margin-left", "margin-right", "margin-top", "marginBlock", "marginBlockEnd", "marginBlockStart", "marginBottom", "marginHeight", "marginInline", "marginInlineEnd", "marginInlineStart", "marginLeft", "marginRight", "marginTop", "marginWidth", "mark", "marker", "marker-end", "marker-mid", "marker-offset", "marker-start", "markerEnd", "markerHeight", "markerMid", "markerOffset", "markerStart", "markerUnits", "markerWidth", "marks", "mask", "mask-clip", "mask-composite", "mask-image", "mask-mode", "mask-origin", "mask-position", "mask-position-x", "mask-position-y", "mask-repeat", "mask-size", "mask-type", "maskClip", "maskComposite", "maskContentUnits", "maskImage", "maskMode", "maskOrigin", "maskPosition", "maskPositionX", "maskPositionY", "maskRepeat", "maskSize", "maskType", "maskUnits", "match", "matchAll", "matchMedia", "matchMedium", "matches", "matrix", "matrixTransform", "max", "max-block-size", "max-height", "max-inline-size", "max-width", "maxActions", "maxAlternatives", "maxAnisotropy", "maxBindGroups", "maxBindGroupsPlusVertexBuffers", "maxBindingsPerBindGroup", "maxBlockSize", "maxBufferSize", "maxChannelCount", "maxChannels", "maxColorAttachmentBytesPerSample", "maxColorAttachments", "maxComputeInvocationsPerWorkgroup", "maxComputeWorkgroupSizeX", "maxComputeWorkgroupSizeY", "maxComputeWorkgroupSizeZ", "maxComputeWorkgroupStorageSize", "maxComputeWorkgroupsPerDimension", "maxConnectionsPerServer", "maxDecibels", "maxDistance", "maxDrawCount", "maxDynamicStorageBuffersPerPipelineLayout", "maxDynamicUniformBuffersPerPipelineLayout", "maxHeight", "maxInlineSize", "maxInterStageShaderComponents", "maxInterStageShaderVariables", "maxLayers", "maxLength", "maxMessageSize", "maxPacketLifeTime", "maxRetransmits", "maxSampledTexturesPerShaderStage", "maxSamplersPerShaderStage", "maxStorageBufferBindingSize", "maxStorageBuffersPerShaderStage", "maxStorageTexturesPerShaderStage", "maxTextureArrayLayers", "maxTextureDimension1D", "maxTextureDimension2D", "maxTextureDimension3D", "maxTouchPoints", "maxUniformBufferBindingSize", "maxUniformBuffersPerShaderStage", "maxValue", "maxVertexAttributes", "maxVertexBufferArrayStride", "maxVertexBuffers", "maxWidth", "measure", "measureText", "media", "mediaCapabilities", "mediaDevices", "mediaElement", "mediaGroup", "mediaKeys", "mediaSession", "mediaStream", "mediaText", "meetOrSlice", "memory", "menubar", "mergeAttributes", "message", "messageClass", "messageHandlers", "messageType", "messages", "metaKey", "metadata", "method", "methodDetails", "methodName", "mid", "mimeType", "mimeTypes", "min", "min-block-size", "min-height", "min-inline-size", "min-width", "minBindingSize", "minBlockSize", "minDecibels", "minFilter", "minHeight", "minInlineSize", "minLength", "minStorageBufferOffsetAlignment", "minUniformBufferOffsetAlignment", "minValue", "minWidth", "mipLevel", "mipLevelCount", "mipmapFilter", "miterLimit", "mix-blend-mode", "mixBlendMode", "mm", "mobile", "mode", "model", "modify", "module", "mount", "move", "moveBy", "moveEnd", "moveFirst", "moveFocusDown", "moveFocusLeft", "moveFocusRight", "moveFocusUp", "moveNext", "moveRow", "moveStart", "moveTo", "moveToBookmark", "moveToElementText", "moveToPoint", "movementX", "movementY", "mozAdd", "mozAnimationStartTime", "mozAnon", "mozApps", "mozAudioCaptured", "mozAudioChannelType", "mozAutoplayEnabled", "mozCancelAnimationFrame", "mozCancelFullScreen", "mozCancelRequestAnimationFrame", "mozCaptureStream", "mozCaptureStreamUntilEnded", "mozClearDataAt", "mozContact", "mozContacts", "mozCreateFileHandle", "mozCurrentTransform", "mozCurrentTransformInverse", "mozCursor", "mozDash", "mozDashOffset", "mozDecodedFrames", "mozExitPointerLock", "mozFillRule", "mozFragmentEnd", "mozFrameDelay", "mozFullScreen", "mozFullScreenElement", "mozFullScreenEnabled", "mozGetAll", "mozGetAllKeys", "mozGetAsFile", "mozGetDataAt", "mozGetMetadata", "mozGetUserMedia", "mozHasAudio", "mozHasItem", "mozHidden", "mozImageSmoothingEnabled", "mozIndexedDB", "mozInnerScreenX", "mozInnerScreenY", "mozInputSource", "mozIsTextField", "mozItem", "mozItemCount", "mozItems", "mozLength", "mozLockOrientation", "mozMatchesSelector", "mozMovementX", "mozMovementY", "mozOpaque", "mozOrientation", "mozPaintCount", "mozPaintedFrames", "mozParsedFrames", "mozPay", "mozPointerLockElement", "mozPresentedFrames", "mozPreservesPitch", "mozPressure", "mozPrintCallback", "mozRTCIceCandidate", "mozRTCPeerConnection", "mozRTCSessionDescription", "mozRemove", "mozRequestAnimationFrame", "mozRequestFullScreen", "mozRequestPointerLock", "mozSetDataAt", "mozSetImageElement", "mozSourceNode", "mozSrcObject", "mozSystem", "mozTCPSocket", "mozTextStyle", "mozTypesAt", "mozUnlockOrientation", "mozUserCancelled", "mozVisibilityState", "ms", "msAnimation", "msAnimationDelay", "msAnimationDirection", "msAnimationDuration", "msAnimationFillMode", "msAnimationIterationCount", "msAnimationName", "msAnimationPlayState", "msAnimationStartTime", "msAnimationTimingFunction", "msBackfaceVisibility", "msBlockProgression", "msCSSOMElementFloatMetrics", "msCaching", "msCachingEnabled", "msCancelRequestAnimationFrame", "msCapsLockWarningOff", "msClearImmediate", "msClose", "msContentZoomChaining", "msContentZoomFactor", "msContentZoomLimit", "msContentZoomLimitMax", "msContentZoomLimitMin", "msContentZoomSnap", "msContentZoomSnapPoints", "msContentZoomSnapType", "msContentZooming", "msConvertURL", "msCrypto", "msDoNotTrack", "msElementsFromPoint", "msElementsFromRect", "msExitFullscreen", "msExtendedCode", "msFillRule", "msFirstPaint", "msFlex", "msFlexAlign", "msFlexDirection", "msFlexFlow", "msFlexItemAlign", "msFlexLinePack", "msFlexNegative", "msFlexOrder", "msFlexPack", "msFlexPositive", "msFlexPreferredSize", "msFlexWrap", "msFlowFrom", "msFlowInto", "msFontFeatureSettings", "msFullscreenElement", "msFullscreenEnabled", "msGetInputContext", "msGetRegionContent", "msGetUntransformedBounds", "msGraphicsTrustStatus", "msGridColumn", "msGridColumnAlign", "msGridColumnSpan", "msGridColumns", "msGridRow", "msGridRowAlign", "msGridRowSpan", "msGridRows", "msHidden", "msHighContrastAdjust", "msHyphenateLimitChars", "msHyphenateLimitLines", "msHyphenateLimitZone", "msHyphens", "msImageSmoothingEnabled", "msImeAlign", "msIndexedDB", "msInterpolationMode", "msIsStaticHTML", "msKeySystem", "msKeys", "msLaunchUri", "msLockOrientation", "msManipulationViewsEnabled", "msMatchMedia", "msMatchesSelector", "msMaxTouchPoints", "msOrientation", "msOverflowStyle", "msPerspective", "msPerspectiveOrigin", "msPlayToDisabled", "msPlayToPreferredSourceUri", "msPlayToPrimary", "msPointerEnabled", "msRegionOverflow", "msReleasePointerCapture", "msRequestAnimationFrame", "msRequestFullscreen", "msSaveBlob", "msSaveOrOpenBlob", "msScrollChaining", "msScrollLimit", "msScrollLimitXMax", "msScrollLimitXMin", "msScrollLimitYMax", "msScrollLimitYMin", "msScrollRails", "msScrollSnapPointsX", "msScrollSnapPointsY", "msScrollSnapType", "msScrollSnapX", "msScrollSnapY", "msScrollTranslation", "msSetImmediate", "msSetMediaKeys", "msSetPointerCapture", "msTextCombineHorizontal", "msTextSizeAdjust", "msToBlob", "msTouchAction", "msTouchSelect", "msTraceAsyncCallbackCompleted", "msTraceAsyncCallbackStarting", "msTraceAsyncOperationCompleted", "msTraceAsyncOperationStarting", "msTransform", "msTransformOrigin", "msTransformStyle", "msTransition", "msTransitionDelay", "msTransitionDuration", "msTransitionProperty", "msTransitionTimingFunction", "msUnlockOrientation", "msUpdateAsyncCallbackRelation", "msUserSelect", "msVisibilityState", "msWrapFlow", "msWrapMargin", "msWrapThrough", "msWriteProfilerMark", "msZoom", "msZoomTo", "mt", "mul", "multiEntry", "multiSelectionObj", "multiline", "multiple", "multiply", "multiplySelf", "multisample", "multisampled", "mutableFile", "muted", "n", "name", "nameProp", "namedItem", "namedRecordset", "names", "namespaceURI", "namespaces", "naturalHeight", "naturalWidth", "navigate", "navigation", "navigationMode", "navigationPreload", "navigationStart", "navigator", "near", "nearestViewportElement", "negative", "negotiated", "netscape", "networkState", "newScale", "newTranslate", "newURL", "newValue", "newValueSpecifiedUnits", "newVersion", "newhome", "next", "nextElementSibling", "nextHopProtocol", "nextNode", "nextPage", "nextSibling", "nickname", "noHref", "noModule", "noResize", "noShade", "noValidate", "noWrap", "node", "nodeName", "nodeType", "nodeValue", "nonce", "normalize", "normalizedPathSegList", "notationName", "notations", "note", "noteGrainOn", "noteOff", "noteOn", "notify", "now", "numOctaves", "number", "numberOfChannels", "numberOfInputs", "numberOfItems", "numberOfOutputs", "numberValue", "oMatchesSelector", "object", "object-fit", "object-position", "objectFit", "objectPosition", "objectStore", "objectStoreNames", "objectType", "observe", "occlusionQuerySet", "of", "offscreenBuffering", "offset", "offset-anchor", "offset-distance", "offset-path", "offset-rotate", "offsetAnchor", "offsetDistance", "offsetHeight", "offsetLeft", "offsetNode", "offsetParent", "offsetPath", "offsetRotate", "offsetTop", "offsetWidth", "offsetX", "offsetY", "ok", "oldURL", "oldValue", "oldVersion", "olderShadowRoot", "onLine", "onSubmittedWorkDone", "onabort", "onabsolutedeviceorientation", "onactivate", "onactive", "onaddsourcebuffer", "onaddstream", "onaddtrack", "onafterprint", "onafterscriptexecute", "onafterupdate", "onanimationcancel", "onanimationend", "onanimationiteration", "onanimationstart", "onappinstalled", "onaudioend", "onaudioprocess", "onaudiostart", "onautocomplete", "onautocompleteerror", "onauxclick", "onbeforeactivate", "onbeforecopy", "onbeforecut", "onbeforedeactivate", "onbeforeeditfocus", "onbeforeinstallprompt", "onbeforepaste", "onbeforeprint", "onbeforescriptexecute", "onbeforeunload", "onbeforeupdate", "onbeforexrselect", "onbegin", "onblocked", "onblur", "onbounce", "onboundary", "onbufferedamountlow", "oncached", "oncancel", "oncandidatewindowhide", "oncandidatewindowshow", "oncandidatewindowupdate", "oncanplay", "oncanplaythrough", "once", "oncellchange", "onchange", "oncharacteristicvaluechanged", "onchargingchange", "onchargingtimechange", "onchecking", "onclick", "onclose", "onclosing", "oncompassneedscalibration", "oncomplete", "onconnect", "onconnecting", "onconnectionavailable", "onconnectionstatechange", "oncontextmenu", "oncontrollerchange", "oncontrolselect", "oncopy", "oncuechange", "oncut", "ondataavailable", "ondatachannel", "ondatasetchanged", "ondatasetcomplete", "ondblclick", "ondeactivate", "ondevicechange", "ondevicelight", "ondevicemotion", "ondeviceorientation", "ondeviceorientationabsolute", "ondeviceproximity", "ondischargingtimechange", "ondisconnect", "ondisplay", "ondownloading", "ondrag", "ondragend", "ondragenter", "ondragexit", "ondragleave", "ondragover", "ondragstart", "ondrop", "ondurationchange", "onemptied", "onencrypted", "onend", "onended", "onenter", "onenterpictureinpicture", "onerror", "onerrorupdate", "onexit", "onfilterchange", "onfinish", "onfocus", "onfocusin", "onfocusout", "onformdata", "onfreeze", "onfullscreenchange", "onfullscreenerror", "ongatheringstatechange", "ongattserverdisconnected", "ongesturechange", "ongestureend", "ongesturestart", "ongotpointercapture", "onhashchange", "onhelp", "onicecandidate", "onicecandidateerror", "oniceconnectionstatechange", "onicegatheringstatechange", "oninactive", "oninput", "oninputsourceschange", "oninvalid", "onkeydown", "onkeypress", "onkeystatuseschange", "onkeyup", "onlanguagechange", "onlayoutcomplete", "onleavepictureinpicture", "onlevelchange", "onload", "onloadeddata", "onloadedmetadata", "onloadend", "onloading", "onloadingdone", "onloadingerror", "onloadstart", "onlosecapture", "onlostpointercapture", "only", "onmark", "onmessage", "onmessageerror", "onmidimessage", "onmousedown", "onmouseenter", "onmouseleave", "onmousemove", "onmouseout", "onmouseover", "onmouseup", "onmousewheel", "onmove", "onmoveend", "onmovestart", "onmozfullscreenchange", "onmozfullscreenerror", "onmozorientationchange", "onmozpointerlockchange", "onmozpointerlockerror", "onmscontentzoom", "onmsfullscreenchange", "onmsfullscreenerror", "onmsgesturechange", "onmsgesturedoubletap", "onmsgestureend", "onmsgesturehold", "onmsgesturestart", "onmsgesturetap", "onmsgotpointercapture", "onmsinertiastart", "onmslostpointercapture", "onmsmanipulationstatechanged", "onmsneedkey", "onmsorientationchange", "onmspointercancel", "onmspointerdown", "onmspointerenter", "onmspointerhover", "onmspointerleave", "onmspointermove", "onmspointerout", "onmspointerover", "onmspointerup", "onmssitemodejumplistitemremoved", "onmsthumbnailclick", "onmute", "onnegotiationneeded", "onnomatch", "onnoupdate", "onobsolete", "onoffline", "ononline", "onopen", "onorientationchange", "onpagechange", "onpagehide", "onpageshow", "onpaste", "onpause", "onpayerdetailchange", "onpaymentmethodchange", "onplay", "onplaying", "onpluginstreamstart", "onpointercancel", "onpointerdown", "onpointerenter", "onpointerleave", "onpointerlockchange", "onpointerlockerror", "onpointermove", "onpointerout", "onpointerover", "onpointerrawupdate", "onpointerup", "onpopstate", "onprocessorerror", "onprogress", "onpropertychange", "onratechange", "onreading", "onreadystatechange", "onrejectionhandled", "onrelease", "onremove", "onremovesourcebuffer", "onremovestream", "onremovetrack", "onrepeat", "onreset", "onresize", "onresizeend", "onresizestart", "onresourcetimingbufferfull", "onresult", "onresume", "onrowenter", "onrowexit", "onrowsdelete", "onrowsinserted", "onscroll", "onsearch", "onsecuritypolicyviolation", "onseeked", "onseeking", "onselect", "onselectedcandidatepairchange", "onselectend", "onselectionchange", "onselectstart", "onshippingaddresschange", "onshippingoptionchange", "onshow", "onsignalingstatechange", "onsoundend", "onsoundstart", "onsourceclose", "onsourceclosed", "onsourceended", "onsourceopen", "onspeechend", "onspeechstart", "onsqueeze", "onsqueezeend", "onsqueezestart", "onstalled", "onstart", "onstatechange", "onstop", "onstorage", "onstoragecommit", "onsubmit", "onsuccess", "onsuspend", "onterminate", "ontextinput", "ontimeout", "ontimeupdate", "ontoggle", "ontonechange", "ontouchcancel", "ontouchend", "ontouchmove", "ontouchstart", "ontrack", "ontransitioncancel", "ontransitionend", "ontransitionrun", "ontransitionstart", "onuncapturederror", "onunhandledrejection", "onunload", "onunmute", "onupdate", "onupdateend", "onupdatefound", "onupdateready", "onupdatestart", "onupgradeneeded", "onuserproximity", "onversionchange", "onvisibilitychange", "onvoiceschanged", "onvolumechange", "onvrdisplayactivate", "onvrdisplayconnect", "onvrdisplaydeactivate", "onvrdisplaydisconnect", "onvrdisplaypresentchange", "onwaiting", "onwaitingforkey", "onwarning", "onwebkitanimationend", "onwebkitanimationiteration", "onwebkitanimationstart", "onwebkitcurrentplaybacktargetiswirelesschanged", "onwebkitfullscreenchange", "onwebkitfullscreenerror", "onwebkitkeyadded", "onwebkitkeyerror", "onwebkitkeymessage", "onwebkitneedkey", "onwebkitorientationchange", "onwebkitplaybacktargetavailabilitychanged", "onwebkitpointerlockchange", "onwebkitpointerlockerror", "onwebkitresourcetimingbufferfull", "onwebkittransitionend", "onwheel", "onzoom", "opacity", "open", "openCursor", "openDatabase", "openKeyCursor", "opened", "opener", "opera", "operation", "operationType", "operator", "opr", "optimum", "options", "or", "order", "orderX", "orderY", "ordered", "org", "organization", "orient", "orientAngle", "orientType", "orientation", "orientationX", "orientationY", "orientationZ", "origin", "originalPolicy", "originalTarget", "orphans", "oscpu", "outerHTML", "outerHeight", "outerText", "outerWidth", "outline", "outline-color", "outline-offset", "outline-style", "outline-width", "outlineColor", "outlineOffset", "outlineStyle", "outlineWidth", "outputBuffer", "outputChannelCount", "outputLatency", "outputs", "overflow", "overflow-anchor", "overflow-block", "overflow-inline", "overflow-wrap", "overflow-x", "overflow-y", "overflowAnchor", "overflowBlock", "overflowInline", "overflowWrap", "overflowX", "overflowY", "overrideMimeType", "oversample", "overscroll-behavior", "overscroll-behavior-block", "overscroll-behavior-inline", "overscroll-behavior-x", "overscroll-behavior-y", "overscrollBehavior", "overscrollBehaviorBlock", "overscrollBehaviorInline", "overscrollBehaviorX", "overscrollBehaviorY", "ownKeys", "ownerDocument", "ownerElement", "ownerNode", "ownerRule", "ownerSVGElement", "owningElement", "p1", "p2", "p3", "p4", "packetSize", "packets", "pad", "padEnd", "padStart", "padding", "padding-block", "padding-block-end", "padding-block-start", "padding-bottom", "padding-inline", "padding-inline-end", "padding-inline-start", "padding-left", "padding-right", "padding-top", "paddingBlock", "paddingBlockEnd", "paddingBlockStart", "paddingBottom", "paddingInline", "paddingInlineEnd", "paddingInlineStart", "paddingLeft", "paddingRight", "paddingTop", "page", "page-break-after", "page-break-before", "page-break-inside", "pageBreakAfter", "pageBreakBefore", "pageBreakInside", "pageCount", "pageLeft", "pageTop", "pageX", "pageXOffset", "pageY", "pageYOffset", "pages", "paint-order", "paintOrder", "paintRequests", "paintType", "paintWorklet", "palette", "pan", "panningModel", "parameterData", "parameters", "parent", "parentElement", "parentNode", "parentRule", "parentStyleSheet", "parentTextEdit", "parentWindow", "parse", "parseAll", "parseFloat", "parseFromString", "parseInt", "part", "participants", "passOp", "passive", "password", "pasteHTML", "path", "pathLength", "pathSegList", "pathSegType", "pathSegTypeAsLetter", "pathname", "pattern", "patternContentUnits", "patternMismatch", "patternTransform", "patternUnits", "pause", "pauseAnimations", "pauseOnExit", "pauseProfilers", "pauseTransformFeedback", "paused", "payerEmail", "payerName", "payerPhone", "paymentManager", "pc", "peerIdentity", "pending", "pendingLocalDescription", "pendingRemoteDescription", "percent", "performance", "periodicSync", "permission", "permissionState", "permissions", "persist", "persisted", "personalbar", "perspective", "perspective-origin", "perspectiveOrigin", "phone", "phoneticFamilyName", "phoneticGivenName", "photo", "pictureInPictureElement", "pictureInPictureEnabled", "pictureInPictureWindow", "ping", "pipeThrough", "pipeTo", "pitch", "pixelBottom", "pixelDepth", "pixelHeight", "pixelLeft", "pixelRight", "pixelStorei", "pixelTop", "pixelUnitToMillimeterX", "pixelUnitToMillimeterY", "pixelWidth", "place-content", "place-items", "place-self", "placeContent", "placeItems", "placeSelf", "placeholder", "platform", "platformVersion", "platforms", "play", "playEffect", "playState", "playbackRate", "playbackState", "playbackTime", "played", "playoutDelayHint", "playsInline", "plugins", "pluginspage", "pname", "pointer-events", "pointerBeforeReferenceNode", "pointerEnabled", "pointerEvents", "pointerId", "pointerLockElement", "pointerType", "points", "pointsAtX", "pointsAtY", "pointsAtZ", "polygonOffset", "pop", "popDebugGroup", "popErrorScope", "populateMatrix", "popupWindowFeatures", "popupWindowName", "popupWindowURI", "port", "port1", "port2", "ports", "posBottom", "posHeight", "posLeft", "posRight", "posTop", "posWidth", "pose", "position", "positionAlign", "positionX", "positionY", "positionZ", "postError", "postMessage", "postalCode", "poster", "pow", "powerEfficient", "powerOff", "powerPreference", "preMultiplySelf", "precision", "preferredStyleSheetSet", "preferredStylesheetSet", "prefix", "preload", "premultipliedAlpha", "prepend", "presentation", "preserveAlpha", "preserveAspectRatio", "preserveAspectRatioString", "pressed", "pressure", "prevValue", "preventDefault", "preventExtensions", "preventSilentAccess", "previousElementSibling", "previousNode", "previousPage", "previousRect", "previousScale", "previousSibling", "previousTranslate", "primaryKey", "primitive", "primitiveType", "primitiveUnits", "principals", "print", "priority", "privateKey", "probablySupportsContext", "process", "processIceMessage", "processingEnd", "processingStart", "processorOptions", "product", "productId", "productName", "productSub", "profile", "profileEnd", "profiles", "projectionMatrix", "promise", "prompt", "properties", "propertyIsEnumerable", "propertyName", "protocol", "protocolLong", "prototype", "provider", "pseudoClass", "pseudoElement", "pt", "publicId", "publicKey", "published", "pulse", "push", "pushDebugGroup", "pushErrorScope", "pushManager", "pushNotification", "pushState", "put", "putImageData", "px", "quadraticCurveTo", "qualifier", "quaternion", "query", "queryCommandEnabled", "queryCommandIndeterm", "queryCommandState", "queryCommandSupported", "queryCommandText", "queryCommandValue", "querySelector", "querySelectorAll", "querySet", "queue", "queueMicrotask", "quote", "quotes", "r", "r1", "r2", "race", "rad", "radiogroup", "radiusX", "radiusY", "random", "range", "rangeCount", "rangeMax", "rangeMin", "rangeOffset", "rangeOverflow", "rangeParent", "rangeUnderflow", "rate", "ratio", "raw", "rawId", "read", "readAsArrayBuffer", "readAsBinaryString", "readAsBlob", "readAsDataURL", "readAsText", "readBuffer", "readEntries", "readOnly", "readPixels", "readReportRequested", "readText", "readValue", "readable", "ready", "readyState", "reason", "reboot", "receivedAlert", "receiver", "receivers", "recipient", "reconnect", "recordNumber", "recordsAvailable", "recordset", "rect", "red", "redEyeReduction", "redirect", "redirectCount", "redirectEnd", "redirectStart", "redirected", "reduce", "reduceRight", "reduction", "refDistance", "refX", "refY", "referenceNode", "referenceSpace", "referrer", "referrerPolicy", "refresh", "region", "regionAnchorX", "regionAnchorY", "regionId", "regions", "register", "registerContentHandler", "registerElement", "registerProperty", "registerProtocolHandler", "reject", "rel", "relList", "relatedAddress", "relatedNode", "relatedPort", "relatedTarget", "release", "releaseCapture", "releaseEvents", "releaseInterface", "releaseLock", "releasePointerCapture", "releaseShaderCompiler", "reliable", "reliableWrite", "reload", "rem", "remainingSpace", "remote", "remoteDescription", "remove", "removeAllRanges", "removeAttribute", "removeAttributeNS", "removeAttributeNode", "removeBehavior", "removeChild", "removeCue", "removeEventListener", "removeFilter", "removeImport", "removeItem", "removeListener", "removeNamedItem", "removeNamedItemNS", "removeNode", "removeParameter", "removeProperty", "removeRange", "removeRegion", "removeRule", "removeSiteSpecificTrackingException", "removeSourceBuffer", "removeStream", "removeTrack", "removeVariable", "removeWakeLockListener", "removeWebWideTrackingException", "removed", "removedNodes", "renderHeight", "renderState", "renderTime", "renderWidth", "renderbufferStorage", "renderbufferStorageMultisample", "renderedBuffer", "renderingMode", "renotify", "repeat", "replace", "replaceAdjacentText", "replaceAll", "replaceChild", "replaceChildren", "replaceData", "replaceId", "replaceItem", "replaceNode", "replaceState", "replaceSync", "replaceTrack", "replaceWholeText", "replaceWith", "reportValidity", "request", "requestAdapter", "requestAdapterInfo", "requestAnimationFrame", "requestAutocomplete", "requestData", "requestDevice", "requestFrame", "requestFullscreen", "requestHitTestSource", "requestHitTestSourceForTransientInput", "requestId", "requestIdleCallback", "requestMIDIAccess", "requestMediaKeySystemAccess", "requestPermission", "requestPictureInPicture", "requestPointerLock", "requestPresent", "requestReferenceSpace", "requestSession", "requestStart", "requestStorageAccess", "requestSubmit", "requestVideoFrameCallback", "requestingWindow", "requireInteraction", "required", "requiredExtensions", "requiredFeatures", "requiredLimits", "reset", "resetPose", "resetTransform", "resize", "resizeBy", "resizeTo", "resolve", "resolveQuerySet", "resolveTarget", "resource", "response", "responseBody", "responseEnd", "responseReady", "responseStart", "responseText", "responseType", "responseURL", "responseXML", "restartIce", "restore", "result", "resultIndex", "resultType", "results", "resume", "resumeProfilers", "resumeTransformFeedback", "retry", "returnValue", "rev", "reverse", "reversed", "revocable", "revokeObjectURL", "rgbColor", "right", "rightContext", "rightDegrees", "rightMargin", "rightProjectionMatrix", "rightViewMatrix", "role", "rolloffFactor", "root", "rootBounds", "rootElement", "rootMargin", "rotate", "rotateAxisAngle", "rotateAxisAngleSelf", "rotateFromVector", "rotateFromVectorSelf", "rotateSelf", "rotation", "rotationAngle", "rotationRate", "round", "roundRect", "row-gap", "rowGap", "rowIndex", "rowSpan", "rows", "rowsPerImage", "rtcpTransport", "rtt", "ruby-align", "ruby-position", "rubyAlign", "rubyOverhang", "rubyPosition", "rules", "runtime", "runtimeStyle", "rx", "ry", "s", "safari", "sample", "sampleCount", "sampleCoverage", "sampleRate", "sampleType", "sampler", "samplerParameterf", "samplerParameteri", "sandbox", "save", "saveData", "scale", "scale3d", "scale3dSelf", "scaleNonUniform", "scaleNonUniformSelf", "scaleSelf", "scheme", "scissor", "scope", "scopeName", "scoped", "screen", "screenBrightness", "screenEnabled", "screenLeft", "screenPixelToMillimeterX", "screenPixelToMillimeterY", "screenTop", "screenX", "screenY", "scriptURL", "scripts", "scroll", "scroll-behavior", "scroll-margin", "scroll-margin-block", "scroll-margin-block-end", "scroll-margin-block-start", "scroll-margin-bottom", "scroll-margin-inline", "scroll-margin-inline-end", "scroll-margin-inline-start", "scroll-margin-left", "scroll-margin-right", "scroll-margin-top", "scroll-padding", "scroll-padding-block", "scroll-padding-block-end", "scroll-padding-block-start", "scroll-padding-bottom", "scroll-padding-inline", "scroll-padding-inline-end", "scroll-padding-inline-start", "scroll-padding-left", "scroll-padding-right", "scroll-padding-top", "scroll-snap-align", "scroll-snap-type", "scrollAmount", "scrollBehavior", "scrollBy", "scrollByLines", "scrollByPages", "scrollDelay", "scrollHeight", "scrollIntoView", "scrollIntoViewIfNeeded", "scrollLeft", "scrollLeftMax", "scrollMargin", "scrollMarginBlock", "scrollMarginBlockEnd", "scrollMarginBlockStart", "scrollMarginBottom", "scrollMarginInline", "scrollMarginInlineEnd", "scrollMarginInlineStart", "scrollMarginLeft", "scrollMarginRight", "scrollMarginTop", "scrollMaxX", "scrollMaxY", "scrollPadding", "scrollPaddingBlock", "scrollPaddingBlockEnd", "scrollPaddingBlockStart", "scrollPaddingBottom", "scrollPaddingInline", "scrollPaddingInlineEnd", "scrollPaddingInlineStart", "scrollPaddingLeft", "scrollPaddingRight", "scrollPaddingTop", "scrollRestoration", "scrollSnapAlign", "scrollSnapType", "scrollTo", "scrollTop", "scrollTopMax", "scrollWidth", "scrollX", "scrollY", "scrollbar-color", "scrollbar-width", "scrollbar3dLightColor", "scrollbarArrowColor", "scrollbarBaseColor", "scrollbarColor", "scrollbarDarkShadowColor", "scrollbarFaceColor", "scrollbarHighlightColor", "scrollbarShadowColor", "scrollbarTrackColor", "scrollbarWidth", "scrollbars", "scrolling", "scrollingElement", "sctp", "sctpCauseCode", "sdp", "sdpLineNumber", "sdpMLineIndex", "sdpMid", "seal", "search", "searchBox", "searchBoxJavaBridge_", "searchParams", "sectionRowIndex", "secureConnectionStart", "security", "seed", "seekToNextFrame", "seekable", "seeking", "select", "selectAllChildren", "selectAlternateInterface", "selectConfiguration", "selectNode", "selectNodeContents", "selectNodes", "selectSingleNode", "selectSubString", "selected", "selectedIndex", "selectedOptions", "selectedStyleSheetSet", "selectedStylesheetSet", "selection", "selectionDirection", "selectionEnd", "selectionStart", "selector", "selectorText", "self", "send", "sendAsBinary", "sendBeacon", "sender", "sentAlert", "sentTimestamp", "separator", "serialNumber", "serializeToString", "serverTiming", "service", "serviceWorker", "session", "sessionId", "sessionStorage", "set", "setActionHandler", "setActive", "setAlpha", "setAppBadge", "setAttribute", "setAttributeNS", "setAttributeNode", "setAttributeNodeNS", "setBaseAndExtent", "setBigInt64", "setBigUint64", "setBindGroup", "setBingCurrentSearchDefault", "setBlendConstant", "setCapture", "setCodecPreferences", "setColor", "setCompositeOperation", "setConfiguration", "setCurrentTime", "setCustomValidity", "setData", "setDate", "setDragImage", "setEnd", "setEndAfter", "setEndBefore", "setEndPoint", "setFillColor", "setFilterRes", "setFloat32", "setFloat64", "setFloatValue", "setFormValue", "setFullYear", "setHeaderValue", "setHours", "setIdentityProvider", "setImmediate", "setIndexBuffer", "setInt16", "setInt32", "setInt8", "setInterval", "setItem", "setKeyframes", "setLineCap", "setLineDash", "setLineJoin", "setLineWidth", "setLiveSeekableRange", "setLocalDescription", "setMatrix", "setMatrixValue", "setMediaKeys", "setMilliseconds", "setMinutes", "setMiterLimit", "setMonth", "setNamedItem", "setNamedItemNS", "setNonUserCodeExceptions", "setOrientToAngle", "setOrientToAuto", "setOrientation", "setOverrideHistoryNavigationMode", "setPaint", "setParameter", "setParameters", "setPeriodicWave", "setPipeline", "setPointerCapture", "setPosition", "setPositionState", "setPreference", "setProperty", "setPrototypeOf", "setRGBColor", "setRGBColorICCColor", "setRadius", "setRangeText", "setRemoteDescription", "setRequestHeader", "setResizable", "setResourceTimingBufferSize", "setRotate", "setScale", "setScissorRect", "setSeconds", "setSelectionRange", "setServerCertificate", "setShadow", "setSinkId", "setSkewX", "setSkewY", "setStart", "setStartAfter", "setStartBefore", "setStdDeviation", "setStencilReference", "setStreams", "setStringValue", "setStrokeColor", "setSuggestResult", "setTargetAtTime", "setTargetValueAtTime", "setTime", "setTimeout", "setTransform", "setTranslate", "setUTCDate", "setUTCFullYear", "setUTCHours", "setUTCMilliseconds", "setUTCMinutes", "setUTCMonth", "setUTCSeconds", "setUint16", "setUint32", "setUint8", "setUri", "setValidity", "setValueAtTime", "setValueCurveAtTime", "setVariable", "setVelocity", "setVersion", "setVertexBuffer", "setViewport", "setYear", "settingName", "settingValue", "sex", "shaderLocation", "shaderSource", "shadowBlur", "shadowColor", "shadowOffsetX", "shadowOffsetY", "shadowRoot", "shape", "shape-image-threshold", "shape-margin", "shape-outside", "shape-rendering", "shapeImageThreshold", "shapeMargin", "shapeOutside", "shapeRendering", "sheet", "shift", "shiftKey", "shiftLeft", "shippingAddress", "shippingOption", "shippingType", "show", "showHelp", "showModal", "showModalDialog", "showModelessDialog", "showNotification", "sidebar", "sign", "signal", "signalingState", "signature", "silent", "sin", "singleNodeValue", "sinh", "sinkId", "sittingToStandingTransform", "size", "sizeToContent", "sizeX", "sizeZ", "sizes", "skewX", "skewXSelf", "skewY", "skewYSelf", "slice", "slope", "slot", "small", "smil", "smooth", "smoothingTimeConstant", "snapToLines", "snapshotItem", "snapshotLength", "some", "sort", "sortingCode", "source", "sourceBuffer", "sourceBuffers", "sourceCapabilities", "sourceFile", "sourceIndex", "sourceMap", "sources", "spacing", "span", "speak", "speakAs", "speaking", "species", "specified", "specularConstant", "specularExponent", "speechSynthesis", "speed", "speedOfSound", "spellcheck", "splice", "split", "splitText", "spreadMethod", "sqrt", "src", "srcElement", "srcFactor", "srcFilter", "srcObject", "srcUrn", "srcdoc", "srclang", "srcset", "stack", "stackTraceLimit", "stacktrace", "stageParameters", "standalone", "standby", "start", "startContainer", "startIce", "startMessages", "startNotifications", "startOffset", "startProfiling", "startRendering", "startShark", "startTime", "startsWith", "state", "status", "statusCode", "statusMessage", "statusText", "statusbar", "stdDeviationX", "stdDeviationY", "stencilBack", "stencilClearValue", "stencilFront", "stencilFunc", "stencilFuncSeparate", "stencilLoadOp", "stencilMask", "stencilMaskSeparate", "stencilOp", "stencilOpSeparate", "stencilReadMask", "stencilReadOnly", "stencilStoreOp", "stencilWriteMask", "step", "stepDown", "stepMismatch", "stepMode", "stepUp", "sticky", "stitchTiles", "stop", "stop-color", "stop-opacity", "stopColor", "stopImmediatePropagation", "stopNotifications", "stopOpacity", "stopProfiling", "stopPropagation", "stopShark", "stopped", "storage", "storageArea", "storageName", "storageStatus", "storageTexture", "store", "storeOp", "storeSiteSpecificTrackingException", "storeWebWideTrackingException", "stpVersion", "stream", "streams", "stretch", "strike", "string", "stringValue", "stringify", "stripIndexFormat", "stroke", "stroke-dasharray", "stroke-dashoffset", "stroke-linecap", "stroke-linejoin", "stroke-miterlimit", "stroke-opacity", "stroke-width", "strokeDasharray", "strokeDashoffset", "strokeLinecap", "strokeLinejoin", "strokeMiterlimit", "strokeOpacity", "strokeRect", "strokeStyle", "strokeText", "strokeWidth", "style", "styleFloat", "styleMap", "styleMedia", "styleSheet", "styleSheetSets", "styleSheets", "sub", "subarray", "subject", "submit", "submitFrame", "submitter", "subscribe", "substr", "substring", "substringData", "subtle", "subtree", "suffix", "suffixes", "summary", "sup", "supported", "supportedContentEncodings", "supportedEntryTypes", "supports", "supportsSession", "surfaceScale", "surroundContents", "suspend", "suspendRedraw", "swapCache", "swapNode", "sweepFlag", "symbols", "sync", "sysexEnabled", "system", "systemCode", "systemId", "systemLanguage", "systemXDPI", "systemYDPI", "tBodies", "tFoot", "tHead", "tabIndex", "table", "table-layout", "tableLayout", "tableValues", "tag", "tagName", "tagUrn", "tags", "taintEnabled", "takePhoto", "takeRecords", "tan", "tangentialPressure", "tanh", "target", "targetElement", "targetRayMode", "targetRaySpace", "targetTouches", "targetX", "targetY", "targets", "tcpType", "tee", "tel", "terminate", "test", "texImage2D", "texImage3D", "texParameterf", "texParameteri", "texStorage2D", "texStorage3D", "texSubImage2D", "texSubImage3D", "text", "text-align", "text-align-last", "text-anchor", "text-combine-upright", "text-decoration", "text-decoration-color", "text-decoration-line", "text-decoration-skip-ink", "text-decoration-style", "text-decoration-thickness", "text-emphasis", "text-emphasis-color", "text-emphasis-position", "text-emphasis-style", "text-indent", "text-justify", "text-orientation", "text-overflow", "text-rendering", "text-shadow", "text-transform", "text-underline-offset", "text-underline-position", "textAlign", "textAlignLast", "textAnchor", "textAutospace", "textBaseline", "textCombineUpright", "textContent", "textDecoration", "textDecorationBlink", "textDecorationColor", "textDecorationLine", "textDecorationLineThrough", "textDecorationNone", "textDecorationOverline", "textDecorationSkipInk", "textDecorationStyle", "textDecorationThickness", "textDecorationUnderline", "textEmphasis", "textEmphasisColor", "textEmphasisPosition", "textEmphasisStyle", "textIndent", "textJustify", "textJustifyTrim", "textKashida", "textKashidaSpace", "textLength", "textOrientation", "textOverflow", "textRendering", "textShadow", "textTracks", "textTransform", "textUnderlineOffset", "textUnderlinePosition", "texture", "then", "threadId", "threshold", "thresholds", "tiltX", "tiltY", "time", "timeEnd", "timeLog", "timeOrigin", "timeRemaining", "timeStamp", "timecode", "timeline", "timelineTime", "timeout", "timestamp", "timestampOffset", "timestampWrites", "timing", "title", "to", "toArray", "toBlob", "toDataURL", "toDateString", "toElement", "toExponential", "toFixed", "toFloat32Array", "toFloat64Array", "toGMTString", "toISOString", "toJSON", "toLocaleDateString", "toLocaleFormat", "toLocaleLowerCase", "toLocaleString", "toLocaleTimeString", "toLocaleUpperCase", "toLowerCase", "toMatrix", "toMethod", "toPrecision", "toPrimitive", "toSdp", "toSource", "toStaticHTML", "toString", "toStringTag", "toSum", "toTimeString", "toUTCString", "toUpperCase", "toggle", "toggleAttribute", "toggleLongPressEnabled", "tone", "toneBuffer", "tooLong", "tooShort", "toolbar", "top", "topMargin", "topology", "total", "totalFrameDelay", "totalVideoFrames", "touch-action", "touchAction", "touched", "touches", "trace", "track", "trackVisibility", "transaction", "transactions", "transceiver", "transferControlToOffscreen", "transferFromImageBitmap", "transferImageBitmap", "transferIn", "transferOut", "transferSize", "transferToImageBitmap", "transform", "transform-box", "transform-origin", "transform-style", "transformBox", "transformFeedbackVaryings", "transformOrigin", "transformPoint", "transformString", "transformStyle", "transformToDocument", "transformToFragment", "transition", "transition-delay", "transition-duration", "transition-property", "transition-timing-function", "transitionDelay", "transitionDuration", "transitionProperty", "transitionTimingFunction", "translate", "translateSelf", "translationX", "translationY", "transport", "trim", "trimEnd", "trimLeft", "trimRight", "trimStart", "trueSpeed", "trunc", "truncate", "trustedTypes", "turn", "twist", "type", "typeDetail", "typeMismatch", "typeMustMatch", "types", "u2f", "ubound", "uint16", "uint32", "uint8", "uint8Clamped", "unclippedDepth", "unconfigure", "undefined", "unescape", "uneval", "unicode", "unicode-bidi", "unicodeBidi", "unicodeRange", "uniform1f", "uniform1fv", "uniform1i", "uniform1iv", "uniform1ui", "uniform1uiv", "uniform2f", "uniform2fv", "uniform2i", "uniform2iv", "uniform2ui", "uniform2uiv", "uniform3f", "uniform3fv", "uniform3i", "uniform3iv", "uniform3ui", "uniform3uiv", "uniform4f", "uniform4fv", "uniform4i", "uniform4iv", "uniform4ui", "uniform4uiv", "uniformBlockBinding", "uniformMatrix2fv", "uniformMatrix2x3fv", "uniformMatrix2x4fv", "uniformMatrix3fv", "uniformMatrix3x2fv", "uniformMatrix3x4fv", "uniformMatrix4fv", "uniformMatrix4x2fv", "uniformMatrix4x3fv", "unique", "uniqueID", "uniqueNumber", "unit", "unitType", "units", "unloadEventEnd", "unloadEventStart", "unlock", "unmap", "unmount", "unobserve", "unpause", "unpauseAnimations", "unreadCount", "unregister", "unregisterContentHandler", "unregisterProtocolHandler", "unscopables", "unselectable", "unshift", "unsubscribe", "unsuspendRedraw", "unsuspendRedrawAll", "unwatch", "unwrapKey", "upDegrees", "upX", "upY", "upZ", "update", "updateCommands", "updateIce", "updateInterval", "updatePlaybackRate", "updateRenderState", "updateSettings", "updateTiming", "updateViaCache", "updateWith", "updated", "updating", "upgrade", "upload", "uploadTotal", "uploaded", "upper", "upperBound", "upperOpen", "uri", "url", "urn", "urns", "usage", "usages", "usb", "usbVersionMajor", "usbVersionMinor", "usbVersionSubminor", "useCurrentView", "useMap", "useProgram", "usedSpace", "user-select", "userActivation", "userAgent", "userAgentData", "userChoice", "userHandle", "userHint", "userLanguage", "userSelect", "userVisibleOnly", "username", "usernameFragment", "utterance", "uuid", "v8BreakIterator", "vAlign", "vLink", "valid", "validate", "validateProgram", "validationMessage", "validity", "value", "valueAsDate", "valueAsNumber", "valueAsString", "valueInSpecifiedUnits", "valueMissing", "valueOf", "valueText", "valueType", "values", "variable", "variant", "variationSettings", "vector-effect", "vectorEffect", "velocityAngular", "velocityExpansion", "velocityX", "velocityY", "vendor", "vendorId", "vendorSub", "verify", "version", "vertex", "vertexAttrib1f", "vertexAttrib1fv", "vertexAttrib2f", "vertexAttrib2fv", "vertexAttrib3f", "vertexAttrib3fv", "vertexAttrib4f", "vertexAttrib4fv", "vertexAttribDivisor", "vertexAttribDivisorANGLE", "vertexAttribI4i", "vertexAttribI4iv", "vertexAttribI4ui", "vertexAttribI4uiv", "vertexAttribIPointer", "vertexAttribPointer", "vertical", "vertical-align", "verticalAlign", "verticalOverflow", "vh", "vibrate", "vibrationActuator", "videoBitsPerSecond", "videoHeight", "videoTracks", "videoWidth", "view", "viewBox", "viewBoxString", "viewDimension", "viewFormats", "viewTarget", "viewTargetString", "viewport", "viewportAnchorX", "viewportAnchorY", "viewportElement", "views", "violatedDirective", "visibility", "visibilityState", "visible", "visualViewport", "vlinkColor", "vmax", "vmin", "voice", "voiceURI", "volume", "vrml", "vspace", "vw", "w", "wait", "waitSync", "waiting", "wake", "wakeLock", "wand", "warn", "wasClean", "wasDiscarded", "watch", "watchAvailability", "watchPosition", "webdriver", "webkitAddKey", "webkitAlignContent", "webkitAlignItems", "webkitAlignSelf", "webkitAnimation", "webkitAnimationDelay", "webkitAnimationDirection", "webkitAnimationDuration", "webkitAnimationFillMode", "webkitAnimationIterationCount", "webkitAnimationName", "webkitAnimationPlayState", "webkitAnimationTimingFunction", "webkitAppearance", "webkitAudioContext", "webkitAudioDecodedByteCount", "webkitAudioPannerNode", "webkitBackfaceVisibility", "webkitBackground", "webkitBackgroundAttachment", "webkitBackgroundClip", "webkitBackgroundColor", "webkitBackgroundImage", "webkitBackgroundOrigin", "webkitBackgroundPosition", "webkitBackgroundPositionX", "webkitBackgroundPositionY", "webkitBackgroundRepeat", "webkitBackgroundSize", "webkitBackingStorePixelRatio", "webkitBorderBottomLeftRadius", "webkitBorderBottomRightRadius", "webkitBorderImage", "webkitBorderImageOutset", "webkitBorderImageRepeat", "webkitBorderImageSlice", "webkitBorderImageSource", "webkitBorderImageWidth", "webkitBorderRadius", "webkitBorderTopLeftRadius", "webkitBorderTopRightRadius", "webkitBoxAlign", "webkitBoxDirection", "webkitBoxFlex", "webkitBoxOrdinalGroup", "webkitBoxOrient", "webkitBoxPack", "webkitBoxShadow", "webkitBoxSizing", "webkitCancelAnimationFrame", "webkitCancelFullScreen", "webkitCancelKeyRequest", "webkitCancelRequestAnimationFrame", "webkitClearResourceTimings", "webkitClosedCaptionsVisible", "webkitConvertPointFromNodeToPage", "webkitConvertPointFromPageToNode", "webkitCreateShadowRoot", "webkitCurrentFullScreenElement", "webkitCurrentPlaybackTargetIsWireless", "webkitDecodedFrameCount", "webkitDirectionInvertedFromDevice", "webkitDisplayingFullscreen", "webkitDroppedFrameCount", "webkitEnterFullScreen", "webkitEnterFullscreen", "webkitEntries", "webkitExitFullScreen", "webkitExitFullscreen", "webkitExitPointerLock", "webkitFilter", "webkitFlex", "webkitFlexBasis", "webkitFlexDirection", "webkitFlexFlow", "webkitFlexGrow", "webkitFlexShrink", "webkitFlexWrap", "webkitFullScreenKeyboardInputAllowed", "webkitFullscreenElement", "webkitFullscreenEnabled", "webkitGenerateKeyRequest", "webkitGetAsEntry", "webkitGetDatabaseNames", "webkitGetEntries", "webkitGetEntriesByName", "webkitGetEntriesByType", "webkitGetFlowByName", "webkitGetGamepads", "webkitGetImageDataHD", "webkitGetNamedFlows", "webkitGetRegionFlowRanges", "webkitGetUserMedia", "webkitHasClosedCaptions", "webkitHidden", "webkitIDBCursor", "webkitIDBDatabase", "webkitIDBDatabaseError", "webkitIDBDatabaseException", "webkitIDBFactory", "webkitIDBIndex", "webkitIDBKeyRange", "webkitIDBObjectStore", "webkitIDBRequest", "webkitIDBTransaction", "webkitImageSmoothingEnabled", "webkitIndexedDB", "webkitInitMessageEvent", "webkitIsFullScreen", "webkitJustifyContent", "webkitKeys", "webkitLineClamp", "webkitLineDashOffset", "webkitLockOrientation", "webkitMask", "webkitMaskClip", "webkitMaskComposite", "webkitMaskImage", "webkitMaskOrigin", "webkitMaskPosition", "webkitMaskPositionX", "webkitMaskPositionY", "webkitMaskRepeat", "webkitMaskSize", "webkitMatchesSelector", "webkitMediaStream", "webkitNotifications", "webkitOfflineAudioContext", "webkitOrder", "webkitOrientation", "webkitPeerConnection00", "webkitPersistentStorage", "webkitPerspective", "webkitPerspectiveOrigin", "webkitPointerLockElement", "webkitPostMessage", "webkitPreservesPitch", "webkitPutImageDataHD", "webkitRTCPeerConnection", "webkitRegionOverset", "webkitRelativePath", "webkitRequestAnimationFrame", "webkitRequestFileSystem", "webkitRequestFullScreen", "webkitRequestFullscreen", "webkitRequestPointerLock", "webkitResolveLocalFileSystemURL", "webkitSetMediaKeys", "webkitSetResourceTimingBufferSize", "webkitShadowRoot", "webkitShowPlaybackTargetPicker", "webkitSlice", "webkitSpeechGrammar", "webkitSpeechGrammarList", "webkitSpeechRecognition", "webkitSpeechRecognitionError", "webkitSpeechRecognitionEvent", "webkitStorageInfo", "webkitSupportsFullscreen", "webkitTemporaryStorage", "webkitTextFillColor", "webkitTextSizeAdjust", "webkitTextStroke", "webkitTextStrokeColor", "webkitTextStrokeWidth", "webkitTransform", "webkitTransformOrigin", "webkitTransformStyle", "webkitTransition", "webkitTransitionDelay", "webkitTransitionDuration", "webkitTransitionProperty", "webkitTransitionTimingFunction", "webkitURL", "webkitUnlockOrientation", "webkitUserSelect", "webkitVideoDecodedByteCount", "webkitVisibilityState", "webkitWirelessVideoPlaybackDisabled", "webkitdirectory", "webkitdropzone", "webstore", "weight", "wgslLanguageFeatures", "whatToShow", "wheelDelta", "wheelDeltaX", "wheelDeltaY", "whenDefined", "which", "white-space", "whiteSpace", "wholeText", "widows", "width", "will-change", "willChange", "willValidate", "window", "withCredentials", "word-break", "word-spacing", "word-wrap", "wordBreak", "wordSpacing", "wordWrap", "workerStart", "wow64", "wrap", "wrapKey", "writable", "writableAuxiliaries", "write", "writeBuffer", "writeMask", "writeText", "writeTexture", "writeTimestamp", "writeValue", "writeWithoutResponse", "writeln", "writing-mode", "writingMode", "x", "x1", "x2", "xChannelSelector", "xmlEncoding", "xmlStandalone", "xmlVersion", "xmlbase", "xmllang", "xmlspace", "xor", "xr", "y", "y1", "y2", "yChannelSelector", "yandex", "z", "z-index", "zIndex", "zoom", "zoomAndPan", "zoomRectScreen"];
|
|
248064
|
+
var domprops = ["$&", "$'", "$*", "$+", "$1", "$2", "$3", "$4", "$5", "$6", "$7", "$8", "$9", "$_", "$`", "$input", "-moz-animation", "-moz-animation-delay", "-moz-animation-direction", "-moz-animation-duration", "-moz-animation-fill-mode", "-moz-animation-iteration-count", "-moz-animation-name", "-moz-animation-play-state", "-moz-animation-timing-function", "-moz-appearance", "-moz-backface-visibility", "-moz-border-end", "-moz-border-end-color", "-moz-border-end-style", "-moz-border-end-width", "-moz-border-image", "-moz-border-start", "-moz-border-start-color", "-moz-border-start-style", "-moz-border-start-width", "-moz-box-align", "-moz-box-direction", "-moz-box-flex", "-moz-box-ordinal-group", "-moz-box-orient", "-moz-box-pack", "-moz-box-sizing", "-moz-float-edge", "-moz-font-feature-settings", "-moz-font-language-override", "-moz-force-broken-image-icon", "-moz-hyphens", "-moz-image-region", "-moz-margin-end", "-moz-margin-start", "-moz-orient", "-moz-osx-font-smoothing", "-moz-outline-radius", "-moz-outline-radius-bottomleft", "-moz-outline-radius-bottomright", "-moz-outline-radius-topleft", "-moz-outline-radius-topright", "-moz-padding-end", "-moz-padding-start", "-moz-perspective", "-moz-perspective-origin", "-moz-tab-size", "-moz-text-size-adjust", "-moz-transform", "-moz-transform-origin", "-moz-transform-style", "-moz-transition", "-moz-transition-delay", "-moz-transition-duration", "-moz-transition-property", "-moz-transition-timing-function", "-moz-user-focus", "-moz-user-input", "-moz-user-modify", "-moz-user-select", "-moz-window-dragging", "-webkit-align-content", "-webkit-align-items", "-webkit-align-self", "-webkit-animation", "-webkit-animation-delay", "-webkit-animation-direction", "-webkit-animation-duration", "-webkit-animation-fill-mode", "-webkit-animation-iteration-count", "-webkit-animation-name", "-webkit-animation-play-state", "-webkit-animation-timing-function", "-webkit-appearance", "-webkit-backface-visibility", "-webkit-background-clip", "-webkit-background-origin", "-webkit-background-size", "-webkit-border-bottom-left-radius", "-webkit-border-bottom-right-radius", "-webkit-border-image", "-webkit-border-radius", "-webkit-border-top-left-radius", "-webkit-border-top-right-radius", "-webkit-box-align", "-webkit-box-direction", "-webkit-box-flex", "-webkit-box-ordinal-group", "-webkit-box-orient", "-webkit-box-pack", "-webkit-box-shadow", "-webkit-box-sizing", "-webkit-clip-path", "-webkit-filter", "-webkit-flex", "-webkit-flex-basis", "-webkit-flex-direction", "-webkit-flex-flow", "-webkit-flex-grow", "-webkit-flex-shrink", "-webkit-flex-wrap", "-webkit-justify-content", "-webkit-line-clamp", "-webkit-mask", "-webkit-mask-clip", "-webkit-mask-composite", "-webkit-mask-image", "-webkit-mask-origin", "-webkit-mask-position", "-webkit-mask-position-x", "-webkit-mask-position-y", "-webkit-mask-repeat", "-webkit-mask-size", "-webkit-order", "-webkit-perspective", "-webkit-perspective-origin", "-webkit-text-fill-color", "-webkit-text-security", "-webkit-text-size-adjust", "-webkit-text-stroke", "-webkit-text-stroke-color", "-webkit-text-stroke-width", "-webkit-transform", "-webkit-transform-origin", "-webkit-transform-style", "-webkit-transition", "-webkit-transition-delay", "-webkit-transition-duration", "-webkit-transition-property", "-webkit-transition-timing-function", "-webkit-user-select", "0", "1", "10", "11", "12", "13", "14", "15", "16", "17", "18", "19", "2", "20", "3", "4", "5", "6", "7", "8", "9", "@@iterator", "ABORT_ERR", "ACTIVE", "ACTIVE_ATTRIBUTES", "ACTIVE_TEXTURE", "ACTIVE_UNIFORMS", "ACTIVE_UNIFORM_BLOCKS", "ADDITION", "ALIASED_LINE_WIDTH_RANGE", "ALIASED_POINT_SIZE_RANGE", "ALL", "ALLOW_KEYBOARD_INPUT", "ALLPASS", "ALPHA", "ALPHA_BITS", "ALREADY_SIGNALED", "ALT_MASK", "ALWAYS", "ANY_SAMPLES_PASSED", "ANY_SAMPLES_PASSED_CONSERVATIVE", "ANY_TYPE", "ANY_UNORDERED_NODE_TYPE", "ARRAY_BUFFER", "ARRAY_BUFFER_BINDING", "ATTACHED_SHADERS", "ATTRIBUTE_NODE", "AT_TARGET", "AbortController", "AbortSignal", "AbsoluteOrientationSensor", "AbstractRange", "Accelerometer", "AddSearchProvider", "AggregateError", "AnalyserNode", "Animation", "AnimationEffect", "AnimationEvent", "AnimationPlaybackEvent", "AnimationTimeline", "AnonXMLHttpRequest", "Any", "ApplicationCache", "ApplicationCacheErrorEvent", "Array", "ArrayBuffer", "ArrayType", "Atomics", "Attr", "Audio", "AudioBuffer", "AudioBufferSourceNode", "AudioContext", "AudioData", "AudioDecoder", "AudioDestinationNode", "AudioEncoder", "AudioListener", "AudioNode", "AudioParam", "AudioParamMap", "AudioProcessingEvent", "AudioScheduledSourceNode", "AudioSinkInfo", "AudioStreamTrack", "AudioWorklet", "AudioWorkletNode", "AuthenticatorAssertionResponse", "AuthenticatorAttestationResponse", "AuthenticatorResponse", "AutocompleteErrorEvent", "BACK", "BAD_BOUNDARYPOINTS_ERR", "BAD_REQUEST", "BANDPASS", "BLEND", "BLEND_COLOR", "BLEND_DST_ALPHA", "BLEND_DST_RGB", "BLEND_EQUATION", "BLEND_EQUATION_ALPHA", "BLEND_EQUATION_RGB", "BLEND_SRC_ALPHA", "BLEND_SRC_RGB", "BLUE", "BLUE_BITS", "BLUR", "BOOL", "BOOLEAN_TYPE", "BOOL_VEC2", "BOOL_VEC3", "BOOL_VEC4", "BOTH", "BROWSER_DEFAULT_WEBGL", "BUBBLING_PHASE", "BUFFER_SIZE", "BUFFER_USAGE", "BYTE", "BYTES_PER_ELEMENT", "BackgroundFetchManager", "BackgroundFetchRecord", "BackgroundFetchRegistration", "BarProp", "BarcodeDetector", "BaseAudioContext", "BaseHref", "BatteryManager", "BeforeInstallPromptEvent", "BeforeLoadEvent", "BeforeUnloadEvent", "BigInt", "BigInt64Array", "BigUint64Array", "BiquadFilterNode", "Blob", "BlobEvent", "Bluetooth", "BluetoothCharacteristicProperties", "BluetoothDevice", "BluetoothRemoteGATTCharacteristic", "BluetoothRemoteGATTDescriptor", "BluetoothRemoteGATTServer", "BluetoothRemoteGATTService", "BluetoothUUID", "Boolean", "BroadcastChannel", "BrowserCaptureMediaStreamTrack", "ByteLengthQueuingStrategy", "CAPTURING_PHASE", "CCW", "CDATASection", "CDATA_SECTION_NODE", "CHANGE", "CHARSET_RULE", "CHECKING", "CLAMP_TO_EDGE", "CLICK", "CLOSED", "CLOSING", "COLOR", "COLOR_ATTACHMENT0", "COLOR_ATTACHMENT1", "COLOR_ATTACHMENT10", "COLOR_ATTACHMENT11", "COLOR_ATTACHMENT12", "COLOR_ATTACHMENT13", "COLOR_ATTACHMENT14", "COLOR_ATTACHMENT15", "COLOR_ATTACHMENT2", "COLOR_ATTACHMENT3", "COLOR_ATTACHMENT4", "COLOR_ATTACHMENT5", "COLOR_ATTACHMENT6", "COLOR_ATTACHMENT7", "COLOR_ATTACHMENT8", "COLOR_ATTACHMENT9", "COLOR_BUFFER_BIT", "COLOR_CLEAR_VALUE", "COLOR_WRITEMASK", "COMMENT_NODE", "COMPARE_REF_TO_TEXTURE", "COMPILE_STATUS", "COMPLETION_STATUS_KHR", "COMPRESSED_RGBA_S3TC_DXT1_EXT", "COMPRESSED_RGBA_S3TC_DXT3_EXT", "COMPRESSED_RGBA_S3TC_DXT5_EXT", "COMPRESSED_RGB_S3TC_DXT1_EXT", "COMPRESSED_TEXTURE_FORMATS", "COMPUTE", "CONDITION_SATISFIED", "CONFIGURATION_UNSUPPORTED", "CONNECTING", "CONSTANT_ALPHA", "CONSTANT_COLOR", "CONSTRAINT_ERR", "CONTEXT_LOST_WEBGL", "CONTROL_MASK", "COPY_DST", "COPY_READ_BUFFER", "COPY_READ_BUFFER_BINDING", "COPY_SRC", "COPY_WRITE_BUFFER", "COPY_WRITE_BUFFER_BINDING", "COUNTER_STYLE_RULE", "CSS", "CSS2Properties", "CSSAnimation", "CSSCharsetRule", "CSSConditionRule", "CSSContainerRule", "CSSCounterStyleRule", "CSSFontFaceRule", "CSSFontFeatureValuesRule", "CSSFontPaletteValuesRule", "CSSGroupingRule", "CSSImageValue", "CSSImportRule", "CSSKeyframeRule", "CSSKeyframesRule", "CSSKeywordValue", "CSSLayerBlockRule", "CSSLayerStatementRule", "CSSMathClamp", "CSSMathInvert", "CSSMathMax", "CSSMathMin", "CSSMathNegate", "CSSMathProduct", "CSSMathSum", "CSSMathValue", "CSSMatrixComponent", "CSSMediaRule", "CSSMozDocumentRule", "CSSNameSpaceRule", "CSSNamespaceRule", "CSSNumericArray", "CSSNumericValue", "CSSPageRule", "CSSPerspective", "CSSPositionValue", "CSSPrimitiveValue", "CSSPropertyRule", "CSSRotate", "CSSRule", "CSSRuleList", "CSSScale", "CSSScopeRule", "CSSSkew", "CSSSkewX", "CSSSkewY", "CSSStartingStyleRule", "CSSStyleDeclaration", "CSSStyleRule", "CSSStyleSheet", "CSSStyleValue", "CSSSupportsRule", "CSSTransformComponent", "CSSTransformValue", "CSSTransition", "CSSTranslate", "CSSUnitValue", "CSSUnknownRule", "CSSUnparsedValue", "CSSValue", "CSSValueList", "CSSVariableReferenceValue", "CSSVariablesDeclaration", "CSSVariablesRule", "CSSViewportRule", "CSS_ATTR", "CSS_CM", "CSS_COUNTER", "CSS_CUSTOM", "CSS_DEG", "CSS_DIMENSION", "CSS_EMS", "CSS_EXS", "CSS_FILTER_BLUR", "CSS_FILTER_BRIGHTNESS", "CSS_FILTER_CONTRAST", "CSS_FILTER_CUSTOM", "CSS_FILTER_DROP_SHADOW", "CSS_FILTER_GRAYSCALE", "CSS_FILTER_HUE_ROTATE", "CSS_FILTER_INVERT", "CSS_FILTER_OPACITY", "CSS_FILTER_REFERENCE", "CSS_FILTER_SATURATE", "CSS_FILTER_SEPIA", "CSS_GRAD", "CSS_HZ", "CSS_IDENT", "CSS_IN", "CSS_INHERIT", "CSS_KHZ", "CSS_MATRIX", "CSS_MATRIX3D", "CSS_MM", "CSS_MS", "CSS_NUMBER", "CSS_PC", "CSS_PERCENTAGE", "CSS_PERSPECTIVE", "CSS_PRIMITIVE_VALUE", "CSS_PT", "CSS_PX", "CSS_RAD", "CSS_RECT", "CSS_RGBCOLOR", "CSS_ROTATE", "CSS_ROTATE3D", "CSS_ROTATEX", "CSS_ROTATEY", "CSS_ROTATEZ", "CSS_S", "CSS_SCALE", "CSS_SCALE3D", "CSS_SCALEX", "CSS_SCALEY", "CSS_SCALEZ", "CSS_SKEW", "CSS_SKEWX", "CSS_SKEWY", "CSS_STRING", "CSS_TRANSLATE", "CSS_TRANSLATE3D", "CSS_TRANSLATEX", "CSS_TRANSLATEY", "CSS_TRANSLATEZ", "CSS_UNKNOWN", "CSS_URI", "CSS_VALUE_LIST", "CSS_VH", "CSS_VMAX", "CSS_VMIN", "CSS_VW", "CULL_FACE", "CULL_FACE_MODE", "CURRENT_PROGRAM", "CURRENT_QUERY", "CURRENT_VERTEX_ATTRIB", "CUSTOM", "CW", "Cache", "CacheStorage", "CanvasCaptureMediaStream", "CanvasCaptureMediaStreamTrack", "CanvasGradient", "CanvasPattern", "CanvasRenderingContext2D", "CaptureController", "CaretPosition", "ChannelMergerNode", "ChannelSplitterNode", "CharacterBoundsUpdateEvent", "CharacterData", "ClientRect", "ClientRectList", "Clipboard", "ClipboardEvent", "ClipboardItem", "CloseEvent", "Collator", "CommandEvent", "Comment", "CompileError", "CompositionEvent", "CompressionStream", "Console", "ConstantSourceNode", "ContentVisibilityAutoStateChangeEvent", "Controllers", "ConvolverNode", "CookieChangeEvent", "CookieStore", "CookieStoreManager", "CountQueuingStrategy", "Counter", "Credential", "CredentialsContainer", "CropTarget", "Crypto", "CryptoKey", "CustomElementRegistry", "CustomEvent", "CustomStateSet", "DATABASE_ERR", "DATA_CLONE_ERR", "DATA_ERR", "DBLCLICK", "DECR", "DECR_WRAP", "DELETE_STATUS", "DEPTH", "DEPTH24_STENCIL8", "DEPTH32F_STENCIL8", "DEPTH_ATTACHMENT", "DEPTH_BITS", "DEPTH_BUFFER_BIT", "DEPTH_CLEAR_VALUE", "DEPTH_COMPONENT", "DEPTH_COMPONENT16", "DEPTH_COMPONENT24", "DEPTH_COMPONENT32F", "DEPTH_FUNC", "DEPTH_RANGE", "DEPTH_STENCIL", "DEPTH_STENCIL_ATTACHMENT", "DEPTH_TEST", "DEPTH_WRITEMASK", "DEVICE_INELIGIBLE", "DIRECTION_DOWN", "DIRECTION_LEFT", "DIRECTION_RIGHT", "DIRECTION_UP", "DISABLED", "DISPATCH_REQUEST_ERR", "DITHER", "DOCUMENT_FRAGMENT_NODE", "DOCUMENT_NODE", "DOCUMENT_POSITION_CONTAINED_BY", "DOCUMENT_POSITION_CONTAINS", "DOCUMENT_POSITION_DISCONNECTED", "DOCUMENT_POSITION_FOLLOWING", "DOCUMENT_POSITION_IMPLEMENTATION_SPECIFIC", "DOCUMENT_POSITION_PRECEDING", "DOCUMENT_TYPE_NODE", "DOMCursor", "DOMError", "DOMException", "DOMImplementation", "DOMImplementationLS", "DOMMatrix", "DOMMatrixReadOnly", "DOMParser", "DOMPoint", "DOMPointReadOnly", "DOMQuad", "DOMRect", "DOMRectList", "DOMRectReadOnly", "DOMRequest", "DOMSTRING_SIZE_ERR", "DOMSettableTokenList", "DOMStringList", "DOMStringMap", "DOMTokenList", "DOMTransactionEvent", "DOM_DELTA_LINE", "DOM_DELTA_PAGE", "DOM_DELTA_PIXEL", "DOM_INPUT_METHOD_DROP", "DOM_INPUT_METHOD_HANDWRITING", "DOM_INPUT_METHOD_IME", "DOM_INPUT_METHOD_KEYBOARD", "DOM_INPUT_METHOD_MULTIMODAL", "DOM_INPUT_METHOD_OPTION", "DOM_INPUT_METHOD_PASTE", "DOM_INPUT_METHOD_SCRIPT", "DOM_INPUT_METHOD_UNKNOWN", "DOM_INPUT_METHOD_VOICE", "DOM_KEY_LOCATION_JOYSTICK", "DOM_KEY_LOCATION_LEFT", "DOM_KEY_LOCATION_MOBILE", "DOM_KEY_LOCATION_NUMPAD", "DOM_KEY_LOCATION_RIGHT", "DOM_KEY_LOCATION_STANDARD", "DOM_VK_0", "DOM_VK_1", "DOM_VK_2", "DOM_VK_3", "DOM_VK_4", "DOM_VK_5", "DOM_VK_6", "DOM_VK_7", "DOM_VK_8", "DOM_VK_9", "DOM_VK_A", "DOM_VK_ACCEPT", "DOM_VK_ADD", "DOM_VK_ALT", "DOM_VK_ALTGR", "DOM_VK_AMPERSAND", "DOM_VK_ASTERISK", "DOM_VK_AT", "DOM_VK_ATTN", "DOM_VK_B", "DOM_VK_BACKSPACE", "DOM_VK_BACK_QUOTE", "DOM_VK_BACK_SLASH", "DOM_VK_BACK_SPACE", "DOM_VK_C", "DOM_VK_CANCEL", "DOM_VK_CAPS_LOCK", "DOM_VK_CIRCUMFLEX", "DOM_VK_CLEAR", "DOM_VK_CLOSE_BRACKET", "DOM_VK_CLOSE_CURLY_BRACKET", "DOM_VK_CLOSE_PAREN", "DOM_VK_COLON", "DOM_VK_COMMA", "DOM_VK_CONTEXT_MENU", "DOM_VK_CONTROL", "DOM_VK_CONVERT", "DOM_VK_CRSEL", "DOM_VK_CTRL", "DOM_VK_D", "DOM_VK_DECIMAL", "DOM_VK_DELETE", "DOM_VK_DIVIDE", "DOM_VK_DOLLAR", "DOM_VK_DOUBLE_QUOTE", "DOM_VK_DOWN", "DOM_VK_E", "DOM_VK_EISU", "DOM_VK_END", "DOM_VK_ENTER", "DOM_VK_EQUALS", "DOM_VK_EREOF", "DOM_VK_ESCAPE", "DOM_VK_EXCLAMATION", "DOM_VK_EXECUTE", "DOM_VK_EXSEL", "DOM_VK_F", "DOM_VK_F1", "DOM_VK_F10", "DOM_VK_F11", "DOM_VK_F12", "DOM_VK_F13", "DOM_VK_F14", "DOM_VK_F15", "DOM_VK_F16", "DOM_VK_F17", "DOM_VK_F18", "DOM_VK_F19", "DOM_VK_F2", "DOM_VK_F20", "DOM_VK_F21", "DOM_VK_F22", "DOM_VK_F23", "DOM_VK_F24", "DOM_VK_F25", "DOM_VK_F26", "DOM_VK_F27", "DOM_VK_F28", "DOM_VK_F29", "DOM_VK_F3", "DOM_VK_F30", "DOM_VK_F31", "DOM_VK_F32", "DOM_VK_F33", "DOM_VK_F34", "DOM_VK_F35", "DOM_VK_F36", "DOM_VK_F4", "DOM_VK_F5", "DOM_VK_F6", "DOM_VK_F7", "DOM_VK_F8", "DOM_VK_F9", "DOM_VK_FINAL", "DOM_VK_FRONT", "DOM_VK_G", "DOM_VK_GREATER_THAN", "DOM_VK_H", "DOM_VK_HANGUL", "DOM_VK_HANJA", "DOM_VK_HASH", "DOM_VK_HELP", "DOM_VK_HK_TOGGLE", "DOM_VK_HOME", "DOM_VK_HYPHEN_MINUS", "DOM_VK_I", "DOM_VK_INSERT", "DOM_VK_J", "DOM_VK_JUNJA", "DOM_VK_K", "DOM_VK_KANA", "DOM_VK_KANJI", "DOM_VK_L", "DOM_VK_LEFT", "DOM_VK_LEFT_TAB", "DOM_VK_LESS_THAN", "DOM_VK_M", "DOM_VK_META", "DOM_VK_MODECHANGE", "DOM_VK_MULTIPLY", "DOM_VK_N", "DOM_VK_NONCONVERT", "DOM_VK_NUMPAD0", "DOM_VK_NUMPAD1", "DOM_VK_NUMPAD2", "DOM_VK_NUMPAD3", "DOM_VK_NUMPAD4", "DOM_VK_NUMPAD5", "DOM_VK_NUMPAD6", "DOM_VK_NUMPAD7", "DOM_VK_NUMPAD8", "DOM_VK_NUMPAD9", "DOM_VK_NUM_LOCK", "DOM_VK_O", "DOM_VK_OEM_1", "DOM_VK_OEM_102", "DOM_VK_OEM_2", "DOM_VK_OEM_3", "DOM_VK_OEM_4", "DOM_VK_OEM_5", "DOM_VK_OEM_6", "DOM_VK_OEM_7", "DOM_VK_OEM_8", "DOM_VK_OEM_COMMA", "DOM_VK_OEM_MINUS", "DOM_VK_OEM_PERIOD", "DOM_VK_OEM_PLUS", "DOM_VK_OPEN_BRACKET", "DOM_VK_OPEN_CURLY_BRACKET", "DOM_VK_OPEN_PAREN", "DOM_VK_P", "DOM_VK_PA1", "DOM_VK_PAGEDOWN", "DOM_VK_PAGEUP", "DOM_VK_PAGE_DOWN", "DOM_VK_PAGE_UP", "DOM_VK_PAUSE", "DOM_VK_PERCENT", "DOM_VK_PERIOD", "DOM_VK_PIPE", "DOM_VK_PLAY", "DOM_VK_PLUS", "DOM_VK_PRINT", "DOM_VK_PRINTSCREEN", "DOM_VK_PROCESSKEY", "DOM_VK_PROPERITES", "DOM_VK_Q", "DOM_VK_QUESTION_MARK", "DOM_VK_QUOTE", "DOM_VK_R", "DOM_VK_REDO", "DOM_VK_RETURN", "DOM_VK_RIGHT", "DOM_VK_S", "DOM_VK_SCROLL_LOCK", "DOM_VK_SELECT", "DOM_VK_SEMICOLON", "DOM_VK_SEPARATOR", "DOM_VK_SHIFT", "DOM_VK_SLASH", "DOM_VK_SLEEP", "DOM_VK_SPACE", "DOM_VK_SUBTRACT", "DOM_VK_T", "DOM_VK_TAB", "DOM_VK_TILDE", "DOM_VK_U", "DOM_VK_UNDERSCORE", "DOM_VK_UNDO", "DOM_VK_UNICODE", "DOM_VK_UP", "DOM_VK_V", "DOM_VK_VOLUME_DOWN", "DOM_VK_VOLUME_MUTE", "DOM_VK_VOLUME_UP", "DOM_VK_W", "DOM_VK_WIN", "DOM_VK_WINDOW", "DOM_VK_WIN_ICO_00", "DOM_VK_WIN_ICO_CLEAR", "DOM_VK_WIN_ICO_HELP", "DOM_VK_WIN_OEM_ATTN", "DOM_VK_WIN_OEM_AUTO", "DOM_VK_WIN_OEM_BACKTAB", "DOM_VK_WIN_OEM_CLEAR", "DOM_VK_WIN_OEM_COPY", "DOM_VK_WIN_OEM_CUSEL", "DOM_VK_WIN_OEM_ENLW", "DOM_VK_WIN_OEM_FINISH", "DOM_VK_WIN_OEM_FJ_JISHO", "DOM_VK_WIN_OEM_FJ_LOYA", "DOM_VK_WIN_OEM_FJ_MASSHOU", "DOM_VK_WIN_OEM_FJ_ROYA", "DOM_VK_WIN_OEM_FJ_TOUROKU", "DOM_VK_WIN_OEM_JUMP", "DOM_VK_WIN_OEM_PA1", "DOM_VK_WIN_OEM_PA2", "DOM_VK_WIN_OEM_PA3", "DOM_VK_WIN_OEM_RESET", "DOM_VK_WIN_OEM_WSCTRL", "DOM_VK_X", "DOM_VK_XF86XK_ADD_FAVORITE", "DOM_VK_XF86XK_APPLICATION_LEFT", "DOM_VK_XF86XK_APPLICATION_RIGHT", "DOM_VK_XF86XK_AUDIO_CYCLE_TRACK", "DOM_VK_XF86XK_AUDIO_FORWARD", "DOM_VK_XF86XK_AUDIO_LOWER_VOLUME", "DOM_VK_XF86XK_AUDIO_MEDIA", "DOM_VK_XF86XK_AUDIO_MUTE", "DOM_VK_XF86XK_AUDIO_NEXT", "DOM_VK_XF86XK_AUDIO_PAUSE", "DOM_VK_XF86XK_AUDIO_PLAY", "DOM_VK_XF86XK_AUDIO_PREV", "DOM_VK_XF86XK_AUDIO_RAISE_VOLUME", "DOM_VK_XF86XK_AUDIO_RANDOM_PLAY", "DOM_VK_XF86XK_AUDIO_RECORD", "DOM_VK_XF86XK_AUDIO_REPEAT", "DOM_VK_XF86XK_AUDIO_REWIND", "DOM_VK_XF86XK_AUDIO_STOP", "DOM_VK_XF86XK_AWAY", "DOM_VK_XF86XK_BACK", "DOM_VK_XF86XK_BACK_FORWARD", "DOM_VK_XF86XK_BATTERY", "DOM_VK_XF86XK_BLUE", "DOM_VK_XF86XK_BLUETOOTH", "DOM_VK_XF86XK_BOOK", "DOM_VK_XF86XK_BRIGHTNESS_ADJUST", "DOM_VK_XF86XK_CALCULATOR", "DOM_VK_XF86XK_CALENDAR", "DOM_VK_XF86XK_CD", "DOM_VK_XF86XK_CLOSE", "DOM_VK_XF86XK_COMMUNITY", "DOM_VK_XF86XK_CONTRAST_ADJUST", "DOM_VK_XF86XK_COPY", "DOM_VK_XF86XK_CUT", "DOM_VK_XF86XK_CYCLE_ANGLE", "DOM_VK_XF86XK_DISPLAY", "DOM_VK_XF86XK_DOCUMENTS", "DOM_VK_XF86XK_DOS", "DOM_VK_XF86XK_EJECT", "DOM_VK_XF86XK_EXCEL", "DOM_VK_XF86XK_EXPLORER", "DOM_VK_XF86XK_FAVORITES", "DOM_VK_XF86XK_FINANCE", "DOM_VK_XF86XK_FORWARD", "DOM_VK_XF86XK_FRAME_BACK", "DOM_VK_XF86XK_FRAME_FORWARD", "DOM_VK_XF86XK_GAME", "DOM_VK_XF86XK_GO", "DOM_VK_XF86XK_GREEN", "DOM_VK_XF86XK_HIBERNATE", "DOM_VK_XF86XK_HISTORY", "DOM_VK_XF86XK_HOME_PAGE", "DOM_VK_XF86XK_HOT_LINKS", "DOM_VK_XF86XK_I_TOUCH", "DOM_VK_XF86XK_KBD_BRIGHTNESS_DOWN", "DOM_VK_XF86XK_KBD_BRIGHTNESS_UP", "DOM_VK_XF86XK_KBD_LIGHT_ON_OFF", "DOM_VK_XF86XK_LAUNCH0", "DOM_VK_XF86XK_LAUNCH1", "DOM_VK_XF86XK_LAUNCH2", "DOM_VK_XF86XK_LAUNCH3", "DOM_VK_XF86XK_LAUNCH4", "DOM_VK_XF86XK_LAUNCH5", "DOM_VK_XF86XK_LAUNCH6", "DOM_VK_XF86XK_LAUNCH7", "DOM_VK_XF86XK_LAUNCH8", "DOM_VK_XF86XK_LAUNCH9", "DOM_VK_XF86XK_LAUNCH_A", "DOM_VK_XF86XK_LAUNCH_B", "DOM_VK_XF86XK_LAUNCH_C", "DOM_VK_XF86XK_LAUNCH_D", "DOM_VK_XF86XK_LAUNCH_E", "DOM_VK_XF86XK_LAUNCH_F", "DOM_VK_XF86XK_LIGHT_BULB", "DOM_VK_XF86XK_LOG_OFF", "DOM_VK_XF86XK_MAIL", "DOM_VK_XF86XK_MAIL_FORWARD", "DOM_VK_XF86XK_MARKET", "DOM_VK_XF86XK_MEETING", "DOM_VK_XF86XK_MEMO", "DOM_VK_XF86XK_MENU_KB", "DOM_VK_XF86XK_MENU_PB", "DOM_VK_XF86XK_MESSENGER", "DOM_VK_XF86XK_MON_BRIGHTNESS_DOWN", "DOM_VK_XF86XK_MON_BRIGHTNESS_UP", "DOM_VK_XF86XK_MUSIC", "DOM_VK_XF86XK_MY_COMPUTER", "DOM_VK_XF86XK_MY_SITES", "DOM_VK_XF86XK_NEW", "DOM_VK_XF86XK_NEWS", "DOM_VK_XF86XK_OFFICE_HOME", "DOM_VK_XF86XK_OPEN", "DOM_VK_XF86XK_OPEN_URL", "DOM_VK_XF86XK_OPTION", "DOM_VK_XF86XK_PASTE", "DOM_VK_XF86XK_PHONE", "DOM_VK_XF86XK_PICTURES", "DOM_VK_XF86XK_POWER_DOWN", "DOM_VK_XF86XK_POWER_OFF", "DOM_VK_XF86XK_RED", "DOM_VK_XF86XK_REFRESH", "DOM_VK_XF86XK_RELOAD", "DOM_VK_XF86XK_REPLY", "DOM_VK_XF86XK_ROCKER_DOWN", "DOM_VK_XF86XK_ROCKER_ENTER", "DOM_VK_XF86XK_ROCKER_UP", "DOM_VK_XF86XK_ROTATE_WINDOWS", "DOM_VK_XF86XK_ROTATION_KB", "DOM_VK_XF86XK_ROTATION_PB", "DOM_VK_XF86XK_SAVE", "DOM_VK_XF86XK_SCREEN_SAVER", "DOM_VK_XF86XK_SCROLL_CLICK", "DOM_VK_XF86XK_SCROLL_DOWN", "DOM_VK_XF86XK_SCROLL_UP", "DOM_VK_XF86XK_SEARCH", "DOM_VK_XF86XK_SEND", "DOM_VK_XF86XK_SHOP", "DOM_VK_XF86XK_SPELL", "DOM_VK_XF86XK_SPLIT_SCREEN", "DOM_VK_XF86XK_STANDBY", "DOM_VK_XF86XK_START", "DOM_VK_XF86XK_STOP", "DOM_VK_XF86XK_SUBTITLE", "DOM_VK_XF86XK_SUPPORT", "DOM_VK_XF86XK_SUSPEND", "DOM_VK_XF86XK_TASK_PANE", "DOM_VK_XF86XK_TERMINAL", "DOM_VK_XF86XK_TIME", "DOM_VK_XF86XK_TOOLS", "DOM_VK_XF86XK_TOP_MENU", "DOM_VK_XF86XK_TO_DO_LIST", "DOM_VK_XF86XK_TRAVEL", "DOM_VK_XF86XK_USER1KB", "DOM_VK_XF86XK_USER2KB", "DOM_VK_XF86XK_USER_PB", "DOM_VK_XF86XK_UWB", "DOM_VK_XF86XK_VENDOR_HOME", "DOM_VK_XF86XK_VIDEO", "DOM_VK_XF86XK_VIEW", "DOM_VK_XF86XK_WAKE_UP", "DOM_VK_XF86XK_WEB_CAM", "DOM_VK_XF86XK_WHEEL_BUTTON", "DOM_VK_XF86XK_WLAN", "DOM_VK_XF86XK_WORD", "DOM_VK_XF86XK_WWW", "DOM_VK_XF86XK_XFER", "DOM_VK_XF86XK_YELLOW", "DOM_VK_XF86XK_ZOOM_IN", "DOM_VK_XF86XK_ZOOM_OUT", "DOM_VK_Y", "DOM_VK_Z", "DOM_VK_ZOOM", "DONE", "DONT_CARE", "DOWNLOADING", "DRAGDROP", "DRAW_BUFFER0", "DRAW_BUFFER1", "DRAW_BUFFER10", "DRAW_BUFFER11", "DRAW_BUFFER12", "DRAW_BUFFER13", "DRAW_BUFFER14", "DRAW_BUFFER15", "DRAW_BUFFER2", "DRAW_BUFFER3", "DRAW_BUFFER4", "DRAW_BUFFER5", "DRAW_BUFFER6", "DRAW_BUFFER7", "DRAW_BUFFER8", "DRAW_BUFFER9", "DRAW_FRAMEBUFFER", "DRAW_FRAMEBUFFER_BINDING", "DST_ALPHA", "DST_COLOR", "DYNAMIC_COPY", "DYNAMIC_DRAW", "DYNAMIC_READ", "DataChannel", "DataTransfer", "DataTransferItem", "DataTransferItemList", "DataView", "Date", "DateTimeFormat", "DecompressionStream", "DelayNode", "DelegatedInkTrailPresenter", "DeprecationReportBody", "DesktopNotification", "DesktopNotificationCenter", "DeviceLightEvent", "DeviceMotionEvent", "DeviceMotionEventAcceleration", "DeviceMotionEventRotationRate", "DeviceOrientationEvent", "DeviceProximityEvent", "DeviceStorage", "DeviceStorageChangeEvent", "Directory", "DisplayNames", "Document", "DocumentFragment", "DocumentPictureInPicture", "DocumentPictureInPictureEvent", "DocumentTimeline", "DocumentType", "DragEvent", "DynamicsCompressorNode", "E", "ELEMENT_ARRAY_BUFFER", "ELEMENT_ARRAY_BUFFER_BINDING", "ELEMENT_NODE", "EMPTY", "ENCODING_ERR", "ENDED", "END_TO_END", "END_TO_START", "ENTITY_NODE", "ENTITY_REFERENCE_NODE", "EPSILON", "EQUAL", "EQUALPOWER", "ERROR", "EXPONENTIAL_DISTANCE", "EditContext", "Element", "ElementInternals", "ElementQuery", "EncodedAudioChunk", "EncodedVideoChunk", "EnterPictureInPictureEvent", "Entity", "EntityReference", "Error", "ErrorEvent", "EvalError", "Event", "EventCounts", "EventException", "EventSource", "EventTarget", "Exception", "External", "EyeDropper", "FASTEST", "FIDOSDK", "FILTER_ACCEPT", "FILTER_INTERRUPT", "FILTER_REJECT", "FILTER_SKIP", "FINISHED_STATE", "FIRST_ORDERED_NODE_TYPE", "FLOAT", "FLOAT_32_UNSIGNED_INT_24_8_REV", "FLOAT_MAT2", "FLOAT_MAT2x3", "FLOAT_MAT2x4", "FLOAT_MAT3", "FLOAT_MAT3x2", "FLOAT_MAT3x4", "FLOAT_MAT4", "FLOAT_MAT4x2", "FLOAT_MAT4x3", "FLOAT_VEC2", "FLOAT_VEC3", "FLOAT_VEC4", "FOCUS", "FONT_FACE_RULE", "FONT_FEATURE_VALUES_RULE", "FRAGMENT", "FRAGMENT_SHADER", "FRAGMENT_SHADER_DERIVATIVE_HINT", "FRAGMENT_SHADER_DERIVATIVE_HINT_OES", "FRAMEBUFFER", "FRAMEBUFFER_ATTACHMENT_ALPHA_SIZE", "FRAMEBUFFER_ATTACHMENT_BLUE_SIZE", "FRAMEBUFFER_ATTACHMENT_COLOR_ENCODING", "FRAMEBUFFER_ATTACHMENT_COMPONENT_TYPE", "FRAMEBUFFER_ATTACHMENT_DEPTH_SIZE", "FRAMEBUFFER_ATTACHMENT_GREEN_SIZE", "FRAMEBUFFER_ATTACHMENT_OBJECT_NAME", "FRAMEBUFFER_ATTACHMENT_OBJECT_TYPE", "FRAMEBUFFER_ATTACHMENT_RED_SIZE", "FRAMEBUFFER_ATTACHMENT_STENCIL_SIZE", "FRAMEBUFFER_ATTACHMENT_TEXTURE_CUBE_MAP_FACE", "FRAMEBUFFER_ATTACHMENT_TEXTURE_LAYER", "FRAMEBUFFER_ATTACHMENT_TEXTURE_LEVEL", "FRAMEBUFFER_BINDING", "FRAMEBUFFER_COMPLETE", "FRAMEBUFFER_DEFAULT", "FRAMEBUFFER_INCOMPLETE_ATTACHMENT", "FRAMEBUFFER_INCOMPLETE_DIMENSIONS", "FRAMEBUFFER_INCOMPLETE_MISSING_ATTACHMENT", "FRAMEBUFFER_INCOMPLETE_MULTISAMPLE", "FRAMEBUFFER_UNSUPPORTED", "FRONT", "FRONT_AND_BACK", "FRONT_FACE", "FUNC_ADD", "FUNC_REVERSE_SUBTRACT", "FUNC_SUBTRACT", "FeaturePolicy", "FeaturePolicyViolationReportBody", "FederatedCredential", "Feed", "FeedEntry", "Fence", "FencedFrameConfig", "File", "FileError", "FileList", "FileReader", "FileSystem", "FileSystemDirectoryEntry", "FileSystemDirectoryHandle", "FileSystemDirectoryReader", "FileSystemEntry", "FileSystemFileEntry", "FileSystemFileHandle", "FileSystemHandle", "FileSystemWritableFileStream", "FinalizationRegistry", "FindInPage", "Float32Array", "Float64Array", "FocusEvent", "FontData", "FontFace", "FontFaceSet", "FontFaceSetLoadEvent", "FormData", "FormDataEvent", "FragmentDirective", "Function", "GENERATE_MIPMAP_HINT", "GEQUAL", "GPU", "GPUAdapter", "GPUAdapterInfo", "GPUBindGroup", "GPUBindGroupLayout", "GPUBuffer", "GPUBufferUsage", "GPUCanvasContext", "GPUColorWrite", "GPUCommandBuffer", "GPUCommandEncoder", "GPUCompilationInfo", "GPUCompilationMessage", "GPUComputePassEncoder", "GPUComputePipeline", "GPUDevice", "GPUDeviceLostInfo", "GPUError", "GPUExternalTexture", "GPUInternalError", "GPUMapMode", "GPUOutOfMemoryError", "GPUPipelineError", "GPUPipelineLayout", "GPUQuerySet", "GPUQueue", "GPURenderBundle", "GPURenderBundleEncoder", "GPURenderPassEncoder", "GPURenderPipeline", "GPUSampler", "GPUShaderModule", "GPUShaderStage", "GPUSupportedFeatures", "GPUSupportedLimits", "GPUTexture", "GPUTextureUsage", "GPUTextureView", "GPUUncapturedErrorEvent", "GPUValidationError", "GREATER", "GREEN", "GREEN_BITS", "GainNode", "Gamepad", "GamepadAxisMoveEvent", "GamepadButton", "GamepadButtonEvent", "GamepadEvent", "GamepadHapticActuator", "GamepadPose", "Geolocation", "GeolocationCoordinates", "GeolocationPosition", "GeolocationPositionError", "GestureEvent", "Global", "GravitySensor", "Gyroscope", "HALF_FLOAT", "HAVE_CURRENT_DATA", "HAVE_ENOUGH_DATA", "HAVE_FUTURE_DATA", "HAVE_METADATA", "HAVE_NOTHING", "HEADERS_RECEIVED", "HID", "HIDConnectionEvent", "HIDDEN", "HIDDevice", "HIDInputReportEvent", "HIERARCHY_REQUEST_ERR", "HIGHPASS", "HIGHSHELF", "HIGH_FLOAT", "HIGH_INT", "HORIZONTAL", "HORIZONTAL_AXIS", "HRTF", "HTMLAllCollection", "HTMLAnchorElement", "HTMLAppletElement", "HTMLAreaElement", "HTMLAudioElement", "HTMLBRElement", "HTMLBaseElement", "HTMLBaseFontElement", "HTMLBlockquoteElement", "HTMLBodyElement", "HTMLButtonElement", "HTMLCanvasElement", "HTMLCollection", "HTMLCommandElement", "HTMLContentElement", "HTMLDListElement", "HTMLDataElement", "HTMLDataListElement", "HTMLDetailsElement", "HTMLDialogElement", "HTMLDirectoryElement", "HTMLDivElement", "HTMLDocument", "HTMLElement", "HTMLEmbedElement", "HTMLFencedFrameElement", "HTMLFieldSetElement", "HTMLFontElement", "HTMLFormControlsCollection", "HTMLFormElement", "HTMLFrameElement", "HTMLFrameSetElement", "HTMLHRElement", "HTMLHeadElement", "HTMLHeadingElement", "HTMLHtmlElement", "HTMLIFrameElement", "HTMLImageElement", "HTMLInputElement", "HTMLIsIndexElement", "HTMLKeygenElement", "HTMLLIElement", "HTMLLabelElement", "HTMLLegendElement", "HTMLLinkElement", "HTMLMapElement", "HTMLMarqueeElement", "HTMLMediaElement", "HTMLMenuElement", "HTMLMenuItemElement", "HTMLMetaElement", "HTMLMeterElement", "HTMLModElement", "HTMLOListElement", "HTMLObjectElement", "HTMLOptGroupElement", "HTMLOptionElement", "HTMLOptionsCollection", "HTMLOutputElement", "HTMLParagraphElement", "HTMLParamElement", "HTMLPictureElement", "HTMLPreElement", "HTMLProgressElement", "HTMLPropertiesCollection", "HTMLQuoteElement", "HTMLScriptElement", "HTMLSelectElement", "HTMLShadowElement", "HTMLSlotElement", "HTMLSourceElement", "HTMLSpanElement", "HTMLStyleElement", "HTMLTableCaptionElement", "HTMLTableCellElement", "HTMLTableColElement", "HTMLTableElement", "HTMLTableRowElement", "HTMLTableSectionElement", "HTMLTemplateElement", "HTMLTextAreaElement", "HTMLTimeElement", "HTMLTitleElement", "HTMLTrackElement", "HTMLUListElement", "HTMLUnknownElement", "HTMLVideoElement", "HashChangeEvent", "Headers", "Highlight", "HighlightRegistry", "History", "Hz", "ICE_CHECKING", "ICE_CLOSED", "ICE_COMPLETED", "ICE_CONNECTED", "ICE_FAILED", "ICE_GATHERING", "ICE_WAITING", "IDBCursor", "IDBCursorWithValue", "IDBDatabase", "IDBDatabaseException", "IDBFactory", "IDBFileHandle", "IDBFileRequest", "IDBIndex", "IDBKeyRange", "IDBMutableFile", "IDBObjectStore", "IDBOpenDBRequest", "IDBRequest", "IDBTransaction", "IDBVersionChangeEvent", "IDLE", "IIRFilterNode", "IMPLEMENTATION_COLOR_READ_FORMAT", "IMPLEMENTATION_COLOR_READ_TYPE", "IMPORT_RULE", "INCR", "INCR_WRAP", "INDEX", "INDEX_SIZE_ERR", "INDIRECT", "INT", "INTERLEAVED_ATTRIBS", "INT_2_10_10_10_REV", "INT_SAMPLER_2D", "INT_SAMPLER_2D_ARRAY", "INT_SAMPLER_3D", "INT_SAMPLER_CUBE", "INT_VEC2", "INT_VEC3", "INT_VEC4", "INUSE_ATTRIBUTE_ERR", "INVALID_ACCESS_ERR", "INVALID_CHARACTER_ERR", "INVALID_ENUM", "INVALID_EXPRESSION_ERR", "INVALID_FRAMEBUFFER_OPERATION", "INVALID_INDEX", "INVALID_MODIFICATION_ERR", "INVALID_NODE_TYPE_ERR", "INVALID_OPERATION", "INVALID_STATE_ERR", "INVALID_VALUE", "INVERSE_DISTANCE", "INVERT", "IceCandidate", "IdentityCredential", "IdentityCredentialError", "IdentityProvider", "IdleDeadline", "IdleDetector", "Image", "ImageBitmap", "ImageBitmapRenderingContext", "ImageCapture", "ImageData", "ImageDecoder", "ImageTrack", "ImageTrackList", "Infinity", "Ink", "InputDeviceCapabilities", "InputDeviceInfo", "InputEvent", "InputMethodContext", "InstallTrigger", "InstallTriggerImpl", "Instance", "Int16Array", "Int32Array", "Int8Array", "Intent", "InternalError", "IntersectionObserver", "IntersectionObserverEntry", "Intl", "IsSearchProviderInstalled", "Iterator", "JSON", "JSTag", "KEEP", "KEYDOWN", "KEYFRAMES_RULE", "KEYFRAME_RULE", "KEYPRESS", "KEYUP", "KeyEvent", "Keyboard", "KeyboardEvent", "KeyboardLayoutMap", "KeyframeEffect", "LENGTHADJUST_SPACING", "LENGTHADJUST_SPACINGANDGLYPHS", "LENGTHADJUST_UNKNOWN", "LEQUAL", "LESS", "LINEAR", "LINEAR_DISTANCE", "LINEAR_MIPMAP_LINEAR", "LINEAR_MIPMAP_NEAREST", "LINES", "LINE_LOOP", "LINE_STRIP", "LINE_WIDTH", "LINK_STATUS", "LIVE", "LN10", "LN2", "LOADED", "LOADING", "LOG10E", "LOG2E", "LOWPASS", "LOWSHELF", "LOW_FLOAT", "LOW_INT", "LSException", "LSParserFilter", "LUMINANCE", "LUMINANCE_ALPHA", "LargestContentfulPaint", "LaunchParams", "LaunchQueue", "LayoutShift", "LayoutShiftAttribution", "LinearAccelerationSensor", "LinkError", "ListFormat", "LocalMediaStream", "Locale", "Location", "Lock", "LockManager", "MAP_READ", "MAP_WRITE", "MAX", "MAX_3D_TEXTURE_SIZE", "MAX_ARRAY_TEXTURE_LAYERS", "MAX_CLIENT_WAIT_TIMEOUT_WEBGL", "MAX_COLOR_ATTACHMENTS", "MAX_COMBINED_FRAGMENT_UNIFORM_COMPONENTS", "MAX_COMBINED_TEXTURE_IMAGE_UNITS", "MAX_COMBINED_UNIFORM_BLOCKS", "MAX_COMBINED_VERTEX_UNIFORM_COMPONENTS", "MAX_CUBE_MAP_TEXTURE_SIZE", "MAX_DRAW_BUFFERS", "MAX_ELEMENTS_INDICES", "MAX_ELEMENTS_VERTICES", "MAX_ELEMENT_INDEX", "MAX_FRAGMENT_INPUT_COMPONENTS", "MAX_FRAGMENT_UNIFORM_BLOCKS", "MAX_FRAGMENT_UNIFORM_COMPONENTS", "MAX_FRAGMENT_UNIFORM_VECTORS", "MAX_PROGRAM_TEXEL_OFFSET", "MAX_RENDERBUFFER_SIZE", "MAX_SAFE_INTEGER", "MAX_SAMPLES", "MAX_SERVER_WAIT_TIMEOUT", "MAX_TEXTURE_IMAGE_UNITS", "MAX_TEXTURE_LOD_BIAS", "MAX_TEXTURE_MAX_ANISOTROPY_EXT", "MAX_TEXTURE_SIZE", "MAX_TRANSFORM_FEEDBACK_INTERLEAVED_COMPONENTS", "MAX_TRANSFORM_FEEDBACK_SEPARATE_ATTRIBS", "MAX_TRANSFORM_FEEDBACK_SEPARATE_COMPONENTS", "MAX_UNIFORM_BLOCK_SIZE", "MAX_UNIFORM_BUFFER_BINDINGS", "MAX_VALUE", "MAX_VARYING_COMPONENTS", "MAX_VARYING_VECTORS", "MAX_VERTEX_ATTRIBS", "MAX_VERTEX_OUTPUT_COMPONENTS", "MAX_VERTEX_TEXTURE_IMAGE_UNITS", "MAX_VERTEX_UNIFORM_BLOCKS", "MAX_VERTEX_UNIFORM_COMPONENTS", "MAX_VERTEX_UNIFORM_VECTORS", "MAX_VIEWPORT_DIMS", "MEDIA_ERR_ABORTED", "MEDIA_ERR_DECODE", "MEDIA_ERR_ENCRYPTED", "MEDIA_ERR_NETWORK", "MEDIA_ERR_SRC_NOT_SUPPORTED", "MEDIA_KEYERR_CLIENT", "MEDIA_KEYERR_DOMAIN", "MEDIA_KEYERR_HARDWARECHANGE", "MEDIA_KEYERR_OUTPUT", "MEDIA_KEYERR_SERVICE", "MEDIA_KEYERR_UNKNOWN", "MEDIA_RULE", "MEDIUM_FLOAT", "MEDIUM_INT", "META_MASK", "MIDIAccess", "MIDIConnectionEvent", "MIDIInput", "MIDIInputMap", "MIDIMessageEvent", "MIDIOutput", "MIDIOutputMap", "MIDIPort", "MIN", "MIN_PROGRAM_TEXEL_OFFSET", "MIN_SAFE_INTEGER", "MIN_VALUE", "MIRRORED_REPEAT", "MODE_ASYNCHRONOUS", "MODE_SYNCHRONOUS", "MODIFICATION", "MOUSEDOWN", "MOUSEDRAG", "MOUSEMOVE", "MOUSEOUT", "MOUSEOVER", "MOUSEUP", "MOZ_KEYFRAMES_RULE", "MOZ_KEYFRAME_RULE", "MOZ_SOURCE_CURSOR", "MOZ_SOURCE_ERASER", "MOZ_SOURCE_KEYBOARD", "MOZ_SOURCE_MOUSE", "MOZ_SOURCE_PEN", "MOZ_SOURCE_TOUCH", "MOZ_SOURCE_UNKNOWN", "MSGESTURE_FLAG_BEGIN", "MSGESTURE_FLAG_CANCEL", "MSGESTURE_FLAG_END", "MSGESTURE_FLAG_INERTIA", "MSGESTURE_FLAG_NONE", "MSPOINTER_TYPE_MOUSE", "MSPOINTER_TYPE_PEN", "MSPOINTER_TYPE_TOUCH", "MS_ASYNC_CALLBACK_STATUS_ASSIGN_DELEGATE", "MS_ASYNC_CALLBACK_STATUS_CANCEL", "MS_ASYNC_CALLBACK_STATUS_CHOOSEANY", "MS_ASYNC_CALLBACK_STATUS_ERROR", "MS_ASYNC_CALLBACK_STATUS_JOIN", "MS_ASYNC_OP_STATUS_CANCELED", "MS_ASYNC_OP_STATUS_ERROR", "MS_ASYNC_OP_STATUS_SUCCESS", "MS_MANIPULATION_STATE_ACTIVE", "MS_MANIPULATION_STATE_CANCELLED", "MS_MANIPULATION_STATE_COMMITTED", "MS_MANIPULATION_STATE_DRAGGING", "MS_MANIPULATION_STATE_INERTIA", "MS_MANIPULATION_STATE_PRESELECT", "MS_MANIPULATION_STATE_SELECTING", "MS_MANIPULATION_STATE_STOPPED", "MS_MEDIA_ERR_ENCRYPTED", "MS_MEDIA_KEYERR_CLIENT", "MS_MEDIA_KEYERR_DOMAIN", "MS_MEDIA_KEYERR_HARDWARECHANGE", "MS_MEDIA_KEYERR_OUTPUT", "MS_MEDIA_KEYERR_SERVICE", "MS_MEDIA_KEYERR_UNKNOWN", "Map", "Math", "MathMLElement", "MediaCapabilities", "MediaCapabilitiesInfo", "MediaController", "MediaDeviceInfo", "MediaDevices", "MediaElementAudioSourceNode", "MediaEncryptedEvent", "MediaError", "MediaKeyError", "MediaKeyEvent", "MediaKeyMessageEvent", "MediaKeyNeededEvent", "MediaKeySession", "MediaKeyStatusMap", "MediaKeySystemAccess", "MediaKeys", "MediaList", "MediaMetadata", "MediaQueryList", "MediaQueryListEvent", "MediaRecorder", "MediaRecorderErrorEvent", "MediaSession", "MediaSettingsRange", "MediaSource", "MediaSourceHandle", "MediaStream", "MediaStreamAudioDestinationNode", "MediaStreamAudioSourceNode", "MediaStreamEvent", "MediaStreamTrack", "MediaStreamTrackAudioSourceNode", "MediaStreamTrackEvent", "MediaStreamTrackGenerator", "MediaStreamTrackProcessor", "MediaStreamTrackVideoStats", "Memory", "MessageChannel", "MessageEvent", "MessagePort", "Methods", "MimeType", "MimeTypeArray", "Module", "MouseEvent", "MouseScrollEvent", "MozAnimation", "MozAnimationDelay", "MozAnimationDirection", "MozAnimationDuration", "MozAnimationFillMode", "MozAnimationIterationCount", "MozAnimationName", "MozAnimationPlayState", "MozAnimationTimingFunction", "MozAppearance", "MozBackfaceVisibility", "MozBinding", "MozBorderBottomColors", "MozBorderEnd", "MozBorderEndColor", "MozBorderEndStyle", "MozBorderEndWidth", "MozBorderImage", "MozBorderLeftColors", "MozBorderRightColors", "MozBorderStart", "MozBorderStartColor", "MozBorderStartStyle", "MozBorderStartWidth", "MozBorderTopColors", "MozBoxAlign", "MozBoxDirection", "MozBoxFlex", "MozBoxOrdinalGroup", "MozBoxOrient", "MozBoxPack", "MozBoxSizing", "MozCSSKeyframeRule", "MozCSSKeyframesRule", "MozColumnCount", "MozColumnFill", "MozColumnGap", "MozColumnRule", "MozColumnRuleColor", "MozColumnRuleStyle", "MozColumnRuleWidth", "MozColumnWidth", "MozColumns", "MozContactChangeEvent", "MozFloatEdge", "MozFontFeatureSettings", "MozFontLanguageOverride", "MozForceBrokenImageIcon", "MozHyphens", "MozImageRegion", "MozMarginEnd", "MozMarginStart", "MozMmsEvent", "MozMmsMessage", "MozMobileMessageThread", "MozOSXFontSmoothing", "MozOrient", "MozOsxFontSmoothing", "MozOutlineRadius", "MozOutlineRadiusBottomleft", "MozOutlineRadiusBottomright", "MozOutlineRadiusTopleft", "MozOutlineRadiusTopright", "MozPaddingEnd", "MozPaddingStart", "MozPerspective", "MozPerspectiveOrigin", "MozPowerManager", "MozSettingsEvent", "MozSmsEvent", "MozSmsMessage", "MozStackSizing", "MozTabSize", "MozTextAlignLast", "MozTextDecorationColor", "MozTextDecorationLine", "MozTextDecorationStyle", "MozTextSizeAdjust", "MozTransform", "MozTransformOrigin", "MozTransformStyle", "MozTransition", "MozTransitionDelay", "MozTransitionDuration", "MozTransitionProperty", "MozTransitionTimingFunction", "MozUserFocus", "MozUserInput", "MozUserModify", "MozUserSelect", "MozWindowDragging", "MozWindowShadow", "MutationEvent", "MutationObserver", "MutationRecord", "NAMESPACE_ERR", "NAMESPACE_RULE", "NEAREST", "NEAREST_MIPMAP_LINEAR", "NEAREST_MIPMAP_NEAREST", "NEGATIVE_INFINITY", "NETWORK_EMPTY", "NETWORK_ERR", "NETWORK_IDLE", "NETWORK_LOADED", "NETWORK_LOADING", "NETWORK_NO_SOURCE", "NEVER", "NEW", "NEXT", "NEXT_NO_DUPLICATE", "NICEST", "NODE_AFTER", "NODE_BEFORE", "NODE_BEFORE_AND_AFTER", "NODE_INSIDE", "NONE", "NON_TRANSIENT_ERR", "NOTATION_NODE", "NOTCH", "NOTEQUAL", "NOT_ALLOWED_ERR", "NOT_FOUND_ERR", "NOT_READABLE_ERR", "NOT_SUPPORTED_ERR", "NO_DATA_ALLOWED_ERR", "NO_ERR", "NO_ERROR", "NO_MODIFICATION_ALLOWED_ERR", "NUMBER_TYPE", "NUM_COMPRESSED_TEXTURE_FORMATS", "NaN", "NamedNodeMap", "NavigateEvent", "Navigation", "NavigationActivation", "NavigationCurrentEntryChangeEvent", "NavigationDestination", "NavigationHistoryEntry", "NavigationPreloadManager", "NavigationTransition", "Navigator", "NavigatorLogin", "NavigatorManagedData", "NavigatorUAData", "NearbyLinks", "NetworkInformation", "Node", "NodeFilter", "NodeIterator", "NodeList", "NotRestoredReasonDetails", "NotRestoredReasons", "Notation", "Notification", "NotifyPaintEvent", "Number", "NumberFormat", "OBJECT_TYPE", "OBSOLETE", "OK", "ONE", "ONE_MINUS_CONSTANT_ALPHA", "ONE_MINUS_CONSTANT_COLOR", "ONE_MINUS_DST_ALPHA", "ONE_MINUS_DST_COLOR", "ONE_MINUS_SRC_ALPHA", "ONE_MINUS_SRC_COLOR", "OPEN", "OPENED", "OPENING", "ORDERED_NODE_ITERATOR_TYPE", "ORDERED_NODE_SNAPSHOT_TYPE", "OTHER_ERROR", "OTPCredential", "OUT_OF_MEMORY", "Object", "OfflineAudioCompletionEvent", "OfflineAudioContext", "OfflineResourceList", "OffscreenCanvas", "OffscreenCanvasRenderingContext2D", "Option", "OrientationSensor", "OscillatorNode", "OverconstrainedError", "OverflowEvent", "PACK_ALIGNMENT", "PACK_ROW_LENGTH", "PACK_SKIP_PIXELS", "PACK_SKIP_ROWS", "PAGE_RULE", "PARSE_ERR", "PATHSEG_ARC_ABS", "PATHSEG_ARC_REL", "PATHSEG_CLOSEPATH", "PATHSEG_CURVETO_CUBIC_ABS", "PATHSEG_CURVETO_CUBIC_REL", "PATHSEG_CURVETO_CUBIC_SMOOTH_ABS", "PATHSEG_CURVETO_CUBIC_SMOOTH_REL", "PATHSEG_CURVETO_QUADRATIC_ABS", "PATHSEG_CURVETO_QUADRATIC_REL", "PATHSEG_CURVETO_QUADRATIC_SMOOTH_ABS", "PATHSEG_CURVETO_QUADRATIC_SMOOTH_REL", "PATHSEG_LINETO_ABS", "PATHSEG_LINETO_HORIZONTAL_ABS", "PATHSEG_LINETO_HORIZONTAL_REL", "PATHSEG_LINETO_REL", "PATHSEG_LINETO_VERTICAL_ABS", "PATHSEG_LINETO_VERTICAL_REL", "PATHSEG_MOVETO_ABS", "PATHSEG_MOVETO_REL", "PATHSEG_UNKNOWN", "PATH_EXISTS_ERR", "PEAKING", "PERMISSION_DENIED", "PERSISTENT", "PI", "PIXEL_PACK_BUFFER", "PIXEL_PACK_BUFFER_BINDING", "PIXEL_UNPACK_BUFFER", "PIXEL_UNPACK_BUFFER_BINDING", "PLAYING_STATE", "POINTS", "POLYGON_OFFSET_FACTOR", "POLYGON_OFFSET_FILL", "POLYGON_OFFSET_UNITS", "POSITION_UNAVAILABLE", "POSITIVE_INFINITY", "PREV", "PREV_NO_DUPLICATE", "PROCESSING_INSTRUCTION_NODE", "PageChangeEvent", "PageRevealEvent", "PageSwapEvent", "PageTransitionEvent", "PaintRequest", "PaintRequestList", "PannerNode", "PasswordCredential", "Path2D", "PaymentAddress", "PaymentInstruments", "PaymentManager", "PaymentMethodChangeEvent", "PaymentRequest", "PaymentRequestUpdateEvent", "PaymentResponse", "Performance", "PerformanceElementTiming", "PerformanceEntry", "PerformanceEventTiming", "PerformanceLongAnimationFrameTiming", "PerformanceLongTaskTiming", "PerformanceMark", "PerformanceMeasure", "PerformanceNavigation", "PerformanceNavigationTiming", "PerformanceObserver", "PerformanceObserverEntryList", "PerformancePaintTiming", "PerformanceResourceTiming", "PerformanceScriptTiming", "PerformanceServerTiming", "PerformanceTiming", "PeriodicSyncManager", "PeriodicWave", "PermissionStatus", "Permissions", "PhotoCapabilities", "PictureInPictureEvent", "PictureInPictureWindow", "Plugin", "PluginArray", "PluralRules", "PointerEvent", "PopStateEvent", "PopupBlockedEvent", "Presentation", "PresentationAvailability", "PresentationConnection", "PresentationConnectionAvailableEvent", "PresentationConnectionCloseEvent", "PresentationConnectionList", "PresentationReceiver", "PresentationRequest", "ProcessingInstruction", "Profiler", "ProgressEvent", "Promise", "PromiseRejectionEvent", "PropertyNodeList", "Proxy", "PublicKeyCredential", "PushManager", "PushSubscription", "PushSubscriptionOptions", "Q", "QUERY_RESOLVE", "QUERY_RESULT", "QUERY_RESULT_AVAILABLE", "QUOTA_ERR", "QUOTA_EXCEEDED_ERR", "QueryInterface", "R11F_G11F_B10F", "R16F", "R16I", "R16UI", "R32F", "R32I", "R32UI", "R8", "R8I", "R8UI", "R8_SNORM", "RASTERIZER_DISCARD", "READ", "READ_BUFFER", "READ_FRAMEBUFFER", "READ_FRAMEBUFFER_BINDING", "READ_ONLY", "READ_ONLY_ERR", "READ_WRITE", "RED", "RED_BITS", "RED_INTEGER", "REMOVAL", "RENDERBUFFER", "RENDERBUFFER_ALPHA_SIZE", "RENDERBUFFER_BINDING", "RENDERBUFFER_BLUE_SIZE", "RENDERBUFFER_DEPTH_SIZE", "RENDERBUFFER_GREEN_SIZE", "RENDERBUFFER_HEIGHT", "RENDERBUFFER_INTERNAL_FORMAT", "RENDERBUFFER_RED_SIZE", "RENDERBUFFER_SAMPLES", "RENDERBUFFER_STENCIL_SIZE", "RENDERBUFFER_WIDTH", "RENDERER", "RENDERING_INTENT_ABSOLUTE_COLORIMETRIC", "RENDERING_INTENT_AUTO", "RENDERING_INTENT_PERCEPTUAL", "RENDERING_INTENT_RELATIVE_COLORIMETRIC", "RENDERING_INTENT_SATURATION", "RENDERING_INTENT_UNKNOWN", "RENDER_ATTACHMENT", "REPEAT", "REPLACE", "RG", "RG16F", "RG16I", "RG16UI", "RG32F", "RG32I", "RG32UI", "RG8", "RG8I", "RG8UI", "RG8_SNORM", "RGB", "RGB10_A2", "RGB10_A2UI", "RGB16F", "RGB16I", "RGB16UI", "RGB32F", "RGB32I", "RGB32UI", "RGB565", "RGB5_A1", "RGB8", "RGB8I", "RGB8UI", "RGB8_SNORM", "RGB9_E5", "RGBA", "RGBA16F", "RGBA16I", "RGBA16UI", "RGBA32F", "RGBA32I", "RGBA32UI", "RGBA4", "RGBA8", "RGBA8I", "RGBA8UI", "RGBA8_SNORM", "RGBA_INTEGER", "RGBColor", "RGB_INTEGER", "RG_INTEGER", "ROTATION_CLOCKWISE", "ROTATION_COUNTERCLOCKWISE", "RTCCertificate", "RTCDTMFSender", "RTCDTMFToneChangeEvent", "RTCDataChannel", "RTCDataChannelEvent", "RTCDtlsTransport", "RTCEncodedAudioFrame", "RTCEncodedVideoFrame", "RTCError", "RTCErrorEvent", "RTCIceCandidate", "RTCIceTransport", "RTCPeerConnection", "RTCPeerConnectionIceErrorEvent", "RTCPeerConnectionIceEvent", "RTCRtpReceiver", "RTCRtpScriptTransform", "RTCRtpSender", "RTCRtpTransceiver", "RTCSctpTransport", "RTCSessionDescription", "RTCStatsReport", "RTCTrackEvent", "RadioNodeList", "Range", "RangeError", "RangeException", "ReadableByteStreamController", "ReadableStream", "ReadableStreamBYOBReader", "ReadableStreamBYOBRequest", "ReadableStreamDefaultController", "ReadableStreamDefaultReader", "RecordErrorEvent", "Rect", "ReferenceError", "Reflect", "RegExp", "RelativeOrientationSensor", "RelativeTimeFormat", "RemotePlayback", "Report", "ReportBody", "ReportingObserver", "Request", "ResizeObserver", "ResizeObserverEntry", "ResizeObserverSize", "Response", "RuntimeError", "SAMPLER_2D", "SAMPLER_2D_ARRAY", "SAMPLER_2D_ARRAY_SHADOW", "SAMPLER_2D_SHADOW", "SAMPLER_3D", "SAMPLER_BINDING", "SAMPLER_CUBE", "SAMPLER_CUBE_SHADOW", "SAMPLES", "SAMPLE_ALPHA_TO_COVERAGE", "SAMPLE_BUFFERS", "SAMPLE_COVERAGE", "SAMPLE_COVERAGE_INVERT", "SAMPLE_COVERAGE_VALUE", "SAWTOOTH", "SCHEDULED_STATE", "SCISSOR_BOX", "SCISSOR_TEST", "SCROLL_PAGE_DOWN", "SCROLL_PAGE_UP", "SDP_ANSWER", "SDP_OFFER", "SDP_PRANSWER", "SECURITY_ERR", "SELECT", "SEPARATE_ATTRIBS", "SERIALIZE_ERR", "SEVERITY_ERROR", "SEVERITY_FATAL_ERROR", "SEVERITY_WARNING", "SHADER_COMPILER", "SHADER_TYPE", "SHADING_LANGUAGE_VERSION", "SHIFT_MASK", "SHORT", "SHOWING", "SHOW_ALL", "SHOW_ATTRIBUTE", "SHOW_CDATA_SECTION", "SHOW_COMMENT", "SHOW_DOCUMENT", "SHOW_DOCUMENT_FRAGMENT", "SHOW_DOCUMENT_TYPE", "SHOW_ELEMENT", "SHOW_ENTITY", "SHOW_ENTITY_REFERENCE", "SHOW_NOTATION", "SHOW_PROCESSING_INSTRUCTION", "SHOW_TEXT", "SIGNALED", "SIGNED_NORMALIZED", "SINE", "SOUNDFIELD", "SQLException", "SQRT1_2", "SQRT2", "SQUARE", "SRC_ALPHA", "SRC_ALPHA_SATURATE", "SRC_COLOR", "SRGB", "SRGB8", "SRGB8_ALPHA8", "START_TO_END", "START_TO_START", "STATIC_COPY", "STATIC_DRAW", "STATIC_READ", "STENCIL", "STENCIL_ATTACHMENT", "STENCIL_BACK_FAIL", "STENCIL_BACK_FUNC", "STENCIL_BACK_PASS_DEPTH_FAIL", "STENCIL_BACK_PASS_DEPTH_PASS", "STENCIL_BACK_REF", "STENCIL_BACK_VALUE_MASK", "STENCIL_BACK_WRITEMASK", "STENCIL_BITS", "STENCIL_BUFFER_BIT", "STENCIL_CLEAR_VALUE", "STENCIL_FAIL", "STENCIL_FUNC", "STENCIL_INDEX", "STENCIL_INDEX8", "STENCIL_PASS_DEPTH_FAIL", "STENCIL_PASS_DEPTH_PASS", "STENCIL_REF", "STENCIL_TEST", "STENCIL_VALUE_MASK", "STENCIL_WRITEMASK", "STORAGE", "STORAGE_BINDING", "STREAM_COPY", "STREAM_DRAW", "STREAM_READ", "STRING_TYPE", "STYLE_RULE", "SUBPIXEL_BITS", "SUPPORTS_RULE", "SVGAElement", "SVGAltGlyphDefElement", "SVGAltGlyphElement", "SVGAltGlyphItemElement", "SVGAngle", "SVGAnimateColorElement", "SVGAnimateElement", "SVGAnimateMotionElement", "SVGAnimateTransformElement", "SVGAnimatedAngle", "SVGAnimatedBoolean", "SVGAnimatedEnumeration", "SVGAnimatedInteger", "SVGAnimatedLength", "SVGAnimatedLengthList", "SVGAnimatedNumber", "SVGAnimatedNumberList", "SVGAnimatedPreserveAspectRatio", "SVGAnimatedRect", "SVGAnimatedString", "SVGAnimatedTransformList", "SVGAnimationElement", "SVGCircleElement", "SVGClipPathElement", "SVGColor", "SVGComponentTransferFunctionElement", "SVGCursorElement", "SVGDefsElement", "SVGDescElement", "SVGDiscardElement", "SVGDocument", "SVGElement", "SVGElementInstance", "SVGElementInstanceList", "SVGEllipseElement", "SVGException", "SVGFEBlendElement", "SVGFEColorMatrixElement", "SVGFEComponentTransferElement", "SVGFECompositeElement", "SVGFEConvolveMatrixElement", "SVGFEDiffuseLightingElement", "SVGFEDisplacementMapElement", "SVGFEDistantLightElement", "SVGFEDropShadowElement", "SVGFEFloodElement", "SVGFEFuncAElement", "SVGFEFuncBElement", "SVGFEFuncGElement", "SVGFEFuncRElement", "SVGFEGaussianBlurElement", "SVGFEImageElement", "SVGFEMergeElement", "SVGFEMergeNodeElement", "SVGFEMorphologyElement", "SVGFEOffsetElement", "SVGFEPointLightElement", "SVGFESpecularLightingElement", "SVGFESpotLightElement", "SVGFETileElement", "SVGFETurbulenceElement", "SVGFilterElement", "SVGFontElement", "SVGFontFaceElement", "SVGFontFaceFormatElement", "SVGFontFaceNameElement", "SVGFontFaceSrcElement", "SVGFontFaceUriElement", "SVGForeignObjectElement", "SVGGElement", "SVGGeometryElement", "SVGGlyphElement", "SVGGlyphRefElement", "SVGGradientElement", "SVGGraphicsElement", "SVGHKernElement", "SVGImageElement", "SVGLength", "SVGLengthList", "SVGLineElement", "SVGLinearGradientElement", "SVGMPathElement", "SVGMarkerElement", "SVGMaskElement", "SVGMatrix", "SVGMetadataElement", "SVGMissingGlyphElement", "SVGNumber", "SVGNumberList", "SVGPaint", "SVGPathElement", "SVGPathSeg", "SVGPathSegArcAbs", "SVGPathSegArcRel", "SVGPathSegClosePath", "SVGPathSegCurvetoCubicAbs", "SVGPathSegCurvetoCubicRel", "SVGPathSegCurvetoCubicSmoothAbs", "SVGPathSegCurvetoCubicSmoothRel", "SVGPathSegCurvetoQuadraticAbs", "SVGPathSegCurvetoQuadraticRel", "SVGPathSegCurvetoQuadraticSmoothAbs", "SVGPathSegCurvetoQuadraticSmoothRel", "SVGPathSegLinetoAbs", "SVGPathSegLinetoHorizontalAbs", "SVGPathSegLinetoHorizontalRel", "SVGPathSegLinetoRel", "SVGPathSegLinetoVerticalAbs", "SVGPathSegLinetoVerticalRel", "SVGPathSegList", "SVGPathSegMovetoAbs", "SVGPathSegMovetoRel", "SVGPatternElement", "SVGPoint", "SVGPointList", "SVGPolygonElement", "SVGPolylineElement", "SVGPreserveAspectRatio", "SVGRadialGradientElement", "SVGRect", "SVGRectElement", "SVGRenderingIntent", "SVGSVGElement", "SVGScriptElement", "SVGSetElement", "SVGStopElement", "SVGStringList", "SVGStyleElement", "SVGSwitchElement", "SVGSymbolElement", "SVGTRefElement", "SVGTSpanElement", "SVGTextContentElement", "SVGTextElement", "SVGTextPathElement", "SVGTextPositioningElement", "SVGTitleElement", "SVGTransform", "SVGTransformList", "SVGUnitTypes", "SVGUseElement", "SVGVKernElement", "SVGViewElement", "SVGViewSpec", "SVGZoomAndPan", "SVGZoomEvent", "SVG_ANGLETYPE_DEG", "SVG_ANGLETYPE_GRAD", "SVG_ANGLETYPE_RAD", "SVG_ANGLETYPE_UNKNOWN", "SVG_ANGLETYPE_UNSPECIFIED", "SVG_CHANNEL_A", "SVG_CHANNEL_B", "SVG_CHANNEL_G", "SVG_CHANNEL_R", "SVG_CHANNEL_UNKNOWN", "SVG_COLORTYPE_CURRENTCOLOR", "SVG_COLORTYPE_RGBCOLOR", "SVG_COLORTYPE_RGBCOLOR_ICCCOLOR", "SVG_COLORTYPE_UNKNOWN", "SVG_EDGEMODE_DUPLICATE", "SVG_EDGEMODE_NONE", "SVG_EDGEMODE_UNKNOWN", "SVG_EDGEMODE_WRAP", "SVG_FEBLEND_MODE_COLOR", "SVG_FEBLEND_MODE_COLOR_BURN", "SVG_FEBLEND_MODE_COLOR_DODGE", "SVG_FEBLEND_MODE_DARKEN", "SVG_FEBLEND_MODE_DIFFERENCE", "SVG_FEBLEND_MODE_EXCLUSION", "SVG_FEBLEND_MODE_HARD_LIGHT", "SVG_FEBLEND_MODE_HUE", "SVG_FEBLEND_MODE_LIGHTEN", "SVG_FEBLEND_MODE_LUMINOSITY", "SVG_FEBLEND_MODE_MULTIPLY", "SVG_FEBLEND_MODE_NORMAL", "SVG_FEBLEND_MODE_OVERLAY", "SVG_FEBLEND_MODE_SATURATION", "SVG_FEBLEND_MODE_SCREEN", "SVG_FEBLEND_MODE_SOFT_LIGHT", "SVG_FEBLEND_MODE_UNKNOWN", "SVG_FECOLORMATRIX_TYPE_HUEROTATE", "SVG_FECOLORMATRIX_TYPE_LUMINANCETOALPHA", "SVG_FECOLORMATRIX_TYPE_MATRIX", "SVG_FECOLORMATRIX_TYPE_SATURATE", "SVG_FECOLORMATRIX_TYPE_UNKNOWN", "SVG_FECOMPONENTTRANSFER_TYPE_DISCRETE", "SVG_FECOMPONENTTRANSFER_TYPE_GAMMA", "SVG_FECOMPONENTTRANSFER_TYPE_IDENTITY", "SVG_FECOMPONENTTRANSFER_TYPE_LINEAR", "SVG_FECOMPONENTTRANSFER_TYPE_TABLE", "SVG_FECOMPONENTTRANSFER_TYPE_UNKNOWN", "SVG_FECOMPOSITE_OPERATOR_ARITHMETIC", "SVG_FECOMPOSITE_OPERATOR_ATOP", "SVG_FECOMPOSITE_OPERATOR_IN", "SVG_FECOMPOSITE_OPERATOR_LIGHTER", "SVG_FECOMPOSITE_OPERATOR_OUT", "SVG_FECOMPOSITE_OPERATOR_OVER", "SVG_FECOMPOSITE_OPERATOR_UNKNOWN", "SVG_FECOMPOSITE_OPERATOR_XOR", "SVG_INVALID_VALUE_ERR", "SVG_LENGTHTYPE_CM", "SVG_LENGTHTYPE_EMS", "SVG_LENGTHTYPE_EXS", "SVG_LENGTHTYPE_IN", "SVG_LENGTHTYPE_MM", "SVG_LENGTHTYPE_NUMBER", "SVG_LENGTHTYPE_PC", "SVG_LENGTHTYPE_PERCENTAGE", "SVG_LENGTHTYPE_PT", "SVG_LENGTHTYPE_PX", "SVG_LENGTHTYPE_UNKNOWN", "SVG_MARKERUNITS_STROKEWIDTH", "SVG_MARKERUNITS_UNKNOWN", "SVG_MARKERUNITS_USERSPACEONUSE", "SVG_MARKER_ORIENT_ANGLE", "SVG_MARKER_ORIENT_AUTO", "SVG_MARKER_ORIENT_AUTO_START_REVERSE", "SVG_MARKER_ORIENT_UNKNOWN", "SVG_MASKTYPE_ALPHA", "SVG_MASKTYPE_LUMINANCE", "SVG_MATRIX_NOT_INVERTABLE", "SVG_MEETORSLICE_MEET", "SVG_MEETORSLICE_SLICE", "SVG_MEETORSLICE_UNKNOWN", "SVG_MORPHOLOGY_OPERATOR_DILATE", "SVG_MORPHOLOGY_OPERATOR_ERODE", "SVG_MORPHOLOGY_OPERATOR_UNKNOWN", "SVG_PAINTTYPE_CURRENTCOLOR", "SVG_PAINTTYPE_NONE", "SVG_PAINTTYPE_RGBCOLOR", "SVG_PAINTTYPE_RGBCOLOR_ICCCOLOR", "SVG_PAINTTYPE_UNKNOWN", "SVG_PAINTTYPE_URI", "SVG_PAINTTYPE_URI_CURRENTCOLOR", "SVG_PAINTTYPE_URI_NONE", "SVG_PAINTTYPE_URI_RGBCOLOR", "SVG_PAINTTYPE_URI_RGBCOLOR_ICCCOLOR", "SVG_PRESERVEASPECTRATIO_NONE", "SVG_PRESERVEASPECTRATIO_UNKNOWN", "SVG_PRESERVEASPECTRATIO_XMAXYMAX", "SVG_PRESERVEASPECTRATIO_XMAXYMID", "SVG_PRESERVEASPECTRATIO_XMAXYMIN", "SVG_PRESERVEASPECTRATIO_XMIDYMAX", "SVG_PRESERVEASPECTRATIO_XMIDYMID", "SVG_PRESERVEASPECTRATIO_XMIDYMIN", "SVG_PRESERVEASPECTRATIO_XMINYMAX", "SVG_PRESERVEASPECTRATIO_XMINYMID", "SVG_PRESERVEASPECTRATIO_XMINYMIN", "SVG_SPREADMETHOD_PAD", "SVG_SPREADMETHOD_REFLECT", "SVG_SPREADMETHOD_REPEAT", "SVG_SPREADMETHOD_UNKNOWN", "SVG_STITCHTYPE_NOSTITCH", "SVG_STITCHTYPE_STITCH", "SVG_STITCHTYPE_UNKNOWN", "SVG_TRANSFORM_MATRIX", "SVG_TRANSFORM_ROTATE", "SVG_TRANSFORM_SCALE", "SVG_TRANSFORM_SKEWX", "SVG_TRANSFORM_SKEWY", "SVG_TRANSFORM_TRANSLATE", "SVG_TRANSFORM_UNKNOWN", "SVG_TURBULENCE_TYPE_FRACTALNOISE", "SVG_TURBULENCE_TYPE_TURBULENCE", "SVG_TURBULENCE_TYPE_UNKNOWN", "SVG_UNIT_TYPE_OBJECTBOUNDINGBOX", "SVG_UNIT_TYPE_UNKNOWN", "SVG_UNIT_TYPE_USERSPACEONUSE", "SVG_WRONG_TYPE_ERR", "SVG_ZOOMANDPAN_DISABLE", "SVG_ZOOMANDPAN_MAGNIFY", "SVG_ZOOMANDPAN_UNKNOWN", "SYNC_CONDITION", "SYNC_FENCE", "SYNC_FLAGS", "SYNC_FLUSH_COMMANDS_BIT", "SYNC_GPU_COMMANDS_COMPLETE", "SYNC_STATUS", "SYNTAX_ERR", "SavedPages", "Scheduler", "Scheduling", "Screen", "ScreenDetailed", "ScreenDetails", "ScreenOrientation", "Script", "ScriptProcessorNode", "ScrollAreaEvent", "ScrollTimeline", "SecurityPolicyViolationEvent", "Segmenter", "Selection", "Sensor", "SensorErrorEvent", "Serial", "SerialPort", "ServiceWorker", "ServiceWorkerContainer", "ServiceWorkerRegistration", "SessionDescription", "Set", "ShadowRoot", "SharedArrayBuffer", "SharedStorage", "SharedStorageWorklet", "SharedWorker", "SimpleGestureEvent", "SourceBuffer", "SourceBufferList", "SpeechSynthesis", "SpeechSynthesisErrorEvent", "SpeechSynthesisEvent", "SpeechSynthesisUtterance", "SpeechSynthesisVoice", "StaticRange", "StereoPannerNode", "StopIteration", "Storage", "StorageBucket", "StorageBucketManager", "StorageEvent", "StorageManager", "String", "StructType", "StylePropertyMap", "StylePropertyMapReadOnly", "StyleSheet", "StyleSheetList", "SubmitEvent", "SubtleCrypto", "Symbol", "SyncManager", "SyntaxError", "TEMPORARY", "TEXTPATH_METHODTYPE_ALIGN", "TEXTPATH_METHODTYPE_STRETCH", "TEXTPATH_METHODTYPE_UNKNOWN", "TEXTPATH_SPACINGTYPE_AUTO", "TEXTPATH_SPACINGTYPE_EXACT", "TEXTPATH_SPACINGTYPE_UNKNOWN", "TEXTURE", "TEXTURE0", "TEXTURE1", "TEXTURE10", "TEXTURE11", "TEXTURE12", "TEXTURE13", "TEXTURE14", "TEXTURE15", "TEXTURE16", "TEXTURE17", "TEXTURE18", "TEXTURE19", "TEXTURE2", "TEXTURE20", "TEXTURE21", "TEXTURE22", "TEXTURE23", "TEXTURE24", "TEXTURE25", "TEXTURE26", "TEXTURE27", "TEXTURE28", "TEXTURE29", "TEXTURE3", "TEXTURE30", "TEXTURE31", "TEXTURE4", "TEXTURE5", "TEXTURE6", "TEXTURE7", "TEXTURE8", "TEXTURE9", "TEXTURE_2D", "TEXTURE_2D_ARRAY", "TEXTURE_3D", "TEXTURE_BASE_LEVEL", "TEXTURE_BINDING", "TEXTURE_BINDING_2D", "TEXTURE_BINDING_2D_ARRAY", "TEXTURE_BINDING_3D", "TEXTURE_BINDING_CUBE_MAP", "TEXTURE_COMPARE_FUNC", "TEXTURE_COMPARE_MODE", "TEXTURE_CUBE_MAP", "TEXTURE_CUBE_MAP_NEGATIVE_X", "TEXTURE_CUBE_MAP_NEGATIVE_Y", "TEXTURE_CUBE_MAP_NEGATIVE_Z", "TEXTURE_CUBE_MAP_POSITIVE_X", "TEXTURE_CUBE_MAP_POSITIVE_Y", "TEXTURE_CUBE_MAP_POSITIVE_Z", "TEXTURE_IMMUTABLE_FORMAT", "TEXTURE_IMMUTABLE_LEVELS", "TEXTURE_MAG_FILTER", "TEXTURE_MAX_ANISOTROPY_EXT", "TEXTURE_MAX_LEVEL", "TEXTURE_MAX_LOD", "TEXTURE_MIN_FILTER", "TEXTURE_MIN_LOD", "TEXTURE_WRAP_R", "TEXTURE_WRAP_S", "TEXTURE_WRAP_T", "TEXT_NODE", "TIMEOUT", "TIMEOUT_ERR", "TIMEOUT_EXPIRED", "TIMEOUT_IGNORED", "TOO_LARGE_ERR", "TRANSACTION_INACTIVE_ERR", "TRANSFORM_FEEDBACK", "TRANSFORM_FEEDBACK_ACTIVE", "TRANSFORM_FEEDBACK_BINDING", "TRANSFORM_FEEDBACK_BUFFER", "TRANSFORM_FEEDBACK_BUFFER_BINDING", "TRANSFORM_FEEDBACK_BUFFER_MODE", "TRANSFORM_FEEDBACK_BUFFER_SIZE", "TRANSFORM_FEEDBACK_BUFFER_START", "TRANSFORM_FEEDBACK_PAUSED", "TRANSFORM_FEEDBACK_PRIMITIVES_WRITTEN", "TRANSFORM_FEEDBACK_VARYINGS", "TRIANGLE", "TRIANGLES", "TRIANGLE_FAN", "TRIANGLE_STRIP", "TYPE_BACK_FORWARD", "TYPE_ERR", "TYPE_MISMATCH_ERR", "TYPE_NAVIGATE", "TYPE_RELOAD", "TYPE_RESERVED", "Table", "Tag", "TaskAttributionTiming", "TaskController", "TaskPriorityChangeEvent", "TaskSignal", "Text", "TextDecoder", "TextDecoderStream", "TextEncoder", "TextEncoderStream", "TextEvent", "TextFormat", "TextFormatUpdateEvent", "TextMetrics", "TextTrack", "TextTrackCue", "TextTrackCueList", "TextTrackList", "TextUpdateEvent", "TimeEvent", "TimeRanges", "ToggleEvent", "Touch", "TouchEvent", "TouchList", "TrackEvent", "TransformStream", "TransformStreamDefaultController", "TransitionEvent", "TreeWalker", "TrustedHTML", "TrustedScript", "TrustedScriptURL", "TrustedTypePolicy", "TrustedTypePolicyFactory", "TypeError", "TypedObject", "U2F", "UIEvent", "UNCACHED", "UNIFORM", "UNIFORM_ARRAY_STRIDE", "UNIFORM_BLOCK_ACTIVE_UNIFORMS", "UNIFORM_BLOCK_ACTIVE_UNIFORM_INDICES", "UNIFORM_BLOCK_BINDING", "UNIFORM_BLOCK_DATA_SIZE", "UNIFORM_BLOCK_INDEX", "UNIFORM_BLOCK_REFERENCED_BY_FRAGMENT_SHADER", "UNIFORM_BLOCK_REFERENCED_BY_VERTEX_SHADER", "UNIFORM_BUFFER", "UNIFORM_BUFFER_BINDING", "UNIFORM_BUFFER_OFFSET_ALIGNMENT", "UNIFORM_BUFFER_SIZE", "UNIFORM_BUFFER_START", "UNIFORM_IS_ROW_MAJOR", "UNIFORM_MATRIX_STRIDE", "UNIFORM_OFFSET", "UNIFORM_SIZE", "UNIFORM_TYPE", "UNKNOWN_ERR", "UNKNOWN_RULE", "UNMASKED_RENDERER_WEBGL", "UNMASKED_VENDOR_WEBGL", "UNORDERED_NODE_ITERATOR_TYPE", "UNORDERED_NODE_SNAPSHOT_TYPE", "UNPACK_ALIGNMENT", "UNPACK_COLORSPACE_CONVERSION_WEBGL", "UNPACK_FLIP_Y_WEBGL", "UNPACK_IMAGE_HEIGHT", "UNPACK_PREMULTIPLY_ALPHA_WEBGL", "UNPACK_ROW_LENGTH", "UNPACK_SKIP_IMAGES", "UNPACK_SKIP_PIXELS", "UNPACK_SKIP_ROWS", "UNSCHEDULED_STATE", "UNSENT", "UNSIGNALED", "UNSIGNED_BYTE", "UNSIGNED_INT", "UNSIGNED_INT_10F_11F_11F_REV", "UNSIGNED_INT_24_8", "UNSIGNED_INT_2_10_10_10_REV", "UNSIGNED_INT_5_9_9_9_REV", "UNSIGNED_INT_SAMPLER_2D", "UNSIGNED_INT_SAMPLER_2D_ARRAY", "UNSIGNED_INT_SAMPLER_3D", "UNSIGNED_INT_SAMPLER_CUBE", "UNSIGNED_INT_VEC2", "UNSIGNED_INT_VEC3", "UNSIGNED_INT_VEC4", "UNSIGNED_NORMALIZED", "UNSIGNED_SHORT", "UNSIGNED_SHORT_4_4_4_4", "UNSIGNED_SHORT_5_5_5_1", "UNSIGNED_SHORT_5_6_5", "UNSPECIFIED_EVENT_TYPE_ERR", "UPDATEREADY", "URIError", "URL", "URLPattern", "URLSearchParams", "URLUnencoded", "URL_MISMATCH_ERR", "USB", "USBAlternateInterface", "USBConfiguration", "USBConnectionEvent", "USBDevice", "USBEndpoint", "USBInTransferResult", "USBInterface", "USBIsochronousInTransferPacket", "USBIsochronousInTransferResult", "USBIsochronousOutTransferPacket", "USBIsochronousOutTransferResult", "USBOutTransferResult", "UTC", "Uint16Array", "Uint32Array", "Uint8Array", "Uint8ClampedArray", "UserActivation", "UserMessageHandler", "UserMessageHandlersNamespace", "UserProximityEvent", "VALIDATE_STATUS", "VALIDATION_ERR", "VARIABLES_RULE", "VENDOR", "VERSION", "VERSION_CHANGE", "VERSION_ERR", "VERTEX", "VERTEX_ARRAY_BINDING", "VERTEX_ATTRIB_ARRAY_BUFFER_BINDING", "VERTEX_ATTRIB_ARRAY_DIVISOR", "VERTEX_ATTRIB_ARRAY_DIVISOR_ANGLE", "VERTEX_ATTRIB_ARRAY_ENABLED", "VERTEX_ATTRIB_ARRAY_INTEGER", "VERTEX_ATTRIB_ARRAY_NORMALIZED", "VERTEX_ATTRIB_ARRAY_POINTER", "VERTEX_ATTRIB_ARRAY_SIZE", "VERTEX_ATTRIB_ARRAY_STRIDE", "VERTEX_ATTRIB_ARRAY_TYPE", "VERTEX_SHADER", "VERTICAL", "VERTICAL_AXIS", "VER_ERR", "VIEWPORT", "VIEWPORT_RULE", "VRDisplay", "VRDisplayCapabilities", "VRDisplayEvent", "VREyeParameters", "VRFieldOfView", "VRFrameData", "VRPose", "VRStageParameters", "VTTCue", "VTTRegion", "ValidityState", "VideoColorSpace", "VideoDecoder", "VideoEncoder", "VideoFrame", "VideoPlaybackQuality", "VideoStreamTrack", "ViewTimeline", "ViewTransition", "VirtualKeyboard", "VirtualKeyboardGeometryChangeEvent", "VisibilityStateEntry", "VisualViewport", "WAIT_FAILED", "WEBKIT_FILTER_RULE", "WEBKIT_KEYFRAMES_RULE", "WEBKIT_KEYFRAME_RULE", "WEBKIT_REGION_RULE", "WGSLLanguageFeatures", "WRITE", "WRONG_DOCUMENT_ERR", "WakeLock", "WakeLockSentinel", "WasmAnyRef", "WaveShaperNode", "WeakMap", "WeakRef", "WeakSet", "WebAssembly", "WebGL2RenderingContext", "WebGLActiveInfo", "WebGLBuffer", "WebGLContextEvent", "WebGLFramebuffer", "WebGLProgram", "WebGLQuery", "WebGLRenderbuffer", "WebGLRenderingContext", "WebGLSampler", "WebGLShader", "WebGLShaderPrecisionFormat", "WebGLSync", "WebGLTexture", "WebGLTransformFeedback", "WebGLUniformLocation", "WebGLVertexArray", "WebGLVertexArrayObject", "WebKitAnimationEvent", "WebKitBlobBuilder", "WebKitCSSFilterRule", "WebKitCSSFilterValue", "WebKitCSSKeyframeRule", "WebKitCSSKeyframesRule", "WebKitCSSMatrix", "WebKitCSSRegionRule", "WebKitCSSTransformValue", "WebKitDataCue", "WebKitGamepad", "WebKitMediaKeyError", "WebKitMediaKeyMessageEvent", "WebKitMediaKeySession", "WebKitMediaKeys", "WebKitMediaSource", "WebKitMutationObserver", "WebKitNamespace", "WebKitPlaybackTargetAvailabilityEvent", "WebKitPoint", "WebKitShadowRoot", "WebKitSourceBuffer", "WebKitSourceBufferList", "WebKitTransitionEvent", "WebSocket", "WebSocketError", "WebSocketStream", "WebTransport", "WebTransportBidirectionalStream", "WebTransportDatagramDuplexStream", "WebTransportError", "WebTransportReceiveStream", "WebTransportSendStream", "WebkitAlignContent", "WebkitAlignItems", "WebkitAlignSelf", "WebkitAnimation", "WebkitAnimationDelay", "WebkitAnimationDirection", "WebkitAnimationDuration", "WebkitAnimationFillMode", "WebkitAnimationIterationCount", "WebkitAnimationName", "WebkitAnimationPlayState", "WebkitAnimationTimingFunction", "WebkitAppearance", "WebkitBackfaceVisibility", "WebkitBackgroundClip", "WebkitBackgroundOrigin", "WebkitBackgroundSize", "WebkitBorderBottomLeftRadius", "WebkitBorderBottomRightRadius", "WebkitBorderImage", "WebkitBorderRadius", "WebkitBorderTopLeftRadius", "WebkitBorderTopRightRadius", "WebkitBoxAlign", "WebkitBoxDirection", "WebkitBoxFlex", "WebkitBoxOrdinalGroup", "WebkitBoxOrient", "WebkitBoxPack", "WebkitBoxShadow", "WebkitBoxSizing", "WebkitClipPath", "WebkitFilter", "WebkitFlex", "WebkitFlexBasis", "WebkitFlexDirection", "WebkitFlexFlow", "WebkitFlexGrow", "WebkitFlexShrink", "WebkitFlexWrap", "WebkitJustifyContent", "WebkitLineClamp", "WebkitMask", "WebkitMaskClip", "WebkitMaskComposite", "WebkitMaskImage", "WebkitMaskOrigin", "WebkitMaskPosition", "WebkitMaskPositionX", "WebkitMaskPositionY", "WebkitMaskRepeat", "WebkitMaskSize", "WebkitOrder", "WebkitPerspective", "WebkitPerspectiveOrigin", "WebkitTextFillColor", "WebkitTextSecurity", "WebkitTextSizeAdjust", "WebkitTextStroke", "WebkitTextStrokeColor", "WebkitTextStrokeWidth", "WebkitTransform", "WebkitTransformOrigin", "WebkitTransformStyle", "WebkitTransition", "WebkitTransitionDelay", "WebkitTransitionDuration", "WebkitTransitionProperty", "WebkitTransitionTimingFunction", "WebkitUserSelect", "WheelEvent", "Window", "WindowControlsOverlay", "WindowControlsOverlayGeometryChangeEvent", "Worker", "Worklet", "WritableStream", "WritableStreamDefaultController", "WritableStreamDefaultWriter", "XMLDocument", "XMLHttpRequest", "XMLHttpRequestEventTarget", "XMLHttpRequestException", "XMLHttpRequestProgressEvent", "XMLHttpRequestUpload", "XMLSerializer", "XMLStylesheetProcessingInstruction", "XPathEvaluator", "XPathException", "XPathExpression", "XPathNSResolver", "XPathResult", "XRAnchor", "XRAnchorSet", "XRBoundedReferenceSpace", "XRCPUDepthInformation", "XRCamera", "XRDOMOverlayState", "XRDepthInformation", "XRFrame", "XRHitTestResult", "XRHitTestSource", "XRInputSource", "XRInputSourceArray", "XRInputSourceEvent", "XRInputSourcesChangeEvent", "XRLayer", "XRLightEstimate", "XRLightProbe", "XRPose", "XRRay", "XRReferenceSpace", "XRReferenceSpaceEvent", "XRRenderState", "XRRigidTransform", "XRSession", "XRSessionEvent", "XRSpace", "XRSystem", "XRTransientInputHitTestResult", "XRTransientInputHitTestSource", "XRView", "XRViewerPose", "XRViewport", "XRWebGLBinding", "XRWebGLDepthInformation", "XRWebGLLayer", "XSLTProcessor", "ZERO", "_XD0M_", "_YD0M_", "__REACT_DEVTOOLS_GLOBAL_HOOK__", "__brand", "__defineGetter__", "__defineSetter__", "__lookupGetter__", "__lookupSetter__", "__opera", "__proto__", "_browserjsran", "a", "aLink", "abbr", "abort", "aborted", "abs", "absolute", "acceleration", "accelerationIncludingGravity", "accelerator", "accent-color", "accentColor", "accept", "acceptCharset", "acceptNode", "access", "accessKey", "accessKeyLabel", "accuracy", "acos", "acosh", "action", "actionURL", "actions", "activated", "activation", "activationStart", "active", "activeCues", "activeElement", "activeSourceBuffers", "activeSourceCount", "activeTexture", "activeVRDisplays", "actualBoundingBoxAscent", "actualBoundingBoxDescent", "actualBoundingBoxLeft", "actualBoundingBoxRight", "adAuctionComponents", "adAuctionHeaders", "add", "addAll", "addBehavior", "addCandidate", "addColorStop", "addCue", "addElement", "addEventListener", "addFilter", "addFromString", "addFromUri", "addIceCandidate", "addImport", "addListener", "addModule", "addNamed", "addPageRule", "addPath", "addPointer", "addRange", "addRegion", "addRule", "addSearchEngine", "addSourceBuffer", "addStream", "addTextTrack", "addTrack", "addTransceiver", "addWakeLockListener", "added", "addedNodes", "additionalName", "additiveSymbols", "addons", "address", "addressLine", "addressModeU", "addressModeV", "addressModeW", "adoptNode", "adoptedCallback", "adoptedStyleSheets", "adr", "advance", "after", "album", "alert", "algorithm", "align", "align-content", "align-items", "align-self", "alignContent", "alignItems", "alignSelf", "alignmentBaseline", "alinkColor", "all", "allSettled", "allocationSize", "allow", "allowFullscreen", "allowPaymentRequest", "allowedDirections", "allowedFeatures", "allowedToPlay", "allowsFeature", "alpha", "alphaMode", "alphaToCoverageEnabled", "alphabeticBaseline", "alt", "altGraphKey", "altHtml", "altKey", "altLeft", "alternate", "alternateSetting", "alternates", "altitude", "altitudeAccuracy", "altitudeAngle", "amplitude", "ancestorOrigins", "anchor", "anchorNode", "anchorOffset", "anchorSpace", "anchors", "and", "angle", "angularAcceleration", "angularVelocity", "animVal", "animate", "animated", "animatedInstanceRoot", "animatedNormalizedPathSegList", "animatedPathSegList", "animatedPoints", "animation", "animation-composition", "animation-delay", "animation-direction", "animation-duration", "animation-fill-mode", "animation-iteration-count", "animation-name", "animation-play-state", "animation-timing-function", "animationComposition", "animationDelay", "animationDirection", "animationDuration", "animationFillMode", "animationIterationCount", "animationName", "animationPlayState", "animationStartTime", "animationTimingFunction", "animationsPaused", "anniversary", "antialias", "anticipatedRemoval", "any", "app", "appCodeName", "appMinorVersion", "appName", "appNotifications", "appVersion", "appearance", "append", "appendBuffer", "appendChild", "appendData", "appendItem", "appendMedium", "appendNamed", "appendRule", "appendStream", "appendWindowEnd", "appendWindowStart", "applets", "applicationCache", "applicationServerKey", "apply", "applyConstraints", "applyElement", "arc", "arcTo", "architecture", "archive", "areas", "arguments", "ariaAtomic", "ariaAutoComplete", "ariaBrailleLabel", "ariaBrailleRoleDescription", "ariaBusy", "ariaChecked", "ariaColCount", "ariaColIndex", "ariaColIndexText", "ariaColSpan", "ariaCurrent", "ariaDescription", "ariaDisabled", "ariaExpanded", "ariaHasPopup", "ariaHidden", "ariaInvalid", "ariaKeyShortcuts", "ariaLabel", "ariaLevel", "ariaLive", "ariaModal", "ariaMultiLine", "ariaMultiSelectable", "ariaOrientation", "ariaPlaceholder", "ariaPosInSet", "ariaPressed", "ariaReadOnly", "ariaRelevant", "ariaRequired", "ariaRoleDescription", "ariaRowCount", "ariaRowIndex", "ariaRowIndexText", "ariaRowSpan", "ariaSelected", "ariaSetSize", "ariaSort", "ariaValueMax", "ariaValueMin", "ariaValueNow", "ariaValueText", "arrayBuffer", "arrayLayerCount", "arrayStride", "artist", "artwork", "as", "asIntN", "asUintN", "ascentOverride", "asin", "asinh", "aspect", "aspect-ratio", "aspectRatio", "assert", "assign", "assignedElements", "assignedNodes", "assignedSlot", "async", "asyncIterator", "at", "atEnd", "atan", "atan2", "atanh", "atob", "attachEvent", "attachInternals", "attachShader", "attachShadow", "attachedElements", "attachments", "attack", "attestationObject", "attrChange", "attrName", "attributeChangedCallback", "attributeFilter", "attributeName", "attributeNamespace", "attributeOldValue", "attributeStyleMap", "attributes", "attribution", "attributionSrc", "audioBitrateMode", "audioBitsPerSecond", "audioTracks", "audioWorklet", "authenticatedSignedWrites", "authenticatorAttachment", "authenticatorData", "autoIncrement", "autobuffer", "autocapitalize", "autocomplete", "autocorrect", "autofocus", "automationRate", "autoplay", "availHeight", "availLeft", "availTop", "availWidth", "availability", "available", "aversion", "ax", "axes", "axis", "ay", "azimuth", "azimuthAngle", "b", "back", "backdrop-filter", "backdropFilter", "backends", "backface-visibility", "backfaceVisibility", "background", "background-attachment", "background-blend-mode", "background-clip", "background-color", "background-image", "background-origin", "background-position", "background-position-x", "background-position-y", "background-repeat", "background-size", "backgroundAttachment", "backgroundBlendMode", "backgroundClip", "backgroundColor", "backgroundFetch", "backgroundImage", "backgroundOrigin", "backgroundPosition", "backgroundPositionX", "backgroundPositionY", "backgroundRepeat", "backgroundSize", "badInput", "badge", "balance", "baseArrayLayer", "baseFrequencyX", "baseFrequencyY", "baseLatency", "baseLayer", "baseMipLevel", "baseNode", "baseOffset", "basePalette", "baseURI", "baseVal", "baseline-source", "baselineShift", "baselineSource", "battery", "bday", "before", "beginComputePass", "beginElement", "beginElementAt", "beginOcclusionQuery", "beginPath", "beginQuery", "beginRenderPass", "beginTransformFeedback", "beginningOfPassWriteIndex", "behavior", "behaviorCookie", "behaviorPart", "behaviorUrns", "beta", "bezierCurveTo", "bgColor", "bgProperties", "bias", "big", "bigint64", "biguint64", "binaryType", "bind", "bindAttribLocation", "bindBuffer", "bindBufferBase", "bindBufferRange", "bindFramebuffer", "bindGroupLayouts", "bindRenderbuffer", "bindSampler", "bindTexture", "bindTransformFeedback", "bindVertexArray", "binding", "bitness", "blend", "blendColor", "blendEquation", "blendEquationSeparate", "blendFunc", "blendFuncSeparate", "blink", "blitFramebuffer", "blob", "block-size", "blockDirection", "blockSize", "blockedURI", "blocking", "blockingDuration", "blue", "bluetooth", "blur", "body", "bodyUsed", "bold", "bookmarks", "booleanValue", "border", "border-block", "border-block-color", "border-block-end", "border-block-end-color", "border-block-end-style", "border-block-end-width", "border-block-start", "border-block-start-color", "border-block-start-style", "border-block-start-width", "border-block-style", "border-block-width", "border-bottom", "border-bottom-color", "border-bottom-left-radius", "border-bottom-right-radius", "border-bottom-style", "border-bottom-width", "border-collapse", "border-color", "border-end-end-radius", "border-end-start-radius", "border-image", "border-image-outset", "border-image-repeat", "border-image-slice", "border-image-source", "border-image-width", "border-inline", "border-inline-color", "border-inline-end", "border-inline-end-color", "border-inline-end-style", "border-inline-end-width", "border-inline-start", "border-inline-start-color", "border-inline-start-style", "border-inline-start-width", "border-inline-style", "border-inline-width", "border-left", "border-left-color", "border-left-style", "border-left-width", "border-radius", "border-right", "border-right-color", "border-right-style", "border-right-width", "border-spacing", "border-start-end-radius", "border-start-start-radius", "border-style", "border-top", "border-top-color", "border-top-left-radius", "border-top-right-radius", "border-top-style", "border-top-width", "border-width", "borderBlock", "borderBlockColor", "borderBlockEnd", "borderBlockEndColor", "borderBlockEndStyle", "borderBlockEndWidth", "borderBlockStart", "borderBlockStartColor", "borderBlockStartStyle", "borderBlockStartWidth", "borderBlockStyle", "borderBlockWidth", "borderBottom", "borderBottomColor", "borderBottomLeftRadius", "borderBottomRightRadius", "borderBottomStyle", "borderBottomWidth", "borderBoxSize", "borderCollapse", "borderColor", "borderColorDark", "borderColorLight", "borderEndEndRadius", "borderEndStartRadius", "borderImage", "borderImageOutset", "borderImageRepeat", "borderImageSlice", "borderImageSource", "borderImageWidth", "borderInline", "borderInlineColor", "borderInlineEnd", "borderInlineEndColor", "borderInlineEndStyle", "borderInlineEndWidth", "borderInlineStart", "borderInlineStartColor", "borderInlineStartStyle", "borderInlineStartWidth", "borderInlineStyle", "borderInlineWidth", "borderLeft", "borderLeftColor", "borderLeftStyle", "borderLeftWidth", "borderRadius", "borderRight", "borderRightColor", "borderRightStyle", "borderRightWidth", "borderSpacing", "borderStartEndRadius", "borderStartStartRadius", "borderStyle", "borderTop", "borderTopColor", "borderTopLeftRadius", "borderTopRightRadius", "borderTopStyle", "borderTopWidth", "borderWidth", "bottom", "bottomMargin", "bound", "boundElements", "boundingClientRect", "boundingHeight", "boundingLeft", "boundingRect", "boundingTop", "boundingWidth", "bounds", "boundsGeometry", "box-decoration-break", "box-shadow", "box-sizing", "boxDecorationBreak", "boxShadow", "boxSizing", "brand", "brands", "break-after", "break-before", "break-inside", "breakAfter", "breakBefore", "breakInside", "broadcast", "browserLanguage", "browsingTopics", "btoa", "bubbles", "buffer", "bufferData", "bufferDepth", "bufferSize", "bufferSubData", "buffered", "bufferedAmount", "bufferedAmountLowThreshold", "buffers", "buildID", "buildNumber", "button", "buttonID", "buttons", "byobRequest", "byteLength", "byteOffset", "bytesPerRow", "bytesWritten", "c", "cache", "caches", "call", "caller", "camera", "canBeFormatted", "canBeMounted", "canBeShared", "canConstructInDedicatedWorker", "canGoBack", "canGoForward", "canHaveChildren", "canHaveHTML", "canInsertDTMF", "canIntercept", "canLoadAdAuctionFencedFrame", "canLoadOpaqueURL", "canMakePayment", "canParse", "canPlayType", "canPresent", "canShare", "canTransition", "canTrickleIceCandidates", "cancel", "cancelAndHoldAtTime", "cancelAnimationFrame", "cancelBubble", "cancelIdleCallback", "cancelScheduledValues", "cancelVideoFrameCallback", "cancelWatchAvailability", "cancelable", "candidate", "canonicalUUID", "canvas", "cap", "capabilities", "caption", "caption-side", "captionSide", "capture", "captureEvents", "captureStackTrace", "captureStream", "caret-color", "caretBidiLevel", "caretColor", "caretPositionFromPoint", "caretRangeFromPoint", "cast", "catch", "category", "cbrt", "cd", "ceil", "cellIndex", "cellPadding", "cellSpacing", "cells", "ch", "chOff", "chain", "challenge", "changeType", "changed", "changedTouches", "channel", "channelCount", "channelCountMode", "channelInterpretation", "char", "charAt", "charCode", "charCodeAt", "charIndex", "charLength", "characterBounds", "characterBoundsRangeStart", "characterData", "characterDataOldValue", "characterSet", "characteristic", "charging", "chargingTime", "charset", "check", "checkDCE", "checkEnclosure", "checkFramebufferStatus", "checkIntersection", "checkValidity", "checkVisibility", "checked", "childElementCount", "childList", "childNodes", "children", "chrome", "ciphertext", "cite", "city", "claimInterface", "claimed", "classList", "className", "classid", "clear", "clearAppBadge", "clearAttributes", "clearBuffer", "clearBufferfi", "clearBufferfv", "clearBufferiv", "clearBufferuiv", "clearColor", "clearData", "clearDepth", "clearHalt", "clearImmediate", "clearInterval", "clearLiveSeekableRange", "clearMarks", "clearMaxGCPauseAccumulator", "clearMeasures", "clearOriginJoinedAdInterestGroups", "clearParameters", "clearRect", "clearResourceTimings", "clearShadow", "clearStencil", "clearTimeout", "clearValue", "clearWatch", "click", "clickCount", "clientDataJSON", "clientHeight", "clientInformation", "clientLeft", "clientRect", "clientRects", "clientTop", "clientWaitSync", "clientWidth", "clientX", "clientY", "clip", "clip-path", "clip-rule", "clipBottom", "clipLeft", "clipPath", "clipPathUnits", "clipRight", "clipRule", "clipTop", "clipboard", "clipboardData", "clonable", "clone", "cloneContents", "cloneNode", "cloneRange", "close", "closeCode", "closePath", "closed", "closest", "clz", "clz32", "cm", "cmp", "code", "codeBase", "codePointAt", "codeType", "codedHeight", "codedRect", "codedWidth", "colSpan", "collapse", "collapseToEnd", "collapseToStart", "collapsed", "collect", "collections", "colno", "color", "color-adjust", "color-interpolation", "color-interpolation-filters", "color-scheme", "colorAdjust", "colorAttachments", "colorDepth", "colorFormats", "colorInterpolation", "colorInterpolationFilters", "colorMask", "colorScheme", "colorSpace", "colorType", "cols", "column-count", "column-fill", "column-gap", "column-rule", "column-rule-color", "column-rule-style", "column-rule-width", "column-span", "column-width", "columnCount", "columnFill", "columnGap", "columnNumber", "columnRule", "columnRuleColor", "columnRuleStyle", "columnRuleWidth", "columnSpan", "columnWidth", "columns", "command", "commit", "commitPreferences", "commitStyles", "commonAncestorContainer", "compact", "compare", "compareBoundaryPoints", "compareDocumentPosition", "compareEndPoints", "compareExchange", "compareNode", "comparePoint", "compatMode", "compatible", "compile", "compileShader", "compileStreaming", "complete", "completed", "component", "componentFromPoint", "composed", "composedPath", "composite", "compositionEndOffset", "compositionStartOffset", "compressedTexImage2D", "compressedTexImage3D", "compressedTexSubImage2D", "compressedTexSubImage3D", "compute", "computedStyleMap", "concat", "conditionText", "coneInnerAngle", "coneOuterAngle", "coneOuterGain", "config", "configurable", "configuration", "configurationName", "configurationValue", "configurations", "configure", "confirm", "confirmComposition", "confirmSiteSpecificTrackingException", "confirmWebWideTrackingException", "congestionControl", "connect", "connectEnd", "connectShark", "connectStart", "connected", "connectedCallback", "connection", "connectionList", "connectionSpeed", "connectionState", "connections", "console", "consolidate", "constants", "constraint", "constrictionActive", "construct", "constructor", "contactID", "contain", "contain-intrinsic-block-size", "contain-intrinsic-height", "contain-intrinsic-inline-size", "contain-intrinsic-size", "contain-intrinsic-width", "containIntrinsicBlockSize", "containIntrinsicHeight", "containIntrinsicInlineSize", "containIntrinsicSize", "containIntrinsicWidth", "container", "container-name", "container-type", "containerId", "containerName", "containerQuery", "containerSrc", "containerType", "contains", "containsNode", "content", "content-visibility", "contentBoxSize", "contentDocument", "contentEditable", "contentHint", "contentOverflow", "contentRect", "contentScriptType", "contentStyleType", "contentType", "contentVisibility", "contentWindow", "context", "contextMenu", "contextmenu", "continue", "continuePrimaryKey", "continuous", "control", "controlTransferIn", "controlTransferOut", "controller", "controls", "controlsList", "convertPointFromNode", "convertQuadFromNode", "convertRectFromNode", "convertToBlob", "convertToSpecifiedUnits", "cookie", "cookieEnabled", "cookieStore", "cookies", "coords", "copyBufferSubData", "copyBufferToBuffer", "copyBufferToTexture", "copyExternalImageToTexture", "copyFromChannel", "copyTexImage2D", "copyTexSubImage2D", "copyTexSubImage3D", "copyTextureToBuffer", "copyTextureToTexture", "copyTo", "copyToChannel", "copyWithin", "correspondingElement", "correspondingUseElement", "corruptedVideoFrames", "cos", "cosh", "count", "countReset", "counter-increment", "counter-reset", "counter-set", "counterIncrement", "counterReset", "counterSet", "country", "cpuClass", "cpuSleepAllowed", "cqb", "cqh", "cqi", "cqmax", "cqmin", "cqw", "create", "createAnalyser", "createAnchor", "createAnswer", "createAttribute", "createAttributeNS", "createAuctionNonce", "createBidirectionalStream", "createBindGroup", "createBindGroupLayout", "createBiquadFilter", "createBuffer", "createBufferSource", "createCDATASection", "createCSSStyleSheet", "createCaption", "createChannelMerger", "createChannelSplitter", "createCommandEncoder", "createComment", "createComputePipeline", "createComputePipelineAsync", "createConicGradient", "createConstantSource", "createContextualFragment", "createControlRange", "createConvolver", "createDTMFSender", "createDataChannel", "createDelay", "createDelayNode", "createDocument", "createDocumentFragment", "createDocumentType", "createDynamicsCompressor", "createElement", "createElementNS", "createEncodedStreams", "createEntityReference", "createEvent", "createEventObject", "createExpression", "createFramebuffer", "createFunction", "createGain", "createGainNode", "createHTML", "createHTMLDocument", "createIIRFilter", "createImageBitmap", "createImageData", "createIndex", "createJavaScriptNode", "createLinearGradient", "createMediaElementSource", "createMediaKeys", "createMediaStreamDestination", "createMediaStreamSource", "createMediaStreamTrackSource", "createMutableFile", "createNSResolver", "createNodeIterator", "createNotification", "createObjectStore", "createObjectURL", "createOffer", "createOscillator", "createPanner", "createPattern", "createPeriodicWave", "createPipelineLayout", "createPolicy", "createPopup", "createProcessingInstruction", "createProgram", "createQuery", "createQuerySet", "createRadialGradient", "createRange", "createRangeCollection", "createReader", "createRenderBundleEncoder", "createRenderPipeline", "createRenderPipelineAsync", "createRenderbuffer", "createSVGAngle", "createSVGLength", "createSVGMatrix", "createSVGNumber", "createSVGPathSegArcAbs", "createSVGPathSegArcRel", "createSVGPathSegClosePath", "createSVGPathSegCurvetoCubicAbs", "createSVGPathSegCurvetoCubicRel", "createSVGPathSegCurvetoCubicSmoothAbs", "createSVGPathSegCurvetoCubicSmoothRel", "createSVGPathSegCurvetoQuadraticAbs", "createSVGPathSegCurvetoQuadraticRel", "createSVGPathSegCurvetoQuadraticSmoothAbs", "createSVGPathSegCurvetoQuadraticSmoothRel", "createSVGPathSegLinetoAbs", "createSVGPathSegLinetoHorizontalAbs", "createSVGPathSegLinetoHorizontalRel", "createSVGPathSegLinetoRel", "createSVGPathSegLinetoVerticalAbs", "createSVGPathSegLinetoVerticalRel", "createSVGPathSegMovetoAbs", "createSVGPathSegMovetoRel", "createSVGPoint", "createSVGRect", "createSVGTransform", "createSVGTransformFromMatrix", "createSampler", "createScript", "createScriptProcessor", "createScriptURL", "createSession", "createShader", "createShaderModule", "createShadowRoot", "createStereoPanner", "createStyleSheet", "createTBody", "createTFoot", "createTHead", "createTask", "createTextNode", "createTextRange", "createTexture", "createTouch", "createTouchList", "createTransformFeedback", "createTreeWalker", "createUnidirectionalStream", "createVertexArray", "createView", "createWaveShaper", "createWritable", "creationTime", "credentialless", "credentials", "criticalCHRestart", "cropTo", "crossOrigin", "crossOriginIsolated", "crypto", "csi", "csp", "cssFloat", "cssRules", "cssText", "cssValueType", "ctrlKey", "ctrlLeft", "cues", "cullFace", "cullMode", "currentDirection", "currentEntry", "currentLocalDescription", "currentNode", "currentPage", "currentRect", "currentRemoteDescription", "currentScale", "currentScreen", "currentScript", "currentSrc", "currentState", "currentStyle", "currentTarget", "currentTime", "currentTranslate", "currentView", "cursor", "curve", "customElements", "customError", "cx", "cy", "d", "data", "dataFld", "dataFormatAs", "dataLoss", "dataLossMessage", "dataPageSize", "dataSrc", "dataTransfer", "database", "databases", "datagrams", "dataset", "dateTime", "db", "debug", "debuggerEnabled", "declare", "decode", "decodeAudioData", "decodeQueueSize", "decodeURI", "decodeURIComponent", "decodedBodySize", "decoding", "decodingInfo", "decrypt", "default", "defaultCharset", "defaultChecked", "defaultMuted", "defaultPlaybackRate", "defaultPolicy", "defaultPrevented", "defaultQueue", "defaultRequest", "defaultSelected", "defaultStatus", "defaultURL", "defaultValue", "defaultView", "defaultstatus", "defer", "define", "defineMagicFunction", "defineMagicVariable", "defineProperties", "defineProperty", "deg", "delay", "delayTime", "delegatesFocus", "delete", "deleteBuffer", "deleteCaption", "deleteCell", "deleteContents", "deleteData", "deleteDatabase", "deleteFramebuffer", "deleteFromDocument", "deleteIndex", "deleteMedium", "deleteObjectStore", "deleteProgram", "deleteProperty", "deleteQuery", "deleteRenderbuffer", "deleteRow", "deleteRule", "deleteSampler", "deleteShader", "deleteSync", "deleteTFoot", "deleteTHead", "deleteTexture", "deleteTransformFeedback", "deleteVertexArray", "deleted", "deliverChangeRecords", "deliveredFrames", "delivery", "deliveryInfo", "deliveryStatus", "deliveryTimestamp", "deliveryType", "delta", "deltaMode", "deltaX", "deltaY", "deltaZ", "dependentLocality", "deprecatedReplaceInURN", "deprecatedRunAdAuctionEnforcesKAnonymity", "deprecatedURNToURL", "depthBias", "depthBiasClamp", "depthBiasSlopeScale", "depthClearValue", "depthCompare", "depthDataFormat", "depthFailOp", "depthFar", "depthFunc", "depthLoadOp", "depthMask", "depthNear", "depthOrArrayLayers", "depthRange", "depthReadOnly", "depthStencil", "depthStencilAttachment", "depthStencilFormat", "depthStoreOp", "depthUsage", "depthWriteEnabled", "deref", "deriveBits", "deriveKey", "descentOverride", "description", "deselectAll", "designMode", "desiredSize", "destination", "destinationURL", "destroy", "detach", "detachEvent", "detachShader", "detached", "detail", "details", "detect", "detune", "device", "deviceClass", "deviceId", "deviceMemory", "devicePixelContentBoxSize", "devicePixelRatio", "deviceProtocol", "deviceSubclass", "deviceVersionMajor", "deviceVersionMinor", "deviceVersionSubminor", "deviceXDPI", "deviceYDPI", "didTimeout", "difference", "diffuseConstant", "digest", "dimension", "dimensions", "dir", "dirName", "direction", "dirxml", "disable", "disablePictureInPicture", "disableRemotePlayback", "disableVertexAttribArray", "disabled", "discardedFrames", "dischargingTime", "disconnect", "disconnectShark", "disconnectedCallback", "dispatchEvent", "dispatchWorkgroups", "dispatchWorkgroupsIndirect", "display", "displayHeight", "displayId", "displayName", "displayWidth", "disposition", "distanceModel", "div", "divisor", "djsapi", "djsproxy", "doImport", "doNotTrack", "doScroll", "doctype", "document", "documentElement", "documentMode", "documentPictureInPicture", "documentURI", "dolphin", "dolphinGameCenter", "dolphininfo", "dolphinmeta", "domComplete", "domContentLoadedEventEnd", "domContentLoadedEventStart", "domInteractive", "domLoading", "domOverlayState", "domain", "domainLookupEnd", "domainLookupStart", "dominant-baseline", "dominantBaseline", "done", "dopplerFactor", "dotAll", "downDegrees", "downlink", "download", "downloadRequest", "downloadTotal", "downloaded", "dpcm", "dpi", "dppx", "dragDrop", "draggable", "draw", "drawArrays", "drawArraysInstanced", "drawArraysInstancedANGLE", "drawBuffers", "drawCustomFocusRing", "drawElements", "drawElementsInstanced", "drawElementsInstancedANGLE", "drawFocusIfNeeded", "drawImage", "drawImageFromRect", "drawIndexed", "drawIndexedIndirect", "drawIndirect", "drawRangeElements", "drawSystemFocusRing", "drawingBufferColorSpace", "drawingBufferFormat", "drawingBufferHeight", "drawingBufferStorage", "drawingBufferWidth", "drop", "dropEffect", "droppedVideoFrames", "dropzone", "dstFactor", "dtmf", "dump", "dumpProfile", "duplicate", "durability", "duration", "dvb", "dvh", "dvi", "dvmax", "dvmin", "dvname", "dvnum", "dvw", "dx", "dy", "dynsrc", "e", "edgeMode", "editContext", "effect", "effectAllowed", "effectiveDirective", "effectiveType", "elapsedTime", "element", "elementFromPoint", "elementTiming", "elements", "elementsFromPoint", "elevation", "ellipse", "em", "emHeightAscent", "emHeightDescent", "email", "embeds", "emit", "emma", "empty", "empty-cells", "emptyCells", "emptyHTML", "emptyScript", "emulatedPosition", "enable", "enableBackground", "enableDelegations", "enableStyleSheetsForSet", "enableVertexAttribArray", "enabled", "enabledFeatures", "enabledPlugin", "encode", "encodeInto", "encodeQueueSize", "encodeURI", "encodeURIComponent", "encodedBodySize", "encoding", "encodingInfo", "encrypt", "enctype", "end", "endContainer", "endElement", "endElementAt", "endOcclusionQuery", "endOfPassWriteIndex", "endOfStream", "endOffset", "endQuery", "endTime", "endTransformFeedback", "ended", "endpoint", "endpointNumber", "endpoints", "endsWith", "enqueue", "enterKeyHint", "entities", "entries", "entry", "entryPoint", "entryType", "enumerable", "enumerate", "enumerateDevices", "enumerateEditable", "environmentBlendMode", "equals", "error", "errorCode", "errorDetail", "errorText", "escape", "estimate", "eval", "evaluate", "event", "eventCounts", "eventPhase", "every", "ex", "exception", "exchange", "exec", "execCommand", "execCommandShowHelp", "execScript", "executeBundles", "executionStart", "exitFullscreen", "exitPictureInPicture", "exitPointerLock", "exitPresent", "exp", "expand", "expandEntityReferences", "expando", "expansion", "expectedImprovement", "expiration", "expirationTime", "expires", "expiryDate", "explicitOriginalTarget", "expm1", "exponent", "exponentialRampToValueAtTime", "exportKey", "exports", "extend", "extensions", "extentNode", "extentOffset", "external", "externalResourcesRequired", "externalTexture", "extractContents", "extractable", "eye", "f", "face", "factoryReset", "failOp", "failureReason", "fallback", "family", "familyName", "farthestViewportElement", "fastSeek", "fatal", "featureId", "featurePolicy", "featureSettings", "features", "fence", "fenceSync", "fetch", "fetchPriority", "fetchStart", "fftSize", "fgColor", "fieldOfView", "file", "fileCreatedDate", "fileHandle", "fileModifiedDate", "fileName", "fileSize", "fileUpdatedDate", "filename", "files", "filesystem", "fill", "fill-opacity", "fill-rule", "fillLightMode", "fillOpacity", "fillRect", "fillRule", "fillStyle", "fillText", "filter", "filterResX", "filterResY", "filterUnits", "filters", "finally", "find", "findIndex", "findLast", "findLastIndex", "findRule", "findText", "finish", "finished", "fireEvent", "firesTouchEvents", "firstChild", "firstElementChild", "firstInterimResponseStart", "firstPage", "firstUIEventTimestamp", "fixed", "flags", "flat", "flatMap", "flex", "flex-basis", "flex-direction", "flex-flow", "flex-grow", "flex-shrink", "flex-wrap", "flexBasis", "flexDirection", "flexFlow", "flexGrow", "flexShrink", "flexWrap", "flipX", "flipY", "float", "float32", "float64", "flood-color", "flood-opacity", "floodColor", "floodOpacity", "floor", "flush", "focus", "focusNode", "focusOffset", "font", "font-family", "font-feature-settings", "font-kerning", "font-language-override", "font-optical-sizing", "font-palette", "font-size", "font-size-adjust", "font-stretch", "font-style", "font-synthesis", "font-synthesis-position", "font-synthesis-small-caps", "font-synthesis-style", "font-synthesis-weight", "font-variant", "font-variant-alternates", "font-variant-caps", "font-variant-east-asian", "font-variant-ligatures", "font-variant-numeric", "font-variant-position", "font-variation-settings", "font-weight", "fontBoundingBoxAscent", "fontBoundingBoxDescent", "fontFamily", "fontFeatureSettings", "fontKerning", "fontLanguageOverride", "fontOpticalSizing", "fontPalette", "fontSize", "fontSizeAdjust", "fontSmoothingEnabled", "fontStretch", "fontStyle", "fontSynthesis", "fontSynthesisPosition", "fontSynthesisSmallCaps", "fontSynthesisStyle", "fontSynthesisWeight", "fontVariant", "fontVariantAlternates", "fontVariantCaps", "fontVariantEastAsian", "fontVariantLigatures", "fontVariantNumeric", "fontVariantPosition", "fontVariationSettings", "fontWeight", "fontcolor", "fontfaces", "fonts", "fontsize", "for", "forEach", "force", "forceFallbackAdapter", "forceRedraw", "forced-color-adjust", "forcedColorAdjust", "forcedStyleAndLayoutDuration", "forget", "form", "formAction", "formData", "formEnctype", "formMethod", "formNoValidate", "formTarget", "format", "formatToParts", "forms", "forward", "forwardX", "forwardY", "forwardZ", "foundation", "fr", "fragment", "fragmentDirective", "frame", "frameBorder", "frameCount", "frameElement", "frameSpacing", "framebuffer", "framebufferHeight", "framebufferRenderbuffer", "framebufferTexture2D", "framebufferTextureLayer", "framebufferWidth", "frames", "freeSpace", "freeze", "frequency", "frequencyBinCount", "from", "fromAsync", "fromCharCode", "fromCodePoint", "fromElement", "fromEntries", "fromFloat32Array", "fromFloat64Array", "fromMatrix", "fromPoint", "fromQuad", "fromRect", "frontFace", "fround", "fullName", "fullPath", "fullRange", "fullScreen", "fullVersionList", "fullscreen", "fullscreenElement", "fullscreenEnabled", "fx", "fy", "g", "gain", "gamepad", "gamma", "gap", "gatheringState", "gatt", "genderIdentity", "generateCertificate", "generateKey", "generateMipmap", "generateRequest", "geolocation", "gestureObject", "get", "getActiveAttrib", "getActiveUniform", "getActiveUniformBlockName", "getActiveUniformBlockParameter", "getActiveUniforms", "getAdjacentText", "getAll", "getAllKeys", "getAllResponseHeaders", "getAllowlistForFeature", "getAnimations", "getAsFile", "getAsFileSystemHandle", "getAsString", "getAttachedShaders", "getAttribLocation", "getAttribute", "getAttributeNS", "getAttributeNames", "getAttributeNode", "getAttributeNodeNS", "getAttributeType", "getAudioTracks", "getAuthenticatorData", "getAutoplayPolicy", "getAvailability", "getBBox", "getBattery", "getBigInt64", "getBigUint64", "getBindGroupLayout", "getBlob", "getBookmark", "getBoundingClientRect", "getBounds", "getBoxQuads", "getBufferParameter", "getBufferSubData", "getByteFrequencyData", "getByteTimeDomainData", "getCSSCanvasContext", "getCTM", "getCameraImage", "getCandidateWindowClientRect", "getCanonicalLocales", "getCapabilities", "getCaptureHandle", "getChannelData", "getCharNumAtPosition", "getCharacteristic", "getCharacteristics", "getClientExtensionResults", "getClientRect", "getClientRects", "getCoalescedEvents", "getCompilationInfo", "getCompositionAlternatives", "getComputedStyle", "getComputedTextLength", "getComputedTiming", "getConfiguration", "getConstraints", "getContext", "getContextAttributes", "getContributingSources", "getCounterValue", "getCueAsHTML", "getCueById", "getCurrentPosition", "getCurrentTexture", "getCurrentTime", "getData", "getDatabaseNames", "getDate", "getDay", "getDefaultComputedStyle", "getDepthInMeters", "getDepthInformation", "getDescriptor", "getDescriptors", "getDestinationInsertionPoints", "getDevices", "getDirectory", "getDirectoryHandle", "getDisplayMedia", "getDistributedNodes", "getEditable", "getElementById", "getElementsByClassName", "getElementsByName", "getElementsByTagName", "getElementsByTagNameNS", "getEnclosureList", "getEndPositionOfChar", "getEntries", "getEntriesByName", "getEntriesByType", "getError", "getExtension", "getExtentOfChar", "getEyeParameters", "getFeature", "getFiberRoots", "getFile", "getFileHandle", "getFiles", "getFilesAndDirectories", "getFingerprints", "getFloat32", "getFloat64", "getFloatFrequencyData", "getFloatTimeDomainData", "getFloatValue", "getFragDataLocation", "getFrameData", "getFramebufferAttachmentParameter", "getFrequencyResponse", "getFullYear", "getGamepads", "getHeaderExtensionsToNegotiate", "getHighEntropyValues", "getHitTestResults", "getHitTestResultsForTransientInput", "getHours", "getIdentityAssertion", "getIds", "getImageData", "getIndexedParameter", "getInfo", "getInnerHTML", "getInstalledRelatedApps", "getInt16", "getInt32", "getInt8", "getInternalModuleRanges", "getInternalformatParameter", "getIntersectionList", "getItem", "getItems", "getKey", "getKeyframes", "getLayers", "getLayoutMap", "getLightEstimate", "getLineDash", "getLocalCandidates", "getLocalParameters", "getLocalStreams", "getManagedConfiguration", "getMappedRange", "getMarks", "getMatchedCSSRules", "getMaxGCPauseSinceClear", "getMeasures", "getMetadata", "getMilliseconds", "getMinutes", "getModifierState", "getMonth", "getName", "getNamedItem", "getNamedItemNS", "getNativeFramebufferScaleFactor", "getNegotiatedHeaderExtensions", "getNestedConfigs", "getNotifications", "getNotifier", "getNumberOfChars", "getOffsetReferenceSpace", "getOutputTimestamp", "getOverrideHistoryNavigationMode", "getOverrideStyle", "getOwnPropertyDescriptor", "getOwnPropertyDescriptors", "getOwnPropertyNames", "getOwnPropertySymbols", "getParameter", "getParameters", "getParent", "getPathSegAtLength", "getPhotoCapabilities", "getPhotoSettings", "getPointAtLength", "getPorts", "getPose", "getPredictedEvents", "getPreference", "getPreferenceDefault", "getPreferredCanvasFormat", "getPresentationAttribute", "getPreventDefault", "getPrimaryService", "getPrimaryServices", "getProgramInfoLog", "getProgramParameter", "getPropertyCSSValue", "getPropertyPriority", "getPropertyShorthand", "getPropertyType", "getPropertyValue", "getPrototypeOf", "getPublicKey", "getPublicKeyAlgorithm", "getQuery", "getQueryParameter", "getRGBColorValue", "getRandomValues", "getRangeAt", "getReader", "getReceivers", "getRectValue", "getReflectionCubeMap", "getRegistration", "getRegistrations", "getRemoteCandidates", "getRemoteCertificates", "getRemoteParameters", "getRemoteStreams", "getRenderbufferParameter", "getResponseHeader", "getRoot", "getRootNode", "getRotationOfChar", "getSVGDocument", "getSamplerParameter", "getScreenCTM", "getScreenDetails", "getSeconds", "getSelectedCandidatePair", "getSelection", "getSenders", "getService", "getSetCookie", "getSettings", "getShaderInfoLog", "getShaderParameter", "getShaderPrecisionFormat", "getShaderSource", "getSignals", "getSimpleDuration", "getSiteIcons", "getSources", "getSpeculativeParserUrls", "getStartPositionOfChar", "getStartTime", "getState", "getStats", "getStatusForPolicy", "getStorageUpdates", "getStreamById", "getStringValue", "getSubStringLength", "getSubscription", "getSubscriptions", "getSupportedConstraints", "getSupportedExtensions", "getSupportedFormats", "getSyncParameter", "getSynchronizationSources", "getTags", "getTargetRanges", "getTexParameter", "getTextFormats", "getTime", "getTimezoneOffset", "getTiming", "getTitlebarAreaRect", "getTotalLength", "getTrackById", "getTracks", "getTransceivers", "getTransform", "getTransformFeedbackVarying", "getTransformToElement", "getTransports", "getType", "getTypeMapping", "getUTCDate", "getUTCDay", "getUTCFullYear", "getUTCHours", "getUTCMilliseconds", "getUTCMinutes", "getUTCMonth", "getUTCSeconds", "getUint16", "getUint32", "getUint8", "getUniform", "getUniformBlockIndex", "getUniformIndices", "getUniformLocation", "getUserInfo", "getUserMedia", "getVRDisplays", "getValues", "getVarDate", "getVariableValue", "getVertexAttrib", "getVertexAttribOffset", "getVideoPlaybackQuality", "getVideoTracks", "getViewerPose", "getViewport", "getVoices", "getWakeLockState", "getWriter", "getYear", "givenName", "global", "globalAlpha", "globalCompositeOperation", "globalPrivacyControl", "globalThis", "glyphOrientationHorizontal", "glyphOrientationVertical", "glyphRef", "go", "gpu", "grabFrame", "grad", "gradientTransform", "gradientUnits", "grammars", "green", "grid", "grid-area", "grid-auto-columns", "grid-auto-flow", "grid-auto-rows", "grid-column", "grid-column-end", "grid-column-gap", "grid-column-start", "grid-gap", "grid-row", "grid-row-end", "grid-row-gap", "grid-row-start", "grid-template", "grid-template-areas", "grid-template-columns", "grid-template-rows", "gridArea", "gridAutoColumns", "gridAutoFlow", "gridAutoRows", "gridColumn", "gridColumnEnd", "gridColumnGap", "gridColumnStart", "gridGap", "gridRow", "gridRowEnd", "gridRowGap", "gridRowStart", "gridTemplate", "gridTemplateAreas", "gridTemplateColumns", "gridTemplateRows", "gripSpace", "group", "groupBy", "groupCollapsed", "groupEnd", "groupId", "groups", "hadRecentInput", "hand", "handedness", "hangingBaseline", "hapticActuators", "hardwareConcurrency", "has", "hasAttribute", "hasAttributeNS", "hasAttributes", "hasBeenActive", "hasChildNodes", "hasComposition", "hasDynamicOffset", "hasEnrolledInstrument", "hasExtension", "hasExternalDisplay", "hasFeature", "hasFocus", "hasIndices", "hasInstance", "hasLayout", "hasOrientation", "hasOwn", "hasOwnProperty", "hasPointerCapture", "hasPosition", "hasPrivateToken", "hasReading", "hasRedemptionRecord", "hasRegExpGroups", "hasStorageAccess", "hasUAVisualTransition", "hash", "hashChange", "head", "headers", "heading", "height", "hid", "hidden", "hide", "hideFocus", "hidePopover", "high", "highWaterMark", "highlights", "hint", "hints", "history", "honorificPrefix", "honorificSuffix", "horizontalOverflow", "host", "hostCandidate", "hostname", "href", "hrefTranslate", "hreflang", "hspace", "html5TagCheckInerface", "htmlFor", "htmlText", "httpEquiv", "httpRequestStatusCode", "hwTimestamp", "hyphenate-character", "hyphenateCharacter", "hyphens", "hypot", "ic", "iccId", "iceConnectionState", "iceGatheringState", "iceTransport", "icon", "iconURL", "id", "identifier", "identity", "ideographicBaseline", "idpLoginUrl", "ignoreBOM", "ignoreCase", "ignoreDepthValues", "image", "image-orientation", "image-rendering", "imageHeight", "imageOrientation", "imageRendering", "imageSizes", "imageSmoothingEnabled", "imageSmoothingQuality", "imageSrcset", "imageWidth", "images", "ime-mode", "imeMode", "implementation", "importExternalTexture", "importKey", "importNode", "importStylesheet", "imports", "impp", "imul", "in", "in1", "in2", "inBandMetadataTrackDispatchType", "inRange", "includes", "incomingBidirectionalStreams", "incomingHighWaterMark", "incomingMaxAge", "incomingUnidirectionalStreams", "incremental", "indeterminate", "index", "indexNames", "indexOf", "indexedDB", "indicate", "indices", "inert", "inertiaDestinationX", "inertiaDestinationY", "info", "inherits", "init", "initAnimationEvent", "initBeforeLoadEvent", "initClipboardEvent", "initCloseEvent", "initCommandEvent", "initCompositionEvent", "initCustomEvent", "initData", "initDataType", "initDeviceMotionEvent", "initDeviceOrientationEvent", "initDragEvent", "initErrorEvent", "initEvent", "initFocusEvent", "initGestureEvent", "initHashChangeEvent", "initKeyEvent", "initKeyboardEvent", "initMSManipulationEvent", "initMessageEvent", "initMouseEvent", "initMouseScrollEvent", "initMouseWheelEvent", "initMutationEvent", "initNSMouseEvent", "initOverflowEvent", "initPageEvent", "initPageTransitionEvent", "initPointerEvent", "initPopStateEvent", "initProgressEvent", "initScrollAreaEvent", "initSimpleGestureEvent", "initStorageEvent", "initTextEvent", "initTimeEvent", "initTouchEvent", "initTransitionEvent", "initUIEvent", "initWebKitAnimationEvent", "initWebKitTransitionEvent", "initWebKitWheelEvent", "initWheelEvent", "initialTime", "initialValue", "initialize", "initiatorType", "inject", "ink", "inline-size", "inlineSize", "inlineVerticalFieldOfView", "inner", "innerHTML", "innerHeight", "innerText", "innerWidth", "input", "inputBuffer", "inputEncoding", "inputMethod", "inputMode", "inputSource", "inputSources", "inputType", "inputs", "insertAdjacentElement", "insertAdjacentHTML", "insertAdjacentText", "insertBefore", "insertCell", "insertDTMF", "insertData", "insertDebugMarker", "insertItemBefore", "insertNode", "insertRow", "insertRule", "inset", "inset-block", "inset-block-end", "inset-block-start", "inset-inline", "inset-inline-end", "inset-inline-start", "insetBlock", "insetBlockEnd", "insetBlockStart", "insetInline", "insetInlineEnd", "insetInlineStart", "installing", "instanceRoot", "instantiate", "instantiateStreaming", "instruments", "int16", "int32", "int8", "integrity", "interactionId", "interactionMode", "intercept", "interfaceClass", "interfaceName", "interfaceNumber", "interfaceProtocol", "interfaceSubclass", "interfaces", "interimResults", "internalSubset", "interpretation", "intersection", "intersectionRatio", "intersectionRect", "intersectsNode", "interval", "invalidIteratorState", "invalidateFramebuffer", "invalidateSubFramebuffer", "inverse", "invertSelf", "invoker", "invokerType", "is", "is2D", "isActive", "isAlternate", "isArray", "isAutoSelected", "isBingCurrentSearchDefault", "isBuffer", "isCandidateWindowVisible", "isChar", "isCollapsed", "isComposing", "isConcatSpreadable", "isConditionalMediationAvailable", "isConfigSupported", "isConnected", "isContentEditable", "isContentHandlerRegistered", "isContextLost", "isDefaultNamespace", "isDirectory", "isDisabled", "isDisjointFrom", "isEnabled", "isEqual", "isEqualNode", "isExtended", "isExtensible", "isExternalCTAP2SecurityKeySupported", "isFallbackAdapter", "isFile", "isFinite", "isFirstPersonObserver", "isFramebuffer", "isFrozen", "isGenerator", "isHTML", "isHistoryNavigation", "isId", "isIdentity", "isInjected", "isInputPending", "isInteger", "isInternal", "isIntersecting", "isLockFree", "isMap", "isMultiLine", "isNaN", "isOpen", "isPointInFill", "isPointInPath", "isPointInRange", "isPointInStroke", "isPrefAlternate", "isPresenting", "isPrimary", "isProgram", "isPropertyImplicit", "isProtocolHandlerRegistered", "isPrototypeOf", "isQuery", "isRawJSON", "isRenderbuffer", "isSafeInteger", "isSameEntry", "isSameNode", "isSampler", "isScript", "isScriptURL", "isSealed", "isSecureContext", "isSessionSupported", "isShader", "isSubsetOf", "isSupersetOf", "isSupported", "isSync", "isTextEdit", "isTexture", "isTransformFeedback", "isTrusted", "isTypeSupported", "isUserVerifyingPlatformAuthenticatorAvailable", "isVertexArray", "isView", "isVisible", "isWellFormed", "isochronousTransferIn", "isochronousTransferOut", "isolation", "italics", "item", "itemId", "itemProp", "itemRef", "itemScope", "itemType", "itemValue", "items", "iterateNext", "iterationComposite", "iterator", "javaEnabled", "jitterBufferTarget", "jobTitle", "join", "joinAdInterestGroup", "json", "justify-content", "justify-items", "justify-self", "justifyContent", "justifyItems", "justifySelf", "k1", "k2", "k3", "k4", "kHz", "keepalive", "kernelMatrix", "kernelUnitLengthX", "kernelUnitLengthY", "kerning", "key", "keyCode", "keyFor", "keyIdentifier", "keyLightEnabled", "keyLocation", "keyPath", "keyStatuses", "keySystem", "keyText", "keyUsage", "keyboard", "keys", "keytype", "kind", "knee", "label", "labels", "lang", "language", "languages", "largeArcFlag", "lastChild", "lastElementChild", "lastEventId", "lastIndex", "lastIndexOf", "lastInputTime", "lastMatch", "lastMessageSubject", "lastMessageType", "lastModified", "lastModifiedDate", "lastPage", "lastParen", "lastState", "lastStyleSheetSet", "latitude", "launchQueue", "layerName", "layerX", "layerY", "layout", "layoutFlow", "layoutGrid", "layoutGridChar", "layoutGridLine", "layoutGridMode", "layoutGridType", "lbound", "leaveAdInterestGroup", "left", "leftContext", "leftDegrees", "leftMargin", "leftProjectionMatrix", "leftViewMatrix", "length", "lengthAdjust", "lengthComputable", "letter-spacing", "letterSpacing", "level", "lh", "lighting-color", "lightingColor", "limitingConeAngle", "limits", "line", "line-break", "line-height", "lineAlign", "lineBreak", "lineCap", "lineDashOffset", "lineGapOverride", "lineHeight", "lineJoin", "lineNum", "lineNumber", "linePos", "lineTo", "lineWidth", "linearAcceleration", "linearRampToValueAtTime", "linearVelocity", "lineno", "lines", "link", "linkColor", "linkProgram", "links", "list", "list-style", "list-style-image", "list-style-position", "list-style-type", "listStyle", "listStyleImage", "listStylePosition", "listStyleType", "listener", "listeners", "load", "loadEventEnd", "loadEventStart", "loadOp", "loadTime", "loadTimes", "loaded", "loading", "localDescription", "localName", "localService", "localStorage", "locale", "localeCompare", "location", "locationbar", "lock", "locked", "lockedFile", "locks", "lodMaxClamp", "lodMinClamp", "log", "log10", "log1p", "log2", "logicalXDPI", "logicalYDPI", "login", "loglevel", "longDesc", "longitude", "lookupNamespaceURI", "lookupPrefix", "loop", "loopEnd", "loopStart", "looping", "lost", "low", "lower", "lowerBound", "lowerOpen", "lowsrc", "lvb", "lvh", "lvi", "lvmax", "lvmin", "lvw", "m11", "m12", "m13", "m14", "m21", "m22", "m23", "m24", "m31", "m32", "m33", "m34", "m41", "m42", "m43", "m44", "magFilter", "makeXRCompatible", "managed", "manifest", "manufacturer", "manufacturerName", "map", "mapAsync", "mapState", "mappedAtCreation", "mapping", "margin", "margin-block", "margin-block-end", "margin-block-start", "margin-bottom", "margin-inline", "margin-inline-end", "margin-inline-start", "margin-left", "margin-right", "margin-top", "marginBlock", "marginBlockEnd", "marginBlockStart", "marginBottom", "marginHeight", "marginInline", "marginInlineEnd", "marginInlineStart", "marginLeft", "marginRight", "marginTop", "marginWidth", "mark", "marker", "marker-end", "marker-mid", "marker-offset", "marker-start", "markerEnd", "markerHeight", "markerMid", "markerOffset", "markerStart", "markerUnits", "markerWidth", "marks", "mask", "mask-clip", "mask-composite", "mask-image", "mask-mode", "mask-origin", "mask-position", "mask-position-x", "mask-position-y", "mask-repeat", "mask-size", "mask-type", "maskClip", "maskComposite", "maskContentUnits", "maskImage", "maskMode", "maskOrigin", "maskPosition", "maskPositionX", "maskPositionY", "maskRepeat", "maskSize", "maskType", "maskUnits", "match", "matchAll", "matchMedia", "matchMedium", "matches", "math-depth", "math-style", "mathDepth", "mathStyle", "matrix", "matrixTransform", "max", "max-block-size", "max-height", "max-inline-size", "max-width", "maxActions", "maxAlternatives", "maxAnisotropy", "maxBindGroups", "maxBindGroupsPlusVertexBuffers", "maxBindingsPerBindGroup", "maxBlockSize", "maxBufferSize", "maxByteLength", "maxChannelCount", "maxChannels", "maxColorAttachmentBytesPerSample", "maxColorAttachments", "maxComputeInvocationsPerWorkgroup", "maxComputeWorkgroupSizeX", "maxComputeWorkgroupSizeY", "maxComputeWorkgroupSizeZ", "maxComputeWorkgroupStorageSize", "maxComputeWorkgroupsPerDimension", "maxConnectionsPerServer", "maxDatagramSize", "maxDecibels", "maxDistance", "maxDrawCount", "maxDynamicStorageBuffersPerPipelineLayout", "maxDynamicUniformBuffersPerPipelineLayout", "maxHeight", "maxInlineSize", "maxInterStageShaderComponents", "maxInterStageShaderVariables", "maxLayers", "maxLength", "maxMessageSize", "maxPacketLifeTime", "maxRetransmits", "maxSampledTexturesPerShaderStage", "maxSamplersPerShaderStage", "maxStorageBufferBindingSize", "maxStorageBuffersPerShaderStage", "maxStorageTexturesPerShaderStage", "maxTextureArrayLayers", "maxTextureDimension1D", "maxTextureDimension2D", "maxTextureDimension3D", "maxTouchPoints", "maxUniformBufferBindingSize", "maxUniformBuffersPerShaderStage", "maxValue", "maxVertexAttributes", "maxVertexBufferArrayStride", "maxVertexBuffers", "maxWidth", "measure", "measureText", "media", "mediaCapabilities", "mediaDevices", "mediaElement", "mediaGroup", "mediaKeys", "mediaSession", "mediaStream", "mediaText", "meetOrSlice", "memory", "menubar", "mergeAttributes", "message", "messageClass", "messageHandlers", "messageType", "messages", "metaKey", "metadata", "method", "methodDetails", "methodName", "mid", "mimeType", "mimeTypes", "min", "min-block-size", "min-height", "min-inline-size", "min-width", "minBindingSize", "minBlockSize", "minDecibels", "minFilter", "minHeight", "minInlineSize", "minLength", "minStorageBufferOffsetAlignment", "minUniformBufferOffsetAlignment", "minValue", "minWidth", "mipLevel", "mipLevelCount", "mipmapFilter", "miterLimit", "mix-blend-mode", "mixBlendMode", "mm", "mobile", "mode", "model", "modify", "module", "mount", "move", "moveBy", "moveEnd", "moveFirst", "moveFocusDown", "moveFocusLeft", "moveFocusRight", "moveFocusUp", "moveNext", "moveRow", "moveStart", "moveTo", "moveToBookmark", "moveToElementText", "moveToPoint", "movementX", "movementY", "mozAdd", "mozAnimationStartTime", "mozAnon", "mozApps", "mozAudioCaptured", "mozAudioChannelType", "mozAutoplayEnabled", "mozCancelAnimationFrame", "mozCancelFullScreen", "mozCancelRequestAnimationFrame", "mozCaptureStream", "mozCaptureStreamUntilEnded", "mozClearDataAt", "mozContact", "mozContacts", "mozCreateFileHandle", "mozCurrentTransform", "mozCurrentTransformInverse", "mozCursor", "mozDash", "mozDashOffset", "mozDecodedFrames", "mozExitPointerLock", "mozFillRule", "mozFragmentEnd", "mozFrameDelay", "mozFullScreen", "mozFullScreenElement", "mozFullScreenEnabled", "mozGetAll", "mozGetAllKeys", "mozGetAsFile", "mozGetDataAt", "mozGetMetadata", "mozGetUserMedia", "mozHasAudio", "mozHasItem", "mozHidden", "mozImageSmoothingEnabled", "mozIndexedDB", "mozInnerScreenX", "mozInnerScreenY", "mozInputSource", "mozIsTextField", "mozItem", "mozItemCount", "mozItems", "mozLength", "mozLockOrientation", "mozMatchesSelector", "mozMovementX", "mozMovementY", "mozOpaque", "mozOrientation", "mozPaintCount", "mozPaintedFrames", "mozParsedFrames", "mozPay", "mozPointerLockElement", "mozPresentedFrames", "mozPreservesPitch", "mozPressure", "mozPrintCallback", "mozRTCIceCandidate", "mozRTCPeerConnection", "mozRTCSessionDescription", "mozRemove", "mozRequestAnimationFrame", "mozRequestFullScreen", "mozRequestPointerLock", "mozSetDataAt", "mozSetImageElement", "mozSourceNode", "mozSrcObject", "mozSystem", "mozTCPSocket", "mozTextStyle", "mozTypesAt", "mozUnlockOrientation", "mozUserCancelled", "mozVisibilityState", "ms", "msAnimation", "msAnimationDelay", "msAnimationDirection", "msAnimationDuration", "msAnimationFillMode", "msAnimationIterationCount", "msAnimationName", "msAnimationPlayState", "msAnimationStartTime", "msAnimationTimingFunction", "msBackfaceVisibility", "msBlockProgression", "msCSSOMElementFloatMetrics", "msCaching", "msCachingEnabled", "msCancelRequestAnimationFrame", "msCapsLockWarningOff", "msClearImmediate", "msClose", "msContentZoomChaining", "msContentZoomFactor", "msContentZoomLimit", "msContentZoomLimitMax", "msContentZoomLimitMin", "msContentZoomSnap", "msContentZoomSnapPoints", "msContentZoomSnapType", "msContentZooming", "msConvertURL", "msCrypto", "msDoNotTrack", "msElementsFromPoint", "msElementsFromRect", "msExitFullscreen", "msExtendedCode", "msFillRule", "msFirstPaint", "msFlex", "msFlexAlign", "msFlexDirection", "msFlexFlow", "msFlexItemAlign", "msFlexLinePack", "msFlexNegative", "msFlexOrder", "msFlexPack", "msFlexPositive", "msFlexPreferredSize", "msFlexWrap", "msFlowFrom", "msFlowInto", "msFontFeatureSettings", "msFullscreenElement", "msFullscreenEnabled", "msGetInputContext", "msGetRegionContent", "msGetUntransformedBounds", "msGraphicsTrustStatus", "msGridColumn", "msGridColumnAlign", "msGridColumnSpan", "msGridColumns", "msGridRow", "msGridRowAlign", "msGridRowSpan", "msGridRows", "msHidden", "msHighContrastAdjust", "msHyphenateLimitChars", "msHyphenateLimitLines", "msHyphenateLimitZone", "msHyphens", "msImageSmoothingEnabled", "msImeAlign", "msIndexedDB", "msInterpolationMode", "msIsStaticHTML", "msKeySystem", "msKeys", "msLaunchUri", "msLockOrientation", "msManipulationViewsEnabled", "msMatchMedia", "msMatchesSelector", "msMaxTouchPoints", "msOrientation", "msOverflowStyle", "msPerspective", "msPerspectiveOrigin", "msPlayToDisabled", "msPlayToPreferredSourceUri", "msPlayToPrimary", "msPointerEnabled", "msRegionOverflow", "msReleasePointerCapture", "msRequestAnimationFrame", "msRequestFullscreen", "msSaveBlob", "msSaveOrOpenBlob", "msScrollChaining", "msScrollLimit", "msScrollLimitXMax", "msScrollLimitXMin", "msScrollLimitYMax", "msScrollLimitYMin", "msScrollRails", "msScrollSnapPointsX", "msScrollSnapPointsY", "msScrollSnapType", "msScrollSnapX", "msScrollSnapY", "msScrollTranslation", "msSetImmediate", "msSetMediaKeys", "msSetPointerCapture", "msTextCombineHorizontal", "msTextSizeAdjust", "msToBlob", "msTouchAction", "msTouchSelect", "msTraceAsyncCallbackCompleted", "msTraceAsyncCallbackStarting", "msTraceAsyncOperationCompleted", "msTraceAsyncOperationStarting", "msTransform", "msTransformOrigin", "msTransformStyle", "msTransition", "msTransitionDelay", "msTransitionDuration", "msTransitionProperty", "msTransitionTimingFunction", "msUnlockOrientation", "msUpdateAsyncCallbackRelation", "msUserSelect", "msVisibilityState", "msWrapFlow", "msWrapMargin", "msWrapThrough", "msWriteProfilerMark", "msZoom", "msZoomTo", "mt", "mul", "multiEntry", "multiSelectionObj", "multiline", "multiple", "multiply", "multiplySelf", "multisample", "multisampled", "mutableFile", "muted", "n", "name", "nameList", "nameProp", "namedItem", "namedRecordset", "names", "namespaceURI", "namespaces", "nativeMap", "nativeObjectCreate", "nativeSet", "nativeWeakMap", "naturalHeight", "naturalWidth", "navigate", "navigation", "navigationMode", "navigationPreload", "navigationStart", "navigationType", "navigator", "near", "nearestViewportElement", "negative", "negotiated", "netscape", "networkState", "newScale", "newState", "newTranslate", "newURL", "newValue", "newValueSpecifiedUnits", "newVersion", "newhome", "next", "nextElementSibling", "nextHopProtocol", "nextNode", "nextPage", "nextSibling", "nickname", "noHref", "noModule", "noResize", "noShade", "noValidate", "noWrap", "node", "nodeName", "nodeType", "nodeValue", "nonce", "normDepthBufferFromNormView", "normalize", "normalizedPathSegList", "notRestoredReasons", "notationName", "notations", "note", "noteGrainOn", "noteOff", "noteOn", "notify", "now", "numOctaves", "number", "numberOfChannels", "numberOfFrames", "numberOfInputs", "numberOfItems", "numberOfOutputs", "numberValue", "oMatchesSelector", "object", "object-fit", "object-position", "objectFit", "objectPosition", "objectStore", "objectStoreNames", "objectType", "observe", "occlusionQuerySet", "of", "off", "offscreenBuffering", "offset", "offset-anchor", "offset-distance", "offset-path", "offset-position", "offset-rotate", "offsetAnchor", "offsetDistance", "offsetHeight", "offsetLeft", "offsetNode", "offsetParent", "offsetPath", "offsetPosition", "offsetRotate", "offsetTop", "offsetWidth", "offsetX", "offsetY", "ok", "oldState", "oldURL", "oldValue", "oldVersion", "olderShadowRoot", "on", "onCommitFiberRoot", "onCommitFiberUnmount", "onLine", "onPostCommitFiberRoot", "onSubmittedWorkDone", "onabort", "onabsolutedeviceorientation", "onactivate", "onactive", "onaddsourcebuffer", "onaddstream", "onaddtrack", "onafterprint", "onafterscriptexecute", "onafterupdate", "onanimationcancel", "onanimationend", "onanimationiteration", "onanimationstart", "onappinstalled", "onaudioend", "onaudioprocess", "onaudiostart", "onautocomplete", "onautocompleteerror", "onauxclick", "onbeforeactivate", "onbeforecopy", "onbeforecut", "onbeforedeactivate", "onbeforeeditfocus", "onbeforeinput", "onbeforeinstallprompt", "onbeforematch", "onbeforepaste", "onbeforeprint", "onbeforescriptexecute", "onbeforetoggle", "onbeforeunload", "onbeforeupdate", "onbeforexrselect", "onbegin", "onblocked", "onblur", "onbounce", "onboundary", "onbufferedamountlow", "oncached", "oncancel", "oncandidatewindowhide", "oncandidatewindowshow", "oncandidatewindowupdate", "oncanplay", "oncanplaythrough", "oncapturehandlechange", "once", "oncellchange", "onchange", "oncharacterboundsupdate", "oncharacteristicvaluechanged", "onchargingchange", "onchargingtimechange", "onchecking", "onclick", "onclose", "onclosing", "oncompassneedscalibration", "oncomplete", "oncompositionend", "oncompositionstart", "onconnect", "onconnecting", "onconnectionavailable", "onconnectionstatechange", "oncontentvisibilityautostatechange", "oncontextlost", "oncontextmenu", "oncontextrestored", "oncontrollerchange", "oncontrolselect", "oncopy", "oncuechange", "oncurrententrychange", "oncurrentscreenchange", "oncut", "ondataavailable", "ondatachannel", "ondatasetchanged", "ondatasetcomplete", "ondblclick", "ondeactivate", "ondequeue", "ondevicechange", "ondevicelight", "ondevicemotion", "ondeviceorientation", "ondeviceorientationabsolute", "ondeviceproximity", "ondischargingtimechange", "ondisconnect", "ondisplay", "ondispose", "ondownloading", "ondrag", "ondragend", "ondragenter", "ondragexit", "ondragleave", "ondragover", "ondragstart", "ondrop", "ondurationchange", "onemptied", "onencrypted", "onend", "onended", "onenter", "onenterpictureinpicture", "onerror", "onerrorupdate", "onexit", "onfencedtreeclick", "onfilterchange", "onfinish", "onfocus", "onfocusin", "onfocusout", "onformdata", "onfreeze", "onfullscreenchange", "onfullscreenerror", "ongamepadconnected", "ongamepaddisconnected", "ongatheringstatechange", "ongattserverdisconnected", "ongeometrychange", "ongesturechange", "ongestureend", "ongesturestart", "ongotpointercapture", "onhashchange", "onhelp", "onicecandidate", "onicecandidateerror", "oniceconnectionstatechange", "onicegatheringstatechange", "oninactive", "oninput", "oninputreport", "oninputsourceschange", "oninvalid", "onkeydown", "onkeypress", "onkeystatuseschange", "onkeyup", "onlanguagechange", "onlayoutcomplete", "onleavepictureinpicture", "onlevelchange", "onload", "onloadeddata", "onloadedmetadata", "onloadend", "onloading", "onloadingdone", "onloadingerror", "onloadstart", "onlosecapture", "onlostpointercapture", "only", "onmanagedconfigurationchange", "onmark", "onmessage", "onmessageerror", "onmidimessage", "onmousedown", "onmouseenter", "onmouseleave", "onmousemove", "onmouseout", "onmouseover", "onmouseup", "onmousewheel", "onmove", "onmoveend", "onmovestart", "onmozfullscreenchange", "onmozfullscreenerror", "onmozorientationchange", "onmozpointerlockchange", "onmozpointerlockerror", "onmscontentzoom", "onmsfullscreenchange", "onmsfullscreenerror", "onmsgesturechange", "onmsgesturedoubletap", "onmsgestureend", "onmsgesturehold", "onmsgesturestart", "onmsgesturetap", "onmsgotpointercapture", "onmsinertiastart", "onmslostpointercapture", "onmsmanipulationstatechanged", "onmsneedkey", "onmsorientationchange", "onmspointercancel", "onmspointerdown", "onmspointerenter", "onmspointerhover", "onmspointerleave", "onmspointermove", "onmspointerout", "onmspointerover", "onmspointerup", "onmssitemodejumplistitemremoved", "onmsthumbnailclick", "onmute", "onnavigate", "onnavigateerror", "onnavigatesuccess", "onnegotiationneeded", "onnomatch", "onnoupdate", "onobsolete", "onoffline", "ononline", "onopen", "onorientationchange", "onpagechange", "onpagehide", "onpagereveal", "onpageshow", "onpageswap", "onpaste", "onpause", "onpayerdetailchange", "onpaymentmethodchange", "onplay", "onplaying", "onpluginstreamstart", "onpointercancel", "onpointerdown", "onpointerenter", "onpointerleave", "onpointerlockchange", "onpointerlockerror", "onpointermove", "onpointerout", "onpointerover", "onpointerrawupdate", "onpointerup", "onpopstate", "onprerenderingchange", "onprioritychange", "onprocessorerror", "onprogress", "onpropertychange", "onratechange", "onreading", "onreadystatechange", "onreflectionchange", "onrejectionhandled", "onrelease", "onremove", "onremovesourcebuffer", "onremovestream", "onremovetrack", "onrepeat", "onreset", "onresize", "onresizeend", "onresizestart", "onresourcetimingbufferfull", "onresult", "onresume", "onrowenter", "onrowexit", "onrowsdelete", "onrowsinserted", "onscreenschange", "onscroll", "onscrollend", "onsearch", "onsecuritypolicyviolation", "onseeked", "onseeking", "onselect", "onselectedcandidatepairchange", "onselectend", "onselectionchange", "onselectstart", "onshippingaddresschange", "onshippingoptionchange", "onshow", "onsignalingstatechange", "onsinkchange", "onslotchange", "onsoundend", "onsoundstart", "onsourceclose", "onsourceclosed", "onsourceended", "onsourceopen", "onspeechend", "onspeechstart", "onsqueeze", "onsqueezeend", "onsqueezestart", "onstalled", "onstart", "onstatechange", "onstop", "onstorage", "onstoragecommit", "onsubmit", "onsuccess", "onsuspend", "onterminate", "ontextformatupdate", "ontextinput", "ontextupdate", "ontimeout", "ontimeupdate", "ontoggle", "ontonechange", "ontouchcancel", "ontouchend", "ontouchmove", "ontouchstart", "ontrack", "ontransitioncancel", "ontransitionend", "ontransitionrun", "ontransitionstart", "onuncapturederror", "onunhandledrejection", "onunload", "onunmute", "onupdate", "onupdateend", "onupdatefound", "onupdateready", "onupdatestart", "onupgradeneeded", "onuserproximity", "onversionchange", "onvisibilitychange", "onvoiceschanged", "onvolumechange", "onvrdisplayactivate", "onvrdisplayconnect", "onvrdisplaydeactivate", "onvrdisplaydisconnect", "onvrdisplaypresentchange", "onwaiting", "onwaitingforkey", "onwarning", "onwebkitanimationend", "onwebkitanimationiteration", "onwebkitanimationstart", "onwebkitcurrentplaybacktargetiswirelesschanged", "onwebkitfullscreenchange", "onwebkitfullscreenerror", "onwebkitkeyadded", "onwebkitkeyerror", "onwebkitkeymessage", "onwebkitneedkey", "onwebkitorientationchange", "onwebkitplaybacktargetavailabilitychanged", "onwebkitpointerlockchange", "onwebkitpointerlockerror", "onwebkitresourcetimingbufferfull", "onwebkittransitionend", "onwheel", "onzoom", "opacity", "open", "openCursor", "openDatabase", "openKeyCursor", "opened", "opener", "opera", "operation", "operationType", "operator", "opr", "optimum", "options", "or", "order", "orderX", "orderY", "ordered", "org", "organization", "orient", "orientAngle", "orientType", "orientation", "orientationX", "orientationY", "orientationZ", "origin", "originAgentCluster", "originalPolicy", "originalTarget", "orphans", "oscpu", "outerHTML", "outerHeight", "outerText", "outerWidth", "outgoingHighWaterMark", "outgoingMaxAge", "outline", "outline-color", "outline-offset", "outline-style", "outline-width", "outlineColor", "outlineOffset", "outlineStyle", "outlineWidth", "outputBuffer", "outputChannelCount", "outputLatency", "outputs", "overflow", "overflow-anchor", "overflow-block", "overflow-clip-margin", "overflow-inline", "overflow-wrap", "overflow-x", "overflow-y", "overflowAnchor", "overflowBlock", "overflowClipMargin", "overflowInline", "overflowWrap", "overflowX", "overflowY", "overlaysContent", "overrideColors", "overrideMimeType", "oversample", "overscroll-behavior", "overscroll-behavior-block", "overscroll-behavior-inline", "overscroll-behavior-x", "overscroll-behavior-y", "overscrollBehavior", "overscrollBehaviorBlock", "overscrollBehaviorInline", "overscrollBehaviorX", "overscrollBehaviorY", "ownKeys", "ownerDocument", "ownerElement", "ownerNode", "ownerRule", "ownerSVGElement", "owningElement", "p1", "p2", "p3", "p4", "packetSize", "packets", "pad", "padEnd", "padStart", "padding", "padding-block", "padding-block-end", "padding-block-start", "padding-bottom", "padding-inline", "padding-inline-end", "padding-inline-start", "padding-left", "padding-right", "padding-top", "paddingBlock", "paddingBlockEnd", "paddingBlockStart", "paddingBottom", "paddingInline", "paddingInlineEnd", "paddingInlineStart", "paddingLeft", "paddingRight", "paddingTop", "page", "page-break-after", "page-break-before", "page-break-inside", "pageBreakAfter", "pageBreakBefore", "pageBreakInside", "pageCount", "pageLeft", "pageTop", "pageX", "pageXOffset", "pageY", "pageYOffset", "pages", "paint-order", "paintOrder", "paintRequests", "paintType", "paintWorklet", "palette", "pan", "panningModel", "parameterData", "parameters", "parent", "parentElement", "parentNode", "parentRule", "parentStyleSheet", "parentTextEdit", "parentWindow", "parse", "parseAll", "parseCreationOptionsFromJSON", "parseFloat", "parseFromString", "parseHTMLUnsafe", "parseInt", "parseRequestOptionsFromJSON", "part", "participants", "passOp", "passive", "password", "pasteHTML", "path", "pathLength", "pathSegList", "pathSegType", "pathSegTypeAsLetter", "pathname", "pattern", "patternContentUnits", "patternMismatch", "patternTransform", "patternUnits", "pause", "pauseAnimations", "pauseDuration", "pauseOnExit", "pauseProfilers", "pauseTransformFeedback", "paused", "payerEmail", "payerName", "payerPhone", "paymentManager", "pc", "pdfViewerEnabled", "peerIdentity", "pending", "pendingLocalDescription", "pendingRemoteDescription", "percent", "performance", "periodicSync", "permission", "permissionState", "permissions", "persist", "persisted", "personalbar", "perspective", "perspective-origin", "perspectiveOrigin", "phone", "phoneticFamilyName", "phoneticGivenName", "photo", "pictureInPictureElement", "pictureInPictureEnabled", "pictureInPictureWindow", "ping", "pipeThrough", "pipeTo", "pitch", "pixelBottom", "pixelDepth", "pixelHeight", "pixelLeft", "pixelRight", "pixelStorei", "pixelTop", "pixelUnitToMillimeterX", "pixelUnitToMillimeterY", "pixelWidth", "place-content", "place-items", "place-self", "placeContent", "placeItems", "placeSelf", "placeholder", "platform", "platformVersion", "platforms", "play", "playEffect", "playState", "playbackRate", "playbackState", "playbackTime", "played", "playoutDelayHint", "playsInline", "plugins", "pluginspage", "pname", "pointer-events", "pointerBeforeReferenceNode", "pointerEnabled", "pointerEvents", "pointerId", "pointerLockElement", "pointerType", "points", "pointsAtX", "pointsAtY", "pointsAtZ", "polygonOffset", "pop", "popDebugGroup", "popErrorScope", "popover", "popoverTargetAction", "popoverTargetElement", "populateMatrix", "popupWindowFeatures", "popupWindowName", "popupWindowURI", "port", "port1", "port2", "ports", "posBottom", "posHeight", "posLeft", "posRight", "posTop", "posWidth", "pose", "position", "positionAlign", "positionX", "positionY", "positionZ", "postError", "postMessage", "postTask", "postalCode", "poster", "postscriptName", "pow", "powerEfficient", "powerOff", "powerPreference", "preMultiplySelf", "precision", "preferredReflectionFormat", "preferredStyleSheetSet", "preferredStylesheetSet", "prefix", "preload", "premultipliedAlpha", "prepend", "prerendering", "presentation", "presentationArea", "preserveAlpha", "preserveAspectRatio", "preserveAspectRatioString", "preservesPitch", "pressed", "pressure", "prevValue", "preventDefault", "preventExtensions", "preventSilentAccess", "previousElementSibling", "previousNode", "previousPage", "previousPriority", "previousRect", "previousScale", "previousSibling", "previousTranslate", "primaries", "primaryKey", "primaryLightDirection", "primaryLightIntensity", "primitive", "primitiveType", "primitiveUnits", "principals", "print", "print-color-adjust", "printColorAdjust", "priority", "privateKey", "privateToken", "probablySupportsContext", "probeSpace", "process", "processIceMessage", "processingEnd", "processingStart", "processorOptions", "product", "productId", "productName", "productSub", "profile", "profileEnd", "profiles", "projectionMatrix", "promise", "prompt", "properties", "propertyIsEnumerable", "propertyName", "protocol", "protocolLong", "prototype", "provider", "pseudoClass", "pseudoElement", "pt", "publicId", "publicKey", "published", "pulse", "push", "pushDebugGroup", "pushErrorScope", "pushManager", "pushNotification", "pushState", "put", "putImageData", "px", "quadraticCurveTo", "qualifier", "quaternion", "query", "queryCommandEnabled", "queryCommandIndeterm", "queryCommandState", "queryCommandSupported", "queryCommandText", "queryCommandValue", "queryLocalFonts", "queryPermission", "querySelector", "querySelectorAll", "querySet", "queue", "queueMicrotask", "quote", "quotes", "r", "r1", "r2", "race", "rad", "radiogroup", "radiusX", "radiusY", "random", "randomUUID", "range", "rangeCount", "rangeEnd", "rangeMax", "rangeMin", "rangeOffset", "rangeOverflow", "rangeParent", "rangeStart", "rangeUnderflow", "rate", "ratio", "raw", "rawId", "rawJSON", "rawValueToMeters", "rcap", "rch", "read", "readAsArrayBuffer", "readAsBinaryString", "readAsBlob", "readAsDataURL", "readAsText", "readBuffer", "readEntries", "readOnly", "readPixels", "readReportRequested", "readText", "readValue", "readable", "ready", "readyState", "reason", "reasons", "reboot", "receiveFeatureReport", "receivedAlert", "receiver", "receivers", "recipient", "recommendedViewportScale", "reconnect", "recordNumber", "recordsAvailable", "recordset", "rect", "red", "redEyeReduction", "redirect", "redirectCount", "redirectEnd", "redirectStart", "redirected", "reduce", "reduceRight", "reduction", "refDistance", "refX", "refY", "referenceNode", "referenceSpace", "referrer", "referrerPolicy", "refresh", "region", "regionAnchorX", "regionAnchorY", "regionId", "regions", "register", "registerContentHandler", "registerElement", "registerInternalModuleStart", "registerInternalModuleStop", "registerProperty", "registerProtocolHandler", "reject", "rel", "relList", "relatedAddress", "relatedNode", "relatedPort", "relatedTarget", "relayProtocol", "release", "releaseCapture", "releaseEvents", "releaseInterface", "releaseLock", "releasePointerCapture", "releaseShaderCompiler", "released", "reliability", "reliable", "reliableWrite", "reload", "rem", "remainingSpace", "remote", "remoteDescription", "remove", "removeAllRanges", "removeAttribute", "removeAttributeNS", "removeAttributeNode", "removeBehavior", "removeChild", "removeCue", "removeEntry", "removeEventListener", "removeFilter", "removeImport", "removeItem", "removeListener", "removeNamedItem", "removeNamedItemNS", "removeNode", "removeParameter", "removeProperty", "removeRange", "removeRegion", "removeRule", "removeSiteSpecificTrackingException", "removeSourceBuffer", "removeStream", "removeTrack", "removeVariable", "removeWakeLockListener", "removeWebWideTrackingException", "removed", "removedNodes", "renderBlockingStatus", "renderHeight", "renderStart", "renderState", "renderTime", "renderWidth", "renderbufferStorage", "renderbufferStorageMultisample", "renderedBuffer", "rendererInterfaces", "renderers", "renderingMode", "renotify", "repeat", "repetitionCount", "replace", "replaceAdjacentText", "replaceAll", "replaceChild", "replaceChildren", "replaceData", "replaceId", "replaceItem", "replaceNode", "replaceState", "replaceSync", "replaceTrack", "replaceWholeText", "replaceWith", "reportError", "reportEvent", "reportId", "reportValidity", "request", "requestAdapter", "requestAdapterInfo", "requestAnimationFrame", "requestAutocomplete", "requestData", "requestDevice", "requestFrame", "requestFullscreen", "requestHitTestSource", "requestHitTestSourceForTransientInput", "requestId", "requestIdleCallback", "requestLightProbe", "requestMIDIAccess", "requestMediaKeySystemAccess", "requestPermission", "requestPictureInPicture", "requestPointerLock", "requestPort", "requestPresent", "requestPresenter", "requestReferenceSpace", "requestSession", "requestStart", "requestStorageAccess", "requestStorageAccessFor", "requestSubmit", "requestVideoFrameCallback", "requestViewportScale", "requestWindow", "requestingWindow", "requireInteraction", "required", "requiredExtensions", "requiredFeatures", "requiredLimits", "reset", "resetPose", "resetTransform", "resizable", "resize", "resizeBy", "resizeTo", "resolve", "resolveQuerySet", "resolveTarget", "resource", "respond", "respondWithNewView", "response", "responseBody", "responseEnd", "responseReady", "responseStart", "responseStatus", "responseText", "responseType", "responseURL", "responseXML", "restartIce", "restore", "result", "resultIndex", "resultType", "results", "resume", "resumeProfilers", "resumeTransformFeedback", "retry", "returnValue", "rev", "reverse", "reversed", "revocable", "revokeObjectURL", "rex", "rgbColor", "ric", "right", "rightContext", "rightDegrees", "rightMargin", "rightProjectionMatrix", "rightViewMatrix", "rlh", "role", "rolloffFactor", "root", "rootBounds", "rootElement", "rootMargin", "rotate", "rotateAxisAngle", "rotateAxisAngleSelf", "rotateFromVector", "rotateFromVectorSelf", "rotateSelf", "rotation", "rotationAngle", "rotationRate", "round", "roundRect", "row-gap", "rowGap", "rowIndex", "rowSpan", "rows", "rowsPerImage", "rtcpTransport", "rtt", "ruby-align", "ruby-position", "rubyAlign", "rubyOverhang", "rubyPosition", "rules", "run", "runAdAuction", "runtime", "runtimeStyle", "rx", "ry", "s", "safari", "sameDocument", "sample", "sampleCount", "sampleCoverage", "sampleInterval", "sampleRate", "sampleType", "sampler", "samplerParameterf", "samplerParameteri", "sandbox", "save", "saveData", "scale", "scale3d", "scale3dSelf", "scaleNonUniform", "scaleNonUniformSelf", "scaleSelf", "scheduler", "scheduling", "scheme", "scissor", "scope", "scopeName", "scoped", "screen", "screenBrightness", "screenEnabled", "screenLeft", "screenPixelToMillimeterX", "screenPixelToMillimeterY", "screenState", "screenTop", "screenX", "screenY", "screens", "scriptURL", "scripts", "scroll", "scroll-behavior", "scroll-margin", "scroll-margin-block", "scroll-margin-block-end", "scroll-margin-block-start", "scroll-margin-bottom", "scroll-margin-inline", "scroll-margin-inline-end", "scroll-margin-inline-start", "scroll-margin-left", "scroll-margin-right", "scroll-margin-top", "scroll-padding", "scroll-padding-block", "scroll-padding-block-end", "scroll-padding-block-start", "scroll-padding-bottom", "scroll-padding-inline", "scroll-padding-inline-end", "scroll-padding-inline-start", "scroll-padding-left", "scroll-padding-right", "scroll-padding-top", "scroll-snap-align", "scroll-snap-stop", "scroll-snap-type", "scrollAmount", "scrollBehavior", "scrollBy", "scrollByLines", "scrollByPages", "scrollDelay", "scrollHeight", "scrollIntoView", "scrollIntoViewIfNeeded", "scrollLeft", "scrollLeftMax", "scrollMargin", "scrollMarginBlock", "scrollMarginBlockEnd", "scrollMarginBlockStart", "scrollMarginBottom", "scrollMarginInline", "scrollMarginInlineEnd", "scrollMarginInlineStart", "scrollMarginLeft", "scrollMarginRight", "scrollMarginTop", "scrollMaxX", "scrollMaxY", "scrollPadding", "scrollPaddingBlock", "scrollPaddingBlockEnd", "scrollPaddingBlockStart", "scrollPaddingBottom", "scrollPaddingInline", "scrollPaddingInlineEnd", "scrollPaddingInlineStart", "scrollPaddingLeft", "scrollPaddingRight", "scrollPaddingTop", "scrollRestoration", "scrollSnapAlign", "scrollSnapStop", "scrollSnapType", "scrollTo", "scrollTop", "scrollTopMax", "scrollWidth", "scrollX", "scrollY", "scrollbar-color", "scrollbar-gutter", "scrollbar-width", "scrollbar3dLightColor", "scrollbarArrowColor", "scrollbarBaseColor", "scrollbarColor", "scrollbarDarkShadowColor", "scrollbarFaceColor", "scrollbarGutter", "scrollbarHighlightColor", "scrollbarShadowColor", "scrollbarTrackColor", "scrollbarWidth", "scrollbars", "scrolling", "scrollingElement", "sctp", "sctpCauseCode", "sdp", "sdpLineNumber", "sdpMLineIndex", "sdpMid", "seal", "search", "searchBox", "searchBoxJavaBridge_", "searchParams", "sectionRowIndex", "secureConnectionStart", "security", "seed", "seek", "seekToNextFrame", "seekable", "seeking", "select", "selectAllChildren", "selectAlternateInterface", "selectAudioOutput", "selectConfiguration", "selectNode", "selectNodeContents", "selectNodes", "selectSingleNode", "selectSubString", "selectURL", "selected", "selectedIndex", "selectedOptions", "selectedStyleSheetSet", "selectedStylesheetSet", "selectedTrack", "selection", "selectionDirection", "selectionEnd", "selectionStart", "selector", "selectorText", "self", "send", "sendAsBinary", "sendBeacon", "sendFeatureReport", "sendOrder", "sendReport", "sender", "sentAlert", "sentTimestamp", "separator", "serial", "serialNumber", "serializeToString", "serverTiming", "service", "serviceWorker", "session", "sessionId", "sessionStorage", "set", "setActionHandler", "setActive", "setAlpha", "setAppBadge", "setAttribute", "setAttributeNS", "setAttributeNode", "setAttributeNodeNS", "setAttributionReporting", "setBaseAndExtent", "setBigInt64", "setBigUint64", "setBindGroup", "setBingCurrentSearchDefault", "setBlendConstant", "setCameraActive", "setCapture", "setCaptureHandleConfig", "setCodecPreferences", "setColor", "setCompositeOperation", "setConfiguration", "setConsumer", "setCurrentTime", "setCustomValidity", "setData", "setDate", "setDragImage", "setEnd", "setEndAfter", "setEndBefore", "setEndPoint", "setExpires", "setFillColor", "setFilterRes", "setFloat32", "setFloat64", "setFloatValue", "setFocusBehavior", "setFormValue", "setFullYear", "setHTMLUnsafe", "setHeaderExtensionsToNegotiate", "setHeaderValue", "setHours", "setIdentityProvider", "setImmediate", "setIndexBuffer", "setInt16", "setInt32", "setInt8", "setInterval", "setItem", "setKeyframes", "setLineCap", "setLineDash", "setLineJoin", "setLineWidth", "setLiveSeekableRange", "setLocalDescription", "setMatrix", "setMatrixValue", "setMediaKeys", "setMicrophoneActive", "setMilliseconds", "setMinutes", "setMiterLimit", "setMonth", "setNamedItem", "setNamedItemNS", "setNonUserCodeExceptions", "setOrientToAngle", "setOrientToAuto", "setOrientation", "setOverrideHistoryNavigationMode", "setPaint", "setParameter", "setParameters", "setPeriodicWave", "setPipeline", "setPointerCapture", "setPosition", "setPositionState", "setPreference", "setPriority", "setPrivateToken", "setProperty", "setPrototypeOf", "setRGBColor", "setRGBColorICCColor", "setRadius", "setRangeText", "setRemoteDescription", "setReportEventDataForAutomaticBeacons", "setRequestHeader", "setResizable", "setResourceTimingBufferSize", "setRotate", "setScale", "setScissorRect", "setSeconds", "setSelectionRange", "setServerCertificate", "setShadow", "setSharedStorageContext", "setSignals", "setSinkId", "setSkewX", "setSkewY", "setStart", "setStartAfter", "setStartBefore", "setStatus", "setStdDeviation", "setStencilReference", "setStreams", "setStrictMode", "setStringValue", "setStrokeColor", "setSuggestResult", "setTargetAtTime", "setTargetValueAtTime", "setTime", "setTimeout", "setTransform", "setTranslate", "setUTCDate", "setUTCFullYear", "setUTCHours", "setUTCMilliseconds", "setUTCMinutes", "setUTCMonth", "setUTCSeconds", "setUint16", "setUint32", "setUint8", "setUri", "setValidity", "setValueAtTime", "setValueCurveAtTime", "setVariable", "setVelocity", "setVersion", "setVertexBuffer", "setViewport", "setYear", "settingName", "settingValue", "sex", "shaderLocation", "shaderSource", "shadowBlur", "shadowColor", "shadowOffsetX", "shadowOffsetY", "shadowRoot", "shadowRootClonable", "shadowRootDelegatesFocus", "shadowRootMode", "shape", "shape-image-threshold", "shape-margin", "shape-outside", "shape-rendering", "shapeImageThreshold", "shapeMargin", "shapeOutside", "shapeRendering", "share", "sharedStorage", "sharedStorageWritable", "sheet", "shift", "shiftKey", "shiftLeft", "shippingAddress", "shippingOption", "shippingType", "show", "showDirectoryPicker", "showHelp", "showModal", "showModalDialog", "showModelessDialog", "showNotification", "showOpenFilePicker", "showPicker", "showPopover", "showSaveFilePicker", "sidebar", "sign", "signal", "signalingState", "signature", "silent", "sin", "singleNodeValue", "sinh", "sinkId", "sittingToStandingTransform", "size", "sizeAdjust", "sizeToContent", "sizeX", "sizeZ", "sizes", "skewX", "skewXSelf", "skewY", "skewYSelf", "skipTransition", "skipped", "slice", "slope", "slot", "slotAssignment", "small", "smil", "smooth", "smoothingTimeConstant", "snapToLines", "snapshotItem", "snapshotLength", "some", "sort", "sortingCode", "source", "sourceBuffer", "sourceBuffers", "sourceCapabilities", "sourceCharPosition", "sourceFile", "sourceFunctionName", "sourceIndex", "sourceMap", "sourceURL", "sources", "spacing", "span", "speak", "speakAs", "speaking", "species", "specified", "specularConstant", "specularExponent", "speechSynthesis", "speed", "speedOfSound", "spellcheck", "sphericalHarmonicsCoefficients", "splice", "split", "splitText", "spreadMethod", "sqrt", "src", "srcElement", "srcFactor", "srcFilter", "srcObject", "srcUrn", "srcdoc", "srclang", "srcset", "stack", "stackTraceLimit", "stacktrace", "stageParameters", "standalone", "standby", "start", "startContainer", "startIce", "startMessages", "startNotifications", "startOffset", "startProfiling", "startRendering", "startShark", "startTime", "startViewTransition", "startsWith", "state", "states", "stats", "status", "statusCode", "statusMessage", "statusText", "statusbar", "stdDeviationX", "stdDeviationY", "stencilBack", "stencilClearValue", "stencilFront", "stencilFunc", "stencilFuncSeparate", "stencilLoadOp", "stencilMask", "stencilMaskSeparate", "stencilOp", "stencilOpSeparate", "stencilReadMask", "stencilReadOnly", "stencilStoreOp", "stencilWriteMask", "step", "stepDown", "stepMismatch", "stepMode", "stepUp", "sticky", "stitchTiles", "stop", "stop-color", "stop-opacity", "stopColor", "stopImmediatePropagation", "stopNotifications", "stopOpacity", "stopProfiling", "stopPropagation", "stopShark", "stopped", "storage", "storageArea", "storageBuckets", "storageName", "storageStatus", "storageTexture", "store", "storeOp", "storeSiteSpecificTrackingException", "storeWebWideTrackingException", "stpVersion", "stream", "streamErrorCode", "streams", "stretch", "strike", "string", "stringValue", "stringify", "stripIndexFormat", "stroke", "stroke-dasharray", "stroke-dashoffset", "stroke-linecap", "stroke-linejoin", "stroke-miterlimit", "stroke-opacity", "stroke-width", "strokeDasharray", "strokeDashoffset", "strokeLinecap", "strokeLinejoin", "strokeMiterlimit", "strokeOpacity", "strokeRect", "strokeStyle", "strokeText", "strokeWidth", "structuredClone", "style", "styleAndLayoutStart", "styleFloat", "styleMap", "styleMedia", "styleSheet", "styleSheetSets", "styleSheets", "sub", "subarray", "subject", "submit", "submitFrame", "submitter", "subscribe", "substr", "substring", "substringData", "subtle", "subtree", "suffix", "suffixes", "summary", "sup", "supported", "supportedContentEncodings", "supportedEntryTypes", "supportedValuesOf", "supports", "supportsFiber", "supportsSession", "supportsText", "surfaceScale", "surroundContents", "suspend", "suspendRedraw", "svb", "svh", "svi", "svmax", "svmin", "svw", "swapCache", "swapNode", "sweepFlag", "symbols", "symmetricDifference", "sync", "syntax", "sysexEnabled", "system", "systemCode", "systemId", "systemLanguage", "systemXDPI", "systemYDPI", "tBodies", "tFoot", "tHead", "tab-size", "tabIndex", "tabSize", "table", "table-layout", "tableLayout", "tableValues", "tag", "tagName", "tagUrn", "tags", "taintEnabled", "take", "takePhoto", "takeRecords", "tan", "tangentialPressure", "tanh", "target", "targetAddressSpace", "targetElement", "targetRayMode", "targetRaySpace", "targetTouches", "targetURL", "targetX", "targetY", "targets", "tcpType", "tee", "tel", "terminate", "test", "texImage2D", "texImage3D", "texParameterf", "texParameteri", "texStorage2D", "texStorage3D", "texSubImage2D", "texSubImage3D", "text", "text-align", "text-align-last", "text-anchor", "text-combine-upright", "text-decoration", "text-decoration-color", "text-decoration-line", "text-decoration-skip-ink", "text-decoration-style", "text-decoration-thickness", "text-emphasis", "text-emphasis-color", "text-emphasis-position", "text-emphasis-style", "text-indent", "text-justify", "text-orientation", "text-overflow", "text-rendering", "text-shadow", "text-transform", "text-underline-offset", "text-underline-position", "text-wrap", "text-wrap-mode", "text-wrap-style", "textAlign", "textAlignLast", "textAnchor", "textAutospace", "textBaseline", "textCombineUpright", "textContent", "textDecoration", "textDecorationBlink", "textDecorationColor", "textDecorationLine", "textDecorationLineThrough", "textDecorationNone", "textDecorationOverline", "textDecorationSkipInk", "textDecorationStyle", "textDecorationThickness", "textDecorationUnderline", "textEmphasis", "textEmphasisColor", "textEmphasisPosition", "textEmphasisStyle", "textIndent", "textJustify", "textJustifyTrim", "textKashida", "textKashidaSpace", "textLength", "textOrientation", "textOverflow", "textRendering", "textShadow", "textTracks", "textTransform", "textUnderlineOffset", "textUnderlinePosition", "textWrap", "textWrapMode", "textWrapStyle", "texture", "then", "threadId", "threshold", "thresholds", "throwIfAborted", "tiltX", "tiltY", "time", "timeEnd", "timeLog", "timeOrigin", "timeRemaining", "timeStamp", "timecode", "timeline", "timelineTime", "timeout", "timestamp", "timestampOffset", "timestampWrites", "timing", "title", "titlebarAreaRect", "to", "toArray", "toBlob", "toDataURL", "toDateString", "toElement", "toExponential", "toFixed", "toFloat32Array", "toFloat64Array", "toGMTString", "toISOString", "toJSON", "toLocaleDateString", "toLocaleFormat", "toLocaleLowerCase", "toLocaleString", "toLocaleTimeString", "toLocaleUpperCase", "toLowerCase", "toMatrix", "toMethod", "toPrecision", "toPrimitive", "toReversed", "toSdp", "toSorted", "toSource", "toSpliced", "toStaticHTML", "toString", "toStringTag", "toSum", "toTimeString", "toUTCString", "toUpperCase", "toWellFormed", "toggle", "toggleAttribute", "toggleLongPressEnabled", "togglePopover", "token", "tone", "toneBuffer", "tooLong", "tooShort", "toolbar", "top", "topMargin", "topology", "total", "totalFrameDelay", "totalFrames", "totalVideoFrames", "touch-action", "touchAction", "touched", "touches", "trace", "track", "trackVisibility", "trackedAnchors", "tracks", "transaction", "transactions", "transceiver", "transfer", "transferControlToOffscreen", "transferFromImageBitmap", "transferImageBitmap", "transferIn", "transferOut", "transferSize", "transferToFixedLength", "transferToImageBitmap", "transform", "transform-box", "transform-origin", "transform-style", "transformBox", "transformFeedbackVaryings", "transformOrigin", "transformPoint", "transformString", "transformStyle", "transformToDocument", "transformToFragment", "transition", "transition-delay", "transition-duration", "transition-property", "transition-timing-function", "transitionDelay", "transitionDuration", "transitionProperty", "transitionTimingFunction", "translate", "translateSelf", "translationX", "translationY", "transport", "traverseTo", "trim", "trimEnd", "trimLeft", "trimRight", "trimStart", "trueSpeed", "trunc", "truncate", "trustedTypes", "turn", "twist", "type", "typeDetail", "typeMismatch", "typeMustMatch", "types", "u2f", "ubound", "uint16", "uint32", "uint8", "uint8Clamped", "unclippedDepth", "unconfigure", "undefined", "underlineStyle", "underlineThickness", "unescape", "uneval", "unicode", "unicode-bidi", "unicodeBidi", "unicodeRange", "unicodeSets", "uniform1f", "uniform1fv", "uniform1i", "uniform1iv", "uniform1ui", "uniform1uiv", "uniform2f", "uniform2fv", "uniform2i", "uniform2iv", "uniform2ui", "uniform2uiv", "uniform3f", "uniform3fv", "uniform3i", "uniform3iv", "uniform3ui", "uniform3uiv", "uniform4f", "uniform4fv", "uniform4i", "uniform4iv", "uniform4ui", "uniform4uiv", "uniformBlockBinding", "uniformMatrix2fv", "uniformMatrix2x3fv", "uniformMatrix2x4fv", "uniformMatrix3fv", "uniformMatrix3x2fv", "uniformMatrix3x4fv", "uniformMatrix4fv", "uniformMatrix4x2fv", "uniformMatrix4x3fv", "union", "unique", "uniqueID", "uniqueNumber", "unit", "unitType", "units", "unloadEventEnd", "unloadEventStart", "unlock", "unmap", "unmount", "unobserve", "unpackColorSpace", "unpause", "unpauseAnimations", "unreadCount", "unregister", "unregisterContentHandler", "unregisterProtocolHandler", "unscopables", "unselectable", "unshift", "unsubscribe", "unsuspendRedraw", "unsuspendRedrawAll", "unwatch", "unwrapKey", "upDegrees", "upX", "upY", "upZ", "update", "updateAdInterestGroups", "updateCallbackDone", "updateCharacterBounds", "updateCommands", "updateControlBounds", "updateCurrentEntry", "updateIce", "updateInkTrailStartPoint", "updateInterval", "updatePlaybackRate", "updateRangeEnd", "updateRangeStart", "updateRenderState", "updateSelection", "updateSelectionBounds", "updateSettings", "updateText", "updateTiming", "updateViaCache", "updateWith", "updated", "updating", "upgrade", "upload", "uploadTotal", "uploaded", "upper", "upperBound", "upperOpen", "uri", "url", "urn", "urns", "usage", "usages", "usb", "usbVersionMajor", "usbVersionMinor", "usbVersionSubminor", "useCurrentView", "useMap", "useProgram", "usedSpace", "user-select", "userActivation", "userAgent", "userAgentData", "userChoice", "userHandle", "userHint", "userInitiated", "userLanguage", "userSelect", "userState", "userVisibleOnly", "username", "usernameFragment", "utterance", "uuid", "v8BreakIterator", "vAlign", "vLink", "valid", "validate", "validateProgram", "validationMessage", "validity", "value", "valueAsDate", "valueAsNumber", "valueAsString", "valueInSpecifiedUnits", "valueMissing", "valueOf", "valueText", "valueType", "values", "variable", "variant", "variationSettings", "vb", "vector-effect", "vectorEffect", "velocityAngular", "velocityExpansion", "velocityX", "velocityY", "vendor", "vendorId", "vendorSub", "verify", "version", "vertex", "vertexAttrib1f", "vertexAttrib1fv", "vertexAttrib2f", "vertexAttrib2fv", "vertexAttrib3f", "vertexAttrib3fv", "vertexAttrib4f", "vertexAttrib4fv", "vertexAttribDivisor", "vertexAttribDivisorANGLE", "vertexAttribI4i", "vertexAttribI4iv", "vertexAttribI4ui", "vertexAttribI4uiv", "vertexAttribIPointer", "vertexAttribPointer", "vertical", "vertical-align", "verticalAlign", "verticalOverflow", "vh", "vi", "vibrate", "vibrationActuator", "videoBitsPerSecond", "videoHeight", "videoTracks", "videoWidth", "view", "viewBox", "viewBoxString", "viewDimension", "viewFormats", "viewTarget", "viewTargetString", "viewport", "viewportAnchorX", "viewportAnchorY", "viewportElement", "views", "violatedDirective", "virtualKeyboard", "virtualKeyboardPolicy", "visibility", "visibilityState", "visible", "visibleRect", "visualViewport", "vlinkColor", "vmax", "vmin", "voice", "voiceURI", "volume", "vrml", "vspace", "vw", "w", "wait", "waitAsync", "waitSync", "waiting", "wake", "wakeLock", "wand", "warn", "wasClean", "wasDiscarded", "watch", "watchAvailability", "watchPosition", "webdriver", "webkitAddKey", "webkitAlignContent", "webkitAlignItems", "webkitAlignSelf", "webkitAnimation", "webkitAnimationDelay", "webkitAnimationDirection", "webkitAnimationDuration", "webkitAnimationFillMode", "webkitAnimationIterationCount", "webkitAnimationName", "webkitAnimationPlayState", "webkitAnimationTimingFunction", "webkitAppearance", "webkitAudioContext", "webkitAudioDecodedByteCount", "webkitAudioPannerNode", "webkitBackfaceVisibility", "webkitBackground", "webkitBackgroundAttachment", "webkitBackgroundClip", "webkitBackgroundColor", "webkitBackgroundImage", "webkitBackgroundOrigin", "webkitBackgroundPosition", "webkitBackgroundPositionX", "webkitBackgroundPositionY", "webkitBackgroundRepeat", "webkitBackgroundSize", "webkitBackingStorePixelRatio", "webkitBorderBottomLeftRadius", "webkitBorderBottomRightRadius", "webkitBorderImage", "webkitBorderImageOutset", "webkitBorderImageRepeat", "webkitBorderImageSlice", "webkitBorderImageSource", "webkitBorderImageWidth", "webkitBorderRadius", "webkitBorderTopLeftRadius", "webkitBorderTopRightRadius", "webkitBoxAlign", "webkitBoxDirection", "webkitBoxFlex", "webkitBoxOrdinalGroup", "webkitBoxOrient", "webkitBoxPack", "webkitBoxShadow", "webkitBoxSizing", "webkitCancelAnimationFrame", "webkitCancelFullScreen", "webkitCancelKeyRequest", "webkitCancelRequestAnimationFrame", "webkitClearResourceTimings", "webkitClipPath", "webkitClosedCaptionsVisible", "webkitConvertPointFromNodeToPage", "webkitConvertPointFromPageToNode", "webkitCreateShadowRoot", "webkitCurrentFullScreenElement", "webkitCurrentPlaybackTargetIsWireless", "webkitDecodedFrameCount", "webkitDirectionInvertedFromDevice", "webkitDisplayingFullscreen", "webkitDroppedFrameCount", "webkitEnterFullScreen", "webkitEnterFullscreen", "webkitEntries", "webkitExitFullScreen", "webkitExitFullscreen", "webkitExitPointerLock", "webkitFilter", "webkitFlex", "webkitFlexBasis", "webkitFlexDirection", "webkitFlexFlow", "webkitFlexGrow", "webkitFlexShrink", "webkitFlexWrap", "webkitFullScreenKeyboardInputAllowed", "webkitFullscreenElement", "webkitFullscreenEnabled", "webkitGenerateKeyRequest", "webkitGetAsEntry", "webkitGetDatabaseNames", "webkitGetEntries", "webkitGetEntriesByName", "webkitGetEntriesByType", "webkitGetFlowByName", "webkitGetGamepads", "webkitGetImageDataHD", "webkitGetNamedFlows", "webkitGetRegionFlowRanges", "webkitGetUserMedia", "webkitHasClosedCaptions", "webkitHidden", "webkitIDBCursor", "webkitIDBDatabase", "webkitIDBDatabaseError", "webkitIDBDatabaseException", "webkitIDBFactory", "webkitIDBIndex", "webkitIDBKeyRange", "webkitIDBObjectStore", "webkitIDBRequest", "webkitIDBTransaction", "webkitImageSmoothingEnabled", "webkitIndexedDB", "webkitInitMessageEvent", "webkitIsFullScreen", "webkitJustifyContent", "webkitKeys", "webkitLineClamp", "webkitLineDashOffset", "webkitLockOrientation", "webkitMask", "webkitMaskClip", "webkitMaskComposite", "webkitMaskImage", "webkitMaskOrigin", "webkitMaskPosition", "webkitMaskPositionX", "webkitMaskPositionY", "webkitMaskRepeat", "webkitMaskSize", "webkitMatchesSelector", "webkitMediaStream", "webkitNotifications", "webkitOfflineAudioContext", "webkitOrder", "webkitOrientation", "webkitPeerConnection00", "webkitPersistentStorage", "webkitPerspective", "webkitPerspectiveOrigin", "webkitPointerLockElement", "webkitPostMessage", "webkitPreservesPitch", "webkitPutImageDataHD", "webkitRTCPeerConnection", "webkitRegionOverset", "webkitRelativePath", "webkitRequestAnimationFrame", "webkitRequestFileSystem", "webkitRequestFullScreen", "webkitRequestFullscreen", "webkitRequestPointerLock", "webkitResolveLocalFileSystemURL", "webkitSetMediaKeys", "webkitSetResourceTimingBufferSize", "webkitShadowRoot", "webkitShowPlaybackTargetPicker", "webkitSlice", "webkitSpeechGrammar", "webkitSpeechGrammarList", "webkitSpeechRecognition", "webkitSpeechRecognitionError", "webkitSpeechRecognitionEvent", "webkitStorageInfo", "webkitSupportsFullscreen", "webkitTemporaryStorage", "webkitTextFillColor", "webkitTextSecurity", "webkitTextSizeAdjust", "webkitTextStroke", "webkitTextStrokeColor", "webkitTextStrokeWidth", "webkitTransform", "webkitTransformOrigin", "webkitTransformStyle", "webkitTransition", "webkitTransitionDelay", "webkitTransitionDuration", "webkitTransitionProperty", "webkitTransitionTimingFunction", "webkitURL", "webkitUnlockOrientation", "webkitUserSelect", "webkitVideoDecodedByteCount", "webkitVisibilityState", "webkitWirelessVideoPlaybackDisabled", "webkitdirectory", "webkitdropzone", "webstore", "weight", "wgslLanguageFeatures", "whatToShow", "wheelDelta", "wheelDeltaX", "wheelDeltaY", "whenDefined", "which", "white-space", "white-space-collapse", "whiteSpace", "whiteSpaceCollapse", "wholeText", "widows", "width", "will-change", "willChange", "willValidate", "window", "windowAttribution", "windowControlsOverlay", "with", "withCredentials", "withResolvers", "word-break", "word-spacing", "word-wrap", "wordBreak", "wordSpacing", "wordWrap", "workerStart", "worklet", "wow64", "wrap", "wrapKey", "writable", "writableAuxiliaries", "write", "writeBuffer", "writeMask", "writeText", "writeTexture", "writeTimestamp", "writeValue", "writeValueWithResponse", "writeValueWithoutResponse", "writeWithoutResponse", "writeln", "writing-mode", "writingMode", "writingSuggestions", "x", "x1", "x2", "xChannelSelector", "xmlEncoding", "xmlStandalone", "xmlVersion", "xmlbase", "xmllang", "xmlspace", "xor", "xr", "y", "y1", "y2", "yChannelSelector", "yandex", "z", "z-index", "zIndex", "zoom", "zoomAndPan", "zoomRectScreen"];
|
|
248064
248065
|
function find_builtins(e) {
|
|
248065
248066
|
domprops.forEach(i);
|
|
248066
248067
|
var t = {}, n3 = "object" == typeof global ? global : self;
|
|
@@ -248110,7 +248111,7 @@ function mangle_properties(e, t, n3 = find_annotated_props(e)) {
|
|
|
248110
248111
|
t.builtins || find_builtins(r);
|
|
248111
248112
|
var a, s = -1;
|
|
248112
248113
|
a = t.cache ? t.cache.props : /* @__PURE__ */ new Map();
|
|
248113
|
-
var u,
|
|
248114
|
+
var u, c = t.only_annotated, l = t.regex && new RegExp(t.regex), _ = false !== t.debug;
|
|
248114
248115
|
_ && (u = true === t.debug ? "" : t.debug);
|
|
248115
248116
|
var f = /* @__PURE__ */ new Set(), p = /* @__PURE__ */ new Set();
|
|
248116
248117
|
a.forEach((e2) => p.add(e2));
|
|
@@ -248139,7 +248140,7 @@ function mangle_properties(e, t, n3 = find_annotated_props(e)) {
|
|
|
248139
248140
|
return !p.has(e2) && !r.has(e2) && (t.only_cache ? a.has(e2) : !/^-?[0-9]+(\.[0-9]+)?(e[+-][0-9]+)?$/.test(e2));
|
|
248140
248141
|
}
|
|
248141
248142
|
function S(e2) {
|
|
248142
|
-
return !(
|
|
248143
|
+
return !(c && !n3.has(e2)) && (l && !l.test(e2) ? n3.has(e2) : !r.has(e2) && (a.has(e2) || f.has(e2)));
|
|
248143
248144
|
}
|
|
248144
248145
|
function h(e2) {
|
|
248145
248146
|
m(e2) && f.add(e2), S(e2) || p.add(e2);
|
|
@@ -248228,30 +248229,30 @@ function* minify_sync_or_async(e, t, n3) {
|
|
|
248228
248229
|
}
|
|
248229
248230
|
i && "strict" !== t.mangle.properties.keep_quoted && reserve_quoted_keys(o, i), t.mangle && t.mangle.properties && (r = find_annotated_props(o)), t.wrap && (o = o.wrap_commonjs(t.wrap)), t.enclose && (o = o.wrap_enclose(t.enclose)), a && (a.rename = Date.now()), a && (a.compress = Date.now()), t.compress && (o = new Compressor(t.compress, { mangle_options: t.mangle }).compress(o)), a && (a.scope = Date.now()), t.mangle && o.figure_out_scope(t.mangle), a && (a.mangle = Date.now()), t.mangle && (o.compute_char_frequency(t.mangle), o.mangle_names(t.mangle), o = mangle_private_properties(o, t.mangle)), a && (a.properties = Date.now()), t.mangle && t.mangle.properties && (o = mangle_properties(o, t.mangle.properties, r)), a && (a.format = Date.now());
|
|
248230
248231
|
var u = {};
|
|
248231
|
-
let
|
|
248232
|
+
let c;
|
|
248232
248233
|
if (t.format.ast && (u.ast = o), t.format.spidermonkey && (u.ast = o.to_mozilla_ast()), !HOP(t.format, "code") || t.format.code) {
|
|
248233
|
-
if (
|
|
248234
|
+
if (c = { ...t.format }, c.ast || (c._destroy_ast = true, walk2(o, (e2) => {
|
|
248234
248235
|
e2 instanceof AST_Scope && (e2.variables = void 0, e2.enclosed = void 0, e2.parent_scope = void 0), e2.block_scope && (e2.block_scope.variables = void 0, e2.block_scope.enclosed = void 0, e2.parent_scope = void 0);
|
|
248235
248236
|
})), t.sourceMap) {
|
|
248236
248237
|
if (t.sourceMap.includeSources && e instanceof AST_Toplevel)
|
|
248237
248238
|
throw new Error("original source content unavailable");
|
|
248238
|
-
|
|
248239
|
+
c.source_map = yield* SourceMap4({ file: t.sourceMap.filename, orig: t.sourceMap.content, root: t.sourceMap.root, files: t.sourceMap.includeSources ? e : null });
|
|
248239
248240
|
}
|
|
248240
|
-
delete
|
|
248241
|
-
var
|
|
248242
|
-
if (o.print(
|
|
248241
|
+
delete c.ast, delete c.code, delete c.spidermonkey;
|
|
248242
|
+
var l = OutputStream(c);
|
|
248243
|
+
if (o.print(l), u.code = l.get(), t.sourceMap)
|
|
248243
248244
|
if (Object.defineProperty(u, "map", { configurable: true, enumerable: true, get() {
|
|
248244
|
-
const e2 =
|
|
248245
|
+
const e2 = c.source_map.getEncoded();
|
|
248245
248246
|
return u.map = t.sourceMap.asObject ? e2 : JSON.stringify(e2);
|
|
248246
248247
|
}, set(e2) {
|
|
248247
248248
|
Object.defineProperty(u, "map", { value: e2, writable: true });
|
|
248248
|
-
} }), u.decoded_map =
|
|
248249
|
+
} }), u.decoded_map = c.source_map.getDecoded(), "inline" == t.sourceMap.url) {
|
|
248249
248250
|
var _ = "object" == typeof u.map ? JSON.stringify(u.map) : u.map;
|
|
248250
248251
|
u.code += "\n//# sourceMappingURL=data:application/json;charset=utf-8;base64," + to_base64(_);
|
|
248251
248252
|
} else
|
|
248252
248253
|
t.sourceMap.url && (u.code += "\n//# sourceMappingURL=" + t.sourceMap.url);
|
|
248253
248254
|
}
|
|
248254
|
-
return t.nameCache && t.mangle && (t.mangle.cache && (t.nameCache.vars = cache_to_json(t.mangle.cache)), t.mangle.properties && t.mangle.properties.cache && (t.nameCache.props = cache_to_json(t.mangle.properties.cache))),
|
|
248255
|
+
return t.nameCache && t.mangle && (t.mangle.cache && (t.nameCache.vars = cache_to_json(t.mangle.cache)), t.mangle.properties && t.mangle.properties.cache && (t.nameCache.props = cache_to_json(t.mangle.properties.cache))), c && c.source_map && c.source_map.destroy(), a && (a.end = Date.now(), u.timings = { parse: 1e-3 * (a.rename - a.parse), rename: 1e-3 * (a.compress - a.rename), compress: 1e-3 * (a.scope - a.compress), scope: 1e-3 * (a.mangle - a.scope), mangle: 1e-3 * (a.properties - a.mangle), properties: 1e-3 * (a.format - a.properties), format: 1e-3 * (a.end - a.format), total: 1e-3 * (a.end - a.start) }), u;
|
|
248255
248256
|
}
|
|
248256
248257
|
async function minify(e, t, n3) {
|
|
248257
248258
|
const i = minify_sync_or_async(e, t, n3);
|
|
@@ -254279,15 +254280,17 @@ var getDocsStyles = (cmpMeta) => {
|
|
|
254279
254280
|
if (!cmpMeta.styleDocs) {
|
|
254280
254281
|
return [];
|
|
254281
254282
|
}
|
|
254282
|
-
return sortBy(
|
|
254283
|
-
|
|
254284
|
-
|
|
254285
|
-
|
|
254286
|
-
|
|
254287
|
-
|
|
254288
|
-
|
|
254289
|
-
|
|
254290
|
-
|
|
254283
|
+
return sortBy(
|
|
254284
|
+
cmpMeta.styleDocs,
|
|
254285
|
+
(compilerStyleDoc) => `${compilerStyleDoc.name.toLowerCase()},${compilerStyleDoc.mode.toLowerCase()}}`
|
|
254286
|
+
).map((compilerStyleDoc) => {
|
|
254287
|
+
return {
|
|
254288
|
+
name: compilerStyleDoc.name,
|
|
254289
|
+
annotation: compilerStyleDoc.annotation || "",
|
|
254290
|
+
docs: compilerStyleDoc.docs || "",
|
|
254291
|
+
mode: compilerStyleDoc.mode && compilerStyleDoc.mode !== DEFAULT_STYLE_MODE ? compilerStyleDoc.mode : void 0
|
|
254292
|
+
};
|
|
254293
|
+
});
|
|
254291
254294
|
};
|
|
254292
254295
|
var getDocsListeners = (listeners) => {
|
|
254293
254296
|
return listeners.map((listener) => ({
|
|
@@ -262999,7 +263002,7 @@ var transformCssToEsmModule = (input) => {
|
|
|
262999
263002
|
styleDocs: []
|
|
263000
263003
|
};
|
|
263001
263004
|
if (input.docs) {
|
|
263002
|
-
parseStyleDocs(results.styleDocs, input.input);
|
|
263005
|
+
parseStyleDocs(results.styleDocs, input.input, input.mode);
|
|
263003
263006
|
}
|
|
263004
263007
|
try {
|
|
263005
263008
|
const varNames = /* @__PURE__ */ new Set([results.defaultVarName]);
|