@applitools/eyes-browser 1.0.3 → 1.0.5
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/CHANGELOG.md +90 -0
- package/dist/index.js +489 -431
- package/package.json +2 -2
- package/types/Eyes.d.ts +9 -5
- package/types/enums/AndroidDeviceName.d.ts +22 -15
- package/types/enums/DeviceName.d.ts +56 -50
- package/types/enums/IosDeviceName.d.ts +39 -34
- package/types/input/CheckSettings.d.ts +1 -1
package/dist/index.js
CHANGED
|
@@ -20299,6 +20299,7 @@ var require_requests = __commonJS({
|
|
|
20299
20299
|
return [settings.batchId, settings.eyesServerUrl, settings.apiKey, settings.proxy];
|
|
20300
20300
|
});
|
|
20301
20301
|
const core = {
|
|
20302
|
+
concurrency: void 0,
|
|
20302
20303
|
getAccountInfo: getAccountInfoWithCache,
|
|
20303
20304
|
getBatchBranches: getBatchBranchesWithCache,
|
|
20304
20305
|
openEyes,
|
|
@@ -20359,7 +20360,9 @@ var require_requests = __commonJS({
|
|
|
20359
20360
|
ignoreBaseline: settings.ignoreBaseline,
|
|
20360
20361
|
saveDiffs: settings.saveDiffs,
|
|
20361
20362
|
timeout: settings.abortIdleTestTimeout,
|
|
20362
|
-
isComponentAgent: settings.isComponentTest
|
|
20363
|
+
isComponentAgent: settings.isComponentTest,
|
|
20364
|
+
fallbackExpectedOutput: settings.fallbackBaselineId
|
|
20365
|
+
// mapping to the right field is the api
|
|
20363
20366
|
}
|
|
20364
20367
|
},
|
|
20365
20368
|
expected: [200, 201],
|
|
@@ -20481,10 +20484,15 @@ var require_requests = __commonJS({
|
|
|
20481
20484
|
logger
|
|
20482
20485
|
});
|
|
20483
20486
|
const result = await response.json().then((results) => {
|
|
20484
|
-
return
|
|
20485
|
-
var _a;
|
|
20486
|
-
|
|
20487
|
-
|
|
20487
|
+
return settings.locatorNames.reduce((regions, locatorName) => {
|
|
20488
|
+
var _a, _b;
|
|
20489
|
+
regions[locatorName] = (_b = (_a = results[locatorName]) !== null && _a !== void 0 ? _a : []) === null || _b === void 0 ? void 0 : _b.map((region) => ({ x: region.left, y: region.top, width: region.width, height: region.height })).sort((region1, region2) => {
|
|
20490
|
+
if (region1.y !== region2.y)
|
|
20491
|
+
return region1.y > region2.y ? 1 : -1;
|
|
20492
|
+
else
|
|
20493
|
+
return region1.x > region2.x ? 1 : -1;
|
|
20494
|
+
});
|
|
20495
|
+
return regions;
|
|
20488
20496
|
}, {});
|
|
20489
20497
|
});
|
|
20490
20498
|
logger.log('Request "locate" finished successfully with body', result);
|
|
@@ -27815,9 +27823,14 @@ var require_open_eyes = __commonJS({
|
|
|
27815
27823
|
return new Promise((resolve, reject) => {
|
|
27816
27824
|
throttle(() => {
|
|
27817
27825
|
return new Promise(async (done) => {
|
|
27826
|
+
var _a2;
|
|
27818
27827
|
try {
|
|
27819
27828
|
const controller = new abort_controller_1.AbortController();
|
|
27820
27829
|
const eyesRequests = await requests.openEyes({ settings, logger });
|
|
27830
|
+
eyesRequests.test.ufgServer = {
|
|
27831
|
+
...eyesRequests.test.ufgServer,
|
|
27832
|
+
ufgServerUrl: (_a2 = settings.ufgServerUrl) !== null && _a2 !== void 0 ? _a2 : eyesRequests.test.ufgServer.ufgServerUrl
|
|
27833
|
+
};
|
|
27821
27834
|
resolve(utils34.general.extend(eyesRequests, {
|
|
27822
27835
|
check: (0, check_1.makeCheck)({ requests: eyesRequests, signal: controller.signal, logger }),
|
|
27823
27836
|
checkAndClose: (0, check_and_close_1.makeCheckAndClose)({ requests: eyesRequests, done, signal: controller.signal, logger }),
|
|
@@ -28319,6 +28332,9 @@ var require_core = __commonJS({
|
|
|
28319
28332
|
logger.log(`Core is initialized in directory ${cwd} for agent ${agentId}`);
|
|
28320
28333
|
const requests = (0, requests_1.makeCoreRequestsWithCache)({ logger });
|
|
28321
28334
|
return {
|
|
28335
|
+
get concurrency() {
|
|
28336
|
+
return concurrency;
|
|
28337
|
+
},
|
|
28322
28338
|
openEyes: (0, open_eyes_1.makeOpenEyes)({ requests, agentId, concurrency, cwd, logger }),
|
|
28323
28339
|
openFunctionalSession: (0, open_functional_session_1.makeOpenFunctionalSession)({ requests, agentId, concurrency, cwd, logger }),
|
|
28324
28340
|
locate: (0, locate_1.makeLocate)({ requests, agentId, logger }),
|
|
@@ -32846,7 +32862,7 @@ var require_requests2 = __commonJS({
|
|
|
32846
32862
|
const { localEnvironment, renderEnvironments, environmentSettings } = settings2.environments.reduce((result, environment) => {
|
|
32847
32863
|
var _a;
|
|
32848
32864
|
if (!utils34.types.has(environment, "iosDeviceInfo") && !utils34.types.has(environment, "androidDeviceInfo")) {
|
|
32849
|
-
result.localEnvironment =
|
|
32865
|
+
result.localEnvironment = environment;
|
|
32850
32866
|
} else {
|
|
32851
32867
|
const deviceInfo = utils34.types.has(environment, "iosDeviceInfo") ? environment.iosDeviceInfo : environment.androidDeviceInfo;
|
|
32852
32868
|
const orientation = deviceInfo.screenOrientation === "landscape" ? "landscapeLeft" : (_a = deviceInfo.screenOrientation) !== null && _a !== void 0 ? _a : "portrait";
|
|
@@ -34730,10 +34746,13 @@ var require_captureDomPollCjs = __commonJS({
|
|
|
34730
34746
|
if (t5) {
|
|
34731
34747
|
if (t5.value) {
|
|
34732
34748
|
if (e5) {
|
|
34733
|
-
if (!t5.chunks)
|
|
34734
|
-
|
|
34735
|
-
|
|
34736
|
-
|
|
34749
|
+
if (!t5.chunks)
|
|
34750
|
+
try {
|
|
34751
|
+
const n4 = JSON.stringify(t5.value);
|
|
34752
|
+
t5.chunks = o(n4, e5), t5.chunks.length > 0 && (t5.from = 0, t5.value = n4);
|
|
34753
|
+
} catch (t6) {
|
|
34754
|
+
return { status: c, error: t6.message };
|
|
34755
|
+
}
|
|
34737
34756
|
if (t5.from >= 0)
|
|
34738
34757
|
return { status: a, value: t5.value.substring(t5.from, t5.from = t5.chunks.shift()), done: !t5.from };
|
|
34739
34758
|
}
|
|
@@ -35013,7 +35032,7 @@ ${l2}`}`, { bundledCss: i2, unfetchedResources: u2 };
|
|
|
35013
35032
|
return i4 && (E3.shadowRoot = i4), E3;
|
|
35014
35033
|
}
|
|
35015
35034
|
}(e4);
|
|
35016
|
-
i2(c2.doCaptureDoc), u2(c2.waitForImages), await Promise.all(l2), i2(c2.waitForImages), T2.version = "1.3.0", T2.scriptVersion = "11.2.
|
|
35035
|
+
i2(c2.doCaptureDoc), u2(c2.waitForImages), await Promise.all(l2), i2(c2.waitForImages), T2.version = "1.3.0", T2.scriptVersion = "11.2.5";
|
|
35017
35036
|
const N2 = f2.length ? `${f2.join("\n")}
|
|
35018
35037
|
` : "", b2 = d2.size ? `${Array.from(d2).join("\n")}
|
|
35019
35038
|
` : "", S2 = JSON.stringify({ separator: p2, cssStartToken: h2, cssEndToken: h2, iframeStartToken: `"${m2}`, iframeEndToken: `${m2}"` });
|
|
@@ -35079,40 +35098,43 @@ var require_pollResultCjs = __commonJS({
|
|
|
35079
35098
|
return n3 >= 55296 && n3 < 56320 ? 1024 * (n3 - 55296) + (t5.charCodeAt(e4 + 1) - 56320) + 65536 : 56320 <= n3 && n3 <= 57343 ? -1 : n3;
|
|
35080
35099
|
}
|
|
35081
35100
|
var e3 = function(e4, n3) {
|
|
35082
|
-
const
|
|
35083
|
-
let
|
|
35101
|
+
const r2 = [];
|
|
35102
|
+
let o2 = 0;
|
|
35084
35103
|
for (let u2 = 0; u2 < e4.length; ++u2) {
|
|
35085
35104
|
const c2 = t4(e4, u2);
|
|
35086
35105
|
let a2 = 0;
|
|
35087
|
-
c2 > 0 && (a2 = c2 < 128 ? 1 : c2 < 2048 ? 2 : c2 < 65536 ? 3 : c2 < 2097152 ? 4 : c2 < 67108864 ? 5 : 6),
|
|
35106
|
+
c2 > 0 && (a2 = c2 < 128 ? 1 : c2 < 2048 ? 2 : c2 < 65536 ? 3 : c2 < 2097152 ? 4 : c2 < 67108864 ? 5 : 6), o2 + a2 > n3 ? (r2.push(u2), o2 = a2) : o2 += a2;
|
|
35088
35107
|
}
|
|
35089
|
-
return
|
|
35108
|
+
return r2;
|
|
35090
35109
|
};
|
|
35091
|
-
const n2 = e3,
|
|
35110
|
+
const n2 = e3, r = "WIP", o = "SUCCESS", u = "SUCCESS_CHUNKED", c = "ERROR";
|
|
35092
35111
|
var a = function(t5, e4, a2 = {}) {
|
|
35093
35112
|
const i2 = function(t6, { chunkByteLength: e5 = 0 } = {}) {
|
|
35094
35113
|
if (t6) {
|
|
35095
35114
|
if (t6.value) {
|
|
35096
35115
|
if (e5) {
|
|
35097
|
-
if (!t6.chunks)
|
|
35098
|
-
|
|
35099
|
-
|
|
35100
|
-
|
|
35116
|
+
if (!t6.chunks)
|
|
35117
|
+
try {
|
|
35118
|
+
const r2 = JSON.stringify(t6.value);
|
|
35119
|
+
t6.chunks = n2(r2, e5), t6.chunks.length > 0 && (t6.from = 0, t6.value = r2);
|
|
35120
|
+
} catch (t7) {
|
|
35121
|
+
return { status: c, error: t7.message };
|
|
35122
|
+
}
|
|
35101
35123
|
if (t6.from >= 0)
|
|
35102
35124
|
return { status: u, value: t6.value.substring(t6.from, t6.from = t6.chunks.shift()), done: !t6.from };
|
|
35103
35125
|
}
|
|
35104
|
-
return { status:
|
|
35126
|
+
return { status: o, value: t6.value };
|
|
35105
35127
|
}
|
|
35106
|
-
return t6.error ? { status: c, error: t6.error } : { status:
|
|
35128
|
+
return t6.error ? { status: c, error: t6.error } : { status: r };
|
|
35107
35129
|
}
|
|
35108
35130
|
return { status: c, error: "unexpected poll request received - cannot find state of current operation" };
|
|
35109
35131
|
}((t5 = t5 || {})[e4], a2);
|
|
35110
|
-
return (i2.status ===
|
|
35132
|
+
return (i2.status === o || i2.status === c || i2.status === u && i2.done) && (t5[e4] = null), i2;
|
|
35111
35133
|
};
|
|
35112
35134
|
const i = a;
|
|
35113
35135
|
var l = { chunkify: e3, pollify: function(t5, e4, n3) {
|
|
35114
|
-
return (
|
|
35115
|
-
return e4[n3] || (e4[n3] = {}, t5.apply(null, arguments).then((t6) => e4[n3].value = t6).catch((t6) => e4[n3].error = t6.message)), i(e4, n3,
|
|
35136
|
+
return (r2) => function() {
|
|
35137
|
+
return e4[n3] || (e4[n3] = {}, t5.apply(null, arguments).then((t6) => e4[n3].value = t6).catch((t6) => e4[n3].error = t6.message)), i(e4, n3, r2);
|
|
35116
35138
|
};
|
|
35117
35139
|
}, poll: a, absolutizeUrl: function(t5, e4) {
|
|
35118
35140
|
if (function(t6) {
|
|
@@ -35130,8 +35152,8 @@ var require_pollResultCjs = __commonJS({
|
|
|
35130
35152
|
n3 = true;
|
|
35131
35153
|
}
|
|
35132
35154
|
try {
|
|
35133
|
-
const
|
|
35134
|
-
return n3 ?
|
|
35155
|
+
const r2 = new URL(t5, e4).href;
|
|
35156
|
+
return n3 ? r2 : decodeURI(r2);
|
|
35135
35157
|
} catch (e5) {
|
|
35136
35158
|
return n3 ? t5 : decodeURI(t5);
|
|
35137
35159
|
}
|
|
@@ -35157,9 +35179,9 @@ var require_pollResultCjs = __commonJS({
|
|
|
35157
35179
|
try {
|
|
35158
35180
|
let n2 = document.head.querySelector("[data-applitools-sandbox]");
|
|
35159
35181
|
n2 || (n2 = document.createElement("iframe"), n2.setAttribute("data-applitools-sandbox", ""), n2.setAttribute("data-applitools-skip", ""), document.head.appendChild(n2));
|
|
35160
|
-
const
|
|
35161
|
-
|
|
35162
|
-
const u = n2.contentWindow[`ctor-${
|
|
35182
|
+
const r = window.crypto.getRandomValues(new Uint32Array(1))[0], o = n2.contentDocument.createElement("script");
|
|
35183
|
+
o.textContent = `window['ctor-${r}'] = ${t2.toString()};`, n2.contentDocument.head.appendChild(o);
|
|
35184
|
+
const u = n2.contentWindow[`ctor-${r}`];
|
|
35163
35185
|
if ("function" != typeof u)
|
|
35164
35186
|
throw new Error("Sandbox failed to extract function");
|
|
35165
35187
|
return e2 = false, u(document).apply(null, arguments);
|
|
@@ -35523,11 +35545,13 @@ var require_get_base_eyes = __commonJS({
|
|
|
35523
35545
|
});
|
|
35524
35546
|
return getBaseEyesWithCache;
|
|
35525
35547
|
async function getBaseEyes({ settings, logger = mainLogger }) {
|
|
35548
|
+
var _a;
|
|
35526
35549
|
logger = logger.extend(mainLogger);
|
|
35527
35550
|
logger.log(`Command "getBaseEyes" is called with settings`, settings);
|
|
35528
35551
|
return eyes.core.base.openEyes({
|
|
35529
35552
|
settings: {
|
|
35530
35553
|
...defaultSettings,
|
|
35554
|
+
fallbackBaselineId: (_a = settings.environment) === null || _a === void 0 ? void 0 : _a.fallbackBaselineId,
|
|
35531
35555
|
environment: { ...defaultSettings.environment, ...settings.environment }
|
|
35532
35556
|
},
|
|
35533
35557
|
logger
|
|
@@ -36402,36 +36426,39 @@ var require_extract_default_environments = __commonJS({
|
|
|
36402
36426
|
exports.extractDefaultEnvironments = void 0;
|
|
36403
36427
|
var utils34 = __importStar(require_browser3());
|
|
36404
36428
|
async function extractDefaultEnvironments({ driver, settings }) {
|
|
36405
|
-
var _a, _b
|
|
36406
|
-
const environment = {};
|
|
36429
|
+
var _a, _b;
|
|
36430
|
+
const environment = { ...settings === null || settings === void 0 ? void 0 : settings.environment };
|
|
36407
36431
|
if (!driver)
|
|
36408
|
-
return [
|
|
36432
|
+
return [environment];
|
|
36409
36433
|
const currentContext = driver.currentContext;
|
|
36410
36434
|
try {
|
|
36411
36435
|
const driverEnvironment = await driver.getEnvironment();
|
|
36412
36436
|
const viewport = await driver.getViewport();
|
|
36413
36437
|
const size = await driver.getViewportSize();
|
|
36414
36438
|
environment.viewportSize = utils34.geometry.scale(size, viewport.viewportScale);
|
|
36439
|
+
environment.environmentId = utils34.general.guid();
|
|
36415
36440
|
if (driverEnvironment.isEC)
|
|
36416
|
-
environment.ecSessionId = (
|
|
36441
|
+
environment.ecSessionId = (_a = await driver.getSessionId()) !== null && _a !== void 0 ? _a : void 0;
|
|
36417
36442
|
if (driverEnvironment.isWeb)
|
|
36418
36443
|
environment.userAgent = await driver.getUserAgentLegacy();
|
|
36419
|
-
if (driverEnvironment.deviceName)
|
|
36444
|
+
if (!environment.deviceName && driverEnvironment.deviceName)
|
|
36420
36445
|
environment.deviceName = driverEnvironment.deviceName;
|
|
36421
|
-
if (
|
|
36422
|
-
|
|
36423
|
-
|
|
36424
|
-
|
|
36425
|
-
|
|
36426
|
-
if (
|
|
36427
|
-
environment.os
|
|
36428
|
-
|
|
36429
|
-
|
|
36430
|
-
environment.os
|
|
36446
|
+
if (!environment.os) {
|
|
36447
|
+
if (driverEnvironment.isNative && driverEnvironment.platformName) {
|
|
36448
|
+
environment.os = driverEnvironment.platformName;
|
|
36449
|
+
if (driverEnvironment.platformVersion)
|
|
36450
|
+
environment.os += ` ${driverEnvironment.platformVersion}`;
|
|
36451
|
+
if (!(settings === null || settings === void 0 ? void 0 : settings.keepPlatformNameAsIs)) {
|
|
36452
|
+
if (/^android/i.test(environment.os)) {
|
|
36453
|
+
environment.os = `Android${environment.os.slice(7)}`;
|
|
36454
|
+
}
|
|
36455
|
+
if (/^ios/i.test(environment.os)) {
|
|
36456
|
+
environment.os = `iOS${environment.os.slice(3)}`;
|
|
36457
|
+
}
|
|
36431
36458
|
}
|
|
36459
|
+
} else if (driverEnvironment.isReliable && driverEnvironment.isChromium && (driverEnvironment.isWindows && Number.parseInt(driverEnvironment.browserVersion) >= 107 || driverEnvironment.isMac && Number.parseInt(driverEnvironment.browserVersion) >= 90)) {
|
|
36460
|
+
environment.os = `${driverEnvironment.platformName} ${(_b = driverEnvironment.platformVersion) !== null && _b !== void 0 ? _b : ""}`.trim();
|
|
36432
36461
|
}
|
|
36433
|
-
} else if (driverEnvironment.isReliable && driverEnvironment.isChromium && (driverEnvironment.isWindows && Number.parseInt(driverEnvironment.browserVersion) >= 107 || driverEnvironment.isMac && Number.parseInt(driverEnvironment.browserVersion) >= 90)) {
|
|
36434
|
-
environment.os = `${driverEnvironment.platformName} ${(_c = driverEnvironment.platformVersion) !== null && _c !== void 0 ? _c : ""}`.trim();
|
|
36435
36462
|
}
|
|
36436
36463
|
return [environment];
|
|
36437
36464
|
} finally {
|
|
@@ -36513,7 +36540,7 @@ var require_open_eyes2 = __commonJS({
|
|
|
36513
36540
|
const controller = new abort_controller_1.AbortController();
|
|
36514
36541
|
const account = await core.getAccountInfo({ settings, logger });
|
|
36515
36542
|
return utils34.general.extend({}, (eyes) => {
|
|
36516
|
-
var _a2;
|
|
36543
|
+
var _a2, _b2, _c2;
|
|
36517
36544
|
return {
|
|
36518
36545
|
type: "classic",
|
|
36519
36546
|
core,
|
|
@@ -36522,7 +36549,7 @@ var require_open_eyes2 = __commonJS({
|
|
|
36522
36549
|
batchId: (_a2 = settings.batch) === null || _a2 === void 0 ? void 0 : _a2.id,
|
|
36523
36550
|
keepBatchOpen: settings.keepBatchOpen,
|
|
36524
36551
|
eyesServer: account.eyesServer,
|
|
36525
|
-
ufgServer: account.ufgServer,
|
|
36552
|
+
ufgServer: { ...account.ufgServer, ufgServerUrl: (_b2 = settings.ufgServerUrl) !== null && _b2 !== void 0 ? _b2 : (_c2 = account.ufgServer) === null || _c2 === void 0 ? void 0 : _c2.ufgServerUrl },
|
|
36526
36553
|
uploadUrl: account.uploadUrl,
|
|
36527
36554
|
stitchingServiceUrl: account.stitchingServiceUrl,
|
|
36528
36555
|
supportedEnvironmentsUrl: account.supportedEnvironmentsUrl,
|
|
@@ -36595,10 +36622,10 @@ var require_core2 = __commonJS({
|
|
|
36595
36622
|
var get_nml_client_1 = require_get_nml_client();
|
|
36596
36623
|
var open_eyes_1 = require_open_eyes2();
|
|
36597
36624
|
var utils34 = __importStar(require_browser3());
|
|
36598
|
-
function makeCore({ spec, clients, base, concurrency, agentId = "core-classic", cwd = process.cwd(), logger: defaultLogger }) {
|
|
36625
|
+
function makeCore({ spec, clients, base: defaultBase, concurrency, agentId = "core-classic", cwd = process.cwd(), logger: defaultLogger }) {
|
|
36599
36626
|
const logger = (0, logger_1.makeLogger)({ logger: defaultLogger, format: { label: "core-classic" } });
|
|
36600
|
-
logger.log(`Core classic is initialized ${
|
|
36601
|
-
base !== null &&
|
|
36627
|
+
logger.log(`Core classic is initialized ${defaultBase ? "with" : "without"} custom base core`);
|
|
36628
|
+
const base = defaultBase !== null && defaultBase !== void 0 ? defaultBase : (0, core_base_1.makeCore)({ agentId, concurrency, cwd, logger });
|
|
36602
36629
|
return utils34.general.extend(base, (core) => {
|
|
36603
36630
|
return {
|
|
36604
36631
|
type: "classic",
|
|
@@ -76316,6 +76343,7 @@ var require_get_base_eyes2 = __commonJS({
|
|
|
76316
76343
|
});
|
|
76317
76344
|
return getBaseEyesWithCache;
|
|
76318
76345
|
async function getBaseEyes({ settings, logger = mainLogger }) {
|
|
76346
|
+
var _a;
|
|
76319
76347
|
logger = logger.extend(mainLogger);
|
|
76320
76348
|
logger.log(`Command "getBaseEyes" is called with settings`, settings);
|
|
76321
76349
|
const ufgClient = await eyes.core.getUFGClient({
|
|
@@ -76333,6 +76361,7 @@ var require_get_base_eyes2 = __commonJS({
|
|
|
76333
76361
|
return eyes.core.base.openEyes({
|
|
76334
76362
|
settings: {
|
|
76335
76363
|
...defaultSettings,
|
|
76364
|
+
fallbackBaselineId: (_a = settings.environment) === null || _a === void 0 ? void 0 : _a.fallbackBaselineId,
|
|
76336
76365
|
environment: { ...defaultSettings.environment, ...environment, properties: settings.environment.properties }
|
|
76337
76366
|
},
|
|
76338
76367
|
logger
|
|
@@ -76393,10 +76422,13 @@ var require_processPagePollCjs = __commonJS({
|
|
|
76393
76422
|
if (e5) {
|
|
76394
76423
|
if (e5.value) {
|
|
76395
76424
|
if (t5) {
|
|
76396
|
-
if (!e5.chunks)
|
|
76397
|
-
|
|
76398
|
-
|
|
76399
|
-
|
|
76425
|
+
if (!e5.chunks)
|
|
76426
|
+
try {
|
|
76427
|
+
const n4 = JSON.stringify(e5.value);
|
|
76428
|
+
e5.chunks = r(n4, t5), e5.chunks.length > 0 && (e5.from = 0, e5.value = n4);
|
|
76429
|
+
} catch (e6) {
|
|
76430
|
+
return { status: s, error: e6.message };
|
|
76431
|
+
}
|
|
76400
76432
|
if (e5.from >= 0)
|
|
76401
76433
|
return { status: a, value: e5.value.substring(e5.from, e5.from = e5.chunks.shift()), done: !e5.from };
|
|
76402
76434
|
}
|
|
@@ -76509,28 +76541,28 @@ var require_processPagePollCjs = __commonJS({
|
|
|
76509
76541
|
return 43 === e4 || 45 === e4 ? b(t4) ? 2 : 46 === t4 && b(n3) ? 3 : 0 : 46 === e4 ? b(t4) ? 2 : 0 : b(e4) ? 1 : 0;
|
|
76510
76542
|
}, g.isUppercaseLetter = y, g.isValidEscape = A, g.isWhiteSpace = C;
|
|
76511
76543
|
var L = {};
|
|
76512
|
-
const
|
|
76513
|
-
function
|
|
76544
|
+
const E = g;
|
|
76545
|
+
function T(e4, t4) {
|
|
76514
76546
|
return t4 < e4.length ? e4.charCodeAt(t4) : 0;
|
|
76515
76547
|
}
|
|
76516
76548
|
function N(e4, t4, n3) {
|
|
76517
|
-
return 13 === n3 && 10 ===
|
|
76549
|
+
return 13 === n3 && 10 === T(e4, t4 + 1) ? 2 : 1;
|
|
76518
76550
|
}
|
|
76519
76551
|
function D(e4, t4, n3) {
|
|
76520
76552
|
let r2 = e4.charCodeAt(t4);
|
|
76521
|
-
return
|
|
76553
|
+
return E.isUppercaseLetter(r2) && (r2 |= 32), r2 === n3;
|
|
76522
76554
|
}
|
|
76523
76555
|
function P(e4, t4) {
|
|
76524
|
-
for (; t4 < e4.length &&
|
|
76556
|
+
for (; t4 < e4.length && E.isDigit(e4.charCodeAt(t4)); t4++)
|
|
76525
76557
|
;
|
|
76526
76558
|
return t4;
|
|
76527
76559
|
}
|
|
76528
|
-
function
|
|
76529
|
-
if (t4 += 2,
|
|
76530
|
-
for (const n4 = Math.min(e4.length, t4 + 5); t4 < n4 &&
|
|
76560
|
+
function R(e4, t4) {
|
|
76561
|
+
if (t4 += 2, E.isHexDigit(T(e4, t4 - 1))) {
|
|
76562
|
+
for (const n4 = Math.min(e4.length, t4 + 5); t4 < n4 && E.isHexDigit(T(e4, t4)); t4++)
|
|
76531
76563
|
;
|
|
76532
|
-
const n3 =
|
|
76533
|
-
|
|
76564
|
+
const n3 = T(e4, t4);
|
|
76565
|
+
E.isWhiteSpace(n3) && (t4 += N(e4, t4, n3));
|
|
76534
76566
|
}
|
|
76535
76567
|
return t4;
|
|
76536
76568
|
}
|
|
@@ -76542,7 +76574,7 @@ var require_processPagePollCjs = __commonJS({
|
|
|
76542
76574
|
for (let o2 = t4; o2 < n3; o2++) {
|
|
76543
76575
|
const n4 = r2.charCodeAt(o2 - t4);
|
|
76544
76576
|
let i2 = e4.charCodeAt(o2);
|
|
76545
|
-
if (
|
|
76577
|
+
if (E.isUppercaseLetter(i2) && (i2 |= 32), i2 !== n4)
|
|
76546
76578
|
return false;
|
|
76547
76579
|
}
|
|
76548
76580
|
return true;
|
|
@@ -76553,41 +76585,41 @@ var require_processPagePollCjs = __commonJS({
|
|
|
76553
76585
|
t4++;
|
|
76554
76586
|
break;
|
|
76555
76587
|
}
|
|
76556
|
-
|
|
76588
|
+
E.isValidEscape(n3, T(e4, t4 + 1)) && (t4 = R(e4, t4));
|
|
76557
76589
|
}
|
|
76558
76590
|
return t4;
|
|
76559
|
-
}, L.consumeEscaped =
|
|
76591
|
+
}, L.consumeEscaped = R, L.consumeName = function(e4, t4) {
|
|
76560
76592
|
for (; t4 < e4.length; t4++) {
|
|
76561
76593
|
const n3 = e4.charCodeAt(t4);
|
|
76562
|
-
if (!
|
|
76563
|
-
if (!
|
|
76594
|
+
if (!E.isName(n3)) {
|
|
76595
|
+
if (!E.isValidEscape(n3, T(e4, t4 + 1)))
|
|
76564
76596
|
break;
|
|
76565
|
-
t4 =
|
|
76597
|
+
t4 = R(e4, t4) - 1;
|
|
76566
76598
|
}
|
|
76567
76599
|
}
|
|
76568
76600
|
return t4;
|
|
76569
76601
|
}, L.consumeNumber = function(e4, t4) {
|
|
76570
76602
|
let n3 = e4.charCodeAt(t4);
|
|
76571
|
-
if (43 !== n3 && 45 !== n3 || (n3 = e4.charCodeAt(t4 += 1)),
|
|
76603
|
+
if (43 !== n3 && 45 !== n3 || (n3 = e4.charCodeAt(t4 += 1)), E.isDigit(n3) && (t4 = P(e4, t4 + 1), n3 = e4.charCodeAt(t4)), 46 === n3 && E.isDigit(e4.charCodeAt(t4 + 1)) && (t4 = P(e4, t4 += 2)), D(e4, t4, 101)) {
|
|
76572
76604
|
let r2 = 0;
|
|
76573
|
-
n3 = e4.charCodeAt(t4 + 1), 45 !== n3 && 43 !== n3 || (r2 = 1, n3 = e4.charCodeAt(t4 + 2)),
|
|
76605
|
+
n3 = e4.charCodeAt(t4 + 1), 45 !== n3 && 43 !== n3 || (r2 = 1, n3 = e4.charCodeAt(t4 + 2)), E.isDigit(n3) && (t4 = P(e4, t4 + 1 + r2 + 1));
|
|
76574
76606
|
}
|
|
76575
76607
|
return t4;
|
|
76576
76608
|
}, L.decodeEscaped = function(e4) {
|
|
76577
|
-
if (1 === e4.length && !
|
|
76609
|
+
if (1 === e4.length && !E.isHexDigit(e4.charCodeAt(0)))
|
|
76578
76610
|
return e4[0];
|
|
76579
76611
|
let t4 = parseInt(e4, 16);
|
|
76580
76612
|
return (0 === t4 || t4 >= 55296 && t4 <= 57343 || t4 > 1114111) && (t4 = 65533), String.fromCodePoint(t4);
|
|
76581
76613
|
}, L.findDecimalNumberEnd = P, L.findWhiteSpaceEnd = function(e4, t4) {
|
|
76582
|
-
for (; t4 < e4.length &&
|
|
76614
|
+
for (; t4 < e4.length && E.isWhiteSpace(e4.charCodeAt(t4)); t4++)
|
|
76583
76615
|
;
|
|
76584
76616
|
return t4;
|
|
76585
76617
|
}, L.findWhiteSpaceStart = function(e4, t4) {
|
|
76586
|
-
for (; t4 >= 0 &&
|
|
76618
|
+
for (; t4 >= 0 && E.isWhiteSpace(e4.charCodeAt(t4)); t4--)
|
|
76587
76619
|
;
|
|
76588
76620
|
return t4 + 1;
|
|
76589
76621
|
}, L.getNewlineLength = N;
|
|
76590
|
-
var
|
|
76622
|
+
var I = ["EOF-token", "ident-token", "function-token", "at-keyword-token", "hash-token", "string-token", "bad-string-token", "url-token", "bad-url-token", "delim-token", "number-token", "percentage-token", "dimension-token", "whitespace-token", "CDO-token", "CDC-token", "colon-token", "semicolon-token", "comma-token", "[-token", "]-token", "(-token", ")-token", "{-token", "}-token"], B = {}, O = { adoptBuffer: function(e4 = null, t4) {
|
|
76591
76623
|
return null === e4 || e4.length < t4 ? new Uint32Array(Math.max(t4 + 1024, 16384)) : e4;
|
|
76592
76624
|
} };
|
|
76593
76625
|
const U = O, M = g;
|
|
@@ -76615,7 +76647,7 @@ var require_processPagePollCjs = __commonJS({
|
|
|
76615
76647
|
}
|
|
76616
76648
|
};
|
|
76617
76649
|
var j = {};
|
|
76618
|
-
const H = O, q = L, W =
|
|
76650
|
+
const H = O, q = L, W = I, $ = f, V = 16777215, K = 24, Z = /* @__PURE__ */ new Map([[$.Function, $.RightParenthesis], [$.LeftParenthesis, $.RightParenthesis], [$.LeftSquareBracket, $.RightSquareBracket], [$.LeftCurlyBracket, $.RightCurlyBracket]]);
|
|
76619
76651
|
j.TokenStream = class {
|
|
76620
76652
|
constructor(e4, t4) {
|
|
76621
76653
|
this.setSource(e4, t4);
|
|
@@ -76712,7 +76744,7 @@ var require_processPagePollCjs = __commonJS({
|
|
|
76712
76744
|
}), e4;
|
|
76713
76745
|
}
|
|
76714
76746
|
};
|
|
76715
|
-
const G = f, Y = g, X = L, Q =
|
|
76747
|
+
const G = f, Y = g, X = L, Q = I, J = B, ee = j;
|
|
76716
76748
|
m.AtKeyword = G.AtKeyword, m.BadString = G.BadString, m.BadUrl = G.BadUrl, m.CDC = G.CDC, m.CDO = G.CDO, m.Colon = G.Colon, m.Comma = G.Comma, m.Comment = G.Comment, m.Delim = G.Delim, m.Dimension = G.Dimension, m.EOF = G.EOF, m.Function = G.Function, m.Hash = G.Hash, m.Ident = G.Ident, m.LeftCurlyBracket = G.LeftCurlyBracket, m.LeftParenthesis = G.LeftParenthesis, m.LeftSquareBracket = G.LeftSquareBracket, m.Number = G.Number, m.Percentage = G.Percentage, m.RightCurlyBracket = G.RightCurlyBracket, m.RightParenthesis = G.RightParenthesis, m.RightSquareBracket = G.RightSquareBracket, m.Semicolon = G.Semicolon, m.String = G.String, m.Url = G.Url, m.WhiteSpace = G.WhiteSpace, m.tokenTypes = G, m.DigitCategory = Y.DigitCategory, m.EofCategory = Y.EofCategory, m.NameStartCategory = Y.NameStartCategory, m.NonPrintableCategory = Y.NonPrintableCategory, m.WhiteSpaceCategory = Y.WhiteSpaceCategory, m.charCodeCategory = Y.charCodeCategory, m.isBOM = Y.isBOM, m.isDigit = Y.isDigit, m.isHexDigit = Y.isHexDigit, m.isIdentifierStart = Y.isIdentifierStart, m.isLetter = Y.isLetter, m.isLowercaseLetter = Y.isLowercaseLetter, m.isName = Y.isName, m.isNameStart = Y.isNameStart, m.isNewline = Y.isNewline, m.isNonAscii = Y.isNonAscii, m.isNonPrintable = Y.isNonPrintable, m.isNumberStart = Y.isNumberStart, m.isUppercaseLetter = Y.isUppercaseLetter, m.isValidEscape = Y.isValidEscape, m.isWhiteSpace = Y.isWhiteSpace, m.cmpChar = X.cmpChar, m.cmpStr = X.cmpStr, m.consumeBadUrlRemnants = X.consumeBadUrlRemnants, m.consumeEscaped = X.consumeEscaped, m.consumeName = X.consumeName, m.consumeNumber = X.consumeNumber, m.decodeEscaped = X.decodeEscaped, m.findDecimalNumberEnd = X.findDecimalNumberEnd, m.findWhiteSpaceEnd = X.findWhiteSpaceEnd, m.findWhiteSpaceStart = X.findWhiteSpaceStart, m.getNewlineLength = X.getNewlineLength, m.tokenNames = Q, m.OffsetToLocation = J.OffsetToLocation, m.TokenStream = ee.TokenStream, m.tokenize = function(e4, t4) {
|
|
76717
76749
|
function n3(t5) {
|
|
76718
76750
|
return t5 < a2 ? e4.charCodeAt(t5) : 0;
|
|
@@ -77092,7 +77124,7 @@ var require_processPagePollCjs = __commonJS({
|
|
|
77092
77124
|
}
|
|
77093
77125
|
return n3 && e4.onWhiteSpace && e4.onWhiteSpace.call(this, null, t4, r2), t4;
|
|
77094
77126
|
};
|
|
77095
|
-
const de = ne, pe = ie, me = m, fe = ue, ge = B, be = j, ye = L, ke = f, we =
|
|
77127
|
+
const de = ne, pe = ie, me = m, fe = ue, ge = B, be = j, ye = L, ke = f, we = I, ve = () => {
|
|
77096
77128
|
};
|
|
77097
77129
|
function xe(e4) {
|
|
77098
77130
|
return function() {
|
|
@@ -77194,21 +77226,21 @@ var require_processPagePollCjs = __commonJS({
|
|
|
77194
77226
|
return s2.eof || s2.error(), h2;
|
|
77195
77227
|
}, { SyntaxError: pe.SyntaxError, config: s2.config });
|
|
77196
77228
|
};
|
|
77197
|
-
var _e = {}, Ce = {}, Ae = {}, ze = {}, Le = {},
|
|
77229
|
+
var _e = {}, Ce = {}, Ae = {}, ze = {}, Le = {}, Ee = "ABCDEFGHIJKLMNOPQRSTUVWXYZabcdefghijklmnopqrstuvwxyz0123456789+/".split("");
|
|
77198
77230
|
Le.encode = function(e4) {
|
|
77199
|
-
if (0 <= e4 && e4 <
|
|
77200
|
-
return
|
|
77231
|
+
if (0 <= e4 && e4 < Ee.length)
|
|
77232
|
+
return Ee[e4];
|
|
77201
77233
|
throw new TypeError("Must be between 0 and 63: " + e4);
|
|
77202
77234
|
}, Le.decode = function(e4) {
|
|
77203
77235
|
return 65 <= e4 && e4 <= 90 ? e4 - 65 : 97 <= e4 && e4 <= 122 ? e4 - 97 + 26 : 48 <= e4 && e4 <= 57 ? e4 - 48 + 52 : 43 == e4 ? 62 : 47 == e4 ? 63 : -1;
|
|
77204
77236
|
};
|
|
77205
|
-
var
|
|
77237
|
+
var Te = Le;
|
|
77206
77238
|
ze.encode = function(e4) {
|
|
77207
77239
|
var t4, n3 = "", r2 = function(e5) {
|
|
77208
77240
|
return e5 < 0 ? 1 + (-e5 << 1) : 0 + (e5 << 1);
|
|
77209
77241
|
}(e4);
|
|
77210
77242
|
do {
|
|
77211
|
-
t4 = 31 & r2, (r2 >>>= 5) > 0 && (t4 |= 32), n3 +=
|
|
77243
|
+
t4 = 31 & r2, (r2 >>>= 5) > 0 && (t4 |= 32), n3 += Te.encode(t4);
|
|
77212
77244
|
} while (r2 > 0);
|
|
77213
77245
|
return n3;
|
|
77214
77246
|
}, ze.decode = function(e4, t4, n3) {
|
|
@@ -77216,7 +77248,7 @@ var require_processPagePollCjs = __commonJS({
|
|
|
77216
77248
|
do {
|
|
77217
77249
|
if (t4 >= s2)
|
|
77218
77250
|
throw new Error("Expected more digits in base 64 VLQ value.");
|
|
77219
|
-
if (-1 === (o2 =
|
|
77251
|
+
if (-1 === (o2 = Te.decode(e4.charCodeAt(t4++))))
|
|
77220
77252
|
throw new Error("Invalid base64 digit: " + e4.charAt(t4 - 1));
|
|
77221
77253
|
r2 = !!(32 & o2), l2 += (o2 &= 31) << c2, c2 += 5;
|
|
77222
77254
|
} while (r2);
|
|
@@ -77350,32 +77382,32 @@ var require_processPagePollCjs = __commonJS({
|
|
|
77350
77382
|
return s2(t5);
|
|
77351
77383
|
};
|
|
77352
77384
|
}(Ne);
|
|
77353
|
-
var De = {}, Pe = Ne,
|
|
77385
|
+
var De = {}, Pe = Ne, Re = Object.prototype.hasOwnProperty, Ie = "undefined" != typeof Map;
|
|
77354
77386
|
function Be() {
|
|
77355
|
-
this._array = [], this._set =
|
|
77387
|
+
this._array = [], this._set = Ie ? /* @__PURE__ */ new Map() : /* @__PURE__ */ Object.create(null);
|
|
77356
77388
|
}
|
|
77357
77389
|
Be.fromArray = function(e4, t4) {
|
|
77358
77390
|
for (var n3 = new Be(), r2 = 0, o2 = e4.length; r2 < o2; r2++)
|
|
77359
77391
|
n3.add(e4[r2], t4);
|
|
77360
77392
|
return n3;
|
|
77361
77393
|
}, Be.prototype.size = function() {
|
|
77362
|
-
return
|
|
77394
|
+
return Ie ? this._set.size : Object.getOwnPropertyNames(this._set).length;
|
|
77363
77395
|
}, Be.prototype.add = function(e4, t4) {
|
|
77364
|
-
var n3 =
|
|
77365
|
-
r2 && !t4 || this._array.push(e4), r2 || (
|
|
77396
|
+
var n3 = Ie ? e4 : Pe.toSetString(e4), r2 = Ie ? this.has(e4) : Re.call(this._set, n3), o2 = this._array.length;
|
|
77397
|
+
r2 && !t4 || this._array.push(e4), r2 || (Ie ? this._set.set(e4, o2) : this._set[n3] = o2);
|
|
77366
77398
|
}, Be.prototype.has = function(e4) {
|
|
77367
|
-
if (
|
|
77399
|
+
if (Ie)
|
|
77368
77400
|
return this._set.has(e4);
|
|
77369
77401
|
var t4 = Pe.toSetString(e4);
|
|
77370
|
-
return
|
|
77402
|
+
return Re.call(this._set, t4);
|
|
77371
77403
|
}, Be.prototype.indexOf = function(e4) {
|
|
77372
|
-
if (
|
|
77404
|
+
if (Ie) {
|
|
77373
77405
|
var t4 = this._set.get(e4);
|
|
77374
77406
|
if (t4 >= 0)
|
|
77375
77407
|
return t4;
|
|
77376
77408
|
} else {
|
|
77377
77409
|
var n3 = Pe.toSetString(e4);
|
|
77378
|
-
if (
|
|
77410
|
+
if (Re.call(this._set, n3))
|
|
77379
77411
|
return this._set[n3];
|
|
77380
77412
|
}
|
|
77381
77413
|
throw new Error('"' + e4 + '" is not in the set.');
|
|
@@ -77741,7 +77773,7 @@ var require_processPagePollCjs = __commonJS({
|
|
|
77741
77773
|
return n3.reference = t4, n3;
|
|
77742
77774
|
};
|
|
77743
77775
|
var zt = {};
|
|
77744
|
-
const Lt = /* @__PURE__ */ new Map(),
|
|
77776
|
+
const Lt = /* @__PURE__ */ new Map(), Et = /* @__PURE__ */ new Map(), Tt = Dt;
|
|
77745
77777
|
function Nt(e4, t4) {
|
|
77746
77778
|
return t4 = t4 || 0, e4.length - t4 >= 2 && 45 === e4.charCodeAt(t4) && 45 === e4.charCodeAt(t4 + 1);
|
|
77747
77779
|
}
|
|
@@ -77764,20 +77796,20 @@ var require_processPagePollCjs = __commonJS({
|
|
|
77764
77796
|
}
|
|
77765
77797
|
return Lt.set(e4, n3), n3;
|
|
77766
77798
|
}, zt.property = function(e4) {
|
|
77767
|
-
if (
|
|
77768
|
-
return
|
|
77799
|
+
if (Et.has(e4))
|
|
77800
|
+
return Et.get(e4);
|
|
77769
77801
|
let t4 = e4, n3 = e4[0];
|
|
77770
77802
|
"/" === n3 ? n3 = "/" === e4[1] ? "//" : "/" : "_" !== n3 && "*" !== n3 && "$" !== n3 && "#" !== n3 && "+" !== n3 && "&" !== n3 && (n3 = "");
|
|
77771
77803
|
const r2 = Nt(t4, n3.length);
|
|
77772
|
-
if (!r2 && (t4 = t4.toLowerCase(),
|
|
77773
|
-
const n4 =
|
|
77774
|
-
return
|
|
77804
|
+
if (!r2 && (t4 = t4.toLowerCase(), Et.has(t4))) {
|
|
77805
|
+
const n4 = Et.get(t4);
|
|
77806
|
+
return Et.set(e4, n4), n4;
|
|
77775
77807
|
}
|
|
77776
77808
|
const o2 = r2 ? "" : Dt(t4, n3.length), i2 = t4.substr(0, n3.length + o2.length), a2 = Object.freeze({ basename: t4.substr(i2.length), name: t4.substr(n3.length), hack: n3, vendor: o2, prefix: i2, custom: r2 });
|
|
77777
|
-
return
|
|
77778
|
-
}, zt.vendorPrefix =
|
|
77779
|
-
var Pt = { cssWideKeywords: ["initial", "inherit", "unset", "revert", "revert-layer"] },
|
|
77780
|
-
const
|
|
77809
|
+
return Et.set(e4, a2), a2;
|
|
77810
|
+
}, zt.vendorPrefix = Tt;
|
|
77811
|
+
var Pt = { cssWideKeywords: ["initial", "inherit", "unset", "revert", "revert-layer"] }, Rt = {};
|
|
77812
|
+
const It = g, Bt = f, Ot = L, Ut = 43, Mt = 45, Ft = true;
|
|
77781
77813
|
function jt(e4, t4) {
|
|
77782
77814
|
return null !== e4 && e4.type === Bt.Delim && e4.value.charCodeAt(0) === t4;
|
|
77783
77815
|
}
|
|
@@ -77796,7 +77828,7 @@ var require_processPagePollCjs = __commonJS({
|
|
|
77796
77828
|
t4++;
|
|
77797
77829
|
}
|
|
77798
77830
|
for (; t4 < e4.value.length; t4++)
|
|
77799
|
-
if (!
|
|
77831
|
+
if (!It.isDigit(e4.value.charCodeAt(t4)))
|
|
77800
77832
|
return 0;
|
|
77801
77833
|
return r2 + 1;
|
|
77802
77834
|
}
|
|
@@ -77874,7 +77906,7 @@ var require_processPagePollCjs = __commonJS({
|
|
|
77874
77906
|
}
|
|
77875
77907
|
} else if (e4.type === Bt.Dimension) {
|
|
77876
77908
|
let r2 = e4.value.charCodeAt(0), o2 = r2 === Ut || r2 === Mt ? 1 : 0, i2 = o2;
|
|
77877
|
-
for (; i2 < e4.value.length &&
|
|
77909
|
+
for (; i2 < e4.value.length && It.isDigit(e4.value.charCodeAt(i2)); i2++)
|
|
77878
77910
|
;
|
|
77879
77911
|
return i2 === o2 ? 0 : Ot.cmpChar(e4.value, i2, 110) ? i2 + 1 === e4.value.length ? Wt(t4(++n3), n3, t4) : e4.value.charCodeAt(i2 + 1) !== Mt ? 0 : i2 + 2 === e4.value.length ? (n3 = Ht(t4(++n3), n3, t4), qt(e4 = t4(n3), 0, Ft, n3)) : qt(e4, i2 + 2, Ft, n3) : 0;
|
|
77880
77912
|
}
|
|
@@ -78075,9 +78107,9 @@ var require_processPagePollCjs = __commonJS({
|
|
|
78075
78107
|
const { angle: t4, decibel: n3, frequency: r2, flex: o2, length: i2, resolution: a2, semitones: s2, time: l2 } = e4 || {};
|
|
78076
78108
|
return { dimension: hn(pn(null)), angle: hn(pn(t4)), decibel: hn(pn(n3)), frequency: hn(pn(r2)), flex: hn(pn(o2)), length: hn(mn(pn(i2))), resolution: hn(pn(a2)), semitones: hn(pn(s2)), time: hn(pn(l2)) };
|
|
78077
78109
|
}
|
|
78078
|
-
|
|
78110
|
+
Rt.createDemensionTypes = bn, Rt.createGenericTypes = function(e4) {
|
|
78079
78111
|
return { ...fn, ...gn, ...bn(e4) };
|
|
78080
|
-
},
|
|
78112
|
+
}, Rt.productionTypes = gn, Rt.tokenTypes = fn;
|
|
78081
78113
|
var yn = { angle: ["deg", "grad", "rad", "turn"], decibel: ["db"], flex: ["fr"], frequency: ["hz", "khz"], length: ["cm", "mm", "q", "in", "pt", "pc", "px", "em", "rem", "ex", "rex", "cap", "rcap", "ch", "rch", "ic", "ric", "lh", "rlh", "vw", "svw", "lvw", "dvw", "vh", "svh", "lvh", "dvh", "vi", "svi", "lvi", "dvi", "vb", "svb", "lvb", "dvb", "vmin", "svmin", "lvmin", "dvmin", "vmax", "svmax", "lvmax", "dvmax", "cqw", "cqh", "cqi", "cqb", "cqmin", "cqmax"], resolution: ["dpi", "dpcm", "dppx", "x"], semitones: ["st"], time: ["s", "ms"] };
|
|
78082
78114
|
const kn = m, wn = { decorator(e4) {
|
|
78083
78115
|
const t4 = [];
|
|
@@ -78132,7 +78164,7 @@ var require_processPagePollCjs = __commonJS({
|
|
|
78132
78164
|
throw new An.SyntaxError(e4, this.str, this.pos);
|
|
78133
78165
|
}
|
|
78134
78166
|
};
|
|
78135
|
-
const zn = Sn, Ln = 9,
|
|
78167
|
+
const zn = Sn, Ln = 9, En = 10, Tn = 12, Nn = 13, Dn = 32, Pn = 33, Rn = 35, In = 38, Bn = 39, On = 40, Un = 41, Mn = 42, Fn = 43, jn = 44, Hn = 45, qn = 60, Wn = 62, $n = 63, Vn = 64, Kn = 91, Zn = 93, Gn = 123, Yn = 124, Xn = 125, Qn = 8734, Jn = new Uint8Array(128).map((e4, t4) => /[a-zA-Z0-9\-]/.test(String.fromCharCode(t4)) ? 1 : 0), er = { " ": 1, "&&": 2, "||": 3, "|": 4 };
|
|
78136
78168
|
function tr(e4) {
|
|
78137
78169
|
return e4.substringToPos(e4.findWsEnd(e4.pos));
|
|
78138
78170
|
}
|
|
@@ -78175,7 +78207,7 @@ var require_processPagePollCjs = __commonJS({
|
|
|
78175
78207
|
case $n:
|
|
78176
78208
|
e5.pos++, t5 = { min: 0, max: 1 };
|
|
78177
78209
|
break;
|
|
78178
|
-
case
|
|
78210
|
+
case Rn:
|
|
78179
78211
|
e5.pos++, n4 = true, e5.charCode() === Gn ? t5 = ir(e5) : e5.charCode() === $n ? (e5.pos++, t5 = { min: 0, max: 0 }) : t5 = { min: 1, max: 0 };
|
|
78180
78212
|
break;
|
|
78181
78213
|
case Gn:
|
|
@@ -78186,7 +78218,7 @@ var require_processPagePollCjs = __commonJS({
|
|
|
78186
78218
|
}
|
|
78187
78219
|
return { type: "Multiplier", comma: n4, min: t5.min, max: t5.max, term: null };
|
|
78188
78220
|
}(e4);
|
|
78189
|
-
return null !== n3 ? (n3.term = t4, e4.charCode() ===
|
|
78221
|
+
return null !== n3 ? (n3.term = t4, e4.charCode() === Rn && e4.charCodeAt(e4.pos - 1) === Fn ? ar(e4, n3) : n3) : t4;
|
|
78190
78222
|
}
|
|
78191
78223
|
function sr(e4) {
|
|
78192
78224
|
const t4 = e4.peek();
|
|
@@ -78243,24 +78275,24 @@ var require_processPagePollCjs = __commonJS({
|
|
|
78243
78275
|
}(e4);
|
|
78244
78276
|
case Yn:
|
|
78245
78277
|
return { type: "Combinator", value: e4.substringToPos(e4.pos + (e4.nextCharCode() === Yn ? 2 : 1)) };
|
|
78246
|
-
case
|
|
78247
|
-
return e4.pos++, e4.eat(
|
|
78278
|
+
case In:
|
|
78279
|
+
return e4.pos++, e4.eat(In), { type: "Combinator", value: "&&" };
|
|
78248
78280
|
case jn:
|
|
78249
78281
|
return e4.pos++, { type: "Comma" };
|
|
78250
78282
|
case Bn:
|
|
78251
78283
|
return ar(e4, { type: "String", value: or(e4) });
|
|
78252
78284
|
case Dn:
|
|
78253
78285
|
case Ln:
|
|
78254
|
-
case Tn:
|
|
78255
|
-
case Nn:
|
|
78256
78286
|
case En:
|
|
78287
|
+
case Nn:
|
|
78288
|
+
case Tn:
|
|
78257
78289
|
return { type: "Spaces", value: tr(e4) };
|
|
78258
78290
|
case Vn:
|
|
78259
78291
|
return t4 = e4.nextCharCode(), t4 < 128 && 1 === Jn[t4] ? (e4.pos++, { type: "AtKeyword", name: nr(e4) }) : sr(e4);
|
|
78260
78292
|
case Mn:
|
|
78261
78293
|
case Fn:
|
|
78262
78294
|
case $n:
|
|
78263
|
-
case
|
|
78295
|
+
case Rn:
|
|
78264
78296
|
case Pn:
|
|
78265
78297
|
break;
|
|
78266
78298
|
case Gn:
|
|
@@ -78400,12 +78432,12 @@ var require_processPagePollCjs = __commonJS({
|
|
|
78400
78432
|
}
|
|
78401
78433
|
return true;
|
|
78402
78434
|
}
|
|
78403
|
-
function
|
|
78435
|
+
function Er(e4) {
|
|
78404
78436
|
return null === e4 || e4.type === _r.Comma || e4.type === _r.Function || e4.type === _r.LeftParenthesis || e4.type === _r.LeftSquareBracket || e4.type === _r.LeftCurlyBracket || function(e5) {
|
|
78405
78437
|
return e5.type === _r.Delim && "?" !== e5.value;
|
|
78406
78438
|
}(e4);
|
|
78407
78439
|
}
|
|
78408
|
-
function
|
|
78440
|
+
function Tr(e4) {
|
|
78409
78441
|
return null === e4 || e4.type === _r.RightParenthesis || e4.type === _r.RightSquareBracket || e4.type === _r.RightCurlyBracket || e4.type === _r.Delim && "/" === e4.value;
|
|
78410
78442
|
}
|
|
78411
78443
|
function Nr(e4, t4, n3) {
|
|
@@ -78560,7 +78592,7 @@ var require_processPagePollCjs = __commonJS({
|
|
|
78560
78592
|
t4 = Sr.MISMATCH;
|
|
78561
78593
|
break;
|
|
78562
78594
|
case "Comma":
|
|
78563
|
-
null !== g2 && g2.type === _r.Comma ?
|
|
78595
|
+
null !== g2 && g2.type === _r.Comma ? Er(k2.token) ? t4 = Sr.MISMATCH : (l2(), t4 = Tr(g2) ? Sr.MISMATCH : Sr.MATCH) : t4 = Er(k2.token) || Tr(g2) ? Sr.MATCH : Sr.MISMATCH;
|
|
78564
78596
|
break;
|
|
78565
78597
|
case "String":
|
|
78566
78598
|
let r3 = "", m3 = b2;
|
|
@@ -78643,18 +78675,18 @@ var require_processPagePollCjs = __commonJS({
|
|
|
78643
78675
|
return false;
|
|
78644
78676
|
}(this.matched), n3;
|
|
78645
78677
|
}
|
|
78646
|
-
function
|
|
78678
|
+
function Rr(e4, t4, n3) {
|
|
78647
78679
|
const r2 = Pr.call(e4, t4);
|
|
78648
78680
|
return null !== r2 && r2.some(n3);
|
|
78649
78681
|
}
|
|
78650
78682
|
Dr.getTrace = Pr, Dr.isKeyword = function(e4) {
|
|
78651
|
-
return
|
|
78683
|
+
return Rr(this, e4, (e5) => "Keyword" === e5.type);
|
|
78652
78684
|
}, Dr.isProperty = function(e4, t4) {
|
|
78653
|
-
return
|
|
78685
|
+
return Rr(this, e4, (e5) => "Property" === e5.type && e5.name === t4);
|
|
78654
78686
|
}, Dr.isType = function(e4, t4) {
|
|
78655
|
-
return
|
|
78687
|
+
return Rr(this, e4, (e5) => "Type" === e5.type && e5.name === t4);
|
|
78656
78688
|
};
|
|
78657
|
-
var
|
|
78689
|
+
var Ir = {};
|
|
78658
78690
|
const Br = ne;
|
|
78659
78691
|
function Or(e4) {
|
|
78660
78692
|
return "node" in e4 ? e4.node : Or(e4.match[0]);
|
|
@@ -78662,7 +78694,7 @@ var require_processPagePollCjs = __commonJS({
|
|
|
78662
78694
|
function Ur(e4) {
|
|
78663
78695
|
return "node" in e4 ? e4.node : Ur(e4.match[e4.match.length - 1]);
|
|
78664
78696
|
}
|
|
78665
|
-
|
|
78697
|
+
Ir.matchFragments = function(e4, t4, n3, r2, o2) {
|
|
78666
78698
|
const i2 = [];
|
|
78667
78699
|
return null !== n3.matched && function n4(a2) {
|
|
78668
78700
|
if (null !== a2.syntax && a2.syntax.type === r2 && a2.syntax.name === o2) {
|
|
@@ -78809,12 +78841,12 @@ var require_processPagePollCjs = __commonJS({
|
|
|
78809
78841
|
o2.call(n3, t5);
|
|
78810
78842
|
}(e4);
|
|
78811
78843
|
};
|
|
78812
|
-
const Gr = yt, Yr = zt, Xr = Pt, Qr =
|
|
78844
|
+
const Gr = yt, Yr = zt, Xr = Pt, Qr = Rt, Jr = yn, eo = function(e4, t4) {
|
|
78813
78845
|
return "string" == typeof e4 ? function(e5) {
|
|
78814
78846
|
const t5 = [];
|
|
78815
78847
|
return kn.tokenize(e5, (n3, r2, o2) => t5.push({ type: n3, value: e5.slice(r2, o2), node: null })), t5;
|
|
78816
78848
|
}(e4) : t4.generate(e4, wn);
|
|
78817
|
-
}, to = vn, no = xr, ro = Dr, oo =
|
|
78849
|
+
}, to = vn, no = xr, ro = Dr, oo = Ir, io = Mr, ao = xn, so = kt, lo = Vr, co = to.buildMatchGraph(Xr.cssWideKeywords.join(" | "));
|
|
78818
78850
|
function uo(e4, t4, n3) {
|
|
78819
78851
|
const r2 = {};
|
|
78820
78852
|
for (const o2 in e4)
|
|
@@ -79059,15 +79091,15 @@ var require_processPagePollCjs = __commonJS({
|
|
|
79059
79091
|
return a2.lexer = new xo.Lexer({ generic: true, units: e4.units, types: e4.types, atrules: e4.atrules, properties: e4.properties, node: e4.node }, a2), a2;
|
|
79060
79092
|
}
|
|
79061
79093
|
var Co = (e4) => _o(So({}, e4)), Ao = {}, zo = {};
|
|
79062
|
-
const Lo = f,
|
|
79063
|
-
function
|
|
79094
|
+
const Lo = f, Eo = g, To = 43, No = 45, Do = 110, Po = true;
|
|
79095
|
+
function Ro(e4, t4) {
|
|
79064
79096
|
let n3 = this.tokenStart + e4;
|
|
79065
79097
|
const r2 = this.charCodeAt(n3);
|
|
79066
|
-
for (r2 !==
|
|
79067
|
-
|
|
79098
|
+
for (r2 !== To && r2 !== No || (t4 && this.error("Number sign is not allowed"), n3++); n3 < this.tokenEnd; n3++)
|
|
79099
|
+
Eo.isDigit(this.charCodeAt(n3)) || this.error("Integer is expected", n3);
|
|
79068
79100
|
}
|
|
79069
|
-
function
|
|
79070
|
-
return
|
|
79101
|
+
function Io(e4) {
|
|
79102
|
+
return Ro.call(this, 0, e4);
|
|
79071
79103
|
}
|
|
79072
79104
|
function Bo(e4, t4) {
|
|
79073
79105
|
if (!this.cmpChar(this.tokenStart + e4, t4)) {
|
|
@@ -79087,15 +79119,15 @@ var require_processPagePollCjs = __commonJS({
|
|
|
79087
79119
|
for (; n3 === Lo.WhiteSpace || n3 === Lo.Comment; )
|
|
79088
79120
|
n3 = this.lookupType(++e4);
|
|
79089
79121
|
if (n3 !== Lo.Number) {
|
|
79090
|
-
if (!this.isDelim(
|
|
79122
|
+
if (!this.isDelim(To, e4) && !this.isDelim(No, e4))
|
|
79091
79123
|
return null;
|
|
79092
|
-
t4 = this.isDelim(
|
|
79124
|
+
t4 = this.isDelim(To, e4) ? To : No;
|
|
79093
79125
|
do {
|
|
79094
79126
|
n3 = this.lookupType(++e4);
|
|
79095
79127
|
} while (n3 === Lo.WhiteSpace || n3 === Lo.Comment);
|
|
79096
|
-
n3 !== Lo.Number && (this.skip(e4),
|
|
79128
|
+
n3 !== Lo.Number && (this.skip(e4), Io.call(this, Po));
|
|
79097
79129
|
}
|
|
79098
|
-
return e4 > 0 && this.skip(e4), 0 === t4 && (n3 = this.charCodeAt(this.tokenStart), n3 !==
|
|
79130
|
+
return e4 > 0 && this.skip(e4), 0 === t4 && (n3 = this.charCodeAt(this.tokenStart), n3 !== To && n3 !== No && this.error("Number sign is expected")), Io.call(this, 0 !== t4), t4 === No ? "-" + this.consume(Lo.Number) : this.consume(Lo.Number);
|
|
79099
79131
|
}
|
|
79100
79132
|
const Uo = { a: [String, null], b: [String, null] };
|
|
79101
79133
|
zo.generate = function(e4) {
|
|
@@ -79112,39 +79144,39 @@ var require_processPagePollCjs = __commonJS({
|
|
|
79112
79144
|
const e4 = this.tokenStart;
|
|
79113
79145
|
let t4 = null, n3 = null;
|
|
79114
79146
|
if (this.tokenType === Lo.Number)
|
|
79115
|
-
|
|
79147
|
+
Io.call(this, false), n3 = this.consume(Lo.Number);
|
|
79116
79148
|
else if (this.tokenType === Lo.Ident && this.cmpChar(this.tokenStart, No))
|
|
79117
79149
|
switch (t4 = "-1", Bo.call(this, 1, Do), this.tokenEnd - this.tokenStart) {
|
|
79118
79150
|
case 2:
|
|
79119
79151
|
this.next(), n3 = Oo.call(this);
|
|
79120
79152
|
break;
|
|
79121
79153
|
case 3:
|
|
79122
|
-
Bo.call(this, 2, No), this.next(), this.skipSC(),
|
|
79154
|
+
Bo.call(this, 2, No), this.next(), this.skipSC(), Io.call(this, Po), n3 = "-" + this.consume(Lo.Number);
|
|
79123
79155
|
break;
|
|
79124
79156
|
default:
|
|
79125
|
-
Bo.call(this, 2, No),
|
|
79157
|
+
Bo.call(this, 2, No), Ro.call(this, 3, Po), this.next(), n3 = this.substrToCursor(e4 + 2);
|
|
79126
79158
|
}
|
|
79127
|
-
else if (this.tokenType === Lo.Ident || this.isDelim(
|
|
79159
|
+
else if (this.tokenType === Lo.Ident || this.isDelim(To) && this.lookupType(1) === Lo.Ident) {
|
|
79128
79160
|
let r2 = 0;
|
|
79129
|
-
switch (t4 = "1", this.isDelim(
|
|
79161
|
+
switch (t4 = "1", this.isDelim(To) && (r2 = 1, this.next()), Bo.call(this, 0, Do), this.tokenEnd - this.tokenStart) {
|
|
79130
79162
|
case 1:
|
|
79131
79163
|
this.next(), n3 = Oo.call(this);
|
|
79132
79164
|
break;
|
|
79133
79165
|
case 2:
|
|
79134
|
-
Bo.call(this, 1, No), this.next(), this.skipSC(),
|
|
79166
|
+
Bo.call(this, 1, No), this.next(), this.skipSC(), Io.call(this, Po), n3 = "-" + this.consume(Lo.Number);
|
|
79135
79167
|
break;
|
|
79136
79168
|
default:
|
|
79137
|
-
Bo.call(this, 1, No),
|
|
79169
|
+
Bo.call(this, 1, No), Ro.call(this, 2, Po), this.next(), n3 = this.substrToCursor(e4 + r2 + 1);
|
|
79138
79170
|
}
|
|
79139
79171
|
} else if (this.tokenType === Lo.Dimension) {
|
|
79140
|
-
const r2 = this.charCodeAt(this.tokenStart), o2 = r2 ===
|
|
79172
|
+
const r2 = this.charCodeAt(this.tokenStart), o2 = r2 === To || r2 === No;
|
|
79141
79173
|
let i2 = this.tokenStart + o2;
|
|
79142
|
-
for (; i2 < this.tokenEnd &&
|
|
79174
|
+
for (; i2 < this.tokenEnd && Eo.isDigit(this.charCodeAt(i2)); i2++)
|
|
79143
79175
|
;
|
|
79144
|
-
i2 === this.tokenStart + o2 && this.error("Integer is expected", this.tokenStart + o2), Bo.call(this, i2 - this.tokenStart, Do), t4 = this.substring(e4, i2), i2 + 1 === this.tokenEnd ? (this.next(), n3 = Oo.call(this)) : (Bo.call(this, i2 - this.tokenStart + 1, No), i2 + 2 === this.tokenEnd ? (this.next(), this.skipSC(),
|
|
79176
|
+
i2 === this.tokenStart + o2 && this.error("Integer is expected", this.tokenStart + o2), Bo.call(this, i2 - this.tokenStart, Do), t4 = this.substring(e4, i2), i2 + 1 === this.tokenEnd ? (this.next(), n3 = Oo.call(this)) : (Bo.call(this, i2 - this.tokenStart + 1, No), i2 + 2 === this.tokenEnd ? (this.next(), this.skipSC(), Io.call(this, Po), n3 = "-" + this.consume(Lo.Number)) : (Ro.call(this, i2 - this.tokenStart + 2, Po), this.next(), n3 = this.substrToCursor(i2 + 1)));
|
|
79145
79177
|
} else
|
|
79146
79178
|
this.error();
|
|
79147
|
-
return null !== t4 && t4.charCodeAt(0) ===
|
|
79179
|
+
return null !== t4 && t4.charCodeAt(0) === To && (t4 = t4.substr(1)), null !== n3 && n3.charCodeAt(0) === To && (n3 = n3.substr(1)), { type: "AnPlusB", loc: this.getLocation(e4, this.tokenStart), a: t4, b: n3 };
|
|
79148
79180
|
}, zo.structure = Uo;
|
|
79149
79181
|
var Mo = {};
|
|
79150
79182
|
const Fo = f;
|
|
@@ -79366,7 +79398,7 @@ var require_processPagePollCjs = __commonJS({
|
|
|
79366
79398
|
}, yi.structure = _i, yi.walkContext = "declaration";
|
|
79367
79399
|
var zi = {};
|
|
79368
79400
|
const Li = f;
|
|
79369
|
-
function
|
|
79401
|
+
function Ei(e4) {
|
|
79370
79402
|
return this.Raw(e4, this.consumeUntilSemicolonIncluded, true);
|
|
79371
79403
|
}
|
|
79372
79404
|
zi.generate = function(e4) {
|
|
@@ -79383,30 +79415,30 @@ var require_processPagePollCjs = __commonJS({
|
|
|
79383
79415
|
this.next();
|
|
79384
79416
|
break;
|
|
79385
79417
|
case Li.AtKeyword:
|
|
79386
|
-
e4.push(this.parseWithFallback(this.Atrule.bind(this, true),
|
|
79418
|
+
e4.push(this.parseWithFallback(this.Atrule.bind(this, true), Ei));
|
|
79387
79419
|
break;
|
|
79388
79420
|
default:
|
|
79389
|
-
this.isDelim(38) ? e4.push(this.parseWithFallback(this.Rule,
|
|
79421
|
+
this.isDelim(38) ? e4.push(this.parseWithFallback(this.Rule, Ei)) : e4.push(this.parseWithFallback(this.Declaration, Ei));
|
|
79390
79422
|
}
|
|
79391
79423
|
return { type: "DeclarationList", loc: this.getLocationFromList(e4), children: e4 };
|
|
79392
79424
|
}, zi.structure = { children: [["Declaration", "Atrule", "Rule"]] };
|
|
79393
|
-
var
|
|
79425
|
+
var Ti = {};
|
|
79394
79426
|
const Ni = f, Di = { value: String, unit: String };
|
|
79395
|
-
|
|
79427
|
+
Ti.generate = function(e4) {
|
|
79396
79428
|
this.token(Ni.Dimension, e4.value + e4.unit);
|
|
79397
|
-
},
|
|
79429
|
+
}, Ti.name = "Dimension", Ti.parse = function() {
|
|
79398
79430
|
const e4 = this.tokenStart, t4 = this.consumeNumber(Ni.Dimension);
|
|
79399
79431
|
return { type: "Dimension", loc: this.getLocation(e4, this.tokenStart), value: t4, unit: this.substring(e4 + t4.length, this.tokenStart) };
|
|
79400
|
-
},
|
|
79432
|
+
}, Ti.structure = Di;
|
|
79401
79433
|
var Pi = {};
|
|
79402
|
-
const
|
|
79434
|
+
const Ri = f, Ii = { name: String, children: [[]] };
|
|
79403
79435
|
Pi.generate = function(e4) {
|
|
79404
|
-
this.token(
|
|
79436
|
+
this.token(Ri.Function, e4.name + "("), this.children(e4), this.token(Ri.RightParenthesis, ")");
|
|
79405
79437
|
}, Pi.name = "Function", Pi.parse = function(e4, t4) {
|
|
79406
79438
|
const n3 = this.tokenStart, r2 = this.consumeFunctionName(), o2 = r2.toLowerCase();
|
|
79407
79439
|
let i2;
|
|
79408
|
-
return i2 = t4.hasOwnProperty(o2) ? t4[o2].call(this, t4) : e4.call(this, t4), this.eof || this.eat(
|
|
79409
|
-
}, Pi.structure =
|
|
79440
|
+
return i2 = t4.hasOwnProperty(o2) ? t4[o2].call(this, t4) : e4.call(this, t4), this.eof || this.eat(Ri.RightParenthesis), { type: "Function", loc: this.getLocation(n3, this.tokenStart), name: r2, children: i2 };
|
|
79441
|
+
}, Pi.structure = Ii, Pi.walkContext = "function";
|
|
79410
79442
|
var Bi = {};
|
|
79411
79443
|
const Oi = f, Ui = { value: String };
|
|
79412
79444
|
Bi.generate = function(e4) {
|
|
@@ -79594,10 +79626,10 @@ var require_processPagePollCjs = __commonJS({
|
|
|
79594
79626
|
}, Sa.structure = Aa;
|
|
79595
79627
|
var za = {};
|
|
79596
79628
|
const La = f;
|
|
79597
|
-
function
|
|
79629
|
+
function Ea(e4) {
|
|
79598
79630
|
return this.Raw(e4, this.consumeUntilLeftCurlyBracket, true);
|
|
79599
79631
|
}
|
|
79600
|
-
function
|
|
79632
|
+
function Ta() {
|
|
79601
79633
|
const e4 = this.SelectorList();
|
|
79602
79634
|
return "Raw" !== e4.type && false === this.eof && this.tokenType !== La.LeftCurlyBracket && this.error(), e4;
|
|
79603
79635
|
}
|
|
@@ -79606,7 +79638,7 @@ var require_processPagePollCjs = __commonJS({
|
|
|
79606
79638
|
}, za.name = "Rule", za.parse = function() {
|
|
79607
79639
|
const e4 = this.tokenIndex, t4 = this.tokenStart;
|
|
79608
79640
|
let n3, r2;
|
|
79609
|
-
return n3 = this.parseRulePrelude ? this.parseWithFallback(
|
|
79641
|
+
return n3 = this.parseRulePrelude ? this.parseWithFallback(Ta, Ea) : Ea.call(this, e4), r2 = this.Block(true), { type: "Rule", loc: this.getLocation(t4, this.tokenStart), prelude: n3, block: r2 };
|
|
79610
79642
|
}, za.structure = { prelude: ["SelectorList", "Raw"], block: ["Block"] }, za.walkContext = "rule";
|
|
79611
79643
|
var Na = { generate: function(e4) {
|
|
79612
79644
|
this.children(e4);
|
|
@@ -79623,9 +79655,9 @@ var require_processPagePollCjs = __commonJS({
|
|
|
79623
79655
|
this.next();
|
|
79624
79656
|
return { type: "SelectorList", loc: this.getLocationFromList(e4), children: e4 };
|
|
79625
79657
|
}, Da.structure = { children: [["Selector", "Raw"]] }, Da.walkContext = "selector";
|
|
79626
|
-
var
|
|
79658
|
+
var Ra = {}, Ia = {};
|
|
79627
79659
|
const Ba = g, Oa = L;
|
|
79628
|
-
|
|
79660
|
+
Ia.decode = function(e4) {
|
|
79629
79661
|
const t4 = e4.length, n3 = e4.charCodeAt(0), r2 = 34 === n3 || 39 === n3 ? 1 : 0, o2 = 1 === r2 && t4 > 1 && e4.charCodeAt(t4 - 1) === n3 ? t4 - 2 : t4 - 1;
|
|
79630
79662
|
let i2 = "";
|
|
79631
79663
|
for (let n4 = r2; n4 <= o2; n4++) {
|
|
@@ -79644,7 +79676,7 @@ var require_processPagePollCjs = __commonJS({
|
|
|
79644
79676
|
i2 += e4[n4];
|
|
79645
79677
|
}
|
|
79646
79678
|
return i2;
|
|
79647
|
-
},
|
|
79679
|
+
}, Ia.encode = function(e4, t4) {
|
|
79648
79680
|
const n3 = t4 ? "'" : '"', r2 = t4 ? 39 : 34;
|
|
79649
79681
|
let o2 = "", i2 = false;
|
|
79650
79682
|
for (let t5 = 0; t5 < e4.length; t5++) {
|
|
@@ -79653,12 +79685,12 @@ var require_processPagePollCjs = __commonJS({
|
|
|
79653
79685
|
}
|
|
79654
79686
|
return n3 + o2 + n3;
|
|
79655
79687
|
};
|
|
79656
|
-
const Ua =
|
|
79657
|
-
|
|
79688
|
+
const Ua = Ia, Ma = f, Fa = { value: String };
|
|
79689
|
+
Ra.generate = function(e4) {
|
|
79658
79690
|
this.token(Ma.String, Ua.encode(e4.value));
|
|
79659
|
-
},
|
|
79691
|
+
}, Ra.name = "String", Ra.parse = function() {
|
|
79660
79692
|
return { type: "String", loc: this.getLocation(this.tokenStart, this.tokenEnd), value: Ua.decode(this.consume(Ma.String)) };
|
|
79661
|
-
},
|
|
79693
|
+
}, Ra.structure = Fa;
|
|
79662
79694
|
var ja = {};
|
|
79663
79695
|
const Ha = f;
|
|
79664
79696
|
function qa(e4) {
|
|
@@ -79797,7 +79829,7 @@ var require_processPagePollCjs = __commonJS({
|
|
|
79797
79829
|
}
|
|
79798
79830
|
return "url(" + t4 + ")";
|
|
79799
79831
|
};
|
|
79800
|
-
const cs = as, us =
|
|
79832
|
+
const cs = as, us = Ia, hs = f, ds = { value: String };
|
|
79801
79833
|
is.generate = function(e4) {
|
|
79802
79834
|
this.token(hs.Url, cs.encode(e4.value));
|
|
79803
79835
|
}, is.name = "Url", is.parse = function() {
|
|
@@ -79827,8 +79859,8 @@ var require_processPagePollCjs = __commonJS({
|
|
|
79827
79859
|
}, ms.name = "WhiteSpace", ms.parse = function() {
|
|
79828
79860
|
return this.eat(fs.WhiteSpace), gs;
|
|
79829
79861
|
}, ms.structure = bs;
|
|
79830
|
-
const ys = zo, ks = Mo, ws = Wo, vs = Vo, xs = Xo, Ss = ri, _s = ii, Cs = si, As = ci, zs = di, Ls = fi,
|
|
79831
|
-
Ao.AnPlusB = ys, Ao.Atrule = ks, Ao.AtrulePrelude = ws, Ao.AttributeSelector = vs, Ao.Block = xs, Ao.Brackets = Ss, Ao.CDC = _s, Ao.CDO = Cs, Ao.ClassSelector = As, Ao.Combinator = zs, Ao.Comment = Ls, Ao.Declaration =
|
|
79862
|
+
const ys = zo, ks = Mo, ws = Wo, vs = Vo, xs = Xo, Ss = ri, _s = ii, Cs = si, As = ci, zs = di, Ls = fi, Es = yi, Ts = zi, Ns = Ti, Ds = Pi, Ps = Bi, Rs = Mi, Is = Hi, Bs = $i, Os = Zi, Us = Yi, Ms = Qi, Fs = ea, js = na, Hs = ia, qs = sa, Ws = ca, $s = da, Vs = fa, Ks = ya, Zs = Sa, Gs = za, Ys = Na, Xs = Da, Qs = Ra, Js = ja, el = Wa, tl = Za, nl = is, rl = ps, ol = ms;
|
|
79863
|
+
Ao.AnPlusB = ys, Ao.Atrule = ks, Ao.AtrulePrelude = ws, Ao.AttributeSelector = vs, Ao.Block = xs, Ao.Brackets = Ss, Ao.CDC = _s, Ao.CDO = Cs, Ao.ClassSelector = As, Ao.Combinator = zs, Ao.Comment = Ls, Ao.Declaration = Es, Ao.DeclarationList = Ts, Ao.Dimension = Ns, Ao.Function = Ds, Ao.Hash = Ps, Ao.Identifier = Rs, Ao.IdSelector = Is, Ao.MediaFeature = Bs, Ao.MediaQuery = Os, Ao.MediaQueryList = Us, Ao.NestingSelector = Ms, Ao.Nth = Fs, Ao.Number = js, Ao.Operator = Hs, Ao.Parentheses = qs, Ao.Percentage = Ws, Ao.PseudoClassSelector = $s, Ao.PseudoElementSelector = Vs, Ao.Ratio = Ks, Ao.Raw = Zs, Ao.Rule = Gs, Ao.Selector = Ys, Ao.SelectorList = Xs, Ao.String = Qs, Ao.StyleSheet = Js, Ao.TypeSelector = el, Ao.UnicodeRange = tl, Ao.Url = nl, Ao.Value = rl, Ao.WhiteSpace = ol;
|
|
79832
79864
|
var il = { generic: true, generic: true, units: { angle: ["deg", "grad", "rad", "turn"], decibel: ["db"], flex: ["fr"], frequency: ["hz", "khz"], length: ["cm", "mm", "q", "in", "pt", "pc", "px", "em", "rem", "ex", "rex", "cap", "rcap", "ch", "rch", "ic", "ric", "lh", "rlh", "vw", "svw", "lvw", "dvw", "vh", "svh", "lvh", "dvh", "vi", "svi", "lvi", "dvi", "vb", "svb", "lvb", "dvb", "vmin", "svmin", "lvmin", "dvmin", "vmax", "svmax", "lvmax", "dvmax", "cqw", "cqh", "cqi", "cqb", "cqmin", "cqmax"], resolution: ["dpi", "dpcm", "dppx", "x"], semitones: ["st"], time: ["s", "ms"] }, types: { "abs()": "abs( <calc-sum> )", "absolute-size": "xx-small|x-small|small|medium|large|x-large|xx-large|xxx-large", "acos()": "acos( <calc-sum> )", "alpha-value": "<number>|<percentage>", "angle-percentage": "<angle>|<percentage>", "angular-color-hint": "<angle-percentage>", "angular-color-stop": "<color>&&<color-stop-angle>?", "angular-color-stop-list": "[<angular-color-stop> [, <angular-color-hint>]?]# , <angular-color-stop>", "animateable-feature": "scroll-position|contents|<custom-ident>", "asin()": "asin( <calc-sum> )", "atan()": "atan( <calc-sum> )", "atan2()": "atan2( <calc-sum> , <calc-sum> )", attachment: "scroll|fixed|local", "attr()": "attr( <attr-name> <type-or-unit>? [, <attr-fallback>]? )", "attr-matcher": "['~'|'|'|'^'|'$'|'*']? '='", "attr-modifier": "i|s", "attribute-selector": "'[' <wq-name> ']'|'[' <wq-name> <attr-matcher> [<string-token>|<ident-token>] <attr-modifier>? ']'", "auto-repeat": "repeat( [auto-fill|auto-fit] , [<line-names>? <fixed-size>]+ <line-names>? )", "auto-track-list": "[<line-names>? [<fixed-size>|<fixed-repeat>]]* <line-names>? <auto-repeat> [<line-names>? [<fixed-size>|<fixed-repeat>]]* <line-names>?", axis: "block|inline|vertical|horizontal", "baseline-position": "[first|last]? baseline", "basic-shape": "<inset()>|<circle()>|<ellipse()>|<polygon()>|<path()>", "bg-image": "none|<image>", "bg-layer": "<bg-image>||<bg-position> [/ <bg-size>]?||<repeat-style>||<attachment>||<box>||<box>", "bg-position": "[[left|center|right|top|bottom|<length-percentage>]|[left|center|right|<length-percentage>] [top|center|bottom|<length-percentage>]|[center|[left|right] <length-percentage>?]&&[center|[top|bottom] <length-percentage>?]]", "bg-size": "[<length-percentage>|auto]{1,2}|cover|contain", "blur()": "blur( <length> )", "blend-mode": "normal|multiply|screen|overlay|darken|lighten|color-dodge|color-burn|hard-light|soft-light|difference|exclusion|hue|saturation|color|luminosity", box: "border-box|padding-box|content-box", "brightness()": "brightness( <number-percentage> )", "calc()": "calc( <calc-sum> )", "calc-sum": "<calc-product> [['+'|'-'] <calc-product>]*", "calc-product": "<calc-value> ['*' <calc-value>|'/' <number>]*", "calc-value": "<number>|<dimension>|<percentage>|<calc-constant>|( <calc-sum> )", "calc-constant": "e|pi|infinity|-infinity|NaN", "cf-final-image": "<image>|<color>", "cf-mixing-image": "<percentage>?&&<image>", "circle()": "circle( [<shape-radius>]? [at <position>]? )", "clamp()": "clamp( <calc-sum>#{3} )", "class-selector": "'.' <ident-token>", "clip-source": "<url>", color: "<rgb()>|<rgba()>|<hsl()>|<hsla()>|<hwb()>|<lab()>|<lch()>|<hex-color>|<named-color>|currentcolor|<deprecated-system-color>", "color-stop": "<color-stop-length>|<color-stop-angle>", "color-stop-angle": "<angle-percentage>{1,2}", "color-stop-length": "<length-percentage>{1,2}", "color-stop-list": "[<linear-color-stop> [, <linear-color-hint>]?]# , <linear-color-stop>", combinator: "'>'|'+'|'~'|['||']", "common-lig-values": "[common-ligatures|no-common-ligatures]", "compat-auto": "searchfield|textarea|push-button|slider-horizontal|checkbox|radio|square-button|menulist|listbox|meter|progress-bar|button", "composite-style": "clear|copy|source-over|source-in|source-out|source-atop|destination-over|destination-in|destination-out|destination-atop|xor", "compositing-operator": "add|subtract|intersect|exclude", "compound-selector": "[<type-selector>? <subclass-selector>* [<pseudo-element-selector> <pseudo-class-selector>*]*]!", "compound-selector-list": "<compound-selector>#", "complex-selector": "<compound-selector> [<combinator>? <compound-selector>]*", "complex-selector-list": "<complex-selector>#", "conic-gradient()": "conic-gradient( [from <angle>]? [at <position>]? , <angular-color-stop-list> )", "contextual-alt-values": "[contextual|no-contextual]", "content-distribution": "space-between|space-around|space-evenly|stretch", "content-list": "[<string>|contents|<image>|<counter>|<quote>|<target>|<leader()>|<attr()>]+", "content-position": "center|start|end|flex-start|flex-end", "content-replacement": "<image>", "contrast()": "contrast( [<number-percentage>] )", "cos()": "cos( <calc-sum> )", counter: "<counter()>|<counters()>", "counter()": "counter( <counter-name> , <counter-style>? )", "counter-name": "<custom-ident>", "counter-style": "<counter-style-name>|symbols( )", "counter-style-name": "<custom-ident>", "counters()": "counters( <counter-name> , <string> , <counter-style>? )", "cross-fade()": "cross-fade( <cf-mixing-image> , <cf-final-image>? )", "cubic-bezier-timing-function": "ease|ease-in|ease-out|ease-in-out|cubic-bezier( <number [0,1]> , <number> , <number [0,1]> , <number> )", "deprecated-system-color": "ActiveBorder|ActiveCaption|AppWorkspace|Background|ButtonFace|ButtonHighlight|ButtonShadow|ButtonText|CaptionText|GrayText|Highlight|HighlightText|InactiveBorder|InactiveCaption|InactiveCaptionText|InfoBackground|InfoText|Menu|MenuText|Scrollbar|ThreeDDarkShadow|ThreeDFace|ThreeDHighlight|ThreeDLightShadow|ThreeDShadow|Window|WindowFrame|WindowText", "discretionary-lig-values": "[discretionary-ligatures|no-discretionary-ligatures]", "display-box": "contents|none", "display-inside": "flow|flow-root|table|flex|grid|ruby", "display-internal": "table-row-group|table-header-group|table-footer-group|table-row|table-cell|table-column-group|table-column|table-caption|ruby-base|ruby-text|ruby-base-container|ruby-text-container", "display-legacy": "inline-block|inline-list-item|inline-table|inline-flex|inline-grid", "display-listitem": "<display-outside>?&&[flow|flow-root]?&&list-item", "display-outside": "block|inline|run-in", "drop-shadow()": "drop-shadow( <length>{2,3} <color>? )", "east-asian-variant-values": "[jis78|jis83|jis90|jis04|simplified|traditional]", "east-asian-width-values": "[full-width|proportional-width]", "element()": "element( <custom-ident> , [first|start|last|first-except]? )|element( <id-selector> )", "ellipse()": "ellipse( [<shape-radius>{2}]? [at <position>]? )", "ending-shape": "circle|ellipse", "env()": "env( <custom-ident> , <declaration-value>? )", "exp()": "exp( <calc-sum> )", "explicit-track-list": "[<line-names>? <track-size>]+ <line-names>?", "family-name": "<string>|<custom-ident>+", "feature-tag-value": "<string> [<integer>|on|off]?", "feature-type": "@stylistic|@historical-forms|@styleset|@character-variant|@swash|@ornaments|@annotation", "feature-value-block": "<feature-type> '{' <feature-value-declaration-list> '}'", "feature-value-block-list": "<feature-value-block>+", "feature-value-declaration": "<custom-ident> : <integer>+ ;", "feature-value-declaration-list": "<feature-value-declaration>", "feature-value-name": "<custom-ident>", "fill-rule": "nonzero|evenodd", "filter-function": "<blur()>|<brightness()>|<contrast()>|<drop-shadow()>|<grayscale()>|<hue-rotate()>|<invert()>|<opacity()>|<saturate()>|<sepia()>", "filter-function-list": "[<filter-function>|<url>]+", "final-bg-layer": "<'background-color'>||<bg-image>||<bg-position> [/ <bg-size>]?||<repeat-style>||<attachment>||<box>||<box>", "fixed-breadth": "<length-percentage>", "fixed-repeat": "repeat( [<integer [1,\u221E]>] , [<line-names>? <fixed-size>]+ <line-names>? )", "fixed-size": "<fixed-breadth>|minmax( <fixed-breadth> , <track-breadth> )|minmax( <inflexible-breadth> , <fixed-breadth> )", "font-stretch-absolute": "normal|ultra-condensed|extra-condensed|condensed|semi-condensed|semi-expanded|expanded|extra-expanded|ultra-expanded|<percentage>", "font-variant-css21": "[normal|small-caps]", "font-weight-absolute": "normal|bold|<number [1,1000]>", "frequency-percentage": "<frequency>|<percentage>", "general-enclosed": "[<function-token> <any-value> )]|( <ident> <any-value> )", "generic-family": "serif|sans-serif|cursive|fantasy|monospace|-apple-system", "generic-name": "serif|sans-serif|cursive|fantasy|monospace", "geometry-box": "<shape-box>|fill-box|stroke-box|view-box", gradient: "<linear-gradient()>|<repeating-linear-gradient()>|<radial-gradient()>|<repeating-radial-gradient()>|<conic-gradient()>|<repeating-conic-gradient()>|<-legacy-gradient>", "grayscale()": "grayscale( <number-percentage> )", "grid-line": "auto|<custom-ident>|[<integer>&&<custom-ident>?]|[span&&[<integer>||<custom-ident>]]", "historical-lig-values": "[historical-ligatures|no-historical-ligatures]", "hsl()": "hsl( <hue> <percentage> <percentage> [/ <alpha-value>]? )|hsl( <hue> , <percentage> , <percentage> , <alpha-value>? )", "hsla()": "hsla( <hue> <percentage> <percentage> [/ <alpha-value>]? )|hsla( <hue> , <percentage> , <percentage> , <alpha-value>? )", hue: "<number>|<angle>", "hue-rotate()": "hue-rotate( <angle> )", "hwb()": "hwb( [<hue>|none] [<percentage>|none] [<percentage>|none] [/ [<alpha-value>|none]]? )", "hypot()": "hypot( <calc-sum># )", image: "<url>|<image()>|<image-set()>|<element()>|<paint()>|<cross-fade()>|<gradient>", "image()": "image( <image-tags>? [<image-src>? , <color>?]! )", "image-set()": "image-set( <image-set-option># )", "image-set-option": "[<image>|<string>] [<resolution>||type( <string> )]", "image-src": "<url>|<string>", "image-tags": "ltr|rtl", "inflexible-breadth": "<length-percentage>|min-content|max-content|auto", "inset()": "inset( <length-percentage>{1,4} [round <'border-radius'>]? )", "invert()": "invert( <number-percentage> )", "keyframes-name": "<custom-ident>|<string>", "keyframe-block": "<keyframe-selector># { <declaration-list> }", "keyframe-block-list": "<keyframe-block>+", "keyframe-selector": "from|to|<percentage>", "lab()": "lab( [<percentage>|<number>|none] [<percentage>|<number>|none] [<percentage>|<number>|none] [/ [<alpha-value>|none]]? )", "layer()": "layer( <layer-name> )", "layer-name": "<ident> ['.' <ident>]*", "lch()": "lch( [<percentage>|<number>|none] [<percentage>|<number>|none] [<hue>|none] [/ [<alpha-value>|none]]? )", "leader()": "leader( <leader-type> )", "leader-type": "dotted|solid|space|<string>", "length-percentage": "<length>|<percentage>", "line-names": "'[' <custom-ident>* ']'", "line-name-list": "[<line-names>|<name-repeat>]+", "line-style": "none|hidden|dotted|dashed|solid|double|groove|ridge|inset|outset", "line-width": "<length>|thin|medium|thick", "linear-color-hint": "<length-percentage>", "linear-color-stop": "<color> <color-stop-length>?", "linear-gradient()": "linear-gradient( [<angle>|to <side-or-corner>]? , <color-stop-list> )", "log()": "log( <calc-sum> , <calc-sum>? )", "mask-layer": "<mask-reference>||<position> [/ <bg-size>]?||<repeat-style>||<geometry-box>||[<geometry-box>|no-clip]||<compositing-operator>||<masking-mode>", "mask-position": "[<length-percentage>|left|center|right] [<length-percentage>|top|center|bottom]?", "mask-reference": "none|<image>|<mask-source>", "mask-source": "<url>", "masking-mode": "alpha|luminance|match-source", "matrix()": "matrix( <number>#{6} )", "matrix3d()": "matrix3d( <number>#{16} )", "max()": "max( <calc-sum># )", "media-and": "<media-in-parens> [and <media-in-parens>]+", "media-condition": "<media-not>|<media-and>|<media-or>|<media-in-parens>", "media-condition-without-or": "<media-not>|<media-and>|<media-in-parens>", "media-feature": "( [<mf-plain>|<mf-boolean>|<mf-range>] )", "media-in-parens": "( <media-condition> )|<media-feature>|<general-enclosed>", "media-not": "not <media-in-parens>", "media-or": "<media-in-parens> [or <media-in-parens>]+", "media-query": "<media-condition>|[not|only]? <media-type> [and <media-condition-without-or>]?", "media-query-list": "<media-query>#", "media-type": "<ident>", "mf-boolean": "<mf-name>", "mf-name": "<ident>", "mf-plain": "<mf-name> : <mf-value>", "mf-range": "<mf-name> ['<'|'>']? '='? <mf-value>|<mf-value> ['<'|'>']? '='? <mf-name>|<mf-value> '<' '='? <mf-name> '<' '='? <mf-value>|<mf-value> '>' '='? <mf-name> '>' '='? <mf-value>", "mf-value": "<number>|<dimension>|<ident>|<ratio>", "min()": "min( <calc-sum># )", "minmax()": "minmax( [<length-percentage>|min-content|max-content|auto] , [<length-percentage>|<flex>|min-content|max-content|auto] )", "mod()": "mod( <calc-sum> , <calc-sum> )", "name-repeat": "repeat( [<integer [1,\u221E]>|auto-fill] , <line-names>+ )", "named-color": "transparent|aliceblue|antiquewhite|aqua|aquamarine|azure|beige|bisque|black|blanchedalmond|blue|blueviolet|brown|burlywood|cadetblue|chartreuse|chocolate|coral|cornflowerblue|cornsilk|crimson|cyan|darkblue|darkcyan|darkgoldenrod|darkgray|darkgreen|darkgrey|darkkhaki|darkmagenta|darkolivegreen|darkorange|darkorchid|darkred|darksalmon|darkseagreen|darkslateblue|darkslategray|darkslategrey|darkturquoise|darkviolet|deeppink|deepskyblue|dimgray|dimgrey|dodgerblue|firebrick|floralwhite|forestgreen|fuchsia|gainsboro|ghostwhite|gold|goldenrod|gray|green|greenyellow|grey|honeydew|hotpink|indianred|indigo|ivory|khaki|lavender|lavenderblush|lawngreen|lemonchiffon|lightblue|lightcoral|lightcyan|lightgoldenrodyellow|lightgray|lightgreen|lightgrey|lightpink|lightsalmon|lightseagreen|lightskyblue|lightslategray|lightslategrey|lightsteelblue|lightyellow|lime|limegreen|linen|magenta|maroon|mediumaquamarine|mediumblue|mediumorchid|mediumpurple|mediumseagreen|mediumslateblue|mediumspringgreen|mediumturquoise|mediumvioletred|midnightblue|mintcream|mistyrose|moccasin|navajowhite|navy|oldlace|olive|olivedrab|orange|orangered|orchid|palegoldenrod|palegreen|paleturquoise|palevioletred|papayawhip|peachpuff|peru|pink|plum|powderblue|purple|rebeccapurple|red|rosybrown|royalblue|saddlebrown|salmon|sandybrown|seagreen|seashell|sienna|silver|skyblue|slateblue|slategray|slategrey|snow|springgreen|steelblue|tan|teal|thistle|tomato|turquoise|violet|wheat|white|whitesmoke|yellow|yellowgreen|<-non-standard-color>", "namespace-prefix": "<ident>", "ns-prefix": "[<ident-token>|'*']? '|'", "number-percentage": "<number>|<percentage>", "numeric-figure-values": "[lining-nums|oldstyle-nums]", "numeric-fraction-values": "[diagonal-fractions|stacked-fractions]", "numeric-spacing-values": "[proportional-nums|tabular-nums]", nth: "<an-plus-b>|even|odd", "opacity()": "opacity( [<number-percentage>] )", "overflow-position": "unsafe|safe", "outline-radius": "<length>|<percentage>", "page-body": "<declaration>? [; <page-body>]?|<page-margin-box> <page-body>", "page-margin-box": "<page-margin-box-type> '{' <declaration-list> '}'", "page-margin-box-type": "@top-left-corner|@top-left|@top-center|@top-right|@top-right-corner|@bottom-left-corner|@bottom-left|@bottom-center|@bottom-right|@bottom-right-corner|@left-top|@left-middle|@left-bottom|@right-top|@right-middle|@right-bottom", "page-selector-list": "[<page-selector>#]?", "page-selector": "<pseudo-page>+|<ident> <pseudo-page>*", "page-size": "A5|A4|A3|B5|B4|JIS-B5|JIS-B4|letter|legal|ledger", "path()": "path( [<fill-rule> ,]? <string> )", "paint()": "paint( <ident> , <declaration-value>? )", "perspective()": "perspective( [<length [0,\u221E]>|none] )", "polygon()": "polygon( <fill-rule>? , [<length-percentage> <length-percentage>]# )", position: "[[left|center|right]||[top|center|bottom]|[left|center|right|<length-percentage>] [top|center|bottom|<length-percentage>]?|[[left|right] <length-percentage>]&&[[top|bottom] <length-percentage>]]", "pow()": "pow( <calc-sum> , <calc-sum> )", "pseudo-class-selector": "':' <ident-token>|':' <function-token> <any-value> ')'", "pseudo-element-selector": "':' <pseudo-class-selector>", "pseudo-page": ": [left|right|first|blank]", quote: "open-quote|close-quote|no-open-quote|no-close-quote", "radial-gradient()": "radial-gradient( [<ending-shape>||<size>]? [at <position>]? , <color-stop-list> )", ratio: "<number [0,\u221E]> [/ <number [0,\u221E]>]?", "relative-selector": "<combinator>? <complex-selector>", "relative-selector-list": "<relative-selector>#", "relative-size": "larger|smaller", "rem()": "rem( <calc-sum> , <calc-sum> )", "repeat-style": "repeat-x|repeat-y|[repeat|space|round|no-repeat]{1,2}", "repeating-conic-gradient()": "repeating-conic-gradient( [from <angle>]? [at <position>]? , <angular-color-stop-list> )", "repeating-linear-gradient()": "repeating-linear-gradient( [<angle>|to <side-or-corner>]? , <color-stop-list> )", "repeating-radial-gradient()": "repeating-radial-gradient( [<ending-shape>||<size>]? [at <position>]? , <color-stop-list> )", "reversed-counter-name": "reversed( <counter-name> )", "rgb()": "rgb( <percentage>{3} [/ <alpha-value>]? )|rgb( <number>{3} [/ <alpha-value>]? )|rgb( <percentage>#{3} , <alpha-value>? )|rgb( <number>#{3} , <alpha-value>? )", "rgba()": "rgba( <percentage>{3} [/ <alpha-value>]? )|rgba( <number>{3} [/ <alpha-value>]? )|rgba( <percentage>#{3} , <alpha-value>? )|rgba( <number>#{3} , <alpha-value>? )", "rotate()": "rotate( [<angle>|<zero>] )", "rotate3d()": "rotate3d( <number> , <number> , <number> , [<angle>|<zero>] )", "rotateX()": "rotateX( [<angle>|<zero>] )", "rotateY()": "rotateY( [<angle>|<zero>] )", "rotateZ()": "rotateZ( [<angle>|<zero>] )", "round()": "round( <rounding-strategy>? , <calc-sum> , <calc-sum> )", "rounding-strategy": "nearest|up|down|to-zero", "saturate()": "saturate( <number-percentage> )", "scale()": "scale( [<number>|<percentage>]#{1,2} )", "scale3d()": "scale3d( [<number>|<percentage>]#{3} )", "scaleX()": "scaleX( [<number>|<percentage>] )", "scaleY()": "scaleY( [<number>|<percentage>] )", "scaleZ()": "scaleZ( [<number>|<percentage>] )", scroller: "root|nearest", "self-position": "center|start|end|self-start|self-end|flex-start|flex-end", "shape-radius": "<length-percentage>|closest-side|farthest-side", "sign()": "sign( <calc-sum> )", "skew()": "skew( [<angle>|<zero>] , [<angle>|<zero>]? )", "skewX()": "skewX( [<angle>|<zero>] )", "skewY()": "skewY( [<angle>|<zero>] )", "sepia()": "sepia( <number-percentage> )", shadow: "inset?&&<length>{2,4}&&<color>?", "shadow-t": "[<length>{2,3}&&<color>?]", shape: "rect( <top> , <right> , <bottom> , <left> )|rect( <top> <right> <bottom> <left> )", "shape-box": "<box>|margin-box", "side-or-corner": "[left|right]||[top|bottom]", "sin()": "sin( <calc-sum> )", "single-animation": "<time>||<easing-function>||<time>||<single-animation-iteration-count>||<single-animation-direction>||<single-animation-fill-mode>||<single-animation-play-state>||[none|<keyframes-name>]", "single-animation-direction": "normal|reverse|alternate|alternate-reverse", "single-animation-fill-mode": "none|forwards|backwards|both", "single-animation-iteration-count": "infinite|<number>", "single-animation-play-state": "running|paused", "single-animation-timeline": "auto|none|<timeline-name>|scroll( <axis>? <scroller>? )", "single-transition": "[none|<single-transition-property>]||<time>||<easing-function>||<time>", "single-transition-property": "all|<custom-ident>", size: "closest-side|farthest-side|closest-corner|farthest-corner|<length>|<length-percentage>{2}", "sqrt()": "sqrt( <calc-sum> )", "step-position": "jump-start|jump-end|jump-none|jump-both|start|end", "step-timing-function": "step-start|step-end|steps( <integer> [, <step-position>]? )", "subclass-selector": "<id-selector>|<class-selector>|<attribute-selector>|<pseudo-class-selector>", "supports-condition": "not <supports-in-parens>|<supports-in-parens> [and <supports-in-parens>]*|<supports-in-parens> [or <supports-in-parens>]*", "supports-in-parens": "( <supports-condition> )|<supports-feature>|<general-enclosed>", "supports-feature": "<supports-decl>|<supports-selector-fn>", "supports-decl": "( <declaration> )", "supports-selector-fn": "selector( <complex-selector> )", symbol: "<string>|<image>|<custom-ident>", "tan()": "tan( <calc-sum> )", target: "<target-counter()>|<target-counters()>|<target-text()>", "target-counter()": "target-counter( [<string>|<url>] , <custom-ident> , <counter-style>? )", "target-counters()": "target-counters( [<string>|<url>] , <custom-ident> , <string> , <counter-style>? )", "target-text()": "target-text( [<string>|<url>] , [content|before|after|first-letter]? )", "time-percentage": "<time>|<percentage>", "timeline-name": "<custom-ident>|<string>", "easing-function": "linear|<cubic-bezier-timing-function>|<step-timing-function>", "track-breadth": "<length-percentage>|<flex>|min-content|max-content|auto", "track-list": "[<line-names>? [<track-size>|<track-repeat>]]+ <line-names>?", "track-repeat": "repeat( [<integer [1,\u221E]>] , [<line-names>? <track-size>]+ <line-names>? )", "track-size": "<track-breadth>|minmax( <inflexible-breadth> , <track-breadth> )|fit-content( <length-percentage> )", "transform-function": "<matrix()>|<translate()>|<translateX()>|<translateY()>|<scale()>|<scaleX()>|<scaleY()>|<rotate()>|<skew()>|<skewX()>|<skewY()>|<matrix3d()>|<translate3d()>|<translateZ()>|<scale3d()>|<scaleZ()>|<rotate3d()>|<rotateX()>|<rotateY()>|<rotateZ()>|<perspective()>", "transform-list": "<transform-function>+", "translate()": "translate( <length-percentage> , <length-percentage>? )", "translate3d()": "translate3d( <length-percentage> , <length-percentage> , <length> )", "translateX()": "translateX( <length-percentage> )", "translateY()": "translateY( <length-percentage> )", "translateZ()": "translateZ( <length> )", "type-or-unit": "string|color|url|integer|number|length|angle|time|frequency|cap|ch|em|ex|ic|lh|rlh|rem|vb|vi|vw|vh|vmin|vmax|mm|Q|cm|in|pt|pc|px|deg|grad|rad|turn|ms|s|Hz|kHz|%", "type-selector": "<wq-name>|<ns-prefix>? '*'", "var()": "var( <custom-property-name> , <declaration-value>? )", "viewport-length": "auto|<length-percentage>", "visual-box": "content-box|padding-box|border-box", "wq-name": "<ns-prefix>? <ident-token>", "-legacy-gradient": "<-webkit-gradient()>|<-legacy-linear-gradient>|<-legacy-repeating-linear-gradient>|<-legacy-radial-gradient>|<-legacy-repeating-radial-gradient>", "-legacy-linear-gradient": "-moz-linear-gradient( <-legacy-linear-gradient-arguments> )|-webkit-linear-gradient( <-legacy-linear-gradient-arguments> )|-o-linear-gradient( <-legacy-linear-gradient-arguments> )", "-legacy-repeating-linear-gradient": "-moz-repeating-linear-gradient( <-legacy-linear-gradient-arguments> )|-webkit-repeating-linear-gradient( <-legacy-linear-gradient-arguments> )|-o-repeating-linear-gradient( <-legacy-linear-gradient-arguments> )", "-legacy-linear-gradient-arguments": "[<angle>|<side-or-corner>]? , <color-stop-list>", "-legacy-radial-gradient": "-moz-radial-gradient( <-legacy-radial-gradient-arguments> )|-webkit-radial-gradient( <-legacy-radial-gradient-arguments> )|-o-radial-gradient( <-legacy-radial-gradient-arguments> )", "-legacy-repeating-radial-gradient": "-moz-repeating-radial-gradient( <-legacy-radial-gradient-arguments> )|-webkit-repeating-radial-gradient( <-legacy-radial-gradient-arguments> )|-o-repeating-radial-gradient( <-legacy-radial-gradient-arguments> )", "-legacy-radial-gradient-arguments": "[<position> ,]? [[[<-legacy-radial-gradient-shape>||<-legacy-radial-gradient-size>]|[<length>|<percentage>]{2}] ,]? <color-stop-list>", "-legacy-radial-gradient-size": "closest-side|closest-corner|farthest-side|farthest-corner|contain|cover", "-legacy-radial-gradient-shape": "circle|ellipse", "-non-standard-font": "-apple-system-body|-apple-system-headline|-apple-system-subheadline|-apple-system-caption1|-apple-system-caption2|-apple-system-footnote|-apple-system-short-body|-apple-system-short-headline|-apple-system-short-subheadline|-apple-system-short-caption1|-apple-system-short-footnote|-apple-system-tall-body", "-non-standard-color": "-moz-ButtonDefault|-moz-ButtonHoverFace|-moz-ButtonHoverText|-moz-CellHighlight|-moz-CellHighlightText|-moz-Combobox|-moz-ComboboxText|-moz-Dialog|-moz-DialogText|-moz-dragtargetzone|-moz-EvenTreeRow|-moz-Field|-moz-FieldText|-moz-html-CellHighlight|-moz-html-CellHighlightText|-moz-mac-accentdarkestshadow|-moz-mac-accentdarkshadow|-moz-mac-accentface|-moz-mac-accentlightesthighlight|-moz-mac-accentlightshadow|-moz-mac-accentregularhighlight|-moz-mac-accentregularshadow|-moz-mac-chrome-active|-moz-mac-chrome-inactive|-moz-mac-focusring|-moz-mac-menuselect|-moz-mac-menushadow|-moz-mac-menutextselect|-moz-MenuHover|-moz-MenuHoverText|-moz-MenuBarText|-moz-MenuBarHoverText|-moz-nativehyperlinktext|-moz-OddTreeRow|-moz-win-communicationstext|-moz-win-mediatext|-moz-activehyperlinktext|-moz-default-background-color|-moz-default-color|-moz-hyperlinktext|-moz-visitedhyperlinktext|-webkit-activelink|-webkit-focus-ring-color|-webkit-link|-webkit-text", "-non-standard-image-rendering": "optimize-contrast|-moz-crisp-edges|-o-crisp-edges|-webkit-optimize-contrast", "-non-standard-overflow": "-moz-scrollbars-none|-moz-scrollbars-horizontal|-moz-scrollbars-vertical|-moz-hidden-unscrollable", "-non-standard-width": "fill-available|min-intrinsic|intrinsic|-moz-available|-moz-fit-content|-moz-min-content|-moz-max-content|-webkit-min-content|-webkit-max-content", "-webkit-gradient()": "-webkit-gradient( <-webkit-gradient-type> , <-webkit-gradient-point> [, <-webkit-gradient-point>|, <-webkit-gradient-radius> , <-webkit-gradient-point>] [, <-webkit-gradient-radius>]? [, <-webkit-gradient-color-stop>]* )", "-webkit-gradient-color-stop": "from( <color> )|color-stop( [<number-zero-one>|<percentage>] , <color> )|to( <color> )", "-webkit-gradient-point": "[left|center|right|<length-percentage>] [top|center|bottom|<length-percentage>]", "-webkit-gradient-radius": "<length>|<percentage>", "-webkit-gradient-type": "linear|radial", "-webkit-mask-box-repeat": "repeat|stretch|round", "-webkit-mask-clip-style": "border|border-box|padding|padding-box|content|content-box|text", "-ms-filter-function-list": "<-ms-filter-function>+", "-ms-filter-function": "<-ms-filter-function-progid>|<-ms-filter-function-legacy>", "-ms-filter-function-progid": "'progid:' [<ident-token> '.']* [<ident-token>|<function-token> <any-value>? )]", "-ms-filter-function-legacy": "<ident-token>|<function-token> <any-value>? )", "-ms-filter": "<string>", age: "child|young|old", "attr-name": "<wq-name>", "attr-fallback": "<any-value>", "bg-clip": "<box>|border|text", bottom: "<length>|auto", "generic-voice": "[<age>? <gender> <integer>?]", gender: "male|female|neutral", left: "<length>|auto", "mask-image": "<mask-reference>#", paint: "none|<color>|<url> [none|<color>]?|context-fill|context-stroke", right: "<length>|auto", "scroll-timeline-axis": "block|inline|vertical|horizontal", "scroll-timeline-name": "none|<custom-ident>", "single-animation-composition": "replace|add|accumulate", "svg-length": "<percentage>|<length>|<number>", "svg-writing-mode": "lr-tb|rl-tb|tb-rl|lr|rl|tb", top: "<length>|auto", x: "<number>", y: "<number>", declaration: "<ident-token> : <declaration-value>? ['!' important]?", "declaration-list": "[<declaration>? ';']* <declaration>?", url: "url( <string> <url-modifier>* )|<url-token>", "url-modifier": "<ident>|<function-token> <any-value> )", "number-zero-one": "<number [0,1]>", "number-one-or-greater": "<number [1,\u221E]>", "-non-standard-display": "-ms-inline-flexbox|-ms-grid|-ms-inline-grid|-webkit-flex|-webkit-inline-flex|-webkit-box|-webkit-inline-box|-moz-inline-stack|-moz-box|-moz-inline-box" }, properties: { "--*": "<declaration-value>", "-ms-accelerator": "false|true", "-ms-block-progression": "tb|rl|bt|lr", "-ms-content-zoom-chaining": "none|chained", "-ms-content-zooming": "none|zoom", "-ms-content-zoom-limit": "<'-ms-content-zoom-limit-min'> <'-ms-content-zoom-limit-max'>", "-ms-content-zoom-limit-max": "<percentage>", "-ms-content-zoom-limit-min": "<percentage>", "-ms-content-zoom-snap": "<'-ms-content-zoom-snap-type'>||<'-ms-content-zoom-snap-points'>", "-ms-content-zoom-snap-points": "snapInterval( <percentage> , <percentage> )|snapList( <percentage># )", "-ms-content-zoom-snap-type": "none|proximity|mandatory", "-ms-filter": "<string>", "-ms-flow-from": "[none|<custom-ident>]#", "-ms-flow-into": "[none|<custom-ident>]#", "-ms-grid-columns": "none|<track-list>|<auto-track-list>", "-ms-grid-rows": "none|<track-list>|<auto-track-list>", "-ms-high-contrast-adjust": "auto|none", "-ms-hyphenate-limit-chars": "auto|<integer>{1,3}", "-ms-hyphenate-limit-lines": "no-limit|<integer>", "-ms-hyphenate-limit-zone": "<percentage>|<length>", "-ms-ime-align": "auto|after", "-ms-overflow-style": "auto|none|scrollbar|-ms-autohiding-scrollbar", "-ms-scrollbar-3dlight-color": "<color>", "-ms-scrollbar-arrow-color": "<color>", "-ms-scrollbar-base-color": "<color>", "-ms-scrollbar-darkshadow-color": "<color>", "-ms-scrollbar-face-color": "<color>", "-ms-scrollbar-highlight-color": "<color>", "-ms-scrollbar-shadow-color": "<color>", "-ms-scrollbar-track-color": "<color>", "-ms-scroll-chaining": "chained|none", "-ms-scroll-limit": "<'-ms-scroll-limit-x-min'> <'-ms-scroll-limit-y-min'> <'-ms-scroll-limit-x-max'> <'-ms-scroll-limit-y-max'>", "-ms-scroll-limit-x-max": "auto|<length>", "-ms-scroll-limit-x-min": "<length>", "-ms-scroll-limit-y-max": "auto|<length>", "-ms-scroll-limit-y-min": "<length>", "-ms-scroll-rails": "none|railed", "-ms-scroll-snap-points-x": "snapInterval( <length-percentage> , <length-percentage> )|snapList( <length-percentage># )", "-ms-scroll-snap-points-y": "snapInterval( <length-percentage> , <length-percentage> )|snapList( <length-percentage># )", "-ms-scroll-snap-type": "none|proximity|mandatory", "-ms-scroll-snap-x": "<'-ms-scroll-snap-type'> <'-ms-scroll-snap-points-x'>", "-ms-scroll-snap-y": "<'-ms-scroll-snap-type'> <'-ms-scroll-snap-points-y'>", "-ms-scroll-translation": "none|vertical-to-horizontal", "-ms-text-autospace": "none|ideograph-alpha|ideograph-numeric|ideograph-parenthesis|ideograph-space", "-ms-touch-select": "grippers|none", "-ms-user-select": "none|element|text", "-ms-wrap-flow": "auto|both|start|end|maximum|clear", "-ms-wrap-margin": "<length>", "-ms-wrap-through": "wrap|none", "-moz-appearance": "none|button|button-arrow-down|button-arrow-next|button-arrow-previous|button-arrow-up|button-bevel|button-focus|caret|checkbox|checkbox-container|checkbox-label|checkmenuitem|dualbutton|groupbox|listbox|listitem|menuarrow|menubar|menucheckbox|menuimage|menuitem|menuitemtext|menulist|menulist-button|menulist-text|menulist-textfield|menupopup|menuradio|menuseparator|meterbar|meterchunk|progressbar|progressbar-vertical|progresschunk|progresschunk-vertical|radio|radio-container|radio-label|radiomenuitem|range|range-thumb|resizer|resizerpanel|scale-horizontal|scalethumbend|scalethumb-horizontal|scalethumbstart|scalethumbtick|scalethumb-vertical|scale-vertical|scrollbarbutton-down|scrollbarbutton-left|scrollbarbutton-right|scrollbarbutton-up|scrollbarthumb-horizontal|scrollbarthumb-vertical|scrollbartrack-horizontal|scrollbartrack-vertical|searchfield|separator|sheet|spinner|spinner-downbutton|spinner-textfield|spinner-upbutton|splitter|statusbar|statusbarpanel|tab|tabpanel|tabpanels|tab-scroll-arrow-back|tab-scroll-arrow-forward|textfield|textfield-multiline|toolbar|toolbarbutton|toolbarbutton-dropdown|toolbargripper|toolbox|tooltip|treeheader|treeheadercell|treeheadersortarrow|treeitem|treeline|treetwisty|treetwistyopen|treeview|-moz-mac-unified-toolbar|-moz-win-borderless-glass|-moz-win-browsertabbar-toolbox|-moz-win-communicationstext|-moz-win-communications-toolbox|-moz-win-exclude-glass|-moz-win-glass|-moz-win-mediatext|-moz-win-media-toolbox|-moz-window-button-box|-moz-window-button-box-maximized|-moz-window-button-close|-moz-window-button-maximize|-moz-window-button-minimize|-moz-window-button-restore|-moz-window-frame-bottom|-moz-window-frame-left|-moz-window-frame-right|-moz-window-titlebar|-moz-window-titlebar-maximized", "-moz-binding": "<url>|none", "-moz-border-bottom-colors": "<color>+|none", "-moz-border-left-colors": "<color>+|none", "-moz-border-right-colors": "<color>+|none", "-moz-border-top-colors": "<color>+|none", "-moz-context-properties": "none|[fill|fill-opacity|stroke|stroke-opacity]#", "-moz-float-edge": "border-box|content-box|margin-box|padding-box", "-moz-force-broken-image-icon": "0|1", "-moz-image-region": "<shape>|auto", "-moz-orient": "inline|block|horizontal|vertical", "-moz-outline-radius": "<outline-radius>{1,4} [/ <outline-radius>{1,4}]?", "-moz-outline-radius-bottomleft": "<outline-radius>", "-moz-outline-radius-bottomright": "<outline-radius>", "-moz-outline-radius-topleft": "<outline-radius>", "-moz-outline-radius-topright": "<outline-radius>", "-moz-stack-sizing": "ignore|stretch-to-fit", "-moz-text-blink": "none|blink", "-moz-user-focus": "ignore|normal|select-after|select-before|select-menu|select-same|select-all|none", "-moz-user-input": "auto|none|enabled|disabled", "-moz-user-modify": "read-only|read-write|write-only", "-moz-window-dragging": "drag|no-drag", "-moz-window-shadow": "default|menu|tooltip|sheet|none", "-webkit-appearance": "none|button|button-bevel|caps-lock-indicator|caret|checkbox|default-button|inner-spin-button|listbox|listitem|media-controls-background|media-controls-fullscreen-background|media-current-time-display|media-enter-fullscreen-button|media-exit-fullscreen-button|media-fullscreen-button|media-mute-button|media-overlay-play-button|media-play-button|media-seek-back-button|media-seek-forward-button|media-slider|media-sliderthumb|media-time-remaining-display|media-toggle-closed-captions-button|media-volume-slider|media-volume-slider-container|media-volume-sliderthumb|menulist|menulist-button|menulist-text|menulist-textfield|meter|progress-bar|progress-bar-value|push-button|radio|scrollbarbutton-down|scrollbarbutton-left|scrollbarbutton-right|scrollbarbutton-up|scrollbargripper-horizontal|scrollbargripper-vertical|scrollbarthumb-horizontal|scrollbarthumb-vertical|scrollbartrack-horizontal|scrollbartrack-vertical|searchfield|searchfield-cancel-button|searchfield-decoration|searchfield-results-button|searchfield-results-decoration|slider-horizontal|slider-vertical|sliderthumb-horizontal|sliderthumb-vertical|square-button|textarea|textfield|-apple-pay-button", "-webkit-border-before": "<'border-width'>||<'border-style'>||<color>", "-webkit-border-before-color": "<color>", "-webkit-border-before-style": "<'border-style'>", "-webkit-border-before-width": "<'border-width'>", "-webkit-box-reflect": "[above|below|right|left]? <length>? <image>?", "-webkit-line-clamp": "none|<integer>", "-webkit-mask": "[<mask-reference>||<position> [/ <bg-size>]?||<repeat-style>||[<box>|border|padding|content|text]||[<box>|border|padding|content]]#", "-webkit-mask-attachment": "<attachment>#", "-webkit-mask-clip": "[<box>|border|padding|content|text]#", "-webkit-mask-composite": "<composite-style>#", "-webkit-mask-image": "<mask-reference>#", "-webkit-mask-origin": "[<box>|border|padding|content]#", "-webkit-mask-position": "<position>#", "-webkit-mask-position-x": "[<length-percentage>|left|center|right]#", "-webkit-mask-position-y": "[<length-percentage>|top|center|bottom]#", "-webkit-mask-repeat": "<repeat-style>#", "-webkit-mask-repeat-x": "repeat|no-repeat|space|round", "-webkit-mask-repeat-y": "repeat|no-repeat|space|round", "-webkit-mask-size": "<bg-size>#", "-webkit-overflow-scrolling": "auto|touch", "-webkit-tap-highlight-color": "<color>", "-webkit-text-fill-color": "<color>", "-webkit-text-stroke": "<length>||<color>", "-webkit-text-stroke-color": "<color>", "-webkit-text-stroke-width": "<length>", "-webkit-touch-callout": "default|none", "-webkit-user-modify": "read-only|read-write|read-write-plaintext-only", "accent-color": "auto|<color>", "align-content": "normal|<baseline-position>|<content-distribution>|<overflow-position>? <content-position>", "align-items": "normal|stretch|<baseline-position>|[<overflow-position>? <self-position>]", "align-self": "auto|normal|stretch|<baseline-position>|<overflow-position>? <self-position>", "align-tracks": "[normal|<baseline-position>|<content-distribution>|<overflow-position>? <content-position>]#", all: "initial|inherit|unset|revert|revert-layer", animation: "<single-animation>#", "animation-composition": "<single-animation-composition>#", "animation-delay": "<time>#", "animation-direction": "<single-animation-direction>#", "animation-duration": "<time>#", "animation-fill-mode": "<single-animation-fill-mode>#", "animation-iteration-count": "<single-animation-iteration-count>#", "animation-name": "[none|<keyframes-name>]#", "animation-play-state": "<single-animation-play-state>#", "animation-timing-function": "<easing-function>#", "animation-timeline": "<single-animation-timeline>#", appearance: "none|auto|textfield|menulist-button|<compat-auto>", "aspect-ratio": "auto|<ratio>", azimuth: "<angle>|[[left-side|far-left|left|center-left|center|center-right|right|far-right|right-side]||behind]|leftwards|rightwards", "backdrop-filter": "none|<filter-function-list>", "backface-visibility": "visible|hidden", background: "[<bg-layer> ,]* <final-bg-layer>", "background-attachment": "<attachment>#", "background-blend-mode": "<blend-mode>#", "background-clip": "<bg-clip>#", "background-color": "<color>", "background-image": "<bg-image>#", "background-origin": "<box>#", "background-position": "<bg-position>#", "background-position-x": "[center|[[left|right|x-start|x-end]? <length-percentage>?]!]#", "background-position-y": "[center|[[top|bottom|y-start|y-end]? <length-percentage>?]!]#", "background-repeat": "<repeat-style>#", "background-size": "<bg-size>#", "block-overflow": "clip|ellipsis|<string>", "block-size": "<'width'>", border: "<line-width>||<line-style>||<color>", "border-block": "<'border-top-width'>||<'border-top-style'>||<color>", "border-block-color": "<'border-top-color'>{1,2}", "border-block-style": "<'border-top-style'>", "border-block-width": "<'border-top-width'>", "border-block-end": "<'border-top-width'>||<'border-top-style'>||<color>", "border-block-end-color": "<'border-top-color'>", "border-block-end-style": "<'border-top-style'>", "border-block-end-width": "<'border-top-width'>", "border-block-start": "<'border-top-width'>||<'border-top-style'>||<color>", "border-block-start-color": "<'border-top-color'>", "border-block-start-style": "<'border-top-style'>", "border-block-start-width": "<'border-top-width'>", "border-bottom": "<line-width>||<line-style>||<color>", "border-bottom-color": "<'border-top-color'>", "border-bottom-left-radius": "<length-percentage>{1,2}", "border-bottom-right-radius": "<length-percentage>{1,2}", "border-bottom-style": "<line-style>", "border-bottom-width": "<line-width>", "border-collapse": "collapse|separate", "border-color": "<color>{1,4}", "border-end-end-radius": "<length-percentage>{1,2}", "border-end-start-radius": "<length-percentage>{1,2}", "border-image": "<'border-image-source'>||<'border-image-slice'> [/ <'border-image-width'>|/ <'border-image-width'>? / <'border-image-outset'>]?||<'border-image-repeat'>", "border-image-outset": "[<length>|<number>]{1,4}", "border-image-repeat": "[stretch|repeat|round|space]{1,2}", "border-image-slice": "<number-percentage>{1,4}&&fill?", "border-image-source": "none|<image>", "border-image-width": "[<length-percentage>|<number>|auto]{1,4}", "border-inline": "<'border-top-width'>||<'border-top-style'>||<color>", "border-inline-end": "<'border-top-width'>||<'border-top-style'>||<color>", "border-inline-color": "<'border-top-color'>{1,2}", "border-inline-style": "<'border-top-style'>", "border-inline-width": "<'border-top-width'>", "border-inline-end-color": "<'border-top-color'>", "border-inline-end-style": "<'border-top-style'>", "border-inline-end-width": "<'border-top-width'>", "border-inline-start": "<'border-top-width'>||<'border-top-style'>||<color>", "border-inline-start-color": "<'border-top-color'>", "border-inline-start-style": "<'border-top-style'>", "border-inline-start-width": "<'border-top-width'>", "border-left": "<line-width>||<line-style>||<color>", "border-left-color": "<color>", "border-left-style": "<line-style>", "border-left-width": "<line-width>", "border-radius": "<length-percentage>{1,4} [/ <length-percentage>{1,4}]?", "border-right": "<line-width>||<line-style>||<color>", "border-right-color": "<color>", "border-right-style": "<line-style>", "border-right-width": "<line-width>", "border-spacing": "<length> <length>?", "border-start-end-radius": "<length-percentage>{1,2}", "border-start-start-radius": "<length-percentage>{1,2}", "border-style": "<line-style>{1,4}", "border-top": "<line-width>||<line-style>||<color>", "border-top-color": "<color>", "border-top-left-radius": "<length-percentage>{1,2}", "border-top-right-radius": "<length-percentage>{1,2}", "border-top-style": "<line-style>", "border-top-width": "<line-width>", "border-width": "<line-width>{1,4}", bottom: "<length>|<percentage>|auto", "box-align": "start|center|end|baseline|stretch", "box-decoration-break": "slice|clone", "box-direction": "normal|reverse|inherit", "box-flex": "<number>", "box-flex-group": "<integer>", "box-lines": "single|multiple", "box-ordinal-group": "<integer>", "box-orient": "horizontal|vertical|inline-axis|block-axis|inherit", "box-pack": "start|center|end|justify", "box-shadow": "none|<shadow>#", "box-sizing": "content-box|border-box", "break-after": "auto|avoid|always|all|avoid-page|page|left|right|recto|verso|avoid-column|column|avoid-region|region", "break-before": "auto|avoid|always|all|avoid-page|page|left|right|recto|verso|avoid-column|column|avoid-region|region", "break-inside": "auto|avoid|avoid-page|avoid-column|avoid-region", "caption-side": "top|bottom|block-start|block-end|inline-start|inline-end", caret: "<'caret-color'>||<'caret-shape'>", "caret-color": "auto|<color>", "caret-shape": "auto|bar|block|underscore", clear: "none|left|right|both|inline-start|inline-end", clip: "<shape>|auto", "clip-path": "<clip-source>|[<basic-shape>||<geometry-box>]|none", color: "<color>", "print-color-adjust": "economy|exact", "color-scheme": "normal|[light|dark|<custom-ident>]+&&only?", "column-count": "<integer>|auto", "column-fill": "auto|balance|balance-all", "column-gap": "normal|<length-percentage>", "column-rule": "<'column-rule-width'>||<'column-rule-style'>||<'column-rule-color'>", "column-rule-color": "<color>", "column-rule-style": "<'border-style'>", "column-rule-width": "<'border-width'>", "column-span": "none|all", "column-width": "<length>|auto", columns: "<'column-width'>||<'column-count'>", contain: "none|strict|content|[[size||inline-size]||layout||style||paint]", "contain-intrinsic-size": "[none|<length>|auto <length>]{1,2}", "contain-intrinsic-block-size": "none|<length>|auto <length>", "contain-intrinsic-height": "none|<length>|auto <length>", "contain-intrinsic-inline-size": "none|<length>|auto <length>", "contain-intrinsic-width": "none|<length>|auto <length>", content: "normal|none|[<content-replacement>|<content-list>] [/ [<string>|<counter>]+]?", "content-visibility": "visible|auto|hidden", "counter-increment": "[<counter-name> <integer>?]+|none", "counter-reset": "[<counter-name> <integer>?|<reversed-counter-name> <integer>?]+|none", "counter-set": "[<counter-name> <integer>?]+|none", cursor: "[[<url> [<x> <y>]? ,]* [auto|default|none|context-menu|help|pointer|progress|wait|cell|crosshair|text|vertical-text|alias|copy|move|no-drop|not-allowed|e-resize|n-resize|ne-resize|nw-resize|s-resize|se-resize|sw-resize|w-resize|ew-resize|ns-resize|nesw-resize|nwse-resize|col-resize|row-resize|all-scroll|zoom-in|zoom-out|grab|grabbing|hand|-webkit-grab|-webkit-grabbing|-webkit-zoom-in|-webkit-zoom-out|-moz-grab|-moz-grabbing|-moz-zoom-in|-moz-zoom-out]]", direction: "ltr|rtl", display: "[<display-outside>||<display-inside>]|<display-listitem>|<display-internal>|<display-box>|<display-legacy>|<-non-standard-display>", "empty-cells": "show|hide", filter: "none|<filter-function-list>|<-ms-filter-function-list>", flex: "none|[<'flex-grow'> <'flex-shrink'>?||<'flex-basis'>]", "flex-basis": "content|<'width'>", "flex-direction": "row|row-reverse|column|column-reverse", "flex-flow": "<'flex-direction'>||<'flex-wrap'>", "flex-grow": "<number>", "flex-shrink": "<number>", "flex-wrap": "nowrap|wrap|wrap-reverse", float: "left|right|none|inline-start|inline-end", font: "[[<'font-style'>||<font-variant-css21>||<'font-weight'>||<'font-stretch'>]? <'font-size'> [/ <'line-height'>]? <'font-family'>]|caption|icon|menu|message-box|small-caption|status-bar", "font-family": "[<family-name>|<generic-family>]#", "font-feature-settings": "normal|<feature-tag-value>#", "font-kerning": "auto|normal|none", "font-language-override": "normal|<string>", "font-optical-sizing": "auto|none", "font-variation-settings": "normal|[<string> <number>]#", "font-size": "<absolute-size>|<relative-size>|<length-percentage>", "font-size-adjust": "none|[ex-height|cap-height|ch-width|ic-width|ic-height]? [from-font|<number>]", "font-smooth": "auto|never|always|<absolute-size>|<length>", "font-stretch": "<font-stretch-absolute>", "font-style": "normal|italic|oblique <angle>?", "font-synthesis": "none|[weight||style||small-caps]", "font-variant": "normal|none|[<common-lig-values>||<discretionary-lig-values>||<historical-lig-values>||<contextual-alt-values>||stylistic( <feature-value-name> )||historical-forms||styleset( <feature-value-name># )||character-variant( <feature-value-name># )||swash( <feature-value-name> )||ornaments( <feature-value-name> )||annotation( <feature-value-name> )||[small-caps|all-small-caps|petite-caps|all-petite-caps|unicase|titling-caps]||<numeric-figure-values>||<numeric-spacing-values>||<numeric-fraction-values>||ordinal||slashed-zero||<east-asian-variant-values>||<east-asian-width-values>||ruby]", "font-variant-alternates": "normal|[stylistic( <feature-value-name> )||historical-forms||styleset( <feature-value-name># )||character-variant( <feature-value-name># )||swash( <feature-value-name> )||ornaments( <feature-value-name> )||annotation( <feature-value-name> )]", "font-variant-caps": "normal|small-caps|all-small-caps|petite-caps|all-petite-caps|unicase|titling-caps", "font-variant-east-asian": "normal|[<east-asian-variant-values>||<east-asian-width-values>||ruby]", "font-variant-ligatures": "normal|none|[<common-lig-values>||<discretionary-lig-values>||<historical-lig-values>||<contextual-alt-values>]", "font-variant-numeric": "normal|[<numeric-figure-values>||<numeric-spacing-values>||<numeric-fraction-values>||ordinal||slashed-zero]", "font-variant-position": "normal|sub|super", "font-weight": "<font-weight-absolute>|bolder|lighter", "forced-color-adjust": "auto|none", gap: "<'row-gap'> <'column-gap'>?", grid: "<'grid-template'>|<'grid-template-rows'> / [auto-flow&&dense?] <'grid-auto-columns'>?|[auto-flow&&dense?] <'grid-auto-rows'>? / <'grid-template-columns'>", "grid-area": "<grid-line> [/ <grid-line>]{0,3}", "grid-auto-columns": "<track-size>+", "grid-auto-flow": "[row|column]||dense", "grid-auto-rows": "<track-size>+", "grid-column": "<grid-line> [/ <grid-line>]?", "grid-column-end": "<grid-line>", "grid-column-gap": "<length-percentage>", "grid-column-start": "<grid-line>", "grid-gap": "<'grid-row-gap'> <'grid-column-gap'>?", "grid-row": "<grid-line> [/ <grid-line>]?", "grid-row-end": "<grid-line>", "grid-row-gap": "<length-percentage>", "grid-row-start": "<grid-line>", "grid-template": "none|[<'grid-template-rows'> / <'grid-template-columns'>]|[<line-names>? <string> <track-size>? <line-names>?]+ [/ <explicit-track-list>]?", "grid-template-areas": "none|<string>+", "grid-template-columns": "none|<track-list>|<auto-track-list>|subgrid <line-name-list>?", "grid-template-rows": "none|<track-list>|<auto-track-list>|subgrid <line-name-list>?", "hanging-punctuation": "none|[first||[force-end|allow-end]||last]", height: "auto|<length>|<percentage>|min-content|max-content|fit-content|fit-content( <length-percentage> )", "hyphenate-character": "auto|<string>", hyphens: "none|manual|auto", "image-orientation": "from-image|<angle>|[<angle>? flip]", "image-rendering": "auto|crisp-edges|pixelated|optimizeSpeed|optimizeQuality|<-non-standard-image-rendering>", "image-resolution": "[from-image||<resolution>]&&snap?", "ime-mode": "auto|normal|active|inactive|disabled", "initial-letter": "normal|[<number> <integer>?]", "initial-letter-align": "[auto|alphabetic|hanging|ideographic]", "inline-size": "<'width'>", "input-security": "auto|none", inset: "<'top'>{1,4}", "inset-block": "<'top'>{1,2}", "inset-block-end": "<'top'>", "inset-block-start": "<'top'>", "inset-inline": "<'top'>{1,2}", "inset-inline-end": "<'top'>", "inset-inline-start": "<'top'>", isolation: "auto|isolate", "justify-content": "normal|<content-distribution>|<overflow-position>? [<content-position>|left|right]", "justify-items": "normal|stretch|<baseline-position>|<overflow-position>? [<self-position>|left|right]|legacy|legacy&&[left|right|center]", "justify-self": "auto|normal|stretch|<baseline-position>|<overflow-position>? [<self-position>|left|right]", "justify-tracks": "[normal|<content-distribution>|<overflow-position>? [<content-position>|left|right]]#", left: "<length>|<percentage>|auto", "letter-spacing": "normal|<length-percentage>", "line-break": "auto|loose|normal|strict|anywhere", "line-clamp": "none|<integer>", "line-height": "normal|<number>|<length>|<percentage>", "line-height-step": "<length>", "list-style": "<'list-style-type'>||<'list-style-position'>||<'list-style-image'>", "list-style-image": "<image>|none", "list-style-position": "inside|outside", "list-style-type": "<counter-style>|<string>|none", margin: "[<length>|<percentage>|auto]{1,4}", "margin-block": "<'margin-left'>{1,2}", "margin-block-end": "<'margin-left'>", "margin-block-start": "<'margin-left'>", "margin-bottom": "<length>|<percentage>|auto", "margin-inline": "<'margin-left'>{1,2}", "margin-inline-end": "<'margin-left'>", "margin-inline-start": "<'margin-left'>", "margin-left": "<length>|<percentage>|auto", "margin-right": "<length>|<percentage>|auto", "margin-top": "<length>|<percentage>|auto", "margin-trim": "none|in-flow|all", mask: "<mask-layer>#", "mask-border": "<'mask-border-source'>||<'mask-border-slice'> [/ <'mask-border-width'>? [/ <'mask-border-outset'>]?]?||<'mask-border-repeat'>||<'mask-border-mode'>", "mask-border-mode": "luminance|alpha", "mask-border-outset": "[<length>|<number>]{1,4}", "mask-border-repeat": "[stretch|repeat|round|space]{1,2}", "mask-border-slice": "<number-percentage>{1,4} fill?", "mask-border-source": "none|<image>", "mask-border-width": "[<length-percentage>|<number>|auto]{1,4}", "mask-clip": "[<geometry-box>|no-clip]#", "mask-composite": "<compositing-operator>#", "mask-image": "<mask-reference>#", "mask-mode": "<masking-mode>#", "mask-origin": "<geometry-box>#", "mask-position": "<position>#", "mask-repeat": "<repeat-style>#", "mask-size": "<bg-size>#", "mask-type": "luminance|alpha", "masonry-auto-flow": "[pack|next]||[definite-first|ordered]", "math-depth": "auto-add|add( <integer> )|<integer>", "math-shift": "normal|compact", "math-style": "normal|compact", "max-block-size": "<'max-width'>", "max-height": "none|<length-percentage>|min-content|max-content|fit-content|fit-content( <length-percentage> )", "max-inline-size": "<'max-width'>", "max-lines": "none|<integer>", "max-width": "none|<length-percentage>|min-content|max-content|fit-content|fit-content( <length-percentage> )|<-non-standard-width>", "min-block-size": "<'min-width'>", "min-height": "auto|<length>|<percentage>|min-content|max-content|fit-content|fit-content( <length-percentage> )", "min-inline-size": "<'min-width'>", "min-width": "auto|<length>|<percentage>|min-content|max-content|fit-content|fit-content( <length-percentage> )|<-non-standard-width>", "mix-blend-mode": "<blend-mode>|plus-lighter", "object-fit": "fill|contain|cover|none|scale-down", "object-position": "<position>", offset: "[<'offset-position'>? [<'offset-path'> [<'offset-distance'>||<'offset-rotate'>]?]?]! [/ <'offset-anchor'>]?", "offset-anchor": "auto|<position>", "offset-distance": "<length-percentage>", "offset-path": "none|ray( [<angle>&&<size>&&contain?] )|<path()>|<url>|[<basic-shape>||<geometry-box>]", "offset-position": "auto|<position>", "offset-rotate": "[auto|reverse]||<angle>", opacity: "<alpha-value>", order: "<integer>", orphans: "<integer>", outline: "[<'outline-color'>||<'outline-style'>||<'outline-width'>]", "outline-color": "<color>|invert", "outline-offset": "<length>", "outline-style": "auto|<'border-style'>", "outline-width": "<line-width>", overflow: "[visible|hidden|clip|scroll|auto]{1,2}|<-non-standard-overflow>", "overflow-anchor": "auto|none", "overflow-block": "visible|hidden|clip|scroll|auto", "overflow-clip-box": "padding-box|content-box", "overflow-clip-margin": "<visual-box>||<length [0,\u221E]>", "overflow-inline": "visible|hidden|clip|scroll|auto", "overflow-wrap": "normal|break-word|anywhere", "overflow-x": "visible|hidden|clip|scroll|auto", "overflow-y": "visible|hidden|clip|scroll|auto", "overscroll-behavior": "[contain|none|auto]{1,2}", "overscroll-behavior-block": "contain|none|auto", "overscroll-behavior-inline": "contain|none|auto", "overscroll-behavior-x": "contain|none|auto", "overscroll-behavior-y": "contain|none|auto", padding: "[<length>|<percentage>]{1,4}", "padding-block": "<'padding-left'>{1,2}", "padding-block-end": "<'padding-left'>", "padding-block-start": "<'padding-left'>", "padding-bottom": "<length>|<percentage>", "padding-inline": "<'padding-left'>{1,2}", "padding-inline-end": "<'padding-left'>", "padding-inline-start": "<'padding-left'>", "padding-left": "<length>|<percentage>", "padding-right": "<length>|<percentage>", "padding-top": "<length>|<percentage>", "page-break-after": "auto|always|avoid|left|right|recto|verso", "page-break-before": "auto|always|avoid|left|right|recto|verso", "page-break-inside": "auto|avoid", "paint-order": "normal|[fill||stroke||markers]", perspective: "none|<length>", "perspective-origin": "<position>", "place-content": "<'align-content'> <'justify-content'>?", "place-items": "<'align-items'> <'justify-items'>?", "place-self": "<'align-self'> <'justify-self'>?", "pointer-events": "auto|none|visiblePainted|visibleFill|visibleStroke|visible|painted|fill|stroke|all|inherit", position: "static|relative|absolute|sticky|fixed|-webkit-sticky", quotes: "none|auto|[<string> <string>]+", resize: "none|both|horizontal|vertical|block|inline", right: "<length>|<percentage>|auto", rotate: "none|<angle>|[x|y|z|<number>{3}]&&<angle>", "row-gap": "normal|<length-percentage>", "ruby-align": "start|center|space-between|space-around", "ruby-merge": "separate|collapse|auto", "ruby-position": "[alternate||[over|under]]|inter-character", scale: "none|<number>{1,3}", "scrollbar-color": "auto|<color>{2}", "scrollbar-gutter": "auto|stable&&both-edges?", "scrollbar-width": "auto|thin|none", "scroll-behavior": "auto|smooth", "scroll-margin": "<length>{1,4}", "scroll-margin-block": "<length>{1,2}", "scroll-margin-block-start": "<length>", "scroll-margin-block-end": "<length>", "scroll-margin-bottom": "<length>", "scroll-margin-inline": "<length>{1,2}", "scroll-margin-inline-start": "<length>", "scroll-margin-inline-end": "<length>", "scroll-margin-left": "<length>", "scroll-margin-right": "<length>", "scroll-margin-top": "<length>", "scroll-padding": "[auto|<length-percentage>]{1,4}", "scroll-padding-block": "[auto|<length-percentage>]{1,2}", "scroll-padding-block-start": "auto|<length-percentage>", "scroll-padding-block-end": "auto|<length-percentage>", "scroll-padding-bottom": "auto|<length-percentage>", "scroll-padding-inline": "[auto|<length-percentage>]{1,2}", "scroll-padding-inline-start": "auto|<length-percentage>", "scroll-padding-inline-end": "auto|<length-percentage>", "scroll-padding-left": "auto|<length-percentage>", "scroll-padding-right": "auto|<length-percentage>", "scroll-padding-top": "auto|<length-percentage>", "scroll-snap-align": "[none|start|end|center]{1,2}", "scroll-snap-coordinate": "none|<position>#", "scroll-snap-destination": "<position>", "scroll-snap-points-x": "none|repeat( <length-percentage> )", "scroll-snap-points-y": "none|repeat( <length-percentage> )", "scroll-snap-stop": "normal|always", "scroll-snap-type": "none|[x|y|block|inline|both] [mandatory|proximity]?", "scroll-snap-type-x": "none|mandatory|proximity", "scroll-snap-type-y": "none|mandatory|proximity", "scroll-timeline": "<scroll-timeline-name>||<scroll-timeline-axis>", "scroll-timeline-axis": "block|inline|vertical|horizontal", "scroll-timeline-name": "none|<custom-ident>", "shape-image-threshold": "<alpha-value>", "shape-margin": "<length-percentage>", "shape-outside": "none|[<shape-box>||<basic-shape>]|<image>", "tab-size": "<integer>|<length>", "table-layout": "auto|fixed", "text-align": "start|end|left|right|center|justify|match-parent", "text-align-last": "auto|start|end|left|right|center|justify", "text-combine-upright": "none|all|[digits <integer>?]", "text-decoration": "<'text-decoration-line'>||<'text-decoration-style'>||<'text-decoration-color'>||<'text-decoration-thickness'>", "text-decoration-color": "<color>", "text-decoration-line": "none|[underline||overline||line-through||blink]|spelling-error|grammar-error", "text-decoration-skip": "none|[objects||[spaces|[leading-spaces||trailing-spaces]]||edges||box-decoration]", "text-decoration-skip-ink": "auto|all|none", "text-decoration-style": "solid|double|dotted|dashed|wavy", "text-decoration-thickness": "auto|from-font|<length>|<percentage>", "text-emphasis": "<'text-emphasis-style'>||<'text-emphasis-color'>", "text-emphasis-color": "<color>", "text-emphasis-position": "[over|under]&&[right|left]", "text-emphasis-style": "none|[[filled|open]||[dot|circle|double-circle|triangle|sesame]]|<string>", "text-indent": "<length-percentage>&&hanging?&&each-line?", "text-justify": "auto|inter-character|inter-word|none", "text-orientation": "mixed|upright|sideways", "text-overflow": "[clip|ellipsis|<string>]{1,2}", "text-rendering": "auto|optimizeSpeed|optimizeLegibility|geometricPrecision", "text-shadow": "none|<shadow-t>#", "text-size-adjust": "none|auto|<percentage>", "text-transform": "none|capitalize|uppercase|lowercase|full-width|full-size-kana", "text-underline-offset": "auto|<length>|<percentage>", "text-underline-position": "auto|from-font|[under||[left|right]]", top: "<length>|<percentage>|auto", "touch-action": "auto|none|[[pan-x|pan-left|pan-right]||[pan-y|pan-up|pan-down]||pinch-zoom]|manipulation", transform: "none|<transform-list>", "transform-box": "content-box|border-box|fill-box|stroke-box|view-box", "transform-origin": "[<length-percentage>|left|center|right|top|bottom]|[[<length-percentage>|left|center|right]&&[<length-percentage>|top|center|bottom]] <length>?", "transform-style": "flat|preserve-3d", transition: "<single-transition>#", "transition-delay": "<time>#", "transition-duration": "<time>#", "transition-property": "none|<single-transition-property>#", "transition-timing-function": "<easing-function>#", translate: "none|<length-percentage> [<length-percentage> <length>?]?", "unicode-bidi": "normal|embed|isolate|bidi-override|isolate-override|plaintext|-moz-isolate|-moz-isolate-override|-moz-plaintext|-webkit-isolate|-webkit-isolate-override|-webkit-plaintext", "user-select": "auto|text|none|contain|all", "vertical-align": "baseline|sub|super|text-top|text-bottom|middle|top|bottom|<percentage>|<length>", visibility: "visible|hidden|collapse", "white-space": "normal|pre|nowrap|pre-wrap|pre-line|break-spaces", widows: "<integer>", width: "auto|<length>|<percentage>|min-content|max-content|fit-content|fit-content( <length-percentage> )|fill|stretch|intrinsic|-moz-max-content|-webkit-max-content|-moz-fit-content|-webkit-fit-content", "will-change": "auto|<animateable-feature>#", "word-break": "normal|break-all|keep-all|break-word", "word-spacing": "normal|<length>", "word-wrap": "normal|break-word", "writing-mode": "horizontal-tb|vertical-rl|vertical-lr|sideways-rl|sideways-lr|<svg-writing-mode>", "z-index": "auto|<integer>", zoom: "normal|reset|<number>|<percentage>", "-moz-background-clip": "padding|border", "-moz-border-radius-bottomleft": "<'border-bottom-left-radius'>", "-moz-border-radius-bottomright": "<'border-bottom-right-radius'>", "-moz-border-radius-topleft": "<'border-top-left-radius'>", "-moz-border-radius-topright": "<'border-bottom-right-radius'>", "-moz-control-character-visibility": "visible|hidden", "-moz-osx-font-smoothing": "auto|grayscale", "-moz-user-select": "none|text|all|-moz-none", "-ms-flex-align": "start|end|center|baseline|stretch", "-ms-flex-item-align": "auto|start|end|center|baseline|stretch", "-ms-flex-line-pack": "start|end|center|justify|distribute|stretch", "-ms-flex-negative": "<'flex-shrink'>", "-ms-flex-pack": "start|end|center|justify|distribute", "-ms-flex-order": "<integer>", "-ms-flex-positive": "<'flex-grow'>", "-ms-flex-preferred-size": "<'flex-basis'>", "-ms-interpolation-mode": "nearest-neighbor|bicubic", "-ms-grid-column-align": "start|end|center|stretch", "-ms-grid-row-align": "start|end|center|stretch", "-ms-hyphenate-limit-last": "none|always|column|page|spread", "-webkit-background-clip": "[<box>|border|padding|content|text]#", "-webkit-column-break-after": "always|auto|avoid", "-webkit-column-break-before": "always|auto|avoid", "-webkit-column-break-inside": "always|auto|avoid", "-webkit-font-smoothing": "auto|none|antialiased|subpixel-antialiased", "-webkit-mask-box-image": "[<url>|<gradient>|none] [<length-percentage>{4} <-webkit-mask-box-repeat>{2}]?", "-webkit-print-color-adjust": "economy|exact", "-webkit-text-security": "none|circle|disc|square", "-webkit-user-drag": "none|element|auto", "-webkit-user-select": "auto|none|text|all", "alignment-baseline": "auto|baseline|before-edge|text-before-edge|middle|central|after-edge|text-after-edge|ideographic|alphabetic|hanging|mathematical", "baseline-shift": "baseline|sub|super|<svg-length>", behavior: "<url>+", "clip-rule": "nonzero|evenodd", cue: "<'cue-before'> <'cue-after'>?", "cue-after": "<url> <decibel>?|none", "cue-before": "<url> <decibel>?|none", "dominant-baseline": "auto|use-script|no-change|reset-size|ideographic|alphabetic|hanging|mathematical|central|middle|text-after-edge|text-before-edge", fill: "<paint>", "fill-opacity": "<number-zero-one>", "fill-rule": "nonzero|evenodd", "glyph-orientation-horizontal": "<angle>", "glyph-orientation-vertical": "<angle>", kerning: "auto|<svg-length>", marker: "none|<url>", "marker-end": "none|<url>", "marker-mid": "none|<url>", "marker-start": "none|<url>", pause: "<'pause-before'> <'pause-after'>?", "pause-after": "<time>|none|x-weak|weak|medium|strong|x-strong", "pause-before": "<time>|none|x-weak|weak|medium|strong|x-strong", rest: "<'rest-before'> <'rest-after'>?", "rest-after": "<time>|none|x-weak|weak|medium|strong|x-strong", "rest-before": "<time>|none|x-weak|weak|medium|strong|x-strong", "shape-rendering": "auto|optimizeSpeed|crispEdges|geometricPrecision", src: "[<url> [format( <string># )]?|local( <family-name> )]#", speak: "auto|none|normal", "speak-as": "normal|spell-out||digits||[literal-punctuation|no-punctuation]", stroke: "<paint>", "stroke-dasharray": "none|[<svg-length>+]#", "stroke-dashoffset": "<svg-length>", "stroke-linecap": "butt|round|square", "stroke-linejoin": "miter|round|bevel", "stroke-miterlimit": "<number-one-or-greater>", "stroke-opacity": "<number-zero-one>", "stroke-width": "<svg-length>", "text-anchor": "start|middle|end", "unicode-range": "<urange>#", "voice-balance": "<number>|left|center|right|leftwards|rightwards", "voice-duration": "auto|<time>", "voice-family": "[[<family-name>|<generic-voice>] ,]* [<family-name>|<generic-voice>]|preserve", "voice-pitch": "<frequency>&&absolute|[[x-low|low|medium|high|x-high]||[<frequency>|<semitones>|<percentage>]]", "voice-range": "<frequency>&&absolute|[[x-low|low|medium|high|x-high]||[<frequency>|<semitones>|<percentage>]]", "voice-rate": "[normal|x-slow|slow|medium|fast|x-fast]||<percentage>", "voice-stress": "normal|strong|moderate|none|reduced", "voice-volume": "silent|[[x-soft|soft|medium|loud|x-loud]||<decibel>]" }, atrules: { charset: { prelude: "<string>", descriptors: null }, "counter-style": { prelude: "<counter-style-name>", descriptors: { "additive-symbols": "[<integer>&&<symbol>]#", fallback: "<counter-style-name>", negative: "<symbol> <symbol>?", pad: "<integer>&&<symbol>", prefix: "<symbol>", range: "[[<integer>|infinite]{2}]#|auto", "speak-as": "auto|bullets|numbers|words|spell-out|<counter-style-name>", suffix: "<symbol>", symbols: "<symbol>+", system: "cyclic|numeric|alphabetic|symbolic|additive|[fixed <integer>?]|[extends <counter-style-name>]" } }, document: { prelude: "[<url>|url-prefix( <string> )|domain( <string> )|media-document( <string> )|regexp( <string> )]#", descriptors: null }, "font-face": { prelude: null, descriptors: { "ascent-override": "normal|<percentage>", "descent-override": "normal|<percentage>", "font-display": "[auto|block|swap|fallback|optional]", "font-family": "<family-name>", "font-feature-settings": "normal|<feature-tag-value>#", "font-variation-settings": "normal|[<string> <number>]#", "font-stretch": "<font-stretch-absolute>{1,2}", "font-style": "normal|italic|oblique <angle>{0,2}", "font-weight": "<font-weight-absolute>{1,2}", "font-variant": "normal|none|[<common-lig-values>||<discretionary-lig-values>||<historical-lig-values>||<contextual-alt-values>||stylistic( <feature-value-name> )||historical-forms||styleset( <feature-value-name># )||character-variant( <feature-value-name># )||swash( <feature-value-name> )||ornaments( <feature-value-name> )||annotation( <feature-value-name> )||[small-caps|all-small-caps|petite-caps|all-petite-caps|unicase|titling-caps]||<numeric-figure-values>||<numeric-spacing-values>||<numeric-fraction-values>||ordinal||slashed-zero||<east-asian-variant-values>||<east-asian-width-values>||ruby]", "line-gap-override": "normal|<percentage>", "size-adjust": "<percentage>", src: "[<url> [format( <string># )]?|local( <family-name> )]#", "unicode-range": "<urange>#" } }, "font-feature-values": { prelude: "<family-name>#", descriptors: null }, import: { prelude: "[<string>|<url>] [layer|layer( <layer-name> )]? [supports( [<supports-condition>|<declaration>] )]? <media-query-list>?", descriptors: null }, keyframes: { prelude: "<keyframes-name>", descriptors: null }, layer: { prelude: "[<layer-name>#|<layer-name>?]", descriptors: null }, media: { prelude: "<media-query-list>", descriptors: null }, namespace: { prelude: "<namespace-prefix>? [<string>|<url>]", descriptors: null }, page: { prelude: "<page-selector-list>", descriptors: { bleed: "auto|<length>", marks: "none|[crop||cross]", size: "<length>{1,2}|auto|[<page-size>||[portrait|landscape]]" } }, property: { prelude: "<custom-property-name>", descriptors: { syntax: "<string>", inherits: "true|false", "initial-value": "<string>" } }, "scroll-timeline": { prelude: "<timeline-name>", descriptors: null }, supports: { prelude: "<supports-condition>", descriptors: null }, viewport: { prelude: null, descriptors: { height: "<viewport-length>{1,2}", "max-height": "<viewport-length>", "max-width": "<viewport-length>", "max-zoom": "auto|<number>|<percentage>", "min-height": "<viewport-length>", "min-width": "<viewport-length>", "min-zoom": "auto|<number>|<percentage>", orientation: "auto|portrait|landscape", "user-zoom": "zoom|fixed", "viewport-fit": "auto|contain|cover", width: "<viewport-length>{1,2}", zoom: "auto|<number>|<percentage>" } }, nest: { prelude: "<complex-selector-list>", descriptors: null } }, node: Ao }, al = {};
|
|
79833
79865
|
const sl = f;
|
|
79834
79866
|
var ll = function(e4) {
|
|
@@ -80003,8 +80035,8 @@ var require_processPagePollCjs = __commonJS({
|
|
|
80003
80035
|
return this.createSingleNodeList(this.Nth());
|
|
80004
80036
|
} };
|
|
80005
80037
|
var Cl = { dir: Sl, has: vl, lang: Sl, matches: vl, is: vl, "-moz-any": vl, "-webkit-any": vl, where: vl, not: vl, "nth-child": _l, "nth-last-child": _l, "nth-last-of-type": _l, "nth-of-type": _l, slotted: xl, host: xl, "host-context": xl }, Al = {};
|
|
80006
|
-
const zl = zo, Ll = Mo,
|
|
80007
|
-
Al.AnPlusB = zl.parse, Al.Atrule = Ll.parse, Al.AtrulePrelude =
|
|
80038
|
+
const zl = zo, Ll = Mo, El = Wo, Tl = Vo, Nl = Xo, Dl = ri, Pl = ii, Rl = si, Il = ci, Bl = di, Ol = fi, Ul = yi, Ml = zi, Fl = Ti, jl = Pi, Hl = Bi, ql = Mi, Wl = Hi, $l = $i, Vl = Zi, Kl = Yi, Zl = Qi, Gl = ea, Yl = na, Xl = ia, Ql = sa, Jl = ca, ec = da, tc = fa, nc = ya, rc = Sa, oc = za, ic = Na, ac = Da, sc = Ra, lc = ja, cc = Wa, uc = Za, hc = is, dc = ps, pc = ms;
|
|
80039
|
+
Al.AnPlusB = zl.parse, Al.Atrule = Ll.parse, Al.AtrulePrelude = El.parse, Al.AttributeSelector = Tl.parse, Al.Block = Nl.parse, Al.Brackets = Dl.parse, Al.CDC = Pl.parse, Al.CDO = Rl.parse, Al.ClassSelector = Il.parse, Al.Combinator = Bl.parse, Al.Comment = Ol.parse, Al.Declaration = Ul.parse, Al.DeclarationList = Ml.parse, Al.Dimension = Fl.parse, Al.Function = jl.parse, Al.Hash = Hl.parse, Al.Identifier = ql.parse, Al.IdSelector = Wl.parse, Al.MediaFeature = $l.parse, Al.MediaQuery = Vl.parse, Al.MediaQueryList = Kl.parse, Al.NestingSelector = Zl.parse, Al.Nth = Gl.parse, Al.Number = Yl.parse, Al.Operator = Xl.parse, Al.Parentheses = Ql.parse, Al.Percentage = Jl.parse, Al.PseudoClassSelector = ec.parse, Al.PseudoElementSelector = tc.parse, Al.Ratio = nc.parse, Al.Raw = rc.parse, Al.Rule = oc.parse, Al.Selector = ic.parse, Al.SelectorList = ac.parse, Al.String = sc.parse, Al.StyleSheet = lc.parse, Al.TypeSelector = cc.parse, Al.UnicodeRange = uc.parse, Al.Url = hc.parse, Al.Value = dc.parse, Al.WhiteSpace = pc.parse;
|
|
80008
80040
|
var mc = Co({ ...il, parseContext: { default: "StyleSheet", stylesheet: "StyleSheet", atrule: "Atrule", atrulePrelude(e4) {
|
|
80009
80041
|
return this.AtrulePrelude(e4.atrule ? String(e4.atrule) : null);
|
|
80010
80042
|
}, mediaQueryList: "MediaQueryList", mediaQuery: "MediaQuery", rule: "Rule", selectorList: "SelectorList", selector: "Selector", block() {
|
|
@@ -80051,8 +80083,8 @@ var require_processPagePollCjs = __commonJS({
|
|
|
80051
80083
|
}
|
|
80052
80084
|
return t4;
|
|
80053
80085
|
};
|
|
80054
|
-
const Cc = mc, Ac = Co, zc = ne, Lc = bt,
|
|
80055
|
-
p.version = "2.3.1".version, p.createSyntax = Ac, p.List = zc.List, p.Lexer = Lc.Lexer, p.definitionSyntax =
|
|
80086
|
+
const Cc = mc, Ac = Co, zc = ne, Lc = bt, Ec = fc, Tc = wc, Nc = zt, Dc = xc, Pc = Ia, Rc = as, Ic = f, Bc = I, Oc = j, { tokenize: Uc, parse: Mc, generate: Fc, lexer: jc, createLexer: Hc, walk: qc, find: Wc, findLast: $c, findAll: Vc, toPlainObject: Kc, fromPlainObject: Zc, fork: Gc } = Cc;
|
|
80087
|
+
p.version = "2.3.1".version, p.createSyntax = Ac, p.List = zc.List, p.Lexer = Lc.Lexer, p.definitionSyntax = Ec, p.clone = Tc.clone, p.isCustomProperty = Nc.isCustomProperty, p.keyword = Nc.keyword, p.property = Nc.property, p.vendorPrefix = Nc.vendorPrefix, p.ident = Dc, p.string = Pc, p.url = Rc, p.tokenTypes = Ic, p.tokenNames = Bc, p.TokenStream = Oc.TokenStream, p.createLexer = Hc, p.find = Wc, p.findAll = Vc, p.findLast = $c, p.fork = Gc, p.fromPlainObject = Zc, p.generate = Fc, p.lexer = jc, p.parse = Mc, p.toPlainObject = Kc, p.tokenize = Uc, p.walk = qc;
|
|
80056
80088
|
var Yc = {};
|
|
80057
80089
|
const Xc = /* @__PURE__ */ new Map([["background", /* @__PURE__ */ new Set(["background-color", "background-position", "background-position-x", "background-position-y", "background-size", "background-repeat", "background-repeat-x", "background-repeat-y", "background-clip", "background-origin", "background-attachment", "background-image"])], ["background-position", /* @__PURE__ */ new Set(["background-position-x", "background-position-y"])], ["background-repeat", /* @__PURE__ */ new Set(["background-repeat-x", "background-repeat-y"])], ["font", /* @__PURE__ */ new Set(["font-style", "font-variant-caps", "font-weight", "font-stretch", "font-size", "line-height", "font-family", "font-size-adjust", "font-kerning", "font-optical-sizing", "font-variant-alternates", "font-variant-east-asian", "font-variant-ligatures", "font-variant-numeric", "font-variant-position", "font-language-override", "font-feature-settings", "font-variation-settings"])], ["font-variant", /* @__PURE__ */ new Set(["font-variant-caps", "font-variant-numeric", "font-variant-alternates", "font-variant-ligatures", "font-variant-east-asian"])], ["outline", /* @__PURE__ */ new Set(["outline-width", "outline-style", "outline-color"])], ["border", /* @__PURE__ */ new Set(["border-top-width", "border-right-width", "border-bottom-width", "border-left-width", "border-top-style", "border-right-style", "border-bottom-style", "border-left-style", "border-top-color", "border-right-color", "border-bottom-color", "border-left-color", "border-image-source", "border-image-slice", "border-image-width", "border-image-outset", "border-image-repeat"])], ["border-width", /* @__PURE__ */ new Set(["border-top-width", "border-right-width", "border-bottom-width", "border-left-width"])], ["border-style", /* @__PURE__ */ new Set(["border-top-style", "border-right-style", "border-bottom-style", "border-left-style"])], ["border-color", /* @__PURE__ */ new Set(["border-top-color", "border-right-color", "border-bottom-color", "border-left-color"])], ["border-block", /* @__PURE__ */ new Set(["border-block-start-width", "border-block-end-width", "border-block-start-style", "border-block-end-style", "border-block-start-color", "border-block-end-color"])], ["border-block-start", /* @__PURE__ */ new Set(["border-block-start-width", "border-block-start-style", "border-block-start-color"])], ["border-block-end", /* @__PURE__ */ new Set(["border-block-end-width", "border-block-end-style", "border-block-end-color"])], ["border-inline", /* @__PURE__ */ new Set(["border-inline-start-width", "border-inline-end-width", "border-inline-start-style", "border-inline-end-style", "border-inline-start-color", "border-inline-end-color"])], ["border-inline-start", /* @__PURE__ */ new Set(["border-inline-start-width", "border-inline-start-style", "border-inline-start-color"])], ["border-inline-end", /* @__PURE__ */ new Set(["border-inline-end-width", "border-inline-end-style", "border-inline-end-color"])], ["border-image", /* @__PURE__ */ new Set(["border-image-source", "border-image-slice", "border-image-width", "border-image-outset", "border-image-repeat"])], ["border-radius", /* @__PURE__ */ new Set(["border-top-left-radius", "border-top-right-radius", "border-bottom-right-radius", "border-bottom-left-radius"])], ["padding", /* @__PURE__ */ new Set(["padding-top", "padding-right", "padding-bottom", "padding-left"])], ["padding-block", /* @__PURE__ */ new Set(["padding-block-start", "padding-block-end"])], ["padding-inline", /* @__PURE__ */ new Set(["padding-inline-start", "padding-inline-end"])], ["margin", /* @__PURE__ */ new Set(["margin-top", "margin-right", "margin-bottom", "margin-left"])], ["margin-block", /* @__PURE__ */ new Set(["margin-block-start", "margin-block-end"])], ["margin-inline", /* @__PURE__ */ new Set(["margin-inline-start", "margin-inline-end"])], ["inset", /* @__PURE__ */ new Set(["top", "right", "bottom", "left"])], ["inset-block", /* @__PURE__ */ new Set(["inset-block-start", "inset-block-end"])], ["inset-inline", /* @__PURE__ */ new Set(["inset-inline-start", "inset-inline-end"])], ["flex", /* @__PURE__ */ new Set(["flex-grow", "flex-shrink", "flex-basis"])], ["flex-flow", /* @__PURE__ */ new Set(["flex-direction", "flex-wrap"])], ["gap", /* @__PURE__ */ new Set(["row-gap", "column-gap"])], ["transition", /* @__PURE__ */ new Set(["transition-duration", "transition-timing-function", "transition-delay", "transition-property"])], ["grid", /* @__PURE__ */ new Set(["grid-template-rows", "grid-template-columns", "grid-template-areas", "grid-auto-flow", "grid-auto-columns", "grid-auto-rows"])], ["grid-template", /* @__PURE__ */ new Set(["grid-template-rows", "grid-template-columns", "grid-template-areas"])], ["grid-row", /* @__PURE__ */ new Set(["grid-row-start", "grid-row-end"])], ["grid-column", /* @__PURE__ */ new Set(["grid-column-start", "grid-column-end"])], ["grid-gap", /* @__PURE__ */ new Set(["grid-row-gap", "grid-column-gap", "row-gap", "column-gap"])], ["place-content", /* @__PURE__ */ new Set(["align-content", "justify-content"])], ["place-items", /* @__PURE__ */ new Set(["align-items", "justify-items"])], ["place-self", /* @__PURE__ */ new Set(["align-self", "justify-self"])], ["columns", /* @__PURE__ */ new Set(["column-width", "column-count"])], ["column-rule", /* @__PURE__ */ new Set(["column-rule-width", "column-rule-style", "column-rule-color"])], ["list-style", /* @__PURE__ */ new Set(["list-style-type", "list-style-position", "list-style-image"])], ["offset", /* @__PURE__ */ new Set(["offset-position", "offset-path", "offset-distance", "offset-rotate", "offset-anchor"])], ["overflow", /* @__PURE__ */ new Set(["overflow-x", "overflow-y"])], ["overscroll-behavior", /* @__PURE__ */ new Set(["overscroll-behavior-x", "overscroll-behavior-y"])], ["scroll-margin", /* @__PURE__ */ new Set(["scroll-margin-top", "scroll-margin-right", "scroll-margin-bottom", "scroll-margin-left"])], ["scroll-padding", /* @__PURE__ */ new Set(["scroll-padding-top", "scroll-padding-right", "scroll-padding-bottom", "scroll-padding-left"])], ["text-decoration", /* @__PURE__ */ new Set(["text-decoration-line", "text-decoration-style", "text-decoration-color", "text-decoration-thickness"])], ["text-stroke", /* @__PURE__ */ new Set(["text-stroke-color", "text-stroke-width"])], ["animation", /* @__PURE__ */ new Set(["animation-duration", "animation-timing-function", "animation-delay", "animation-iteration-count", "animation-direction", "animation-fill-mode", "animation-play-state", "animation-name", "animation-timeline", "animation-range-start", "animation-range-end"])], ["mask", /* @__PURE__ */ new Set(["mask-image", "mask-mode", "mask-repeat-x", "mask-repeat-y", "mask-position-x", "mask-position-y", "mask-clip", "mask-origin", "mask-size", "mask-composite"])], ["mask-repeat", /* @__PURE__ */ new Set(["mask-repeat-x", "mask-repeat-y"])], ["mask-position", /* @__PURE__ */ new Set(["mask-position-x", "mask-position-y"])], ["perspective-origin", /* @__PURE__ */ new Set(["perspective-origin-x", "perspective-origin-y"])], ["transform-origin", /* @__PURE__ */ new Set(["transform-origin-x", "transform-origin-y", "transform-origin-z"])], ["white-space", /* @__PURE__ */ new Set(["white-space-collapse", "text-wrap"])]]), Qc = new Map([nu("animation", "moz"), nu("border-image", "moz"), nu("mask", "moz"), nu("transition", "moz"), nu("columns", "moz"), nu("text-stroke", "moz"), nu("column-rule", "moz"), ["-moz-border-end", /* @__PURE__ */ new Set(["-moz-border-end-color", "-moz-border-end-style", "-moz-border-end-width"])], ["-moz-border-start", /* @__PURE__ */ new Set(["-moz-border-start-color", "-moz-border-start-style", "-moz-border-start-width"])], ["-moz-outline-radius", /* @__PURE__ */ new Set(["-moz-outline-radius-topleft", "-moz-outline-radius-topright", "-moz-outline-radius-bottomright", "-moz-outline-radius-bottomleft"])]]), Jc = new Map([nu("animation", "webkit"), nu("border-radius", "webkit"), nu("column-rule", "webkit"), nu("columns", "webkit"), nu("flex", "webkit"), nu("flex-flow", "webkit"), nu("mask", "webkit"), nu("text-stroke", "webkit"), nu("perspective-origin", "webkit"), nu("transform-origin", "webkit"), nu("transition", "webkit"), ["-webkit-border-start", /* @__PURE__ */ new Set(["-webkit-border-start-color", "-webkit-border-start-style", "-webkit-border-start-width"])], ["-webkit-border-before", /* @__PURE__ */ new Set(["-webkit-border-before-color", "-webkit-border-before-style", "-webkit-border-before-width"])], ["-webkit-border-end", /* @__PURE__ */ new Set(["-webkit-border-end-color", "-webkit-border-end-style", "-webkit-border-end-width"])], ["-webkit-border-after", /* @__PURE__ */ new Set(["-webkit-border-after-color", "-webkit-border-after-style", "-webkit-border-after-width"])]]), eu = ["background-position", "background-repeat", "text-decoration"];
|
|
80058
80090
|
Qc.forEach((e4, t4) => Xc.set(t4, e4)), Jc.forEach((e4, t4) => Xc.set(t4, e4));
|
|
@@ -80212,10 +80244,10 @@ var require_processPagePollCjs = __commonJS({
|
|
|
80212
80244
|
return "Atrule" === e5.type && /^(-\w+-)?(media|supports|document|keyframes)$/.test(e5.name);
|
|
80213
80245
|
}(t5) ? i2.block = { type: "Block", children: e4(t5.block.children, n3[a2].block.children) } : wu(t5) && (i2.block = { type: "Block", children: yu(t5.block.children, n3[a2].block.children) })), o2.push(i2);
|
|
80214
80246
|
}, []), r2 < n3.length && vu(n3, r2, n3.length, (e5) => o2.push(e5)), o2;
|
|
80215
|
-
}, Lu = xu,
|
|
80216
|
-
function
|
|
80247
|
+
}, Lu = xu, Eu = Su;
|
|
80248
|
+
function Tu(e4, t4) {
|
|
80217
80249
|
var n3 = e4[0], r2 = e4[1], o2 = e4[2], i2 = e4[3];
|
|
80218
|
-
n3 = Du(n3, r2, o2, i2, t4[0], 7, -680876936), i2 = Du(i2, n3, r2, o2, t4[1], 12, -389564586), o2 = Du(o2, i2, n3, r2, t4[2], 17, 606105819), r2 = Du(r2, o2, i2, n3, t4[3], 22, -1044525330), n3 = Du(n3, r2, o2, i2, t4[4], 7, -176418897), i2 = Du(i2, n3, r2, o2, t4[5], 12, 1200080426), o2 = Du(o2, i2, n3, r2, t4[6], 17, -1473231341), r2 = Du(r2, o2, i2, n3, t4[7], 22, -45705983), n3 = Du(n3, r2, o2, i2, t4[8], 7, 1770035416), i2 = Du(i2, n3, r2, o2, t4[9], 12, -1958414417), o2 = Du(o2, i2, n3, r2, t4[10], 17, -42063), r2 = Du(r2, o2, i2, n3, t4[11], 22, -1990404162), n3 = Du(n3, r2, o2, i2, t4[12], 7, 1804603682), i2 = Du(i2, n3, r2, o2, t4[13], 12, -40341101), o2 = Du(o2, i2, n3, r2, t4[14], 17, -1502002290), n3 = Pu(n3, r2 = Du(r2, o2, i2, n3, t4[15], 22, 1236535329), o2, i2, t4[1], 5, -165796510), i2 = Pu(i2, n3, r2, o2, t4[6], 9, -1069501632), o2 = Pu(o2, i2, n3, r2, t4[11], 14, 643717713), r2 = Pu(r2, o2, i2, n3, t4[0], 20, -373897302), n3 = Pu(n3, r2, o2, i2, t4[5], 5, -701558691), i2 = Pu(i2, n3, r2, o2, t4[10], 9, 38016083), o2 = Pu(o2, i2, n3, r2, t4[15], 14, -660478335), r2 = Pu(r2, o2, i2, n3, t4[4], 20, -405537848), n3 = Pu(n3, r2, o2, i2, t4[9], 5, 568446438), i2 = Pu(i2, n3, r2, o2, t4[14], 9, -1019803690), o2 = Pu(o2, i2, n3, r2, t4[3], 14, -187363961), r2 = Pu(r2, o2, i2, n3, t4[8], 20, 1163531501), n3 = Pu(n3, r2, o2, i2, t4[13], 5, -1444681467), i2 = Pu(i2, n3, r2, o2, t4[2], 9, -51403784), o2 = Pu(o2, i2, n3, r2, t4[7], 14, 1735328473), n3 =
|
|
80250
|
+
n3 = Du(n3, r2, o2, i2, t4[0], 7, -680876936), i2 = Du(i2, n3, r2, o2, t4[1], 12, -389564586), o2 = Du(o2, i2, n3, r2, t4[2], 17, 606105819), r2 = Du(r2, o2, i2, n3, t4[3], 22, -1044525330), n3 = Du(n3, r2, o2, i2, t4[4], 7, -176418897), i2 = Du(i2, n3, r2, o2, t4[5], 12, 1200080426), o2 = Du(o2, i2, n3, r2, t4[6], 17, -1473231341), r2 = Du(r2, o2, i2, n3, t4[7], 22, -45705983), n3 = Du(n3, r2, o2, i2, t4[8], 7, 1770035416), i2 = Du(i2, n3, r2, o2, t4[9], 12, -1958414417), o2 = Du(o2, i2, n3, r2, t4[10], 17, -42063), r2 = Du(r2, o2, i2, n3, t4[11], 22, -1990404162), n3 = Du(n3, r2, o2, i2, t4[12], 7, 1804603682), i2 = Du(i2, n3, r2, o2, t4[13], 12, -40341101), o2 = Du(o2, i2, n3, r2, t4[14], 17, -1502002290), n3 = Pu(n3, r2 = Du(r2, o2, i2, n3, t4[15], 22, 1236535329), o2, i2, t4[1], 5, -165796510), i2 = Pu(i2, n3, r2, o2, t4[6], 9, -1069501632), o2 = Pu(o2, i2, n3, r2, t4[11], 14, 643717713), r2 = Pu(r2, o2, i2, n3, t4[0], 20, -373897302), n3 = Pu(n3, r2, o2, i2, t4[5], 5, -701558691), i2 = Pu(i2, n3, r2, o2, t4[10], 9, 38016083), o2 = Pu(o2, i2, n3, r2, t4[15], 14, -660478335), r2 = Pu(r2, o2, i2, n3, t4[4], 20, -405537848), n3 = Pu(n3, r2, o2, i2, t4[9], 5, 568446438), i2 = Pu(i2, n3, r2, o2, t4[14], 9, -1019803690), o2 = Pu(o2, i2, n3, r2, t4[3], 14, -187363961), r2 = Pu(r2, o2, i2, n3, t4[8], 20, 1163531501), n3 = Pu(n3, r2, o2, i2, t4[13], 5, -1444681467), i2 = Pu(i2, n3, r2, o2, t4[2], 9, -51403784), o2 = Pu(o2, i2, n3, r2, t4[7], 14, 1735328473), n3 = Ru(n3, r2 = Pu(r2, o2, i2, n3, t4[12], 20, -1926607734), o2, i2, t4[5], 4, -378558), i2 = Ru(i2, n3, r2, o2, t4[8], 11, -2022574463), o2 = Ru(o2, i2, n3, r2, t4[11], 16, 1839030562), r2 = Ru(r2, o2, i2, n3, t4[14], 23, -35309556), n3 = Ru(n3, r2, o2, i2, t4[1], 4, -1530992060), i2 = Ru(i2, n3, r2, o2, t4[4], 11, 1272893353), o2 = Ru(o2, i2, n3, r2, t4[7], 16, -155497632), r2 = Ru(r2, o2, i2, n3, t4[10], 23, -1094730640), n3 = Ru(n3, r2, o2, i2, t4[13], 4, 681279174), i2 = Ru(i2, n3, r2, o2, t4[0], 11, -358537222), o2 = Ru(o2, i2, n3, r2, t4[3], 16, -722521979), r2 = Ru(r2, o2, i2, n3, t4[6], 23, 76029189), n3 = Ru(n3, r2, o2, i2, t4[9], 4, -640364487), i2 = Ru(i2, n3, r2, o2, t4[12], 11, -421815835), o2 = Ru(o2, i2, n3, r2, t4[15], 16, 530742520), n3 = Iu(n3, r2 = Ru(r2, o2, i2, n3, t4[2], 23, -995338651), o2, i2, t4[0], 6, -198630844), i2 = Iu(i2, n3, r2, o2, t4[7], 10, 1126891415), o2 = Iu(o2, i2, n3, r2, t4[14], 15, -1416354905), r2 = Iu(r2, o2, i2, n3, t4[5], 21, -57434055), n3 = Iu(n3, r2, o2, i2, t4[12], 6, 1700485571), i2 = Iu(i2, n3, r2, o2, t4[3], 10, -1894986606), o2 = Iu(o2, i2, n3, r2, t4[10], 15, -1051523), r2 = Iu(r2, o2, i2, n3, t4[1], 21, -2054922799), n3 = Iu(n3, r2, o2, i2, t4[8], 6, 1873313359), i2 = Iu(i2, n3, r2, o2, t4[15], 10, -30611744), o2 = Iu(o2, i2, n3, r2, t4[6], 15, -1560198380), r2 = Iu(r2, o2, i2, n3, t4[13], 21, 1309151649), n3 = Iu(n3, r2, o2, i2, t4[4], 6, -145523070), i2 = Iu(i2, n3, r2, o2, t4[11], 10, -1120210379), o2 = Iu(o2, i2, n3, r2, t4[2], 15, 718787259), r2 = Iu(r2, o2, i2, n3, t4[9], 21, -343485551), e4[0] = Mu(n3, e4[0]), e4[1] = Mu(r2, e4[1]), e4[2] = Mu(o2, e4[2]), e4[3] = Mu(i2, e4[3]);
|
|
80219
80251
|
}
|
|
80220
80252
|
function Nu(e4, t4, n3, r2, o2, i2) {
|
|
80221
80253
|
return t4 = Mu(Mu(t4, e4), Mu(r2, i2)), Mu(t4 << o2 | t4 >>> 32 - o2, n3);
|
|
@@ -80226,10 +80258,10 @@ var require_processPagePollCjs = __commonJS({
|
|
|
80226
80258
|
function Pu(e4, t4, n3, r2, o2, i2, a2) {
|
|
80227
80259
|
return Nu(t4 & r2 | n3 & ~r2, e4, t4, o2, i2, a2);
|
|
80228
80260
|
}
|
|
80229
|
-
function
|
|
80261
|
+
function Ru(e4, t4, n3, r2, o2, i2, a2) {
|
|
80230
80262
|
return Nu(t4 ^ n3 ^ r2, e4, t4, o2, i2, a2);
|
|
80231
80263
|
}
|
|
80232
|
-
function
|
|
80264
|
+
function Iu(e4, t4, n3, r2, o2, i2, a2) {
|
|
80233
80265
|
return Nu(n3 ^ (t4 | ~r2), e4, t4, o2, i2, a2);
|
|
80234
80266
|
}
|
|
80235
80267
|
function Bu(e4) {
|
|
@@ -80299,7 +80331,7 @@ var require_processPagePollCjs = __commonJS({
|
|
|
80299
80331
|
const { absolutizeUrl: Ju, isInlineFrame: eh, isAccessibleFrame: th } = u, nh = function() {
|
|
80300
80332
|
return window.crypto.getRandomValues(new Uint32Array(1))[0];
|
|
80301
80333
|
}, rh = function(e4, t4 = Lu) {
|
|
80302
|
-
t4("[processInlineCss] processing inline css for",
|
|
80334
|
+
t4("[processInlineCss] processing inline css for", Eu(e4));
|
|
80303
80335
|
try {
|
|
80304
80336
|
const n3 = Au(e4.textContent);
|
|
80305
80337
|
t4("[processInlineCss] created AST for textContent");
|
|
@@ -80322,15 +80354,15 @@ var require_processPagePollCjs = __commonJS({
|
|
|
80322
80354
|
}(function(e6) {
|
|
80323
80355
|
var t5, n3 = e6.length, r2 = [1732584193, -271733879, -1732584194, 271733878];
|
|
80324
80356
|
for (t5 = 64; t5 <= e6.length; t5 += 64)
|
|
80325
|
-
|
|
80357
|
+
Tu(r2, Bu(e6.substring(t5 - 64, t5)));
|
|
80326
80358
|
e6 = e6.substring(t5 - 64);
|
|
80327
80359
|
var o2 = [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0];
|
|
80328
80360
|
for (t5 = 0; t5 < e6.length; t5++)
|
|
80329
80361
|
o2[t5 >> 2] |= e6.charCodeAt(t5) << (t5 % 4 << 3);
|
|
80330
80362
|
if (o2[t5 >> 2] |= 128 << (t5 % 4 << 3), t5 > 55)
|
|
80331
|
-
for (
|
|
80363
|
+
for (Tu(r2, o2), t5 = 0; t5 < 16; t5++)
|
|
80332
80364
|
o2[t5] = 0;
|
|
80333
|
-
return o2[14] = 8 * n3,
|
|
80365
|
+
return o2[14] = 8 * n3, Tu(r2, o2), r2;
|
|
80334
80366
|
}(e5));
|
|
80335
80367
|
}(t4);
|
|
80336
80368
|
}, ih = function(e4) {
|
|
@@ -80372,20 +80404,24 @@ var require_processPagePollCjs = __commonJS({
|
|
|
80372
80404
|
const { display: n3 } = t4.defaultView.getComputedStyle(e4), { width: r2, height: o2 } = e4.getBoundingClientRect();
|
|
80373
80405
|
return "none" === n3 || 0 === r2 || 0 === o2;
|
|
80374
80406
|
}, uh = function(e4) {
|
|
80375
|
-
|
|
80376
|
-
|
|
80377
|
-
|
|
80378
|
-
|
|
80379
|
-
|
|
80380
|
-
|
|
80381
|
-
|
|
80382
|
-
|
|
80383
|
-
|
|
80384
|
-
|
|
80385
|
-
|
|
80386
|
-
|
|
80407
|
+
try {
|
|
80408
|
+
return Gu.toPlainObject(Gu.parse(e4.toLowerCase(), { context: "mediaQueryList" })).children.some((e5) => {
|
|
80409
|
+
const t4 = e5.children.reduce((e6, t5) => ("Identifier" === t5.type && "and" === t5.name ? e6.push([]) : e6[e6.length - 1].push(t5), e6), [[]]);
|
|
80410
|
+
return t4.every((e6) => {
|
|
80411
|
+
let t5, n3;
|
|
80412
|
+
if (1 === e6.length)
|
|
80413
|
+
[n3] = e6;
|
|
80414
|
+
else {
|
|
80415
|
+
if (2 !== e6.length)
|
|
80416
|
+
return false;
|
|
80417
|
+
[t5, n3] = e6;
|
|
80418
|
+
}
|
|
80419
|
+
return !(t5 && ("Identifier" !== t5.type || !["not", "only"].includes(t5.name))) && ("MediaFeature" === n3.type || ("Identifier" === n3.type && ["all", "screen"].includes(n3.name) ? !t5 || "not" !== t5.name : t5 && "not" === t5.name));
|
|
80420
|
+
});
|
|
80387
80421
|
});
|
|
80388
|
-
}
|
|
80422
|
+
} catch {
|
|
80423
|
+
return false;
|
|
80424
|
+
}
|
|
80389
80425
|
}, hh = Qu, dh = Su, ph = /* @__PURE__ */ new Set(["date", "datetime-local", "email", "month", "number", "password", "search", "tel", "text", "time", "url", "week"]), mh = /^on[a-z]+$/;
|
|
80390
80426
|
function fh({ attributes: e4 = {} }) {
|
|
80391
80427
|
return Object.keys(e4).filter((t4) => e4[t4] && e4[t4].name);
|
|
@@ -80450,8 +80486,8 @@ var require_processPagePollCjs = __commonJS({
|
|
|
80450
80486
|
for (var t4 = e4.length; --t4 >= 0; )
|
|
80451
80487
|
e4[t4] = 0;
|
|
80452
80488
|
}
|
|
80453
|
-
var Ah = 256, zh = 286, Lh = 30,
|
|
80454
|
-
Ch(
|
|
80489
|
+
var Ah = 256, zh = 286, Lh = 30, Eh = 15, Th = 16, Nh = [0, 0, 0, 0, 0, 0, 0, 0, 1, 1, 1, 1, 2, 2, 2, 2, 3, 3, 3, 3, 4, 4, 4, 4, 5, 5, 5, 5, 0], Dh = [0, 0, 0, 0, 1, 1, 2, 2, 3, 3, 4, 4, 5, 5, 6, 6, 7, 7, 8, 8, 9, 9, 10, 10, 11, 11, 12, 12, 13, 13], Ph = [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 2, 3, 7], Rh = [16, 17, 18, 0, 8, 7, 9, 6, 10, 5, 11, 4, 12, 3, 13, 2, 14, 1, 15], Ih = new Array(576);
|
|
80490
|
+
Ch(Ih);
|
|
80455
80491
|
var Bh = new Array(60);
|
|
80456
80492
|
Ch(Bh);
|
|
80457
80493
|
var Oh = new Array(512);
|
|
@@ -80474,7 +80510,7 @@ var require_processPagePollCjs = __commonJS({
|
|
|
80474
80510
|
e4.pending_buf[e4.pending++] = 255 & t4, e4.pending_buf[e4.pending++] = t4 >>> 8 & 255;
|
|
80475
80511
|
}
|
|
80476
80512
|
function Zh(e4, t4, n3) {
|
|
80477
|
-
e4.bi_valid >
|
|
80513
|
+
e4.bi_valid > Th - n3 ? (e4.bi_buf |= t4 << e4.bi_valid & 65535, Kh(e4, e4.bi_buf), e4.bi_buf = t4 >> Th - e4.bi_valid, e4.bi_valid += n3 - Th) : (e4.bi_buf |= t4 << e4.bi_valid & 65535, e4.bi_valid += n3);
|
|
80478
80514
|
}
|
|
80479
80515
|
function Gh(e4, t4, n3) {
|
|
80480
80516
|
Zh(e4, n3[2 * t4], n3[2 * t4 + 1]);
|
|
@@ -80487,8 +80523,8 @@ var require_processPagePollCjs = __commonJS({
|
|
|
80487
80523
|
return n3 >>> 1;
|
|
80488
80524
|
}
|
|
80489
80525
|
function Xh(e4, t4, n3) {
|
|
80490
|
-
var r2, o2, i2 = new Array(
|
|
80491
|
-
for (r2 = 1; r2 <=
|
|
80526
|
+
var r2, o2, i2 = new Array(Eh + 1), a2 = 0;
|
|
80527
|
+
for (r2 = 1; r2 <= Eh; r2++)
|
|
80492
80528
|
i2[r2] = a2 = a2 + n3[r2 - 1] << 1;
|
|
80493
80529
|
for (o2 = 0; o2 <= t4; o2++) {
|
|
80494
80530
|
var s2 = e4[2 * o2 + 1];
|
|
@@ -80539,7 +80575,7 @@ var require_processPagePollCjs = __commonJS({
|
|
|
80539
80575
|
} while (e4.heap_len >= 2);
|
|
80540
80576
|
e4.heap[--e4.heap_max] = e4.heap[1], function(e5, t5) {
|
|
80541
80577
|
var n4, r3, o3, i3, a3, s3, l3 = t5.dyn_tree, c3 = t5.max_code, u2 = t5.stat_desc.static_tree, h2 = t5.stat_desc.has_stree, d2 = t5.stat_desc.extra_bits, p2 = t5.stat_desc.extra_base, m2 = t5.stat_desc.max_length, f2 = 0;
|
|
80542
|
-
for (i3 = 0; i3 <=
|
|
80578
|
+
for (i3 = 0; i3 <= Eh; i3++)
|
|
80543
80579
|
e5.bl_count[i3] = 0;
|
|
80544
80580
|
for (l3[2 * e5.heap[e5.heap_max] + 1] = 0, n4 = e5.heap_max + 1; n4 < 573; n4++)
|
|
80545
80581
|
(i3 = l3[2 * l3[2 * (r3 = e5.heap[n4]) + 1] + 1] + 1) > m2 && (i3 = m2, f2++), l3[2 * r3 + 1] = i3, r3 > c3 || (e5.bl_count[i3]++, a3 = 0, r3 >= p2 && (a3 = d2[r3 - p2]), s3 = l3[2 * r3], e5.opt_len += s3 * (i3 + a3), h2 && (e5.static_len += s3 * (u2[2 * r3 + 1] + a3)));
|
|
@@ -80582,7 +80618,7 @@ var require_processPagePollCjs = __commonJS({
|
|
|
80582
80618
|
}
|
|
80583
80619
|
Sh._tr_init = function(e4) {
|
|
80584
80620
|
ad || (function() {
|
|
80585
|
-
var e5, t4, n3, r2, o2, i2 = new Array(
|
|
80621
|
+
var e5, t4, n3, r2, o2, i2 = new Array(Eh + 1);
|
|
80586
80622
|
for (n3 = 0, r2 = 0; r2 < 28; r2++)
|
|
80587
80623
|
for (Mh[r2] = n3, e5 = 0; e5 < 1 << Nh[r2]; e5++)
|
|
80588
80624
|
Uh[n3++] = r2;
|
|
@@ -80592,19 +80628,19 @@ var require_processPagePollCjs = __commonJS({
|
|
|
80592
80628
|
for (o2 >>= 7; r2 < Lh; r2++)
|
|
80593
80629
|
for (qh[r2] = o2 << 7, e5 = 0; e5 < 1 << Dh[r2] - 7; e5++)
|
|
80594
80630
|
Oh[256 + o2++] = r2;
|
|
80595
|
-
for (t4 = 0; t4 <=
|
|
80631
|
+
for (t4 = 0; t4 <= Eh; t4++)
|
|
80596
80632
|
i2[t4] = 0;
|
|
80597
80633
|
for (e5 = 0; e5 <= 143; )
|
|
80598
|
-
|
|
80634
|
+
Ih[2 * e5 + 1] = 8, e5++, i2[8]++;
|
|
80599
80635
|
for (; e5 <= 255; )
|
|
80600
|
-
|
|
80636
|
+
Ih[2 * e5 + 1] = 9, e5++, i2[9]++;
|
|
80601
80637
|
for (; e5 <= 279; )
|
|
80602
|
-
|
|
80638
|
+
Ih[2 * e5 + 1] = 7, e5++, i2[7]++;
|
|
80603
80639
|
for (; e5 <= 287; )
|
|
80604
|
-
|
|
80605
|
-
for (Xh(
|
|
80640
|
+
Ih[2 * e5 + 1] = 8, e5++, i2[8]++;
|
|
80641
|
+
for (Xh(Ih, 287, i2), e5 = 0; e5 < Lh; e5++)
|
|
80606
80642
|
Bh[2 * e5 + 1] = 5, Bh[2 * e5] = Yh(e5, 5);
|
|
80607
|
-
Fh = new Wh(
|
|
80643
|
+
Fh = new Wh(Ih, Nh, 257, zh, Eh), jh = new Wh(Bh, Dh, 0, Lh, Eh), Hh = new Wh(new Array(0), Ph, 0, 19, 7);
|
|
80608
80644
|
}(), ad = true), e4.l_desc = new $h(e4.dyn_ltree, Fh), e4.d_desc = new $h(e4.dyn_dtree, jh), e4.bl_desc = new $h(e4.bl_tree, Hh), e4.bi_buf = 0, e4.bi_valid = 0, Qh(e4);
|
|
80609
80645
|
}, Sh._tr_stored_block = sd, Sh._tr_flush_block = function(e4, t4, n3, r2) {
|
|
80610
80646
|
var o2, i2, a2 = 0;
|
|
@@ -80621,19 +80657,19 @@ var require_processPagePollCjs = __commonJS({
|
|
|
80621
80657
|
return 0;
|
|
80622
80658
|
}(e4)), rd(e4, e4.l_desc), rd(e4, e4.d_desc), a2 = function(e5) {
|
|
80623
80659
|
var t5;
|
|
80624
|
-
for (od(e5, e5.dyn_ltree, e5.l_desc.max_code), od(e5, e5.dyn_dtree, e5.d_desc.max_code), rd(e5, e5.bl_desc), t5 = 18; t5 >= 3 && 0 === e5.bl_tree[2 *
|
|
80660
|
+
for (od(e5, e5.dyn_ltree, e5.l_desc.max_code), od(e5, e5.dyn_dtree, e5.d_desc.max_code), rd(e5, e5.bl_desc), t5 = 18; t5 >= 3 && 0 === e5.bl_tree[2 * Rh[t5] + 1]; t5--)
|
|
80625
80661
|
;
|
|
80626
80662
|
return e5.opt_len += 3 * (t5 + 1) + 5 + 5 + 4, t5;
|
|
80627
|
-
}(e4), o2 = e4.opt_len + 3 + 7 >>> 3, (i2 = e4.static_len + 3 + 7 >>> 3) <= o2 && (o2 = i2)) : o2 = i2 = n3 + 5, n3 + 4 <= o2 && -1 !== t4 ? sd(e4, t4, n3, r2) : 4 === e4.strategy || i2 === o2 ? (Zh(e4, 2 + (r2 ? 1 : 0), 3), nd(e4,
|
|
80663
|
+
}(e4), o2 = e4.opt_len + 3 + 7 >>> 3, (i2 = e4.static_len + 3 + 7 >>> 3) <= o2 && (o2 = i2)) : o2 = i2 = n3 + 5, n3 + 4 <= o2 && -1 !== t4 ? sd(e4, t4, n3, r2) : 4 === e4.strategy || i2 === o2 ? (Zh(e4, 2 + (r2 ? 1 : 0), 3), nd(e4, Ih, Bh)) : (Zh(e4, 4 + (r2 ? 1 : 0), 3), function(e5, t5, n4, r3) {
|
|
80628
80664
|
var o3;
|
|
80629
80665
|
for (Zh(e5, t5 - 257, 5), Zh(e5, n4 - 1, 5), Zh(e5, r3 - 4, 4), o3 = 0; o3 < r3; o3++)
|
|
80630
|
-
Zh(e5, e5.bl_tree[2 *
|
|
80666
|
+
Zh(e5, e5.bl_tree[2 * Rh[o3] + 1], 3);
|
|
80631
80667
|
id(e5, e5.dyn_ltree, t5 - 1), id(e5, e5.dyn_dtree, n4 - 1);
|
|
80632
80668
|
}(e4, e4.l_desc.max_code + 1, e4.d_desc.max_code + 1, a2 + 1), nd(e4, e4.dyn_ltree, e4.dyn_dtree)), Qh(e4), r2 && Jh(e4);
|
|
80633
80669
|
}, Sh._tr_tally = function(e4, t4, n3) {
|
|
80634
80670
|
return e4.pending_buf[e4.d_buf + 2 * e4.last_lit] = t4 >>> 8 & 255, e4.pending_buf[e4.d_buf + 2 * e4.last_lit + 1] = 255 & t4, e4.pending_buf[e4.l_buf + e4.last_lit] = 255 & n3, e4.last_lit++, 0 === t4 ? e4.dyn_ltree[2 * n3]++ : (e4.matches++, t4--, e4.dyn_ltree[2 * (Uh[n3] + Ah + 1)]++, e4.dyn_dtree[2 * Vh(t4)]++), e4.last_lit === e4.lit_bufsize - 1;
|
|
80635
80671
|
}, Sh._tr_align = function(e4) {
|
|
80636
|
-
Zh(e4, 2, 3), Gh(e4, 256,
|
|
80672
|
+
Zh(e4, 2, 3), Gh(e4, 256, Ih), function(e5) {
|
|
80637
80673
|
16 === e5.bi_valid ? (Kh(e5, e5.bi_buf), e5.bi_buf = 0, e5.bi_valid = 0) : e5.bi_valid >= 8 && (e5.pending_buf[e5.pending++] = 255 & e5.bi_buf, e5.bi_buf >>= 8, e5.bi_valid -= 8);
|
|
80638
80674
|
}(e4);
|
|
80639
80675
|
};
|
|
@@ -80660,8 +80696,8 @@ var require_processPagePollCjs = __commonJS({
|
|
|
80660
80696
|
for (var a2 = r2; a2 < i2; a2++)
|
|
80661
80697
|
e4 = e4 >>> 8 ^ o2[255 & (e4 ^ t4[a2])];
|
|
80662
80698
|
return -1 ^ e4;
|
|
80663
|
-
}, dd = { 2: "need dictionary", 1: "stream end", 0: "", "-1": "file error", "-2": "stream error", "-3": "data error", "-4": "insufficient memory", "-5": "buffer error", "-6": "incompatible version" }, pd = wh, md = Sh, fd = cd, gd = hd, bd = dd, yd = 0, kd = 0, wd = -2, vd = 2, xd = 8, Sd = 286, _d = 30, Cd = 19, Ad = 2 * Sd + 1, zd = 15, Ld = 3,
|
|
80664
|
-
function
|
|
80699
|
+
}, dd = { 2: "need dictionary", 1: "stream end", 0: "", "-1": "file error", "-2": "stream error", "-3": "data error", "-4": "insufficient memory", "-5": "buffer error", "-6": "incompatible version" }, pd = wh, md = Sh, fd = cd, gd = hd, bd = dd, yd = 0, kd = 0, wd = -2, vd = 2, xd = 8, Sd = 286, _d = 30, Cd = 19, Ad = 2 * Sd + 1, zd = 15, Ld = 3, Ed = 258, Td = Ed + Ld + 1, Nd = 42, Dd = 103, Pd = 113, Rd = 666;
|
|
80700
|
+
function Id(e4, t4) {
|
|
80665
80701
|
return e4.msg = bd[t4], t4;
|
|
80666
80702
|
}
|
|
80667
80703
|
function Bd(e4) {
|
|
@@ -80685,14 +80721,14 @@ var require_processPagePollCjs = __commonJS({
|
|
|
80685
80721
|
e4.pending_buf[e4.pending++] = t4 >>> 8 & 255, e4.pending_buf[e4.pending++] = 255 & t4;
|
|
80686
80722
|
}
|
|
80687
80723
|
function Hd(e4, t4) {
|
|
80688
|
-
var n3, r2, o2 = e4.max_chain_length, i2 = e4.strstart, a2 = e4.prev_length, s2 = e4.nice_match, l2 = e4.strstart > e4.w_size -
|
|
80724
|
+
var n3, r2, o2 = e4.max_chain_length, i2 = e4.strstart, a2 = e4.prev_length, s2 = e4.nice_match, l2 = e4.strstart > e4.w_size - Td ? e4.strstart - (e4.w_size - Td) : 0, c2 = e4.window, u2 = e4.w_mask, h2 = e4.prev, d2 = e4.strstart + Ed, p2 = c2[i2 + a2 - 1], m2 = c2[i2 + a2];
|
|
80689
80725
|
e4.prev_length >= e4.good_match && (o2 >>= 2), s2 > e4.lookahead && (s2 = e4.lookahead);
|
|
80690
80726
|
do {
|
|
80691
80727
|
if (c2[(n3 = t4) + a2] === m2 && c2[n3 + a2 - 1] === p2 && c2[n3] === c2[i2] && c2[++n3] === c2[i2 + 1]) {
|
|
80692
80728
|
i2 += 2, n3++;
|
|
80693
80729
|
do {
|
|
80694
80730
|
} while (c2[++i2] === c2[++n3] && c2[++i2] === c2[++n3] && c2[++i2] === c2[++n3] && c2[++i2] === c2[++n3] && c2[++i2] === c2[++n3] && c2[++i2] === c2[++n3] && c2[++i2] === c2[++n3] && c2[++i2] === c2[++n3] && i2 < d2);
|
|
80695
|
-
if (r2 =
|
|
80731
|
+
if (r2 = Ed - (d2 - i2), i2 = d2 - Ed, r2 > a2) {
|
|
80696
80732
|
if (e4.match_start = t4, a2 = r2, r2 >= s2)
|
|
80697
80733
|
break;
|
|
80698
80734
|
p2 = c2[i2 + a2 - 1], m2 = c2[i2 + a2];
|
|
@@ -80704,7 +80740,7 @@ var require_processPagePollCjs = __commonJS({
|
|
|
80704
80740
|
function qd(e4) {
|
|
80705
80741
|
var t4, n3, r2, o2, i2, a2, s2, l2, c2, u2, h2 = e4.w_size;
|
|
80706
80742
|
do {
|
|
80707
|
-
if (o2 = e4.window_size - e4.lookahead - e4.strstart, e4.strstart >= h2 + (h2 -
|
|
80743
|
+
if (o2 = e4.window_size - e4.lookahead - e4.strstart, e4.strstart >= h2 + (h2 - Td)) {
|
|
80708
80744
|
pd.arraySet(e4.window, e4.window, h2, h2, 0), e4.match_start -= h2, e4.strstart -= h2, e4.block_start -= h2, t4 = n3 = e4.hash_size;
|
|
80709
80745
|
do {
|
|
80710
80746
|
r2 = e4.head[--t4], e4.head[t4] = r2 >= h2 ? r2 - h2 : 0;
|
|
@@ -80720,17 +80756,17 @@ var require_processPagePollCjs = __commonJS({
|
|
|
80720
80756
|
if (a2 = e4.strm, s2 = e4.window, l2 = e4.strstart + e4.lookahead, c2 = o2, u2 = void 0, (u2 = a2.avail_in) > c2 && (u2 = c2), n3 = 0 === u2 ? 0 : (a2.avail_in -= u2, pd.arraySet(s2, a2.input, a2.next_in, u2, l2), 1 === a2.state.wrap ? a2.adler = fd(a2.adler, s2, u2, l2) : 2 === a2.state.wrap && (a2.adler = gd(a2.adler, s2, u2, l2)), a2.next_in += u2, a2.total_in += u2, u2), e4.lookahead += n3, e4.lookahead + e4.insert >= Ld)
|
|
80721
80757
|
for (i2 = e4.strstart - e4.insert, e4.ins_h = e4.window[i2], e4.ins_h = (e4.ins_h << e4.hash_shift ^ e4.window[i2 + 1]) & e4.hash_mask; e4.insert && (e4.ins_h = (e4.ins_h << e4.hash_shift ^ e4.window[i2 + Ld - 1]) & e4.hash_mask, e4.prev[i2 & e4.w_mask] = e4.head[e4.ins_h], e4.head[e4.ins_h] = i2, i2++, e4.insert--, !(e4.lookahead + e4.insert < Ld)); )
|
|
80722
80758
|
;
|
|
80723
|
-
} while (e4.lookahead <
|
|
80759
|
+
} while (e4.lookahead < Td && 0 !== e4.strm.avail_in);
|
|
80724
80760
|
}
|
|
80725
80761
|
function Wd(e4, t4) {
|
|
80726
80762
|
for (var n3, r2; ; ) {
|
|
80727
|
-
if (e4.lookahead <
|
|
80728
|
-
if (qd(e4), e4.lookahead <
|
|
80763
|
+
if (e4.lookahead < Td) {
|
|
80764
|
+
if (qd(e4), e4.lookahead < Td && t4 === yd)
|
|
80729
80765
|
return 1;
|
|
80730
80766
|
if (0 === e4.lookahead)
|
|
80731
80767
|
break;
|
|
80732
80768
|
}
|
|
80733
|
-
if (n3 = 0, e4.lookahead >= Ld && (e4.ins_h = (e4.ins_h << e4.hash_shift ^ e4.window[e4.strstart + Ld - 1]) & e4.hash_mask, n3 = e4.prev[e4.strstart & e4.w_mask] = e4.head[e4.ins_h], e4.head[e4.ins_h] = e4.strstart), 0 !== n3 && e4.strstart - n3 <= e4.w_size -
|
|
80769
|
+
if (n3 = 0, e4.lookahead >= Ld && (e4.ins_h = (e4.ins_h << e4.hash_shift ^ e4.window[e4.strstart + Ld - 1]) & e4.hash_mask, n3 = e4.prev[e4.strstart & e4.w_mask] = e4.head[e4.ins_h], e4.head[e4.ins_h] = e4.strstart), 0 !== n3 && e4.strstart - n3 <= e4.w_size - Td && (e4.match_length = Hd(e4, n3)), e4.match_length >= Ld)
|
|
80734
80770
|
if (r2 = md._tr_tally(e4, e4.strstart - e4.match_start, e4.match_length - Ld), e4.lookahead -= e4.match_length, e4.match_length <= e4.max_lazy_match && e4.lookahead >= Ld) {
|
|
80735
80771
|
e4.match_length--;
|
|
80736
80772
|
do {
|
|
@@ -80748,13 +80784,13 @@ var require_processPagePollCjs = __commonJS({
|
|
|
80748
80784
|
}
|
|
80749
80785
|
function $d(e4, t4) {
|
|
80750
80786
|
for (var n3, r2, o2; ; ) {
|
|
80751
|
-
if (e4.lookahead <
|
|
80752
|
-
if (qd(e4), e4.lookahead <
|
|
80787
|
+
if (e4.lookahead < Td) {
|
|
80788
|
+
if (qd(e4), e4.lookahead < Td && t4 === yd)
|
|
80753
80789
|
return 1;
|
|
80754
80790
|
if (0 === e4.lookahead)
|
|
80755
80791
|
break;
|
|
80756
80792
|
}
|
|
80757
|
-
if (n3 = 0, e4.lookahead >= Ld && (e4.ins_h = (e4.ins_h << e4.hash_shift ^ e4.window[e4.strstart + Ld - 1]) & e4.hash_mask, n3 = e4.prev[e4.strstart & e4.w_mask] = e4.head[e4.ins_h], e4.head[e4.ins_h] = e4.strstart), e4.prev_length = e4.match_length, e4.prev_match = e4.match_start, e4.match_length = Ld - 1, 0 !== n3 && e4.prev_length < e4.max_lazy_match && e4.strstart - n3 <= e4.w_size -
|
|
80793
|
+
if (n3 = 0, e4.lookahead >= Ld && (e4.ins_h = (e4.ins_h << e4.hash_shift ^ e4.window[e4.strstart + Ld - 1]) & e4.hash_mask, n3 = e4.prev[e4.strstart & e4.w_mask] = e4.head[e4.ins_h], e4.head[e4.ins_h] = e4.strstart), e4.prev_length = e4.match_length, e4.prev_match = e4.match_start, e4.match_length = Ld - 1, 0 !== n3 && e4.prev_length < e4.max_lazy_match && e4.strstart - n3 <= e4.w_size - Td && (e4.match_length = Hd(e4, n3), e4.match_length <= 5 && (1 === e4.strategy || e4.match_length === Ld && e4.strstart - e4.match_start > 4096) && (e4.match_length = Ld - 1)), e4.prev_length >= Ld && e4.match_length <= e4.prev_length) {
|
|
80758
80794
|
o2 = e4.strstart + e4.lookahead - Ld, r2 = md._tr_tally(e4, e4.strstart - 1 - e4.prev_match, e4.prev_length - Ld), e4.lookahead -= e4.prev_length - 1, e4.prev_length -= 2;
|
|
80759
80795
|
do {
|
|
80760
80796
|
++e4.strstart <= o2 && (e4.ins_h = (e4.ins_h << e4.hash_shift ^ e4.window[e4.strstart + Ld - 1]) & e4.hash_mask, n3 = e4.prev[e4.strstart & e4.w_mask] = e4.head[e4.ins_h], e4.head[e4.ins_h] = e4.strstart);
|
|
@@ -80777,7 +80813,7 @@ var require_processPagePollCjs = __commonJS({
|
|
|
80777
80813
|
}
|
|
80778
80814
|
function Zd(e4) {
|
|
80779
80815
|
var t4;
|
|
80780
|
-
return e4 && e4.state ? (e4.total_in = e4.total_out = 0, e4.data_type = vd, (t4 = e4.state).pending = 0, t4.pending_out = 0, t4.wrap < 0 && (t4.wrap = -t4.wrap), t4.status = t4.wrap ? Nd : Pd, e4.adler = 2 === t4.wrap ? 0 : 1, t4.last_flush = yd, md._tr_init(t4), kd) :
|
|
80816
|
+
return e4 && e4.state ? (e4.total_in = e4.total_out = 0, e4.data_type = vd, (t4 = e4.state).pending = 0, t4.pending_out = 0, t4.wrap < 0 && (t4.wrap = -t4.wrap), t4.status = t4.wrap ? Nd : Pd, e4.adler = 2 === t4.wrap ? 0 : 1, t4.last_flush = yd, md._tr_init(t4), kd) : Id(e4, wd);
|
|
80781
80817
|
}
|
|
80782
80818
|
function Gd(e4) {
|
|
80783
80819
|
var t4, n3 = Zd(e4);
|
|
@@ -80788,7 +80824,7 @@ var require_processPagePollCjs = __commonJS({
|
|
|
80788
80824
|
return wd;
|
|
80789
80825
|
var a2 = 1;
|
|
80790
80826
|
if (-1 === t4 && (t4 = 6), r2 < 0 ? (a2 = 0, r2 = -r2) : r2 > 15 && (a2 = 2, r2 -= 16), o2 < 1 || o2 > 9 || n3 !== xd || r2 < 8 || r2 > 15 || t4 < 0 || t4 > 9 || i2 < 0 || i2 > 4)
|
|
80791
|
-
return
|
|
80827
|
+
return Id(e4, wd);
|
|
80792
80828
|
8 === r2 && (r2 = 9);
|
|
80793
80829
|
var s2 = new Kd();
|
|
80794
80830
|
return e4.state = s2, s2.strm = e4, s2.wrap = a2, s2.gzhead = null, s2.w_bits = r2, s2.w_size = 1 << s2.w_bits, s2.w_mask = s2.w_size - 1, s2.hash_bits = o2 + 7, s2.hash_size = 1 << s2.hash_bits, s2.hash_mask = s2.hash_size - 1, s2.hash_shift = ~~((s2.hash_bits + Ld - 1) / Ld), s2.window = new pd.Buf8(2 * s2.w_size), s2.head = new pd.Buf16(s2.hash_size), s2.prev = new pd.Buf16(s2.w_size), s2.lit_bufsize = 1 << o2 + 6, s2.pending_buf_size = 4 * s2.lit_bufsize, s2.pending_buf = new pd.Buf8(s2.pending_buf_size), s2.d_buf = 1 * s2.lit_bufsize, s2.l_buf = 3 * s2.lit_bufsize, s2.level = t4, s2.strategy = i2, s2.method = n3, Gd(e4);
|
|
@@ -80806,7 +80842,7 @@ var require_processPagePollCjs = __commonJS({
|
|
|
80806
80842
|
var r2 = e4.block_start + n3;
|
|
80807
80843
|
if ((0 === e4.strstart || e4.strstart >= r2) && (e4.lookahead = e4.strstart - r2, e4.strstart = r2, Md(e4, false), 0 === e4.strm.avail_out))
|
|
80808
80844
|
return 1;
|
|
80809
|
-
if (e4.strstart - e4.block_start >= e4.w_size -
|
|
80845
|
+
if (e4.strstart - e4.block_start >= e4.w_size - Td && (Md(e4, false), 0 === e4.strm.avail_out))
|
|
80810
80846
|
return 1;
|
|
80811
80847
|
}
|
|
80812
80848
|
return e4.insert = 0, 4 === t4 ? (Md(e4, true), 0 === e4.strm.avail_out ? 3 : 4) : (e4.strstart > e4.block_start && (Md(e4, false), e4.strm.avail_out), 1);
|
|
@@ -80817,9 +80853,9 @@ var require_processPagePollCjs = __commonJS({
|
|
|
80817
80853
|
}, xh.deflate = function(e4, t4) {
|
|
80818
80854
|
var n3, r2, o2, i2;
|
|
80819
80855
|
if (!e4 || !e4.state || t4 > 5 || t4 < 0)
|
|
80820
|
-
return e4 ?
|
|
80821
|
-
if (r2 = e4.state, !e4.output || !e4.input && 0 !== e4.avail_in || r2.status ===
|
|
80822
|
-
return
|
|
80856
|
+
return e4 ? Id(e4, wd) : wd;
|
|
80857
|
+
if (r2 = e4.state, !e4.output || !e4.input && 0 !== e4.avail_in || r2.status === Rd && 4 !== t4)
|
|
80858
|
+
return Id(e4, 0 === e4.avail_out ? -5 : wd);
|
|
80823
80859
|
if (r2.strm = e4, n3 = r2.last_flush, r2.last_flush = t4, r2.status === Nd)
|
|
80824
80860
|
if (2 === r2.wrap)
|
|
80825
80861
|
e4.adler = 0, Fd(r2, 31), Fd(r2, 139), Fd(r2, 8), r2.gzhead ? (Fd(r2, (r2.gzhead.text ? 1 : 0) + (r2.gzhead.hcrc ? 2 : 0) + (r2.gzhead.extra ? 4 : 0) + (r2.gzhead.name ? 8 : 0) + (r2.gzhead.comment ? 16 : 0)), Fd(r2, 255 & r2.gzhead.time), Fd(r2, r2.gzhead.time >> 8 & 255), Fd(r2, r2.gzhead.time >> 16 & 255), Fd(r2, r2.gzhead.time >> 24 & 255), Fd(r2, 9 === r2.level ? 2 : r2.strategy >= 2 || r2.level < 2 ? 4 : 0), Fd(r2, 255 & r2.gzhead.os), r2.gzhead.extra && r2.gzhead.extra.length && (Fd(r2, 255 & r2.gzhead.extra.length), Fd(r2, r2.gzhead.extra.length >> 8 & 255)), r2.gzhead.hcrc && (e4.adler = gd(e4.adler, r2.pending_buf, r2.pending, 0)), r2.gzindex = 0, r2.status = 69) : (Fd(r2, 0), Fd(r2, 0), Fd(r2, 0), Fd(r2, 0), Fd(r2, 0), Fd(r2, 9 === r2.level ? 2 : r2.strategy >= 2 || r2.level < 2 ? 4 : 0), Fd(r2, 3), r2.status = Pd);
|
|
@@ -80864,10 +80900,10 @@ var require_processPagePollCjs = __commonJS({
|
|
|
80864
80900
|
if (Ud(e4), 0 === e4.avail_out)
|
|
80865
80901
|
return r2.last_flush = -1, kd;
|
|
80866
80902
|
} else if (0 === e4.avail_in && Bd(t4) <= Bd(n3) && 4 !== t4)
|
|
80867
|
-
return
|
|
80868
|
-
if (r2.status ===
|
|
80869
|
-
return
|
|
80870
|
-
if (0 !== e4.avail_in || 0 !== r2.lookahead || t4 !== yd && r2.status !==
|
|
80903
|
+
return Id(e4, -5);
|
|
80904
|
+
if (r2.status === Rd && 0 !== e4.avail_in)
|
|
80905
|
+
return Id(e4, -5);
|
|
80906
|
+
if (0 !== e4.avail_in || 0 !== r2.lookahead || t4 !== yd && r2.status !== Rd) {
|
|
80871
80907
|
var s2 = 2 === r2.strategy ? function(e5, t5) {
|
|
80872
80908
|
for (var n4; ; ) {
|
|
80873
80909
|
if (0 === e5.lookahead && (qd(e5), 0 === e5.lookahead)) {
|
|
@@ -80881,24 +80917,24 @@ var require_processPagePollCjs = __commonJS({
|
|
|
80881
80917
|
return e5.insert = 0, 4 === t5 ? (Md(e5, true), 0 === e5.strm.avail_out ? 3 : 4) : e5.last_lit && (Md(e5, false), 0 === e5.strm.avail_out) ? 1 : 2;
|
|
80882
80918
|
}(r2, t4) : 3 === r2.strategy ? function(e5, t5) {
|
|
80883
80919
|
for (var n4, r3, o3, i3, a3 = e5.window; ; ) {
|
|
80884
|
-
if (e5.lookahead <=
|
|
80885
|
-
if (qd(e5), e5.lookahead <=
|
|
80920
|
+
if (e5.lookahead <= Ed) {
|
|
80921
|
+
if (qd(e5), e5.lookahead <= Ed && t5 === yd)
|
|
80886
80922
|
return 1;
|
|
80887
80923
|
if (0 === e5.lookahead)
|
|
80888
80924
|
break;
|
|
80889
80925
|
}
|
|
80890
80926
|
if (e5.match_length = 0, e5.lookahead >= Ld && e5.strstart > 0 && (r3 = a3[o3 = e5.strstart - 1]) === a3[++o3] && r3 === a3[++o3] && r3 === a3[++o3]) {
|
|
80891
|
-
i3 = e5.strstart +
|
|
80927
|
+
i3 = e5.strstart + Ed;
|
|
80892
80928
|
do {
|
|
80893
80929
|
} while (r3 === a3[++o3] && r3 === a3[++o3] && r3 === a3[++o3] && r3 === a3[++o3] && r3 === a3[++o3] && r3 === a3[++o3] && r3 === a3[++o3] && r3 === a3[++o3] && o3 < i3);
|
|
80894
|
-
e5.match_length =
|
|
80930
|
+
e5.match_length = Ed - (i3 - o3), e5.match_length > e5.lookahead && (e5.match_length = e5.lookahead);
|
|
80895
80931
|
}
|
|
80896
80932
|
if (e5.match_length >= Ld ? (n4 = md._tr_tally(e5, 1, e5.match_length - Ld), e5.lookahead -= e5.match_length, e5.strstart += e5.match_length, e5.match_length = 0) : (n4 = md._tr_tally(e5, 0, e5.window[e5.strstart]), e5.lookahead--, e5.strstart++), n4 && (Md(e5, false), 0 === e5.strm.avail_out))
|
|
80897
80933
|
return 1;
|
|
80898
80934
|
}
|
|
80899
80935
|
return e5.insert = 0, 4 === t5 ? (Md(e5, true), 0 === e5.strm.avail_out ? 3 : 4) : e5.last_lit && (Md(e5, false), 0 === e5.strm.avail_out) ? 1 : 2;
|
|
80900
80936
|
}(r2, t4) : ld[r2.level].func(r2, t4);
|
|
80901
|
-
if (3 !== s2 && 4 !== s2 || (r2.status =
|
|
80937
|
+
if (3 !== s2 && 4 !== s2 || (r2.status = Rd), 1 === s2 || 3 === s2)
|
|
80902
80938
|
return 0 === e4.avail_out && (r2.last_flush = -1), kd;
|
|
80903
80939
|
if (2 === s2 && (1 === t4 ? md._tr_align(r2) : 5 !== t4 && (md._tr_stored_block(r2, 0, 0, false), 3 === t4 && (Od(r2.head), 0 === r2.lookahead && (r2.strstart = 0, r2.block_start = 0, r2.insert = 0))), Ud(e4), 0 === e4.avail_out))
|
|
80904
80940
|
return r2.last_flush = -1, kd;
|
|
@@ -80906,7 +80942,7 @@ var require_processPagePollCjs = __commonJS({
|
|
|
80906
80942
|
return 4 !== t4 ? kd : r2.wrap <= 0 ? 1 : (2 === r2.wrap ? (Fd(r2, 255 & e4.adler), Fd(r2, e4.adler >> 8 & 255), Fd(r2, e4.adler >> 16 & 255), Fd(r2, e4.adler >> 24 & 255), Fd(r2, 255 & e4.total_in), Fd(r2, e4.total_in >> 8 & 255), Fd(r2, e4.total_in >> 16 & 255), Fd(r2, e4.total_in >> 24 & 255)) : (jd(r2, e4.adler >>> 16), jd(r2, 65535 & e4.adler)), Ud(e4), r2.wrap > 0 && (r2.wrap = -r2.wrap), 0 !== r2.pending ? kd : 1);
|
|
80907
80943
|
}, xh.deflateEnd = function(e4) {
|
|
80908
80944
|
var t4;
|
|
80909
|
-
return e4 && e4.state ? (t4 = e4.state.status) !== Nd && 69 !== t4 && 73 !== t4 && 91 !== t4 && t4 !== Dd && t4 !== Pd && t4 !==
|
|
80945
|
+
return e4 && e4.state ? (t4 = e4.state.status) !== Nd && 69 !== t4 && 73 !== t4 && 91 !== t4 && t4 !== Dd && t4 !== Pd && t4 !== Rd ? Id(e4, wd) : (e4.state = null, t4 === Pd ? Id(e4, -3) : kd) : wd;
|
|
80910
80946
|
}, xh.deflateSetDictionary = function(e4, t4) {
|
|
80911
80947
|
var n3, r2, o2, i2, a2, s2, l2, c2, u2 = t4.length;
|
|
80912
80948
|
if (!e4 || !e4.state)
|
|
@@ -81109,42 +81145,42 @@ var require_processPagePollCjs = __commonJS({
|
|
|
81109
81145
|
} while (r2 < o2 && i2 < s2);
|
|
81110
81146
|
r2 -= v2 = m2 >> 3, p2 &= (1 << (m2 -= v2 << 3)) - 1, e4.next_in = r2, e4.next_out = i2, e4.avail_in = r2 < o2 ? o2 - r2 + 5 : 5 - (r2 - o2), e4.avail_out = i2 < s2 ? s2 - i2 + 257 : 257 - (i2 - s2), n3.hold = p2, n3.bits = m2;
|
|
81111
81147
|
}, Lp = function(e4, t4, n3, r2, o2, i2, a2, s2) {
|
|
81112
|
-
var l2, c2, u2, h2, d2, p2, m2, f2, g2, b2 = s2.bits, y2 = 0, k2 = 0, w2 = 0, v2 = 0, x2 = 0, S2 = 0, _2 = 0, C2 = 0, A2 = 0, z2 = 0, L2 = null,
|
|
81148
|
+
var l2, c2, u2, h2, d2, p2, m2, f2, g2, b2 = s2.bits, y2 = 0, k2 = 0, w2 = 0, v2 = 0, x2 = 0, S2 = 0, _2 = 0, C2 = 0, A2 = 0, z2 = 0, L2 = null, E2 = 0, T2 = new kp.Buf16(16), N2 = new kp.Buf16(16), D2 = null, P2 = 0;
|
|
81113
81149
|
for (y2 = 0; y2 <= 15; y2++)
|
|
81114
|
-
|
|
81150
|
+
T2[y2] = 0;
|
|
81115
81151
|
for (k2 = 0; k2 < r2; k2++)
|
|
81116
|
-
|
|
81117
|
-
for (x2 = b2, v2 = 15; v2 >= 1 && 0 ===
|
|
81152
|
+
T2[t4[n3 + k2]]++;
|
|
81153
|
+
for (x2 = b2, v2 = 15; v2 >= 1 && 0 === T2[v2]; v2--)
|
|
81118
81154
|
;
|
|
81119
81155
|
if (x2 > v2 && (x2 = v2), 0 === v2)
|
|
81120
81156
|
return o2[i2++] = 20971520, o2[i2++] = 20971520, s2.bits = 1, 0;
|
|
81121
|
-
for (w2 = 1; w2 < v2 && 0 ===
|
|
81157
|
+
for (w2 = 1; w2 < v2 && 0 === T2[w2]; w2++)
|
|
81122
81158
|
;
|
|
81123
81159
|
for (x2 < w2 && (x2 = w2), C2 = 1, y2 = 1; y2 <= 15; y2++)
|
|
81124
|
-
if (C2 <<= 1, (C2 -=
|
|
81160
|
+
if (C2 <<= 1, (C2 -= T2[y2]) < 0)
|
|
81125
81161
|
return -1;
|
|
81126
81162
|
if (C2 > 0 && (0 === e4 || 1 !== v2))
|
|
81127
81163
|
return -1;
|
|
81128
81164
|
for (N2[1] = 0, y2 = 1; y2 < 15; y2++)
|
|
81129
|
-
N2[y2 + 1] = N2[y2] +
|
|
81165
|
+
N2[y2 + 1] = N2[y2] + T2[y2];
|
|
81130
81166
|
for (k2 = 0; k2 < r2; k2++)
|
|
81131
81167
|
0 !== t4[n3 + k2] && (a2[N2[t4[n3 + k2]]++] = k2);
|
|
81132
|
-
if (0 === e4 ? (L2 = D2 = a2, p2 = 19) : 1 === e4 ? (L2 = wp,
|
|
81168
|
+
if (0 === e4 ? (L2 = D2 = a2, p2 = 19) : 1 === e4 ? (L2 = wp, E2 -= 257, D2 = vp, P2 -= 257, p2 = 256) : (L2 = xp, D2 = Sp, p2 = -1), z2 = 0, k2 = 0, y2 = w2, d2 = i2, S2 = x2, _2 = 0, u2 = -1, h2 = (A2 = 1 << x2) - 1, 1 === e4 && A2 > 852 || 2 === e4 && A2 > 592)
|
|
81133
81169
|
return 1;
|
|
81134
81170
|
for (; ; ) {
|
|
81135
|
-
m2 = y2 - _2, a2[k2] < p2 ? (f2 = 0, g2 = a2[k2]) : a2[k2] > p2 ? (f2 = D2[P2 + a2[k2]], g2 = L2[
|
|
81171
|
+
m2 = y2 - _2, a2[k2] < p2 ? (f2 = 0, g2 = a2[k2]) : a2[k2] > p2 ? (f2 = D2[P2 + a2[k2]], g2 = L2[E2 + a2[k2]]) : (f2 = 96, g2 = 0), l2 = 1 << y2 - _2, w2 = c2 = 1 << S2;
|
|
81136
81172
|
do {
|
|
81137
81173
|
o2[d2 + (z2 >> _2) + (c2 -= l2)] = m2 << 24 | f2 << 16 | g2 | 0;
|
|
81138
81174
|
} while (0 !== c2);
|
|
81139
81175
|
for (l2 = 1 << y2 - 1; z2 & l2; )
|
|
81140
81176
|
l2 >>= 1;
|
|
81141
|
-
if (0 !== l2 ? (z2 &= l2 - 1, z2 += l2) : z2 = 0, k2++, 0 == --
|
|
81177
|
+
if (0 !== l2 ? (z2 &= l2 - 1, z2 += l2) : z2 = 0, k2++, 0 == --T2[y2]) {
|
|
81142
81178
|
if (y2 === v2)
|
|
81143
81179
|
break;
|
|
81144
81180
|
y2 = t4[n3 + a2[k2]];
|
|
81145
81181
|
}
|
|
81146
81182
|
if (y2 > x2 && (z2 & h2) !== u2) {
|
|
81147
|
-
for (0 === _2 && (_2 = x2), d2 += w2, C2 = 1 << (S2 = y2 - _2); S2 + _2 < v2 && !((C2 -=
|
|
81183
|
+
for (0 === _2 && (_2 = x2), d2 += w2, C2 = 1 << (S2 = y2 - _2); S2 + _2 < v2 && !((C2 -= T2[S2 + _2]) <= 0); )
|
|
81148
81184
|
S2++, C2 <<= 1;
|
|
81149
81185
|
if (A2 += 1 << S2, 1 === e4 && A2 > 852 || 2 === e4 && A2 > 592)
|
|
81150
81186
|
return 1;
|
|
@@ -81152,7 +81188,7 @@ var require_processPagePollCjs = __commonJS({
|
|
|
81152
81188
|
}
|
|
81153
81189
|
}
|
|
81154
81190
|
return 0 !== z2 && (o2[d2 + z2] = y2 - _2 << 24 | 64 << 16 | 0), s2.bits = x2, 0;
|
|
81155
|
-
},
|
|
81191
|
+
}, Ep = 0, Tp = -2, Np = 1, Dp = 12, Pp = 30, Rp = 852, Ip = 592;
|
|
81156
81192
|
function Bp(e4) {
|
|
81157
81193
|
return (e4 >>> 24 & 255) + (e4 >>> 8 & 65280) + ((65280 & e4) << 8) + ((255 & e4) << 24);
|
|
81158
81194
|
}
|
|
@@ -81161,19 +81197,19 @@ var require_processPagePollCjs = __commonJS({
|
|
|
81161
81197
|
}
|
|
81162
81198
|
function Up(e4) {
|
|
81163
81199
|
var t4;
|
|
81164
|
-
return e4 && e4.state ? (t4 = e4.state, e4.total_in = e4.total_out = t4.total = 0, e4.msg = "", t4.wrap && (e4.adler = 1 & t4.wrap), t4.mode = Np, t4.last = 0, t4.havedict = 0, t4.dmax = 32768, t4.head = null, t4.hold = 0, t4.bits = 0, t4.lencode = t4.lendyn = new _p.Buf32(
|
|
81200
|
+
return e4 && e4.state ? (t4 = e4.state, e4.total_in = e4.total_out = t4.total = 0, e4.msg = "", t4.wrap && (e4.adler = 1 & t4.wrap), t4.mode = Np, t4.last = 0, t4.havedict = 0, t4.dmax = 32768, t4.head = null, t4.hold = 0, t4.bits = 0, t4.lencode = t4.lendyn = new _p.Buf32(Rp), t4.distcode = t4.distdyn = new _p.Buf32(Ip), t4.sane = 1, t4.back = -1, Ep) : Tp;
|
|
81165
81201
|
}
|
|
81166
81202
|
function Mp(e4) {
|
|
81167
81203
|
var t4;
|
|
81168
|
-
return e4 && e4.state ? ((t4 = e4.state).wsize = 0, t4.whave = 0, t4.wnext = 0, Up(e4)) :
|
|
81204
|
+
return e4 && e4.state ? ((t4 = e4.state).wsize = 0, t4.whave = 0, t4.wnext = 0, Up(e4)) : Tp;
|
|
81169
81205
|
}
|
|
81170
81206
|
function Fp(e4, t4) {
|
|
81171
81207
|
var n3, r2;
|
|
81172
|
-
return e4 && e4.state ? (r2 = e4.state, t4 < 0 ? (n3 = 0, t4 = -t4) : (n3 = 1 + (t4 >> 4), t4 < 48 && (t4 &= 15)), t4 && (t4 < 8 || t4 > 15) ?
|
|
81208
|
+
return e4 && e4.state ? (r2 = e4.state, t4 < 0 ? (n3 = 0, t4 = -t4) : (n3 = 1 + (t4 >> 4), t4 < 48 && (t4 &= 15)), t4 && (t4 < 8 || t4 > 15) ? Tp : (null !== r2.window && r2.wbits !== t4 && (r2.window = null), r2.wrap = n3, r2.wbits = t4, Mp(e4))) : Tp;
|
|
81173
81209
|
}
|
|
81174
81210
|
function jp(e4, t4) {
|
|
81175
81211
|
var n3, r2;
|
|
81176
|
-
return e4 ? (r2 = new Op(), e4.state = r2, r2.window = null, (n3 = Fp(e4, t4)) !==
|
|
81212
|
+
return e4 ? (r2 = new Op(), e4.state = r2, r2.window = null, (n3 = Fp(e4, t4)) !== Ep && (e4.state = null), n3) : Tp;
|
|
81177
81213
|
}
|
|
81178
81214
|
var Hp, qp, Wp = true;
|
|
81179
81215
|
function $p(e4) {
|
|
@@ -81202,8 +81238,8 @@ var require_processPagePollCjs = __commonJS({
|
|
|
81202
81238
|
}, yp.inflateInit2 = jp, yp.inflate = function(e4, t4) {
|
|
81203
81239
|
var n3, r2, o2, i2, a2, s2, l2, c2, u2, h2, d2, p2, m2, f2, g2, b2, y2, k2, w2, v2, x2, S2, _2, C2, A2 = 0, z2 = new _p.Buf8(4), L2 = [16, 17, 18, 0, 8, 7, 9, 6, 10, 5, 11, 4, 12, 3, 13, 2, 14, 1, 15];
|
|
81204
81240
|
if (!e4 || !e4.state || !e4.output || !e4.input && 0 !== e4.avail_in)
|
|
81205
|
-
return
|
|
81206
|
-
(n3 = e4.state).mode === Dp && (n3.mode = 13), a2 = e4.next_out, o2 = e4.output, l2 = e4.avail_out, i2 = e4.next_in, r2 = e4.input, s2 = e4.avail_in, c2 = n3.hold, u2 = n3.bits, h2 = s2, d2 = l2, S2 =
|
|
81241
|
+
return Tp;
|
|
81242
|
+
(n3 = e4.state).mode === Dp && (n3.mode = 13), a2 = e4.next_out, o2 = e4.output, l2 = e4.avail_out, i2 = e4.next_in, r2 = e4.input, s2 = e4.avail_in, c2 = n3.hold, u2 = n3.bits, h2 = s2, d2 = l2, S2 = Ep;
|
|
81207
81243
|
e:
|
|
81208
81244
|
for (; ; )
|
|
81209
81245
|
switch (n3.mode) {
|
|
@@ -81609,20 +81645,20 @@ var require_processPagePollCjs = __commonJS({
|
|
|
81609
81645
|
case 31:
|
|
81610
81646
|
return -4;
|
|
81611
81647
|
default:
|
|
81612
|
-
return
|
|
81648
|
+
return Tp;
|
|
81613
81649
|
}
|
|
81614
|
-
return e4.next_out = a2, e4.avail_out = l2, e4.next_in = i2, e4.avail_in = s2, n3.hold = c2, n3.bits = u2, (n3.wsize || d2 !== e4.avail_out && n3.mode < Pp && (n3.mode < 27 || 4 !== t4)) && Vp(e4, e4.output, e4.next_out, d2 - e4.avail_out), h2 -= e4.avail_in, d2 -= e4.avail_out, e4.total_in += h2, e4.total_out += d2, n3.total += d2, n3.wrap && d2 && (e4.adler = n3.check = n3.flags ? Ap(n3.check, o2, d2, e4.next_out - d2) : Cp(n3.check, o2, d2, e4.next_out - d2)), e4.data_type = n3.bits + (n3.last ? 64 : 0) + (n3.mode === Dp ? 128 : 0) + (20 === n3.mode || 15 === n3.mode ? 256 : 0), (0 === h2 && 0 === d2 || 4 === t4) && S2 ===
|
|
81650
|
+
return e4.next_out = a2, e4.avail_out = l2, e4.next_in = i2, e4.avail_in = s2, n3.hold = c2, n3.bits = u2, (n3.wsize || d2 !== e4.avail_out && n3.mode < Pp && (n3.mode < 27 || 4 !== t4)) && Vp(e4, e4.output, e4.next_out, d2 - e4.avail_out), h2 -= e4.avail_in, d2 -= e4.avail_out, e4.total_in += h2, e4.total_out += d2, n3.total += d2, n3.wrap && d2 && (e4.adler = n3.check = n3.flags ? Ap(n3.check, o2, d2, e4.next_out - d2) : Cp(n3.check, o2, d2, e4.next_out - d2)), e4.data_type = n3.bits + (n3.last ? 64 : 0) + (n3.mode === Dp ? 128 : 0) + (20 === n3.mode || 15 === n3.mode ? 256 : 0), (0 === h2 && 0 === d2 || 4 === t4) && S2 === Ep && (S2 = -5), S2;
|
|
81615
81651
|
}, yp.inflateEnd = function(e4) {
|
|
81616
81652
|
if (!e4 || !e4.state)
|
|
81617
|
-
return
|
|
81653
|
+
return Tp;
|
|
81618
81654
|
var t4 = e4.state;
|
|
81619
|
-
return t4.window && (t4.window = null), e4.state = null,
|
|
81655
|
+
return t4.window && (t4.window = null), e4.state = null, Ep;
|
|
81620
81656
|
}, yp.inflateGetHeader = function(e4, t4) {
|
|
81621
81657
|
var n3;
|
|
81622
|
-
return e4 && e4.state ? 0 == (2 & (n3 = e4.state).wrap) ?
|
|
81658
|
+
return e4 && e4.state ? 0 == (2 & (n3 = e4.state).wrap) ? Tp : (n3.head = t4, t4.done = false, Ep) : Tp;
|
|
81623
81659
|
}, yp.inflateSetDictionary = function(e4, t4) {
|
|
81624
81660
|
var n3, r2 = t4.length;
|
|
81625
|
-
return e4 && e4.state ? 0 !== (n3 = e4.state).wrap && 11 !== n3.mode ?
|
|
81661
|
+
return e4 && e4.state ? 0 !== (n3 = e4.state).wrap && 11 !== n3.mode ? Tp : 11 === n3.mode && Cp(1, t4, r2, 0) !== n3.check ? -3 : Vp(e4, t4, r2, r2) ? (n3.mode = 31, -4) : (n3.havedict = 1, Ep) : Tp;
|
|
81626
81662
|
}, yp.inflateInfo = "pako inflate (from Nodeca project)";
|
|
81627
81663
|
var Kp = { Z_NO_FLUSH: 0, Z_PARTIAL_FLUSH: 1, Z_SYNC_FLUSH: 2, Z_FULL_FLUSH: 3, Z_FINISH: 4, Z_BLOCK: 5, Z_TREES: 6, Z_OK: 0, Z_STREAM_END: 1, Z_NEED_DICT: 2, Z_ERRNO: -1, Z_STREAM_ERROR: -2, Z_DATA_ERROR: -3, Z_BUF_ERROR: -5, Z_NO_COMPRESSION: 0, Z_BEST_SPEED: 1, Z_BEST_COMPRESSION: 9, Z_DEFAULT_COMPRESSION: -1, Z_FILTERED: 1, Z_HUFFMAN_ONLY: 2, Z_RLE: 3, Z_FIXED: 4, Z_DEFAULT_STRATEGY: 0, Z_BINARY: 0, Z_TEXT: 1, Z_UNKNOWN: 2, Z_DEFLATED: 8 }, Zp = yp, Gp = wh, Yp = Xd, Xp = Kp, Qp = dd, Jp = op, em = function() {
|
|
81628
81664
|
this.text = 0, this.time = 0, this.xflags = 0, this.os = 0, this.extra = null, this.extra_len = 0, this.name = "", this.comment = "", this.hcrc = 0, this.done = false;
|
|
@@ -81701,10 +81737,10 @@ var require_processPagePollCjs = __commonJS({
|
|
|
81701
81737
|
const _m = Fu, Cm = Hu, Am = yh;
|
|
81702
81738
|
const zm = yh;
|
|
81703
81739
|
const Lm = yh;
|
|
81704
|
-
const
|
|
81740
|
+
const Em = function(t4) {
|
|
81705
81741
|
const n3 = new TextDecoder("utf-8").decode(t4), r2 = e3.head || e3.querySelectorAll("head")[0], o2 = e3.createElement("style");
|
|
81706
81742
|
return o2.type = "text/css", o2.setAttribute("data-desc", "Applitools tmp variable created by DOM SNAPSHOT"), r2.appendChild(o2), o2.styleSheet ? o2.styleSheet.cssText = n3 : o2.appendChild(e3.createTextNode(n3)), o2.sheet;
|
|
81707
|
-
},
|
|
81743
|
+
}, Tm = xu;
|
|
81708
81744
|
const Nm = lm;
|
|
81709
81745
|
var Dm = function(e4, { log: t4, compress: n3, serialize: r2 }) {
|
|
81710
81746
|
return e4.reduce((e5, { url: o2, element: i2, cdtNode: a2 }) => {
|
|
@@ -81728,7 +81764,7 @@ var require_processPagePollCjs = __commonJS({
|
|
|
81728
81764
|
}));
|
|
81729
81765
|
}, Promise.resolve([]));
|
|
81730
81766
|
};
|
|
81731
|
-
const Pm = hm,
|
|
81767
|
+
const Pm = hm, Rm = Dm, Im = Qu;
|
|
81732
81768
|
const Bm = hm, Om = lm;
|
|
81733
81769
|
const Um = d;
|
|
81734
81770
|
const Mm = "__process_resource";
|
|
@@ -81949,17 +81985,17 @@ var require_processPagePollCjs = __commonJS({
|
|
|
81949
81985
|
return function(t4) {
|
|
81950
81986
|
return t4.adoptedStyleSheets ? Lm(t4.adoptedStyleSheets.reduce((t5, n3) => t5.concat(e4(n3)), [])) : [];
|
|
81951
81987
|
};
|
|
81952
|
-
}, Qm = function(e4, t4, n3 =
|
|
81988
|
+
}, Qm = function(e4, t4, n3 = Tm) {
|
|
81953
81989
|
let r2;
|
|
81954
81990
|
if (t4)
|
|
81955
81991
|
try {
|
|
81956
81992
|
t4.cssRules, r2 = t4;
|
|
81957
81993
|
} catch (o2) {
|
|
81958
81994
|
n3(`[dom-snapshot] could not access cssRules for ${t4.href} ${o2}
|
|
81959
|
-
creating temp style for access.`), r2 =
|
|
81995
|
+
creating temp style for access.`), r2 = Em(e4);
|
|
81960
81996
|
}
|
|
81961
81997
|
else
|
|
81962
|
-
r2 =
|
|
81998
|
+
r2 = Em(e4);
|
|
81963
81999
|
return { corsFreeStyleSheet: r2, cleanStyleSheet: function() {
|
|
81964
82000
|
r2 !== t4 && r2.ownerNode.parentNode.removeChild(r2.ownerNode);
|
|
81965
82001
|
} };
|
|
@@ -81970,8 +82006,8 @@ creating temp style for access.`), r2 = Tm(e4);
|
|
|
81970
82006
|
let l2 = e4.filter(({ url: e5 }) => !(s2.has("blob:" + e5) || a2 && a2.getItem("blob:" + e5)));
|
|
81971
82007
|
const c2 = t4.createElement("canvas");
|
|
81972
82008
|
c2.style.display = "none";
|
|
81973
|
-
const u2 =
|
|
81974
|
-
return u2.appendChild(c2), Promise.all(l2.map(({ element: e5, url: t5, cdtNode: n4 }) => (c2.width = e5.naturalWidth, c2.height = e5.naturalHeight, c2.getContext("2d").drawImage(
|
|
82009
|
+
const u2 = Im(t4.body);
|
|
82010
|
+
return u2.appendChild(c2), Promise.all(l2.map(({ element: e5, url: t5, cdtNode: n4 }) => (c2.width = e5.naturalWidth, c2.height = e5.naturalHeight, c2.getContext("2d").drawImage(Im.unwrap(e5), 0, 0), Rm([{ url: t5, element: c2, cdtNode: n4 }], { log: r2, compress: o2, serialize: i2 })))).then((e5) => (u2.removeChild(c2), Pm(e5))).catch(() => {
|
|
81975
82011
|
u2.removeChild(c2);
|
|
81976
82012
|
});
|
|
81977
82013
|
}, tf = function(e4, { doc: t4, fetchedBlobs: n3, compress: r2, serialize: o2, sessionCache: i2 }) {
|
|
@@ -82042,8 +82078,8 @@ creating temp style for access.`), r2 = Tm(e4);
|
|
|
82042
82078
|
} catch (e6) {
|
|
82043
82079
|
}
|
|
82044
82080
|
};
|
|
82045
|
-
}(r3), C2 = af(Array.from(y3).concat(Array.from(x2)).concat(Array.from(S2))).map((e5) => e5.trim()).map(rf).map(_2).map(of).filter(df), A2 = o2 ? Promise.resolve({ resourceUrls: C2, blobsObj: {} }) : w2({ documents: c3, urls: C2, skipResources: a2 }).then((e5) => (h2 && h2.persist(), e5)), z2 = Jm(d3, { log: u2, compress: s2, serialize: l2 }), L2 = A2.then((e5) => ef(k3, { fetchedBlobs: e5.blobsObj, doc: t5, log: u2, compress: s2, serialize: l2, sessionCache: h2 })),
|
|
82046
|
-
return Promise.all([A2, z2, L2,
|
|
82081
|
+
}(r3), C2 = af(Array.from(y3).concat(Array.from(x2)).concat(Array.from(S2))).map((e5) => e5.trim()).map(rf).map(_2).map(of).filter(df), A2 = o2 ? Promise.resolve({ resourceUrls: C2, blobsObj: {} }) : w2({ documents: c3, urls: C2, skipResources: a2 }).then((e5) => (h2 && h2.persist(), e5)), z2 = Jm(d3, { log: u2, compress: s2, serialize: l2 }), L2 = A2.then((e5) => ef(k3, { fetchedBlobs: e5.blobsObj, doc: t5, log: u2, compress: s2, serialize: l2, sessionCache: h2 })), E2 = A2.then((e5) => tf(v2, { fetchedBlobs: e5.blobsObj, doc: t5, log: u2, compress: s2, serialize: l2, sessionCache: h2 })), T2 = p3.map(({ element: t6, url: n5 }) => e4(t6.contentDocument, n5)), N2 = m3.map(({ element: t6, url: n5 }) => e4(t6.contentDocument, n5));
|
|
82082
|
+
return Promise.all([A2, z2, L2, E2].concat(T2).concat(N2)).then(function(e5) {
|
|
82047
82083
|
const { resourceUrls: t6, blobsObj: o3 } = e5[0], a3 = e5[1], s3 = e5[2], l3 = e5[3], c4 = e5.slice(4), u3 = D2("src"), h3 = D2("data-applitools-selector"), d4 = h3 ? `[data-applitools-selector="${h3}"]` : void 0, p4 = function(e6) {
|
|
82048
82084
|
return Object.keys(e6).map((t7) => Object.assign({ url: t7.replace(/^blob:/, "") }, e6[t7]));
|
|
82049
82085
|
}(o3).concat(a3).concat(s3).concat(l3), m4 = { cdt: i3, url: n4, srcAttr: u3, resourceUrls: t6.map((e6) => e6.replace(/^blob:/, "")), blobs: p4, frames: c4, crossFrames: b3, selector: d4 };
|
|
@@ -82052,14 +82088,18 @@ creating temp style for access.`), r2 = Tm(e4);
|
|
|
82052
82088
|
function D2(e5) {
|
|
82053
82089
|
return t5.defaultView && t5.defaultView.frameElement && t5.defaultView.frameElement.getAttribute(e5);
|
|
82054
82090
|
}
|
|
82055
|
-
}(t4).then((e4) => (u2("processPage end"), e4.scriptVersion = "4.7.
|
|
82091
|
+
}(t4).then((e4) => (u2("processPage end"), e4.scriptVersion = "4.7.16", e4));
|
|
82056
82092
|
};
|
|
82057
82093
|
window[mf] = window[mf] || {};
|
|
82058
82094
|
const bf = pf(gf, window[mf], ff);
|
|
82059
82095
|
return function(e4) {
|
|
82060
82096
|
return e4 && e4.__esModule && Object.prototype.hasOwnProperty.call(e4, "default") ? e4.default : e4;
|
|
82061
82097
|
}(function(e4) {
|
|
82062
|
-
|
|
82098
|
+
try {
|
|
82099
|
+
return JSON.stringify(bf(e4)(e4));
|
|
82100
|
+
} catch (e5) {
|
|
82101
|
+
return JSON.stringify({ status: "ERROR", error: e5.message });
|
|
82102
|
+
}
|
|
82063
82103
|
});
|
|
82064
82104
|
}();
|
|
82065
82105
|
};
|
|
@@ -82115,14 +82155,17 @@ var require_pollResultCjs2 = __commonJS({
|
|
|
82115
82155
|
};
|
|
82116
82156
|
const n2 = e3, r = "WIP", o = "SUCCESS", u = "SUCCESS_CHUNKED", c = "ERROR";
|
|
82117
82157
|
var a = function(t5, e4, a2 = {}) {
|
|
82118
|
-
const
|
|
82158
|
+
const s2 = function(t6, { chunkByteLength: e5 = 0 } = {}) {
|
|
82119
82159
|
if (t6) {
|
|
82120
82160
|
if (t6.value) {
|
|
82121
82161
|
if (e5) {
|
|
82122
|
-
if (!t6.chunks)
|
|
82123
|
-
|
|
82124
|
-
|
|
82125
|
-
|
|
82162
|
+
if (!t6.chunks)
|
|
82163
|
+
try {
|
|
82164
|
+
const r2 = JSON.stringify(t6.value);
|
|
82165
|
+
t6.chunks = n2(r2, e5), t6.chunks.length > 0 && (t6.from = 0, t6.value = r2);
|
|
82166
|
+
} catch (t7) {
|
|
82167
|
+
return { status: c, error: t7.message };
|
|
82168
|
+
}
|
|
82126
82169
|
if (t6.from >= 0)
|
|
82127
82170
|
return { status: u, value: t6.value.substring(t6.from, t6.from = t6.chunks.shift()), done: !t6.from };
|
|
82128
82171
|
}
|
|
@@ -82132,12 +82175,12 @@ var require_pollResultCjs2 = __commonJS({
|
|
|
82132
82175
|
}
|
|
82133
82176
|
return { status: c, error: "unexpected poll request received - cannot find state of current operation" };
|
|
82134
82177
|
}((t5 = t5 || {})[e4], a2);
|
|
82135
|
-
return (
|
|
82178
|
+
return (s2.status === o || s2.status === c || s2.status === u && s2.done) && (t5[e4] = null), s2;
|
|
82136
82179
|
};
|
|
82137
|
-
const
|
|
82138
|
-
var
|
|
82180
|
+
const s = a;
|
|
82181
|
+
var l = { chunkify: e3, pollify: function(t5, e4, n3) {
|
|
82139
82182
|
return (r2) => function() {
|
|
82140
|
-
return e4[n3] || (e4[n3] = {}, t5.apply(null, arguments).then((t6) => e4[n3].value = t6).catch((t6) => e4[n3].error = t6.message)),
|
|
82183
|
+
return e4[n3] || (e4[n3] = {}, t5.apply(null, arguments).then((t6) => e4[n3].value = t6).catch((t6) => e4[n3].error = t6.message)), s(e4, n3, r2);
|
|
82141
82184
|
};
|
|
82142
82185
|
}, poll: a, absolutizeUrl: function(t5, e4) {
|
|
82143
82186
|
if (function(t6) {
|
|
@@ -82170,11 +82213,15 @@ var require_pollResultCjs2 = __commonJS({
|
|
|
82170
82213
|
return false;
|
|
82171
82214
|
}
|
|
82172
82215
|
} };
|
|
82173
|
-
const { poll: i } =
|
|
82216
|
+
const { poll: i } = l, { EYES_NAMESPACE: f, DOM_SNAPSHOT_KEY: d } = { EYES_NAMESPACE: "__EYES__APPLITOOLS__", DOM_SNAPSHOT_KEY: "domSnapshotResult" };
|
|
82174
82217
|
return function(t5) {
|
|
82175
82218
|
return t5 && t5.__esModule && Object.prototype.hasOwnProperty.call(t5, "default") ? t5.default : t5;
|
|
82176
82219
|
}(function(t5) {
|
|
82177
|
-
|
|
82220
|
+
try {
|
|
82221
|
+
return JSON.stringify(i(window[f], d, t5));
|
|
82222
|
+
} catch (t6) {
|
|
82223
|
+
return JSON.stringify({ status: "ERROR", error: t6.message });
|
|
82224
|
+
}
|
|
82178
82225
|
});
|
|
82179
82226
|
}();
|
|
82180
82227
|
};
|
|
@@ -83292,7 +83339,7 @@ var require_open_eyes3 = __commonJS({
|
|
|
83292
83339
|
const controller = new abort_controller_1.AbortController();
|
|
83293
83340
|
const account = await core.getAccountInfo({ settings, logger });
|
|
83294
83341
|
return utils34.general.extend({}, (eyes) => {
|
|
83295
|
-
var _a2;
|
|
83342
|
+
var _a2, _b2, _c2;
|
|
83296
83343
|
return {
|
|
83297
83344
|
type: "ufg",
|
|
83298
83345
|
core,
|
|
@@ -83301,7 +83348,7 @@ var require_open_eyes3 = __commonJS({
|
|
|
83301
83348
|
batchId: (_a2 = settings.batch) === null || _a2 === void 0 ? void 0 : _a2.id,
|
|
83302
83349
|
keepBatchOpen: settings.keepBatchOpen,
|
|
83303
83350
|
eyesServer: account.eyesServer,
|
|
83304
|
-
ufgServer: account.ufgServer,
|
|
83351
|
+
ufgServer: { ...account.ufgServer, ufgServerUrl: (_b2 = settings.ufgServerUrl) !== null && _b2 !== void 0 ? _b2 : (_c2 = account.ufgServer) === null || _c2 === void 0 ? void 0 : _c2.ufgServerUrl },
|
|
83305
83352
|
uploadUrl: account.uploadUrl,
|
|
83306
83353
|
stitchingServiceUrl: account.stitchingServiceUrl,
|
|
83307
83354
|
supportedEnvironmentsUrl: account.supportedEnvironmentsUrl,
|
|
@@ -83375,10 +83422,10 @@ var require_core3 = __commonJS({
|
|
|
83375
83422
|
var get_ufg_client_1 = require_get_ufg_client();
|
|
83376
83423
|
var open_eyes_1 = require_open_eyes3();
|
|
83377
83424
|
var utils34 = __importStar(require_browser3());
|
|
83378
|
-
function makeCore({ spec, clients, base, concurrency, fetchConcurrency, agentId = "core-ufg", cwd = process.cwd(), logger: defaultLogger, asyncCache }) {
|
|
83425
|
+
function makeCore({ spec, clients, base: defaultBase, concurrency, fetchConcurrency, agentId = "core-ufg", cwd = process.cwd(), logger: defaultLogger, asyncCache }) {
|
|
83379
83426
|
const logger = (0, logger_1.makeLogger)({ logger: defaultLogger, format: { label: "core-ufg" } });
|
|
83380
|
-
logger.log(`Core ufg is initialized ${
|
|
83381
|
-
base !== null &&
|
|
83427
|
+
logger.log(`Core ufg is initialized ${defaultBase ? "with" : "without"} custom base core`);
|
|
83428
|
+
const base = defaultBase !== null && defaultBase !== void 0 ? defaultBase : (0, core_base_1.makeCore)({ agentId, concurrency, cwd, logger });
|
|
83382
83429
|
return utils34.general.extend(base, (core) => {
|
|
83383
83430
|
return {
|
|
83384
83431
|
type: "ufg",
|
|
@@ -83839,10 +83886,10 @@ var require_open_eyes4 = __commonJS({
|
|
|
83839
83886
|
var abort_1 = require_abort3();
|
|
83840
83887
|
var get_eyes_results_1 = require_get_eyes_results();
|
|
83841
83888
|
var utils34 = __importStar(require_browser3());
|
|
83842
|
-
function makeOpenEyes({ type: defaultType = "classic", clients,
|
|
83889
|
+
function makeOpenEyes({ type: defaultType = "classic", clients, batch, core, cores, spec, environment, logger: mainLogger, asyncCache }) {
|
|
83843
83890
|
return async function openEyes({ type = defaultType, settings, config, target, logger = mainLogger }) {
|
|
83844
|
-
var _a, _b, _c, _d, _e, _f, _g, _h, _j, _k, _l, _m, _o, _p, _q, _r, _s, _t;
|
|
83845
|
-
var
|
|
83891
|
+
var _a, _b, _c, _d, _e, _f, _g, _h, _j, _k, _l, _m, _o, _p, _q, _r, _s, _t, _u, _v;
|
|
83892
|
+
var _w, _x, _y, _z;
|
|
83846
83893
|
logger = logger.extend(mainLogger, { tags: [`eyes-${type}-${utils34.general.shortid()}`] });
|
|
83847
83894
|
settings = { ...config === null || config === void 0 ? void 0 : config.open, ...settings };
|
|
83848
83895
|
(_a = settings.userTestId) !== null && _a !== void 0 ? _a : settings.userTestId = `${settings.testName}--${utils34.general.guid()}`;
|
|
@@ -83850,16 +83897,17 @@ var require_open_eyes4 = __commonJS({
|
|
|
83850
83897
|
(_e = settings.apiKey) !== null && _e !== void 0 ? _e : settings.apiKey = utils34.general.getEnvValue("API_KEY");
|
|
83851
83898
|
(_f = settings.useDnsCache) !== null && _f !== void 0 ? _f : settings.useDnsCache = utils34.general.getEnvValue("USE_DNS_CACHE", "boolean");
|
|
83852
83899
|
settings.batch = { ...batch, ...settings.batch };
|
|
83853
|
-
(_g = (
|
|
83854
|
-
(_j = (
|
|
83855
|
-
(_k = (
|
|
83856
|
-
(_l = (
|
|
83900
|
+
(_g = (_w = settings.batch).id) !== null && _g !== void 0 ? _g : _w.id = (_h = utils34.general.getEnvValue("BATCH_ID")) !== null && _h !== void 0 ? _h : `generated-${utils34.general.guid()}`;
|
|
83901
|
+
(_j = (_x = settings.batch).name) !== null && _j !== void 0 ? _j : _x.name = utils34.general.getEnvValue("BATCH_NAME");
|
|
83902
|
+
(_k = (_y = settings.batch).sequenceName) !== null && _k !== void 0 ? _k : _y.sequenceName = utils34.general.getEnvValue("BATCH_SEQUENCE");
|
|
83903
|
+
(_l = (_z = settings.batch).notifyOnCompletion) !== null && _l !== void 0 ? _l : _z.notifyOnCompletion = utils34.general.getEnvValue("BATCH_NOTIFY", "boolean");
|
|
83857
83904
|
(_m = settings.keepBatchOpen) !== null && _m !== void 0 ? _m : settings.keepBatchOpen = utils34.general.getEnvValue("DONT_CLOSE_BATCHES", "boolean");
|
|
83858
83905
|
(_o = settings.branchName) !== null && _o !== void 0 ? _o : settings.branchName = utils34.general.getEnvValue("BRANCH");
|
|
83859
83906
|
(_p = settings.parentBranchName) !== null && _p !== void 0 ? _p : settings.parentBranchName = utils34.general.getEnvValue("PARENT_BRANCH");
|
|
83860
83907
|
(_q = settings.baselineBranchName) !== null && _q !== void 0 ? _q : settings.baselineBranchName = utils34.general.getEnvValue("BASELINE_BRANCH");
|
|
83861
|
-
(_r = settings.
|
|
83862
|
-
(_s = settings.
|
|
83908
|
+
(_r = settings.ufgServerUrl) !== null && _r !== void 0 ? _r : settings.ufgServerUrl = utils34.general.getEnvValue("UFG_SERVER_URL");
|
|
83909
|
+
(_s = settings.ignoreBaseline) !== null && _s !== void 0 ? _s : settings.ignoreBaseline = false;
|
|
83910
|
+
(_t = settings.compareWithParentBranch) !== null && _t !== void 0 ? _t : settings.compareWithParentBranch = false;
|
|
83863
83911
|
const driver = target && await (0, driver_1.makeDriver)({ spec, driver: target, logger, customConfig: settings });
|
|
83864
83912
|
const driverEnvironment = await (driver === null || driver === void 0 ? void 0 : driver.getEnvironment());
|
|
83865
83913
|
const driverUrl = await (driver === null || driver === void 0 ? void 0 : driver.getDriverUrl());
|
|
@@ -83870,7 +83918,7 @@ var require_open_eyes4 = __commonJS({
|
|
|
83870
83918
|
event: {
|
|
83871
83919
|
type: "openEyes",
|
|
83872
83920
|
userTestId: settings.userTestId,
|
|
83873
|
-
concurrency,
|
|
83921
|
+
concurrency: (_u = cores === null || cores === void 0 ? void 0 : cores[type].concurrency) !== null && _u !== void 0 ? _u : core.concurrency,
|
|
83874
83922
|
environment,
|
|
83875
83923
|
driver: {
|
|
83876
83924
|
deviceName: driverEnvironment === null || driverEnvironment === void 0 ? void 0 : driverEnvironment.deviceName,
|
|
@@ -83878,7 +83926,7 @@ var require_open_eyes4 = __commonJS({
|
|
|
83878
83926
|
browserVersion: driverEnvironment === null || driverEnvironment === void 0 ? void 0 : driverEnvironment.browserVersion,
|
|
83879
83927
|
platformName: driverEnvironment === null || driverEnvironment === void 0 ? void 0 : driverEnvironment.platformName,
|
|
83880
83928
|
platformVersion: driverEnvironment === null || driverEnvironment === void 0 ? void 0 : driverEnvironment.platformVersion,
|
|
83881
|
-
isApplitoolsLib: (
|
|
83929
|
+
isApplitoolsLib: (_v = driverEnvironment === null || driverEnvironment === void 0 ? void 0 : driverEnvironment.applitoolsLib) === null || _v === void 0 ? void 0 : _v.instrumented,
|
|
83882
83930
|
isEC: driverEnvironment === null || driverEnvironment === void 0 ? void 0 : driverEnvironment.isEC
|
|
83883
83931
|
},
|
|
83884
83932
|
driverUrl
|
|
@@ -83891,7 +83939,7 @@ var require_open_eyes4 = __commonJS({
|
|
|
83891
83939
|
settings,
|
|
83892
83940
|
target: driver,
|
|
83893
83941
|
cores: cores !== null && cores !== void 0 ? cores : {
|
|
83894
|
-
ufg: (0, core_2.makeCore)({ spec, clients, base: core.base,
|
|
83942
|
+
ufg: (0, core_2.makeCore)({ spec, clients, base: core.base, asyncCache, logger }),
|
|
83895
83943
|
classic: (0, core_1.makeCore)({ spec, clients, base: core.base, logger })
|
|
83896
83944
|
},
|
|
83897
83945
|
logger
|
|
@@ -84157,16 +84205,16 @@ var require_make_manager = __commonJS({
|
|
|
84157
84205
|
var open_eyes_1 = require_open_eyes4();
|
|
84158
84206
|
var get_manager_results_1 = require_get_manager_results();
|
|
84159
84207
|
var utils34 = __importStar(require_browser3());
|
|
84160
|
-
function makeMakeManager({ spec, clients,
|
|
84208
|
+
function makeMakeManager({ spec, clients, core, base: defaultBase, agentId: defaultAgentId, environment, cwd = process.cwd(), logger: mainLogger, asyncCache }) {
|
|
84161
84209
|
return async function makeManager({ type = "classic", settings, logger = mainLogger } = {}) {
|
|
84162
|
-
var _a, _b, _c, _d, _e;
|
|
84163
|
-
var
|
|
84210
|
+
var _a, _b, _c, _d, _e, _f;
|
|
84211
|
+
var _g;
|
|
84164
84212
|
logger = logger.extend(mainLogger, { tags: [`manager-${type}-${utils34.general.shortid()}`] });
|
|
84165
84213
|
settings !== null && settings !== void 0 ? settings : settings = {};
|
|
84166
|
-
(_a = settings.concurrency) !== null && _a !== void 0 ? _a : settings.concurrency =
|
|
84167
|
-
(
|
|
84168
|
-
(
|
|
84169
|
-
(
|
|
84214
|
+
(_a = settings.concurrency) !== null && _a !== void 0 ? _a : settings.concurrency = (_b = utils34.general.getEnvValue("CONCURRENCY", "number")) !== null && _b !== void 0 ? _b : utils34.types.isInteger(settings.legacyConcurrency) ? settings.legacyConcurrency * 5 : 100;
|
|
84215
|
+
(_c = settings.batch) !== null && _c !== void 0 ? _c : settings.batch = {};
|
|
84216
|
+
(_d = (_g = settings.batch).id) !== null && _d !== void 0 ? _d : _g.id = (_e = utils34.general.getEnvValue("BATCH_ID")) !== null && _e !== void 0 ? _e : `generated-${utils34.general.guid()}`;
|
|
84217
|
+
(_f = settings.agentId) !== null && _f !== void 0 ? _f : settings.agentId = type === "ufg" ? defaultAgentId === null || defaultAgentId === void 0 ? void 0 : defaultAgentId.replace(/(\/\d)/, ".visualgrid$1") : defaultAgentId;
|
|
84170
84218
|
logger.log('Command "makeManager" is called with settings', settings);
|
|
84171
84219
|
const base = defaultBase !== null && defaultBase !== void 0 ? defaultBase : (0, core_base_1.makeCore)({ agentId: settings.agentId, concurrency: settings.concurrency, cwd, logger });
|
|
84172
84220
|
const cores = {
|
|
@@ -84175,6 +84223,10 @@ var require_make_manager = __commonJS({
|
|
|
84175
84223
|
};
|
|
84176
84224
|
const storage = [];
|
|
84177
84225
|
return {
|
|
84226
|
+
get concurrency() {
|
|
84227
|
+
return base.concurrency;
|
|
84228
|
+
},
|
|
84229
|
+
base,
|
|
84178
84230
|
openEyes: utils34.general.wrap((0, open_eyes_1.makeOpenEyes)({ type, clients, batch: settings.batch, spec, core, cores, environment, asyncCache, logger }), async (openEyes, options) => {
|
|
84179
84231
|
const eyes = await openEyes(options);
|
|
84180
84232
|
storage.push(eyes);
|
|
@@ -84365,7 +84417,7 @@ var require_package2 = __commonJS({
|
|
|
84365
84417
|
"../core/package.json"(exports, module) {
|
|
84366
84418
|
module.exports = {
|
|
84367
84419
|
name: "@applitools/core",
|
|
84368
|
-
version: "4.
|
|
84420
|
+
version: "4.6.0",
|
|
84369
84421
|
homepage: "https://applitools.com",
|
|
84370
84422
|
bugs: {
|
|
84371
84423
|
url: "https://github.com/applitools/eyes.sdk.javascript1/issues"
|
|
@@ -84816,7 +84868,7 @@ var require_core4 = __commonJS({
|
|
|
84816
84868
|
var validate_sdk_version_1 = require_validate_sdk_version();
|
|
84817
84869
|
var memory_usage_logging_1 = require_memory_usage_logging();
|
|
84818
84870
|
var utils34 = __importStar(require_browser3());
|
|
84819
|
-
function makeCore({ spec, clients,
|
|
84871
|
+
function makeCore({ spec, clients, base: defaultBase, concurrency = utils34.general.getEnvValue("CONCURRENCY", "number"), environment: defaultEnvironment, agentId = "core", cwd = process.cwd(), logger: defaultLogger, asyncCache } = {}) {
|
|
84820
84872
|
const logger = (0, logger_1.makeLogger)({ logger: defaultLogger, format: { label: "core" } });
|
|
84821
84873
|
(0, memory_usage_logging_1.startMemoryUsageLogging)({ logger });
|
|
84822
84874
|
const environment = (0, extract_test_environment_1.extractTestEnvironment)(defaultEnvironment);
|
|
@@ -84832,22 +84884,11 @@ var require_core4 = __commonJS({
|
|
|
84832
84884
|
getNMLClient: (0, get_nml_client_1.makeGetNMLClient)({ client: clients === null || clients === void 0 ? void 0 : clients.nml, logger }),
|
|
84833
84885
|
getECClient: (0, get_ec_client_1.makeGetECClient)({ logger }),
|
|
84834
84886
|
getAccountInfo: (0, get_account_info_1.makeGetAccountInfo)({ core, logger }),
|
|
84835
|
-
makeManager: (0, make_manager_1.makeMakeManager)({
|
|
84836
|
-
spec,
|
|
84837
|
-
clients,
|
|
84838
|
-
concurrency,
|
|
84839
|
-
core,
|
|
84840
|
-
base: defaultBase,
|
|
84841
|
-
agentId,
|
|
84842
|
-
cwd,
|
|
84843
|
-
environment,
|
|
84844
|
-
asyncCache,
|
|
84845
|
-
logger
|
|
84846
|
-
}),
|
|
84887
|
+
makeManager: (0, make_manager_1.makeMakeManager)({ spec, clients, core, agentId, cwd, environment, asyncCache, logger }),
|
|
84847
84888
|
locate: (0, locate_1.makeLocate)({ spec, core, logger }),
|
|
84848
84889
|
locateText: (0, locate_text_1.makeLocateText)({ spec, core, logger }),
|
|
84849
84890
|
extractText: (0, extract_text_1.makeExtractText)({ spec, core, logger }),
|
|
84850
|
-
openEyes: (0, open_eyes_1.makeOpenEyes)({ spec, clients, core,
|
|
84891
|
+
openEyes: (0, open_eyes_1.makeOpenEyes)({ spec, clients, core, environment, asyncCache, logger }),
|
|
84851
84892
|
closeBatch: (0, close_batch_1.makeCloseBatch)({ core, logger }),
|
|
84852
84893
|
deleteTest: (0, delete_test_1.makeDeleteTest)({ core, logger })
|
|
84853
84894
|
};
|
|
@@ -88117,7 +88158,7 @@ var require_package3 = __commonJS({
|
|
|
88117
88158
|
"../eyes/package.json"(exports, module) {
|
|
88118
88159
|
module.exports = {
|
|
88119
88160
|
name: "@applitools/eyes",
|
|
88120
|
-
version: "1.13.
|
|
88161
|
+
version: "1.13.5",
|
|
88121
88162
|
keywords: [
|
|
88122
88163
|
"applitools",
|
|
88123
88164
|
"eyes",
|
|
@@ -88226,73 +88267,78 @@ init_process();
|
|
|
88226
88267
|
init_setImmediate();
|
|
88227
88268
|
init_buffer();
|
|
88228
88269
|
var DeviceNameEnum = /* @__PURE__ */ ((DeviceNameEnum2) => {
|
|
88229
|
-
DeviceNameEnum2["Blackberry_PlayBook"] = "Blackberry PlayBook";
|
|
88230
|
-
DeviceNameEnum2["BlackBerry_Z30"] = "BlackBerry Z30";
|
|
88231
|
-
DeviceNameEnum2["Galaxy_A5"] = "Galaxy A5";
|
|
88232
|
-
DeviceNameEnum2["Galaxy_Note_10"] = "Galaxy Note 10";
|
|
88233
|
-
DeviceNameEnum2["Galaxy_Note_10_Plus"] = "Galaxy Note 10 Plus";
|
|
88234
|
-
DeviceNameEnum2["Galaxy_Note_2"] = "Galaxy Note 2";
|
|
88235
|
-
DeviceNameEnum2["Galaxy_Note_3"] = "Galaxy Note 3";
|
|
88236
|
-
DeviceNameEnum2["Galaxy_Note_4"] = "Galaxy Note 4";
|
|
88237
|
-
DeviceNameEnum2["Galaxy_Note_8"] = "Galaxy Note 8";
|
|
88238
|
-
DeviceNameEnum2["Galaxy_Note_9"] = "Galaxy Note 9";
|
|
88239
|
-
DeviceNameEnum2["Galaxy_S3"] = "Galaxy S3";
|
|
88240
|
-
DeviceNameEnum2["Galaxy_S5"] = "Galaxy S5";
|
|
88241
|
-
DeviceNameEnum2["Galaxy_S8"] = "Galaxy S8";
|
|
88242
|
-
DeviceNameEnum2["Galaxy_S8_Plus"] = "Galaxy S8 Plus";
|
|
88243
|
-
DeviceNameEnum2["Galaxy_S9"] = "Galaxy S9";
|
|
88244
|
-
DeviceNameEnum2["Galaxy_S9_Plus"] = "Galaxy S9 Plus";
|
|
88245
|
-
DeviceNameEnum2["Galaxy_S10"] = "Galaxy S10";
|
|
88246
|
-
DeviceNameEnum2["Galaxy_S10_Plus"] = "Galaxy S10 Plus";
|
|
88247
|
-
DeviceNameEnum2["Galaxy_S20"] = "Galaxy S20";
|
|
88248
|
-
DeviceNameEnum2["Galaxy_S21"] = "Galaxy S21";
|
|
88249
|
-
DeviceNameEnum2["Galaxy_S21_Ultra"] = "Galaxy S21 Ultra";
|
|
88250
|
-
DeviceNameEnum2["Galaxy_S22"] = "Galaxy S22";
|
|
88251
|
-
DeviceNameEnum2["Galaxy_S22_Ultra"] = "Galaxy S22 Ultra";
|
|
88252
|
-
DeviceNameEnum2["Galaxy_Tab_S7"] = "Galaxy Tab S7";
|
|
88253
|
-
DeviceNameEnum2["iPad"] = "iPad";
|
|
88254
|
-
DeviceNameEnum2["iPad_6th_Gen"] = "iPad 6th Gen";
|
|
88255
|
-
DeviceNameEnum2["iPad_7th_Gen"] = "iPad 7th Gen";
|
|
88256
|
-
DeviceNameEnum2["iPad_Air_2"] = "iPad Air 2";
|
|
88257
|
-
DeviceNameEnum2["iPad_Mini"] = "iPad Mini";
|
|
88258
|
-
DeviceNameEnum2["iPad_Pro"] = "iPad Pro";
|
|
88259
|
-
DeviceNameEnum2["iPhone_11"] = "iPhone 11";
|
|
88260
|
-
DeviceNameEnum2["iPhone_11_Pro"] = "iPhone 11 Pro";
|
|
88261
|
-
DeviceNameEnum2["iPhone_11_Pro_Max"] = "iPhone 11 Pro Max";
|
|
88262
88270
|
DeviceNameEnum2["iPhone_4"] = "iPhone 4";
|
|
88263
88271
|
DeviceNameEnum2["iPhone_5SE"] = "iPhone 5/SE";
|
|
88272
|
+
DeviceNameEnum2["iPhone_5S_E"] = "iPhone 5/SE";
|
|
88264
88273
|
DeviceNameEnum2["iPhone_6_7_8"] = "iPhone 6/7/8";
|
|
88265
88274
|
DeviceNameEnum2["iPhone_6_7_8_Plus"] = "iPhone 6/7/8 Plus";
|
|
88266
88275
|
DeviceNameEnum2["iPhone_X"] = "iPhone X";
|
|
88267
|
-
DeviceNameEnum2["
|
|
88268
|
-
DeviceNameEnum2["iPhone_XS"] = "iPhone XS";
|
|
88269
|
-
DeviceNameEnum2["iPhone_XS_Max"] = "iPhone XS Max";
|
|
88270
|
-
DeviceNameEnum2["Kindle_Fire_HDX"] = "Kindle Fire HDX";
|
|
88271
|
-
DeviceNameEnum2["Laptop_with_HiDPI_screen"] = "Laptop with HiDPI screen";
|
|
88272
|
-
DeviceNameEnum2["Laptop_with_MDPI_screen"] = "Laptop with MDPI screen";
|
|
88273
|
-
DeviceNameEnum2["Laptop_with_touch"] = "Laptop with touch";
|
|
88274
|
-
DeviceNameEnum2["LG_G6"] = "LG G6";
|
|
88275
|
-
DeviceNameEnum2["LG_Optimus_L70"] = "LG Optimus L70";
|
|
88276
|
-
DeviceNameEnum2["Microsoft_Lumia_550"] = "Microsoft Lumia 550";
|
|
88277
|
-
DeviceNameEnum2["Microsoft_Lumia_950"] = "Microsoft Lumia 950";
|
|
88278
|
-
DeviceNameEnum2["Nexus_10"] = "Nexus 10";
|
|
88276
|
+
DeviceNameEnum2["BlackBerry_Z30"] = "BlackBerry Z30";
|
|
88279
88277
|
DeviceNameEnum2["Nexus_4"] = "Nexus 4";
|
|
88280
88278
|
DeviceNameEnum2["Nexus_5"] = "Nexus 5";
|
|
88281
88279
|
DeviceNameEnum2["Nexus_5X"] = "Nexus 5X";
|
|
88282
88280
|
DeviceNameEnum2["Nexus_6"] = "Nexus 6";
|
|
88283
88281
|
DeviceNameEnum2["Nexus_6P"] = "Nexus 6P";
|
|
88284
|
-
DeviceNameEnum2["Nexus_7"] = "Nexus 7";
|
|
88285
|
-
DeviceNameEnum2["Nokia_Lumia_520"] = "Nokia Lumia 520";
|
|
88286
|
-
DeviceNameEnum2["Nokia_N9"] = "Nokia N9";
|
|
88287
|
-
DeviceNameEnum2["OnePlus_7T"] = "OnePlus 7T";
|
|
88288
|
-
DeviceNameEnum2["OnePlus_7T_Pro"] = "OnePlus 7T Pro";
|
|
88289
88282
|
DeviceNameEnum2["Pixel_2"] = "Pixel 2";
|
|
88290
88283
|
DeviceNameEnum2["Pixel_2_XL"] = "Pixel 2 XL";
|
|
88284
|
+
DeviceNameEnum2["LG_Optimus_L70"] = "LG Optimus L70";
|
|
88285
|
+
DeviceNameEnum2["Nokia_N9"] = "Nokia N9";
|
|
88286
|
+
DeviceNameEnum2["Nokia_Lumia_520"] = "Nokia Lumia 520";
|
|
88287
|
+
DeviceNameEnum2["Microsoft_Lumia_550"] = "Microsoft Lumia 550";
|
|
88288
|
+
DeviceNameEnum2["Microsoft_Lumia_950"] = "Microsoft Lumia 950";
|
|
88289
|
+
DeviceNameEnum2["Galaxy_S3"] = "Galaxy S3";
|
|
88290
|
+
DeviceNameEnum2["Galaxy_S_III"] = "Galaxy S III";
|
|
88291
|
+
DeviceNameEnum2["Galaxy_S5"] = "Galaxy S5";
|
|
88292
|
+
DeviceNameEnum2["Kindle_Fire_HDX"] = "Kindle Fire HDX";
|
|
88293
|
+
DeviceNameEnum2["iPad_Mini"] = "iPad Mini";
|
|
88294
|
+
DeviceNameEnum2["iPad"] = "iPad";
|
|
88295
|
+
DeviceNameEnum2["iPad_Pro"] = "iPad Pro";
|
|
88296
|
+
DeviceNameEnum2["Blackberry_PlayBook"] = "Blackberry PlayBook";
|
|
88297
|
+
DeviceNameEnum2["Nexus_10"] = "Nexus 10";
|
|
88298
|
+
DeviceNameEnum2["Nexus_7"] = "Nexus 7";
|
|
88299
|
+
DeviceNameEnum2["Galaxy_Note_3"] = "Galaxy Note 3";
|
|
88300
|
+
DeviceNameEnum2["Galaxy_Note_II"] = "Galaxy Note II";
|
|
88301
|
+
DeviceNameEnum2["Galaxy_Note_2"] = "Galaxy Note 2";
|
|
88302
|
+
DeviceNameEnum2["Galaxy_S20"] = "Galaxy S20";
|
|
88303
|
+
DeviceNameEnum2["Galaxy_S22"] = "Galaxy S22";
|
|
88304
|
+
DeviceNameEnum2["Galaxy_S21"] = "Galaxy S21";
|
|
88305
|
+
DeviceNameEnum2["Galaxy_S21_Ultra"] = "Galaxy S21 Ultra";
|
|
88306
|
+
DeviceNameEnum2["Galaxy_S22_Ultra"] = "Galaxy S22 Ultra";
|
|
88307
|
+
DeviceNameEnum2["Laptop_with_touch"] = "Laptop with touch";
|
|
88308
|
+
DeviceNameEnum2["Laptop_with_HiDPI_screen"] = "Laptop with HiDPI screen";
|
|
88309
|
+
DeviceNameEnum2["Laptop_with_MDPI_screen"] = "Laptop with MDPI screen";
|
|
88310
|
+
DeviceNameEnum2["iPhone_XR"] = "iPhone XR";
|
|
88311
|
+
DeviceNameEnum2["iPhone_XS_Max"] = "iPhone XS Max";
|
|
88312
|
+
DeviceNameEnum2["iPhone_XS"] = "iPhone XS";
|
|
88313
|
+
DeviceNameEnum2["Samsung_Galaxy_A5"] = "Samsung Galaxy A5";
|
|
88314
|
+
DeviceNameEnum2["Galaxy_A5"] = "Galaxy A5";
|
|
88315
|
+
DeviceNameEnum2["Samsung_Galaxy_S8"] = "Samsung Galaxy S8";
|
|
88316
|
+
DeviceNameEnum2["Galaxy_S8"] = "Galaxy S8";
|
|
88317
|
+
DeviceNameEnum2["LG_G6"] = "LG G6";
|
|
88318
|
+
DeviceNameEnum2["iPad_Air_2"] = "iPad Air 2";
|
|
88319
|
+
DeviceNameEnum2["iPad_6th_Gen"] = "iPad 6th Gen";
|
|
88320
|
+
DeviceNameEnum2["iPhone_11"] = "iPhone 11";
|
|
88321
|
+
DeviceNameEnum2["iPhone_11_Pro_Max"] = "iPhone 11 Pro Max";
|
|
88322
|
+
DeviceNameEnum2["iPhone_11_Pro"] = "iPhone 11 Pro";
|
|
88323
|
+
DeviceNameEnum2["Galaxy_S10"] = "Galaxy S10";
|
|
88324
|
+
DeviceNameEnum2["Galaxy_S9_Plus"] = "Galaxy S9 Plus";
|
|
88325
|
+
DeviceNameEnum2["Galaxy_S9"] = "Galaxy S9";
|
|
88326
|
+
DeviceNameEnum2["Galaxy_S10_Plus"] = "Galaxy S10 Plus";
|
|
88327
|
+
DeviceNameEnum2["Galaxy_S8_Plus"] = "Galaxy S8 Plus";
|
|
88328
|
+
DeviceNameEnum2["Galaxy_Note_10"] = "Galaxy Note 10";
|
|
88329
|
+
DeviceNameEnum2["Galaxy_Note_10_Plus"] = "Galaxy Note 10 Plus";
|
|
88330
|
+
DeviceNameEnum2["Galaxy_Note_9"] = "Galaxy Note 9";
|
|
88331
|
+
DeviceNameEnum2["Galaxy_Note_8"] = "Galaxy Note 8";
|
|
88332
|
+
DeviceNameEnum2["Galaxy_Note_4"] = "Galaxy Note 4";
|
|
88291
88333
|
DeviceNameEnum2["Pixel_3"] = "Pixel 3";
|
|
88292
88334
|
DeviceNameEnum2["Pixel_3_XL"] = "Pixel 3 XL";
|
|
88293
88335
|
DeviceNameEnum2["Pixel_4"] = "Pixel 4";
|
|
88294
88336
|
DeviceNameEnum2["Pixel_4_XL"] = "Pixel 4 XL";
|
|
88295
88337
|
DeviceNameEnum2["Pixel_5"] = "Pixel 5";
|
|
88338
|
+
DeviceNameEnum2["iPad_7th_Gen"] = "iPad 7th Gen";
|
|
88339
|
+
DeviceNameEnum2["OnePlus_7T"] = "OnePlus 7T";
|
|
88340
|
+
DeviceNameEnum2["OnePlus_7T_Pro"] = "OnePlus 7T Pro";
|
|
88341
|
+
DeviceNameEnum2["Galaxy_Tab_S7"] = "Galaxy Tab S7";
|
|
88296
88342
|
DeviceNameEnum2["Sony_Xperia_10_II"] = "Sony Xperia 10 II";
|
|
88297
88343
|
DeviceNameEnum2["Huawei_Mate_50_Pro"] = "Huawei Mate 50 Pro";
|
|
88298
88344
|
DeviceNameEnum2["Huawei_Matepad_11"] = "Huawei Matepad 11";
|
|
@@ -88314,6 +88360,33 @@ init_process();
|
|
|
88314
88360
|
init_setImmediate();
|
|
88315
88361
|
init_buffer();
|
|
88316
88362
|
var IosDeviceNameEnum = /* @__PURE__ */ ((IosDeviceNameEnum2) => {
|
|
88363
|
+
IosDeviceNameEnum2["iPad_5"] = "iPad (5th generation)";
|
|
88364
|
+
IosDeviceNameEnum2["iPad_6"] = "iPad (6th generation)";
|
|
88365
|
+
IosDeviceNameEnum2["iPad_7"] = "iPad (7th generation)";
|
|
88366
|
+
IosDeviceNameEnum2["iPad_8"] = "iPad (8th generation)";
|
|
88367
|
+
IosDeviceNameEnum2["iPad_9"] = "iPad (9th generation)";
|
|
88368
|
+
IosDeviceNameEnum2["iPad_10"] = "iPad (10th generation)";
|
|
88369
|
+
IosDeviceNameEnum2["iPad_Air_2"] = "iPad Air 2";
|
|
88370
|
+
IosDeviceNameEnum2["iPad_Air_3"] = "iPad Air (3rd generation)";
|
|
88371
|
+
IosDeviceNameEnum2["iPad_Air_4"] = "iPad Air (4th generation)";
|
|
88372
|
+
IosDeviceNameEnum2["iPad_Air_5"] = "iPad Air (5th generation)";
|
|
88373
|
+
IosDeviceNameEnum2["iPad_mini_4"] = "iPad mini 4";
|
|
88374
|
+
IosDeviceNameEnum2["iPad_mini_5"] = "iPad mini (5th generation)";
|
|
88375
|
+
IosDeviceNameEnum2["iPad_mini_6"] = "iPad mini (6th generation)";
|
|
88376
|
+
IosDeviceNameEnum2["iPad_Pro_9_7_inch_1"] = "iPad Pro (9.7-inch)";
|
|
88377
|
+
IosDeviceNameEnum2["iPad_Pro_10_5_inch_1"] = "iPad Pro (10.5-inch)";
|
|
88378
|
+
IosDeviceNameEnum2["iPad_Pro_11_inch_1"] = "iPad Pro (11-inch) (1st generation)";
|
|
88379
|
+
IosDeviceNameEnum2["iPad_Pro_12_9_inch_1"] = "iPad Pro (12.9-inch) (1st generation)";
|
|
88380
|
+
IosDeviceNameEnum2["iPad_Pro_11_inch_2"] = "iPad Pro (11-inch) (2nd generation)";
|
|
88381
|
+
IosDeviceNameEnum2["iPad_Pro_12_9_inch_2"] = "iPad Pro (12.9-inch) (2nd generation)";
|
|
88382
|
+
IosDeviceNameEnum2["iPad_Pro_11_inch_3"] = "iPad Pro (11-inch) (3rd generation)";
|
|
88383
|
+
IosDeviceNameEnum2["iPad_Pro_3"] = "iPad Pro (12.9-inch) (3rd generation)";
|
|
88384
|
+
IosDeviceNameEnum2["iPad_Pro_12_9_inch_3"] = "iPad Pro (12.9-inch) (3rd generation)";
|
|
88385
|
+
IosDeviceNameEnum2["iPad_Pro_4"] = "iPad Pro (11-inch) (4th generation)";
|
|
88386
|
+
IosDeviceNameEnum2["iPad_Pro_11_inch_4"] = "iPad Pro (11-inch) (4th generation)";
|
|
88387
|
+
IosDeviceNameEnum2["iPad_Pro_12_9_inch_4"] = "iPad Pro (12.9-inch) (4th generation)";
|
|
88388
|
+
IosDeviceNameEnum2["iPad_Pro_12_9_inch_5"] = "iPad Pro (12.9-inch) (5th generation)";
|
|
88389
|
+
IosDeviceNameEnum2["iPad_Pro_12_9_inch_6"] = "iPad Pro (12.9-inch) (6th generation)";
|
|
88317
88390
|
IosDeviceNameEnum2["iPhone_6s"] = "iPhone 6s";
|
|
88318
88391
|
IosDeviceNameEnum2["iPhone_6s_Plus"] = "iPhone 6s Plus";
|
|
88319
88392
|
IosDeviceNameEnum2["iPhone_7"] = "iPhone 7";
|
|
@@ -88322,55 +88395,32 @@ var IosDeviceNameEnum = /* @__PURE__ */ ((IosDeviceNameEnum2) => {
|
|
|
88322
88395
|
IosDeviceNameEnum2["iPhone_8_Plus"] = "iPhone 8 Plus";
|
|
88323
88396
|
IosDeviceNameEnum2["iPhone_X"] = "iPhone X";
|
|
88324
88397
|
IosDeviceNameEnum2["iPhone_XR"] = "iPhone XR";
|
|
88325
|
-
IosDeviceNameEnum2["iPhone_Xs"] = "iPhone Xs";
|
|
88326
88398
|
IosDeviceNameEnum2["iPhone_XS"] = "iPhone Xs";
|
|
88399
|
+
IosDeviceNameEnum2["iPhone_Xs"] = "iPhone Xs";
|
|
88327
88400
|
IosDeviceNameEnum2["iPhone_Xs_Max"] = "iPhone Xs Max";
|
|
88328
88401
|
IosDeviceNameEnum2["iPhone_11"] = "iPhone 11";
|
|
88329
|
-
IosDeviceNameEnum2["iPhone_11_Pro"] = "iPhone 11 Pro";
|
|
88330
88402
|
IosDeviceNameEnum2["iPhone_11_Pro_Max"] = "iPhone 11 Pro Max";
|
|
88403
|
+
IosDeviceNameEnum2["iPhone_11_Pro"] = "iPhone 11 Pro";
|
|
88331
88404
|
IosDeviceNameEnum2["iPhone_12"] = "iPhone 12";
|
|
88332
88405
|
IosDeviceNameEnum2["iPhone_12_mini"] = "iPhone 12 mini";
|
|
88333
|
-
IosDeviceNameEnum2["iPhone_12_Pro"] = "iPhone 12 Pro";
|
|
88334
88406
|
IosDeviceNameEnum2["iPhone_12_Pro_Max"] = "iPhone 12 Pro Max";
|
|
88407
|
+
IosDeviceNameEnum2["iPhone_12_Pro"] = "iPhone 12 Pro";
|
|
88335
88408
|
IosDeviceNameEnum2["iPhone_13"] = "iPhone 13";
|
|
88336
88409
|
IosDeviceNameEnum2["iPhone_13_mini"] = "iPhone 13 mini";
|
|
88337
|
-
IosDeviceNameEnum2["iPhone_13_Pro"] = "iPhone 13 Pro";
|
|
88338
88410
|
IosDeviceNameEnum2["iPhone_13_Pro_Max"] = "iPhone 13 Pro Max";
|
|
88411
|
+
IosDeviceNameEnum2["iPhone_13_Pro"] = "iPhone 13 Pro";
|
|
88339
88412
|
IosDeviceNameEnum2["iPhone_14"] = "iPhone 14";
|
|
88340
88413
|
IosDeviceNameEnum2["iPhone_14_Plus"] = "iPhone 14 Plus";
|
|
88341
88414
|
IosDeviceNameEnum2["iPhone_14_Pro"] = "iPhone 14 Pro";
|
|
88342
88415
|
IosDeviceNameEnum2["iPhone_14_Pro_Max"] = "iPhone 14 Pro Max";
|
|
88416
|
+
IosDeviceNameEnum2["iPhone_15"] = "iPhone 15";
|
|
88417
|
+
IosDeviceNameEnum2["iPhone_15_Plus"] = "iPhone 15 Plus";
|
|
88418
|
+
IosDeviceNameEnum2["iPhone_15_Pro"] = "iPhone 15 Pro";
|
|
88419
|
+
IosDeviceNameEnum2["iPhone_15_Pro_Max"] = "iPhone 15 Pro Max";
|
|
88343
88420
|
IosDeviceNameEnum2["iPhone_SE"] = "iPhone SE (1st generation)";
|
|
88344
88421
|
IosDeviceNameEnum2["iPhone_SE_1"] = "iPhone SE (1st generation)";
|
|
88345
88422
|
IosDeviceNameEnum2["iPhone_SE_2"] = "iPhone SE (2nd generation)";
|
|
88346
88423
|
IosDeviceNameEnum2["iPhone_SE_3"] = "iPhone SE (3rd generation)";
|
|
88347
|
-
IosDeviceNameEnum2["iPad_5"] = "iPad (5th generation)";
|
|
88348
|
-
IosDeviceNameEnum2["iPad_6"] = "iPad (6th generation)";
|
|
88349
|
-
IosDeviceNameEnum2["iPad_7"] = "iPad (7th generation)";
|
|
88350
|
-
IosDeviceNameEnum2["iPad_8"] = "iPad (8th generation)";
|
|
88351
|
-
IosDeviceNameEnum2["iPad_9"] = "iPad (9th generation)";
|
|
88352
|
-
IosDeviceNameEnum2["iPad_10"] = "iPad (10th generation)";
|
|
88353
|
-
IosDeviceNameEnum2["iPad_Air_2"] = "iPad Air 2";
|
|
88354
|
-
IosDeviceNameEnum2["iPad_Air_3"] = "iPad Air (3rd generation)";
|
|
88355
|
-
IosDeviceNameEnum2["iPad_Air_4"] = "iPad Air (4th generation)";
|
|
88356
|
-
IosDeviceNameEnum2["iPad_Air_5"] = "iPad Air (5th generation)";
|
|
88357
|
-
IosDeviceNameEnum2["iPad_mini_4"] = "iPad mini 4";
|
|
88358
|
-
IosDeviceNameEnum2["iPad_mini_5"] = "iPad mini (5th generation)";
|
|
88359
|
-
IosDeviceNameEnum2["iPad_mini_6"] = "iPad mini (6th generation)";
|
|
88360
|
-
IosDeviceNameEnum2["iPad_Pro_9_7_inch_1"] = "iPad Pro (9.7-inch)";
|
|
88361
|
-
IosDeviceNameEnum2["iPad_Pro_10_5_inch_1"] = "iPad Pro (10.5-inch)";
|
|
88362
|
-
IosDeviceNameEnum2["iPad_Pro_11_inch_1"] = "iPad Pro (11-inch) (1st generation)";
|
|
88363
|
-
IosDeviceNameEnum2["iPad_Pro_12_9_inch_1"] = "iPad Pro (12.9-inch) (1st generation)";
|
|
88364
|
-
IosDeviceNameEnum2["iPad_Pro_11_inch_2"] = "iPad Pro (11-inch) (2nd generation)";
|
|
88365
|
-
IosDeviceNameEnum2["iPad_Pro_12_9_inch_2"] = "iPad Pro (12.9-inch) (2nd generation)";
|
|
88366
|
-
IosDeviceNameEnum2["iPad_Pro_11_inch_3"] = "iPad Pro (11-inch) (3rd generation)";
|
|
88367
|
-
IosDeviceNameEnum2["iPad_Pro_12_9_inch_3"] = "iPad Pro (12.9-inch) (3rd generation)";
|
|
88368
|
-
IosDeviceNameEnum2["iPad_Pro_3"] = "iPad Pro (12.9-inch) (3rd generation)";
|
|
88369
|
-
IosDeviceNameEnum2["iPad_Pro_11_inch_4"] = "iPad Pro (11-inch) (4th generation)";
|
|
88370
|
-
IosDeviceNameEnum2["iPad_Pro_4"] = "iPad Pro (11-inch) (4th generation)";
|
|
88371
|
-
IosDeviceNameEnum2["iPad_Pro_12_9_inch_4"] = "iPad Pro (12.9-inch) (4th generation)";
|
|
88372
|
-
IosDeviceNameEnum2["iPad_Pro_12_9_inch_5"] = "iPad Pro (12.9-inch) (5th generation)";
|
|
88373
|
-
IosDeviceNameEnum2["iPad_Pro_12_9_inch_6"] = "iPad Pro (12.9-inch) (6th generation)";
|
|
88374
88424
|
IosDeviceNameEnum2["iPod_touch_7"] = "iPod touch (7th generation)";
|
|
88375
88425
|
return IosDeviceNameEnum2;
|
|
88376
88426
|
})(IosDeviceNameEnum || {});
|
|
@@ -88391,29 +88441,33 @@ init_process();
|
|
|
88391
88441
|
init_setImmediate();
|
|
88392
88442
|
init_buffer();
|
|
88393
88443
|
var AndroidDeviceNameEnum = /* @__PURE__ */ ((AndroidDeviceNameEnum2) => {
|
|
88394
|
-
AndroidDeviceNameEnum2["Pixel_3_XL"] = "Pixel 3 XL";
|
|
88395
|
-
AndroidDeviceNameEnum2["Pixel_4"] = "Pixel 4";
|
|
88396
|
-
AndroidDeviceNameEnum2["Pixel_4_XL"] = "Pixel 4 XL";
|
|
88397
|
-
AndroidDeviceNameEnum2["Pixel_5"] = "Pixel 5";
|
|
88398
|
-
AndroidDeviceNameEnum2["Pixel_6"] = "Pixel 6";
|
|
88399
|
-
AndroidDeviceNameEnum2["Galaxy_S10"] = "Galaxy S10";
|
|
88400
|
-
AndroidDeviceNameEnum2["Galaxy_S10_Plus"] = "Galaxy S10 Plus";
|
|
88401
|
-
AndroidDeviceNameEnum2["Galaxy_Note_10"] = "Galaxy Note 10";
|
|
88402
|
-
AndroidDeviceNameEnum2["Galaxy_Note_10_Plus"] = "Galaxy Note 10 Plus";
|
|
88403
88444
|
AndroidDeviceNameEnum2["Galaxy_S20"] = "Galaxy S20";
|
|
88404
88445
|
AndroidDeviceNameEnum2["Galaxy_S20_Plus"] = "Galaxy S20 Plus";
|
|
88446
|
+
AndroidDeviceNameEnum2["Galaxy_S20_PLUS"] = "Galaxy S20 Plus";
|
|
88447
|
+
AndroidDeviceNameEnum2["Galaxy_S21_Ultra"] = "Galaxy S21 Ultra";
|
|
88448
|
+
AndroidDeviceNameEnum2["Galaxy_S21_ULTRA"] = "Galaxy S21 Ultra";
|
|
88449
|
+
AndroidDeviceNameEnum2["Galaxy_Note_10_Plus"] = "Galaxy Note 10 Plus";
|
|
88450
|
+
AndroidDeviceNameEnum2["Galaxy_S9"] = "Galaxy S9";
|
|
88451
|
+
AndroidDeviceNameEnum2["Galaxy_S10"] = "Galaxy S10";
|
|
88452
|
+
AndroidDeviceNameEnum2["Galaxy_S10_Plus"] = "Galaxy S10 Plus";
|
|
88453
|
+
AndroidDeviceNameEnum2["Pixel_4_XL"] = "Pixel 4 XL";
|
|
88454
|
+
AndroidDeviceNameEnum2["Pixel_3_XL"] = "Pixel 3 XL";
|
|
88405
88455
|
AndroidDeviceNameEnum2["Galaxy_S21"] = "Galaxy S21";
|
|
88406
88456
|
AndroidDeviceNameEnum2["Galaxy_S21_Plus"] = "Galaxy S21 Plus";
|
|
88407
|
-
AndroidDeviceNameEnum2["
|
|
88457
|
+
AndroidDeviceNameEnum2["Galaxy_S21_PLUS"] = "Galaxy S21 Plus";
|
|
88458
|
+
AndroidDeviceNameEnum2["Xiaomi_Redmi_Note_11_Pro"] = "Xiaomi Redmi Note 11 Pro";
|
|
88459
|
+
AndroidDeviceNameEnum2["Xiaomi_Redmi_Note_11"] = "Xiaomi Redmi Note 11";
|
|
88460
|
+
AndroidDeviceNameEnum2["Xiaomi_Redmi_Note_10_JE"] = "Xiaomi Redmi Note 10 JE";
|
|
88461
|
+
AndroidDeviceNameEnum2["Pixel_6"] = "Pixel 6";
|
|
88462
|
+
AndroidDeviceNameEnum2["Galaxy_Note_10"] = "Galaxy Note 10";
|
|
88463
|
+
AndroidDeviceNameEnum2["Pixel_4"] = "Pixel 4";
|
|
88464
|
+
AndroidDeviceNameEnum2["Pixel_5"] = "Pixel 5";
|
|
88408
88465
|
AndroidDeviceNameEnum2["Galaxy_S22"] = "Galaxy S22";
|
|
88409
88466
|
AndroidDeviceNameEnum2["Galaxy_S22_Plus"] = "Galaxy S22 Plus";
|
|
88410
|
-
AndroidDeviceNameEnum2["Galaxy_Tab_S7"] = "Galaxy Tab S7";
|
|
88411
88467
|
AndroidDeviceNameEnum2["Galaxy_Tab_S8"] = "Galaxy Tab S8";
|
|
88412
|
-
AndroidDeviceNameEnum2["
|
|
88413
|
-
AndroidDeviceNameEnum2["Xiaomi_Redmi_Note_11"] = "Xiaomi Redmi Note 11";
|
|
88414
|
-
AndroidDeviceNameEnum2["Xiaomi_Redmi_Note_11_Pro"] = "Xiaomi Redmi Note 11 Pro";
|
|
88415
|
-
AndroidDeviceNameEnum2["Sony_Xperia_1_II"] = "Sony Xperia 1 II";
|
|
88468
|
+
AndroidDeviceNameEnum2["Galaxy_Tab_S7"] = "Galaxy Tab S7";
|
|
88416
88469
|
AndroidDeviceNameEnum2["Sony_Xperia_10_II"] = "Sony Xperia 10 II";
|
|
88470
|
+
AndroidDeviceNameEnum2["Sony_Xperia_1_II"] = "Sony Xperia 1 II";
|
|
88417
88471
|
AndroidDeviceNameEnum2["Sony_Xperia_Ace_II"] = "Sony Xperia Ace II";
|
|
88418
88472
|
AndroidDeviceNameEnum2["Huawei_P30_Lite"] = "Huawei P30 Lite";
|
|
88419
88473
|
return AndroidDeviceNameEnum2;
|
|
@@ -90016,7 +90070,7 @@ var CheckSettingsAutomationFluent = class extends CheckSettingsBaseFluent {
|
|
|
90016
90070
|
visualGridOptions(options) {
|
|
90017
90071
|
return this.ufgOptions(options);
|
|
90018
90072
|
}
|
|
90019
|
-
useSystemScreenshot(useSystemScreenshot) {
|
|
90073
|
+
useSystemScreenshot(useSystemScreenshot = true) {
|
|
90020
90074
|
this._settings.useSystemScreenshot = useSystemScreenshot;
|
|
90021
90075
|
return this;
|
|
90022
90076
|
}
|
|
@@ -92802,7 +92856,11 @@ var Eyes = class {
|
|
|
92802
92856
|
let target;
|
|
92803
92857
|
if (utils32.types.has(targetOrSettings, "locatorNames")) {
|
|
92804
92858
|
settings = targetOrSettings;
|
|
92805
|
-
|
|
92859
|
+
if (utils32.types.has(targetOrSettings, "image")) {
|
|
92860
|
+
target = { image: targetOrSettings.image };
|
|
92861
|
+
} else {
|
|
92862
|
+
target = this._driver;
|
|
92863
|
+
}
|
|
92806
92864
|
} else {
|
|
92807
92865
|
target = targetOrSettings;
|
|
92808
92866
|
}
|