@lwrjs/client-modules 0.7.3 → 0.7.6
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.
|
@@ -149,8 +149,17 @@ function ArrayConcat$LWS(array$LWS, ...args$LWS) {
|
|
|
149
149
|
function toSafeArray$LWS(array$LWS) {
|
|
150
150
|
ReflectSetPrototypeOf$LWS(array$LWS, null);
|
|
151
151
|
array$LWS.at = ArrayProtoAt$LWS;
|
|
152
|
-
array$LWS.concat = ArrayProtoConcat$LWS;
|
|
153
|
-
|
|
152
|
+
array$LWS.concat = ArrayProtoConcat$LWS; // *** DO NOT SET THE ARRAY CONSTRUCTOR PROPERTY ***
|
|
153
|
+
// https://bugs.chromium.org/p/v8/issues/detail?id=13202
|
|
154
|
+
// https://source.chromium.org/chromium/chromium/src/+/main:v8/src/objects/lookup.cc;l=196-215?q=IsArraySpeciesLookupChainIntact
|
|
155
|
+
//
|
|
156
|
+
// In V8 setting the constructor property of an array, promise, regexp, or
|
|
157
|
+
// typed array triggers a de-opt because it could change an instance's
|
|
158
|
+
// @@species. This de-opt affects at least `Array#splice` and occurs even
|
|
159
|
+
// if the prototype of the array is change or nulled beforehand. Further,
|
|
160
|
+
// the de-opt persists after a page refresh. It is not until navigating to
|
|
161
|
+
// a different page that the performance of `Array#splice` is restored.
|
|
162
|
+
|
|
154
163
|
array$LWS.copyWithin = ArrayProtoCopyWithin$LWS;
|
|
155
164
|
array$LWS.entries = ArrayProtoEntries$LWS;
|
|
156
165
|
array$LWS.every = ArrayProtoEvery$LWS;
|
|
@@ -275,7 +284,6 @@ const MapProtoSizeGetter$LWS = ObjectLookupOwnGetter$LWS(MapProto$LWS, 'size');
|
|
|
275
284
|
function toSafeMap$LWS(map$LWS) {
|
|
276
285
|
ReflectSetPrototypeOf$LWS(map$LWS, null);
|
|
277
286
|
map$LWS.clear = MapProtoClear$LWS;
|
|
278
|
-
map$LWS.constructor = MapCtor$LWS;
|
|
279
287
|
map$LWS.delete = MapProtoDelete$LWS;
|
|
280
288
|
map$LWS.entries = MapProtoEntries$LWS;
|
|
281
289
|
map$LWS.forEach = MapProtoForEach$LWS;
|
|
@@ -468,7 +476,6 @@ function toSafeSet$LWS(set$LWS) {
|
|
|
468
476
|
ReflectSetPrototypeOf$LWS(set$LWS, null);
|
|
469
477
|
set$LWS.add = SetProtoAdd$LWS;
|
|
470
478
|
set$LWS.clear = SetProtoClear$LWS;
|
|
471
|
-
set$LWS.constructor = SetCtor$LWS;
|
|
472
479
|
set$LWS.delete = SetProtoDelete$LWS;
|
|
473
480
|
set$LWS.entries = SetProtoEntries$LWS;
|
|
474
481
|
set$LWS.forEach = SetProtoForEach$LWS;
|
|
@@ -504,7 +511,6 @@ const {
|
|
|
504
511
|
|
|
505
512
|
function toSafeWeakMap$LWS$1(weakMap$LWS) {
|
|
506
513
|
ReflectSetPrototypeOf$LWS(weakMap$LWS, null);
|
|
507
|
-
weakMap$LWS.constructor = WeakMapCtor$LWS;
|
|
508
514
|
weakMap$LWS.delete = WeakMapProtoDelete$LWS;
|
|
509
515
|
weakMap$LWS.get = WeakMapProtoGet$LWS;
|
|
510
516
|
weakMap$LWS.has = WeakMapProtoHas$LWS;
|
|
@@ -530,7 +536,6 @@ const {
|
|
|
530
536
|
function toSafeWeakSet$LWS(weakSet$LWS) {
|
|
531
537
|
ReflectSetPrototypeOf$LWS(weakSet$LWS, null);
|
|
532
538
|
weakSet$LWS.add = WeakSetProtoAdd$LWS;
|
|
533
|
-
weakSet$LWS.constructor = WeakSetCtor$LWS;
|
|
534
539
|
weakSet$LWS.delete = WeakSetProtoDelete$LWS;
|
|
535
540
|
weakSet$LWS.has = WeakSetProtoHas$LWS;
|
|
536
541
|
weakSet$LWS[SymbolToStringTag$LWS] = WeakSetProtoSymbolToStringTag$LWS;
|
|
@@ -996,7 +1001,7 @@ function createRevokedProxy$LWS(object$LWS) {
|
|
|
996
1001
|
revocable$LWS.revoke();
|
|
997
1002
|
return revocable$LWS.proxy;
|
|
998
1003
|
}
|
|
999
|
-
/*! version: 0.16.
|
|
1004
|
+
/*! version: 0.16.27 */
|
|
1000
1005
|
|
|
1001
1006
|
/*!
|
|
1002
1007
|
* Copyright (C) 2019 salesforce.com, inc.
|
|
@@ -1011,9 +1016,10 @@ const {
|
|
|
1011
1016
|
get: AttrProtoValueGetter$LWS,
|
|
1012
1017
|
set: AttrProtoValueSetter$LWS
|
|
1013
1018
|
} = ReflectGetOwnPropertyDescriptor$LWS(AttrProto$LWS, 'value');
|
|
1019
|
+
const DocumentCtor$LWS = Document;
|
|
1014
1020
|
const {
|
|
1015
1021
|
prototype: DocumentProto$LWS
|
|
1016
|
-
} =
|
|
1022
|
+
} = DocumentCtor$LWS;
|
|
1017
1023
|
const {
|
|
1018
1024
|
createComment: DocumentProtoCreateComment$LWS,
|
|
1019
1025
|
createElement: DocumentProtoCreateElement$LWS,
|
|
@@ -1604,6 +1610,7 @@ const WindowQueueMicrotask$LWS = (() => {
|
|
|
1604
1610
|
// https://caniuse.com/mdn-api_queuemicrotask
|
|
1605
1611
|
// https://developer.mozilla.org/en-US/docs/Web/API/queueMicrotask#when_queuemicrotask_isnt_available
|
|
1606
1612
|
// istanbul ignore next: coverage is not measured in Edge 15, which means this whole fallback is considered "uncovered" when the tests are run in Chrome.
|
|
1613
|
+
// eslint-disable-next-line @typescript-eslint/no-shadow, no-shadow
|
|
1607
1614
|
|
|
1608
1615
|
|
|
1609
1616
|
return function queueMicrotask$LWS(callback$LWS) {
|
|
@@ -1618,6 +1625,7 @@ const WindowQueueMicrotask$LWS = (() => {
|
|
|
1618
1625
|
const WindowDocumentGetter$LWS = ObjectLookupOwnGetter$LWS(window, 'document');
|
|
1619
1626
|
const WindowFrameElementGetter$LWS = ObjectLookupOwnGetter$LWS(window, 'frameElement');
|
|
1620
1627
|
const WindowLengthGetter$LWS = ObjectLookupOwnGetter$LWS(window, 'length');
|
|
1628
|
+
const WindowLocationGetter$LWS = ObjectLookupOwnGetter$LWS(window, 'location');
|
|
1621
1629
|
|
|
1622
1630
|
function isWindow$LWS(value$LWS) {
|
|
1623
1631
|
if (typeof value$LWS === 'object' && value$LWS !== null && ObjectHasOwn$LWS(value$LWS, 'window') && value$LWS.window === value$LWS) {
|
|
@@ -1631,7 +1639,7 @@ function isWindow$LWS(value$LWS) {
|
|
|
1631
1639
|
// equivalent to window.frames, and here is the very simple spec for
|
|
1632
1640
|
// this getter:
|
|
1633
1641
|
// https://html.spec.whatwg.org/multipage/window-object.html#dom-self
|
|
1634
|
-
ReflectApply$LWS(
|
|
1642
|
+
ReflectApply$LWS(WindowLocationGetter$LWS, value$LWS, []);
|
|
1635
1643
|
return true; // eslint-disable-next-line no-empty
|
|
1636
1644
|
} catch (_unused2$LWS) {}
|
|
1637
1645
|
}
|
|
@@ -1654,7 +1662,7 @@ const {
|
|
|
1654
1662
|
const XhrProtoResponseTextGetter$LWS = ObjectLookupOwnGetter$LWS(XhrProto$LWS, 'responseText');
|
|
1655
1663
|
const XhrProtoStatusGetter$LWS = ObjectLookupOwnGetter$LWS(XhrProto$LWS, 'status');
|
|
1656
1664
|
const XhrProtoWithCredentialsSetter$LWS = ObjectLookupOwnSetter$LWS(XhrProto$LWS, 'withCredentials');
|
|
1657
|
-
/*! version: 0.16.
|
|
1665
|
+
/*! version: 0.16.27 */
|
|
1658
1666
|
|
|
1659
1667
|
/*!
|
|
1660
1668
|
* Copyright (C) 2019 salesforce.com, inc.
|
|
@@ -1721,7 +1729,7 @@ function sanitizeURLForElement$LWS(url$LWS) {
|
|
|
1721
1729
|
function sanitizeURLString$LWS(urlString$LWS) {
|
|
1722
1730
|
return urlString$LWS === '' ? urlString$LWS : ReflectApply$LWS(StringProtoReplace$LWS, urlString$LWS, [newlinesAndTabsRegExp$LWS, '']);
|
|
1723
1731
|
}
|
|
1724
|
-
/*! version: 0.16.
|
|
1732
|
+
/*! version: 0.16.27 */
|
|
1725
1733
|
|
|
1726
1734
|
/*! @license DOMPurify 2.3.6 | (c) Cure53 and other contributors | Released under the Apache license 2.0 and Mozilla Public License 2.0 | github.com/cure53/DOMPurify/blob/2.3.6/LICENSE */
|
|
1727
1735
|
|
|
@@ -3440,7 +3448,7 @@ function sanitizeSvgTextReturnDOM$LWS(dirty$LWS) {
|
|
|
3440
3448
|
const sanitizer$LWS = svgSanitizer$LWS();
|
|
3441
3449
|
return sanitizer$LWS.sanitize(dirty$LWS);
|
|
3442
3450
|
}
|
|
3443
|
-
/*! version: 0.16.
|
|
3451
|
+
/*! version: 0.16.27 */
|
|
3444
3452
|
|
|
3445
3453
|
/*!
|
|
3446
3454
|
* Copyright (C) 2019 salesforce.com, inc.
|
|
@@ -3449,7 +3457,7 @@ const CustomElementRegistryBlockedProperties$LWS = ObjectFreeze$LWS(['define']);
|
|
|
3449
3457
|
const documentToSandboxAttributeDistortionRegistry$LWS = toSafeWeakMap$LWS$1(new WeakMapCtor$LWS());
|
|
3450
3458
|
const recordToAttributeDistortionFactories$LWS = toSafeMap$LWS(new MapCtor$LWS());
|
|
3451
3459
|
|
|
3452
|
-
function getAttributeDistortion$LWS(record$LWS, element$LWS,
|
|
3460
|
+
function getAttributeDistortion$LWS(record$LWS, element$LWS, attrName$LWS, attributeNamespace$LWS = NAMESPACE_DEFAULT$LWS) {
|
|
3453
3461
|
const {
|
|
3454
3462
|
document: document$LWS,
|
|
3455
3463
|
key: key$LWS
|
|
@@ -3466,7 +3474,7 @@ function getAttributeDistortion$LWS(record$LWS, element$LWS, attributeName$LWS,
|
|
|
3466
3474
|
return undefined;
|
|
3467
3475
|
}
|
|
3468
3476
|
|
|
3469
|
-
const elementCtorMapByAttributeNamespaceRegistry$LWS = attributeDistortionRegistry$LWS[ReflectApply$LWS(StringProtoToLowerCase$LWS,
|
|
3477
|
+
const elementCtorMapByAttributeNamespaceRegistry$LWS = attributeDistortionRegistry$LWS[ReflectApply$LWS(StringProtoToLowerCase$LWS, attrName$LWS, [])];
|
|
3470
3478
|
|
|
3471
3479
|
if (elementCtorMapByAttributeNamespaceRegistry$LWS === undefined) {
|
|
3472
3480
|
return undefined;
|
|
@@ -4930,11 +4938,6 @@ function distortionElementReplaceWith$LWS(record$LWS) {
|
|
|
4930
4938
|
return [originalReplaceWith$LWS, replaceWith$LWS];
|
|
4931
4939
|
}
|
|
4932
4940
|
|
|
4933
|
-
function normalizeAttrName$LWS(name$LWS) {
|
|
4934
|
-
const nameAsString$LWS = toString$LWS(name$LWS);
|
|
4935
|
-
return ReflectApply$LWS(StringProtoToLowerCase$LWS, nameAsString$LWS, []);
|
|
4936
|
-
}
|
|
4937
|
-
|
|
4938
4941
|
function distortionElementSetAttribute$LWS(record$LWS) {
|
|
4939
4942
|
const {
|
|
4940
4943
|
globalObject: {
|
|
@@ -4947,14 +4950,17 @@ function distortionElementSetAttribute$LWS(record$LWS) {
|
|
|
4947
4950
|
|
|
4948
4951
|
function setAttribute$LWS(...args$LWS) {
|
|
4949
4952
|
if (args$LWS.length > 1) {
|
|
4950
|
-
const attrName$LWS =
|
|
4953
|
+
const attrName$LWS = toString$LWS(args$LWS[0]);
|
|
4951
4954
|
const attrValue$LWS = toString$LWS(args$LWS[1]);
|
|
4952
4955
|
const distortion$LWS = getAttributeDistortion$LWS(record$LWS, this, attrName$LWS);
|
|
4953
4956
|
|
|
4954
4957
|
if (distortion$LWS) {
|
|
4955
4958
|
ReflectApply$LWS(distortion$LWS, this, [attrValue$LWS]);
|
|
4956
4959
|
return;
|
|
4957
|
-
}
|
|
4960
|
+
} // Cannot use the normalized attrNameDistortionKey because that value has been
|
|
4961
|
+
// lowercased, which may cause issues with case-sensitive attribute names
|
|
4962
|
+
// such as svg element's "viewBox"
|
|
4963
|
+
|
|
4958
4964
|
|
|
4959
4965
|
args$LWS[0] = attrName$LWS;
|
|
4960
4966
|
args$LWS[1] = attrValue$LWS;
|
|
@@ -5133,7 +5139,7 @@ function distortionElementSetAttributeNS$LWS(record$LWS) {
|
|
|
5133
5139
|
attrNamespace$LWS = toString$LWS(attrNamespace$LWS);
|
|
5134
5140
|
}
|
|
5135
5141
|
|
|
5136
|
-
const attrName$LWS =
|
|
5142
|
+
const attrName$LWS = toString$LWS(args$LWS[1]);
|
|
5137
5143
|
const attrValue$LWS = toString$LWS(args$LWS[2]);
|
|
5138
5144
|
const normalizedNamespace$LWS = normalizeNamespace$LWS(attrNamespace$LWS);
|
|
5139
5145
|
const distortion$LWS = getAttributeDistortion$LWS(record$LWS, this, attrName$LWS, normalizedNamespace$LWS); // istanbul ignore else: needs default platform behavior test
|
|
@@ -5148,7 +5154,10 @@ function distortionElementSetAttributeNS$LWS(record$LWS) {
|
|
|
5148
5154
|
{
|
|
5149
5155
|
// This is in a block to avoid requiring an "instanbul ignore next" for all for lines.
|
|
5150
5156
|
// We could avoid this entirely by testing the default platform behavior.
|
|
5151
|
-
args$LWS[0] = attrNamespace$LWS;
|
|
5157
|
+
args$LWS[0] = attrNamespace$LWS; // Cannot use the normalized attrNameDistortionKey because that value has been
|
|
5158
|
+
// lowercased, which may cause issues with case-sensitive attribute names
|
|
5159
|
+
// such as svg element's "viewBox"
|
|
5160
|
+
|
|
5152
5161
|
args$LWS[1] = attrName$LWS;
|
|
5153
5162
|
args$LWS[2] = attrValue$LWS;
|
|
5154
5163
|
ReflectApply$LWS(originalSetAttributeNS$LWS, this, args$LWS);
|
|
@@ -5190,7 +5199,7 @@ function distortionElementToggleAttribute$LWS(record$LWS) {
|
|
|
5190
5199
|
} = args$LWS; // istanbul ignore else: needs default platform behavior test
|
|
5191
5200
|
|
|
5192
5201
|
if (length$LWS > 0) {
|
|
5193
|
-
const attrName$LWS =
|
|
5202
|
+
const attrName$LWS = toString$LWS(args$LWS[0]);
|
|
5194
5203
|
const distortion$LWS = getAttributeDistortion$LWS(record$LWS, this, attrName$LWS); // istanbul ignore else: needs default platform behavior test
|
|
5195
5204
|
|
|
5196
5205
|
if (distortion$LWS) {
|
|
@@ -5200,7 +5209,10 @@ function distortionElementToggleAttribute$LWS(record$LWS) {
|
|
|
5200
5209
|
// the presence or absence of this attribute.
|
|
5201
5210
|
|
|
5202
5211
|
return ReflectApply$LWS(ElementProtoHasAttribute$LWS, this, [attrName$LWS]);
|
|
5203
|
-
} //
|
|
5212
|
+
} // Cannot use the normalized attrNameDistortionKey because that value has been
|
|
5213
|
+
// lowercased, which may cause issues with case-sensitive attribute names
|
|
5214
|
+
// such as svg element's "viewBox"
|
|
5215
|
+
// istanbul ignore next: needs default platform behavior test
|
|
5204
5216
|
|
|
5205
5217
|
|
|
5206
5218
|
args$LWS[0] = attrName$LWS;
|
|
@@ -6151,13 +6163,92 @@ function distortionNodeReplaceChild$LWS(record$LWS) {
|
|
|
6151
6163
|
return [originalReplaceChild$LWS, replaceChild$LWS];
|
|
6152
6164
|
}
|
|
6153
6165
|
|
|
6154
|
-
|
|
6166
|
+
const EVALUATOR_PROPERTY_NAME$LWS = '$evaluator$';
|
|
6167
|
+
const RAW_VALUE_PROPERTY_NAME$LWS = '$$raw$$';
|
|
6168
|
+
const SANDBOXED_PROPERTY_NAME$LWS = '$$sandboxed$$';
|
|
6169
|
+
|
|
6170
|
+
const inlineEvaluatorCall$LWS = () => `document.currentScript['${EVALUATOR_PROPERTY_NAME$LWS}']();`;
|
|
6171
|
+
/**
|
|
6172
|
+
*
|
|
6173
|
+
* @param host: Host element for the evaluator
|
|
6174
|
+
* @param src: Raw code to be evaluated
|
|
6175
|
+
* @param evaluator: No argument function to be returned to the caller.
|
|
6176
|
+
* @returns boolean: False if the getter has been accessed previously. True if only redefined
|
|
6177
|
+
*/
|
|
6178
|
+
|
|
6179
|
+
|
|
6180
|
+
function setEvaluatorFn$LWS(host$LWS, src$LWS, evaluator$LWS) {
|
|
6181
|
+
if (ReflectHas$LWS(host$LWS, SANDBOXED_PROPERTY_NAME$LWS)) {
|
|
6182
|
+
return false;
|
|
6183
|
+
}
|
|
6184
|
+
|
|
6185
|
+
ReflectDefineProperty$LWS(host$LWS, RAW_VALUE_PROPERTY_NAME$LWS, {
|
|
6186
|
+
__proto__: null,
|
|
6187
|
+
configurable: true,
|
|
6188
|
+
value: src$LWS
|
|
6189
|
+
});
|
|
6190
|
+
ReflectDefineProperty$LWS(host$LWS, EVALUATOR_PROPERTY_NAME$LWS, {
|
|
6191
|
+
__proto__: null,
|
|
6192
|
+
configurable: true,
|
|
6193
|
+
// Create a bound function to obscure the getter
|
|
6194
|
+
// source as "[native code]".
|
|
6195
|
+
get: ReflectApply$LWS(FunctionProtoBind$LWS, () => {
|
|
6196
|
+
ReflectDeleteProperty$LWS(host$LWS, EVALUATOR_PROPERTY_NAME$LWS);
|
|
6197
|
+
ReflectDefineProperty$LWS(host$LWS, SANDBOXED_PROPERTY_NAME$LWS, {
|
|
6198
|
+
__proto__: null
|
|
6199
|
+
});
|
|
6200
|
+
const ownerDoc$LWS = ReflectApply$LWS(NodeProtoOwnerDocumentGetter$LWS, host$LWS, []);
|
|
6201
|
+
const globalObject$LWS = ReflectApply$LWS(DocumentProtoDefaultViewGetter$LWS, ownerDoc$LWS, []);
|
|
6202
|
+
return () => evaluator$LWS(globalObject$LWS);
|
|
6203
|
+
}, [host$LWS])
|
|
6204
|
+
});
|
|
6205
|
+
return true;
|
|
6206
|
+
}
|
|
6207
|
+
|
|
6208
|
+
function rawValue$LWS(host$LWS) {
|
|
6209
|
+
// @ts-ignore
|
|
6210
|
+
return host$LWS[RAW_VALUE_PROPERTY_NAME$LWS];
|
|
6211
|
+
}
|
|
6212
|
+
|
|
6213
|
+
function distortionNodeTextContentGetter$LWS(record$LWS) {
|
|
6155
6214
|
const {
|
|
6156
|
-
globalObject:
|
|
6157
|
-
|
|
6158
|
-
|
|
6215
|
+
globalObject: globalObject$LWS
|
|
6216
|
+
} = record$LWS;
|
|
6217
|
+
const {
|
|
6218
|
+
Node: Node$LWS
|
|
6219
|
+
} = globalObject$LWS;
|
|
6220
|
+
const originalTextContentGetter$LWS = ObjectLookupOwnGetter$LWS(Node$LWS.prototype, 'textContent');
|
|
6221
|
+
const {
|
|
6222
|
+
HTMLScriptElement: HTMLScriptElement$LWS,
|
|
6223
|
+
SVGScriptElement: SVGScriptElement$LWS
|
|
6224
|
+
} = globalObject$LWS;
|
|
6225
|
+
|
|
6226
|
+
function textContent$LWS() {
|
|
6227
|
+
if (this instanceof HTMLScriptElement$LWS || this instanceof SVGScriptElement$LWS) {
|
|
6228
|
+
const rawSource$LWS = rawValue$LWS(this);
|
|
6229
|
+
|
|
6230
|
+
if (rawSource$LWS !== undefined) {
|
|
6231
|
+
return rawSource$LWS;
|
|
6232
|
+
}
|
|
6159
6233
|
}
|
|
6234
|
+
|
|
6235
|
+
return ReflectApply$LWS(originalTextContentGetter$LWS, this, []);
|
|
6236
|
+
}
|
|
6237
|
+
|
|
6238
|
+
return [originalTextContentGetter$LWS, textContent$LWS];
|
|
6239
|
+
}
|
|
6240
|
+
|
|
6241
|
+
function distortionNodeTextContentSetter$LWS(record$LWS) {
|
|
6242
|
+
const {
|
|
6243
|
+
globalObject: globalObject$LWS,
|
|
6244
|
+
sandboxEvaluator: sandboxEvaluator$LWS
|
|
6160
6245
|
} = record$LWS;
|
|
6246
|
+
const {
|
|
6247
|
+
Attr: Attr$LWS,
|
|
6248
|
+
Node: Node$LWS,
|
|
6249
|
+
HTMLScriptElement: HTMLScriptElement$LWS,
|
|
6250
|
+
SVGScriptElement: SVGScriptElement$LWS
|
|
6251
|
+
} = globalObject$LWS;
|
|
6161
6252
|
const originalTextContentSetter$LWS = ObjectLookupOwnSetter$LWS(Node$LWS.prototype, 'textContent'); // IMPORTANT! This validator MUST use the "window" global object, and not the provided
|
|
6162
6253
|
// "globalObject" because future magenta objects (arbitrary user-code created global objects)
|
|
6163
6254
|
// must be allowed to interact with their OWN <html>, <head> and <body> (within the iframe
|
|
@@ -6194,6 +6285,18 @@ function distortionNodeTextContentSetter$LWS(record$LWS) {
|
|
|
6194
6285
|
if (distortion$LWS) {
|
|
6195
6286
|
return ReflectApply$LWS(distortion$LWS, ownerEl$LWS, [valueAsString$LWS]);
|
|
6196
6287
|
}
|
|
6288
|
+
}
|
|
6289
|
+
|
|
6290
|
+
if (this instanceof HTMLScriptElement$LWS || this instanceof SVGScriptElement$LWS) {
|
|
6291
|
+
const didAttach$LWS = setEvaluatorFn$LWS(this, valueAsString$LWS, globalObject$LWS => {
|
|
6292
|
+
sandboxEvaluator$LWS(valueAsString$LWS, globalObject$LWS);
|
|
6293
|
+
ReflectApply$LWS(originalTextContentSetter$LWS, this, [valueAsString$LWS]);
|
|
6294
|
+
});
|
|
6295
|
+
|
|
6296
|
+
if (didAttach$LWS) {
|
|
6297
|
+
const overrideContent$LWS = inlineEvaluatorCall$LWS();
|
|
6298
|
+
return ReflectApply$LWS(originalTextContentSetter$LWS, this, [overrideContent$LWS]);
|
|
6299
|
+
}
|
|
6197
6300
|
} // istanbul ignore else: needs default platform behavior test
|
|
6198
6301
|
|
|
6199
6302
|
|
|
@@ -7875,7 +7978,7 @@ distortionElementSetAttribute$LWS, distortionElementSetAttributeNode$LWS, distor
|
|
|
7875
7978
|
distortionEventTargetAddEventListener$LWS, // HTMLScriptElement,
|
|
7876
7979
|
distortionHTMLScriptElementSrcSetter$LWS, // NamedNodeMap
|
|
7877
7980
|
distortionNamedNodeMapSetNamedItem$LWS, distortionNamedNodeMapSetNamedItemNS$LWS, // Node
|
|
7878
|
-
distortionNodeValueSetter$LWS, distortionNodeTextContentSetter$LWS, // Storage
|
|
7981
|
+
distortionNodeValueSetter$LWS, distortionNodeTextContentGetter$LWS, distortionNodeTextContentSetter$LWS, // Storage
|
|
7879
7982
|
distortionLocalStorage$LWS, distortionSessionStorage$LWS, // SVGAnimationElement
|
|
7880
7983
|
distortionSVGAnimateElementAttributeNameAttribute$LWS, // SVGScriptElement
|
|
7881
7984
|
distortionSVGScriptElementHrefAttribute$LWS, // SVGSetElement
|
|
@@ -7889,6 +7992,8 @@ distortionNodeInsertBefore$LWS]));
|
|
|
7889
7992
|
const externalKeyedDistortionFactories$LWS = internalKeyedDistortionFactories$LWS;
|
|
7890
7993
|
const evaluationDistortionFactories$LWS = ObjectFreeze$LWS([// eval
|
|
7891
7994
|
distortionEval$LWS]);
|
|
7995
|
+
const opaqueDistortionFactories$LWS = ObjectFreeze$LWS([// Window
|
|
7996
|
+
distortionWindowPostMessage$LWS]);
|
|
7892
7997
|
const DocumentBlockedProperties$LWS = ObjectFreeze$LWS(['createProcessingInstruction', 'exitFullscreen', 'fullscreen', 'fullscreenElement', 'fullscreenEnabled', 'mozCancelFullScreen', 'mozFullScreen', 'mozFullScreenElement', 'mozFullScreenEnabled', 'onfullscreenchange', 'onfullscreenerror', 'onmozfullscreenchange', 'onmozfullscreenerror', 'onrejectionhandled', 'onsecuritypolicyviolation', 'onunhandledrejection', 'releaseCapture', 'releaseEvents', 'webkitFullScreenKeyboardInputAllowed', 'write', 'writeln']);
|
|
7893
7998
|
const ElementBlockedProperties$LWS = ObjectFreeze$LWS(['mozRequestFullScreen', 'onfullscreenchange', 'onfullscreenerror', 'requestFullscreen', 'webkitRequestFullScreen', 'webkitRequestFullscreen']);
|
|
7894
7999
|
const HTMLElementBlockedAttributes$LWS = ObjectFreeze$LWS(['nonce']);
|
|
@@ -7903,7 +8008,7 @@ const HTMLScriptElementBlockedProperties$LWS = ObjectFreeze$LWS(['nonce']);
|
|
|
7903
8008
|
const SVGElementBlockedAttributes$LWS = ObjectFreeze$LWS(['nonce']);
|
|
7904
8009
|
const SVGElementBlockedProperties$LWS = ObjectFreeze$LWS(['nonce']);
|
|
7905
8010
|
const XSLTProcessorBlockedProperties$LWS = ObjectFreeze$LWS(['transformToDocument', 'transformToFragment']);
|
|
7906
|
-
/*! version: 0.16.
|
|
8011
|
+
/*! version: 0.16.27 */
|
|
7907
8012
|
|
|
7908
8013
|
/*!
|
|
7909
8014
|
* Copyright (C) 2021 salesforce.com, inc.
|
|
@@ -8006,11 +8111,11 @@ class DefaultInstrumentation$LWS {
|
|
|
8006
8111
|
|
|
8007
8112
|
|
|
8008
8113
|
const defaultInstrumentation$LWS = new DefaultInstrumentation$LWS();
|
|
8009
|
-
/*! version: 0.16.
|
|
8114
|
+
/*! version: 0.16.27 */
|
|
8010
8115
|
|
|
8011
|
-
const
|
|
8116
|
+
const Ot=SymbolFor$LWS("@@lockerDebugMode");if(LOCKER_UNMINIFIED_FLAG$LWS){let t=!0;const O=100,_=5,E=100,x=E/2,A="display: inline-block; margin-bottom: 3px; margin-left: -3px; word-break: break-all; word-wrap: wrap;",B={style:"margin-left:11px; margin-bottom: 3px;"},F={style:"display: inline-block; margin-left:12px; word-break: break-all; word-wrap: wrap;"},M={style:"color: #9d288c; font-weight: bold"},j={style:"color: #b17ab0"},H={style:"color: #16239f"},k={style:"color: #236d25"},R={style:"color: #606367"},I={style:"color: #b82619"},formatValue$LWS=function(t){if(null==t)return ["span",R,`${t}`];if("boolean"==typeof t)return ["span",H,t];if("number"==typeof t)return NumberIsFinite$LWS(t)?["span",H,t]:["span",H,(t>=0?"":"-")+"Infinity"];if("string"==typeof t){let e=t;const{length:o}=e;if(o>E){const t=ReflectApply$LWS(StringProtoSlice$LWS,e,[0,x]),r=ReflectApply$LWS(StringProtoSlice$LWS,e,[o-x-1,o]);e=t+CHAR_ELLIPSIS$LWS+r;}return ["span",I,JSONStringify$LWS(e)]}return ArrayIsArray$LWS(t)?["span",{},`Array(${t.length})`]:isObject$LWS(t)?["span",{},`{${CHAR_ELLIPSIS$LWS}}`]:["span",I,StringCtor$LWS(t)]},formatHeader$LWS=function(t,o={}){const{t:r}=o,i=[];let b=0;r&&(i[b++]=["span",M,o.o],i[b++]=["span",{},": "]);const T=ReflectApply$LWS(ObjectProtoToString$LWS,t,[]);let P=ObjectKeys$LWS(t);if(T===TO_STRING_BRAND_SYMBOL$LWS)ReflectApply$LWS(ArrayProtoIncludes$LWS,P,["description"])||ReflectApply$LWS(ArrayProtoUnshift$LWS,P,["description"]);else if(T===TO_STRING_BRAND_STRING$LWS){const{length:e}=t;P=ReflectApply$LWS(ArrayProtoFilter$LWS,P,[t=>{const o="string"==typeof t?+t:-1;return o<0||o>=e||!NumberIsInteger$LWS(o)}]);}const{length:w}=P;if(ArrayIsArray$LWS(t)){i[b++]=["span",r?R:{},`(${t.length}) [`];for(let e=0,o=MathMin$LWS(w,O);e<o;e+=1){const o=t[P[e]];i[b++]=["span",{},e?", ":""],i[b++]=formatValue$LWS(o);}return w>O&&(i[b++]=["span",null,["span",{},`, ${CHAR_ELLIPSIS$LWS}`]]),i[b++]=["span",{},"]"],i}let m,E="{";switch(T){case TO_STRING_BRAND_BIG_INT$LWS:case TO_STRING_BRAND_BOOLEAN$LWS:case TO_STRING_BRAND_NUMBER$LWS:case TO_STRING_BRAND_STRING$LWS:case TO_STRING_BRAND_SYMBOL$LWS:{let e=H;T===TO_STRING_BRAND_BIG_INT$LWS?e=k:T===TO_STRING_BRAND_SYMBOL$LWS&&(e=I),E=`${ReflectApply$LWS(StringProtoSlice$LWS,T,[8,-1])} {`,m=["span",e,`${StringCtor$LWS(getNearMembraneSerializedValue$LWS(t))}`];break}}i[b++]=["span",{},E],m&&(i[b++]=m,w&&(i[b++]=["span",{},", "]));for(let e=0,o=MathMin$LWS(w,_);e<o;e+=1){const o=P[e],r=t[o];i[b++]=["span",{},e?", ":""],i[b++]=["span",R,o],i[b++]=["span",{},": "],i[b++]=formatValue$LWS(r);}return w>_&&(i[b++]=["span",null,["span",{},`, ${CHAR_ELLIPSIS$LWS}`]]),i[b++]=["span",{},"}"],i},formatBody$LWS=function(t){const o=ObjectKeys$LWS(t),r=ReflectOwnKeys$LWS(t);ArrayIsArray$LWS(t)||ReflectApply$LWS(ArrayProtoSort$LWS,r,[]);const i=[];let a=0;for(let e=0,{length:s}=r;e<s;e+=1){const s=r[e],l=t[s];if(isObject$LWS(l))i[a++]=["div",{},["object",{object:l,config:{o:StringCtor$LWS(s),t:!0}}]];else {let t=M;"symbol"!=typeof s&&ReflectApply$LWS(ArrayProtoIncludes$LWS,o,[s])||(t=j),i[a++]=["div",B,["span",t,StringCtor$LWS(s)],["span",{},": "],formatValue$LWS(l)];}}return i};let{devtoolsFormatters:C}=window;ArrayIsArray$LWS(C)||(C=[],ReflectDefineProperty$LWS(window,"devtoolsFormatters",{__proto__:null,configurable:!0,value:C,writable:!0})),C[C.length]={header(e,a={}){if(t&&(t=!1,ReflectDefineProperty$LWS(window,Ot,{__proto__:null,configurable:!0,value:!0,writable:!0})),!isNearMembrane$LWS(e))return null;const s=["div",{style:`${A}${a.t?"":"font-style: italic;"}`}];return ReflectApply$LWS(ArrayProtoPush$LWS,s,formatHeader$LWS(e,a)),["div",{},s]},hasBody:()=>!0,body(t){const e=["div",F];return ReflectApply$LWS(ArrayProtoPush$LWS,e,formatBody$LWS(t)),e}};}const _t=Array,Et=WeakMap,{setPrototypeOf:xt}=Reflect,{iterator:At,toStringTag:Bt,unscopables:Ft}=Symbol,{prototype:Mt}=_t,{at:jt,concat:Ht,copyWithin:kt,entries:Rt,every:It,fill:Ct,filter:Dt,find:Nt,findIndex:Gt,flat:Kt,flatMap:Ut,forEach:Vt,includes:zt,indexOf:Xt,join:qt,keys:Qt,lastIndexOf:Zt,map:Jt,pop:Yt,push:te,reduce:ee,reduceRight:oe,reverse:re,shift:ne,slice:ie,some:ae,sort:se,splice:le,toLocaleString:ce,toString:ue,unshift:fe,values:de,[At]:ye}=Mt,pe=Object.freeze(Object.assign({__proto__:null},Mt[Ft])),{prototype:Se}=Et,{delete:he,get:Le,has:ge,set:$e,[Bt]:ve}=Se;function toSafeWeakMap$LWS(t){return xt(t,null),t.delete=he,t.get=Le,t.has=ge,t.set=$e,t[Bt]=ve,xt(t,Se),t}const We=toSafeWeakMap$LWS(new WeakMap);function createMembraneMarshall$LWS(t){var e,o,r;const n=Array,i=ArrayBuffer,a=Error,s=Number,l=Object,c=Proxy,u=Reflect,f=RegExp,d=String,y=Symbol,p=TypeError,S=WeakMap,{for:h,toStringTag:L}=y,{apply:g,construct:$,defineProperty:v,deleteProperty:W,get:b,getOwnPropertyDescriptor:T,getPrototypeOf:P,has:w,isExtensible:m,ownKeys:O,preventExtensions:_,set:E,setPrototypeOf:x}=u,{assign:A,defineProperties:B,freeze:F,getOwnPropertyDescriptor:M,getOwnPropertyDescriptors:j,isFrozen:H,isSealed:k,keys:R,prototype:I,seal:C}=l,{hasOwnProperty:D,propertyIsEnumerable:N,toString:G}=I,{hasOwn:K}=l,{__defineGetter__:U,__defineSetter__:V,__lookupGetter__:z,__lookupSetter__:X}=I,q="function"==typeof K?K:(t,e)=>g(D,t,[e]),Q="object"!=typeof t||null===t,Z=Q?void 0:h("@@lockerDebugMode"),J=Q?void 0:h("@@lockerLiveValue"),Y=Q?void 0:h("@@lockerNearMembraneSerializedValue"),tt=Q?void 0:h("@@lockerNearMembrane"),et=h("@@lockerNearMembraneUndefinedValue"),LOCKER_UNMINIFIED_FLAG$LWS=`${()=>
|
|
8012
8117
|
/* $LWS */
|
|
8013
|
-
1}`.includes("*"),ot=LOCKER_UNMINIFIED_FLAG$LWS&&!Z,rt="function"==typeof BigInt,nt=Z?/\w*$/:void 0,{isArray:it}=n,{includes:at,indexOf:st,slice:lt}=n.prototype,{isView:ct}=i,ut=Z?void 0:g(z,i.prototype,["byteLength"]),ft=rt?BigInt.prototype.valueOf:void 0,{valueOf:dt}=Boolean.prototype,{toString:yt}=a.prototype,{bind:pt,toString:St}=Function.prototype,{stringify:ht}=JSON,{isInteger:Lt}=s,{valueOf:gt}=s.prototype,{revocable:$t}=c,{prototype:Wt}=f,{exec:vt,test:bt,toString:Tt}=Wt,Pt=Z?null!=(e=g(z,Wt,["flags"]))?e:function(){const t=g(Tt,this,[]);return g(vt,nt,[t])[0]}:void 0,wt=g(z,Wt,["source"]),{replace:mt,slice:Ot,valueOf:_t}=d.prototype,{toString:Et,valueOf:xt}=y.prototype,At=g(z,Uint8Array.prototype.__proto__,["length"]),{prototype:Bt}=S,{delete:Mt,has:Ft,set:jt,[L]:Ht}=Bt,kt=Z||"object"!=typeof console||null===console?void 0:console,Rt=null==kt?void 0:kt.info,It=Z?eval:void 0,Ct=null!=(o=null!=(r=null!=t?t:"undefined"!=typeof globalThis?globalThis:void 0)?r:"undefined"!=typeof self?self:void 0)?o:(W(I,"globalThis",{__proto__:null,configurable:!0,get(){return v(I,"globalThis"),null!=this?this:self}}),globalThis);let Nt=!1,Dt=!1;function alwaysFalse$LWS(){return !1}function identity$LWS(t){return t}const Gt=LOCKER_UNMINIFIED_FLAG$LWS?()=>{if(Nt)return;Nt=!0;const t=(()=>{try{var t;a.prepareStackTrace=(t,e)=>e;const e=(new a).stack;return v(a,"prepareStackTrace"),it(e)&&e.length>0?null==(t=e[0])?void 0:t.constructor:void 0}catch(t){}})();if("function"!=typeof t)return;const{getEvalOrigin:e,getFunctionName:o,toString:r}=t.prototype,n=new f(`${g(mt,"$LWS",[/[\\^$.*+?()[\]{}|]/g,"\\$&"])}(?=\\.|$)`);try{a.prepareStackTrace=function(t,i){return function(t,i){let a="";try{a=g(yt,t,[]);}catch(t){a="<error>";}let s=!1;for(let t=0,{length:l}=i;t<l;t+=1){const l=i[t],c=g(o,l,[]);let u=!1;if("string"==typeof c&&"eval"!==c&&g(bt,n,[c])&&(u=!0),!u){const t=g(e,l,[]);"string"==typeof t&&g(bt,n,[t])&&(u=!0);}if(u)s||(s=!0,a+="\n at LWS");else {s=!1;try{a+=`\n at ${g(r,l,[])}`;}catch(t){}}}return a}(t,i)};}catch(t){}try{const{stackTraceLimit:t}=a;("number"!=typeof t||t<20)&&(a.stackTraceLimit=20);}catch(t){}}:noop$LWS;function noop$LWS(){}const Kt=Z?t=>g(ft,t,[]):noop$LWS,Ut=Z?t=>g(dt,t,[]):noop$LWS,Vt=Z?t=>g(gt,t,[]):noop$LWS,zt=Z?t=>{if(t!==Wt){const e=g(wt,t,[]);return ht({__proto__:null,flags:g(Pt,t,[]),source:e})}}:noop$LWS,Xt=Z?t=>g(_t,t,[]):noop$LWS,Qt=Z?t=>g(xt,t,[]):noop$LWS,Zt=Z?t=>{switch(g(G,t,[])){case"[object Boolean]":return Ut(t);case"[object Number]":return Vt(t);case"[object RegExp]":return zt(t);case"[object String]":return Xt(t);case"[object Object]":try{return Qt(t)}catch(t){}if(rt)try{return Kt(t)}catch(t){}default:return}}:noop$LWS,Jt=Z?t=>{try{return Qt(t)}catch(t){}if(rt)try{return Kt(t)}catch(t){}try{return Ut(t)}catch(t){}try{return Vt(t)}catch(t){}try{return zt(t)}catch(t){}try{return Xt(t)}catch(t){}}:noop$LWS;function toSafeWeakMap$LWS(t){return x(t,null),t.constructor=S,t.delete=Mt,t.has=Ft,t.set=jt,t[L]=Ht,x(t,Bt),t}return function(t,e,o){const{distortionCallback:r=identity$LWS,instrumentation:i}=A({__proto__:null},o),a=!Z&&"object"==typeof i&&null!==i,s={__proto__:null,0:void 0,1:void 0,2:void 0,3:void 0,4:void 0,n:void 0},f={__proto__:null,0:void 0,1:void 0,2:void 0,3:void 0,4:void 0,n:void 0},y=toSafeWeakMap$LWS(new S),h=toSafeWeakMap$LWS(new S),N=a?i.startActivity:void 0;let K,rt,nt,ft,dt,yt,ht,gt,vt,bt,Tt,Pt,mt,_t,xt,Bt,Mt,Ft,jt,Ht,Nt,Kt,Ut,Vt,zt,Xt,Qt,Yt,qt,te=!1,ee=0;const oe=Z?(t,e,o)=>{o[e]=!1;const r=getTransferablePointer$LWS(t);let n;try{gt(r,e,(t,e,o,r,i,a,s)=>{n=createDescriptorFromMeta$LWS(e,o,r,i,a,s);});}catch(t){var i;const e=null!=(i=qt)?i:t;throw qt=void 0,e}n?W(t,e,n):v(t,e);}:noop$LWS;let re=ot?()=>{try{Q(Ct,J)&&(re=()=>!0,Gt(),Nt());}catch(t){re=alwaysFalse$LWS;}return !1}:alwaysFalse$LWS;function copyForeignOwnPropertyDescriptorsAndPrototypeToShadowTarget$LWS(t,e){let o,r,n;a&&(o=N("copyForeignOwnPropertyDescriptorsAndPrototypeToShadowTarget"));try{r=Xt(t,(...t)=>{const o={};for(let e=0,{length:r}=t;e<r;e+=7){o[t[e]]=createDescriptorFromMeta$LWS(t[e+1],t[e+2],t[e+3],t[e+4],t[e+5],t[e+6]);}B(e,o);});}catch(t){var i;const e=null!=(i=qt)?i:t;throw qt=void 0,a&&o.error(e),e}"function"==typeof r?(r(),n=qt,qt=void 0):n=null,x(e,n),a&&o.stop();}function createApplyOrConstructTrapForZeroOrMoreArgs$LWS(t){const e=1&t,o=`Reflect.${e?"apply":"construct"}()`,r=e?s:f,n=e?nt:ft;return function(i,s,l){ee=t;const c=e?l:s,{length:u}=c;var f;if(0!==u)return this[null!=(f=r[u])?f:r.n](i,s,l);let d;a&&(d=N(o));const{i:y}=this,p=e?s:l;let S,h;try{S=n(y,"object"==typeof p&&null!==p||"function"==typeof p?getTransferablePointer$LWS(p):"undefined"==typeof p?void 0:p);}catch(t){var L;const e=null!=(L=qt)?L:t;throw qt=void 0,a&&d.error(e),e}return "function"==typeof S?(S(),h=qt,qt=void 0):h=S,a&&d.stop(),h}}function createApplyOrConstructTrapForOneOrMoreArgs$LWS(t){const e=1&t,o=`Reflect.${e?"apply":"construct"}(1)`,r=e?s:f,n=e?nt:ft;return function(i,s,l){ee=t;const c=e?l:s,{length:u}=c;var f;if(1!==u)return this[null!=(f=r[u])?f:r.n](i,s,l);let d;a&&(d=N(o));const{i:y}=this,p=e?s:l;let S,h;try{const{0:t}=c;S=n(y,"object"==typeof p&&null!==p||"function"==typeof p?getTransferablePointer$LWS(p):"undefined"==typeof p?void 0:p,"object"==typeof t&&null!==t||"function"==typeof t?getTransferablePointer$LWS(t):"undefined"==typeof t?void 0:t);}catch(t){var L;const e=null!=(L=qt)?L:t;throw qt=void 0,a&&d.error(e),e}return "function"==typeof S?(S(),h=qt,qt=void 0):h=S,a&&d.stop(),h}}function createApplyOrConstructTrapForTwoOrMoreArgs$LWS(t){const e=1&t,o=`Reflect.${e?"apply":"construct"}(2)`,r=e?s:f,n=e?nt:ft;return function(i,s,l){ee=t;const c=e?l:s,{length:u}=c;var f;if(2!==u)return this[null!=(f=r[u])?f:r.n](i,s,l);let d;a&&(d=N(o));const{i:y}=this,p=e?s:l;let S,h;try{const{0:t,1:e}=c;S=n(y,"object"==typeof p&&null!==p||"function"==typeof p?getTransferablePointer$LWS(p):"undefined"==typeof p?void 0:p,"object"==typeof t&&null!==t||"function"==typeof t?getTransferablePointer$LWS(t):"undefined"==typeof t?void 0:t,"object"==typeof e&&null!==e||"function"==typeof e?getTransferablePointer$LWS(e):"undefined"==typeof e?void 0:e);}catch(t){var L;const e=null!=(L=qt)?L:t;throw qt=void 0,a&&d.error(e),e}return "function"==typeof S?(S(),h=qt,qt=void 0):h=S,a&&d.stop(),h}}function createApplyOrConstructTrapForThreeOrMoreArgs$LWS(t){const e=1&t,o=`Reflect.${e?"apply":"construct"}(3)`,r=e?s:f,n=e?nt:ft;return function(i,s,l){ee=t;const c=e?l:s,{length:u}=c;var f;if(3!==u)return this[null!=(f=r[u])?f:r.n](i,s,l);let d;a&&(d=N(o));const{i:y}=this,p=e?s:l;let S,h;try{const{0:t,1:e,2:o}=c;S=n(y,"object"==typeof p&&null!==p||"function"==typeof p?getTransferablePointer$LWS(p):"undefined"==typeof p?void 0:p,"object"==typeof t&&null!==t||"function"==typeof t?getTransferablePointer$LWS(t):"undefined"==typeof t?void 0:t,"object"==typeof e&&null!==e||"function"==typeof e?getTransferablePointer$LWS(e):"undefined"==typeof e?void 0:e,"object"==typeof o&&null!==o||"function"==typeof o?getTransferablePointer$LWS(o):"undefined"==typeof o?void 0:o);}catch(t){var L;const e=null!=(L=qt)?L:t;throw qt=void 0,a&&d.error(e),e}return "function"==typeof S?(S(),h=qt,qt=void 0):h=S,a&&d.stop(),h}}function createApplyOrConstructTrapForFourOrMoreArgs$LWS(t){const e=1&t,o=`Reflect.${e?"apply":"construct"}(4)`,r=e?s:f,n=e?nt:ft;return function(i,s,l){ee=t;const c=e?l:s,{length:u}=c;var f;if(4!==u)return this[null!=(f=r[u])?f:r.n](i,s,l);let d;a&&(d=N(o));const{i:y}=this,p=e?s:l;let S,h;try{const{0:t,1:e,2:o,3:r}=c;S=n(y,"object"==typeof p&&null!==p||"function"==typeof p?getTransferablePointer$LWS(p):"undefined"==typeof p?void 0:p,"object"==typeof t&&null!==t||"function"==typeof t?getTransferablePointer$LWS(t):"undefined"==typeof t?void 0:t,"object"==typeof e&&null!==e||"function"==typeof e?getTransferablePointer$LWS(e):"undefined"==typeof e?void 0:e,"object"==typeof o&&null!==o||"function"==typeof o?getTransferablePointer$LWS(o):"undefined"==typeof o?void 0:o,"object"==typeof r&&null!==r||"function"==typeof r?getTransferablePointer$LWS(r):"undefined"==typeof r?void 0:r);}catch(t){var L;const e=null!=(L=qt)?L:t;throw qt=void 0,a&&d.error(e),e}return "function"==typeof S?(S(),h=qt,qt=void 0):h=S,a&&d.stop(),h}}function createApplyOrConstructTrapForFiveOrMoreArgs$LWS(t){const e=1&t,o=`Reflect.${e?"apply":"construct"}(5)`,r=e?s:f,n=e?nt:ft;return function(i,s,l){ee=t;const c=e?l:s,{length:u}=c;var f;if(5!==u)return this[null!=(f=r[u])?f:r.n](i,s,l);let d;a&&(d=N(o));const{i:y}=this,p=e?s:l;let S,h;try{const{0:t,1:e,2:o,3:r,4:i}=c;S=n(y,"object"==typeof p&&null!==p||"function"==typeof p?getTransferablePointer$LWS(p):"undefined"==typeof p?void 0:p,"object"==typeof t&&null!==t||"function"==typeof t?getTransferablePointer$LWS(t):"undefined"==typeof t?void 0:t,"object"==typeof e&&null!==e||"function"==typeof e?getTransferablePointer$LWS(e):"undefined"==typeof e?void 0:e,"object"==typeof o&&null!==o||"function"==typeof o?getTransferablePointer$LWS(o):"undefined"==typeof o?void 0:o,"object"==typeof r&&null!==r||"function"==typeof r?getTransferablePointer$LWS(r):"undefined"==typeof r?void 0:r,"object"==typeof i&&null!==i||"function"==typeof i?getTransferablePointer$LWS(i):"undefined"==typeof i?void 0:i);}catch(t){var L;const e=null!=(L=qt)?L:t;throw qt=void 0,a&&d.error(e),e}return "function"==typeof S?(S(),h=qt,qt=void 0):h=S,a&&d.stop(),h}}function createApplyOrConstructTrapForAnyNumberOfArgs$LWS(t){const e=1&t,o=e?"apply":"construct",r=e?nt:ft;return function(i,s,l){ee=t;const{i:c}=this,u=e?l:s,{length:f}=u;let d;a&&(d=N(`Reflect.${o}(${f})`));const y=e?s:l;let p=2;const S=new n(f+p);let h,L;S[0]=c;try{S[1]="object"==typeof y&&null!==y||"function"==typeof y?getTransferablePointer$LWS(y):"undefined"==typeof y?void 0:y;for(let t=0;t<f;t+=1){const e=u[t];S[p++]="object"==typeof e&&null!==e||"function"==typeof e?getTransferablePointer$LWS(e):"undefined"==typeof e?void 0:e;}h=g(r,void 0,S);}catch(t){var $;const e=null!=($=qt)?$:t;throw qt=void 0,a&&d.error(e),e}return "function"==typeof h?(h(),L=qt,qt=void 0):L=h,a&&d.stop(),L}}function createDescriptorFromMeta$LWS(t,e,o,r,n,i){const a={__proto__:null};return t!==et&&(a.configurable=t),e!==et&&(a.enumerable=e),o!==et&&(a.writable=o),n!==et&&("function"==typeof n?(n(),a.get=qt,qt=void 0):a.get=void 0),i!==et&&("function"==typeof i?(i(),a.set=qt,qt=void 0):a.set=void 0),r!==et&&("function"==typeof r?(r(),a.value=qt,qt=void 0):a.value=r),a}function createPointer$LWS(t){return ()=>{qt=t;}}const ne=Z?t=>{let e=y.get(t);if(void 0===e){const o=Mt(getTransferablePointer$LWS(t));"function"==typeof o&&(o(),e=qt,qt=void 0,e&&y.set(t,e));}return e}:noop$LWS;function getTransferablePointer$LWS(t,e=rt){let o=h.get(t);if(o)return o;const n=Z?t:r(t);if(n!==t&&typeof n!=typeof t)throw new p(`Invalid distortion ${function(t){if("string"==typeof t)return t;try{if("object"==typeof t&&null!==t){const e=g(G,t,[]);return "[object Symbol]"===e?g(Et,t,[]):e}return "function"==typeof t?g(St,t,[]):d(t)}catch(t){}return "[Object Unknown]"}(t)}.`);let i=!0,a=0,s=0,l=16;if("function"==typeof n){i=!1,a=0,l=4;try{"prototype"in n||(l|=8);const e=T(t,"length");if(e){x(e,null);const{value:t}=e;"number"==typeof t&&(a=t);}void 0;}catch(t){i=!0;}}else if(ct(n)){i=!1,l=2;try{s=g(At,n,[]),l|=32;}catch(t){i=!0;}}if(i)try{it(n)&&(l=1);}catch(t){l=64;}return o=e(createPointer$LWS(n),l,a,"",s),h.set(t,o),o}const ie=Z?t=>{if(Dt)return;Dt=!0;const e=it(t)&&t.length>0,o=e?{__proto__:null}:void 0,r=e?(e,o)=>g(at,t,[o])?{configurable:!1,enumerable:g(D,e,[o]),get:n(o),set:void 0}:T(e,o):void 0,n=e?t=>{let e=o[t];return void 0===e&&(e=g(pt,s,[]),o[t]=e),e}:void 0,i=e?(e,o)=>g(at,t,[o])?n(o):g(z,e,[o]):void 0,a=e?(e,o)=>g(at,t,[o])?void 0:g(X,e,[o]):void 0,s=e?()=>Ct:void 0,wrapDefineAccessOrProperty$LWS=t=>{const{length:e}=t,o=2===e;return new c(t,{apply(r,n,i){if(i.length>=e){const t=o?n:i[0];if("object"==typeof t&&null!==t||"function"==typeof t){const e=o?i[0]:i[1],r=ne(t);null!=r&&r[e]&&t[e];}}return g(t,n,i)}})},wrapLookupAccessor$LWS=(t,o)=>new c(t,{apply(r,n,i){if(i.length&&("object"==typeof n&&null!==n||"function"==typeof n)){const{0:t}=i,r=ne(n);if(null!=r&&r[t]&&n[t],e&&n===Ct)return o(n,t)}return g(t,n,i)}}),wrapGetOwnPropertyDescriptor$LWS=t=>new c(t,{apply(o,n,i){if(i.length>1){const{0:t,1:o}=i;if("object"==typeof t&&null!==t||"function"==typeof t){const n=ne(t);if(null!=n&&n[o]&&t[o],e&&t===Ct)return r(t,o)}}return g(t,n,i)}});try{u.defineProperty=wrapDefineAccessOrProperty$LWS(W);}catch(t){}try{u.getOwnPropertyDescriptor=wrapGetOwnPropertyDescriptor$LWS(T);}catch(t){}try{l.getOwnPropertyDescriptor=wrapGetOwnPropertyDescriptor$LWS(F);}catch(t){}try{l.getOwnPropertyDescriptors=new c(f=j,{apply(t,o,n){const i=n.length?n[0]:void 0;if(("object"!=typeof i||null===i)&&"function"!=typeof i)return g(f,o,n);const a=ne(i),s=i===Ct&&e,l=s?{}:g(f,o,n);if(!s&&void 0===a)return l;const c=O(s?i:l);for(let t=0,{length:e}=c;t<e;t+=1){const e=c[t],o=!(null==a||!a[e]);if(o&&i[e],o||s){const t=s?r(i,e):T(i,e);t?l[e]=t:s||v(l,e);}}return l}});}catch(t){}var f;try{I.__defineGetter__=wrapDefineAccessOrProperty$LWS(U);}catch(t){}try{I.__defineSetter__=wrapDefineAccessOrProperty$LWS(V);}catch(t){}try{I.__lookupGetter__=wrapLookupAccessor$LWS(z,i);}catch(t){}try{I.__lookupSetter__=wrapLookupAccessor$LWS(X,a);}catch(t){}}:noop$LWS;function lookupForeignDescriptor$LWS(t,e,o){let r,n,i;a&&(r=N("lookupForeignDescriptor"));try{n=Yt(t,o,(t,r,n,a,s,l,c)=>{i={__proto__:null,l:!0},r!==et&&(i.configurable=r),n!==et&&(i.enumerable=n),a!==et&&(i.writable=a),l!==et&&("function"==typeof l?(l(),i.get=qt,qt=void 0):i.get=void 0),c!==et&&("function"==typeof c?(c(),i.set=qt,qt=void 0):i.set=void 0),s!==et&&("function"==typeof s?(s(),i.value=qt,qt=void 0):i.value=s),!1===r&&W(e,o,i);});}catch(t){var s;const e=null!=(s=qt)?s:t;throw qt=void 0,a&&r.error(e),e}if(void 0===i){let t;for("function"==typeof n?(n(),t=qt,qt=void 0):t=null;t;){if(i=T(t,o),i){x(i,null);break}t=P(t);}if(i){var l;const{get:t,set:e,value:o}=i,r=null!=(l=null!=t?t:e)?l:o;i.l=("object"==typeof r&&null!==r||"function"==typeof r)&&void 0!==h.get(r);}}return a&&r.stop(),i}function pushErrorAcrossBoundary$LWS(t){if(ot&&re(),"object"==typeof t&&null!==t||"function"==typeof t){getTransferablePointer$LWS(t,K)();}return t}function pushTarget$LWS(t,e,o,r,n){const{proxy:i}=new BoundaryProxyHandler$LWS(t,e,o,r,n);return h.set(i,t),createPointer$LWS(i)}const ae=Z?(t,e)=>{y.set(t,e),zt(getTransferablePointer$LWS(t),getTransferablePointer$LWS(e));}:noop$LWS;class BoundaryProxyHandler$LWS{constructor(t,e,o,r,n){let i;const a=1&e,l=4&e;i=l?8&e?()=>{}:function(){}:a?[]:{};const{proxy:c,revoke:u}=$t(i,this);var d,y;(this.i=t,this.u=e,this.p=n,this.S=(t,e,o,r,n,i,a)=>{W(this.h,t,createDescriptorFromMeta$LWS(e,o,r,n,i,a));},this.proxy=c,this.revoke=u,this.serializedValue=void 0,this.h=i,this.L="Object",l)&&(this.apply=this[null!=(d=s[o])?d:s.n],this.construct=this[null!=(y=f[o])?y:f.n]);if(this.defineProperty=BoundaryProxyHandler$LWS.g,this.deleteProperty=BoundaryProxyHandler$LWS.$,this.isExtensible=BoundaryProxyHandler$LWS.W,this.getOwnPropertyDescriptor=BoundaryProxyHandler$LWS.v,this.getPrototypeOf=BoundaryProxyHandler$LWS.T,this.get=32&e?BoundaryProxyHandler$LWS.hybridGetTrapForTypedArray:BoundaryProxyHandler$LWS.P,this.has=BoundaryProxyHandler$LWS.m,this.ownKeys=BoundaryProxyHandler$LWS.O,this.preventExtensions=BoundaryProxyHandler$LWS._,this.setPrototypeOf=BoundaryProxyHandler$LWS.A,this.set=BoundaryProxyHandler$LWS.B,64&e)M(this),this.revoke();else if(Z)(a||2&e)&&this.M();else {if(16&e){let t=et;g(U,this,["serializedValue",()=>(t===et&&(t=Vt(this.i)),t)]);}M(this);}}M(){this.deleteProperty=BoundaryProxyHandler$LWS.F,this.defineProperty=BoundaryProxyHandler$LWS.j,this.preventExtensions=BoundaryProxyHandler$LWS.H,this.set=BoundaryProxyHandler$LWS.k,this.setPrototypeOf=BoundaryProxyHandler$LWS.R,M(this);}I(){this.defineProperty=BoundaryProxyHandler$LWS.C,this.deleteProperty=BoundaryProxyHandler$LWS.N,this.get=BoundaryProxyHandler$LWS.D,this.getOwnPropertyDescriptor=BoundaryProxyHandler$LWS.G,this.getPrototypeOf=BoundaryProxyHandler$LWS.K,this.has=BoundaryProxyHandler$LWS.U,this.isExtensible=BoundaryProxyHandler$LWS.V,this.ownKeys=BoundaryProxyHandler$LWS.X,this.preventExtensions=BoundaryProxyHandler$LWS.Z,this.set=BoundaryProxyHandler$LWS.J,this.setPrototypeOf=BoundaryProxyHandler$LWS.Y;const{i:t,u:e,h:o}=this,r=Ft(t);if(8&r)return M(this),this.revoke(),void 0;try{copyForeignOwnPropertyDescriptorsAndPrototypeToShadowTarget$LWS(t,o);}catch(e){if(Ut(t))return M(this),this.revoke(),void 0}if(16&e&&!(L in o)){let e="Object";try{e=jt(t);}catch(t){}this.L=e;}4&r?M(o):(2&r?C(o):1&r&&_(o),LOCKER_UNMINIFIED_FLAG$LWS&&Bt("Mutations on the membrane of an object originating outside of the sandbox will not be reflected on the object itself:",t)),M(this);}static j(t,e,o){let r;ee=4,a&&(r=N("Reflect.defineProperty"));const{i:n,S:i}=this,s=o;x(s,null);const{get:l,set:c,value:u}=s,f="value"in s?"object"==typeof u&&null!==u||"function"==typeof u?getTransferablePointer$LWS(u):"undefined"==typeof u?void 0:u:et,d="get"in s?"function"==typeof l?getTransferablePointer$LWS(l):l:et,y="set"in s?"function"==typeof c?getTransferablePointer$LWS(c):c:et;let p=!1;try{p=dt(n,e,"configurable"in s?!!s.configurable:et,"enumerable"in s?!!s.enumerable:et,"writable"in s?!!s.writable:et,f,d,y,i);}catch(t){var S;const e=null!=(S=qt)?S:t;throw qt=void 0,a&&r.error(e),e}return a&&r.stop(),p}static F(t,e){let o;ee=8,a&&(o=N("Reflect.deleteProperty"));let r=!1;try{r=yt(this.i,e);}catch(t){var n;const e=null!=(n=qt)?n:t;throw qt=void 0,a&&o.error(e),e}return a&&o.stop(),r}static q(t){let e,o,r;ee=64,a&&(e=N("Reflect.getPrototypeOf"));try{o=vt(this.i);}catch(t){var n;const o=null!=(n=qt)?n:t;throw qt=void 0,a&&e.error(o),o}return "function"==typeof o?(o(),r=qt,qt=void 0):r=null,a&&e.stop(),r}static tt(t){let e;ee=256,a&&(e=N("Reflect.isExtensible"));const{h:o}=this;let r=!1;if(m(o)){const{i:t}=this;try{r=Tt(t);}catch(t){var n;const o=null!=(n=qt)?n:t;throw qt=void 0,a&&e.error(o),o}r||(copyForeignOwnPropertyDescriptorsAndPrototypeToShadowTarget$LWS(t,o),_(o));}return a&&e.stop(),r}static et(t){let e,o;ee=512,a&&(e=N("Reflect.ownKeys"));try{Pt(this.i,(...t)=>{o=t;});}catch(t){var r;const o=null!=(r=qt)?r:t;throw qt=void 0,a&&e.error(o),o}return a&&e.stop(),o||[]}static ot(t,e){let o;ee=32,a&&(o=N("Reflect.getOwnPropertyDescriptor"));const{i:r,h:n}=this;let i;try{gt(r,e,(t,o,r,a,s,l,c)=>{i=createDescriptorFromMeta$LWS(o,r,a,s,l,c),!1===i.configurable&&W(n,e,i);});}catch(t){var s;const e=null!=(s=qt)?s:t;throw qt=void 0,a&&o.error(e),e}return a&&o.stop(),i}static H(t){let e;ee=1024,a&&(e=N("Reflect.preventExtensions"));const{i:o,h:r}=this;let n=!0;if(m(r)){let t=0;try{t=mt(o);}catch(t){var i;const o=null!=(i=qt)?i:t;throw qt=void 0,a&&e.error(o),o}1&t||(copyForeignOwnPropertyDescriptorsAndPrototypeToShadowTarget$LWS(o,r),_(r)),n=!(2&t);}return a&&e.stop(),n}static R(t,e){let o;ee=4096,a&&(o=N("Reflect.setPrototypeOf"));const r=e?getTransferablePointer$LWS(e):e;let n=!1;try{n=xt(this.i,r);}catch(t){var i;const e=null!=(i=qt)?i:t;throw qt=void 0,a&&o.error(e),e}return a&&o.stop(),n}static k(t,e,o,r){ee=2048;const{i:n,proxy:i,h:s}=this;"undefined"==typeof o&&(o=void 0),"undefined"==typeof r&&(r=i);const l=i===r;let c;a&&(c=N(l?"Reflect.set":"passthruForeignTraversedSet"));let u=!1;try{u=l?_t(n,e,"object"==typeof o&&null!==o||"function"==typeof o?getTransferablePointer$LWS(o):o,et):function(t,e,o,r,n){const i=lookupForeignDescriptor$LWS(t,e,o);if(i){if("get"in i||"set"in i){const{set:t}=i;return !!t&&(i.l?nt(getTransferablePointer$LWS(t),"object"==typeof n&&null!==n||"function"==typeof n?getTransferablePointer$LWS(n):"undefined"==typeof n?void 0:n,"object"==typeof r&&null!==r||"function"==typeof r?getTransferablePointer$LWS(r):"undefined"==typeof r?void 0:r):g(t,n,[r]),!0)}if(!1===i.writable)return !1}if(("object"!=typeof n||null===n)&&"function"!=typeof n)return !1;const a=T(n,o);return a?(x(a,null),!("get"in a)&&!("set"in a)&&!1!==a.writable&&(W(n,o,{__proto__:null,value:r}),!0)):W(n,o,{__proto__:null,configurable:!0,enumerable:!0,value:r,writable:!0})}(n,s,e,o,r);}catch(t){var f;const e=null!=(f=qt)?f:t;throw qt=void 0,a&&c.error(e),e}return a&&c.stop(),u}}BoundaryProxyHandler$LWS.rt=Z?function(t,e,o){let r;a&&(r=N("hybridGetTrap"));const{i:n,u:i,proxy:s,h:l}=this,c=lookupForeignDescriptor$LWS(n,l,e);let u;if(c){const{get:t,value:e}=c;if(t)if(c.l){const e=getTransferablePointer$LWS(t),i=s===o?n:"object"==typeof o&&null!==o||"function"==typeof o?getTransferablePointer$LWS(o):o;let l;try{l=nt(e,i);}catch(t){var f;const e=null!=(f=qt)?f:t;throw qt=void 0,a&&r.error(e),e}"function"==typeof l?(l(),u=qt,qt=void 0):u=l;}else u=g(t,o,[]);else u=e;}else if(e===L&&16&i){let t;try{t=jt(n);}catch(t){var d;const e=null!=(d=qt)?d:t;throw qt=void 0,a&&r.error(e),e}"Object"!==t&&(u=t);}return a&&r.stop(),u}:noop$LWS,BoundaryProxyHandler$LWS.hybridGetTrapForTypedArray=Z?function(t,e,o){let r;a&&(r=N("hybridGetTrapForTypedArray"));const{i:n,p:i,proxy:s,h:l}=this,c="string"==typeof e?+e:-1;let u;if(c>-1&&c<i&&Lt(c))try{u=Ht(n,e);}catch(t){var f;const e=null!=(f=qt)?f:t;throw qt=void 0,a&&r.error(e),e}else {const t=lookupForeignDescriptor$LWS(n,l,e);if(t){const{get:e,value:i}=t;if(e)if(t.l){const t=getTransferablePointer$LWS(e),i=s===o?n:"object"==typeof o&&null!==o||"function"==typeof o?getTransferablePointer$LWS(o):o;let l;try{l=nt(t,i);}catch(t){var d;const e=null!=(d=qt)?d:t;throw qt=void 0,a&&r.error(e),e}"function"==typeof l?(l(),u=qt,qt=void 0):u=l;}else u=g(e,o,[]);else u=i;}}return a&&r.stop(),u}:noop$LWS,BoundaryProxyHandler$LWS.nt=Z?function(t,e){let o,r;a&&(o=N("hybridHasTrap"));try{r=Qt(this.i,e);}catch(t){var n;const e=null!=(n=qt)?n:t;throw qt=void 0,a&&o.error(e),e}let i=!1;if(!0===r)i=!0;else {let t;for("function"==typeof r?(r(),t=qt,qt=void 0):t=null;t;){if(Q(t,e)){i=!0;break}t=P(t);}}return a&&o.stop(),i}:alwaysFalse$LWS,BoundaryProxyHandler$LWS.it=Z?noop$LWS:function(t,e,o){if(te&&(te=128===ee),ee=16,te){if(e===tt)return !0;if(e===q)return this.serializedValue}let r;a&&(r=N("Reflect.get"));const{i:n,u:i,proxy:s}=this;"undefined"==typeof o&&(o=s);const l=s===o?et:"object"==typeof o&&null!==o||"function"==typeof o?getTransferablePointer$LWS(o):o;let c,u;try{c=ht(n,i,e,l);}catch(t){var f;const e=null!=(f=qt)?f:t;throw qt=void 0,a&&r.error(e),e}return "function"==typeof c?(c(),u=qt,qt=void 0):u=c,a&&r.stop(),u},BoundaryProxyHandler$LWS.st=Z?alwaysFalse$LWS:function(t,e){let o,r;ee=128,a&&(o=N("Reflect.has"));try{r=bt(this.i,e);}catch(t){var n;const e=null!=(n=qt)?n:t;throw qt=void 0,a&&o.error(e),e}return te=!r&&(e===tt||e===q),a&&o.stop(),r},BoundaryProxyHandler$LWS.lt=Z?function(t,e,o){return Kt(this.i)?this.M():this.I(),this.defineProperty(t,e,o)}:alwaysFalse$LWS,BoundaryProxyHandler$LWS.ct=Z?function(t,e){return Kt(this.i)?this.M():this.I(),this.deleteProperty(t,e)}:alwaysFalse$LWS,BoundaryProxyHandler$LWS.ut=Z?function(t){return Kt(this.i)?this.M():this.I(),this.preventExtensions(t)}:alwaysFalse$LWS,BoundaryProxyHandler$LWS.ft=Z?function(t,e){return Kt(this.i)?this.M():this.I(),this.setPrototypeOf(t,e)}:alwaysFalse$LWS,BoundaryProxyHandler$LWS.dt=Z?function(t,e,o,r){return Kt(this.i)?this.M():this.I(),this.set(t,e,o,r)}:alwaysFalse$LWS,BoundaryProxyHandler$LWS.C=Z?W:alwaysFalse$LWS,BoundaryProxyHandler$LWS.N=Z?v:alwaysFalse$LWS,BoundaryProxyHandler$LWS.G=Z?T:noop$LWS,BoundaryProxyHandler$LWS.K=Z?P:()=>null,BoundaryProxyHandler$LWS.D=Z?function(t,e,o){const{u:r,L:n}=this,i=b(t,e,o);return void 0===i&&e===L&&16&r&&"Object"!==n&&!(e in t)?n:i}:noop$LWS,BoundaryProxyHandler$LWS.U=Z?w:alwaysFalse$LWS,BoundaryProxyHandler$LWS.V=Z?m:alwaysFalse$LWS,BoundaryProxyHandler$LWS.X=Z?O:()=>[],BoundaryProxyHandler$LWS.Z=Z?_:alwaysFalse$LWS,BoundaryProxyHandler$LWS.Y=Z?x:alwaysFalse$LWS,BoundaryProxyHandler$LWS.J=Z?E:alwaysFalse$LWS,BoundaryProxyHandler$LWS.g=Z?BoundaryProxyHandler$LWS.lt:BoundaryProxyHandler$LWS.j,BoundaryProxyHandler$LWS.$=Z?BoundaryProxyHandler$LWS.ct:BoundaryProxyHandler$LWS.F,BoundaryProxyHandler$LWS.v=BoundaryProxyHandler$LWS.ot,BoundaryProxyHandler$LWS.T=BoundaryProxyHandler$LWS.q,BoundaryProxyHandler$LWS.P=Z?BoundaryProxyHandler$LWS.rt:BoundaryProxyHandler$LWS.it,BoundaryProxyHandler$LWS.m=Z?BoundaryProxyHandler$LWS.nt:BoundaryProxyHandler$LWS.st,BoundaryProxyHandler$LWS.W=BoundaryProxyHandler$LWS.tt,BoundaryProxyHandler$LWS.O=BoundaryProxyHandler$LWS.et,BoundaryProxyHandler$LWS._=Z?BoundaryProxyHandler$LWS.ut:BoundaryProxyHandler$LWS.H,BoundaryProxyHandler$LWS.B=Z?BoundaryProxyHandler$LWS.dt:BoundaryProxyHandler$LWS.k,BoundaryProxyHandler$LWS.A=Z?BoundaryProxyHandler$LWS.ft:BoundaryProxyHandler$LWS.R,e(createPointer$LWS(Ct),Z?noop$LWS:()=>{const t=qt;return qt=void 0,t},t=>"object"==typeof t&&null!==t||"function"==typeof t?getTransferablePointer$LWS(t):"undefined"==typeof t?void 0:t,(t,e)=>{t();const o=qt;qt=void 0;const r=null==o?void 0:o[e];return createPointer$LWS("undefined"==typeof r?void 0:r)},Z?t=>{let e;try{e=It(t);}catch(t){throw pushErrorAcrossBoundary$LWS(t)}return "object"==typeof e&&null!==e||"function"==typeof e?getTransferablePointer$LWS(e):e}:noop$LWS,(t,e)=>{t();const o=qt;qt=void 0,("object"==typeof o&&null!==o||"function"==typeof o)&&h.set(o,e);},ot?(t,e,o,r,n)=>{const i=pushTarget$LWS(t,e,o,r,n);return ()=>(re(),i())}:pushTarget$LWS,pushTarget$LWS,(t,e,...o)=>{t();const r=qt;let n,i;qt=void 0,"function"==typeof e&&(e(),n=qt,qt=void 0);for(let t=0,{length:e}=o;t<e;t+=1){const e=o[t];"function"==typeof e&&(e(),o[t]=qt,qt=void 0);}try{i=g(r,n,o);}catch(t){throw pushErrorAcrossBoundary$LWS(t)}return "object"==typeof i&&null!==i||"function"==typeof i?getTransferablePointer$LWS(i):"undefined"==typeof i?void 0:i},(t,e,...o)=>{t();const r=qt;let n,i;qt=void 0,"function"==typeof e&&(e(),n=qt,qt=void 0);for(let t=0,{length:e}=o;t<e;t+=1){const e=o[t];"function"==typeof e&&(e(),o[t]=qt,qt=void 0);}try{i=$(r,o,n);}catch(t){throw pushErrorAcrossBoundary$LWS(t)}return "object"==typeof i&&null!==i||"function"==typeof i?getTransferablePointer$LWS(i):"undefined"==typeof i?void 0:i},(t,e,o,r,n,i,a,s,l)=>{t();const c=qt;qt=void 0;const u=createDescriptorFromMeta$LWS(o,r,n,i,a,s);let f=!1;try{f=W(c,e,u);}catch(t){throw pushErrorAcrossBoundary$LWS(t)}if(f&&!1===o){let t;try{t=T(c,e);}catch(t){throw pushErrorAcrossBoundary$LWS(t)}if(t&&(x(t,null),!1===t.configurable)){const{get:o,set:r,value:n}=t;l(e,!1,"enumerable"in t?t.enumerable:et,"writable"in t?t.writable:et,"value"in t?"object"==typeof n&&null!==n||"function"==typeof n?getTransferablePointer$LWS(n):n:et,"get"in t?"function"==typeof o?getTransferablePointer$LWS(o):o:et,"set"in t?"function"==typeof r?getTransferablePointer$LWS(r):r:et);}}return f},(t,e)=>{t();const o=qt;qt=void 0;try{return v(o,e)}catch(t){throw pushErrorAcrossBoundary$LWS(t)}},(t,e,o,r)=>{t();const n=qt;let i,a;qt=void 0,"function"==typeof r?(r(),i=qt,qt=void 0):i=r===et?n:r;try{a=b(n,o,i);}catch(t){throw pushErrorAcrossBoundary$LWS(t)}if("object"==typeof a&&null!==a||"function"==typeof a)return getTransferablePointer$LWS(a);if(void 0===a&&o===L&&16&e)try{if(!(o in n)){const t=g(G,n,[]);"[object Object]"!==t&&(a=g(Ot,t,[8,-1]));}}catch(t){throw pushErrorAcrossBoundary$LWS(t)}return "undefined"==typeof a?void 0:a},(t,e,o)=>{t();const r=qt;let n;qt=void 0;try{n=T(r,e);}catch(t){throw pushErrorAcrossBoundary$LWS(t)}if(n){x(n,null);const{get:t,set:r,value:i}=n;o(e,"configurable"in n?n.configurable:et,"enumerable"in n?n.enumerable:et,"writable"in n?n.writable:et,"value"in n?"object"==typeof i&&null!==i||"function"==typeof i?getTransferablePointer$LWS(i):"undefined"==typeof i?void 0:i:et,"get"in n?"function"==typeof t?getTransferablePointer$LWS(t):t:et,"set"in n?"function"==typeof r?getTransferablePointer$LWS(r):r:et);}},t=>{t();const e=qt;let o;qt=void 0;try{o=P(e);}catch(t){throw pushErrorAcrossBoundary$LWS(t)}return "undefined"==typeof o?null:o?getTransferablePointer$LWS(o):o},(t,e)=>{t();const o=qt;qt=void 0;try{return e in o}catch(t){throw pushErrorAcrossBoundary$LWS(t)}},t=>{t();const e=qt;qt=void 0;try{return m(e)}catch(t){throw pushErrorAcrossBoundary$LWS(t)}},(t,e)=>{t();const o=qt;let r;qt=void 0;try{r=O(o);}catch(t){throw pushErrorAcrossBoundary$LWS(t)}g(e,void 0,r);},t=>{t();const e=qt;qt=void 0;let o=2;try{_(e)?o=4:m(e)&&(o|=1);}catch(t){throw pushErrorAcrossBoundary$LWS(t)}return o},(t,e,o,r)=>{t();const n=qt;let i,a;qt=void 0,"function"==typeof o?(o(),i=qt,qt=void 0):i=o,"function"==typeof r?(r(),a=qt,qt=void 0):a=r===et?n:r;try{return E(n,e,i,a)}catch(t){throw pushErrorAcrossBoundary$LWS(t)}},(t,e=null)=>{t();const o=qt;let r;qt=void 0,"function"==typeof e?(e(),r=qt,qt=void 0):r=null;try{return x(o,r)}catch(t){throw pushErrorAcrossBoundary$LWS(t)}},ot?(...t)=>{if(re()){for(let e=0,{length:o}=t;e<o;e+=1){const o=t[e];"function"==typeof o&&(o(),t[e]=qt,qt=void 0);}try{g(Rt,kt,t);}catch(t){}}}:noop$LWS,Z?(t,...e)=>{t();const o=qt;qt=void 0;for(let t=0,{length:r}=e;t<r;t+=7)W(o,e[t],createDescriptorFromMeta$LWS(e[t+1],e[t+2],e[t+3],e[t+4],e[t+5],e[t+6]));}:noop$LWS,Z?noop$LWS:t=>{t();const e=qt;qt=void 0;const o=ge.get(e);return o?getTransferablePointer$LWS(o):o},Z?()=>0:t=>{t();const e=qt;qt=void 0;try{if(!m(e))return H(e)||k(e)?0:1}catch(t){try{it(e);}catch(t){return 8}}return 0},t=>{t();const e=qt;qt=void 0;try{const t=g(G,e,[]);return "[object Object]"===t?"Object":g(Ot,t,[8,-1])}catch(t){throw pushErrorAcrossBoundary$LWS(t)}},Z?noop$LWS:(t,e)=>{t();const o=qt;qt=void 0;try{return o[e]}catch(t){throw pushErrorAcrossBoundary$LWS(t)}},Gt,Z?(t,...e)=>{const o=g(st,e,[et]);let r,n;-1===o?r=e:(r=g(lt,e,[0,o]),n=g(lt,e,[o+1])),t();const i=qt;qt=void 0;let a=ne(i);void 0===a&&(a={__proto__:null},ae(i,a));for(let t=0,{length:e}=r;t<e;t+=1){const e=r[t];a[e]=!0,W(i,e,{__proto__:null,configurable:!0,get:()=>(oe(i,e,a),i[e]),set(t){oe(i,e,a),E(i,e,t);}});}ie(n);}:noop$LWS,Z?alwaysFalse$LWS:t=>{t();const e=qt;if(qt=void 0,null==e||e===I||e===Wt)return !1;if("function"==typeof e){try{return Q(e,Y)}catch(t){}return !1}if("object"==typeof e){let t;try{if(({constructor:t}=e),t===l)return !0}catch(t){}try{if(Q(e,Y))return !0}catch(t){}try{if(null===P(e)&&("function"!=typeof t||t.prototype!==e))return !0}catch(t){}try{if(Q(e,"lastIndex"))return g(wt,e,[]),!0}catch(t){}try{if("byteLength"in e)return g(ut,e,[]),!0}catch(t){}}return !1},Z?alwaysFalse$LWS:t=>{t();const e=qt;qt=void 0;try{return it(e),!1}catch(t){}return !0},Z?t=>{t();const e=qt;qt=void 0;try{return L in e?Jt(e):Zt(e)}catch(t){}}:noop$LWS,Z?noop$LWS:(t,e)=>{t();const o=qt;qt=void 0,e();const r=qt;qt=void 0,ge.set(o,r);},(t,e)=>{t();const o=qt;let r;qt=void 0;try{r=j(o);}catch(t){throw pushErrorAcrossBoundary$LWS(t)}const i=O(r),{length:a}=i,s=new n(7*a);for(let t=0,e=0;t<a;t+=1,e+=7){const o=i[t],n=r[o];x(n,null);const{get:a,set:l,value:c}=n;s[e]=o,s[e+1]="configurable"in n?n.configurable:et,s[e+2]="enumerable"in n?n.enumerable:et,s[e+3]="writable"in n?n.writable:et,s[e+4]="value"in n?"object"==typeof c&&null!==c||"function"==typeof c?getTransferablePointer$LWS(c):c:et,s[e+5]="get"in n?"function"==typeof a?getTransferablePointer$LWS(a):a:et,s[e+6]="set"in n?"function"==typeof l?getTransferablePointer$LWS(l):l:et;}let l;g(e,void 0,s);try{l=P(o);}catch(t){throw pushErrorAcrossBoundary$LWS(t)}return "undefined"==typeof l?null:l?getTransferablePointer$LWS(l):l},(t,e)=>{t();const o=qt;let r;qt=void 0;try{if(Q(o,e))return !0;r=P(o);}catch(t){throw pushErrorAcrossBoundary$LWS(t)}return "undefined"==typeof r?null:r?getTransferablePointer$LWS(r):r},(t,e,o)=>{t();const r=qt;let n,i;qt=void 0;try{n=T(r,e);}catch(t){throw pushErrorAcrossBoundary$LWS(t)}if(n){x(n,null);const{get:t,set:r,value:i}=n;return o(e,"configurable"in n?n.configurable:et,"enumerable"in n?n.enumerable:et,"writable"in n?n.writable:et,"value"in n?"object"==typeof i&&null!==i||"function"==typeof i?getTransferablePointer$LWS(i):"undefined"==typeof i?void 0:i:et,"get"in n?"function"==typeof t?getTransferablePointer$LWS(t):t:et,"set"in n?"function"==typeof r?getTransferablePointer$LWS(r):r:et),void 0}try{i=P(r);}catch(t){throw pushErrorAcrossBoundary$LWS(t)}return "undefined"==typeof i?null:i?getTransferablePointer$LWS(i):i});let se=!1;return (...t)=>{if(se)return;se=!0,({6:K,7:rt,8:nt,9:ft,10:dt,11:yt,12:ht,13:gt,14:vt,15:bt,16:Tt,17:Pt,18:mt,19:_t,20:xt,21:Bt,23:Mt,24:Ft,25:jt,26:Ht,27:Nt,29:Kt,30:Ut,31:Vt,32:zt,33:Xt,34:Qt,35:Yt}=t);const e=createApplyOrConstructTrapForZeroOrMoreArgs$LWS(1),o=createApplyOrConstructTrapForOneOrMoreArgs$LWS(1),r=createApplyOrConstructTrapForTwoOrMoreArgs$LWS(1),n=createApplyOrConstructTrapForThreeOrMoreArgs$LWS(1),i=createApplyOrConstructTrapForFourOrMoreArgs$LWS(1),a=createApplyOrConstructTrapForFiveOrMoreArgs$LWS(1),l=createApplyOrConstructTrapForAnyNumberOfArgs$LWS(1),c=createApplyOrConstructTrapForZeroOrMoreArgs$LWS(2),u=createApplyOrConstructTrapForOneOrMoreArgs$LWS(2),d=createApplyOrConstructTrapForTwoOrMoreArgs$LWS(2),y=createApplyOrConstructTrapForThreeOrMoreArgs$LWS(2),p=createApplyOrConstructTrapForFourOrMoreArgs$LWS(2),S=createApplyOrConstructTrapForFiveOrMoreArgs$LWS(2),h=createApplyOrConstructTrapForAnyNumberOfArgs$LWS(2),L=R({yt:e,St:o,ht:r,Lt:n,gt:i,$t:a,Wt:l,vt:c,bt:u,Tt:d,Pt:y,wt:p,Ot:S,_t:h});s[0]=L[0],s[1]=L[1],s[2]=L[2],s[3]=L[3],s[4]=L[4],s[5]=L[5],s.n=L[6],f[0]=L[7],f[1]=L[8],f[2]=L[9],f[3]=L[10],f[4]=L[11],f[5]=L[12],f.n=L[13];const{prototype:g}=BoundaryProxyHandler$LWS;g[s[0]]=e,g[s[1]]=o,g[s[2]]=r,g[s[3]]=n,g[s[4]]=i,g[s[5]]=a,g[s.n]=l,g[f[0]]=c,g[f[1]]=u,g[f[2]]=d,g[f[3]]=y,g[f[4]]=p,g[f[5]]=S,g[f.n]=h,x(g,null),M(g);}}}const $e=TypeError,We=`\n'use strict';\n(${createMembraneMarshall$LWS})`;function createRedConnector$LWS(t){if("function"!=typeof t)throw new $e("Missing evaluator function.");return t(We)()}const ve=Symbol.for("@@lockerNearMembraneUndefinedValue"),be=Array,Te=Error,Pe=Object,{push:we}=be.prototype,{assign:me}=Pe,{apply:Oe,ownKeys:_e}=Reflect;class VirtualEnvironment$LWS{constructor(t){if(void 0===t)throw new Te("Missing VirtualEnvironmentOptions options bag.");const{Et:e,distortionCallback:o,instrumentation:r,redConnector:n}=me({__proto__:null},t);let i;const a=e("blue",(...t)=>{i=t;},{distortionCallback:o,instrumentation:r}),{0:s,1:l,2:c,3:u,5:f,6:d,7:y,8:p,9:S,10:h,11:L,12:g,13:$,14:W,15:v,16:b,17:T,18:P,19:w,20:m,21:O,23:_,24:E,25:x,26:A,27:B,29:M,30:F,31:j,32:H,33:k,34:R,35:I}=i;let C;const N=n("red",(...t)=>{C=t;}),{0:D,3:G,4:K,5:U,6:V,7:z,8:X,9:Q,10:Z,11:J,12:Y,13:q,14:tt,15:et,16:ot,17:rt,18:nt,19:it,20:at,21:st,22:lt,23:ct,24:ut,25:ft,26:dt,27:yt,28:pt,29:St,30:ht,31:Lt,32:gt,33:$t,34:Wt,35:vt}=C;a(void 0,void 0,void 0,void 0,void 0,void 0,V,z,X,Q,Z,J,Y,q,tt,et,ot,rt,nt,it,at,st,void 0,ct,ut,ft,dt,yt,void 0,St,ht,Lt,gt,$t,Wt,vt),N(void 0,void 0,void 0,void 0,void 0,void 0,d,y,p,S,h,L,g,$,W,v,b,T,P,w,m,O,void 0,_,E,x,A,B,void 0,M,F,j,H,k,R,I),this.xt=s,this.At=l,this.Bt=c,this.Mt=u,this.Ft=f,this.redGlobalThisPointer=D,this.jt=G,this.Ht=K,this.kt=U,this.Rt=at,this.It=lt,this.Ct=pt;}evaluate(t){try{const e=this.Ht(t);return "function"==typeof e?(e(),this.At()):e}catch(t){var e;throw null!=(e=this.At())?e:t}}Nt(t,e,o){if("object"==typeof t&&null!==t||"function"==typeof t){const r=[this.Bt(t)];Oe(we,r,e),null!=o&&o.length&&(r[r.length]=ve,Oe(we,r,o)),Oe(this.Ct,void 0,r);}}link(...t){let e=this.xt,o=this.redGlobalThisPointer;for(let r=0,{length:n}=t;r<n;r+=1){const n=t[r];e=this.Mt(e,n),o=this.jt(o,n),this.kt(o,e),this.Ft(e,o);}}Dt(t,e){if("object"==typeof t&&null!==t||"function"==typeof t){const o=this.Bt(t),r=_e(e),{length:n}=r,i=new be(1+7*n);i[0]=o;for(let t=0,o=1;t<n;t+=1,o+=7){const n=r[t],a=e[n],s=me({__proto__:null},a);i[o]=n,i[o+1]="configurable"in s?!!s.configurable:ve,i[o+2]="enumerable"in s?!!s.enumerable:ve,i[o+3]="writable"in s?!!s.writable:ve,i[o+4]="value"in s?this.Bt(s.value):ve,i[o+5]="get"in s?this.Bt(s.get):ve,i[o+6]="set"in s?this.Bt(s.set):ve;}Oe(this.It,this,i);}}Gt(t,e){if("object"==typeof t&&null!==t||"function"==typeof t){const o=this.Bt(t),r=e?this.Bt(e):e;this.Rt(o,r);}}}const{assign:Ee}=Object,{ownKeys:xe}=Reflect,Ae=["AggregateError","Array","Error","EvalError","Function","Object","Proxy","RangeError","ReferenceError","SyntaxError","TypeError","URIError","eval","globalThis"],Be=(Me=["globalThis","Infinity","NaN","undefined","isFinite","isNaN","parseFloat","parseInt","decodeURI","decodeURIComponent","encodeURI","encodeURIComponent","BigInt","Boolean","FinalizationRegistry","Number","RegExp","String","Symbol","WeakRef","JSON","Math","Reflect","escape","unescape",...Ae],Ot(Me,null),Me.at=Bt,Me.concat=Mt,Me.constructor=wt,Me.copyWithin=Ft,Me.entries=jt,Me.every=Ht,Me.fill=kt,Me.filter=Rt,Me.find=It,Me.findIndex=Ct,Me.flat=Nt,Me.flatMap=Dt,Me.forEach=Gt,Me.includes=Kt,Me.indexOf=Ut,Me.join=Vt,Me.keys=zt,Me.lastIndexOf=Xt,Me.map=Qt,Me.pop=Zt,Me.push=Jt,Me.reduce=Yt,Me.reduceRight=qt,Me.reverse=te,Me.shift=ee,Me.slice=oe,Me.some=re,Me.sort=ne,Me.splice=ie,Me.toLocaleString=ae,Me.toString=se,Me.unshift=le,Me.values=ce,Me[_t]=ue,Me[xt]=fe,Ot(Me,At),Me);var Me;function getFilteredGlobalOwnKeys$LWS(t){const e=[];let o=0;const r=xe(t);for(let t=0,{length:n}=r;t<n;t+=1){const n=r[t];Be.includes(n)||(e[o++]=n);}return e}const{deleteProperty:Fe,getPrototypeOf:je,ownKeys:He}=Reflect,ke=toSafeWeakMap$LWS(new WeakMap),Re=(()=>{const{navigator:t,navigator:{userAgentData:e}}=window,o=null==e?void 0:e.brands;if(Array.isArray(o)&&o.length?o.find(t=>"Chromium"===(null==t?void 0:t.brand)):/ (?:Headless)?Chrome\/\d+/.test(t.userAgent))return ["window"]})();function getCachedGlobalObjectReferences$LWS(t){const{window:e}=t;let o,r;try{({document:r}=t),o=ke.get(r);}catch(t){return}if(o)return o;const n=je(e),i=je(n),a=je(i);return o={document:r,Kt:je(r),window:e,Ut:je(e),Vt:je(n),zt:a,Xt:He(a)},ke.set(r,o),o}function filterWindowKeys$LWS(t){const e=[];let o=0;for(let r=0,{length:n}=t;r<n;r+=1){const n=t[r];"document"!==n&&"location "!==n&&"top"!==n&&"window"!==n&&"chrome"!==n&&(e[o++]=n);}return e}getCachedGlobalObjectReferences$LWS(window);const Ie=Object,Ce=TypeError,Ne=WeakMap,{prototype:De}=Document,{prototype:Ge}=Node,{remove:Ke,setAttribute:Ue}=Element.prototype,{appendChild:Ve}=Ge,{assign:ze}=Ie,{__lookupGetter__:Xe}=Ie.prototype,{apply:Qe}=Reflect,{close:Ze,createElement:Je,open:Ye}=De,qe=Qe(Xe,De,["body"]),to=Qe(Xe,HTMLElement.prototype,["style"]),eo=Qe(Xe,HTMLIFrameElement.prototype,["contentWindow"]),oo=Qe(Xe,Ge,["lastChild"]),ro=document,no=toSafeWeakMap$LWS(new Ne);let io=null;function createIframeVirtualEnvironment$LWS(t,e){if("object"!=typeof t||null===t)throw new Ce("Missing global object virtualization target.");const{distortionCallback:o,endowments:r,globalObjectShape:n,instrumentation:i,Qt:a=!1}=ze({__proto__:null},e),s=function(){var t;const e=Qe(Je,ro,["iframe"]),o=null!=(t=Qe(qe,ro,[]))?t:Qe(oo,ro,[]);return Qe(to,e,[]).display="none",Qe(Ue,e,["sandbox","allow-same-origin allow-scripts"]),Qe(Ve,o,[e]),e}(),l=Qe(eo,s,[]),c="object"!=typeof n||null===n;c&&null===io&&(io=filterWindowKeys$LWS(getFilteredGlobalOwnKeys$LWS(l)));const u=getCachedGlobalObjectReferences$LWS(t);if("object"!=typeof u||null===u)throw new Ce("Invalid virtualization target.");let f=no.get(u.document);void 0===f&&(f=function(t){if("object"!=typeof t||null===t)throw new $e("Missing globalObject.");return createMembraneMarshall$LWS(t)}(t),no.set(u.document,f));const d=new VirtualEnvironment$LWS({Et:f,distortionCallback:o,instrumentation:i,redConnector:createRedConnector$LWS(l.eval)});if(!function(t,e){for(let o=0,{length:r}=Ae;o<r;o+=1){const r=Ae[o],n=e[r];n&&(n.prototype?t.link(r,"prototype"):t.link(r));}}(d,t),"undefined"==typeof globalThis?d.link("window","document"):d.link("document"),d.link("__proto__","__proto__","__proto__"),d.Gt(u.document,u.Kt),d.Nt(u.window,c?io:filterWindowKeys$LWS(getFilteredGlobalOwnKeys$LWS(n)),a?void 0:Re),r){const t={};!function(t,e){const o=xe(e);for(let r=0,{length:n}=o;r<n;r+=1){const n=o[r];if(!Be.includes(n)){const o=e[n];o&&(t[n]=Ee({__proto__:null},o));}}return t}(t,r),Fe(y=t,"document"),Fe(y,"location"),Fe(y,"top"),Fe(y,"window"),Fe(y,"chrome"),d.Dt(u.window,t);}var y;if(d.Nt(u.zt,u.Xt),a){const{document:t}=l;Qe(Ye,t,[]),Qe(Ze,t,[]);}else Qe(Ke,s,[]);return d}const ao=`'use strict';\n ${SANDBOX_EVAL_CONTEXT_NAME$LWS}(${function(t){const{Zt:e}=t,o=Array,r=Promise,n=TypeError,{asyncIterator:i,iterator:a}=Symbol,{[a]:s}=o.prototype,l=function*(){}.constructor.prototype.prototype,{next:c,throw:u}=l,{delete:f,get:d,set:y}=Map.prototype,{appendChild:p}=Node.prototype,{defineProperties:S,freeze:h}=Object,{then:L}=r.prototype,g=r.resolve.bind(r),{apply:$,getPrototypeOf:W,setPrototypeOf:v}=Reflect,{replace:b}=String.prototype,{get:T,set:P}=WeakMap.prototype,{createElement:w}=Document.prototype,{querySelector:m,setAttribute:O}=Element.prototype,{stopPropagation:_}=Event.prototype,{addEventListener:E,removeEventListener:x}=EventTarget.prototype,{head:A}=document,B=new Map,M=/\\?'/g,F="data-locker-id",j=`${crypto.getRandomValues(new Uint32Array(1))[0]}`;class LockerSecurityError$LWS extends Error{constructor(t){super(`Lightning Web Security: ${t}`);}}function escapeSingleQuotes$LWS(t){return $(b,t,[M,"\\'"])}function genStep$LWS(t,e,o,r,n,i,a){let s,l;try{s=$(i,t,[a]),l=s.value;}catch(t){return o(t),void 0}s.done?e(l):g(l).then(r,n);}function loadPromise$LWS(t,o){const n=new r((e,r)=>{function onerror$LWS(e){$(x,t,["error",onerror$LWS]),$(x,t,["load",onload$LWS]),$(_,e,[]),r(new LockerSecurityError$LWS(`Resource loader error loading '${escapeSingleQuotes$LWS(o)}'.`));}function onload$LWS(){$(x,t,["error",onerror$LWS]),$(x,t,["load",onload$LWS]),e(void 0);}$(E,t,["error",onerror$LWS]),$(E,t,["load",onload$LWS]);});return $(P,e,[t,n]),$(p,A,[t]),n}function spreadable$LWS(t){return v(t,null),t[a]=s,t}function toString$LWS(t){return "string"==typeof t?t:`${t}`}return {asyncToGen:function(t,e,o){return new r((r,n)=>{const i=$(t,e,o);function next$LWS(t){genStep$LWS(i,r,n,next$LWS,thrower$LWS,c,t);}function thrower$LWS(t){genStep$LWS(i,r,n,next$LWS,thrower$LWS,u,t);}next$LWS(void 0);})},forAwaitOf:function(t,e,o){if(0===e){let e=!1,{[i]:r}=o;if(null==r&&(e=!0,({[a]:r}=o)),"function"!=typeof r)throw new n("Object is not iterable.");return $(y,B,[t,{iterable:$(r,o,[]),step:void 0,sync:e}]),void 0}const s=$(d,B,[t]);if(1===e){const t=s.iterable.next();return s.sync?new r(e=>{s.step=t,e();}):$(L,t,[t=>{s.step=t;}])}if(2===e)return s.step.value;if(3===e){const e=!!s.step.done;return e&&$(f,B,[t]),e}},loadScript:function(t,o){const r=toString$LWS(o);let n=$(m,A,[`script[data-distorted-src='${escapeSingleQuotes$LWS(r)}'][data-locker-id='${j}']`]);var i;return n?null!=(i=$(T,e,[n]))?i:g():(n=$(w,document,["script"]),$(O,n,[F,j]),n.type="text/javascript",n.src=r,loadPromise$LWS(n,r))},loadStyle:function(t,o){const r=toString$LWS(o);let n=$(m,A,[`link[href='${escapeSingleQuotes$LWS(r)}']`]);var i;return n?null!=(i=$(T,e,[n]))?i:g():(n=$(w,document,["link"]),n.type="text/css",n.rel="stylesheet",n.href=r,loadPromise$LWS(n,r))},makeRedGet:function(...t){const{length:e}=t,r=o(e),n={};for(let o=0;o<e;o+=1)n[o]={__proto__:null,get:t[o]};return S(r,n),r},makeRedResyncImports:function(t){return function(){for(let e=0,{length:o}=t;e<o;e+=1)try{t[e];}catch(t){}return spreadable$LWS(t)}},namespace:function(t){return h(t)},spreadable:spreadable$LWS,super:function(t,e,o,r){const n=W(t.prototype)[e];return $(n,o,r)}}}})`,lo={[SANDBOX_EVAL_CONTEXT_NAME$LWS]:{__proto__:null,get:()=>clearEvalContext$LWS()},[SANDBOX_EVAL_HELPERS_NAME$LWS]:{__proto__:null,get:()=>clearEvalHelpers$LWS()}},co=(()=>{const{navigator:t,navigator:{userAgentData:o}}=window,r=/WebKit/i,n=null==o?void 0:o.brands;return !(ArrayIsArray$LWS(n)&&n.length?n.find(t=>{const e=null==t?void 0:t.brand;return "string"==typeof e&&r.test(e)}):r.test(t.userAgent))})(),uo=toSafeWeakMap$LWS$1(new WeakMapCtor$LWS),fo=toSafeWeakMap$LWS$1(new WeakMapCtor$LWS),yo=toSafeWeakSet$LWS(new WeakSetCtor$LWS);let po,So;function clearEvalContext$LWS(){const t=po;return po=void 0,t}function clearEvalHelpers$LWS(){const t=So;return So=void 0,t}function createDistortionFactoryEntries$LWS(t,o=function(t){const{globalObject:e,type:o}=t,{Document:r,Element:n,HTMLElement:i,HTMLIFrameElement:a,HTMLScriptElement:s,SVGElement:l,XSLTProcessor:c}=e,u=1===o?ArrayConcat$LWS(internalDistortionFactories$LWS,internalKeyedDistortionFactories$LWS):ArrayConcat$LWS(externalDistortionFactories$LWS,externalKeyedDistortionFactories$LWS);createBlockedPropertyDistortionFactories$LWS(CustomElementRegistry.prototype,CustomElementRegistryBlockedProperties$LWS,u),createBlockedPropertyDistortionFactories$LWS(r.prototype,DocumentBlockedProperties$LWS,u),createBlockedPropertyDistortionFactories$LWS(n.prototype,ElementBlockedProperties$LWS,u),createBlockedPropertyDistortionFactories$LWS(i.prototype,HTMLElementBlockedProperties$LWS,u),createBlockedPropertyDistortionFactories$LWS(a.prototype,HTMLIFrameElementBlockedProperties$LWS,u),createBlockedPropertyDistortionFactories$LWS(HTMLEmbedElement.prototype,HTMLEmbedElementBlockedProperties$LWS,u),createBlockedPropertyDistortionFactories$LWS(HTMLObjectElement.prototype,HTMLObjectElementBlockedProperties$LWS,u),createBlockedPropertyDistortionFactories$LWS(s.prototype,HTMLScriptElementBlockedProperties$LWS,u),createBlockedPropertyDistortionFactories$LWS(l.prototype,SVGElementBlockedProperties$LWS,u),"function"==typeof c&&createBlockedPropertyDistortionFactories$LWS(c.prototype,XSLTProcessorBlockedProperties$LWS,u);return u}(t)){const{BASIC_INSTRUMENTATION_DATA:r,LOCKER_VERBOSE_DEBUG_MODE_INSTRUMENTATION_FLAG:i,instrumentation:a,key:s}=t,{error:l}=a,c=i?a.startActivity:void 0,u=[];let f=0;for(let a=0,{length:d}=o;a<d;a+=1){const d=o[a],y=d(t);if(!ArrayIsArray$LWS(y))continue;const{0:p,1:S}=y;if(!isObjectLike$LWS(p))continue;let h=S;if("function"==typeof S){let t;if(i){const{name:e}=d;t=e?ReflectApply$LWS(StringProtoReplace$LWS,e,[LOCKER_IDENTIFIER_MARKER$LWS,""]):"<unknown>";}const e=new ProxyCtor$LWS(p,ObjectFreeze$LWS({apply(o,a,u){let f;a===e&&(a=S),i&&(f=c(t,r));try{return ReflectApply$LWS(S,a,u)}catch(t){throw l({sandboxKey:s,error:t}),t}finally{i&&f.stop();}},construct(o,n,a){let u;a===e&&(a=S),i&&(u=c(t,r));try{return ReflectConstruct$LWS(S,n,a)}catch(t){throw l({sandboxKey:s,error:t}),t}finally{i&&u.stop();}}}));h=e;}u[f++]=[p,h];}return u}function getSandboxRecord$LWS({context:t,document:e,endowments:o,globalObject:r,instrumentation:i,key:a,type:s,verboseInstrumentation:l},c){let u=uo.get(e);void 0===u&&(u={__proto__:null},uo.set(e,u));let f=u[a];if(f)return f;const d="object"==typeof i&&null!==i;let lazyVirtualEnvironmentEvaluator$LWS=t=>{const e=function(t){const{LOCKER_VERBOSE_DEBUG_MODE_INSTRUMENTATION_FLAG:e,Jt:o,endowments:r,globalObject:i,instrumentation:a,key:s,type:l,top:c,top:{Jt:u}}=t,f=t===c,d=createIframeVirtualEnvironment$LWS(i,{distortionCallback(t){const r=u.get(t);if(r)return f?r:o.get(t)||r;if("function"==typeof t||!ObjectHasOwn$LWS(t,"location"))return t;let i,d;if(ObjectHasOwn$LWS(t,"window")&&t.window===t)try{i=ReflectApply$LWS(WindowDocumentGetter$LWS,t,[]),d=t;}catch(t){}else if("defaultView"in t){let e;try{e=ReflectApply$LWS(DocumentProtoDefaultViewGetter$LWS,t,[]);}catch(t){}e&&(i=t,d=e);}return d&&getSandboxRecord$LWS({context:void 0,document:i,endowments:void 0,globalObject:d,instrumentation:a,key:s,type:l,verboseInstrumentation:e},c),t},endowments:ObjectAssign$LWS({},lo,r?ObjectGetOwnPropertyDescriptors$LWS(r):void 0),Qt:!1,instrumentation:e?a:void 0});return t=>d.evaluate(t)}(f);lazyVirtualEnvironmentEvaluator$LWS=e;const o=clearEvalContext$LWS();return setEvalContext$LWS(t=>{ObjectAssign$LWS(f.Yt,t({Zt:fo}));}),e(ao),setEvalContext$LWS(o),e(t)};f={BASIC_INSTRUMENTATION_DATA:d?{sandboxKey:a}:void 0,LOCKER_DEBUG_MODE_INSTRUMENTATION_FLAG:d,LOCKER_VERBOSE_DEBUG_MODE_INSTRUMENTATION_FLAG:l&&d,UNCOMPILED_CONTEXT:{[UNCOMPILED_LOCATION_NAME$LWS]:r.location},context:t,document:e,Jt:co?toSafeWeakMap$LWS$1(new WeakMapCtor$LWS):toSafeMap$LWS(new MapCtor$LWS),endowments:o,globalObject:r,Yt:{},instrumentation:i,key:a,sandboxEvaluator:(t,o,n=r,c=e)=>internalEvaluateInSandbox$LWS({context:o,document:c,endowments:void 0,globalObject:n,instrumentation:i,key:a,source:t,sourceType:0,type:s,verboseInstrumentation:l}),top:c,type:s,virtualEnvironmentEvaluator:t=>lazyVirtualEnvironmentEvaluator$LWS(t)},u[a]=f,void 0===c&&(c=f,f.top=f);const{Jt:y}=c;y.set(e,e),y.set(r,r);const p=function(t){distortBlockedAttributes$LWS(t,HTMLElement,HTMLElementBlockedAttributes$LWS),distortBlockedAttributes$LWS(t,HTMLIFrameElement,HTMLIFrameElementBlockedAttributes$LWS),distortBlockedAttributes$LWS(t,HTMLScriptElement,HTMLScriptElementBlockedAttributes$LWS),distortBlockedAttributes$LWS(t,SVGElement,SVGElementBlockedAttributes$LWS);const e=createDistortionFactoryEntries$LWS(t);return createAttributeDistortions$LWS(t,e),e}(f);for(let t=0,{length:e}=p;t<e;t+=1){const{0:e,1:o}=p[t];y.set(e,o);}if(f===c)return f;const{Jt:S}=f,h=createDistortionFactoryEntries$LWS(f,evaluationDistortionFactories$LWS);for(let t=0,{length:e}=h;t<e;t+=1){const{0:e,1:o}=h[t];y.set(e,o),S.set(e,e);}if(yo.has(r))return f;yo.add(r);const onDOMContentLoadedOrWindowLoad$LWS=()=>{try{getSandboxRecord$LWS({context:void 0,document:r.document,endowments:void 0,globalObject:r,instrumentation:i,key:a,type:s,verboseInstrumentation:l},c);}catch(t){}},L=ReflectApply$LWS(WindowFrameElementGetter$LWS,r,[]);return L?(ReflectApply$LWS(EventTargetProtoAddEventListener$LWS,L,["load",onDOMContentLoadedOrWindowLoad$LWS,!0]),f):(ReflectApply$LWS(EventTargetProtoAddEventListener$LWS,r,["unload",function onWindowUnload$LWS(){WindowQueueMicrotask$LWS(()=>{try{ReflectApply$LWS(EventTargetProtoAddEventListener$LWS,r,["DOMContentLoaded",onDOMContentLoadedOrWindowLoad$LWS,!0]),ReflectApply$LWS(EventTargetProtoAddEventListener$LWS,r,["unload",onWindowUnload$LWS,!0]);}catch(t){}});},!0]),f)}function internalEvaluateInSandbox$LWS(t){const{context:e,instrumentation:o,key:r,source:i,sourceType:a}=t;if("string"!=typeof r)throw new LockerSecurityError$LWS("Invalid sandbox key.");const s=getSandboxRecord$LWS(t);var l;let c;setEvalContext$LWS(e),l=s.Yt,So=l;const u=function(t,e=1){let o="function"==typeof t?extractFunctionBodySource$LWS(t):toString$LWS(t);return o=ReflectApply$LWS(StringProtoReplace$LWS,o,[/\/\/# sandbox(?=MappingURL=.*?\s*$)/,"//# source"]),1===e&&-1===indexOfPragma$LWS(o,"use strict")?`'use strict';${o}`:o}(i,a),{BASIC_INSTRUMENTATION_DATA:f,LOCKER_DEBUG_MODE_INSTRUMENTATION_FLAG:d}=s,y=d?o.startActivity:void 0;let p;d&&(p=y("evaluateInSandbox",f));try{c=s.virtualEnvironmentEvaluator(u);}catch(t){throw d&&p.error({sandboxKey:r,error:t}),t}finally{clearEvalContext$LWS(),clearEvalHelpers$LWS();}return d&&p.stop(),c}function setEvalContext$LWS(t){po=t;}function evaluateInSandbox$LWS(t,e,o,r,n=defaultInstrumentation$LWS,i=!1){return internalEvaluateInSandbox$LWS({context:o,document:document,endowments:r,globalObject:window,instrumentation:n,key:t,source:e,sourceType:1,type:0,verboseInstrumentation:i})}
|
|
8118
|
+
1}`.includes("*"),ot=LOCKER_UNMINIFIED_FLAG$LWS&&!Q,rt=Q?/\w*$/:void 0;let nt,it;const at="function"==typeof BigInt,{isArray:st}=n,{includes:lt,indexOf:ct,slice:ut}=n.prototype,{isView:ft}=i,dt=Q?void 0:g(z,i.prototype,["byteLength"]),yt=at?BigInt.prototype.valueOf:void 0,{valueOf:pt}=Boolean.prototype,{toString:St}=a.prototype,{bind:ht,toString:Lt}=Function.prototype,{stringify:gt}=JSON,{isInteger:$t}=s,{valueOf:vt}=s.prototype,{revocable:Wt}=c,{prototype:bt}=f,{exec:Tt,test:Pt,toString:wt}=bt,mt=Q?null!=(e=g(z,bt,["flags"]))?e:function(){const t=g(wt,this,[]);return g(Tt,rt,[t])[0]}:void 0,Ot=g(z,bt,["source"]),{replace:_t,slice:Et,valueOf:xt}=d.prototype,{toString:At,valueOf:Bt}=y.prototype,Ft=g(z,Uint8Array.prototype.__proto__,["length"]),{prototype:Mt}=S,{delete:jt,has:Ht,set:kt,[L]:Rt}=Mt,It=Q||"object"!=typeof console||null===console?void 0:console,Ct=null==It?void 0:It.info,Dt=Q?eval:void 0,Nt=null!=(o=null!=(r=null!=t?t:"undefined"!=typeof globalThis?globalThis:void 0)?r:"undefined"!=typeof self?self:void 0)?o:(v(I,"globalThis",{__proto__:null,configurable:!0,get(){return W(I,"globalThis"),null!=this?this:self}}),globalThis);let Gt=!1,Kt=!1;function alwaysFalse$LWS(){return !1}const Ut=LOCKER_UNMINIFIED_FLAG$LWS?()=>{if(Gt)return;Gt=!0;const t=(()=>{try{var t;a.prepareStackTrace=(t,e)=>e;const e=(new a).stack;return W(a,"prepareStackTrace"),st(e)&&e.length>0?null==(t=e[0])?void 0:t.constructor:void 0}catch(t){}})();if("function"!=typeof t)return;const{getEvalOrigin:e,getFunctionName:o,toString:r}=t.prototype,n=new f(`${g(_t,"$LWS",[/[\\^$.*+?()[\]{}|]/g,"\\$&"])}(?=\\.|$)`);try{a.prepareStackTrace=function(t,i){return function(t,i){let a="";try{a=g(St,t,[]);}catch(t){a="<error>";}let s=!1;for(let t=0,{length:l}=i;t<l;t+=1){const l=i[t],c=g(o,l,[]);let u=!1;if("string"==typeof c&&"eval"!==c&&g(Pt,n,[c])&&(u=!0),!u){const t=g(e,l,[]);"string"==typeof t&&g(Pt,n,[t])&&(u=!0);}if(u)s||(s=!0,a+="\n at LWS");else {s=!1;try{a+=`\n at ${g(r,l,[])}`;}catch(t){}}}return a}(t,i)};}catch(t){}try{const{stackTraceLimit:t}=a;("number"!=typeof t||t<20)&&(a.stackTraceLimit=20);}catch(t){}}:noop$LWS;function noop$LWS(){}const Vt=Q?t=>g(yt,t,[]):noop$LWS,zt=Q?t=>g(pt,t,[]):noop$LWS,Xt=Q?t=>g(vt,t,[]):noop$LWS,qt=Q?t=>{if(t!==bt){const e=g(Ot,t,[]);return gt({__proto__:null,flags:g(mt,t,[]),source:e})}}:noop$LWS,Qt=Q?t=>g(xt,t,[]):noop$LWS,Zt=Q?t=>g(Bt,t,[]):noop$LWS,Jt=Q?t=>{switch(g(G,t,[])){case"[object Boolean]":return zt(t);case"[object Number]":return Xt(t);case"[object RegExp]":return qt(t);case"[object String]":return Qt(t);case"[object Object]":try{return Zt(t)}catch(t){}if(at)try{return Vt(t)}catch(t){}default:return}}:noop$LWS,Yt=Q?t=>{try{return Zt(t)}catch(t){}if(at)try{return Vt(t)}catch(t){}try{return zt(t)}catch(t){}try{return Xt(t)}catch(t){}try{return qt(t)}catch(t){}try{return Qt(t)}catch(t){}}:noop$LWS;function toSafeWeakMap$LWS(t){return x(t,null),t.delete=jt,t.has=Ht,t.set=kt,t[L]=Rt,x(t,Mt),t}return function(t,e,o){Q&&(o=void 0);const{distortionCallback:r,instrumentation:i}=A({__proto__:null},o),a=!Q&&"object"==typeof i&&null!==i,s={__proto__:null,0:void 0,1:void 0,2:void 0,3:void 0,4:void 0,n:void 0},f={__proto__:null,0:void 0,1:void 0,2:void 0,3:void 0,4:void 0,n:void 0},y=toSafeWeakMap$LWS(new S),h=toSafeWeakMap$LWS(new S),D=a?i.startActivity:void 0;let K,rt,at,yt,pt,St,gt,vt,Tt,Pt,wt,mt,_t,xt,Bt,Mt,jt,Ht,kt,Rt,Gt,Vt,zt,Xt,qt,Qt,Zt,te,ee,oe=!1,re=0;const ne=Q?(t,e,o)=>{o[e]=!1;const r=getTransferablePointer$LWS(t);let n;try{vt(r,e,(t,e,o,r,i,a,s)=>{n=createDescriptorFromMeta$LWS(e,o,r,i,a,s);});}catch(t){var i;const e=null!=(i=ee)?i:t;throw ee=void 0,e}n?v(t,e,n):W(t,e);}:noop$LWS;let ie=ot?()=>{try{q(Nt,Z)&&(ie=()=>!0,Ut(),Gt());}catch(t){ie=alwaysFalse$LWS;}return !1}:alwaysFalse$LWS;function copyForeignOwnPropertyDescriptorsAndPrototypeToShadowTarget$LWS(t,e){let o,r,n;a&&(o=D("copyForeignOwnPropertyDescriptorsAndPrototypeToShadowTarget"));try{r=Qt(t,(...t)=>{const o={};for(let e=0,{length:r}=t;e<r;e+=7){o[t[e]]=createDescriptorFromMeta$LWS(t[e+1],t[e+2],t[e+3],t[e+4],t[e+5],t[e+6]);}B(e,o);});}catch(t){var i;const e=null!=(i=ee)?i:t;throw ee=void 0,a&&o.error(e),e}"function"==typeof r?(r(),n=ee,ee=void 0):n=null,x(e,n),a&&o.stop();}function createApplyOrConstructTrapForZeroOrMoreArgs$LWS(t){const e=1&t,o=`Reflect.${e?"apply":"construct"}()`,r=e?s:f,n=e?at:yt;return function(i,s,l){re=t;const c=e?l:s,{length:u}=c;var f;if(0!==u)return this[null!=(f=r[u])?f:r.n](i,s,l);let d;a&&(d=D(o));const{i:y}=this,p=e?s:l;let S,h;try{S=n(y,"object"==typeof p&&null!==p||"function"==typeof p?getTransferablePointer$LWS(p):"undefined"==typeof p?void 0:p);}catch(t){var L;const e=null!=(L=ee)?L:t;throw ee=void 0,a&&d.error(e),e}return "function"==typeof S?(S(),h=ee,ee=void 0):h=S,a&&d.stop(),h}}function createApplyOrConstructTrapForOneOrMoreArgs$LWS(t){const e=1&t,o=`Reflect.${e?"apply":"construct"}(1)`,r=e?s:f,n=e?at:yt;return function(i,s,l){re=t;const c=e?l:s,{length:u}=c;var f;if(1!==u)return this[null!=(f=r[u])?f:r.n](i,s,l);let d;a&&(d=D(o));const{i:y}=this,p=e?s:l;let S,h;try{const{0:t}=c;S=n(y,"object"==typeof p&&null!==p||"function"==typeof p?getTransferablePointer$LWS(p):"undefined"==typeof p?void 0:p,"object"==typeof t&&null!==t||"function"==typeof t?getTransferablePointer$LWS(t):"undefined"==typeof t?void 0:t);}catch(t){var L;const e=null!=(L=ee)?L:t;throw ee=void 0,a&&d.error(e),e}return "function"==typeof S?(S(),h=ee,ee=void 0):h=S,a&&d.stop(),h}}function createApplyOrConstructTrapForTwoOrMoreArgs$LWS(t){const e=1&t,o=`Reflect.${e?"apply":"construct"}(2)`,r=e?s:f,n=e?at:yt;return function(i,s,l){re=t;const c=e?l:s,{length:u}=c;var f;if(2!==u)return this[null!=(f=r[u])?f:r.n](i,s,l);let d;a&&(d=D(o));const{i:y}=this,p=e?s:l;let S,h;try{const{0:t,1:e}=c;S=n(y,"object"==typeof p&&null!==p||"function"==typeof p?getTransferablePointer$LWS(p):"undefined"==typeof p?void 0:p,"object"==typeof t&&null!==t||"function"==typeof t?getTransferablePointer$LWS(t):"undefined"==typeof t?void 0:t,"object"==typeof e&&null!==e||"function"==typeof e?getTransferablePointer$LWS(e):"undefined"==typeof e?void 0:e);}catch(t){var L;const e=null!=(L=ee)?L:t;throw ee=void 0,a&&d.error(e),e}return "function"==typeof S?(S(),h=ee,ee=void 0):h=S,a&&d.stop(),h}}function createApplyOrConstructTrapForThreeOrMoreArgs$LWS(t){const e=1&t,o=`Reflect.${e?"apply":"construct"}(3)`,r=e?s:f,n=e?at:yt;return function(i,s,l){re=t;const c=e?l:s,{length:u}=c;var f;if(3!==u)return this[null!=(f=r[u])?f:r.n](i,s,l);let d;a&&(d=D(o));const{i:y}=this,p=e?s:l;let S,h;try{const{0:t,1:e,2:o}=c;S=n(y,"object"==typeof p&&null!==p||"function"==typeof p?getTransferablePointer$LWS(p):"undefined"==typeof p?void 0:p,"object"==typeof t&&null!==t||"function"==typeof t?getTransferablePointer$LWS(t):"undefined"==typeof t?void 0:t,"object"==typeof e&&null!==e||"function"==typeof e?getTransferablePointer$LWS(e):"undefined"==typeof e?void 0:e,"object"==typeof o&&null!==o||"function"==typeof o?getTransferablePointer$LWS(o):"undefined"==typeof o?void 0:o);}catch(t){var L;const e=null!=(L=ee)?L:t;throw ee=void 0,a&&d.error(e),e}return "function"==typeof S?(S(),h=ee,ee=void 0):h=S,a&&d.stop(),h}}function createApplyOrConstructTrapForFourOrMoreArgs$LWS(t){const e=1&t,o=`Reflect.${e?"apply":"construct"}(4)`,r=e?s:f,n=e?at:yt;return function(i,s,l){re=t;const c=e?l:s,{length:u}=c;var f;if(4!==u)return this[null!=(f=r[u])?f:r.n](i,s,l);let d;a&&(d=D(o));const{i:y}=this,p=e?s:l;let S,h;try{const{0:t,1:e,2:o,3:r}=c;S=n(y,"object"==typeof p&&null!==p||"function"==typeof p?getTransferablePointer$LWS(p):"undefined"==typeof p?void 0:p,"object"==typeof t&&null!==t||"function"==typeof t?getTransferablePointer$LWS(t):"undefined"==typeof t?void 0:t,"object"==typeof e&&null!==e||"function"==typeof e?getTransferablePointer$LWS(e):"undefined"==typeof e?void 0:e,"object"==typeof o&&null!==o||"function"==typeof o?getTransferablePointer$LWS(o):"undefined"==typeof o?void 0:o,"object"==typeof r&&null!==r||"function"==typeof r?getTransferablePointer$LWS(r):"undefined"==typeof r?void 0:r);}catch(t){var L;const e=null!=(L=ee)?L:t;throw ee=void 0,a&&d.error(e),e}return "function"==typeof S?(S(),h=ee,ee=void 0):h=S,a&&d.stop(),h}}function createApplyOrConstructTrapForFiveOrMoreArgs$LWS(t){const e=1&t,o=`Reflect.${e?"apply":"construct"}(5)`,r=e?s:f,n=e?at:yt;return function(i,s,l){re=t;const c=e?l:s,{length:u}=c;var f;if(5!==u)return this[null!=(f=r[u])?f:r.n](i,s,l);let d;a&&(d=D(o));const{i:y}=this,p=e?s:l;let S,h;try{const{0:t,1:e,2:o,3:r,4:i}=c;S=n(y,"object"==typeof p&&null!==p||"function"==typeof p?getTransferablePointer$LWS(p):"undefined"==typeof p?void 0:p,"object"==typeof t&&null!==t||"function"==typeof t?getTransferablePointer$LWS(t):"undefined"==typeof t?void 0:t,"object"==typeof e&&null!==e||"function"==typeof e?getTransferablePointer$LWS(e):"undefined"==typeof e?void 0:e,"object"==typeof o&&null!==o||"function"==typeof o?getTransferablePointer$LWS(o):"undefined"==typeof o?void 0:o,"object"==typeof r&&null!==r||"function"==typeof r?getTransferablePointer$LWS(r):"undefined"==typeof r?void 0:r,"object"==typeof i&&null!==i||"function"==typeof i?getTransferablePointer$LWS(i):"undefined"==typeof i?void 0:i);}catch(t){var L;const e=null!=(L=ee)?L:t;throw ee=void 0,a&&d.error(e),e}return "function"==typeof S?(S(),h=ee,ee=void 0):h=S,a&&d.stop(),h}}function createApplyOrConstructTrapForAnyNumberOfArgs$LWS(t){const e=1&t,o=e?"apply":"construct",r=e?at:yt;return function(i,s,l){re=t;const{i:c}=this,u=e?l:s,{length:f}=u;let d;a&&(d=D(`Reflect.${o}(${f})`));const y=e?s:l;let p=2;const S=new n(f+p);let h,L;S[0]=c;try{S[1]="object"==typeof y&&null!==y||"function"==typeof y?getTransferablePointer$LWS(y):"undefined"==typeof y?void 0:y;for(let t=0;t<f;t+=1){const e=u[t];S[p++]="object"==typeof e&&null!==e||"function"==typeof e?getTransferablePointer$LWS(e):"undefined"==typeof e?void 0:e;}h=g(r,void 0,S);}catch(t){var $;const e=null!=($=ee)?$:t;throw ee=void 0,a&&d.error(e),e}return "function"==typeof h?(h(),L=ee,ee=void 0):L=h,a&&d.stop(),L}}function createDescriptorFromMeta$LWS(t,e,o,r,n,i){const a={__proto__:null};return t!==et&&(a.configurable=t),e!==et&&(a.enumerable=e),o!==et&&(a.writable=o),n!==et&&("function"==typeof n?(n(),a.get=ee,ee=void 0):a.get=void 0),i!==et&&("function"==typeof i?(i(),a.set=ee,ee=void 0):a.set=void 0),r!==et&&("function"==typeof r?(r(),a.value=ee,ee=void 0):a.value=r),a}function createPointer$LWS(t){return ()=>{ee=t;}}const ae=Q?t=>{let e=y.get(t);if(void 0===e){const o=jt(getTransferablePointer$LWS(t));"function"==typeof o&&(o(),e=ee,ee=void 0,e&&y.set(t,e));}return e}:noop$LWS;function getTransferablePointer$LWS(t,e=rt){let o,n=h.get(t);if(n)return n;if(r){if(o=r(t),o!==t&&typeof o!=typeof t)throw new p(`Invalid distortion ${function(t){if("string"==typeof t)return t;try{if("object"==typeof t&&null!==t){const e=g(G,t,[]);return "[object Symbol]"===e?g(At,t,[]):e}return "function"==typeof t?g(Lt,t,[]):d(t)}catch(t){}return "[Object Unknown]"}(t)}.`)}else o=t;let i=!0,a=0,s=0,l=16;if("function"==typeof o){i=!1,a=0,l=4;try{"prototype"in o||(l|=8);const e=T(t,"length");if(e){x(e,null);const{value:t}=e;"number"==typeof t&&(a=t);}void 0;}catch(t){i=!0;}}else if(ft(o)){i=!1,l=2;try{s=g(Ft,o,[]),l|=32;}catch(t){i=!0;}}if(i)try{st(o)&&(l=1);}catch(t){l=64;}return n=e(createPointer$LWS(o),l,a,"",s),h.set(t,n),n}const se=Q?t=>{if(Kt)return;Kt=!0;const e=st(t)&&t.length>0,o=e?{__proto__:null}:void 0,r=e?(e,o)=>g(lt,t,[o])?{configurable:!1,enumerable:g(N,e,[o]),get:n(o),set:void 0}:T(e,o):void 0,n=e?t=>{let e=o[t];return void 0===e&&(e=g(ht,s,[]),o[t]=e),e}:void 0,i=e?(e,o)=>g(lt,t,[o])?n(o):g(z,e,[o]):void 0,a=e?(e,o)=>g(lt,t,[o])?void 0:g(X,e,[o]):void 0,s=e?()=>Nt:void 0,wrapDefineAccessOrProperty$LWS=t=>{const{length:e}=t,o=2===e;return new c(t,{apply(r,n,i){if(i.length>=e){const t=o?n:i[0];if("object"==typeof t&&null!==t||"function"==typeof t){const e=o?i[0]:i[1],r=ae(t);null!=r&&r[e]&&t[e];}}return g(t,n,i)}})},wrapLookupAccessor$LWS=(t,o)=>new c(t,{apply(r,n,i){if(i.length&&("object"==typeof n&&null!==n||"function"==typeof n)){const{0:t}=i,r=ae(n);if(null!=r&&r[t]&&n[t],e&&n===Nt)return o(n,t)}return g(t,n,i)}}),wrapGetOwnPropertyDescriptor$LWS=t=>new c(t,{apply(o,n,i){if(i.length>1){const{0:t,1:o}=i;if("object"==typeof t&&null!==t||"function"==typeof t){const n=ae(t);if(null!=n&&n[o]&&t[o],e&&t===Nt)return r(t,o)}}return g(t,n,i)}});try{u.defineProperty=wrapDefineAccessOrProperty$LWS(v);}catch(t){}try{u.getOwnPropertyDescriptor=wrapGetOwnPropertyDescriptor$LWS(T);}catch(t){}try{l.getOwnPropertyDescriptor=wrapGetOwnPropertyDescriptor$LWS(M);}catch(t){}try{l.getOwnPropertyDescriptors=new c(f=j,{apply(t,o,n){const i=n.length?n[0]:void 0;if(("object"!=typeof i||null===i)&&"function"!=typeof i)return g(f,o,n);const a=ae(i),s=i===Nt&&e,l=s?{}:g(f,o,n);if(!s&&void 0===a)return l;const c=O(s?i:l);for(let t=0,{length:e}=c;t<e;t+=1){const e=c[t],o=!(null==a||!a[e]);if(o&&i[e],o||s){const t=s?r(i,e):T(i,e);t?l[e]=t:s||W(l,e);}}return l}});}catch(t){}var f;try{I.__defineGetter__=wrapDefineAccessOrProperty$LWS(U);}catch(t){}try{I.__defineSetter__=wrapDefineAccessOrProperty$LWS(V);}catch(t){}try{I.__lookupGetter__=wrapLookupAccessor$LWS(z,i);}catch(t){}try{I.__lookupSetter__=wrapLookupAccessor$LWS(X,a);}catch(t){}}:noop$LWS;function lookupForeignDescriptor$LWS(t,e,o){let r,n,i;a&&(r=D("lookupForeignDescriptor"));try{n=te(t,o,(t,r,n,a,s,l,c)=>{i={__proto__:null,l:!0},r!==et&&(i.configurable=r),n!==et&&(i.enumerable=n),a!==et&&(i.writable=a),l!==et&&("function"==typeof l?(l(),i.get=ee,ee=void 0):i.get=void 0),c!==et&&("function"==typeof c?(c(),i.set=ee,ee=void 0):i.set=void 0),s!==et&&("function"==typeof s?(s(),i.value=ee,ee=void 0):i.value=s),!1===r&&v(e,o,i);});}catch(t){var s;const e=null!=(s=ee)?s:t;throw ee=void 0,a&&r.error(e),e}if(void 0===i){let t;for("function"==typeof n?(n(),t=ee,ee=void 0):t=null;t;){if(i=T(t,o),i){x(i,null);break}t=P(t);}if(i){var l;const{get:t,set:e,value:o}=i,r=null!=(l=null!=t?t:e)?l:o;i.l=("object"==typeof r&&null!==r||"function"==typeof r)&&void 0!==h.get(r);}}return a&&r.stop(),i}function pushErrorAcrossBoundary$LWS(t){if(ot&&ie(),"object"==typeof t&&null!==t||"function"==typeof t){getTransferablePointer$LWS(t,K)();}return t}function pushTarget$LWS(t,e,o,r,n){const{proxy:i}=new BoundaryProxyHandler$LWS(t,e,o,r,n);return h.set(i,t),createPointer$LWS(i)}const le=Q?(t,e)=>{y.set(t,e),qt(getTransferablePointer$LWS(t),getTransferablePointer$LWS(e));}:noop$LWS;class BoundaryProxyHandler$LWS{constructor(t,e,o,r,n){let i;const a=1&e,l=4&e;i=l?8&e?()=>{}:function(){}:a?[]:{};const{proxy:c,revoke:u}=Wt(i,this);var d,y;(this.i=t,this.u=e,this.p=n,this.S=(t,e,o,r,n,i,a)=>{v(this.h,t,createDescriptorFromMeta$LWS(e,o,r,n,i,a));},this.proxy=c,this.revoke=u,this.serializedValue=void 0,this.h=i,this.L="Object",l)&&(this.apply=this[null!=(d=s[o])?d:s.n],this.construct=this[null!=(y=f[o])?y:f.n]);if(this.defineProperty=BoundaryProxyHandler$LWS.g,this.deleteProperty=BoundaryProxyHandler$LWS.$,this.isExtensible=BoundaryProxyHandler$LWS.v,this.getOwnPropertyDescriptor=BoundaryProxyHandler$LWS.W,this.getPrototypeOf=BoundaryProxyHandler$LWS.T,this.get=32&e?BoundaryProxyHandler$LWS.hybridGetTrapForTypedArray:BoundaryProxyHandler$LWS.P,this.has=BoundaryProxyHandler$LWS.m,this.ownKeys=BoundaryProxyHandler$LWS.O,this.preventExtensions=BoundaryProxyHandler$LWS._,this.setPrototypeOf=BoundaryProxyHandler$LWS.A,this.set=BoundaryProxyHandler$LWS.B,64&e)F(this),this.revoke();else if(Q)(a||2&e)&&this.F();else {if(16&e){let t=et;const{serializedValue:e}=this;void 0===nt&&({0:nt}=R({serializedValue:e})),g(U,this,[nt,()=>(t===et&&(t=Xt(this.i)),t)]);}F(this);}}F(){this.deleteProperty=BoundaryProxyHandler$LWS.M,this.defineProperty=BoundaryProxyHandler$LWS.j,this.preventExtensions=BoundaryProxyHandler$LWS.H,this.set=BoundaryProxyHandler$LWS.k,this.setPrototypeOf=BoundaryProxyHandler$LWS.R,F(this);}I(){this.defineProperty=BoundaryProxyHandler$LWS.C,this.deleteProperty=BoundaryProxyHandler$LWS.D,this.get=BoundaryProxyHandler$LWS.N,this.getOwnPropertyDescriptor=BoundaryProxyHandler$LWS.G,this.getPrototypeOf=BoundaryProxyHandler$LWS.K,this.has=BoundaryProxyHandler$LWS.U,this.isExtensible=BoundaryProxyHandler$LWS.V,this.ownKeys=BoundaryProxyHandler$LWS.X,this.preventExtensions=BoundaryProxyHandler$LWS.q,this.set=BoundaryProxyHandler$LWS.Z,this.setPrototypeOf=BoundaryProxyHandler$LWS.J;const{i:t,u:e,h:o}=this,r=Ht(t);if(8&r)return F(this),this.revoke(),void 0;try{copyForeignOwnPropertyDescriptorsAndPrototypeToShadowTarget$LWS(t,o);}catch(e){if(zt(t))return F(this),this.revoke(),void 0}if(16&e&&!(L in o)){let e="Object";try{e=kt(t);}catch(t){}this.L=e;}4&r?F(o):(2&r?C(o):1&r&&_(o),LOCKER_UNMINIFIED_FLAG$LWS&&Mt("Mutations on the membrane of an object originating outside of the sandbox will not be reflected on the object itself:",t)),F(this);}static j(t,e,o){let r;re=4,a&&(r=D("Reflect.defineProperty"));const{i:n,S:i}=this,s=o;x(s,null);const{get:l,set:c,value:u}=s,f="value"in s?"object"==typeof u&&null!==u||"function"==typeof u?getTransferablePointer$LWS(u):"undefined"==typeof u?void 0:u:et,d="get"in s?"function"==typeof l?getTransferablePointer$LWS(l):l:et,y="set"in s?"function"==typeof c?getTransferablePointer$LWS(c):c:et;let p=!1;try{p=pt(n,e,"configurable"in s?!!s.configurable:et,"enumerable"in s?!!s.enumerable:et,"writable"in s?!!s.writable:et,f,d,y,i);}catch(t){var S;const e=null!=(S=ee)?S:t;throw ee=void 0,a&&r.error(e),e}return a&&r.stop(),p}static M(t,e){let o;re=8,a&&(o=D("Reflect.deleteProperty"));let r=!1;try{r=St(this.i,e);}catch(t){var n;const e=null!=(n=ee)?n:t;throw ee=void 0,a&&o.error(e),e}return a&&o.stop(),r}static Y(t){let e,o,r;re=64,a&&(e=D("Reflect.getPrototypeOf"));try{o=Tt(this.i);}catch(t){var n;const o=null!=(n=ee)?n:t;throw ee=void 0,a&&e.error(o),o}return "function"==typeof o?(o(),r=ee,ee=void 0):r=null,a&&e.stop(),r}static tt(t){let e;re=256,a&&(e=D("Reflect.isExtensible"));const{h:o}=this;let r=!1;if(m(o)){const{i:t}=this;try{r=wt(t);}catch(t){var n;const o=null!=(n=ee)?n:t;throw ee=void 0,a&&e.error(o),o}r||(copyForeignOwnPropertyDescriptorsAndPrototypeToShadowTarget$LWS(t,o),_(o));}return a&&e.stop(),r}static et(t){let e,o;re=512,a&&(e=D("Reflect.ownKeys"));try{mt(this.i,(...t)=>{o=t;});}catch(t){var r;const o=null!=(r=ee)?r:t;throw ee=void 0,a&&e.error(o),o}return a&&e.stop(),o||[]}static ot(t,e){let o;re=32,a&&(o=D("Reflect.getOwnPropertyDescriptor"));const{i:r,h:n}=this;let i;try{vt(r,e,(t,o,r,a,s,l,c)=>{i=createDescriptorFromMeta$LWS(o,r,a,s,l,c),!1===i.configurable&&v(n,e,i);});}catch(t){var s;const e=null!=(s=ee)?s:t;throw ee=void 0,a&&o.error(e),e}return a&&o.stop(),i}static H(t){let e;re=1024,a&&(e=D("Reflect.preventExtensions"));const{i:o,h:r}=this;let n=!0;if(m(r)){let t=0;try{t=_t(o);}catch(t){var i;const o=null!=(i=ee)?i:t;throw ee=void 0,a&&e.error(o),o}1&t||(copyForeignOwnPropertyDescriptorsAndPrototypeToShadowTarget$LWS(o,r),_(r)),n=!(2&t);}return a&&e.stop(),n}static R(t,e){let o;re=4096,a&&(o=D("Reflect.setPrototypeOf"));const r=e?getTransferablePointer$LWS(e):e;let n=!1;try{n=Bt(this.i,r);}catch(t){var i;const e=null!=(i=ee)?i:t;throw ee=void 0,a&&o.error(e),e}return a&&o.stop(),n}static k(t,e,o,r){re=2048;const{i:n,proxy:i,h:s}=this;"undefined"==typeof o&&(o=void 0),"undefined"==typeof r&&(r=i);const l=i===r;let c;a&&(c=D(l?"Reflect.set":"passthruForeignTraversedSet"));let u=!1;try{u=l?xt(n,e,"object"==typeof o&&null!==o||"function"==typeof o?getTransferablePointer$LWS(o):o,et):function(t,e,o,r,n){const i=lookupForeignDescriptor$LWS(t,e,o);if(i){if("get"in i||"set"in i){const{set:t}=i;return !!t&&(i.l?at(getTransferablePointer$LWS(t),"object"==typeof n&&null!==n||"function"==typeof n?getTransferablePointer$LWS(n):"undefined"==typeof n?void 0:n,"object"==typeof r&&null!==r||"function"==typeof r?getTransferablePointer$LWS(r):"undefined"==typeof r?void 0:r):g(t,n,[r]),!0)}if(!1===i.writable)return !1}if(("object"!=typeof n||null===n)&&"function"!=typeof n)return !1;const a=T(n,o);return a?(x(a,null),!("get"in a)&&!("set"in a)&&!1!==a.writable&&(v(n,o,{__proto__:null,value:r}),!0)):v(n,o,{__proto__:null,configurable:!0,enumerable:!0,value:r,writable:!0})}(n,s,e,o,r);}catch(t){var f;const e=null!=(f=ee)?f:t;throw ee=void 0,a&&c.error(e),e}return a&&c.stop(),u}}BoundaryProxyHandler$LWS.rt=Q?function(t,e,o){let r;a&&(r=D("hybridGetTrap"));const{i:n,u:i,proxy:s,h:l}=this,c=lookupForeignDescriptor$LWS(n,l,e);let u;if(c){const{get:t,value:e}=c;if(t)if(c.l){const e=getTransferablePointer$LWS(t),i=s===o?n:"object"==typeof o&&null!==o||"function"==typeof o?getTransferablePointer$LWS(o):o;let l;try{l=at(e,i);}catch(t){var f;const e=null!=(f=ee)?f:t;throw ee=void 0,a&&r.error(e),e}"function"==typeof l?(l(),u=ee,ee=void 0):u=l;}else u=g(t,o,[]);else u=e;}else if(e===L&&16&i){let t;try{t=kt(n);}catch(t){var d;const e=null!=(d=ee)?d:t;throw ee=void 0,a&&r.error(e),e}"Object"!==t&&(u=t);}return a&&r.stop(),u}:noop$LWS,BoundaryProxyHandler$LWS.hybridGetTrapForTypedArray=Q?function(t,e,o){let r;a&&(r=D("hybridGetTrapForTypedArray"));const{i:n,p:i,proxy:s,h:l}=this,c="string"==typeof e?+e:-1;let u;if(c>-1&&c<i&&$t(c))try{u=Rt(n,e);}catch(t){var f;const e=null!=(f=ee)?f:t;throw ee=void 0,a&&r.error(e),e}else {const t=lookupForeignDescriptor$LWS(n,l,e);if(t){const{get:e,value:i}=t;if(e)if(t.l){const t=getTransferablePointer$LWS(e),i=s===o?n:"object"==typeof o&&null!==o||"function"==typeof o?getTransferablePointer$LWS(o):o;let l;try{l=at(t,i);}catch(t){var d;const e=null!=(d=ee)?d:t;throw ee=void 0,a&&r.error(e),e}"function"==typeof l?(l(),u=ee,ee=void 0):u=l;}else u=g(e,o,[]);else u=i;}}return a&&r.stop(),u}:noop$LWS,BoundaryProxyHandler$LWS.nt=Q?function(t,e){let o,r;a&&(o=D("hybridHasTrap"));try{r=Zt(this.i,e);}catch(t){var n;const e=null!=(n=ee)?n:t;throw ee=void 0,a&&o.error(e),e}let i=!1;if(!0===r)i=!0;else {let t;for("function"==typeof r?(r(),t=ee,ee=void 0):t=null;t;){if(q(t,e)){i=!0;break}t=P(t);}}return a&&o.stop(),i}:alwaysFalse$LWS,BoundaryProxyHandler$LWS.it=Q?noop$LWS:function(t,e,o){if(oe&&(oe=128===re),re=16,oe){if(e===tt)return !0;if(e===Y)return this.serializedValue}let r;a&&(r=D("Reflect.get"));const{i:n,u:i,proxy:s}=this;"undefined"==typeof o&&(o=s);const l=s===o?et:"object"==typeof o&&null!==o||"function"==typeof o?getTransferablePointer$LWS(o):o;let c,u;try{c=gt(n,i,e,l);}catch(t){var f;const e=null!=(f=ee)?f:t;throw ee=void 0,a&&r.error(e),e}return "function"==typeof c?(c(),u=ee,ee=void 0):u=c,a&&r.stop(),u},BoundaryProxyHandler$LWS.st=Q?alwaysFalse$LWS:function(t,e){let o,r;re=128,a&&(o=D("Reflect.has"));try{r=Pt(this.i,e);}catch(t){var n;const e=null!=(n=ee)?n:t;throw ee=void 0,a&&o.error(e),e}return oe=!r&&(e===tt||e===Y),a&&o.stop(),r},BoundaryProxyHandler$LWS.lt=Q?function(t,e,o){return Vt(this.i)?this.F():this.I(),this.defineProperty(t,e,o)}:alwaysFalse$LWS,BoundaryProxyHandler$LWS.ct=Q?function(t,e){return Vt(this.i)?this.F():this.I(),this.deleteProperty(t,e)}:alwaysFalse$LWS,BoundaryProxyHandler$LWS.ut=Q?function(t){return Vt(this.i)?this.F():this.I(),this.preventExtensions(t)}:alwaysFalse$LWS,BoundaryProxyHandler$LWS.ft=Q?function(t,e){return Vt(this.i)?this.F():this.I(),this.setPrototypeOf(t,e)}:alwaysFalse$LWS,BoundaryProxyHandler$LWS.dt=Q?function(t,e,o,r){return Vt(this.i)?this.F():this.I(),this.set(t,e,o,r)}:alwaysFalse$LWS,BoundaryProxyHandler$LWS.C=Q?v:alwaysFalse$LWS,BoundaryProxyHandler$LWS.D=Q?W:alwaysFalse$LWS,BoundaryProxyHandler$LWS.G=Q?T:noop$LWS,BoundaryProxyHandler$LWS.K=Q?P:()=>null,BoundaryProxyHandler$LWS.N=Q?function(t,e,o){const{u:r,L:n}=this,i=b(t,e,o);return void 0===i&&e===L&&16&r&&"Object"!==n&&!(e in t)?n:i}:noop$LWS,BoundaryProxyHandler$LWS.U=Q?w:alwaysFalse$LWS,BoundaryProxyHandler$LWS.V=Q?m:alwaysFalse$LWS,BoundaryProxyHandler$LWS.X=Q?O:()=>[],BoundaryProxyHandler$LWS.q=Q?_:alwaysFalse$LWS,BoundaryProxyHandler$LWS.J=Q?x:alwaysFalse$LWS,BoundaryProxyHandler$LWS.Z=Q?E:alwaysFalse$LWS,BoundaryProxyHandler$LWS.g=Q?BoundaryProxyHandler$LWS.lt:BoundaryProxyHandler$LWS.j,BoundaryProxyHandler$LWS.$=Q?BoundaryProxyHandler$LWS.ct:BoundaryProxyHandler$LWS.M,BoundaryProxyHandler$LWS.W=BoundaryProxyHandler$LWS.ot,BoundaryProxyHandler$LWS.T=BoundaryProxyHandler$LWS.Y,BoundaryProxyHandler$LWS.P=Q?BoundaryProxyHandler$LWS.rt:BoundaryProxyHandler$LWS.it,BoundaryProxyHandler$LWS.m=Q?BoundaryProxyHandler$LWS.nt:BoundaryProxyHandler$LWS.st,BoundaryProxyHandler$LWS.v=BoundaryProxyHandler$LWS.tt,BoundaryProxyHandler$LWS.O=BoundaryProxyHandler$LWS.et,BoundaryProxyHandler$LWS._=Q?BoundaryProxyHandler$LWS.ut:BoundaryProxyHandler$LWS.H,BoundaryProxyHandler$LWS.B=Q?BoundaryProxyHandler$LWS.dt:BoundaryProxyHandler$LWS.k,BoundaryProxyHandler$LWS.A=Q?BoundaryProxyHandler$LWS.ft:BoundaryProxyHandler$LWS.R,e(createPointer$LWS(Nt),Q?noop$LWS:()=>{const t=ee;return ee=void 0,t},t=>"object"==typeof t&&null!==t||"function"==typeof t?getTransferablePointer$LWS(t):"undefined"==typeof t?void 0:t,(t,e)=>{t();const o=ee;ee=void 0;const r=null==o?void 0:o[e];return createPointer$LWS("undefined"==typeof r?void 0:r)},Q?t=>{let e;try{e=Dt(t);}catch(t){throw pushErrorAcrossBoundary$LWS(t)}return "object"==typeof e&&null!==e||"function"==typeof e?getTransferablePointer$LWS(e):e}:noop$LWS,(t,e)=>{t();const o=ee;ee=void 0,("object"==typeof o&&null!==o||"function"==typeof o)&&h.set(o,e);},ot?(t,e,o,r,n)=>{const i=pushTarget$LWS(t,e,o,r,n);return ()=>(ie(),i())}:pushTarget$LWS,pushTarget$LWS,(t,e,...o)=>{t();const r=ee;let n,i;ee=void 0,"function"==typeof e&&(e(),n=ee,ee=void 0);for(let t=0,{length:e}=o;t<e;t+=1){const e=o[t];"function"==typeof e&&(e(),o[t]=ee,ee=void 0);}try{i=g(r,n,o);}catch(t){throw pushErrorAcrossBoundary$LWS(t)}return "object"==typeof i&&null!==i||"function"==typeof i?getTransferablePointer$LWS(i):"undefined"==typeof i?void 0:i},(t,e,...o)=>{t();const r=ee;let n,i;ee=void 0,"function"==typeof e&&(e(),n=ee,ee=void 0);for(let t=0,{length:e}=o;t<e;t+=1){const e=o[t];"function"==typeof e&&(e(),o[t]=ee,ee=void 0);}try{i=$(r,o,n);}catch(t){throw pushErrorAcrossBoundary$LWS(t)}return "object"==typeof i&&null!==i||"function"==typeof i?getTransferablePointer$LWS(i):"undefined"==typeof i?void 0:i},(t,e,o,r,n,i,a,s,l)=>{t();const c=ee;ee=void 0;const u=createDescriptorFromMeta$LWS(o,r,n,i,a,s);let f=!1;try{f=v(c,e,u);}catch(t){throw pushErrorAcrossBoundary$LWS(t)}if(f&&!1===o){let t;try{t=T(c,e);}catch(t){throw pushErrorAcrossBoundary$LWS(t)}if(t&&(x(t,null),!1===t.configurable)){const{get:o,set:r,value:n}=t;l(e,!1,"enumerable"in t?t.enumerable:et,"writable"in t?t.writable:et,"value"in t?"object"==typeof n&&null!==n||"function"==typeof n?getTransferablePointer$LWS(n):n:et,"get"in t?"function"==typeof o?getTransferablePointer$LWS(o):o:et,"set"in t?"function"==typeof r?getTransferablePointer$LWS(r):r:et);}}return f},(t,e)=>{t();const o=ee;ee=void 0;try{return W(o,e)}catch(t){throw pushErrorAcrossBoundary$LWS(t)}},(t,e,o,r)=>{t();const n=ee;let i,a;ee=void 0,"function"==typeof r?(r(),i=ee,ee=void 0):i=r===et?n:r;try{a=b(n,o,i);}catch(t){throw pushErrorAcrossBoundary$LWS(t)}if("object"==typeof a&&null!==a||"function"==typeof a)return getTransferablePointer$LWS(a);if(void 0===a&&o===L&&16&e)try{if(!(o in n)){const t=g(G,n,[]);"[object Object]"!==t&&(a=g(Et,t,[8,-1]));}}catch(t){throw pushErrorAcrossBoundary$LWS(t)}return "undefined"==typeof a?void 0:a},(t,e,o)=>{t();const r=ee;let n;ee=void 0;try{n=T(r,e);}catch(t){throw pushErrorAcrossBoundary$LWS(t)}if(n){x(n,null);const{get:t,set:r,value:i}=n;o(e,"configurable"in n?n.configurable:et,"enumerable"in n?n.enumerable:et,"writable"in n?n.writable:et,"value"in n?"object"==typeof i&&null!==i||"function"==typeof i?getTransferablePointer$LWS(i):"undefined"==typeof i?void 0:i:et,"get"in n?"function"==typeof t?getTransferablePointer$LWS(t):t:et,"set"in n?"function"==typeof r?getTransferablePointer$LWS(r):r:et);}},t=>{t();const e=ee;let o;ee=void 0;try{o=P(e);}catch(t){throw pushErrorAcrossBoundary$LWS(t)}return "undefined"==typeof o?null:o?getTransferablePointer$LWS(o):o},(t,e)=>{t();const o=ee;ee=void 0;try{return e in o}catch(t){throw pushErrorAcrossBoundary$LWS(t)}},t=>{t();const e=ee;ee=void 0;try{return m(e)}catch(t){throw pushErrorAcrossBoundary$LWS(t)}},(t,e)=>{t();const o=ee;let r;ee=void 0;try{r=O(o);}catch(t){throw pushErrorAcrossBoundary$LWS(t)}g(e,void 0,r);},t=>{t();const e=ee;ee=void 0;let o=2;try{_(e)?o=4:m(e)&&(o|=1);}catch(t){throw pushErrorAcrossBoundary$LWS(t)}return o},(t,e,o,r)=>{t();const n=ee;let i,a;ee=void 0,"function"==typeof o?(o(),i=ee,ee=void 0):i=o,"function"==typeof r?(r(),a=ee,ee=void 0):a=r===et?n:r;try{return E(n,e,i,a)}catch(t){throw pushErrorAcrossBoundary$LWS(t)}},(t,e=null)=>{t();const o=ee;let r;ee=void 0,"function"==typeof e?(e(),r=ee,ee=void 0):r=null;try{return x(o,r)}catch(t){throw pushErrorAcrossBoundary$LWS(t)}},ot?(...t)=>{if(ie()){for(let e=0,{length:o}=t;e<o;e+=1){const o=t[e];"function"==typeof o&&(o(),t[e]=ee,ee=void 0);}try{g(Ct,It,t);}catch(t){}}}:noop$LWS,Q?(t,...e)=>{t();const o=ee;ee=void 0;for(let t=0,{length:r}=e;t<r;t+=7)v(o,e[t],createDescriptorFromMeta$LWS(e[t+1],e[t+2],e[t+3],e[t+4],e[t+5],e[t+6]));}:noop$LWS,Q?noop$LWS:t=>{t();const e=ee;ee=void 0;const o=We.get(e);return o?getTransferablePointer$LWS(o):o},Q?()=>0:t=>{t();const e=ee;ee=void 0;try{if(!m(e))return H(e)||k(e)?0:1}catch(t){try{st(e);}catch(t){return 8}}return 0},t=>{t();const e=ee;ee=void 0;try{const t=g(G,e,[]);return "[object Object]"===t?"Object":g(Et,t,[8,-1])}catch(t){throw pushErrorAcrossBoundary$LWS(t)}},Q?noop$LWS:(t,e)=>{t();const o=ee;ee=void 0;try{return o[e]}catch(t){throw pushErrorAcrossBoundary$LWS(t)}},Ut,Q?(t,...e)=>{const o=g(ct,e,[et]);let r,n;-1===o?r=e:(r=g(ut,e,[0,o]),n=g(ut,e,[o+1])),t();const i=ee;ee=void 0;let a=ae(i);void 0===a&&(a={__proto__:null},le(i,a));for(let t=0,{length:e}=r;t<e;t+=1){const e=r[t];a[e]=!0,v(i,e,{__proto__:null,configurable:!0,get:()=>(ne(i,e,a),i[e]),set(t){ne(i,e,a),E(i,e,t);}});}se(n);}:noop$LWS,Q?alwaysFalse$LWS:t=>{t();const e=ee;if(ee=void 0,null==e||e===I||e===bt)return !1;if("function"==typeof e){try{return q(e,J)}catch(t){}return !1}if("object"==typeof e){let t;try{if(({constructor:t}=e),t===l)return !0}catch(t){}try{if(q(e,J))return !0}catch(t){}try{if(null===P(e)&&("function"!=typeof t||t.prototype!==e))return !0}catch(t){}try{if(q(e,"lastIndex"))return g(Ot,e,[]),!0}catch(t){}try{if("byteLength"in e)return g(dt,e,[]),!0}catch(t){}}return !1},Q?alwaysFalse$LWS:t=>{t();const e=ee;ee=void 0;try{return st(e),!1}catch(t){}return !0},Q?t=>{t();const e=ee;ee=void 0;try{return L in e?Yt(e):Jt(e)}catch(t){}}:noop$LWS,Q?noop$LWS:(t,e)=>{t();const o=ee;ee=void 0,e();const r=ee;ee=void 0,We.set(o,r);},(t,e)=>{t();const o=ee;let r;ee=void 0;try{r=j(o);}catch(t){throw pushErrorAcrossBoundary$LWS(t)}const i=O(r),{length:a}=i,s=new n(7*a);for(let t=0,e=0;t<a;t+=1,e+=7){const o=i[t],n=r[o];x(n,null);const{get:a,set:l,value:c}=n;s[e]=o,s[e+1]="configurable"in n?n.configurable:et,s[e+2]="enumerable"in n?n.enumerable:et,s[e+3]="writable"in n?n.writable:et,s[e+4]="value"in n?"object"==typeof c&&null!==c||"function"==typeof c?getTransferablePointer$LWS(c):c:et,s[e+5]="get"in n?"function"==typeof a?getTransferablePointer$LWS(a):a:et,s[e+6]="set"in n?"function"==typeof l?getTransferablePointer$LWS(l):l:et;}let l;g(e,void 0,s);try{l=P(o);}catch(t){throw pushErrorAcrossBoundary$LWS(t)}return "undefined"==typeof l?null:l?getTransferablePointer$LWS(l):l},(t,e)=>{t();const o=ee;let r;ee=void 0;try{if(q(o,e))return !0;r=P(o);}catch(t){throw pushErrorAcrossBoundary$LWS(t)}return "undefined"==typeof r?null:r?getTransferablePointer$LWS(r):r},(t,e,o)=>{t();const r=ee;let n,i;ee=void 0;try{n=T(r,e);}catch(t){throw pushErrorAcrossBoundary$LWS(t)}if(n){x(n,null);const{get:t,set:r,value:i}=n;return o(e,"configurable"in n?n.configurable:et,"enumerable"in n?n.enumerable:et,"writable"in n?n.writable:et,"value"in n?"object"==typeof i&&null!==i||"function"==typeof i?getTransferablePointer$LWS(i):"undefined"==typeof i?void 0:i:et,"get"in n?"function"==typeof t?getTransferablePointer$LWS(t):t:et,"set"in n?"function"==typeof r?getTransferablePointer$LWS(r):r:et),void 0}try{i=P(r);}catch(t){throw pushErrorAcrossBoundary$LWS(t)}return "undefined"==typeof i?null:i?getTransferablePointer$LWS(i):i});let ce=!1;return (...t)=>{if(ce)return;ce=!0,({6:K,7:rt,8:at,9:yt,10:pt,11:St,12:gt,13:vt,14:Tt,15:Pt,16:wt,17:mt,18:_t,19:xt,20:Bt,21:Mt,23:jt,24:Ht,25:kt,26:Rt,27:Gt,29:Vt,30:zt,31:Xt,32:qt,33:Qt,34:Zt,35:te}=t);const e=createApplyOrConstructTrapForZeroOrMoreArgs$LWS(1),o=createApplyOrConstructTrapForOneOrMoreArgs$LWS(1),r=createApplyOrConstructTrapForTwoOrMoreArgs$LWS(1),n=createApplyOrConstructTrapForThreeOrMoreArgs$LWS(1),i=createApplyOrConstructTrapForFourOrMoreArgs$LWS(1),a=createApplyOrConstructTrapForFiveOrMoreArgs$LWS(1),l=createApplyOrConstructTrapForAnyNumberOfArgs$LWS(1),c=createApplyOrConstructTrapForZeroOrMoreArgs$LWS(2),u=createApplyOrConstructTrapForOneOrMoreArgs$LWS(2),d=createApplyOrConstructTrapForTwoOrMoreArgs$LWS(2),y=createApplyOrConstructTrapForThreeOrMoreArgs$LWS(2),p=createApplyOrConstructTrapForFourOrMoreArgs$LWS(2),S=createApplyOrConstructTrapForFiveOrMoreArgs$LWS(2),h=createApplyOrConstructTrapForAnyNumberOfArgs$LWS(2);void 0===it&&(it=R({yt:e,St:o,ht:r,Lt:n,gt:i,$t:a,vt:l,Wt:c,bt:u,Tt:d,Pt:y,wt:p,Ot:S,_t:h})),s[0]=it[0],s[1]=it[1],s[2]=it[2],s[3]=it[3],s[4]=it[4],s[5]=it[5],s.n=it[6],f[0]=it[7],f[1]=it[8],f[2]=it[9],f[3]=it[10],f[4]=it[11],f[5]=it[12],f.n=it[13];const{prototype:L}=BoundaryProxyHandler$LWS;L[s[0]]=e,L[s[1]]=o,L[s[2]]=r,L[s[3]]=n,L[s[4]]=i,L[s[5]]=a,L[s.n]=l,L[f[0]]=c,L[f[1]]=u,L[f[2]]=d,L[f[3]]=y,L[f[4]]=p,L[f[5]]=S,L[f.n]=h,x(L,null),F(L);}}}const be=TypeError,Te=`\n'use strict';\n(${createMembraneMarshall$LWS})`;function createRedConnector$LWS(t){if("function"!=typeof t)throw new be("Missing evaluator function.");return t(Te)()}const Pe=Symbol.for("@@lockerNearMembraneUndefinedValue"),we=Array,me=Error,Oe=Object,{push:_e}=we.prototype,{assign:Ee}=Oe,{apply:xe,ownKeys:Ae}=Reflect;class VirtualEnvironment$LWS{constructor(t){if(void 0===t)throw new me("Missing VirtualEnvironmentOptions options bag.");const{Et:e,distortionCallback:o,instrumentation:r,redConnector:n}=Ee({__proto__:null},t);let i;const a=e("blue",(...t)=>{i=t;},{distortionCallback:o,instrumentation:r}),{0:s,1:l,2:c,3:u,5:f,6:d,7:y,8:p,9:S,10:h,11:L,12:g,13:$,14:v,15:W,16:b,17:T,18:P,19:w,20:m,21:O,23:_,24:E,25:x,26:A,27:B,29:F,30:M,31:j,32:H,33:k,34:R,35:I}=i;let C;const D=n("red",(...t)=>{C=t;}),{0:N,3:G,4:K,5:U,6:V,7:z,8:X,9:q,10:Q,11:Z,12:J,13:Y,14:tt,15:et,16:ot,17:rt,18:nt,19:it,20:at,21:st,22:lt,23:ct,24:ut,25:ft,26:dt,27:yt,28:pt,29:St,30:ht,31:Lt,32:gt,33:$t,34:vt,35:Wt}=C;a(void 0,void 0,void 0,void 0,void 0,void 0,V,z,X,q,Q,Z,J,Y,tt,et,ot,rt,nt,it,at,st,void 0,ct,ut,ft,dt,yt,void 0,St,ht,Lt,gt,$t,vt,Wt),D(void 0,void 0,void 0,void 0,void 0,void 0,d,y,p,S,h,L,g,$,v,W,b,T,P,w,m,O,void 0,_,E,x,A,B,void 0,F,M,j,H,k,R,I),this.xt=s,this.At=l,this.Bt=c,this.Ft=u,this.Mt=f,this.redGlobalThisPointer=N,this.jt=G,this.Ht=K,this.kt=U,this.Rt=at,this.It=lt,this.Ct=pt;}evaluate(t){try{const e=this.Ht(t);return "function"==typeof e?(e(),this.At()):e}catch(t){var e;throw null!=(e=this.At())?e:t}}Dt(t,e,o){if("object"==typeof t&&null!==t||"function"==typeof t){const r=[this.Bt(t)];xe(_e,r,e),null!=o&&o.length&&(r[r.length]=Pe,xe(_e,r,o)),xe(this.Ct,void 0,r);}}link(...t){let e=this.xt,o=this.redGlobalThisPointer;for(let r=0,{length:n}=t;r<n;r+=1){const n=t[r];e=this.Ft(e,n),o=this.jt(o,n),this.kt(o,e),this.Mt(e,o);}}Nt(t,e){if("object"==typeof t&&null!==t||"function"==typeof t){const o=this.Bt(t),r=Ae(e),{length:n}=r,i=new we(1+7*n);i[0]=o;for(let t=0,o=1;t<n;t+=1,o+=7){const n=r[t],a=e[n],s=Ee({__proto__:null},a);i[o]=n,i[o+1]="configurable"in s?!!s.configurable:Pe,i[o+2]="enumerable"in s?!!s.enumerable:Pe,i[o+3]="writable"in s?!!s.writable:Pe,i[o+4]="value"in s?this.Bt(s.value):Pe,i[o+5]="get"in s?this.Bt(s.get):Pe,i[o+6]="set"in s?this.Bt(s.set):Pe;}xe(this.It,this,i);}}Gt(t,e){if("object"==typeof t&&null!==t||"function"==typeof t){const o=this.Bt(t),r=e?this.Bt(e):e;this.Rt(o,r);}}}const{assign:Be}=Object,{ownKeys:Fe}=Reflect,Me=["AggregateError","Array","Error","EvalError","Function","Object","Proxy","RangeError","ReferenceError","SyntaxError","TypeError","URIError","eval","globalThis"],je=(He=["globalThis","Infinity","NaN","undefined","isFinite","isNaN","parseFloat","parseInt","decodeURI","decodeURIComponent","encodeURI","encodeURIComponent","BigInt","Boolean","FinalizationRegistry","Number","RegExp","String","Symbol","WeakRef","JSON","Math","Reflect","escape","unescape",...Me],xt(He,null),He.at=jt,He.concat=Ht,He.copyWithin=kt,He.entries=Rt,He.every=It,He.fill=Ct,He.filter=Dt,He.find=Nt,He.findIndex=Gt,He.flat=Kt,He.flatMap=Ut,He.forEach=Vt,He.includes=zt,He.indexOf=Xt,He.join=qt,He.keys=Qt,He.lastIndexOf=Zt,He.map=Jt,He.pop=Yt,He.push=te,He.reduce=ee,He.reduceRight=oe,He.reverse=re,He.shift=ne,He.slice=ie,He.some=ae,He.sort=se,He.splice=le,He.toLocaleString=ce,He.toString=ue,He.unshift=fe,He.values=de,He[At]=ye,He[Ft]=pe,xt(He,Mt),He);var He;function getFilteredGlobalOwnKeys$LWS(t){const e=[];let o=0;const r=Fe(t);for(let t=0,{length:n}=r;t<n;t+=1){const n=r[t];je.includes(n)||(e[o++]=n);}return e}const{deleteProperty:ke,getPrototypeOf:Re,ownKeys:Ie}=Reflect,Ce=toSafeWeakMap$LWS(new WeakMap),De=(()=>{const{navigator:t,navigator:{userAgentData:e}}=window,o=null==e?void 0:e.brands;if(Array.isArray(o)&&o.length?o.find(t=>"Chromium"===(null==t?void 0:t.brand)):/ (?:Headless)?Chrome\/\d+/.test(t.userAgent))return ["window"]})();function getCachedGlobalObjectReferences$LWS(t){const{window:e}=t;let o,r;try{({document:r}=t),o=Ce.get(r);}catch(t){return}if(o)return o;const n=Re(e),i=Re(n),a=Re(i);return o={document:r,Kt:Re(r),window:e,Ut:Re(e),Vt:Re(n),zt:a,Xt:Ie(a)},Ce.set(r,o),o}function filterWindowKeys$LWS(t){const e=[];let o=0;for(let r=0,{length:n}=t;r<n;r+=1){const n=t[r];"document"!==n&&"location "!==n&&"top"!==n&&"window"!==n&&"chrome"!==n&&(e[o++]=n);}return e}getCachedGlobalObjectReferences$LWS(window);const Ne=Object,Ge=TypeError,Ke=WeakMap,{prototype:Ue}=Document,{prototype:Ve}=Node,{remove:ze,setAttribute:Xe}=Element.prototype,{appendChild:qe}=Ve,{assign:Qe}=Ne,{__lookupGetter__:Ze}=Ne.prototype,{apply:Je}=Reflect,{close:Ye,createElement:to,open:eo}=Ue,oo=Je(Ze,Ue,["body"]),ro=Je(Ze,HTMLElement.prototype,["style"]),no=Je(Ze,HTMLIFrameElement.prototype,["contentWindow"]),io=Je(Ze,Ve,["lastChild"]),ao=toSafeWeakMap$LWS(new Ke);let so=null;function createIframeVirtualEnvironment$LWS(t,e){if("object"!=typeof t||null===t)throw new Ge("Missing global object virtualization target.");const o=getCachedGlobalObjectReferences$LWS(t);if("object"!=typeof o||null===o)throw new Ge("Invalid virtualization target.");const{distortionCallback:r,endowments:n,globalObjectShape:i,instrumentation:a,qt:s=!1}=Qe({__proto__:null},e),l=function(t){var e;const o=Je(to,t,["iframe"]),r=null!=(e=Je(oo,t,[]))?e:Je(io,t,[]);return Je(ro,o,[]).display="none",Je(Xe,o,["sandbox","allow-same-origin allow-scripts"]),Je(qe,r,[o]),o}(o.document),c=Je(no,l,[]),u="object"!=typeof i||null===i;u&&null===so&&(so=filterWindowKeys$LWS(getFilteredGlobalOwnKeys$LWS(c)));let f=ao.get(o.document);void 0===f&&(f=function(t){if("object"!=typeof t||null===t)throw new be("Missing globalObject.");return createMembraneMarshall$LWS(t)}(t),ao.set(o.document,f));const d=new VirtualEnvironment$LWS({Et:f,distortionCallback:r,instrumentation:a,redConnector:createRedConnector$LWS(c.eval)});if(!function(t,e){for(let o=0,{length:r}=Me;o<r;o+=1){const r=Me[o],n=e[r];n&&(n.prototype?t.link(r,"prototype"):t.link(r));}}(d,t),"undefined"==typeof globalThis?d.link("window","document"):d.link("document"),d.link("__proto__","__proto__","__proto__"),d.Gt(o.document,o.Kt),d.Dt(o.window,u?so:filterWindowKeys$LWS(getFilteredGlobalOwnKeys$LWS(i)),s?void 0:De),n){const t={};!function(t,e){const o=Fe(e);for(let r=0,{length:n}=o;r<n;r+=1){const n=o[r];if(!je.includes(n)){const o=e[n];o&&(t[n]=Be({__proto__:null},o));}}return t}(t,n),ke(y=t,"document"),ke(y,"location"),ke(y,"top"),ke(y,"window"),ke(y,"chrome"),d.Nt(o.window,t);}var y;if(d.Dt(o.zt,o.Xt),s){const{document:t}=c;Je(eo,t,[]),Je(Ye,t,[]);}else Je(ze,l,[]);return d}const lo=`'use strict';\n ${SANDBOX_EVAL_CONTEXT_NAME$LWS}(${function(t){const{Qt:e}=t,o=Array,r=Promise,n=TypeError,{asyncIterator:i,iterator:a}=Symbol,{[a]:s}=o.prototype,l=function*(){}.constructor.prototype.prototype,{next:c,throw:u}=l,{delete:f,get:d,set:y}=Map.prototype,{appendChild:p}=Node.prototype,{defineProperties:S,freeze:h}=Object,{then:L}=r.prototype,g=r.resolve.bind(r),{apply:$,getPrototypeOf:v,setPrototypeOf:W}=Reflect,{replace:b}=String.prototype,{get:T,set:P}=WeakMap.prototype,{createElement:w}=Document.prototype,{querySelector:m,setAttribute:O}=Element.prototype,{stopPropagation:_}=Event.prototype,{addEventListener:E,removeEventListener:x}=EventTarget.prototype,{head:A}=document,B=new Map,F=/\\?'/g,M="data-locker-id",j=`${crypto.getRandomValues(new Uint32Array(1))[0]}`;class LockerSecurityError$LWS extends Error{constructor(t){super(`Lightning Web Security: ${t}`);}}function escapeSingleQuotes$LWS(t){return $(b,t,[F,"\\'"])}function genStep$LWS(t,e,o,r,n,i,a){let s,l;try{s=$(i,t,[a]),l=s.value;}catch(t){return o(t),void 0}s.done?e(l):g(l).then(r,n);}function loadPromise$LWS(t,o){const n=new r((e,r)=>{function onerror$LWS(e){$(x,t,["error",onerror$LWS]),$(x,t,["load",onload$LWS]),$(_,e,[]),r(new LockerSecurityError$LWS(`Resource loader error loading '${escapeSingleQuotes$LWS(o)}'.`));}function onload$LWS(){$(x,t,["error",onerror$LWS]),$(x,t,["load",onload$LWS]),e(void 0);}$(E,t,["error",onerror$LWS]),$(E,t,["load",onload$LWS]);});return $(P,e,[t,n]),$(p,A,[t]),n}function spreadable$LWS(t){return W(t,null),t[a]=s,t}function toString$LWS(t){return "string"==typeof t?t:`${t}`}return {asyncToGen:function(t,e,o){return new r((r,n)=>{const i=$(t,e,o);function next$LWS(t){genStep$LWS(i,r,n,next$LWS,thrower$LWS,c,t);}function thrower$LWS(t){genStep$LWS(i,r,n,next$LWS,thrower$LWS,u,t);}next$LWS(void 0);})},forAwaitOf:function(t,e,o){if(0===e){let e=!1,{[i]:r}=o;if(null==r&&(e=!0,({[a]:r}=o)),"function"!=typeof r)throw new n("Object is not iterable.");return $(y,B,[t,{iterable:$(r,o,[]),step:void 0,sync:e}]),void 0}const s=$(d,B,[t]);if(1===e){const t=s.iterable.next();return s.sync?new r(e=>{s.step=t,e();}):$(L,t,[t=>{s.step=t;}])}if(2===e)return s.step.value;if(3===e){const e=!!s.step.done;return e&&$(f,B,[t]),e}},loadScript:function(t,o){const r=toString$LWS(o);let n=$(m,A,[`script[data-distorted-src='${escapeSingleQuotes$LWS(r)}'][data-locker-id='${j}']`]);var i;return n?null!=(i=$(T,e,[n]))?i:g():(n=$(w,document,["script"]),$(O,n,[M,j]),n.type="text/javascript",n.src=r,loadPromise$LWS(n,r))},loadStyle:function(t,o){const r=toString$LWS(o);let n=$(m,A,[`link[href='${escapeSingleQuotes$LWS(r)}']`]);var i;return n?null!=(i=$(T,e,[n]))?i:g():(n=$(w,document,["link"]),n.type="text/css",n.rel="stylesheet",n.href=r,loadPromise$LWS(n,r))},makeRedGet:function(...t){const{length:e}=t,r=o(e),n={};for(let o=0;o<e;o+=1)n[o]={__proto__:null,get:t[o]};return S(r,n),r},makeRedResyncImports:function(t){return function(...e){for(let e=0,{length:o}=t;e<o;e+=1)try{t[e];}catch(t){}return spreadable$LWS(e)}},namespace:function(t){return h(t)},spreadable:spreadable$LWS,super:function(t,e,o,r){const n=v(t.prototype)[e];return $(n,o,r)}}}})`,uo={[SANDBOX_EVAL_CONTEXT_NAME$LWS]:{__proto__:null,get:()=>clearEvalContext$LWS()},[SANDBOX_EVAL_HELPERS_NAME$LWS]:{__proto__:null,get:()=>clearEvalHelpers$LWS()}},fo=(()=>{const{navigator:t,navigator:{userAgentData:o}}=window,r=/WebKit/i,n=null==o?void 0:o.brands;return !(ArrayIsArray$LWS(n)&&n.length?n.find(t=>{const e=null==t?void 0:t.brand;return "string"==typeof e&&r.test(e)}):r.test(t.userAgent))})(),yo=toSafeWeakMap$LWS$1(new WeakMapCtor$LWS),po=toSafeWeakMap$LWS$1(new WeakMapCtor$LWS),So=toSafeWeakSet$LWS(new WeakSetCtor$LWS);let ho,Lo;function clearEvalContext$LWS(){const t=ho;return ho=void 0,t}function clearEvalHelpers$LWS(){const t=Lo;return Lo=void 0,t}function createDistortionFactoryEntries$LWS(t,o=function(t){const{globalObject:e,type:o}=t,{Document:r,Element:n,HTMLElement:i,HTMLIFrameElement:a,HTMLScriptElement:s,SVGElement:l,XSLTProcessor:c}=e,u=1===o?ArrayConcat$LWS(internalDistortionFactories$LWS,internalKeyedDistortionFactories$LWS):ArrayConcat$LWS(externalDistortionFactories$LWS,externalKeyedDistortionFactories$LWS);createBlockedPropertyDistortionFactories$LWS(CustomElementRegistry.prototype,CustomElementRegistryBlockedProperties$LWS,u),createBlockedPropertyDistortionFactories$LWS(r.prototype,DocumentBlockedProperties$LWS,u),createBlockedPropertyDistortionFactories$LWS(n.prototype,ElementBlockedProperties$LWS,u),createBlockedPropertyDistortionFactories$LWS(i.prototype,HTMLElementBlockedProperties$LWS,u),createBlockedPropertyDistortionFactories$LWS(a.prototype,HTMLIFrameElementBlockedProperties$LWS,u),createBlockedPropertyDistortionFactories$LWS(HTMLEmbedElement.prototype,HTMLEmbedElementBlockedProperties$LWS,u),createBlockedPropertyDistortionFactories$LWS(HTMLObjectElement.prototype,HTMLObjectElementBlockedProperties$LWS,u),createBlockedPropertyDistortionFactories$LWS(s.prototype,HTMLScriptElementBlockedProperties$LWS,u),createBlockedPropertyDistortionFactories$LWS(l.prototype,SVGElementBlockedProperties$LWS,u),"function"==typeof c&&createBlockedPropertyDistortionFactories$LWS(c.prototype,XSLTProcessorBlockedProperties$LWS,u);return u}(t)){const{BASIC_INSTRUMENTATION_DATA:r,LOCKER_VERBOSE_DEBUG_MODE_INSTRUMENTATION_FLAG:i,instrumentation:a,key:s}=t,{error:l}=a,c=i?a.startActivity:void 0,u=[];let f=0;for(let a=0,{length:d}=o;a<d;a+=1){const d=o[a],y=d(t);if(!ArrayIsArray$LWS(y))continue;const{0:p,1:S}=y;if(!isObjectLike$LWS(p))continue;let h=S;if("function"==typeof S){let t;if(i){const{name:e}=d;t=e?ReflectApply$LWS(StringProtoReplace$LWS,e,[LOCKER_IDENTIFIER_MARKER$LWS,""]):"<unknown>";}const e=new ProxyCtor$LWS(p,ObjectFreeze$LWS({apply(o,a,u){let f;a===e&&(a=S),i&&(f=c(t,r));try{return ReflectApply$LWS(S,a,u)}catch(t){throw l({sandboxKey:s,error:t}),t}finally{i&&f.stop();}},construct(o,n,a){let u;a===e&&(a=S),i&&(u=c(t,r));try{return ReflectConstruct$LWS(S,n,a)}catch(t){throw l({sandboxKey:s,error:t}),t}finally{i&&u.stop();}}}));h=e;}u[f++]=[p,h];}return u}function getSandboxRecord$LWS({context:t,document:e,endowments:o,globalObject:r,instrumentation:i,key:a,opaque:s,type:l,verboseInstrumentation:c},u){let f=yo.get(e);void 0===f&&(f={__proto__:null},yo.set(e,f));let d=f[a];if(d)return d;const y="object"==typeof i&&null!==i;let lazyVirtualEnvironmentEvaluator$LWS=t=>{const e=function(t){const{LOCKER_VERBOSE_DEBUG_MODE_INSTRUMENTATION_FLAG:e,Zt:o,endowments:r,globalObject:i,instrumentation:a,key:s,type:l,top:c,top:{Zt:u}}=t,f=t===c,d=createIframeVirtualEnvironment$LWS(i,{distortionCallback(t){const r=u.get(t);if(r)return f?r:o.get(t)||r;if("function"==typeof t)return t;try{if(!ObjectHasOwn$LWS(t,"location"))return t}catch(e){return t}let i,d,y=!1;if(ObjectHasOwn$LWS(t,"window")&&t.window===t)try{i=ReflectApply$LWS(WindowDocumentGetter$LWS,t,[]),d=t;}catch(e){try{ReflectApply$LWS(WindowLocationGetter$LWS,t,[])&&(y=!0,i=ReflectConstruct$LWS(DocumentCtor$LWS,[]),d=t);}catch(t){}}else if("defaultView"in t){let e;try{e=ReflectApply$LWS(DocumentProtoDefaultViewGetter$LWS,t,[]);}catch(t){}e&&(i=t,d=e);}return d&&getSandboxRecord$LWS({context:void 0,document:i,endowments:void 0,globalObject:d,instrumentation:a,key:s,opaque:y,type:l,verboseInstrumentation:e},c),t},endowments:ObjectAssign$LWS({},uo,r?ObjectGetOwnPropertyDescriptors$LWS(r):void 0),qt:!1,instrumentation:e?a:void 0});return t=>d.evaluate(t)}(d);lazyVirtualEnvironmentEvaluator$LWS=e;const o=clearEvalContext$LWS();return setEvalContext$LWS(t=>{ObjectAssign$LWS(d.Jt,t({Qt:po}));}),e(lo),setEvalContext$LWS(o),e(t)};d={BASIC_INSTRUMENTATION_DATA:y?{sandboxKey:a}:void 0,LOCKER_DEBUG_MODE_INSTRUMENTATION_FLAG:y,LOCKER_VERBOSE_DEBUG_MODE_INSTRUMENTATION_FLAG:c&&y,UNCOMPILED_CONTEXT:{[UNCOMPILED_LOCATION_NAME$LWS]:r.location},context:t,document:e,Zt:fo?toSafeWeakMap$LWS$1(new WeakMapCtor$LWS):toSafeMap$LWS(new MapCtor$LWS),endowments:o,globalObject:r,Jt:{},instrumentation:i,key:a,sandboxEvaluator:(t,o,n=r,s=e)=>internalEvaluateInSandbox$LWS({context:o,document:s,endowments:void 0,globalObject:n,instrumentation:i,key:a,source:t,sourceType:0,type:l,verboseInstrumentation:c}),top:u,type:l,virtualEnvironmentEvaluator:t=>lazyVirtualEnvironmentEvaluator$LWS(t)},f[a]=d,void 0===u&&(u=d,d.top=d);const{Zt:p}=u;if(p.set(e,e),p.set(r,r),s){So.add(r);const t=createDistortionFactoryEntries$LWS(d,opaqueDistortionFactories$LWS);for(let e=0,{length:o}=t;e<o;e+=1){const{0:o,1:r}=t[e];p.set(o,r);}}else {const t=function(t){distortBlockedAttributes$LWS(t,HTMLElement,HTMLElementBlockedAttributes$LWS),distortBlockedAttributes$LWS(t,HTMLIFrameElement,HTMLIFrameElementBlockedAttributes$LWS),distortBlockedAttributes$LWS(t,HTMLScriptElement,HTMLScriptElementBlockedAttributes$LWS),distortBlockedAttributes$LWS(t,SVGElement,SVGElementBlockedAttributes$LWS);const e=createDistortionFactoryEntries$LWS(t);return createAttributeDistortions$LWS(t,e),e}(d);for(let e=0,{length:o}=t;e<o;e+=1){const{0:o,1:r}=t[e];p.set(o,r);}if(d===u)return d;const{Zt:e}=d,o=createDistortionFactoryEntries$LWS(d,evaluationDistortionFactories$LWS);for(let t=0,{length:r}=o;t<r;t+=1){const{0:r,1:n}=o[t];p.set(r,n),e.set(r,r);}}if(So.has(r))return d;So.add(r);const onDOMContentLoadedOrWindowLoad$LWS=()=>{try{getSandboxRecord$LWS({context:void 0,document:r.document,endowments:void 0,globalObject:r,instrumentation:i,key:a,opaque:s,type:l,verboseInstrumentation:c},u);}catch(t){}},S=ReflectApply$LWS(WindowFrameElementGetter$LWS,r,[]);return S?(ReflectApply$LWS(EventTargetProtoAddEventListener$LWS,S,["load",onDOMContentLoadedOrWindowLoad$LWS,!0]),d):(ReflectApply$LWS(EventTargetProtoAddEventListener$LWS,r,["unload",function onWindowUnload$LWS(){WindowQueueMicrotask$LWS(()=>{try{ReflectApply$LWS(EventTargetProtoAddEventListener$LWS,r,["DOMContentLoaded",onDOMContentLoadedOrWindowLoad$LWS,!0]),ReflectApply$LWS(EventTargetProtoAddEventListener$LWS,r,["unload",onWindowUnload$LWS,!0]);}catch(t){}});},!0]),d)}function internalEvaluateInSandbox$LWS(t){const{context:e,document:o,endowments:r,globalObject:i,instrumentation:a,key:s,source:l,sourceType:c,type:u,verboseInstrumentation:f}=t;if("string"!=typeof s)throw new LockerSecurityError$LWS("Invalid sandbox key.");const d=getSandboxRecord$LWS({context:e,document:o,endowments:r,globalObject:i,instrumentation:a,key:s,opaque:!1,type:u,verboseInstrumentation:f});var y;let p;setEvalContext$LWS(e),y=d.Jt,Lo=y;const S=function(t,e=1){let o="function"==typeof t?extractFunctionBodySource$LWS(t):toString$LWS(t);return o=ReflectApply$LWS(StringProtoReplace$LWS,o,[/\/\/# sandbox(?=MappingURL=.*?\s*$)/,"//# source"]),1===e&&-1===indexOfPragma$LWS(o,"use strict")?`'use strict';${o}`:o}(l,c),{BASIC_INSTRUMENTATION_DATA:h,LOCKER_DEBUG_MODE_INSTRUMENTATION_FLAG:L}=d,g=L?a.startActivity:void 0;let $;L&&($=g("evaluateInSandbox",h));try{p=d.virtualEnvironmentEvaluator(S);}catch(t){throw L&&$.error({sandboxKey:s,error:t}),t}finally{clearEvalContext$LWS(),clearEvalHelpers$LWS();}return L&&$.stop(),p}function setEvalContext$LWS(t){ho=t;}function evaluateInSandbox$LWS(t,e,o,r,n=defaultInstrumentation$LWS,i=!1){return internalEvaluateInSandbox$LWS({context:o,document:document,endowments:r,globalObject:window,instrumentation:n,key:t,source:e,sourceType:1,type:0,verboseInstrumentation:i})}
|
|
8014
8119
|
|
|
8015
8120
|
const loaderDefine = globalThis.LWR.define;
|
|
8016
8121
|
/**
|