backend-management-ui 1.0.0

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.
@@ -0,0 +1,4763 @@
1
+ (function webpackUniversalModuleDefinition(root, factory) {
2
+ if(typeof exports === 'object' && typeof module === 'object')
3
+ module.exports = factory();
4
+ else if(typeof define === 'function' && define.amd)
5
+ define([], factory);
6
+ else if(typeof exports === 'object')
7
+ exports["backend-management-ui"] = factory();
8
+ else
9
+ root["backend-management-ui"] = factory();
10
+ })((typeof self !== 'undefined' ? self : this), function() {
11
+ return /******/ (function() { // webpackBootstrap
12
+ /******/ var __webpack_modules__ = ({
13
+
14
+ /***/ 34:
15
+ /***/ (function(module, __unused_webpack_exports, __webpack_require__) {
16
+
17
+ "use strict";
18
+
19
+ var isCallable = __webpack_require__(4901);
20
+
21
+ module.exports = function (it) {
22
+ return typeof it == 'object' ? it !== null : isCallable(it);
23
+ };
24
+
25
+
26
+ /***/ }),
27
+
28
+ /***/ 81:
29
+ /***/ (function(module, __unused_webpack_exports, __webpack_require__) {
30
+
31
+ "use strict";
32
+
33
+ var call = __webpack_require__(9565);
34
+ var aCallable = __webpack_require__(9306);
35
+ var anObject = __webpack_require__(8551);
36
+ var tryToString = __webpack_require__(6823);
37
+ var getIteratorMethod = __webpack_require__(851);
38
+
39
+ var $TypeError = TypeError;
40
+
41
+ module.exports = function (argument, usingIterator) {
42
+ var iteratorMethod = arguments.length < 2 ? getIteratorMethod(argument) : usingIterator;
43
+ if (aCallable(iteratorMethod)) return anObject(call(iteratorMethod, argument));
44
+ throw new $TypeError(tryToString(argument) + ' is not iterable');
45
+ };
46
+
47
+
48
+ /***/ }),
49
+
50
+ /***/ 283:
51
+ /***/ (function(module, __unused_webpack_exports, __webpack_require__) {
52
+
53
+ "use strict";
54
+
55
+ var uncurryThis = __webpack_require__(9504);
56
+ var fails = __webpack_require__(9039);
57
+ var isCallable = __webpack_require__(4901);
58
+ var hasOwn = __webpack_require__(9297);
59
+ var DESCRIPTORS = __webpack_require__(3724);
60
+ var CONFIGURABLE_FUNCTION_NAME = (__webpack_require__(350).CONFIGURABLE);
61
+ var inspectSource = __webpack_require__(3706);
62
+ var InternalStateModule = __webpack_require__(1181);
63
+
64
+ var enforceInternalState = InternalStateModule.enforce;
65
+ var getInternalState = InternalStateModule.get;
66
+ var $String = String;
67
+ // eslint-disable-next-line es/no-object-defineproperty -- safe
68
+ var defineProperty = Object.defineProperty;
69
+ var stringSlice = uncurryThis(''.slice);
70
+ var replace = uncurryThis(''.replace);
71
+ var join = uncurryThis([].join);
72
+
73
+ var CONFIGURABLE_LENGTH = DESCRIPTORS && !fails(function () {
74
+ return defineProperty(function () { /* empty */ }, 'length', { value: 8 }).length !== 8;
75
+ });
76
+
77
+ var TEMPLATE = String(String).split('String');
78
+
79
+ var makeBuiltIn = module.exports = function (value, name, options) {
80
+ if (stringSlice($String(name), 0, 7) === 'Symbol(') {
81
+ name = '[' + replace($String(name), /^Symbol\(([^)]*)\).*$/, '$1') + ']';
82
+ }
83
+ if (options && options.getter) name = 'get ' + name;
84
+ if (options && options.setter) name = 'set ' + name;
85
+ if (!hasOwn(value, 'name') || (CONFIGURABLE_FUNCTION_NAME && value.name !== name)) {
86
+ if (DESCRIPTORS) defineProperty(value, 'name', { value: name, configurable: true });
87
+ else value.name = name;
88
+ }
89
+ if (CONFIGURABLE_LENGTH && options && hasOwn(options, 'arity') && value.length !== options.arity) {
90
+ defineProperty(value, 'length', { value: options.arity });
91
+ }
92
+ try {
93
+ if (options && hasOwn(options, 'constructor') && options.constructor) {
94
+ if (DESCRIPTORS) defineProperty(value, 'prototype', { writable: false });
95
+ // in V8 ~ Chrome 53, prototypes of some methods, like `Array.prototype.values`, are non-writable
96
+ } else if (value.prototype) value.prototype = undefined;
97
+ } catch (error) { /* empty */ }
98
+ var state = enforceInternalState(value);
99
+ if (!hasOwn(state, 'source')) {
100
+ state.source = join(TEMPLATE, typeof name == 'string' ? name : '');
101
+ } return value;
102
+ };
103
+
104
+ // add fake Function#toString for correct work wrapped methods / constructors with methods like LoDash isNative
105
+ // eslint-disable-next-line no-extend-native -- required
106
+ Function.prototype.toString = makeBuiltIn(function toString() {
107
+ return isCallable(this) && getInternalState(this).source || inspectSource(this);
108
+ }, 'toString');
109
+
110
+
111
+ /***/ }),
112
+
113
+ /***/ 350:
114
+ /***/ (function(module, __unused_webpack_exports, __webpack_require__) {
115
+
116
+ "use strict";
117
+
118
+ var DESCRIPTORS = __webpack_require__(3724);
119
+ var hasOwn = __webpack_require__(9297);
120
+
121
+ var FunctionPrototype = Function.prototype;
122
+ // eslint-disable-next-line es/no-object-getownpropertydescriptor -- safe
123
+ var getDescriptor = DESCRIPTORS && Object.getOwnPropertyDescriptor;
124
+
125
+ var EXISTS = hasOwn(FunctionPrototype, 'name');
126
+ // additional protection from minified / mangled / dropped function names
127
+ var PROPER = EXISTS && (function something() { /* empty */ }).name === 'something';
128
+ var CONFIGURABLE = EXISTS && (!DESCRIPTORS || (DESCRIPTORS && getDescriptor(FunctionPrototype, 'name').configurable));
129
+
130
+ module.exports = {
131
+ EXISTS: EXISTS,
132
+ PROPER: PROPER,
133
+ CONFIGURABLE: CONFIGURABLE
134
+ };
135
+
136
+
137
+ /***/ }),
138
+
139
+ /***/ 397:
140
+ /***/ (function(module, __unused_webpack_exports, __webpack_require__) {
141
+
142
+ "use strict";
143
+
144
+ var getBuiltIn = __webpack_require__(7751);
145
+
146
+ module.exports = getBuiltIn('document', 'documentElement');
147
+
148
+
149
+ /***/ }),
150
+
151
+ /***/ 421:
152
+ /***/ (function(module) {
153
+
154
+ "use strict";
155
+
156
+ module.exports = {};
157
+
158
+
159
+ /***/ }),
160
+
161
+ /***/ 507:
162
+ /***/ (function(module, __unused_webpack_exports, __webpack_require__) {
163
+
164
+ "use strict";
165
+
166
+ var call = __webpack_require__(9565);
167
+
168
+ module.exports = function (record, fn, ITERATOR_INSTEAD_OF_RECORD) {
169
+ var iterator = ITERATOR_INSTEAD_OF_RECORD ? record : record.iterator;
170
+ var next = record.next;
171
+ var step, result;
172
+ while (!(step = call(next, iterator)).done) {
173
+ result = fn(step.value);
174
+ if (result !== undefined) return result;
175
+ }
176
+ };
177
+
178
+
179
+ /***/ }),
180
+
181
+ /***/ 616:
182
+ /***/ (function(module, __unused_webpack_exports, __webpack_require__) {
183
+
184
+ "use strict";
185
+
186
+ var fails = __webpack_require__(9039);
187
+
188
+ module.exports = !fails(function () {
189
+ // eslint-disable-next-line es/no-function-prototype-bind -- safe
190
+ var test = (function () { /* empty */ }).bind();
191
+ // eslint-disable-next-line no-prototype-builtins -- safe
192
+ return typeof test != 'function' || test.hasOwnProperty('prototype');
193
+ });
194
+
195
+
196
+ /***/ }),
197
+
198
+ /***/ 679:
199
+ /***/ (function(module, __unused_webpack_exports, __webpack_require__) {
200
+
201
+ "use strict";
202
+
203
+ var isPrototypeOf = __webpack_require__(1625);
204
+
205
+ var $TypeError = TypeError;
206
+
207
+ module.exports = function (it, Prototype) {
208
+ if (isPrototypeOf(Prototype, it)) return it;
209
+ throw new $TypeError('Incorrect invocation');
210
+ };
211
+
212
+
213
+ /***/ }),
214
+
215
+ /***/ 741:
216
+ /***/ (function(module) {
217
+
218
+ "use strict";
219
+
220
+ var ceil = Math.ceil;
221
+ var floor = Math.floor;
222
+
223
+ // `Math.trunc` method
224
+ // https://tc39.es/ecma262/#sec-math.trunc
225
+ // eslint-disable-next-line es/no-math-trunc -- safe
226
+ module.exports = Math.trunc || function trunc(x) {
227
+ var n = +x;
228
+ return (n > 0 ? floor : ceil)(n);
229
+ };
230
+
231
+
232
+ /***/ }),
233
+
234
+ /***/ 757:
235
+ /***/ (function(module, __unused_webpack_exports, __webpack_require__) {
236
+
237
+ "use strict";
238
+
239
+ var getBuiltIn = __webpack_require__(7751);
240
+ var isCallable = __webpack_require__(4901);
241
+ var isPrototypeOf = __webpack_require__(1625);
242
+ var USE_SYMBOL_AS_UID = __webpack_require__(7040);
243
+
244
+ var $Object = Object;
245
+
246
+ module.exports = USE_SYMBOL_AS_UID ? function (it) {
247
+ return typeof it == 'symbol';
248
+ } : function (it) {
249
+ var $Symbol = getBuiltIn('Symbol');
250
+ return isCallable($Symbol) && isPrototypeOf($Symbol.prototype, $Object(it));
251
+ };
252
+
253
+
254
+ /***/ }),
255
+
256
+ /***/ 851:
257
+ /***/ (function(module, __unused_webpack_exports, __webpack_require__) {
258
+
259
+ "use strict";
260
+
261
+ var classof = __webpack_require__(6955);
262
+ var getMethod = __webpack_require__(5966);
263
+ var isNullOrUndefined = __webpack_require__(4117);
264
+ var Iterators = __webpack_require__(6269);
265
+ var wellKnownSymbol = __webpack_require__(8227);
266
+
267
+ var ITERATOR = wellKnownSymbol('iterator');
268
+
269
+ module.exports = function (it) {
270
+ if (!isNullOrUndefined(it)) return getMethod(it, ITERATOR)
271
+ || getMethod(it, '@@iterator')
272
+ || Iterators[classof(it)];
273
+ };
274
+
275
+
276
+ /***/ }),
277
+
278
+ /***/ 1072:
279
+ /***/ (function(module, __unused_webpack_exports, __webpack_require__) {
280
+
281
+ "use strict";
282
+
283
+ var internalObjectKeys = __webpack_require__(1828);
284
+ var enumBugKeys = __webpack_require__(8727);
285
+
286
+ // `Object.keys` method
287
+ // https://tc39.es/ecma262/#sec-object.keys
288
+ // eslint-disable-next-line es/no-object-keys -- safe
289
+ module.exports = Object.keys || function keys(O) {
290
+ return internalObjectKeys(O, enumBugKeys);
291
+ };
292
+
293
+
294
+ /***/ }),
295
+
296
+ /***/ 1148:
297
+ /***/ (function(__unused_webpack_module, __unused_webpack_exports, __webpack_require__) {
298
+
299
+ "use strict";
300
+
301
+ var $ = __webpack_require__(6518);
302
+ var call = __webpack_require__(9565);
303
+ var iterate = __webpack_require__(2652);
304
+ var aCallable = __webpack_require__(9306);
305
+ var anObject = __webpack_require__(8551);
306
+ var getIteratorDirect = __webpack_require__(1767);
307
+ var iteratorClose = __webpack_require__(9539);
308
+ var iteratorHelperWithoutClosingOnEarlyError = __webpack_require__(4549);
309
+
310
+ var everyWithoutClosingOnEarlyError = iteratorHelperWithoutClosingOnEarlyError('every', TypeError);
311
+
312
+ // `Iterator.prototype.every` method
313
+ // https://tc39.es/ecma262/#sec-iterator.prototype.every
314
+ $({ target: 'Iterator', proto: true, real: true, forced: everyWithoutClosingOnEarlyError }, {
315
+ every: function every(predicate) {
316
+ anObject(this);
317
+ try {
318
+ aCallable(predicate);
319
+ } catch (error) {
320
+ iteratorClose(this, 'throw', error);
321
+ }
322
+
323
+ if (everyWithoutClosingOnEarlyError) return call(everyWithoutClosingOnEarlyError, this, predicate);
324
+
325
+ var record = getIteratorDirect(this);
326
+ var counter = 0;
327
+ return !iterate(record, function (value, stop) {
328
+ if (!predicate(value, counter++)) return stop();
329
+ }, { IS_RECORD: true, INTERRUPTED: true }).stopped;
330
+ }
331
+ });
332
+
333
+
334
+ /***/ }),
335
+
336
+ /***/ 1181:
337
+ /***/ (function(module, __unused_webpack_exports, __webpack_require__) {
338
+
339
+ "use strict";
340
+
341
+ var NATIVE_WEAK_MAP = __webpack_require__(8622);
342
+ var globalThis = __webpack_require__(4576);
343
+ var isObject = __webpack_require__(34);
344
+ var createNonEnumerableProperty = __webpack_require__(6699);
345
+ var hasOwn = __webpack_require__(9297);
346
+ var shared = __webpack_require__(7629);
347
+ var sharedKey = __webpack_require__(6119);
348
+ var hiddenKeys = __webpack_require__(421);
349
+
350
+ var OBJECT_ALREADY_INITIALIZED = 'Object already initialized';
351
+ var TypeError = globalThis.TypeError;
352
+ var WeakMap = globalThis.WeakMap;
353
+ var set, get, has;
354
+
355
+ var enforce = function (it) {
356
+ return has(it) ? get(it) : set(it, {});
357
+ };
358
+
359
+ var getterFor = function (TYPE) {
360
+ return function (it) {
361
+ var state;
362
+ if (!isObject(it) || (state = get(it)).type !== TYPE) {
363
+ throw new TypeError('Incompatible receiver, ' + TYPE + ' required');
364
+ } return state;
365
+ };
366
+ };
367
+
368
+ if (NATIVE_WEAK_MAP || shared.state) {
369
+ var store = shared.state || (shared.state = new WeakMap());
370
+ /* eslint-disable no-self-assign -- prototype methods protection */
371
+ store.get = store.get;
372
+ store.has = store.has;
373
+ store.set = store.set;
374
+ /* eslint-enable no-self-assign -- prototype methods protection */
375
+ set = function (it, metadata) {
376
+ if (store.has(it)) throw new TypeError(OBJECT_ALREADY_INITIALIZED);
377
+ metadata.facade = it;
378
+ store.set(it, metadata);
379
+ return metadata;
380
+ };
381
+ get = function (it) {
382
+ return store.get(it) || {};
383
+ };
384
+ has = function (it) {
385
+ return store.has(it);
386
+ };
387
+ } else {
388
+ var STATE = sharedKey('state');
389
+ hiddenKeys[STATE] = true;
390
+ set = function (it, metadata) {
391
+ if (hasOwn(it, STATE)) throw new TypeError(OBJECT_ALREADY_INITIALIZED);
392
+ metadata.facade = it;
393
+ createNonEnumerableProperty(it, STATE, metadata);
394
+ return metadata;
395
+ };
396
+ get = function (it) {
397
+ return hasOwn(it, STATE) ? it[STATE] : {};
398
+ };
399
+ has = function (it) {
400
+ return hasOwn(it, STATE);
401
+ };
402
+ }
403
+
404
+ module.exports = {
405
+ set: set,
406
+ get: get,
407
+ has: has,
408
+ enforce: enforce,
409
+ getterFor: getterFor
410
+ };
411
+
412
+
413
+ /***/ }),
414
+
415
+ /***/ 1291:
416
+ /***/ (function(module, __unused_webpack_exports, __webpack_require__) {
417
+
418
+ "use strict";
419
+
420
+ var trunc = __webpack_require__(741);
421
+
422
+ // `ToIntegerOrInfinity` abstract operation
423
+ // https://tc39.es/ecma262/#sec-tointegerorinfinity
424
+ module.exports = function (argument) {
425
+ var number = +argument;
426
+ // eslint-disable-next-line no-self-compare -- NaN check
427
+ return number !== number || number === 0 ? 0 : trunc(number);
428
+ };
429
+
430
+
431
+ /***/ }),
432
+
433
+ /***/ 1548:
434
+ /***/ (function(module, __unused_webpack_exports, __webpack_require__) {
435
+
436
+ "use strict";
437
+
438
+ var globalThis = __webpack_require__(4576);
439
+ var fails = __webpack_require__(9039);
440
+ var V8 = __webpack_require__(9519);
441
+ var ENVIRONMENT = __webpack_require__(4215);
442
+
443
+ var structuredClone = globalThis.structuredClone;
444
+
445
+ module.exports = !!structuredClone && !fails(function () {
446
+ // prevent V8 ArrayBufferDetaching protector cell invalidation and performance degradation
447
+ // https://github.com/zloirock/core-js/issues/679
448
+ if ((ENVIRONMENT === 'DENO' && V8 > 92) || (ENVIRONMENT === 'NODE' && V8 > 94) || (ENVIRONMENT === 'BROWSER' && V8 > 97)) return false;
449
+ var buffer = new ArrayBuffer(8);
450
+ var clone = structuredClone(buffer, { transfer: [buffer] });
451
+ return buffer.byteLength !== 0 || clone.byteLength !== 8;
452
+ });
453
+
454
+
455
+ /***/ }),
456
+
457
+ /***/ 1625:
458
+ /***/ (function(module, __unused_webpack_exports, __webpack_require__) {
459
+
460
+ "use strict";
461
+
462
+ var uncurryThis = __webpack_require__(9504);
463
+
464
+ module.exports = uncurryThis({}.isPrototypeOf);
465
+
466
+
467
+ /***/ }),
468
+
469
+ /***/ 1698:
470
+ /***/ (function(__unused_webpack_module, __unused_webpack_exports, __webpack_require__) {
471
+
472
+ "use strict";
473
+
474
+ var $ = __webpack_require__(6518);
475
+ var union = __webpack_require__(4204);
476
+ var setMethodGetKeysBeforeCloning = __webpack_require__(9835);
477
+ var setMethodAcceptSetLike = __webpack_require__(4916);
478
+
479
+ var FORCED = !setMethodAcceptSetLike('union') || !setMethodGetKeysBeforeCloning('union');
480
+
481
+ // `Set.prototype.union` method
482
+ // https://tc39.es/ecma262/#sec-set.prototype.union
483
+ $({ target: 'Set', proto: true, real: true, forced: FORCED }, {
484
+ union: union
485
+ });
486
+
487
+
488
+ /***/ }),
489
+
490
+ /***/ 1767:
491
+ /***/ (function(module) {
492
+
493
+ "use strict";
494
+
495
+ // `GetIteratorDirect(obj)` abstract operation
496
+ // https://tc39.es/ecma262/#sec-getiteratordirect
497
+ module.exports = function (obj) {
498
+ return {
499
+ iterator: obj,
500
+ next: obj.next,
501
+ done: false
502
+ };
503
+ };
504
+
505
+
506
+ /***/ }),
507
+
508
+ /***/ 1828:
509
+ /***/ (function(module, __unused_webpack_exports, __webpack_require__) {
510
+
511
+ "use strict";
512
+
513
+ var uncurryThis = __webpack_require__(9504);
514
+ var hasOwn = __webpack_require__(9297);
515
+ var toIndexedObject = __webpack_require__(5397);
516
+ var indexOf = (__webpack_require__(9617).indexOf);
517
+ var hiddenKeys = __webpack_require__(421);
518
+
519
+ var push = uncurryThis([].push);
520
+
521
+ module.exports = function (object, names) {
522
+ var O = toIndexedObject(object);
523
+ var i = 0;
524
+ var result = [];
525
+ var key;
526
+ for (key in O) !hasOwn(hiddenKeys, key) && hasOwn(O, key) && push(result, key);
527
+ // Don't enum bug & hidden keys
528
+ while (names.length > i) if (hasOwn(O, key = names[i++])) {
529
+ ~indexOf(result, key) || push(result, key);
530
+ }
531
+ return result;
532
+ };
533
+
534
+
535
+ /***/ }),
536
+
537
+ /***/ 2106:
538
+ /***/ (function(module, __unused_webpack_exports, __webpack_require__) {
539
+
540
+ "use strict";
541
+
542
+ var makeBuiltIn = __webpack_require__(283);
543
+ var defineProperty = __webpack_require__(4913);
544
+
545
+ module.exports = function (target, name, descriptor) {
546
+ if (descriptor.get) makeBuiltIn(descriptor.get, name, { getter: true });
547
+ if (descriptor.set) makeBuiltIn(descriptor.set, name, { setter: true });
548
+ return defineProperty.f(target, name, descriptor);
549
+ };
550
+
551
+
552
+ /***/ }),
553
+
554
+ /***/ 2140:
555
+ /***/ (function(module, __unused_webpack_exports, __webpack_require__) {
556
+
557
+ "use strict";
558
+
559
+ var wellKnownSymbol = __webpack_require__(8227);
560
+
561
+ var TO_STRING_TAG = wellKnownSymbol('toStringTag');
562
+ var test = {};
563
+ // eslint-disable-next-line unicorn/no-immediate-mutation -- ES3 syntax limitation
564
+ test[TO_STRING_TAG] = 'z';
565
+
566
+ module.exports = String(test) === '[object z]';
567
+
568
+
569
+ /***/ }),
570
+
571
+ /***/ 2195:
572
+ /***/ (function(module, __unused_webpack_exports, __webpack_require__) {
573
+
574
+ "use strict";
575
+
576
+ var uncurryThis = __webpack_require__(9504);
577
+
578
+ var toString = uncurryThis({}.toString);
579
+ var stringSlice = uncurryThis(''.slice);
580
+
581
+ module.exports = function (it) {
582
+ return stringSlice(toString(it), 8, -1);
583
+ };
584
+
585
+
586
+ /***/ }),
587
+
588
+ /***/ 2211:
589
+ /***/ (function(module, __unused_webpack_exports, __webpack_require__) {
590
+
591
+ "use strict";
592
+
593
+ var fails = __webpack_require__(9039);
594
+
595
+ module.exports = !fails(function () {
596
+ function F() { /* empty */ }
597
+ F.prototype.constructor = null;
598
+ // eslint-disable-next-line es/no-object-getprototypeof -- required for testing
599
+ return Object.getPrototypeOf(new F()) !== F.prototype;
600
+ });
601
+
602
+
603
+ /***/ }),
604
+
605
+ /***/ 2360:
606
+ /***/ (function(module, __unused_webpack_exports, __webpack_require__) {
607
+
608
+ "use strict";
609
+
610
+ /* global ActiveXObject -- old IE, WSH */
611
+ var anObject = __webpack_require__(8551);
612
+ var definePropertiesModule = __webpack_require__(6801);
613
+ var enumBugKeys = __webpack_require__(8727);
614
+ var hiddenKeys = __webpack_require__(421);
615
+ var html = __webpack_require__(397);
616
+ var documentCreateElement = __webpack_require__(4055);
617
+ var sharedKey = __webpack_require__(6119);
618
+
619
+ var GT = '>';
620
+ var LT = '<';
621
+ var PROTOTYPE = 'prototype';
622
+ var SCRIPT = 'script';
623
+ var IE_PROTO = sharedKey('IE_PROTO');
624
+
625
+ var EmptyConstructor = function () { /* empty */ };
626
+
627
+ var scriptTag = function (content) {
628
+ return LT + SCRIPT + GT + content + LT + '/' + SCRIPT + GT;
629
+ };
630
+
631
+ // Create object with fake `null` prototype: use ActiveX Object with cleared prototype
632
+ var NullProtoObjectViaActiveX = function (activeXDocument) {
633
+ activeXDocument.write(scriptTag(''));
634
+ activeXDocument.close();
635
+ var temp = activeXDocument.parentWindow.Object;
636
+ // eslint-disable-next-line no-useless-assignment -- avoid memory leak
637
+ activeXDocument = null;
638
+ return temp;
639
+ };
640
+
641
+ // Create object with fake `null` prototype: use iframe Object with cleared prototype
642
+ var NullProtoObjectViaIFrame = function () {
643
+ // Thrash, waste and sodomy: IE GC bug
644
+ var iframe = documentCreateElement('iframe');
645
+ var JS = 'java' + SCRIPT + ':';
646
+ var iframeDocument;
647
+ iframe.style.display = 'none';
648
+ html.appendChild(iframe);
649
+ // https://github.com/zloirock/core-js/issues/475
650
+ iframe.src = String(JS);
651
+ iframeDocument = iframe.contentWindow.document;
652
+ iframeDocument.open();
653
+ iframeDocument.write(scriptTag('document.F=Object'));
654
+ iframeDocument.close();
655
+ return iframeDocument.F;
656
+ };
657
+
658
+ // Check for document.domain and active x support
659
+ // No need to use active x approach when document.domain is not set
660
+ // see https://github.com/es-shims/es5-shim/issues/150
661
+ // variation of https://github.com/kitcambridge/es5-shim/commit/4f738ac066346
662
+ // avoid IE GC bug
663
+ var activeXDocument;
664
+ var NullProtoObject = function () {
665
+ try {
666
+ activeXDocument = new ActiveXObject('htmlfile');
667
+ } catch (error) { /* ignore */ }
668
+ NullProtoObject = typeof document != 'undefined'
669
+ ? document.domain && activeXDocument
670
+ ? NullProtoObjectViaActiveX(activeXDocument) // old IE
671
+ : NullProtoObjectViaIFrame()
672
+ : NullProtoObjectViaActiveX(activeXDocument); // WSH
673
+ var length = enumBugKeys.length;
674
+ while (length--) delete NullProtoObject[PROTOTYPE][enumBugKeys[length]];
675
+ return NullProtoObject();
676
+ };
677
+
678
+ hiddenKeys[IE_PROTO] = true;
679
+
680
+ // `Object.create` method
681
+ // https://tc39.es/ecma262/#sec-object.create
682
+ // eslint-disable-next-line es/no-object-create -- safe
683
+ module.exports = Object.create || function create(O, Properties) {
684
+ var result;
685
+ if (O !== null) {
686
+ EmptyConstructor[PROTOTYPE] = anObject(O);
687
+ result = new EmptyConstructor();
688
+ EmptyConstructor[PROTOTYPE] = null;
689
+ // add "__proto__" for Object.getPrototypeOf polyfill
690
+ result[IE_PROTO] = O;
691
+ } else result = NullProtoObject();
692
+ return Properties === undefined ? result : definePropertiesModule.f(result, Properties);
693
+ };
694
+
695
+
696
+ /***/ }),
697
+
698
+ /***/ 2475:
699
+ /***/ (function(__unused_webpack_module, __unused_webpack_exports, __webpack_require__) {
700
+
701
+ "use strict";
702
+
703
+ var $ = __webpack_require__(6518);
704
+ var isSupersetOf = __webpack_require__(8527);
705
+ var setMethodAcceptSetLike = __webpack_require__(4916);
706
+
707
+ var INCORRECT = !setMethodAcceptSetLike('isSupersetOf', function (result) {
708
+ return !result;
709
+ });
710
+
711
+ // `Set.prototype.isSupersetOf` method
712
+ // https://tc39.es/ecma262/#sec-set.prototype.issupersetof
713
+ $({ target: 'Set', proto: true, real: true, forced: INCORRECT }, {
714
+ isSupersetOf: isSupersetOf
715
+ });
716
+
717
+
718
+ /***/ }),
719
+
720
+ /***/ 2652:
721
+ /***/ (function(module, __unused_webpack_exports, __webpack_require__) {
722
+
723
+ "use strict";
724
+
725
+ var bind = __webpack_require__(6080);
726
+ var call = __webpack_require__(9565);
727
+ var anObject = __webpack_require__(8551);
728
+ var tryToString = __webpack_require__(6823);
729
+ var isArrayIteratorMethod = __webpack_require__(4209);
730
+ var lengthOfArrayLike = __webpack_require__(6198);
731
+ var isPrototypeOf = __webpack_require__(1625);
732
+ var getIterator = __webpack_require__(81);
733
+ var getIteratorMethod = __webpack_require__(851);
734
+ var iteratorClose = __webpack_require__(9539);
735
+
736
+ var $TypeError = TypeError;
737
+
738
+ var Result = function (stopped, result) {
739
+ this.stopped = stopped;
740
+ this.result = result;
741
+ };
742
+
743
+ var ResultPrototype = Result.prototype;
744
+
745
+ module.exports = function (iterable, unboundFunction, options) {
746
+ var that = options && options.that;
747
+ var AS_ENTRIES = !!(options && options.AS_ENTRIES);
748
+ var IS_RECORD = !!(options && options.IS_RECORD);
749
+ var IS_ITERATOR = !!(options && options.IS_ITERATOR);
750
+ var INTERRUPTED = !!(options && options.INTERRUPTED);
751
+ var fn = bind(unboundFunction, that);
752
+ var iterator, iterFn, index, length, result, next, step;
753
+
754
+ var stop = function (condition) {
755
+ if (iterator) iteratorClose(iterator, 'normal');
756
+ return new Result(true, condition);
757
+ };
758
+
759
+ var callFn = function (value) {
760
+ if (AS_ENTRIES) {
761
+ anObject(value);
762
+ return INTERRUPTED ? fn(value[0], value[1], stop) : fn(value[0], value[1]);
763
+ } return INTERRUPTED ? fn(value, stop) : fn(value);
764
+ };
765
+
766
+ if (IS_RECORD) {
767
+ iterator = iterable.iterator;
768
+ } else if (IS_ITERATOR) {
769
+ iterator = iterable;
770
+ } else {
771
+ iterFn = getIteratorMethod(iterable);
772
+ if (!iterFn) throw new $TypeError(tryToString(iterable) + ' is not iterable');
773
+ // optimisation for array iterators
774
+ if (isArrayIteratorMethod(iterFn)) {
775
+ for (index = 0, length = lengthOfArrayLike(iterable); length > index; index++) {
776
+ result = callFn(iterable[index]);
777
+ if (result && isPrototypeOf(ResultPrototype, result)) return result;
778
+ } return new Result(false);
779
+ }
780
+ iterator = getIterator(iterable, iterFn);
781
+ }
782
+
783
+ next = IS_RECORD ? iterable.next : iterator.next;
784
+ while (!(step = call(next, iterator)).done) {
785
+ try {
786
+ result = callFn(step.value);
787
+ } catch (error) {
788
+ iteratorClose(iterator, 'throw', error);
789
+ }
790
+ if (typeof result == 'object' && result && isPrototypeOf(ResultPrototype, result)) return result;
791
+ } return new Result(false);
792
+ };
793
+
794
+
795
+ /***/ }),
796
+
797
+ /***/ 2777:
798
+ /***/ (function(module, __unused_webpack_exports, __webpack_require__) {
799
+
800
+ "use strict";
801
+
802
+ var call = __webpack_require__(9565);
803
+ var isObject = __webpack_require__(34);
804
+ var isSymbol = __webpack_require__(757);
805
+ var getMethod = __webpack_require__(5966);
806
+ var ordinaryToPrimitive = __webpack_require__(4270);
807
+ var wellKnownSymbol = __webpack_require__(8227);
808
+
809
+ var $TypeError = TypeError;
810
+ var TO_PRIMITIVE = wellKnownSymbol('toPrimitive');
811
+
812
+ // `ToPrimitive` abstract operation
813
+ // https://tc39.es/ecma262/#sec-toprimitive
814
+ module.exports = function (input, pref) {
815
+ if (!isObject(input) || isSymbol(input)) return input;
816
+ var exoticToPrim = getMethod(input, TO_PRIMITIVE);
817
+ var result;
818
+ if (exoticToPrim) {
819
+ if (pref === undefined) pref = 'default';
820
+ result = call(exoticToPrim, input, pref);
821
+ if (!isObject(result) || isSymbol(result)) return result;
822
+ throw new $TypeError("Can't convert object to primitive value");
823
+ }
824
+ if (pref === undefined) pref = 'number';
825
+ return ordinaryToPrimitive(input, pref);
826
+ };
827
+
828
+
829
+ /***/ }),
830
+
831
+ /***/ 2787:
832
+ /***/ (function(module, __unused_webpack_exports, __webpack_require__) {
833
+
834
+ "use strict";
835
+
836
+ var hasOwn = __webpack_require__(9297);
837
+ var isCallable = __webpack_require__(4901);
838
+ var toObject = __webpack_require__(8981);
839
+ var sharedKey = __webpack_require__(6119);
840
+ var CORRECT_PROTOTYPE_GETTER = __webpack_require__(2211);
841
+
842
+ var IE_PROTO = sharedKey('IE_PROTO');
843
+ var $Object = Object;
844
+ var ObjectPrototype = $Object.prototype;
845
+
846
+ // `Object.getPrototypeOf` method
847
+ // https://tc39.es/ecma262/#sec-object.getprototypeof
848
+ // eslint-disable-next-line es/no-object-getprototypeof -- safe
849
+ module.exports = CORRECT_PROTOTYPE_GETTER ? $Object.getPrototypeOf : function (O) {
850
+ var object = toObject(O);
851
+ if (hasOwn(object, IE_PROTO)) return object[IE_PROTO];
852
+ var constructor = object.constructor;
853
+ if (isCallable(constructor) && object instanceof constructor) {
854
+ return constructor.prototype;
855
+ } return object instanceof $Object ? ObjectPrototype : null;
856
+ };
857
+
858
+
859
+ /***/ }),
860
+
861
+ /***/ 2796:
862
+ /***/ (function(module, __unused_webpack_exports, __webpack_require__) {
863
+
864
+ "use strict";
865
+
866
+ var fails = __webpack_require__(9039);
867
+ var isCallable = __webpack_require__(4901);
868
+
869
+ var replacement = /#|\.prototype\./;
870
+
871
+ var isForced = function (feature, detection) {
872
+ var value = data[normalize(feature)];
873
+ return value === POLYFILL ? true
874
+ : value === NATIVE ? false
875
+ : isCallable(detection) ? fails(detection)
876
+ : !!detection;
877
+ };
878
+
879
+ var normalize = isForced.normalize = function (string) {
880
+ return String(string).replace(replacement, '.').toLowerCase();
881
+ };
882
+
883
+ var data = isForced.data = {};
884
+ var NATIVE = isForced.NATIVE = 'N';
885
+ var POLYFILL = isForced.POLYFILL = 'P';
886
+
887
+ module.exports = isForced;
888
+
889
+
890
+ /***/ }),
891
+
892
+ /***/ 2839:
893
+ /***/ (function(module, __unused_webpack_exports, __webpack_require__) {
894
+
895
+ "use strict";
896
+
897
+ var globalThis = __webpack_require__(4576);
898
+
899
+ var navigator = globalThis.navigator;
900
+ var userAgent = navigator && navigator.userAgent;
901
+
902
+ module.exports = userAgent ? String(userAgent) : '';
903
+
904
+
905
+ /***/ }),
906
+
907
+ /***/ 3238:
908
+ /***/ (function(module, __unused_webpack_exports, __webpack_require__) {
909
+
910
+ "use strict";
911
+
912
+ var globalThis = __webpack_require__(4576);
913
+ var NATIVE_ARRAY_BUFFER = __webpack_require__(7811);
914
+ var arrayBufferByteLength = __webpack_require__(7394);
915
+
916
+ var DataView = globalThis.DataView;
917
+
918
+ module.exports = function (O) {
919
+ if (!NATIVE_ARRAY_BUFFER || arrayBufferByteLength(O) !== 0) return false;
920
+ try {
921
+ // eslint-disable-next-line no-new -- thrower
922
+ new DataView(O);
923
+ return false;
924
+ } catch (error) {
925
+ return true;
926
+ }
927
+ };
928
+
929
+
930
+ /***/ }),
931
+
932
+ /***/ 3392:
933
+ /***/ (function(module, __unused_webpack_exports, __webpack_require__) {
934
+
935
+ "use strict";
936
+
937
+ var uncurryThis = __webpack_require__(9504);
938
+
939
+ var id = 0;
940
+ var postfix = Math.random();
941
+ var toString = uncurryThis(1.1.toString);
942
+
943
+ module.exports = function (key) {
944
+ return 'Symbol(' + (key === undefined ? '' : key) + ')_' + toString(++id + postfix, 36);
945
+ };
946
+
947
+
948
+ /***/ }),
949
+
950
+ /***/ 3440:
951
+ /***/ (function(module, __unused_webpack_exports, __webpack_require__) {
952
+
953
+ "use strict";
954
+
955
+ var aSet = __webpack_require__(7080);
956
+ var SetHelpers = __webpack_require__(4402);
957
+ var clone = __webpack_require__(9286);
958
+ var size = __webpack_require__(5170);
959
+ var getSetRecord = __webpack_require__(3789);
960
+ var iterateSet = __webpack_require__(8469);
961
+ var iterateSimple = __webpack_require__(507);
962
+
963
+ var has = SetHelpers.has;
964
+ var remove = SetHelpers.remove;
965
+
966
+ // `Set.prototype.difference` method
967
+ // https://tc39.es/ecma262/#sec-set.prototype.difference
968
+ module.exports = function difference(other) {
969
+ var O = aSet(this);
970
+ var otherRec = getSetRecord(other);
971
+ var result = clone(O);
972
+ if (size(O) <= otherRec.size) iterateSet(O, function (e) {
973
+ if (otherRec.includes(e)) remove(result, e);
974
+ });
975
+ else iterateSimple(otherRec.getIterator(), function (e) {
976
+ if (has(result, e)) remove(result, e);
977
+ });
978
+ return result;
979
+ };
980
+
981
+
982
+ /***/ }),
983
+
984
+ /***/ 3650:
985
+ /***/ (function(module, __unused_webpack_exports, __webpack_require__) {
986
+
987
+ "use strict";
988
+
989
+ var aSet = __webpack_require__(7080);
990
+ var SetHelpers = __webpack_require__(4402);
991
+ var clone = __webpack_require__(9286);
992
+ var getSetRecord = __webpack_require__(3789);
993
+ var iterateSimple = __webpack_require__(507);
994
+
995
+ var add = SetHelpers.add;
996
+ var has = SetHelpers.has;
997
+ var remove = SetHelpers.remove;
998
+
999
+ // `Set.prototype.symmetricDifference` method
1000
+ // https://tc39.es/ecma262/#sec-set.prototype.symmetricdifference
1001
+ module.exports = function symmetricDifference(other) {
1002
+ var O = aSet(this);
1003
+ var keysIter = getSetRecord(other).getIterator();
1004
+ var result = clone(O);
1005
+ iterateSimple(keysIter, function (e) {
1006
+ if (has(O, e)) remove(result, e);
1007
+ else add(result, e);
1008
+ });
1009
+ return result;
1010
+ };
1011
+
1012
+
1013
+ /***/ }),
1014
+
1015
+ /***/ 3706:
1016
+ /***/ (function(module, __unused_webpack_exports, __webpack_require__) {
1017
+
1018
+ "use strict";
1019
+
1020
+ var uncurryThis = __webpack_require__(9504);
1021
+ var isCallable = __webpack_require__(4901);
1022
+ var store = __webpack_require__(7629);
1023
+
1024
+ var functionToString = uncurryThis(Function.toString);
1025
+
1026
+ // this helper broken in `core-js@3.4.1-3.4.4`, so we can't use `shared` helper
1027
+ if (!isCallable(store.inspectSource)) {
1028
+ store.inspectSource = function (it) {
1029
+ return functionToString(it);
1030
+ };
1031
+ }
1032
+
1033
+ module.exports = store.inspectSource;
1034
+
1035
+
1036
+ /***/ }),
1037
+
1038
+ /***/ 3717:
1039
+ /***/ (function(__unused_webpack_module, exports) {
1040
+
1041
+ "use strict";
1042
+
1043
+ // eslint-disable-next-line es/no-object-getownpropertysymbols -- safe
1044
+ exports.f = Object.getOwnPropertySymbols;
1045
+
1046
+
1047
+ /***/ }),
1048
+
1049
+ /***/ 3724:
1050
+ /***/ (function(module, __unused_webpack_exports, __webpack_require__) {
1051
+
1052
+ "use strict";
1053
+
1054
+ var fails = __webpack_require__(9039);
1055
+
1056
+ // Detect IE8's incomplete defineProperty implementation
1057
+ module.exports = !fails(function () {
1058
+ // eslint-disable-next-line es/no-object-defineproperty -- required for testing
1059
+ return Object.defineProperty({}, 1, { get: function () { return 7; } })[1] !== 7;
1060
+ });
1061
+
1062
+
1063
+ /***/ }),
1064
+
1065
+ /***/ 3789:
1066
+ /***/ (function(module, __unused_webpack_exports, __webpack_require__) {
1067
+
1068
+ "use strict";
1069
+
1070
+ var aCallable = __webpack_require__(9306);
1071
+ var anObject = __webpack_require__(8551);
1072
+ var call = __webpack_require__(9565);
1073
+ var toIntegerOrInfinity = __webpack_require__(1291);
1074
+ var getIteratorDirect = __webpack_require__(1767);
1075
+
1076
+ var INVALID_SIZE = 'Invalid size';
1077
+ var $RangeError = RangeError;
1078
+ var $TypeError = TypeError;
1079
+ var max = Math.max;
1080
+
1081
+ var SetRecord = function (set, intSize) {
1082
+ this.set = set;
1083
+ this.size = max(intSize, 0);
1084
+ this.has = aCallable(set.has);
1085
+ this.keys = aCallable(set.keys);
1086
+ };
1087
+
1088
+ SetRecord.prototype = {
1089
+ getIterator: function () {
1090
+ return getIteratorDirect(anObject(call(this.keys, this.set)));
1091
+ },
1092
+ includes: function (it) {
1093
+ return call(this.has, this.set, it);
1094
+ }
1095
+ };
1096
+
1097
+ // `GetSetRecord` abstract operation
1098
+ // https://tc39.es/proposal-set-methods/#sec-getsetrecord
1099
+ module.exports = function (obj) {
1100
+ anObject(obj);
1101
+ var numSize = +obj.size;
1102
+ // NOTE: If size is undefined, then numSize will be NaN
1103
+ // eslint-disable-next-line no-self-compare -- NaN check
1104
+ if (numSize !== numSize) throw new $TypeError(INVALID_SIZE);
1105
+ var intSize = toIntegerOrInfinity(numSize);
1106
+ if (intSize < 0) throw new $RangeError(INVALID_SIZE);
1107
+ return new SetRecord(obj, intSize);
1108
+ };
1109
+
1110
+
1111
+ /***/ }),
1112
+
1113
+ /***/ 3838:
1114
+ /***/ (function(module, __unused_webpack_exports, __webpack_require__) {
1115
+
1116
+ "use strict";
1117
+
1118
+ var aSet = __webpack_require__(7080);
1119
+ var size = __webpack_require__(5170);
1120
+ var iterate = __webpack_require__(8469);
1121
+ var getSetRecord = __webpack_require__(3789);
1122
+
1123
+ // `Set.prototype.isSubsetOf` method
1124
+ // https://tc39.es/ecma262/#sec-set.prototype.issubsetof
1125
+ module.exports = function isSubsetOf(other) {
1126
+ var O = aSet(this);
1127
+ var otherRec = getSetRecord(other);
1128
+ if (size(O) > otherRec.size) return false;
1129
+ return iterate(O, function (e) {
1130
+ if (!otherRec.includes(e)) return false;
1131
+ }, true) !== false;
1132
+ };
1133
+
1134
+
1135
+ /***/ }),
1136
+
1137
+ /***/ 3853:
1138
+ /***/ (function(__unused_webpack_module, __unused_webpack_exports, __webpack_require__) {
1139
+
1140
+ "use strict";
1141
+
1142
+ var $ = __webpack_require__(6518);
1143
+ var isDisjointFrom = __webpack_require__(4449);
1144
+ var setMethodAcceptSetLike = __webpack_require__(4916);
1145
+
1146
+ var INCORRECT = !setMethodAcceptSetLike('isDisjointFrom', function (result) {
1147
+ return !result;
1148
+ });
1149
+
1150
+ // `Set.prototype.isDisjointFrom` method
1151
+ // https://tc39.es/ecma262/#sec-set.prototype.isdisjointfrom
1152
+ $({ target: 'Set', proto: true, real: true, forced: INCORRECT }, {
1153
+ isDisjointFrom: isDisjointFrom
1154
+ });
1155
+
1156
+
1157
+ /***/ }),
1158
+
1159
+ /***/ 4055:
1160
+ /***/ (function(module, __unused_webpack_exports, __webpack_require__) {
1161
+
1162
+ "use strict";
1163
+
1164
+ var globalThis = __webpack_require__(4576);
1165
+ var isObject = __webpack_require__(34);
1166
+
1167
+ var document = globalThis.document;
1168
+ // typeof document.createElement is 'object' in old IE
1169
+ var EXISTS = isObject(document) && isObject(document.createElement);
1170
+
1171
+ module.exports = function (it) {
1172
+ return EXISTS ? document.createElement(it) : {};
1173
+ };
1174
+
1175
+
1176
+ /***/ }),
1177
+
1178
+ /***/ 4114:
1179
+ /***/ (function(__unused_webpack_module, __unused_webpack_exports, __webpack_require__) {
1180
+
1181
+ "use strict";
1182
+
1183
+ var $ = __webpack_require__(6518);
1184
+ var toObject = __webpack_require__(8981);
1185
+ var lengthOfArrayLike = __webpack_require__(6198);
1186
+ var setArrayLength = __webpack_require__(4527);
1187
+ var doesNotExceedSafeInteger = __webpack_require__(6837);
1188
+ var fails = __webpack_require__(9039);
1189
+
1190
+ var INCORRECT_TO_LENGTH = fails(function () {
1191
+ return [].push.call({ length: 0x100000000 }, 1) !== 4294967297;
1192
+ });
1193
+
1194
+ // V8 <= 121 and Safari <= 15.4; FF < 23 throws InternalError
1195
+ // https://bugs.chromium.org/p/v8/issues/detail?id=12681
1196
+ var properErrorOnNonWritableLength = function () {
1197
+ try {
1198
+ // eslint-disable-next-line es/no-object-defineproperty -- safe
1199
+ Object.defineProperty([], 'length', { writable: false }).push();
1200
+ } catch (error) {
1201
+ return error instanceof TypeError;
1202
+ }
1203
+ };
1204
+
1205
+ var FORCED = INCORRECT_TO_LENGTH || !properErrorOnNonWritableLength();
1206
+
1207
+ // `Array.prototype.push` method
1208
+ // https://tc39.es/ecma262/#sec-array.prototype.push
1209
+ $({ target: 'Array', proto: true, arity: 1, forced: FORCED }, {
1210
+ // eslint-disable-next-line no-unused-vars -- required for `.length`
1211
+ push: function push(item) {
1212
+ var O = toObject(this);
1213
+ var len = lengthOfArrayLike(O);
1214
+ var argCount = arguments.length;
1215
+ doesNotExceedSafeInteger(len + argCount);
1216
+ for (var i = 0; i < argCount; i++) {
1217
+ O[len] = arguments[i];
1218
+ len++;
1219
+ }
1220
+ setArrayLength(O, len);
1221
+ return len;
1222
+ }
1223
+ });
1224
+
1225
+
1226
+ /***/ }),
1227
+
1228
+ /***/ 4117:
1229
+ /***/ (function(module) {
1230
+
1231
+ "use strict";
1232
+
1233
+ // we can't use just `it == null` since of `document.all` special case
1234
+ // https://tc39.es/ecma262/#sec-IsHTMLDDA-internal-slot-aec
1235
+ module.exports = function (it) {
1236
+ return it === null || it === undefined;
1237
+ };
1238
+
1239
+
1240
+ /***/ }),
1241
+
1242
+ /***/ 4204:
1243
+ /***/ (function(module, __unused_webpack_exports, __webpack_require__) {
1244
+
1245
+ "use strict";
1246
+
1247
+ var aSet = __webpack_require__(7080);
1248
+ var add = (__webpack_require__(4402).add);
1249
+ var clone = __webpack_require__(9286);
1250
+ var getSetRecord = __webpack_require__(3789);
1251
+ var iterateSimple = __webpack_require__(507);
1252
+
1253
+ // `Set.prototype.union` method
1254
+ // https://tc39.es/ecma262/#sec-set.prototype.union
1255
+ module.exports = function union(other) {
1256
+ var O = aSet(this);
1257
+ var keysIter = getSetRecord(other).getIterator();
1258
+ var result = clone(O);
1259
+ iterateSimple(keysIter, function (it) {
1260
+ add(result, it);
1261
+ });
1262
+ return result;
1263
+ };
1264
+
1265
+
1266
+ /***/ }),
1267
+
1268
+ /***/ 4209:
1269
+ /***/ (function(module, __unused_webpack_exports, __webpack_require__) {
1270
+
1271
+ "use strict";
1272
+
1273
+ var wellKnownSymbol = __webpack_require__(8227);
1274
+ var Iterators = __webpack_require__(6269);
1275
+
1276
+ var ITERATOR = wellKnownSymbol('iterator');
1277
+ var ArrayPrototype = Array.prototype;
1278
+
1279
+ // check on default Array iterator
1280
+ module.exports = function (it) {
1281
+ return it !== undefined && (Iterators.Array === it || ArrayPrototype[ITERATOR] === it);
1282
+ };
1283
+
1284
+
1285
+ /***/ }),
1286
+
1287
+ /***/ 4215:
1288
+ /***/ (function(module, __unused_webpack_exports, __webpack_require__) {
1289
+
1290
+ "use strict";
1291
+
1292
+ /* global Bun, Deno -- detection */
1293
+ var globalThis = __webpack_require__(4576);
1294
+ var userAgent = __webpack_require__(2839);
1295
+ var classof = __webpack_require__(2195);
1296
+
1297
+ var userAgentStartsWith = function (string) {
1298
+ return userAgent.slice(0, string.length) === string;
1299
+ };
1300
+
1301
+ module.exports = (function () {
1302
+ if (userAgentStartsWith('Bun/')) return 'BUN';
1303
+ if (userAgentStartsWith('Cloudflare-Workers')) return 'CLOUDFLARE';
1304
+ if (userAgentStartsWith('Deno/')) return 'DENO';
1305
+ if (userAgentStartsWith('Node.js/')) return 'NODE';
1306
+ if (globalThis.Bun && typeof Bun.version == 'string') return 'BUN';
1307
+ if (globalThis.Deno && typeof Deno.version == 'object') return 'DENO';
1308
+ if (classof(globalThis.process) === 'process') return 'NODE';
1309
+ if (globalThis.window && globalThis.document) return 'BROWSER';
1310
+ return 'REST';
1311
+ })();
1312
+
1313
+
1314
+ /***/ }),
1315
+
1316
+ /***/ 4270:
1317
+ /***/ (function(module, __unused_webpack_exports, __webpack_require__) {
1318
+
1319
+ "use strict";
1320
+
1321
+ var call = __webpack_require__(9565);
1322
+ var isCallable = __webpack_require__(4901);
1323
+ var isObject = __webpack_require__(34);
1324
+
1325
+ var $TypeError = TypeError;
1326
+
1327
+ // `OrdinaryToPrimitive` abstract operation
1328
+ // https://tc39.es/ecma262/#sec-ordinarytoprimitive
1329
+ module.exports = function (input, pref) {
1330
+ var fn, val;
1331
+ if (pref === 'string' && isCallable(fn = input.toString) && !isObject(val = call(fn, input))) return val;
1332
+ if (isCallable(fn = input.valueOf) && !isObject(val = call(fn, input))) return val;
1333
+ if (pref !== 'string' && isCallable(fn = input.toString) && !isObject(val = call(fn, input))) return val;
1334
+ throw new $TypeError("Can't convert object to primitive value");
1335
+ };
1336
+
1337
+
1338
+ /***/ }),
1339
+
1340
+ /***/ 4376:
1341
+ /***/ (function(module, __unused_webpack_exports, __webpack_require__) {
1342
+
1343
+ "use strict";
1344
+
1345
+ var classof = __webpack_require__(2195);
1346
+
1347
+ // `IsArray` abstract operation
1348
+ // https://tc39.es/ecma262/#sec-isarray
1349
+ // eslint-disable-next-line es/no-array-isarray -- safe
1350
+ module.exports = Array.isArray || function isArray(argument) {
1351
+ return classof(argument) === 'Array';
1352
+ };
1353
+
1354
+
1355
+ /***/ }),
1356
+
1357
+ /***/ 4402:
1358
+ /***/ (function(module, __unused_webpack_exports, __webpack_require__) {
1359
+
1360
+ "use strict";
1361
+
1362
+ var uncurryThis = __webpack_require__(9504);
1363
+
1364
+ // eslint-disable-next-line es/no-set -- safe
1365
+ var SetPrototype = Set.prototype;
1366
+
1367
+ module.exports = {
1368
+ // eslint-disable-next-line es/no-set -- safe
1369
+ Set: Set,
1370
+ add: uncurryThis(SetPrototype.add),
1371
+ has: uncurryThis(SetPrototype.has),
1372
+ remove: uncurryThis(SetPrototype['delete']),
1373
+ proto: SetPrototype
1374
+ };
1375
+
1376
+
1377
+ /***/ }),
1378
+
1379
+ /***/ 4449:
1380
+ /***/ (function(module, __unused_webpack_exports, __webpack_require__) {
1381
+
1382
+ "use strict";
1383
+
1384
+ var aSet = __webpack_require__(7080);
1385
+ var has = (__webpack_require__(4402).has);
1386
+ var size = __webpack_require__(5170);
1387
+ var getSetRecord = __webpack_require__(3789);
1388
+ var iterateSet = __webpack_require__(8469);
1389
+ var iterateSimple = __webpack_require__(507);
1390
+ var iteratorClose = __webpack_require__(9539);
1391
+
1392
+ // `Set.prototype.isDisjointFrom` method
1393
+ // https://tc39.es/ecma262/#sec-set.prototype.isdisjointfrom
1394
+ module.exports = function isDisjointFrom(other) {
1395
+ var O = aSet(this);
1396
+ var otherRec = getSetRecord(other);
1397
+ if (size(O) <= otherRec.size) return iterateSet(O, function (e) {
1398
+ if (otherRec.includes(e)) return false;
1399
+ }, true) !== false;
1400
+ var iterator = otherRec.getIterator();
1401
+ return iterateSimple(iterator, function (e) {
1402
+ if (has(O, e)) return iteratorClose(iterator, 'normal', false);
1403
+ }) !== false;
1404
+ };
1405
+
1406
+
1407
+ /***/ }),
1408
+
1409
+ /***/ 4483:
1410
+ /***/ (function(module, __unused_webpack_exports, __webpack_require__) {
1411
+
1412
+ "use strict";
1413
+
1414
+ var globalThis = __webpack_require__(4576);
1415
+ var getBuiltInNodeModule = __webpack_require__(9429);
1416
+ var PROPER_STRUCTURED_CLONE_TRANSFER = __webpack_require__(1548);
1417
+
1418
+ var structuredClone = globalThis.structuredClone;
1419
+ var $ArrayBuffer = globalThis.ArrayBuffer;
1420
+ var $MessageChannel = globalThis.MessageChannel;
1421
+ var detach = false;
1422
+ var WorkerThreads, channel, buffer, $detach;
1423
+
1424
+ if (PROPER_STRUCTURED_CLONE_TRANSFER) {
1425
+ detach = function (transferable) {
1426
+ structuredClone(transferable, { transfer: [transferable] });
1427
+ };
1428
+ } else if ($ArrayBuffer) try {
1429
+ if (!$MessageChannel) {
1430
+ WorkerThreads = getBuiltInNodeModule('worker_threads');
1431
+ if (WorkerThreads) $MessageChannel = WorkerThreads.MessageChannel;
1432
+ }
1433
+
1434
+ if ($MessageChannel) {
1435
+ channel = new $MessageChannel();
1436
+ buffer = new $ArrayBuffer(2);
1437
+
1438
+ $detach = function (transferable) {
1439
+ channel.port1.postMessage(null, [transferable]);
1440
+ };
1441
+
1442
+ if (buffer.byteLength === 2) {
1443
+ $detach(buffer);
1444
+ if (buffer.byteLength === 0) detach = $detach;
1445
+ }
1446
+ }
1447
+ } catch (error) { /* empty */ }
1448
+
1449
+ module.exports = detach;
1450
+
1451
+
1452
+ /***/ }),
1453
+
1454
+ /***/ 4495:
1455
+ /***/ (function(module, __unused_webpack_exports, __webpack_require__) {
1456
+
1457
+ "use strict";
1458
+
1459
+ /* eslint-disable es/no-symbol -- required for testing */
1460
+ var V8_VERSION = __webpack_require__(9519);
1461
+ var fails = __webpack_require__(9039);
1462
+ var globalThis = __webpack_require__(4576);
1463
+
1464
+ var $String = globalThis.String;
1465
+
1466
+ // eslint-disable-next-line es/no-object-getownpropertysymbols -- required for testing
1467
+ module.exports = !!Object.getOwnPropertySymbols && !fails(function () {
1468
+ var symbol = Symbol('symbol detection');
1469
+ // Chrome 38 Symbol has incorrect toString conversion
1470
+ // `get-own-property-symbols` polyfill symbols converted to object are not Symbol instances
1471
+ // nb: Do not call `String` directly to avoid this being optimized out to `symbol+''` which will,
1472
+ // of course, fail.
1473
+ return !$String(symbol) || !(Object(symbol) instanceof Symbol) ||
1474
+ // Chrome 38-40 symbols are not inherited from DOM collections prototypes to instances
1475
+ !Symbol.sham && V8_VERSION && V8_VERSION < 41;
1476
+ });
1477
+
1478
+
1479
+ /***/ }),
1480
+
1481
+ /***/ 4527:
1482
+ /***/ (function(module, __unused_webpack_exports, __webpack_require__) {
1483
+
1484
+ "use strict";
1485
+
1486
+ var DESCRIPTORS = __webpack_require__(3724);
1487
+ var isArray = __webpack_require__(4376);
1488
+
1489
+ var $TypeError = TypeError;
1490
+ // eslint-disable-next-line es/no-object-getownpropertydescriptor -- safe
1491
+ var getOwnPropertyDescriptor = Object.getOwnPropertyDescriptor;
1492
+
1493
+ // Safari < 13 does not throw an error in this case
1494
+ var SILENT_ON_NON_WRITABLE_LENGTH_SET = DESCRIPTORS && !function () {
1495
+ // makes no sense without proper strict mode support
1496
+ if (this !== undefined) return true;
1497
+ try {
1498
+ // eslint-disable-next-line es/no-object-defineproperty -- safe
1499
+ Object.defineProperty([], 'length', { writable: false }).length = 1;
1500
+ } catch (error) {
1501
+ return error instanceof TypeError;
1502
+ }
1503
+ }();
1504
+
1505
+ module.exports = SILENT_ON_NON_WRITABLE_LENGTH_SET ? function (O, length) {
1506
+ if (isArray(O) && !getOwnPropertyDescriptor(O, 'length').writable) {
1507
+ throw new $TypeError('Cannot set read only .length');
1508
+ } return O.length = length;
1509
+ } : function (O, length) {
1510
+ return O.length = length;
1511
+ };
1512
+
1513
+
1514
+ /***/ }),
1515
+
1516
+ /***/ 4549:
1517
+ /***/ (function(module, __unused_webpack_exports, __webpack_require__) {
1518
+
1519
+ "use strict";
1520
+
1521
+ var globalThis = __webpack_require__(4576);
1522
+
1523
+ // https://github.com/tc39/ecma262/pull/3467
1524
+ module.exports = function (METHOD_NAME, ExpectedError) {
1525
+ var Iterator = globalThis.Iterator;
1526
+ var IteratorPrototype = Iterator && Iterator.prototype;
1527
+ var method = IteratorPrototype && IteratorPrototype[METHOD_NAME];
1528
+
1529
+ var CLOSED = false;
1530
+
1531
+ if (method) try {
1532
+ method.call({
1533
+ next: function () { return { done: true }; },
1534
+ 'return': function () { CLOSED = true; }
1535
+ }, -1);
1536
+ } catch (error) {
1537
+ // https://bugs.webkit.org/show_bug.cgi?id=291195
1538
+ if (!(error instanceof ExpectedError)) CLOSED = false;
1539
+ }
1540
+
1541
+ if (!CLOSED) return method;
1542
+ };
1543
+
1544
+
1545
+ /***/ }),
1546
+
1547
+ /***/ 4576:
1548
+ /***/ (function(module, __unused_webpack_exports, __webpack_require__) {
1549
+
1550
+ "use strict";
1551
+
1552
+ var check = function (it) {
1553
+ return it && it.Math === Math && it;
1554
+ };
1555
+
1556
+ // https://github.com/zloirock/core-js/issues/86#issuecomment-115759028
1557
+ module.exports =
1558
+ // eslint-disable-next-line es/no-global-this -- safe
1559
+ check(typeof globalThis == 'object' && globalThis) ||
1560
+ check(typeof window == 'object' && window) ||
1561
+ // eslint-disable-next-line no-restricted-globals -- safe
1562
+ check(typeof self == 'object' && self) ||
1563
+ check(typeof __webpack_require__.g == 'object' && __webpack_require__.g) ||
1564
+ check(typeof this == 'object' && this) ||
1565
+ // eslint-disable-next-line no-new-func -- fallback
1566
+ (function () { return this; })() || Function('return this')();
1567
+
1568
+
1569
+ /***/ }),
1570
+
1571
+ /***/ 4607:
1572
+ /***/ (function(module, __unused_webpack_exports, __webpack_require__) {
1573
+
1574
+ __webpack_require__(4114);
1575
+ __webpack_require__(6573);
1576
+ __webpack_require__(8100);
1577
+ __webpack_require__(7936);
1578
+ __webpack_require__(7642);
1579
+ __webpack_require__(8004);
1580
+ __webpack_require__(3853);
1581
+ __webpack_require__(5876);
1582
+ __webpack_require__(2475);
1583
+ __webpack_require__(5024);
1584
+ __webpack_require__(1698);
1585
+ /*!
1586
+ * @license deepcopy.js Copyright(c) 2013 sasa+1
1587
+ * https://github.com/sasaplus1/deepcopy.js
1588
+ * Released under the MIT license.
1589
+ *
1590
+ * type-detect
1591
+ * Copyright(c) 2013 jake luer <jake@alogicalparadox.com>
1592
+ * MIT Licensed
1593
+ */
1594
+ (function (global, factory) {
1595
+ true ? module.exports = factory() : 0;
1596
+ })(this, function () {
1597
+ 'use strict';
1598
+
1599
+ var commonjsGlobal = typeof globalThis !== 'undefined' ? globalThis : typeof window !== 'undefined' ? window : typeof __webpack_require__.g !== 'undefined' ? __webpack_require__.g : typeof self !== 'undefined' ? self : {};
1600
+ function createCommonjsModule(fn, module) {
1601
+ return module = {
1602
+ exports: {}
1603
+ }, fn(module, module.exports), module.exports;
1604
+ }
1605
+ var typeDetect = createCommonjsModule(function (module, exports) {
1606
+ (function (global, factory) {
1607
+ module.exports = factory();
1608
+ })(commonjsGlobal, function () {
1609
+ /* !
1610
+ * type-detect
1611
+ * Copyright(c) 2013 jake luer <jake@alogicalparadox.com>
1612
+ * MIT Licensed
1613
+ */
1614
+ var promiseExists = typeof Promise === 'function';
1615
+
1616
+ /* eslint-disable no-undef */
1617
+ var globalObject = typeof self === 'object' ? self : commonjsGlobal; // eslint-disable-line id-blacklist
1618
+
1619
+ var symbolExists = typeof Symbol !== 'undefined';
1620
+ var mapExists = typeof Map !== 'undefined';
1621
+ var setExists = typeof Set !== 'undefined';
1622
+ var weakMapExists = typeof WeakMap !== 'undefined';
1623
+ var weakSetExists = typeof WeakSet !== 'undefined';
1624
+ var dataViewExists = typeof DataView !== 'undefined';
1625
+ var symbolIteratorExists = symbolExists && typeof Symbol.iterator !== 'undefined';
1626
+ var symbolToStringTagExists = symbolExists && typeof Symbol.toStringTag !== 'undefined';
1627
+ var setEntriesExists = setExists && typeof Set.prototype.entries === 'function';
1628
+ var mapEntriesExists = mapExists && typeof Map.prototype.entries === 'function';
1629
+ var setIteratorPrototype = setEntriesExists && Object.getPrototypeOf(new Set().entries());
1630
+ var mapIteratorPrototype = mapEntriesExists && Object.getPrototypeOf(new Map().entries());
1631
+ var arrayIteratorExists = symbolIteratorExists && typeof Array.prototype[Symbol.iterator] === 'function';
1632
+ var arrayIteratorPrototype = arrayIteratorExists && Object.getPrototypeOf([][Symbol.iterator]());
1633
+ var stringIteratorExists = symbolIteratorExists && typeof String.prototype[Symbol.iterator] === 'function';
1634
+ var stringIteratorPrototype = stringIteratorExists && Object.getPrototypeOf(''[Symbol.iterator]());
1635
+ var toStringLeftSliceLength = 8;
1636
+ var toStringRightSliceLength = -1;
1637
+ /**
1638
+ * ### typeOf (obj)
1639
+ *
1640
+ * Uses `Object.prototype.toString` to determine the type of an object,
1641
+ * normalising behaviour across engine versions & well optimised.
1642
+ *
1643
+ * @param {Mixed} object
1644
+ * @return {String} object type
1645
+ * @api public
1646
+ */
1647
+ function typeDetect(obj) {
1648
+ /* ! Speed optimisation
1649
+ * Pre:
1650
+ * string literal x 3,039,035 ops/sec ±1.62% (78 runs sampled)
1651
+ * boolean literal x 1,424,138 ops/sec ±4.54% (75 runs sampled)
1652
+ * number literal x 1,653,153 ops/sec ±1.91% (82 runs sampled)
1653
+ * undefined x 9,978,660 ops/sec ±1.92% (75 runs sampled)
1654
+ * function x 2,556,769 ops/sec ±1.73% (77 runs sampled)
1655
+ * Post:
1656
+ * string literal x 38,564,796 ops/sec ±1.15% (79 runs sampled)
1657
+ * boolean literal x 31,148,940 ops/sec ±1.10% (79 runs sampled)
1658
+ * number literal x 32,679,330 ops/sec ±1.90% (78 runs sampled)
1659
+ * undefined x 32,363,368 ops/sec ±1.07% (82 runs sampled)
1660
+ * function x 31,296,870 ops/sec ±0.96% (83 runs sampled)
1661
+ */
1662
+ var typeofObj = typeof obj;
1663
+ if (typeofObj !== 'object') {
1664
+ return typeofObj;
1665
+ }
1666
+
1667
+ /* ! Speed optimisation
1668
+ * Pre:
1669
+ * null x 28,645,765 ops/sec ±1.17% (82 runs sampled)
1670
+ * Post:
1671
+ * null x 36,428,962 ops/sec ±1.37% (84 runs sampled)
1672
+ */
1673
+ if (obj === null) {
1674
+ return 'null';
1675
+ }
1676
+
1677
+ /* ! Spec Conformance
1678
+ * Test: `Object.prototype.toString.call(window)``
1679
+ * - Node === "[object global]"
1680
+ * - Chrome === "[object global]"
1681
+ * - Firefox === "[object Window]"
1682
+ * - PhantomJS === "[object Window]"
1683
+ * - Safari === "[object Window]"
1684
+ * - IE 11 === "[object Window]"
1685
+ * - IE Edge === "[object Window]"
1686
+ * Test: `Object.prototype.toString.call(this)``
1687
+ * - Chrome Worker === "[object global]"
1688
+ * - Firefox Worker === "[object DedicatedWorkerGlobalScope]"
1689
+ * - Safari Worker === "[object DedicatedWorkerGlobalScope]"
1690
+ * - IE 11 Worker === "[object WorkerGlobalScope]"
1691
+ * - IE Edge Worker === "[object WorkerGlobalScope]"
1692
+ */
1693
+ if (obj === globalObject) {
1694
+ return 'global';
1695
+ }
1696
+
1697
+ /* ! Speed optimisation
1698
+ * Pre:
1699
+ * array literal x 2,888,352 ops/sec ±0.67% (82 runs sampled)
1700
+ * Post:
1701
+ * array literal x 22,479,650 ops/sec ±0.96% (81 runs sampled)
1702
+ */
1703
+ if (Array.isArray(obj) && (symbolToStringTagExists === false || !(Symbol.toStringTag in obj))) {
1704
+ return 'Array';
1705
+ }
1706
+
1707
+ // Not caching existence of `window` and related properties due to potential
1708
+ // for `window` to be unset before tests in quasi-browser environments.
1709
+ if (typeof window === 'object' && window !== null) {
1710
+ /* ! Spec Conformance
1711
+ * (https://html.spec.whatwg.org/multipage/browsers.html#location)
1712
+ * WhatWG HTML$7.7.3 - The `Location` interface
1713
+ * Test: `Object.prototype.toString.call(window.location)``
1714
+ * - IE <=11 === "[object Object]"
1715
+ * - IE Edge <=13 === "[object Object]"
1716
+ */
1717
+ if (typeof window.location === 'object' && obj === window.location) {
1718
+ return 'Location';
1719
+ }
1720
+
1721
+ /* ! Spec Conformance
1722
+ * (https://html.spec.whatwg.org/#document)
1723
+ * WhatWG HTML$3.1.1 - The `Document` object
1724
+ * Note: Most browsers currently adher to the W3C DOM Level 2 spec
1725
+ * (https://www.w3.org/TR/DOM-Level-2-HTML/html.html#ID-26809268)
1726
+ * which suggests that browsers should use HTMLTableCellElement for
1727
+ * both TD and TH elements. WhatWG separates these.
1728
+ * WhatWG HTML states:
1729
+ * > For historical reasons, Window objects must also have a
1730
+ * > writable, configurable, non-enumerable property named
1731
+ * > HTMLDocument whose value is the Document interface object.
1732
+ * Test: `Object.prototype.toString.call(document)``
1733
+ * - Chrome === "[object HTMLDocument]"
1734
+ * - Firefox === "[object HTMLDocument]"
1735
+ * - Safari === "[object HTMLDocument]"
1736
+ * - IE <=10 === "[object Document]"
1737
+ * - IE 11 === "[object HTMLDocument]"
1738
+ * - IE Edge <=13 === "[object HTMLDocument]"
1739
+ */
1740
+ if (typeof window.document === 'object' && obj === window.document) {
1741
+ return 'Document';
1742
+ }
1743
+ if (typeof window.navigator === 'object') {
1744
+ /* ! Spec Conformance
1745
+ * (https://html.spec.whatwg.org/multipage/webappapis.html#mimetypearray)
1746
+ * WhatWG HTML$8.6.1.5 - Plugins - Interface MimeTypeArray
1747
+ * Test: `Object.prototype.toString.call(navigator.mimeTypes)``
1748
+ * - IE <=10 === "[object MSMimeTypesCollection]"
1749
+ */
1750
+ if (typeof window.navigator.mimeTypes === 'object' && obj === window.navigator.mimeTypes) {
1751
+ return 'MimeTypeArray';
1752
+ }
1753
+
1754
+ /* ! Spec Conformance
1755
+ * (https://html.spec.whatwg.org/multipage/webappapis.html#pluginarray)
1756
+ * WhatWG HTML$8.6.1.5 - Plugins - Interface PluginArray
1757
+ * Test: `Object.prototype.toString.call(navigator.plugins)``
1758
+ * - IE <=10 === "[object MSPluginsCollection]"
1759
+ */
1760
+ if (typeof window.navigator.plugins === 'object' && obj === window.navigator.plugins) {
1761
+ return 'PluginArray';
1762
+ }
1763
+ }
1764
+ if ((typeof window.HTMLElement === 'function' || typeof window.HTMLElement === 'object') && obj instanceof window.HTMLElement) {
1765
+ /* ! Spec Conformance
1766
+ * (https://html.spec.whatwg.org/multipage/webappapis.html#pluginarray)
1767
+ * WhatWG HTML$4.4.4 - The `blockquote` element - Interface `HTMLQuoteElement`
1768
+ * Test: `Object.prototype.toString.call(document.createElement('blockquote'))``
1769
+ * - IE <=10 === "[object HTMLBlockElement]"
1770
+ */
1771
+ if (obj.tagName === 'BLOCKQUOTE') {
1772
+ return 'HTMLQuoteElement';
1773
+ }
1774
+
1775
+ /* ! Spec Conformance
1776
+ * (https://html.spec.whatwg.org/#htmltabledatacellelement)
1777
+ * WhatWG HTML$4.9.9 - The `td` element - Interface `HTMLTableDataCellElement`
1778
+ * Note: Most browsers currently adher to the W3C DOM Level 2 spec
1779
+ * (https://www.w3.org/TR/DOM-Level-2-HTML/html.html#ID-82915075)
1780
+ * which suggests that browsers should use HTMLTableCellElement for
1781
+ * both TD and TH elements. WhatWG separates these.
1782
+ * Test: Object.prototype.toString.call(document.createElement('td'))
1783
+ * - Chrome === "[object HTMLTableCellElement]"
1784
+ * - Firefox === "[object HTMLTableCellElement]"
1785
+ * - Safari === "[object HTMLTableCellElement]"
1786
+ */
1787
+ if (obj.tagName === 'TD') {
1788
+ return 'HTMLTableDataCellElement';
1789
+ }
1790
+
1791
+ /* ! Spec Conformance
1792
+ * (https://html.spec.whatwg.org/#htmltableheadercellelement)
1793
+ * WhatWG HTML$4.9.9 - The `td` element - Interface `HTMLTableHeaderCellElement`
1794
+ * Note: Most browsers currently adher to the W3C DOM Level 2 spec
1795
+ * (https://www.w3.org/TR/DOM-Level-2-HTML/html.html#ID-82915075)
1796
+ * which suggests that browsers should use HTMLTableCellElement for
1797
+ * both TD and TH elements. WhatWG separates these.
1798
+ * Test: Object.prototype.toString.call(document.createElement('th'))
1799
+ * - Chrome === "[object HTMLTableCellElement]"
1800
+ * - Firefox === "[object HTMLTableCellElement]"
1801
+ * - Safari === "[object HTMLTableCellElement]"
1802
+ */
1803
+ if (obj.tagName === 'TH') {
1804
+ return 'HTMLTableHeaderCellElement';
1805
+ }
1806
+ }
1807
+ }
1808
+
1809
+ /* ! Speed optimisation
1810
+ * Pre:
1811
+ * Float64Array x 625,644 ops/sec ±1.58% (80 runs sampled)
1812
+ * Float32Array x 1,279,852 ops/sec ±2.91% (77 runs sampled)
1813
+ * Uint32Array x 1,178,185 ops/sec ±1.95% (83 runs sampled)
1814
+ * Uint16Array x 1,008,380 ops/sec ±2.25% (80 runs sampled)
1815
+ * Uint8Array x 1,128,040 ops/sec ±2.11% (81 runs sampled)
1816
+ * Int32Array x 1,170,119 ops/sec ±2.88% (80 runs sampled)
1817
+ * Int16Array x 1,176,348 ops/sec ±5.79% (86 runs sampled)
1818
+ * Int8Array x 1,058,707 ops/sec ±4.94% (77 runs sampled)
1819
+ * Uint8ClampedArray x 1,110,633 ops/sec ±4.20% (80 runs sampled)
1820
+ * Post:
1821
+ * Float64Array x 7,105,671 ops/sec ±13.47% (64 runs sampled)
1822
+ * Float32Array x 5,887,912 ops/sec ±1.46% (82 runs sampled)
1823
+ * Uint32Array x 6,491,661 ops/sec ±1.76% (79 runs sampled)
1824
+ * Uint16Array x 6,559,795 ops/sec ±1.67% (82 runs sampled)
1825
+ * Uint8Array x 6,463,966 ops/sec ±1.43% (85 runs sampled)
1826
+ * Int32Array x 5,641,841 ops/sec ±3.49% (81 runs sampled)
1827
+ * Int16Array x 6,583,511 ops/sec ±1.98% (80 runs sampled)
1828
+ * Int8Array x 6,606,078 ops/sec ±1.74% (81 runs sampled)
1829
+ * Uint8ClampedArray x 6,602,224 ops/sec ±1.77% (83 runs sampled)
1830
+ */
1831
+ var stringTag = symbolToStringTagExists && obj[Symbol.toStringTag];
1832
+ if (typeof stringTag === 'string') {
1833
+ return stringTag;
1834
+ }
1835
+ var objPrototype = Object.getPrototypeOf(obj);
1836
+ /* ! Speed optimisation
1837
+ * Pre:
1838
+ * regex literal x 1,772,385 ops/sec ±1.85% (77 runs sampled)
1839
+ * regex constructor x 2,143,634 ops/sec ±2.46% (78 runs sampled)
1840
+ * Post:
1841
+ * regex literal x 3,928,009 ops/sec ±0.65% (78 runs sampled)
1842
+ * regex constructor x 3,931,108 ops/sec ±0.58% (84 runs sampled)
1843
+ */
1844
+ if (objPrototype === RegExp.prototype) {
1845
+ return 'RegExp';
1846
+ }
1847
+
1848
+ /* ! Speed optimisation
1849
+ * Pre:
1850
+ * date x 2,130,074 ops/sec ±4.42% (68 runs sampled)
1851
+ * Post:
1852
+ * date x 3,953,779 ops/sec ±1.35% (77 runs sampled)
1853
+ */
1854
+ if (objPrototype === Date.prototype) {
1855
+ return 'Date';
1856
+ }
1857
+
1858
+ /* ! Spec Conformance
1859
+ * (http://www.ecma-international.org/ecma-262/6.0/index.html#sec-promise.prototype-@@tostringtag)
1860
+ * ES6$25.4.5.4 - Promise.prototype[@@toStringTag] should be "Promise":
1861
+ * Test: `Object.prototype.toString.call(Promise.resolve())``
1862
+ * - Chrome <=47 === "[object Object]"
1863
+ * - Edge <=20 === "[object Object]"
1864
+ * - Firefox 29-Latest === "[object Promise]"
1865
+ * - Safari 7.1-Latest === "[object Promise]"
1866
+ */
1867
+ if (promiseExists && objPrototype === Promise.prototype) {
1868
+ return 'Promise';
1869
+ }
1870
+
1871
+ /* ! Speed optimisation
1872
+ * Pre:
1873
+ * set x 2,222,186 ops/sec ±1.31% (82 runs sampled)
1874
+ * Post:
1875
+ * set x 4,545,879 ops/sec ±1.13% (83 runs sampled)
1876
+ */
1877
+ if (setExists && objPrototype === Set.prototype) {
1878
+ return 'Set';
1879
+ }
1880
+
1881
+ /* ! Speed optimisation
1882
+ * Pre:
1883
+ * map x 2,396,842 ops/sec ±1.59% (81 runs sampled)
1884
+ * Post:
1885
+ * map x 4,183,945 ops/sec ±6.59% (82 runs sampled)
1886
+ */
1887
+ if (mapExists && objPrototype === Map.prototype) {
1888
+ return 'Map';
1889
+ }
1890
+
1891
+ /* ! Speed optimisation
1892
+ * Pre:
1893
+ * weakset x 1,323,220 ops/sec ±2.17% (76 runs sampled)
1894
+ * Post:
1895
+ * weakset x 4,237,510 ops/sec ±2.01% (77 runs sampled)
1896
+ */
1897
+ if (weakSetExists && objPrototype === WeakSet.prototype) {
1898
+ return 'WeakSet';
1899
+ }
1900
+
1901
+ /* ! Speed optimisation
1902
+ * Pre:
1903
+ * weakmap x 1,500,260 ops/sec ±2.02% (78 runs sampled)
1904
+ * Post:
1905
+ * weakmap x 3,881,384 ops/sec ±1.45% (82 runs sampled)
1906
+ */
1907
+ if (weakMapExists && objPrototype === WeakMap.prototype) {
1908
+ return 'WeakMap';
1909
+ }
1910
+
1911
+ /* ! Spec Conformance
1912
+ * (http://www.ecma-international.org/ecma-262/6.0/index.html#sec-dataview.prototype-@@tostringtag)
1913
+ * ES6$24.2.4.21 - DataView.prototype[@@toStringTag] should be "DataView":
1914
+ * Test: `Object.prototype.toString.call(new DataView(new ArrayBuffer(1)))``
1915
+ * - Edge <=13 === "[object Object]"
1916
+ */
1917
+ if (dataViewExists && objPrototype === DataView.prototype) {
1918
+ return 'DataView';
1919
+ }
1920
+
1921
+ /* ! Spec Conformance
1922
+ * (http://www.ecma-international.org/ecma-262/6.0/index.html#sec-%mapiteratorprototype%-@@tostringtag)
1923
+ * ES6$23.1.5.2.2 - %MapIteratorPrototype%[@@toStringTag] should be "Map Iterator":
1924
+ * Test: `Object.prototype.toString.call(new Map().entries())``
1925
+ * - Edge <=13 === "[object Object]"
1926
+ */
1927
+ if (mapExists && objPrototype === mapIteratorPrototype) {
1928
+ return 'Map Iterator';
1929
+ }
1930
+
1931
+ /* ! Spec Conformance
1932
+ * (http://www.ecma-international.org/ecma-262/6.0/index.html#sec-%setiteratorprototype%-@@tostringtag)
1933
+ * ES6$23.2.5.2.2 - %SetIteratorPrototype%[@@toStringTag] should be "Set Iterator":
1934
+ * Test: `Object.prototype.toString.call(new Set().entries())``
1935
+ * - Edge <=13 === "[object Object]"
1936
+ */
1937
+ if (setExists && objPrototype === setIteratorPrototype) {
1938
+ return 'Set Iterator';
1939
+ }
1940
+
1941
+ /* ! Spec Conformance
1942
+ * (http://www.ecma-international.org/ecma-262/6.0/index.html#sec-%arrayiteratorprototype%-@@tostringtag)
1943
+ * ES6$22.1.5.2.2 - %ArrayIteratorPrototype%[@@toStringTag] should be "Array Iterator":
1944
+ * Test: `Object.prototype.toString.call([][Symbol.iterator]())``
1945
+ * - Edge <=13 === "[object Object]"
1946
+ */
1947
+ if (arrayIteratorExists && objPrototype === arrayIteratorPrototype) {
1948
+ return 'Array Iterator';
1949
+ }
1950
+
1951
+ /* ! Spec Conformance
1952
+ * (http://www.ecma-international.org/ecma-262/6.0/index.html#sec-%stringiteratorprototype%-@@tostringtag)
1953
+ * ES6$21.1.5.2.2 - %StringIteratorPrototype%[@@toStringTag] should be "String Iterator":
1954
+ * Test: `Object.prototype.toString.call(''[Symbol.iterator]())``
1955
+ * - Edge <=13 === "[object Object]"
1956
+ */
1957
+ if (stringIteratorExists && objPrototype === stringIteratorPrototype) {
1958
+ return 'String Iterator';
1959
+ }
1960
+
1961
+ /* ! Speed optimisation
1962
+ * Pre:
1963
+ * object from null x 2,424,320 ops/sec ±1.67% (76 runs sampled)
1964
+ * Post:
1965
+ * object from null x 5,838,000 ops/sec ±0.99% (84 runs sampled)
1966
+ */
1967
+ if (objPrototype === null) {
1968
+ return 'Object';
1969
+ }
1970
+ return Object.prototype.toString.call(obj).slice(toStringLeftSliceLength, toStringRightSliceLength);
1971
+ }
1972
+ return typeDetect;
1973
+ });
1974
+ });
1975
+ const isBufferExists = typeof Buffer !== 'undefined';
1976
+ const isBufferFromExists = isBufferExists && typeof Buffer.from !== 'undefined';
1977
+ const isBuffer = isBufferExists ?
1978
+ /**
1979
+ * is value is Buffer?
1980
+ *
1981
+ * @param {*} value
1982
+ * @return {boolean}
1983
+ */
1984
+ function isBuffer(value) {
1985
+ return Buffer.isBuffer(value);
1986
+ } :
1987
+ /**
1988
+ * return false
1989
+ *
1990
+ * NOTE: for Buffer unsupported
1991
+ *
1992
+ * @return {boolean}
1993
+ */
1994
+ function isBuffer() {
1995
+ return false;
1996
+ };
1997
+ const copy = isBufferFromExists ?
1998
+ /**
1999
+ * copy Buffer
2000
+ *
2001
+ * @param {Buffer} value
2002
+ * @return {Buffer}
2003
+ */
2004
+ function copy(value) {
2005
+ return Buffer.from(value);
2006
+ } : isBufferExists ?
2007
+ /**
2008
+ * copy Buffer
2009
+ *
2010
+ * NOTE: for old node.js
2011
+ *
2012
+ * @param {Buffer} value
2013
+ * @return {Buffer}
2014
+ */
2015
+ function copy(value) {
2016
+ return new Buffer(value);
2017
+ } :
2018
+ /**
2019
+ * shallow copy
2020
+ *
2021
+ * NOTE: for Buffer unsupported
2022
+ *
2023
+ * @param {*}
2024
+ * @return {*}
2025
+ */
2026
+ function copy(value) {
2027
+ return value;
2028
+ };
2029
+
2030
+ /**
2031
+ * detect type of value
2032
+ *
2033
+ * @param {*} value
2034
+ * @return {string}
2035
+ */
2036
+ function detectType(value) {
2037
+ // NOTE: isBuffer must execute before type-detect,
2038
+ // because type-detect returns 'Uint8Array'.
2039
+ if (isBuffer(value)) {
2040
+ return 'Buffer';
2041
+ }
2042
+ return typeDetect(value);
2043
+ }
2044
+
2045
+ /**
2046
+ * collection types
2047
+ */
2048
+ const collectionTypeSet = new Set(['Arguments', 'Array', 'Map', 'Object', 'Set']);
2049
+
2050
+ /**
2051
+ * get value from collection
2052
+ *
2053
+ * @param {Array|Object|Map|Set} collection
2054
+ * @param {string|number|symbol} key
2055
+ * @param {string} [type=null]
2056
+ * @return {*}
2057
+ */
2058
+ function get(collection, key, type = null) {
2059
+ const valueType = type || detectType(collection);
2060
+ switch (valueType) {
2061
+ case 'Arguments':
2062
+ case 'Array':
2063
+ case 'Object':
2064
+ return collection[key];
2065
+ case 'Map':
2066
+ return collection.get(key);
2067
+ case 'Set':
2068
+ // NOTE: Set.prototype.keys is alias of Set.prototype.values
2069
+ // it means key is equals value
2070
+ return key;
2071
+ }
2072
+ }
2073
+
2074
+ /**
2075
+ * check to type string is collection
2076
+ *
2077
+ * @param {string} type
2078
+ */
2079
+ function isCollection(type) {
2080
+ return collectionTypeSet.has(type);
2081
+ }
2082
+
2083
+ /**
2084
+ * set value to collection
2085
+ *
2086
+ * @param {Array|Object|Map|Set} collection
2087
+ * @param {string|number|symbol} key
2088
+ * @param {*} value
2089
+ * @param {string} [type=null]
2090
+ * @return {Array|Object|Map|Set}
2091
+ */
2092
+ function set(collection, key, value, type = null) {
2093
+ const valueType = type || detectType(collection);
2094
+ switch (valueType) {
2095
+ case 'Arguments':
2096
+ case 'Array':
2097
+ case 'Object':
2098
+ collection[key] = value;
2099
+ break;
2100
+ case 'Map':
2101
+ collection.set(key, value);
2102
+ break;
2103
+ case 'Set':
2104
+ collection.add(value);
2105
+ break;
2106
+ }
2107
+ return collection;
2108
+ }
2109
+ const freeGlobalThis = typeof globalThis !== 'undefined' && globalThis !== null && globalThis.Object === Object && globalThis;
2110
+ const freeGlobal = typeof __webpack_require__.g !== 'undefined' && __webpack_require__.g !== null && __webpack_require__.g.Object === Object && __webpack_require__.g;
2111
+ const freeSelf = typeof self !== 'undefined' && self !== null && self.Object === Object && self;
2112
+ const globalObject = freeGlobalThis || freeGlobal || freeSelf || Function('return this')();
2113
+
2114
+ /**
2115
+ * copy ArrayBuffer
2116
+ *
2117
+ * @param {ArrayBuffer} value
2118
+ * @return {ArrayBuffer}
2119
+ */
2120
+ function copyArrayBuffer(value) {
2121
+ return value.slice(0);
2122
+ }
2123
+
2124
+ /**
2125
+ * copy Boolean
2126
+ *
2127
+ * @param {Boolean} value
2128
+ * @return {Boolean}
2129
+ */
2130
+ function copyBoolean(value) {
2131
+ return new Boolean(value.valueOf());
2132
+ }
2133
+
2134
+ /**
2135
+ * copy DataView
2136
+ *
2137
+ * @param {DataView} value
2138
+ * @return {DataView}
2139
+ */
2140
+ function copyDataView(value) {
2141
+ // TODO: copy ArrayBuffer?
2142
+ return new DataView(value.buffer);
2143
+ }
2144
+
2145
+ /**
2146
+ * copy Buffer
2147
+ *
2148
+ * @param {Buffer} value
2149
+ * @return {Buffer}
2150
+ */
2151
+ function copyBuffer(value) {
2152
+ return copy(value);
2153
+ }
2154
+
2155
+ /**
2156
+ * copy Date
2157
+ *
2158
+ * @param {Date} value
2159
+ * @return {Date}
2160
+ */
2161
+ function copyDate(value) {
2162
+ return new Date(value.getTime());
2163
+ }
2164
+
2165
+ /**
2166
+ * copy Number
2167
+ *
2168
+ * @param {Number} value
2169
+ * @return {Number}
2170
+ */
2171
+ function copyNumber(value) {
2172
+ return new Number(value);
2173
+ }
2174
+
2175
+ /**
2176
+ * copy RegExp
2177
+ *
2178
+ * @param {RegExp} value
2179
+ * @return {RegExp}
2180
+ */
2181
+ function copyRegExp(value) {
2182
+ return new RegExp(value.source, value.flags);
2183
+ }
2184
+
2185
+ /**
2186
+ * copy String
2187
+ *
2188
+ * @param {String} value
2189
+ * @return {String}
2190
+ */
2191
+ function copyString(value) {
2192
+ return new String(value);
2193
+ }
2194
+
2195
+ /**
2196
+ * copy TypedArray
2197
+ *
2198
+ * @param {*} value
2199
+ * @return {*}
2200
+ */
2201
+ function copyTypedArray(value, type) {
2202
+ const typedArray = globalObject[type];
2203
+ if (typedArray.from) {
2204
+ return globalObject[type].from(value);
2205
+ }
2206
+ return new globalObject[type](value);
2207
+ }
2208
+
2209
+ /**
2210
+ * shallow copy
2211
+ *
2212
+ * @param {*} value
2213
+ * @return {*}
2214
+ */
2215
+ function shallowCopy(value) {
2216
+ return value;
2217
+ }
2218
+
2219
+ /**
2220
+ * get empty Array
2221
+ *
2222
+ * @return {Array}
2223
+ */
2224
+ function getEmptyArray() {
2225
+ return [];
2226
+ }
2227
+
2228
+ /**
2229
+ * get empty Map
2230
+ *
2231
+ * @return {Map}
2232
+ */
2233
+ function getEmptyMap() {
2234
+ return new Map();
2235
+ }
2236
+
2237
+ /**
2238
+ * get empty Object
2239
+ *
2240
+ * @return {Object}
2241
+ */
2242
+ function getEmptyObject() {
2243
+ return {};
2244
+ }
2245
+
2246
+ /**
2247
+ * get empty Set
2248
+ *
2249
+ * @return {Set}
2250
+ */
2251
+ function getEmptySet() {
2252
+ return new Set();
2253
+ }
2254
+ var copyMap = new Map([
2255
+ // deep copy
2256
+ ['ArrayBuffer', copyArrayBuffer], ['Boolean', copyBoolean], ['Buffer', copyBuffer], ['DataView', copyDataView], ['Date', copyDate], ['Number', copyNumber], ['RegExp', copyRegExp], ['String', copyString],
2257
+ // typed arrays
2258
+ // TODO: pass bound function
2259
+ ['Float32Array', copyTypedArray], ['Float64Array', copyTypedArray], ['Int16Array', copyTypedArray], ['Int32Array', copyTypedArray], ['Int8Array', copyTypedArray], ['Uint16Array', copyTypedArray], ['Uint32Array', copyTypedArray], ['Uint8Array', copyTypedArray], ['Uint8ClampedArray', copyTypedArray],
2260
+ // shallow copy
2261
+ ['Array Iterator', shallowCopy], ['Map Iterator', shallowCopy], ['Promise', shallowCopy], ['Set Iterator', shallowCopy], ['String Iterator', shallowCopy], ['function', shallowCopy], ['global', shallowCopy],
2262
+ // NOTE: WeakMap and WeakSet cannot get entries
2263
+ ['WeakMap', shallowCopy], ['WeakSet', shallowCopy],
2264
+ // primitives
2265
+ ['boolean', shallowCopy], ['null', shallowCopy], ['number', shallowCopy], ['string', shallowCopy], ['symbol', shallowCopy], ['undefined', shallowCopy],
2266
+ // collections
2267
+ // NOTE: return empty value, because recursively copy later.
2268
+ ['Arguments', getEmptyArray], ['Array', getEmptyArray], ['Map', getEmptyMap], ['Object', getEmptyObject], ['Set', getEmptySet]
2269
+
2270
+ // NOTE: type-detect returns following types
2271
+ // 'Location'
2272
+ // 'Document'
2273
+ // 'MimeTypeArray'
2274
+ // 'PluginArray'
2275
+ // 'HTMLQuoteElement'
2276
+ // 'HTMLTableDataCellElement'
2277
+ // 'HTMLTableHeaderCellElement'
2278
+
2279
+ // TODO: is type-detect never return 'object'?
2280
+ // 'object'
2281
+ ]);
2282
+
2283
+ /**
2284
+ * no operation
2285
+ */
2286
+ function noop() {}
2287
+
2288
+ /**
2289
+ * copy value
2290
+ *
2291
+ * @param {*} value
2292
+ * @param {string} [type=null]
2293
+ * @param {Function} [customizer=noop]
2294
+ * @return {*}
2295
+ */
2296
+ function copy$1(value, type = null, customizer = noop) {
2297
+ if (arguments.length === 2 && typeof type === 'function') {
2298
+ customizer = type;
2299
+ type = null;
2300
+ }
2301
+ const valueType = type || detectType(value);
2302
+ const copyFunction = copyMap.get(valueType);
2303
+ if (valueType === 'Object') {
2304
+ const result = customizer(value, valueType);
2305
+ if (result !== undefined) {
2306
+ return result;
2307
+ }
2308
+ }
2309
+
2310
+ // NOTE: TypedArray needs pass type to argument
2311
+ return copyFunction ? copyFunction(value, valueType) : value;
2312
+ }
2313
+
2314
+ /**
2315
+ * deepcopy function
2316
+ *
2317
+ * @param {*} value
2318
+ * @param {Object|Function} [options]
2319
+ * @return {*}
2320
+ */
2321
+ function deepcopy(value, options = {}) {
2322
+ if (typeof options === 'function') {
2323
+ options = {
2324
+ customizer: options
2325
+ };
2326
+ }
2327
+ const {
2328
+ // TODO: before/after customizer
2329
+ customizer
2330
+ // TODO: max depth
2331
+ // depth = Infinity,
2332
+ } = options;
2333
+ const valueType = detectType(value);
2334
+ if (!isCollection(valueType)) {
2335
+ return recursiveCopy(value, null, null, null);
2336
+ }
2337
+ const copiedValue = copy$1(value, valueType, customizer);
2338
+ const references = new WeakMap([[value, copiedValue]]);
2339
+ const visited = new WeakSet([value]);
2340
+ return recursiveCopy(value, copiedValue, references, visited);
2341
+ }
2342
+
2343
+ /**
2344
+ * recursively copy
2345
+ *
2346
+ * @param {*} value target value
2347
+ * @param {*} clone clone of value
2348
+ * @param {WeakMap} references visited references of clone
2349
+ * @param {WeakSet} visited visited references of value
2350
+ * @param {Function} customizer user customize function
2351
+ * @return {*}
2352
+ */
2353
+ function recursiveCopy(value, clone, references, visited, customizer) {
2354
+ const type = detectType(value);
2355
+ const copiedValue = copy$1(value, type);
2356
+
2357
+ // return if not a collection value
2358
+ if (!isCollection(type)) {
2359
+ return copiedValue;
2360
+ }
2361
+ let keys;
2362
+ switch (type) {
2363
+ case 'Arguments':
2364
+ case 'Array':
2365
+ keys = Object.keys(value);
2366
+ break;
2367
+ case 'Object':
2368
+ keys = Object.keys(value);
2369
+ keys.push(...Object.getOwnPropertySymbols(value));
2370
+ break;
2371
+ case 'Map':
2372
+ case 'Set':
2373
+ keys = value.keys();
2374
+ break;
2375
+ }
2376
+
2377
+ // walk within collection with iterator
2378
+ for (let collectionKey of keys) {
2379
+ const collectionValue = get(value, collectionKey, type);
2380
+ if (visited.has(collectionValue)) {
2381
+ // for [Circular]
2382
+ set(clone, collectionKey, references.get(collectionValue), type);
2383
+ } else {
2384
+ const collectionValueType = detectType(collectionValue);
2385
+ const copiedCollectionValue = copy$1(collectionValue, collectionValueType);
2386
+
2387
+ // save reference if value is collection
2388
+ if (isCollection(collectionValueType)) {
2389
+ references.set(collectionValue, copiedCollectionValue);
2390
+ visited.add(collectionValue);
2391
+ }
2392
+ set(clone, collectionKey, recursiveCopy(collectionValue, copiedCollectionValue, references, visited), type);
2393
+ }
2394
+ }
2395
+
2396
+ // TODO: isSealed/isFrozen/isExtensible
2397
+
2398
+ return clone;
2399
+ }
2400
+ return deepcopy;
2401
+ });
2402
+
2403
+ /***/ }),
2404
+
2405
+ /***/ 4659:
2406
+ /***/ (function(module, __unused_webpack_exports, __webpack_require__) {
2407
+
2408
+ "use strict";
2409
+
2410
+ var DESCRIPTORS = __webpack_require__(3724);
2411
+ var definePropertyModule = __webpack_require__(4913);
2412
+ var createPropertyDescriptor = __webpack_require__(6980);
2413
+
2414
+ module.exports = function (object, key, value) {
2415
+ if (DESCRIPTORS) definePropertyModule.f(object, key, createPropertyDescriptor(0, value));
2416
+ else object[key] = value;
2417
+ };
2418
+
2419
+
2420
+ /***/ }),
2421
+
2422
+ /***/ 4901:
2423
+ /***/ (function(module) {
2424
+
2425
+ "use strict";
2426
+
2427
+ // https://tc39.es/ecma262/#sec-IsHTMLDDA-internal-slot
2428
+ var documentAll = typeof document == 'object' && document.all;
2429
+
2430
+ // `IsCallable` abstract operation
2431
+ // https://tc39.es/ecma262/#sec-iscallable
2432
+ // eslint-disable-next-line unicorn/no-typeof-undefined -- required for testing
2433
+ module.exports = typeof documentAll == 'undefined' && documentAll !== undefined ? function (argument) {
2434
+ return typeof argument == 'function' || argument === documentAll;
2435
+ } : function (argument) {
2436
+ return typeof argument == 'function';
2437
+ };
2438
+
2439
+
2440
+ /***/ }),
2441
+
2442
+ /***/ 4913:
2443
+ /***/ (function(__unused_webpack_module, exports, __webpack_require__) {
2444
+
2445
+ "use strict";
2446
+
2447
+ var DESCRIPTORS = __webpack_require__(3724);
2448
+ var IE8_DOM_DEFINE = __webpack_require__(5917);
2449
+ var V8_PROTOTYPE_DEFINE_BUG = __webpack_require__(8686);
2450
+ var anObject = __webpack_require__(8551);
2451
+ var toPropertyKey = __webpack_require__(6969);
2452
+
2453
+ var $TypeError = TypeError;
2454
+ // eslint-disable-next-line es/no-object-defineproperty -- safe
2455
+ var $defineProperty = Object.defineProperty;
2456
+ // eslint-disable-next-line es/no-object-getownpropertydescriptor -- safe
2457
+ var $getOwnPropertyDescriptor = Object.getOwnPropertyDescriptor;
2458
+ var ENUMERABLE = 'enumerable';
2459
+ var CONFIGURABLE = 'configurable';
2460
+ var WRITABLE = 'writable';
2461
+
2462
+ // `Object.defineProperty` method
2463
+ // https://tc39.es/ecma262/#sec-object.defineproperty
2464
+ exports.f = DESCRIPTORS ? V8_PROTOTYPE_DEFINE_BUG ? function defineProperty(O, P, Attributes) {
2465
+ anObject(O);
2466
+ P = toPropertyKey(P);
2467
+ anObject(Attributes);
2468
+ if (typeof O === 'function' && P === 'prototype' && 'value' in Attributes && WRITABLE in Attributes && !Attributes[WRITABLE]) {
2469
+ var current = $getOwnPropertyDescriptor(O, P);
2470
+ if (current && current[WRITABLE]) {
2471
+ O[P] = Attributes.value;
2472
+ Attributes = {
2473
+ configurable: CONFIGURABLE in Attributes ? Attributes[CONFIGURABLE] : current[CONFIGURABLE],
2474
+ enumerable: ENUMERABLE in Attributes ? Attributes[ENUMERABLE] : current[ENUMERABLE],
2475
+ writable: false
2476
+ };
2477
+ }
2478
+ } return $defineProperty(O, P, Attributes);
2479
+ } : $defineProperty : function defineProperty(O, P, Attributes) {
2480
+ anObject(O);
2481
+ P = toPropertyKey(P);
2482
+ anObject(Attributes);
2483
+ if (IE8_DOM_DEFINE) try {
2484
+ return $defineProperty(O, P, Attributes);
2485
+ } catch (error) { /* empty */ }
2486
+ if ('get' in Attributes || 'set' in Attributes) throw new $TypeError('Accessors not supported');
2487
+ if ('value' in Attributes) O[P] = Attributes.value;
2488
+ return O;
2489
+ };
2490
+
2491
+
2492
+ /***/ }),
2493
+
2494
+ /***/ 4916:
2495
+ /***/ (function(module, __unused_webpack_exports, __webpack_require__) {
2496
+
2497
+ "use strict";
2498
+
2499
+ var getBuiltIn = __webpack_require__(7751);
2500
+
2501
+ var createSetLike = function (size) {
2502
+ return {
2503
+ size: size,
2504
+ has: function () {
2505
+ return false;
2506
+ },
2507
+ keys: function () {
2508
+ return {
2509
+ next: function () {
2510
+ return { done: true };
2511
+ }
2512
+ };
2513
+ }
2514
+ };
2515
+ };
2516
+
2517
+ var createSetLikeWithInfinitySize = function (size) {
2518
+ return {
2519
+ size: size,
2520
+ has: function () {
2521
+ return true;
2522
+ },
2523
+ keys: function () {
2524
+ throw new Error('e');
2525
+ }
2526
+ };
2527
+ };
2528
+
2529
+ module.exports = function (name, callback) {
2530
+ var Set = getBuiltIn('Set');
2531
+ try {
2532
+ new Set()[name](createSetLike(0));
2533
+ try {
2534
+ // late spec change, early WebKit ~ Safari 17 implementation does not pass it
2535
+ // https://github.com/tc39/proposal-set-methods/pull/88
2536
+ // also covered engines with
2537
+ // https://bugs.webkit.org/show_bug.cgi?id=272679
2538
+ new Set()[name](createSetLike(-1));
2539
+ return false;
2540
+ } catch (error2) {
2541
+ if (!callback) return true;
2542
+ // early V8 implementation bug
2543
+ // https://issues.chromium.org/issues/351332634
2544
+ try {
2545
+ new Set()[name](createSetLikeWithInfinitySize(-Infinity));
2546
+ return false;
2547
+ } catch (error) {
2548
+ var set = new Set([1, 2]);
2549
+ return callback(set[name](createSetLikeWithInfinitySize(Infinity)));
2550
+ }
2551
+ }
2552
+ } catch (error) {
2553
+ return false;
2554
+ }
2555
+ };
2556
+
2557
+
2558
+ /***/ }),
2559
+
2560
+ /***/ 5024:
2561
+ /***/ (function(__unused_webpack_module, __unused_webpack_exports, __webpack_require__) {
2562
+
2563
+ "use strict";
2564
+
2565
+ var $ = __webpack_require__(6518);
2566
+ var symmetricDifference = __webpack_require__(3650);
2567
+ var setMethodGetKeysBeforeCloning = __webpack_require__(9835);
2568
+ var setMethodAcceptSetLike = __webpack_require__(4916);
2569
+
2570
+ var FORCED = !setMethodAcceptSetLike('symmetricDifference') || !setMethodGetKeysBeforeCloning('symmetricDifference');
2571
+
2572
+ // `Set.prototype.symmetricDifference` method
2573
+ // https://tc39.es/ecma262/#sec-set.prototype.symmetricdifference
2574
+ $({ target: 'Set', proto: true, real: true, forced: FORCED }, {
2575
+ symmetricDifference: symmetricDifference
2576
+ });
2577
+
2578
+
2579
+ /***/ }),
2580
+
2581
+ /***/ 5031:
2582
+ /***/ (function(module, __unused_webpack_exports, __webpack_require__) {
2583
+
2584
+ "use strict";
2585
+
2586
+ var getBuiltIn = __webpack_require__(7751);
2587
+ var uncurryThis = __webpack_require__(9504);
2588
+ var getOwnPropertyNamesModule = __webpack_require__(8480);
2589
+ var getOwnPropertySymbolsModule = __webpack_require__(3717);
2590
+ var anObject = __webpack_require__(8551);
2591
+
2592
+ var concat = uncurryThis([].concat);
2593
+
2594
+ // all object keys, includes non-enumerable and symbols
2595
+ module.exports = getBuiltIn('Reflect', 'ownKeys') || function ownKeys(it) {
2596
+ var keys = getOwnPropertyNamesModule.f(anObject(it));
2597
+ var getOwnPropertySymbols = getOwnPropertySymbolsModule.f;
2598
+ return getOwnPropertySymbols ? concat(keys, getOwnPropertySymbols(it)) : keys;
2599
+ };
2600
+
2601
+
2602
+ /***/ }),
2603
+
2604
+ /***/ 5169:
2605
+ /***/ (function(module, __unused_webpack_exports, __webpack_require__) {
2606
+
2607
+ "use strict";
2608
+
2609
+ var isDetached = __webpack_require__(3238);
2610
+
2611
+ var $TypeError = TypeError;
2612
+
2613
+ module.exports = function (it) {
2614
+ if (isDetached(it)) throw new $TypeError('ArrayBuffer is detached');
2615
+ return it;
2616
+ };
2617
+
2618
+
2619
+ /***/ }),
2620
+
2621
+ /***/ 5170:
2622
+ /***/ (function(module, __unused_webpack_exports, __webpack_require__) {
2623
+
2624
+ "use strict";
2625
+
2626
+ var uncurryThisAccessor = __webpack_require__(6706);
2627
+ var SetHelpers = __webpack_require__(4402);
2628
+
2629
+ module.exports = uncurryThisAccessor(SetHelpers.proto, 'size', 'get') || function (set) {
2630
+ return set.size;
2631
+ };
2632
+
2633
+
2634
+ /***/ }),
2635
+
2636
+ /***/ 5397:
2637
+ /***/ (function(module, __unused_webpack_exports, __webpack_require__) {
2638
+
2639
+ "use strict";
2640
+
2641
+ // toObject with fallback for non-array-like ES3 strings
2642
+ var IndexedObject = __webpack_require__(7055);
2643
+ var requireObjectCoercible = __webpack_require__(7750);
2644
+
2645
+ module.exports = function (it) {
2646
+ return IndexedObject(requireObjectCoercible(it));
2647
+ };
2648
+
2649
+
2650
+ /***/ }),
2651
+
2652
+ /***/ 5610:
2653
+ /***/ (function(module, __unused_webpack_exports, __webpack_require__) {
2654
+
2655
+ "use strict";
2656
+
2657
+ var toIntegerOrInfinity = __webpack_require__(1291);
2658
+
2659
+ var max = Math.max;
2660
+ var min = Math.min;
2661
+
2662
+ // Helper for a popular repeating case of the spec:
2663
+ // Let integer be ? ToInteger(index).
2664
+ // If integer < 0, let result be max((length + integer), 0); else let result be min(integer, length).
2665
+ module.exports = function (index, length) {
2666
+ var integer = toIntegerOrInfinity(index);
2667
+ return integer < 0 ? max(integer + length, 0) : min(integer, length);
2668
+ };
2669
+
2670
+
2671
+ /***/ }),
2672
+
2673
+ /***/ 5636:
2674
+ /***/ (function(module, __unused_webpack_exports, __webpack_require__) {
2675
+
2676
+ "use strict";
2677
+
2678
+ var globalThis = __webpack_require__(4576);
2679
+ var uncurryThis = __webpack_require__(9504);
2680
+ var uncurryThisAccessor = __webpack_require__(6706);
2681
+ var toIndex = __webpack_require__(7696);
2682
+ var notDetached = __webpack_require__(5169);
2683
+ var arrayBufferByteLength = __webpack_require__(7394);
2684
+ var detachTransferable = __webpack_require__(4483);
2685
+ var PROPER_STRUCTURED_CLONE_TRANSFER = __webpack_require__(1548);
2686
+
2687
+ var structuredClone = globalThis.structuredClone;
2688
+ var ArrayBuffer = globalThis.ArrayBuffer;
2689
+ var DataView = globalThis.DataView;
2690
+ var min = Math.min;
2691
+ var ArrayBufferPrototype = ArrayBuffer.prototype;
2692
+ var DataViewPrototype = DataView.prototype;
2693
+ var slice = uncurryThis(ArrayBufferPrototype.slice);
2694
+ var isResizable = uncurryThisAccessor(ArrayBufferPrototype, 'resizable', 'get');
2695
+ var maxByteLength = uncurryThisAccessor(ArrayBufferPrototype, 'maxByteLength', 'get');
2696
+ var getInt8 = uncurryThis(DataViewPrototype.getInt8);
2697
+ var setInt8 = uncurryThis(DataViewPrototype.setInt8);
2698
+
2699
+ module.exports = (PROPER_STRUCTURED_CLONE_TRANSFER || detachTransferable) && function (arrayBuffer, newLength, preserveResizability) {
2700
+ var byteLength = arrayBufferByteLength(arrayBuffer);
2701
+ var newByteLength = newLength === undefined ? byteLength : toIndex(newLength);
2702
+ var fixedLength = !isResizable || !isResizable(arrayBuffer);
2703
+ var newBuffer;
2704
+ notDetached(arrayBuffer);
2705
+ if (PROPER_STRUCTURED_CLONE_TRANSFER) {
2706
+ arrayBuffer = structuredClone(arrayBuffer, { transfer: [arrayBuffer] });
2707
+ if (byteLength === newByteLength && (preserveResizability || fixedLength)) return arrayBuffer;
2708
+ }
2709
+ if (byteLength >= newByteLength && (!preserveResizability || fixedLength)) {
2710
+ newBuffer = slice(arrayBuffer, 0, newByteLength);
2711
+ } else {
2712
+ var options = preserveResizability && !fixedLength && maxByteLength ? { maxByteLength: maxByteLength(arrayBuffer) } : undefined;
2713
+ newBuffer = new ArrayBuffer(newByteLength, options);
2714
+ var a = new DataView(arrayBuffer);
2715
+ var b = new DataView(newBuffer);
2716
+ var copyLength = min(newByteLength, byteLength);
2717
+ for (var i = 0; i < copyLength; i++) setInt8(b, i, getInt8(a, i));
2718
+ }
2719
+ if (!PROPER_STRUCTURED_CLONE_TRANSFER) detachTransferable(arrayBuffer);
2720
+ return newBuffer;
2721
+ };
2722
+
2723
+
2724
+ /***/ }),
2725
+
2726
+ /***/ 5745:
2727
+ /***/ (function(module, __unused_webpack_exports, __webpack_require__) {
2728
+
2729
+ "use strict";
2730
+
2731
+ var store = __webpack_require__(7629);
2732
+
2733
+ module.exports = function (key, value) {
2734
+ return store[key] || (store[key] = value || {});
2735
+ };
2736
+
2737
+
2738
+ /***/ }),
2739
+
2740
+ /***/ 5876:
2741
+ /***/ (function(__unused_webpack_module, __unused_webpack_exports, __webpack_require__) {
2742
+
2743
+ "use strict";
2744
+
2745
+ var $ = __webpack_require__(6518);
2746
+ var isSubsetOf = __webpack_require__(3838);
2747
+ var setMethodAcceptSetLike = __webpack_require__(4916);
2748
+
2749
+ var INCORRECT = !setMethodAcceptSetLike('isSubsetOf', function (result) {
2750
+ return result;
2751
+ });
2752
+
2753
+ // `Set.prototype.isSubsetOf` method
2754
+ // https://tc39.es/ecma262/#sec-set.prototype.issubsetof
2755
+ $({ target: 'Set', proto: true, real: true, forced: INCORRECT }, {
2756
+ isSubsetOf: isSubsetOf
2757
+ });
2758
+
2759
+
2760
+ /***/ }),
2761
+
2762
+ /***/ 5917:
2763
+ /***/ (function(module, __unused_webpack_exports, __webpack_require__) {
2764
+
2765
+ "use strict";
2766
+
2767
+ var DESCRIPTORS = __webpack_require__(3724);
2768
+ var fails = __webpack_require__(9039);
2769
+ var createElement = __webpack_require__(4055);
2770
+
2771
+ // Thanks to IE8 for its funny defineProperty
2772
+ module.exports = !DESCRIPTORS && !fails(function () {
2773
+ // eslint-disable-next-line es/no-object-defineproperty -- required for testing
2774
+ return Object.defineProperty(createElement('div'), 'a', {
2775
+ get: function () { return 7; }
2776
+ }).a !== 7;
2777
+ });
2778
+
2779
+
2780
+ /***/ }),
2781
+
2782
+ /***/ 5966:
2783
+ /***/ (function(module, __unused_webpack_exports, __webpack_require__) {
2784
+
2785
+ "use strict";
2786
+
2787
+ var aCallable = __webpack_require__(9306);
2788
+ var isNullOrUndefined = __webpack_require__(4117);
2789
+
2790
+ // `GetMethod` abstract operation
2791
+ // https://tc39.es/ecma262/#sec-getmethod
2792
+ module.exports = function (V, P) {
2793
+ var func = V[P];
2794
+ return isNullOrUndefined(func) ? undefined : aCallable(func);
2795
+ };
2796
+
2797
+
2798
+ /***/ }),
2799
+
2800
+ /***/ 6080:
2801
+ /***/ (function(module, __unused_webpack_exports, __webpack_require__) {
2802
+
2803
+ "use strict";
2804
+
2805
+ var uncurryThis = __webpack_require__(7476);
2806
+ var aCallable = __webpack_require__(9306);
2807
+ var NATIVE_BIND = __webpack_require__(616);
2808
+
2809
+ var bind = uncurryThis(uncurryThis.bind);
2810
+
2811
+ // optional / simple context binding
2812
+ module.exports = function (fn, that) {
2813
+ aCallable(fn);
2814
+ return that === undefined ? fn : NATIVE_BIND ? bind(fn, that) : function (/* ...args */) {
2815
+ return fn.apply(that, arguments);
2816
+ };
2817
+ };
2818
+
2819
+
2820
+ /***/ }),
2821
+
2822
+ /***/ 6119:
2823
+ /***/ (function(module, __unused_webpack_exports, __webpack_require__) {
2824
+
2825
+ "use strict";
2826
+
2827
+ var shared = __webpack_require__(5745);
2828
+ var uid = __webpack_require__(3392);
2829
+
2830
+ var keys = shared('keys');
2831
+
2832
+ module.exports = function (key) {
2833
+ return keys[key] || (keys[key] = uid(key));
2834
+ };
2835
+
2836
+
2837
+ /***/ }),
2838
+
2839
+ /***/ 6193:
2840
+ /***/ (function(module, __unused_webpack_exports, __webpack_require__) {
2841
+
2842
+ "use strict";
2843
+
2844
+ var ENVIRONMENT = __webpack_require__(4215);
2845
+
2846
+ module.exports = ENVIRONMENT === 'NODE';
2847
+
2848
+
2849
+ /***/ }),
2850
+
2851
+ /***/ 6198:
2852
+ /***/ (function(module, __unused_webpack_exports, __webpack_require__) {
2853
+
2854
+ "use strict";
2855
+
2856
+ var toLength = __webpack_require__(8014);
2857
+
2858
+ // `LengthOfArrayLike` abstract operation
2859
+ // https://tc39.es/ecma262/#sec-lengthofarraylike
2860
+ module.exports = function (obj) {
2861
+ return toLength(obj.length);
2862
+ };
2863
+
2864
+
2865
+ /***/ }),
2866
+
2867
+ /***/ 6269:
2868
+ /***/ (function(module) {
2869
+
2870
+ "use strict";
2871
+
2872
+ module.exports = {};
2873
+
2874
+
2875
+ /***/ }),
2876
+
2877
+ /***/ 6395:
2878
+ /***/ (function(module) {
2879
+
2880
+ "use strict";
2881
+
2882
+ module.exports = false;
2883
+
2884
+
2885
+ /***/ }),
2886
+
2887
+ /***/ 6518:
2888
+ /***/ (function(module, __unused_webpack_exports, __webpack_require__) {
2889
+
2890
+ "use strict";
2891
+
2892
+ var globalThis = __webpack_require__(4576);
2893
+ var getOwnPropertyDescriptor = (__webpack_require__(7347).f);
2894
+ var createNonEnumerableProperty = __webpack_require__(6699);
2895
+ var defineBuiltIn = __webpack_require__(6840);
2896
+ var defineGlobalProperty = __webpack_require__(9433);
2897
+ var copyConstructorProperties = __webpack_require__(7740);
2898
+ var isForced = __webpack_require__(2796);
2899
+
2900
+ /*
2901
+ options.target - name of the target object
2902
+ options.global - target is the global object
2903
+ options.stat - export as static methods of target
2904
+ options.proto - export as prototype methods of target
2905
+ options.real - real prototype method for the `pure` version
2906
+ options.forced - export even if the native feature is available
2907
+ options.bind - bind methods to the target, required for the `pure` version
2908
+ options.wrap - wrap constructors to preventing global pollution, required for the `pure` version
2909
+ options.unsafe - use the simple assignment of property instead of delete + defineProperty
2910
+ options.sham - add a flag to not completely full polyfills
2911
+ options.enumerable - export as enumerable property
2912
+ options.dontCallGetSet - prevent calling a getter on target
2913
+ options.name - the .name of the function if it does not match the key
2914
+ */
2915
+ module.exports = function (options, source) {
2916
+ var TARGET = options.target;
2917
+ var GLOBAL = options.global;
2918
+ var STATIC = options.stat;
2919
+ var FORCED, target, key, targetProperty, sourceProperty, descriptor;
2920
+ if (GLOBAL) {
2921
+ target = globalThis;
2922
+ } else if (STATIC) {
2923
+ target = globalThis[TARGET] || defineGlobalProperty(TARGET, {});
2924
+ } else {
2925
+ target = globalThis[TARGET] && globalThis[TARGET].prototype;
2926
+ }
2927
+ if (target) for (key in source) {
2928
+ sourceProperty = source[key];
2929
+ if (options.dontCallGetSet) {
2930
+ descriptor = getOwnPropertyDescriptor(target, key);
2931
+ targetProperty = descriptor && descriptor.value;
2932
+ } else targetProperty = target[key];
2933
+ FORCED = isForced(GLOBAL ? key : TARGET + (STATIC ? '.' : '#') + key, options.forced);
2934
+ // contained in target
2935
+ if (!FORCED && targetProperty !== undefined) {
2936
+ if (typeof sourceProperty == typeof targetProperty) continue;
2937
+ copyConstructorProperties(sourceProperty, targetProperty);
2938
+ }
2939
+ // add a flag to not completely full polyfills
2940
+ if (options.sham || (targetProperty && targetProperty.sham)) {
2941
+ createNonEnumerableProperty(sourceProperty, 'sham', true);
2942
+ }
2943
+ defineBuiltIn(target, key, sourceProperty, options);
2944
+ }
2945
+ };
2946
+
2947
+
2948
+ /***/ }),
2949
+
2950
+ /***/ 6573:
2951
+ /***/ (function(__unused_webpack_module, __unused_webpack_exports, __webpack_require__) {
2952
+
2953
+ "use strict";
2954
+
2955
+ var DESCRIPTORS = __webpack_require__(3724);
2956
+ var defineBuiltInAccessor = __webpack_require__(2106);
2957
+ var isDetached = __webpack_require__(3238);
2958
+
2959
+ var ArrayBufferPrototype = ArrayBuffer.prototype;
2960
+
2961
+ // `ArrayBuffer.prototype.detached` getter
2962
+ // https://tc39.es/ecma262/#sec-get-arraybuffer.prototype.detached
2963
+ if (DESCRIPTORS && !('detached' in ArrayBufferPrototype)) {
2964
+ defineBuiltInAccessor(ArrayBufferPrototype, 'detached', {
2965
+ configurable: true,
2966
+ get: function detached() {
2967
+ return isDetached(this);
2968
+ }
2969
+ });
2970
+ }
2971
+
2972
+
2973
+ /***/ }),
2974
+
2975
+ /***/ 6699:
2976
+ /***/ (function(module, __unused_webpack_exports, __webpack_require__) {
2977
+
2978
+ "use strict";
2979
+
2980
+ var DESCRIPTORS = __webpack_require__(3724);
2981
+ var definePropertyModule = __webpack_require__(4913);
2982
+ var createPropertyDescriptor = __webpack_require__(6980);
2983
+
2984
+ module.exports = DESCRIPTORS ? function (object, key, value) {
2985
+ return definePropertyModule.f(object, key, createPropertyDescriptor(1, value));
2986
+ } : function (object, key, value) {
2987
+ object[key] = value;
2988
+ return object;
2989
+ };
2990
+
2991
+
2992
+ /***/ }),
2993
+
2994
+ /***/ 6706:
2995
+ /***/ (function(module, __unused_webpack_exports, __webpack_require__) {
2996
+
2997
+ "use strict";
2998
+
2999
+ var uncurryThis = __webpack_require__(9504);
3000
+ var aCallable = __webpack_require__(9306);
3001
+
3002
+ module.exports = function (object, key, method) {
3003
+ try {
3004
+ // eslint-disable-next-line es/no-object-getownpropertydescriptor -- safe
3005
+ return uncurryThis(aCallable(Object.getOwnPropertyDescriptor(object, key)[method]));
3006
+ } catch (error) { /* empty */ }
3007
+ };
3008
+
3009
+
3010
+ /***/ }),
3011
+
3012
+ /***/ 6801:
3013
+ /***/ (function(__unused_webpack_module, exports, __webpack_require__) {
3014
+
3015
+ "use strict";
3016
+
3017
+ var DESCRIPTORS = __webpack_require__(3724);
3018
+ var V8_PROTOTYPE_DEFINE_BUG = __webpack_require__(8686);
3019
+ var definePropertyModule = __webpack_require__(4913);
3020
+ var anObject = __webpack_require__(8551);
3021
+ var toIndexedObject = __webpack_require__(5397);
3022
+ var objectKeys = __webpack_require__(1072);
3023
+
3024
+ // `Object.defineProperties` method
3025
+ // https://tc39.es/ecma262/#sec-object.defineproperties
3026
+ // eslint-disable-next-line es/no-object-defineproperties -- safe
3027
+ exports.f = DESCRIPTORS && !V8_PROTOTYPE_DEFINE_BUG ? Object.defineProperties : function defineProperties(O, Properties) {
3028
+ anObject(O);
3029
+ var props = toIndexedObject(Properties);
3030
+ var keys = objectKeys(Properties);
3031
+ var length = keys.length;
3032
+ var index = 0;
3033
+ var key;
3034
+ while (length > index) definePropertyModule.f(O, key = keys[index++], props[key]);
3035
+ return O;
3036
+ };
3037
+
3038
+
3039
+ /***/ }),
3040
+
3041
+ /***/ 6823:
3042
+ /***/ (function(module) {
3043
+
3044
+ "use strict";
3045
+
3046
+ var $String = String;
3047
+
3048
+ module.exports = function (argument) {
3049
+ try {
3050
+ return $String(argument);
3051
+ } catch (error) {
3052
+ return 'Object';
3053
+ }
3054
+ };
3055
+
3056
+
3057
+ /***/ }),
3058
+
3059
+ /***/ 6837:
3060
+ /***/ (function(module) {
3061
+
3062
+ "use strict";
3063
+
3064
+ var $TypeError = TypeError;
3065
+ var MAX_SAFE_INTEGER = 0x1FFFFFFFFFFFFF; // 2 ** 53 - 1 == 9007199254740991
3066
+
3067
+ module.exports = function (it) {
3068
+ if (it > MAX_SAFE_INTEGER) throw $TypeError('Maximum allowed index exceeded');
3069
+ return it;
3070
+ };
3071
+
3072
+
3073
+ /***/ }),
3074
+
3075
+ /***/ 6840:
3076
+ /***/ (function(module, __unused_webpack_exports, __webpack_require__) {
3077
+
3078
+ "use strict";
3079
+
3080
+ var isCallable = __webpack_require__(4901);
3081
+ var definePropertyModule = __webpack_require__(4913);
3082
+ var makeBuiltIn = __webpack_require__(283);
3083
+ var defineGlobalProperty = __webpack_require__(9433);
3084
+
3085
+ module.exports = function (O, key, value, options) {
3086
+ if (!options) options = {};
3087
+ var simple = options.enumerable;
3088
+ var name = options.name !== undefined ? options.name : key;
3089
+ if (isCallable(value)) makeBuiltIn(value, name, options);
3090
+ if (options.global) {
3091
+ if (simple) O[key] = value;
3092
+ else defineGlobalProperty(key, value);
3093
+ } else {
3094
+ try {
3095
+ if (!options.unsafe) delete O[key];
3096
+ else if (O[key]) simple = true;
3097
+ } catch (error) { /* empty */ }
3098
+ if (simple) O[key] = value;
3099
+ else definePropertyModule.f(O, key, {
3100
+ value: value,
3101
+ enumerable: false,
3102
+ configurable: !options.nonConfigurable,
3103
+ writable: !options.nonWritable
3104
+ });
3105
+ } return O;
3106
+ };
3107
+
3108
+
3109
+ /***/ }),
3110
+
3111
+ /***/ 6955:
3112
+ /***/ (function(module, __unused_webpack_exports, __webpack_require__) {
3113
+
3114
+ "use strict";
3115
+
3116
+ var TO_STRING_TAG_SUPPORT = __webpack_require__(2140);
3117
+ var isCallable = __webpack_require__(4901);
3118
+ var classofRaw = __webpack_require__(2195);
3119
+ var wellKnownSymbol = __webpack_require__(8227);
3120
+
3121
+ var TO_STRING_TAG = wellKnownSymbol('toStringTag');
3122
+ var $Object = Object;
3123
+
3124
+ // ES3 wrong here
3125
+ var CORRECT_ARGUMENTS = classofRaw(function () { return arguments; }()) === 'Arguments';
3126
+
3127
+ // fallback for IE11 Script Access Denied error
3128
+ var tryGet = function (it, key) {
3129
+ try {
3130
+ return it[key];
3131
+ } catch (error) { /* empty */ }
3132
+ };
3133
+
3134
+ // getting tag from ES6+ `Object.prototype.toString`
3135
+ module.exports = TO_STRING_TAG_SUPPORT ? classofRaw : function (it) {
3136
+ var O, tag, result;
3137
+ return it === undefined ? 'Undefined' : it === null ? 'Null'
3138
+ // @@toStringTag case
3139
+ : typeof (tag = tryGet(O = $Object(it), TO_STRING_TAG)) == 'string' ? tag
3140
+ // builtinTag case
3141
+ : CORRECT_ARGUMENTS ? classofRaw(O)
3142
+ // ES3 arguments fallback
3143
+ : (result = classofRaw(O)) === 'Object' && isCallable(O.callee) ? 'Arguments' : result;
3144
+ };
3145
+
3146
+
3147
+ /***/ }),
3148
+
3149
+ /***/ 6969:
3150
+ /***/ (function(module, __unused_webpack_exports, __webpack_require__) {
3151
+
3152
+ "use strict";
3153
+
3154
+ var toPrimitive = __webpack_require__(2777);
3155
+ var isSymbol = __webpack_require__(757);
3156
+
3157
+ // `ToPropertyKey` abstract operation
3158
+ // https://tc39.es/ecma262/#sec-topropertykey
3159
+ module.exports = function (argument) {
3160
+ var key = toPrimitive(argument, 'string');
3161
+ return isSymbol(key) ? key : key + '';
3162
+ };
3163
+
3164
+
3165
+ /***/ }),
3166
+
3167
+ /***/ 6980:
3168
+ /***/ (function(module) {
3169
+
3170
+ "use strict";
3171
+
3172
+ module.exports = function (bitmap, value) {
3173
+ return {
3174
+ enumerable: !(bitmap & 1),
3175
+ configurable: !(bitmap & 2),
3176
+ writable: !(bitmap & 4),
3177
+ value: value
3178
+ };
3179
+ };
3180
+
3181
+
3182
+ /***/ }),
3183
+
3184
+ /***/ 7040:
3185
+ /***/ (function(module, __unused_webpack_exports, __webpack_require__) {
3186
+
3187
+ "use strict";
3188
+
3189
+ /* eslint-disable es/no-symbol -- required for testing */
3190
+ var NATIVE_SYMBOL = __webpack_require__(4495);
3191
+
3192
+ module.exports = NATIVE_SYMBOL &&
3193
+ !Symbol.sham &&
3194
+ typeof Symbol.iterator == 'symbol';
3195
+
3196
+
3197
+ /***/ }),
3198
+
3199
+ /***/ 7055:
3200
+ /***/ (function(module, __unused_webpack_exports, __webpack_require__) {
3201
+
3202
+ "use strict";
3203
+
3204
+ var uncurryThis = __webpack_require__(9504);
3205
+ var fails = __webpack_require__(9039);
3206
+ var classof = __webpack_require__(2195);
3207
+
3208
+ var $Object = Object;
3209
+ var split = uncurryThis(''.split);
3210
+
3211
+ // fallback for non-array-like ES3 and non-enumerable old V8 strings
3212
+ module.exports = fails(function () {
3213
+ // throws an error in rhino, see https://github.com/mozilla/rhino/issues/346
3214
+ // eslint-disable-next-line no-prototype-builtins -- safe
3215
+ return !$Object('z').propertyIsEnumerable(0);
3216
+ }) ? function (it) {
3217
+ return classof(it) === 'String' ? split(it, '') : $Object(it);
3218
+ } : $Object;
3219
+
3220
+
3221
+ /***/ }),
3222
+
3223
+ /***/ 7080:
3224
+ /***/ (function(module, __unused_webpack_exports, __webpack_require__) {
3225
+
3226
+ "use strict";
3227
+
3228
+ var has = (__webpack_require__(4402).has);
3229
+
3230
+ // Perform ? RequireInternalSlot(M, [[SetData]])
3231
+ module.exports = function (it) {
3232
+ has(it);
3233
+ return it;
3234
+ };
3235
+
3236
+
3237
+ /***/ }),
3238
+
3239
+ /***/ 7347:
3240
+ /***/ (function(__unused_webpack_module, exports, __webpack_require__) {
3241
+
3242
+ "use strict";
3243
+
3244
+ var DESCRIPTORS = __webpack_require__(3724);
3245
+ var call = __webpack_require__(9565);
3246
+ var propertyIsEnumerableModule = __webpack_require__(8773);
3247
+ var createPropertyDescriptor = __webpack_require__(6980);
3248
+ var toIndexedObject = __webpack_require__(5397);
3249
+ var toPropertyKey = __webpack_require__(6969);
3250
+ var hasOwn = __webpack_require__(9297);
3251
+ var IE8_DOM_DEFINE = __webpack_require__(5917);
3252
+
3253
+ // eslint-disable-next-line es/no-object-getownpropertydescriptor -- safe
3254
+ var $getOwnPropertyDescriptor = Object.getOwnPropertyDescriptor;
3255
+
3256
+ // `Object.getOwnPropertyDescriptor` method
3257
+ // https://tc39.es/ecma262/#sec-object.getownpropertydescriptor
3258
+ exports.f = DESCRIPTORS ? $getOwnPropertyDescriptor : function getOwnPropertyDescriptor(O, P) {
3259
+ O = toIndexedObject(O);
3260
+ P = toPropertyKey(P);
3261
+ if (IE8_DOM_DEFINE) try {
3262
+ return $getOwnPropertyDescriptor(O, P);
3263
+ } catch (error) { /* empty */ }
3264
+ if (hasOwn(O, P)) return createPropertyDescriptor(!call(propertyIsEnumerableModule.f, O, P), O[P]);
3265
+ };
3266
+
3267
+
3268
+ /***/ }),
3269
+
3270
+ /***/ 7394:
3271
+ /***/ (function(module, __unused_webpack_exports, __webpack_require__) {
3272
+
3273
+ "use strict";
3274
+
3275
+ var globalThis = __webpack_require__(4576);
3276
+ var uncurryThisAccessor = __webpack_require__(6706);
3277
+ var classof = __webpack_require__(2195);
3278
+
3279
+ var ArrayBuffer = globalThis.ArrayBuffer;
3280
+ var TypeError = globalThis.TypeError;
3281
+
3282
+ // Includes
3283
+ // - Perform ? RequireInternalSlot(O, [[ArrayBufferData]]).
3284
+ // - If IsSharedArrayBuffer(O) is true, throw a TypeError exception.
3285
+ module.exports = ArrayBuffer && uncurryThisAccessor(ArrayBuffer.prototype, 'byteLength', 'get') || function (O) {
3286
+ if (classof(O) !== 'ArrayBuffer') throw new TypeError('ArrayBuffer expected');
3287
+ return O.byteLength;
3288
+ };
3289
+
3290
+
3291
+ /***/ }),
3292
+
3293
+ /***/ 7476:
3294
+ /***/ (function(module, __unused_webpack_exports, __webpack_require__) {
3295
+
3296
+ "use strict";
3297
+
3298
+ var classofRaw = __webpack_require__(2195);
3299
+ var uncurryThis = __webpack_require__(9504);
3300
+
3301
+ module.exports = function (fn) {
3302
+ // Nashorn bug:
3303
+ // https://github.com/zloirock/core-js/issues/1128
3304
+ // https://github.com/zloirock/core-js/issues/1130
3305
+ if (classofRaw(fn) === 'Function') return uncurryThis(fn);
3306
+ };
3307
+
3308
+
3309
+ /***/ }),
3310
+
3311
+ /***/ 7588:
3312
+ /***/ (function(__unused_webpack_module, __unused_webpack_exports, __webpack_require__) {
3313
+
3314
+ "use strict";
3315
+
3316
+ var $ = __webpack_require__(6518);
3317
+ var call = __webpack_require__(9565);
3318
+ var iterate = __webpack_require__(2652);
3319
+ var aCallable = __webpack_require__(9306);
3320
+ var anObject = __webpack_require__(8551);
3321
+ var getIteratorDirect = __webpack_require__(1767);
3322
+ var iteratorClose = __webpack_require__(9539);
3323
+ var iteratorHelperWithoutClosingOnEarlyError = __webpack_require__(4549);
3324
+
3325
+ var forEachWithoutClosingOnEarlyError = iteratorHelperWithoutClosingOnEarlyError('forEach', TypeError);
3326
+
3327
+ // `Iterator.prototype.forEach` method
3328
+ // https://tc39.es/ecma262/#sec-iterator.prototype.foreach
3329
+ $({ target: 'Iterator', proto: true, real: true, forced: forEachWithoutClosingOnEarlyError }, {
3330
+ forEach: function forEach(fn) {
3331
+ anObject(this);
3332
+ try {
3333
+ aCallable(fn);
3334
+ } catch (error) {
3335
+ iteratorClose(this, 'throw', error);
3336
+ }
3337
+
3338
+ if (forEachWithoutClosingOnEarlyError) return call(forEachWithoutClosingOnEarlyError, this, fn);
3339
+
3340
+ var record = getIteratorDirect(this);
3341
+ var counter = 0;
3342
+ iterate(record, function (value) {
3343
+ fn(value, counter++);
3344
+ }, { IS_RECORD: true });
3345
+ }
3346
+ });
3347
+
3348
+
3349
+ /***/ }),
3350
+
3351
+ /***/ 7629:
3352
+ /***/ (function(module, __unused_webpack_exports, __webpack_require__) {
3353
+
3354
+ "use strict";
3355
+
3356
+ var IS_PURE = __webpack_require__(6395);
3357
+ var globalThis = __webpack_require__(4576);
3358
+ var defineGlobalProperty = __webpack_require__(9433);
3359
+
3360
+ var SHARED = '__core-js_shared__';
3361
+ var store = module.exports = globalThis[SHARED] || defineGlobalProperty(SHARED, {});
3362
+
3363
+ (store.versions || (store.versions = [])).push({
3364
+ version: '3.47.0',
3365
+ mode: IS_PURE ? 'pure' : 'global',
3366
+ copyright: '© 2014-2025 Denis Pushkarev (zloirock.ru), 2025 CoreJS Company (core-js.io)',
3367
+ license: 'https://github.com/zloirock/core-js/blob/v3.47.0/LICENSE',
3368
+ source: 'https://github.com/zloirock/core-js'
3369
+ });
3370
+
3371
+
3372
+ /***/ }),
3373
+
3374
+ /***/ 7642:
3375
+ /***/ (function(__unused_webpack_module, __unused_webpack_exports, __webpack_require__) {
3376
+
3377
+ "use strict";
3378
+
3379
+ var $ = __webpack_require__(6518);
3380
+ var difference = __webpack_require__(3440);
3381
+ var fails = __webpack_require__(9039);
3382
+ var setMethodAcceptSetLike = __webpack_require__(4916);
3383
+
3384
+ var SET_LIKE_INCORRECT_BEHAVIOR = !setMethodAcceptSetLike('difference', function (result) {
3385
+ return result.size === 0;
3386
+ });
3387
+
3388
+ var FORCED = SET_LIKE_INCORRECT_BEHAVIOR || fails(function () {
3389
+ // https://bugs.webkit.org/show_bug.cgi?id=288595
3390
+ var setLike = {
3391
+ size: 1,
3392
+ has: function () { return true; },
3393
+ keys: function () {
3394
+ var index = 0;
3395
+ return {
3396
+ next: function () {
3397
+ var done = index++ > 1;
3398
+ if (baseSet.has(1)) baseSet.clear();
3399
+ return { done: done, value: 2 };
3400
+ }
3401
+ };
3402
+ }
3403
+ };
3404
+ // eslint-disable-next-line es/no-set -- testing
3405
+ var baseSet = new Set([1, 2, 3, 4]);
3406
+ // eslint-disable-next-line es/no-set-prototype-difference -- testing
3407
+ return baseSet.difference(setLike).size !== 3;
3408
+ });
3409
+
3410
+ // `Set.prototype.difference` method
3411
+ // https://tc39.es/ecma262/#sec-set.prototype.difference
3412
+ $({ target: 'Set', proto: true, real: true, forced: FORCED }, {
3413
+ difference: difference
3414
+ });
3415
+
3416
+
3417
+ /***/ }),
3418
+
3419
+ /***/ 7657:
3420
+ /***/ (function(module, __unused_webpack_exports, __webpack_require__) {
3421
+
3422
+ "use strict";
3423
+
3424
+ var fails = __webpack_require__(9039);
3425
+ var isCallable = __webpack_require__(4901);
3426
+ var isObject = __webpack_require__(34);
3427
+ var create = __webpack_require__(2360);
3428
+ var getPrototypeOf = __webpack_require__(2787);
3429
+ var defineBuiltIn = __webpack_require__(6840);
3430
+ var wellKnownSymbol = __webpack_require__(8227);
3431
+ var IS_PURE = __webpack_require__(6395);
3432
+
3433
+ var ITERATOR = wellKnownSymbol('iterator');
3434
+ var BUGGY_SAFARI_ITERATORS = false;
3435
+
3436
+ // `%IteratorPrototype%` object
3437
+ // https://tc39.es/ecma262/#sec-%iteratorprototype%-object
3438
+ var IteratorPrototype, PrototypeOfArrayIteratorPrototype, arrayIterator;
3439
+
3440
+ /* eslint-disable es/no-array-prototype-keys -- safe */
3441
+ if ([].keys) {
3442
+ arrayIterator = [].keys();
3443
+ // Safari 8 has buggy iterators w/o `next`
3444
+ if (!('next' in arrayIterator)) BUGGY_SAFARI_ITERATORS = true;
3445
+ else {
3446
+ PrototypeOfArrayIteratorPrototype = getPrototypeOf(getPrototypeOf(arrayIterator));
3447
+ if (PrototypeOfArrayIteratorPrototype !== Object.prototype) IteratorPrototype = PrototypeOfArrayIteratorPrototype;
3448
+ }
3449
+ }
3450
+
3451
+ var NEW_ITERATOR_PROTOTYPE = !isObject(IteratorPrototype) || fails(function () {
3452
+ var test = {};
3453
+ // FF44- legacy iterators case
3454
+ return IteratorPrototype[ITERATOR].call(test) !== test;
3455
+ });
3456
+
3457
+ if (NEW_ITERATOR_PROTOTYPE) IteratorPrototype = {};
3458
+ else if (IS_PURE) IteratorPrototype = create(IteratorPrototype);
3459
+
3460
+ // `%IteratorPrototype%[@@iterator]()` method
3461
+ // https://tc39.es/ecma262/#sec-%iteratorprototype%-@@iterator
3462
+ if (!isCallable(IteratorPrototype[ITERATOR])) {
3463
+ defineBuiltIn(IteratorPrototype, ITERATOR, function () {
3464
+ return this;
3465
+ });
3466
+ }
3467
+
3468
+ module.exports = {
3469
+ IteratorPrototype: IteratorPrototype,
3470
+ BUGGY_SAFARI_ITERATORS: BUGGY_SAFARI_ITERATORS
3471
+ };
3472
+
3473
+
3474
+ /***/ }),
3475
+
3476
+ /***/ 7696:
3477
+ /***/ (function(module, __unused_webpack_exports, __webpack_require__) {
3478
+
3479
+ "use strict";
3480
+
3481
+ var toIntegerOrInfinity = __webpack_require__(1291);
3482
+ var toLength = __webpack_require__(8014);
3483
+
3484
+ var $RangeError = RangeError;
3485
+
3486
+ // `ToIndex` abstract operation
3487
+ // https://tc39.es/ecma262/#sec-toindex
3488
+ module.exports = function (it) {
3489
+ if (it === undefined) return 0;
3490
+ var number = toIntegerOrInfinity(it);
3491
+ var length = toLength(number);
3492
+ if (number !== length) throw new $RangeError('Wrong length or index');
3493
+ return length;
3494
+ };
3495
+
3496
+
3497
+ /***/ }),
3498
+
3499
+ /***/ 7740:
3500
+ /***/ (function(module, __unused_webpack_exports, __webpack_require__) {
3501
+
3502
+ "use strict";
3503
+
3504
+ var hasOwn = __webpack_require__(9297);
3505
+ var ownKeys = __webpack_require__(5031);
3506
+ var getOwnPropertyDescriptorModule = __webpack_require__(7347);
3507
+ var definePropertyModule = __webpack_require__(4913);
3508
+
3509
+ module.exports = function (target, source, exceptions) {
3510
+ var keys = ownKeys(source);
3511
+ var defineProperty = definePropertyModule.f;
3512
+ var getOwnPropertyDescriptor = getOwnPropertyDescriptorModule.f;
3513
+ for (var i = 0; i < keys.length; i++) {
3514
+ var key = keys[i];
3515
+ if (!hasOwn(target, key) && !(exceptions && hasOwn(exceptions, key))) {
3516
+ defineProperty(target, key, getOwnPropertyDescriptor(source, key));
3517
+ }
3518
+ }
3519
+ };
3520
+
3521
+
3522
+ /***/ }),
3523
+
3524
+ /***/ 7750:
3525
+ /***/ (function(module, __unused_webpack_exports, __webpack_require__) {
3526
+
3527
+ "use strict";
3528
+
3529
+ var isNullOrUndefined = __webpack_require__(4117);
3530
+
3531
+ var $TypeError = TypeError;
3532
+
3533
+ // `RequireObjectCoercible` abstract operation
3534
+ // https://tc39.es/ecma262/#sec-requireobjectcoercible
3535
+ module.exports = function (it) {
3536
+ if (isNullOrUndefined(it)) throw new $TypeError("Can't call method on " + it);
3537
+ return it;
3538
+ };
3539
+
3540
+
3541
+ /***/ }),
3542
+
3543
+ /***/ 7751:
3544
+ /***/ (function(module, __unused_webpack_exports, __webpack_require__) {
3545
+
3546
+ "use strict";
3547
+
3548
+ var globalThis = __webpack_require__(4576);
3549
+ var isCallable = __webpack_require__(4901);
3550
+
3551
+ var aFunction = function (argument) {
3552
+ return isCallable(argument) ? argument : undefined;
3553
+ };
3554
+
3555
+ module.exports = function (namespace, method) {
3556
+ return arguments.length < 2 ? aFunction(globalThis[namespace]) : globalThis[namespace] && globalThis[namespace][method];
3557
+ };
3558
+
3559
+
3560
+ /***/ }),
3561
+
3562
+ /***/ 7811:
3563
+ /***/ (function(module) {
3564
+
3565
+ "use strict";
3566
+
3567
+ // eslint-disable-next-line es/no-typed-arrays -- safe
3568
+ module.exports = typeof ArrayBuffer != 'undefined' && typeof DataView != 'undefined';
3569
+
3570
+
3571
+ /***/ }),
3572
+
3573
+ /***/ 7936:
3574
+ /***/ (function(__unused_webpack_module, __unused_webpack_exports, __webpack_require__) {
3575
+
3576
+ "use strict";
3577
+
3578
+ var $ = __webpack_require__(6518);
3579
+ var $transfer = __webpack_require__(5636);
3580
+
3581
+ // `ArrayBuffer.prototype.transferToFixedLength` method
3582
+ // https://tc39.es/ecma262/#sec-arraybuffer.prototype.transfertofixedlength
3583
+ if ($transfer) $({ target: 'ArrayBuffer', proto: true }, {
3584
+ transferToFixedLength: function transferToFixedLength() {
3585
+ return $transfer(this, arguments.length ? arguments[0] : undefined, false);
3586
+ }
3587
+ });
3588
+
3589
+
3590
+ /***/ }),
3591
+
3592
+ /***/ 8004:
3593
+ /***/ (function(__unused_webpack_module, __unused_webpack_exports, __webpack_require__) {
3594
+
3595
+ "use strict";
3596
+
3597
+ var $ = __webpack_require__(6518);
3598
+ var fails = __webpack_require__(9039);
3599
+ var intersection = __webpack_require__(8750);
3600
+ var setMethodAcceptSetLike = __webpack_require__(4916);
3601
+
3602
+ var INCORRECT = !setMethodAcceptSetLike('intersection', function (result) {
3603
+ return result.size === 2 && result.has(1) && result.has(2);
3604
+ }) || fails(function () {
3605
+ // eslint-disable-next-line es/no-array-from, es/no-set, es/no-set-prototype-intersection -- testing
3606
+ return String(Array.from(new Set([1, 2, 3]).intersection(new Set([3, 2])))) !== '3,2';
3607
+ });
3608
+
3609
+ // `Set.prototype.intersection` method
3610
+ // https://tc39.es/ecma262/#sec-set.prototype.intersection
3611
+ $({ target: 'Set', proto: true, real: true, forced: INCORRECT }, {
3612
+ intersection: intersection
3613
+ });
3614
+
3615
+
3616
+ /***/ }),
3617
+
3618
+ /***/ 8014:
3619
+ /***/ (function(module, __unused_webpack_exports, __webpack_require__) {
3620
+
3621
+ "use strict";
3622
+
3623
+ var toIntegerOrInfinity = __webpack_require__(1291);
3624
+
3625
+ var min = Math.min;
3626
+
3627
+ // `ToLength` abstract operation
3628
+ // https://tc39.es/ecma262/#sec-tolength
3629
+ module.exports = function (argument) {
3630
+ var len = toIntegerOrInfinity(argument);
3631
+ return len > 0 ? min(len, 0x1FFFFFFFFFFFFF) : 0; // 2 ** 53 - 1 == 9007199254740991
3632
+ };
3633
+
3634
+
3635
+ /***/ }),
3636
+
3637
+ /***/ 8100:
3638
+ /***/ (function(__unused_webpack_module, __unused_webpack_exports, __webpack_require__) {
3639
+
3640
+ "use strict";
3641
+
3642
+ var $ = __webpack_require__(6518);
3643
+ var $transfer = __webpack_require__(5636);
3644
+
3645
+ // `ArrayBuffer.prototype.transfer` method
3646
+ // https://tc39.es/ecma262/#sec-arraybuffer.prototype.transfer
3647
+ if ($transfer) $({ target: 'ArrayBuffer', proto: true }, {
3648
+ transfer: function transfer() {
3649
+ return $transfer(this, arguments.length ? arguments[0] : undefined, true);
3650
+ }
3651
+ });
3652
+
3653
+
3654
+ /***/ }),
3655
+
3656
+ /***/ 8111:
3657
+ /***/ (function(__unused_webpack_module, __unused_webpack_exports, __webpack_require__) {
3658
+
3659
+ "use strict";
3660
+
3661
+ var $ = __webpack_require__(6518);
3662
+ var globalThis = __webpack_require__(4576);
3663
+ var anInstance = __webpack_require__(679);
3664
+ var anObject = __webpack_require__(8551);
3665
+ var isCallable = __webpack_require__(4901);
3666
+ var getPrototypeOf = __webpack_require__(2787);
3667
+ var defineBuiltInAccessor = __webpack_require__(2106);
3668
+ var createProperty = __webpack_require__(4659);
3669
+ var fails = __webpack_require__(9039);
3670
+ var hasOwn = __webpack_require__(9297);
3671
+ var wellKnownSymbol = __webpack_require__(8227);
3672
+ var IteratorPrototype = (__webpack_require__(7657).IteratorPrototype);
3673
+ var DESCRIPTORS = __webpack_require__(3724);
3674
+ var IS_PURE = __webpack_require__(6395);
3675
+
3676
+ var CONSTRUCTOR = 'constructor';
3677
+ var ITERATOR = 'Iterator';
3678
+ var TO_STRING_TAG = wellKnownSymbol('toStringTag');
3679
+
3680
+ var $TypeError = TypeError;
3681
+ var NativeIterator = globalThis[ITERATOR];
3682
+
3683
+ // FF56- have non-standard global helper `Iterator`
3684
+ var FORCED = IS_PURE
3685
+ || !isCallable(NativeIterator)
3686
+ || NativeIterator.prototype !== IteratorPrototype
3687
+ // FF44- non-standard `Iterator` passes previous tests
3688
+ || !fails(function () { NativeIterator({}); });
3689
+
3690
+ var IteratorConstructor = function Iterator() {
3691
+ anInstance(this, IteratorPrototype);
3692
+ if (getPrototypeOf(this) === IteratorPrototype) throw new $TypeError('Abstract class Iterator not directly constructable');
3693
+ };
3694
+
3695
+ var defineIteratorPrototypeAccessor = function (key, value) {
3696
+ if (DESCRIPTORS) {
3697
+ defineBuiltInAccessor(IteratorPrototype, key, {
3698
+ configurable: true,
3699
+ get: function () {
3700
+ return value;
3701
+ },
3702
+ set: function (replacement) {
3703
+ anObject(this);
3704
+ if (this === IteratorPrototype) throw new $TypeError("You can't redefine this property");
3705
+ if (hasOwn(this, key)) this[key] = replacement;
3706
+ else createProperty(this, key, replacement);
3707
+ }
3708
+ });
3709
+ } else IteratorPrototype[key] = value;
3710
+ };
3711
+
3712
+ if (!hasOwn(IteratorPrototype, TO_STRING_TAG)) defineIteratorPrototypeAccessor(TO_STRING_TAG, ITERATOR);
3713
+
3714
+ if (FORCED || !hasOwn(IteratorPrototype, CONSTRUCTOR) || IteratorPrototype[CONSTRUCTOR] === Object) {
3715
+ defineIteratorPrototypeAccessor(CONSTRUCTOR, IteratorConstructor);
3716
+ }
3717
+
3718
+ IteratorConstructor.prototype = IteratorPrototype;
3719
+
3720
+ // `Iterator` constructor
3721
+ // https://tc39.es/ecma262/#sec-iterator
3722
+ $({ global: true, constructor: true, forced: FORCED }, {
3723
+ Iterator: IteratorConstructor
3724
+ });
3725
+
3726
+
3727
+ /***/ }),
3728
+
3729
+ /***/ 8227:
3730
+ /***/ (function(module, __unused_webpack_exports, __webpack_require__) {
3731
+
3732
+ "use strict";
3733
+
3734
+ var globalThis = __webpack_require__(4576);
3735
+ var shared = __webpack_require__(5745);
3736
+ var hasOwn = __webpack_require__(9297);
3737
+ var uid = __webpack_require__(3392);
3738
+ var NATIVE_SYMBOL = __webpack_require__(4495);
3739
+ var USE_SYMBOL_AS_UID = __webpack_require__(7040);
3740
+
3741
+ var Symbol = globalThis.Symbol;
3742
+ var WellKnownSymbolsStore = shared('wks');
3743
+ var createWellKnownSymbol = USE_SYMBOL_AS_UID ? Symbol['for'] || Symbol : Symbol && Symbol.withoutSetter || uid;
3744
+
3745
+ module.exports = function (name) {
3746
+ if (!hasOwn(WellKnownSymbolsStore, name)) {
3747
+ WellKnownSymbolsStore[name] = NATIVE_SYMBOL && hasOwn(Symbol, name)
3748
+ ? Symbol[name]
3749
+ : createWellKnownSymbol('Symbol.' + name);
3750
+ } return WellKnownSymbolsStore[name];
3751
+ };
3752
+
3753
+
3754
+ /***/ }),
3755
+
3756
+ /***/ 8469:
3757
+ /***/ (function(module, __unused_webpack_exports, __webpack_require__) {
3758
+
3759
+ "use strict";
3760
+
3761
+ var uncurryThis = __webpack_require__(9504);
3762
+ var iterateSimple = __webpack_require__(507);
3763
+ var SetHelpers = __webpack_require__(4402);
3764
+
3765
+ var Set = SetHelpers.Set;
3766
+ var SetPrototype = SetHelpers.proto;
3767
+ var forEach = uncurryThis(SetPrototype.forEach);
3768
+ var keys = uncurryThis(SetPrototype.keys);
3769
+ var next = keys(new Set()).next;
3770
+
3771
+ module.exports = function (set, fn, interruptible) {
3772
+ return interruptible ? iterateSimple({ iterator: keys(set), next: next }, fn) : forEach(set, fn);
3773
+ };
3774
+
3775
+
3776
+ /***/ }),
3777
+
3778
+ /***/ 8480:
3779
+ /***/ (function(__unused_webpack_module, exports, __webpack_require__) {
3780
+
3781
+ "use strict";
3782
+
3783
+ var internalObjectKeys = __webpack_require__(1828);
3784
+ var enumBugKeys = __webpack_require__(8727);
3785
+
3786
+ var hiddenKeys = enumBugKeys.concat('length', 'prototype');
3787
+
3788
+ // `Object.getOwnPropertyNames` method
3789
+ // https://tc39.es/ecma262/#sec-object.getownpropertynames
3790
+ // eslint-disable-next-line es/no-object-getownpropertynames -- safe
3791
+ exports.f = Object.getOwnPropertyNames || function getOwnPropertyNames(O) {
3792
+ return internalObjectKeys(O, hiddenKeys);
3793
+ };
3794
+
3795
+
3796
+ /***/ }),
3797
+
3798
+ /***/ 8527:
3799
+ /***/ (function(module, __unused_webpack_exports, __webpack_require__) {
3800
+
3801
+ "use strict";
3802
+
3803
+ var aSet = __webpack_require__(7080);
3804
+ var has = (__webpack_require__(4402).has);
3805
+ var size = __webpack_require__(5170);
3806
+ var getSetRecord = __webpack_require__(3789);
3807
+ var iterateSimple = __webpack_require__(507);
3808
+ var iteratorClose = __webpack_require__(9539);
3809
+
3810
+ // `Set.prototype.isSupersetOf` method
3811
+ // https://tc39.es/ecma262/#sec-set.prototype.issupersetof
3812
+ module.exports = function isSupersetOf(other) {
3813
+ var O = aSet(this);
3814
+ var otherRec = getSetRecord(other);
3815
+ if (size(O) < otherRec.size) return false;
3816
+ var iterator = otherRec.getIterator();
3817
+ return iterateSimple(iterator, function (e) {
3818
+ if (!has(O, e)) return iteratorClose(iterator, 'normal', false);
3819
+ }) !== false;
3820
+ };
3821
+
3822
+
3823
+ /***/ }),
3824
+
3825
+ /***/ 8551:
3826
+ /***/ (function(module, __unused_webpack_exports, __webpack_require__) {
3827
+
3828
+ "use strict";
3829
+
3830
+ var isObject = __webpack_require__(34);
3831
+
3832
+ var $String = String;
3833
+ var $TypeError = TypeError;
3834
+
3835
+ // `Assert: Type(argument) is Object`
3836
+ module.exports = function (argument) {
3837
+ if (isObject(argument)) return argument;
3838
+ throw new $TypeError($String(argument) + ' is not an object');
3839
+ };
3840
+
3841
+
3842
+ /***/ }),
3843
+
3844
+ /***/ 8622:
3845
+ /***/ (function(module, __unused_webpack_exports, __webpack_require__) {
3846
+
3847
+ "use strict";
3848
+
3849
+ var globalThis = __webpack_require__(4576);
3850
+ var isCallable = __webpack_require__(4901);
3851
+
3852
+ var WeakMap = globalThis.WeakMap;
3853
+
3854
+ module.exports = isCallable(WeakMap) && /native code/.test(String(WeakMap));
3855
+
3856
+
3857
+ /***/ }),
3858
+
3859
+ /***/ 8686:
3860
+ /***/ (function(module, __unused_webpack_exports, __webpack_require__) {
3861
+
3862
+ "use strict";
3863
+
3864
+ var DESCRIPTORS = __webpack_require__(3724);
3865
+ var fails = __webpack_require__(9039);
3866
+
3867
+ // V8 ~ Chrome 36-
3868
+ // https://bugs.chromium.org/p/v8/issues/detail?id=3334
3869
+ module.exports = DESCRIPTORS && fails(function () {
3870
+ // eslint-disable-next-line es/no-object-defineproperty -- required for testing
3871
+ return Object.defineProperty(function () { /* empty */ }, 'prototype', {
3872
+ value: 42,
3873
+ writable: false
3874
+ }).prototype !== 42;
3875
+ });
3876
+
3877
+
3878
+ /***/ }),
3879
+
3880
+ /***/ 8727:
3881
+ /***/ (function(module) {
3882
+
3883
+ "use strict";
3884
+
3885
+ // IE8- don't enum bug keys
3886
+ module.exports = [
3887
+ 'constructor',
3888
+ 'hasOwnProperty',
3889
+ 'isPrototypeOf',
3890
+ 'propertyIsEnumerable',
3891
+ 'toLocaleString',
3892
+ 'toString',
3893
+ 'valueOf'
3894
+ ];
3895
+
3896
+
3897
+ /***/ }),
3898
+
3899
+ /***/ 8750:
3900
+ /***/ (function(module, __unused_webpack_exports, __webpack_require__) {
3901
+
3902
+ "use strict";
3903
+
3904
+ var aSet = __webpack_require__(7080);
3905
+ var SetHelpers = __webpack_require__(4402);
3906
+ var size = __webpack_require__(5170);
3907
+ var getSetRecord = __webpack_require__(3789);
3908
+ var iterateSet = __webpack_require__(8469);
3909
+ var iterateSimple = __webpack_require__(507);
3910
+
3911
+ var Set = SetHelpers.Set;
3912
+ var add = SetHelpers.add;
3913
+ var has = SetHelpers.has;
3914
+
3915
+ // `Set.prototype.intersection` method
3916
+ // https://tc39.es/ecma262/#sec-set.prototype.intersection
3917
+ module.exports = function intersection(other) {
3918
+ var O = aSet(this);
3919
+ var otherRec = getSetRecord(other);
3920
+ var result = new Set();
3921
+
3922
+ if (size(O) > otherRec.size) {
3923
+ iterateSimple(otherRec.getIterator(), function (e) {
3924
+ if (has(O, e)) add(result, e);
3925
+ });
3926
+ } else {
3927
+ iterateSet(O, function (e) {
3928
+ if (otherRec.includes(e)) add(result, e);
3929
+ });
3930
+ }
3931
+
3932
+ return result;
3933
+ };
3934
+
3935
+
3936
+ /***/ }),
3937
+
3938
+ /***/ 8773:
3939
+ /***/ (function(__unused_webpack_module, exports) {
3940
+
3941
+ "use strict";
3942
+
3943
+ var $propertyIsEnumerable = {}.propertyIsEnumerable;
3944
+ // eslint-disable-next-line es/no-object-getownpropertydescriptor -- safe
3945
+ var getOwnPropertyDescriptor = Object.getOwnPropertyDescriptor;
3946
+
3947
+ // Nashorn ~ JDK8 bug
3948
+ var NASHORN_BUG = getOwnPropertyDescriptor && !$propertyIsEnumerable.call({ 1: 2 }, 1);
3949
+
3950
+ // `Object.prototype.propertyIsEnumerable` method implementation
3951
+ // https://tc39.es/ecma262/#sec-object.prototype.propertyisenumerable
3952
+ exports.f = NASHORN_BUG ? function propertyIsEnumerable(V) {
3953
+ var descriptor = getOwnPropertyDescriptor(this, V);
3954
+ return !!descriptor && descriptor.enumerable;
3955
+ } : $propertyIsEnumerable;
3956
+
3957
+
3958
+ /***/ }),
3959
+
3960
+ /***/ 8981:
3961
+ /***/ (function(module, __unused_webpack_exports, __webpack_require__) {
3962
+
3963
+ "use strict";
3964
+
3965
+ var requireObjectCoercible = __webpack_require__(7750);
3966
+
3967
+ var $Object = Object;
3968
+
3969
+ // `ToObject` abstract operation
3970
+ // https://tc39.es/ecma262/#sec-toobject
3971
+ module.exports = function (argument) {
3972
+ return $Object(requireObjectCoercible(argument));
3973
+ };
3974
+
3975
+
3976
+ /***/ }),
3977
+
3978
+ /***/ 9039:
3979
+ /***/ (function(module) {
3980
+
3981
+ "use strict";
3982
+
3983
+ module.exports = function (exec) {
3984
+ try {
3985
+ return !!exec();
3986
+ } catch (error) {
3987
+ return true;
3988
+ }
3989
+ };
3990
+
3991
+
3992
+ /***/ }),
3993
+
3994
+ /***/ 9286:
3995
+ /***/ (function(module, __unused_webpack_exports, __webpack_require__) {
3996
+
3997
+ "use strict";
3998
+
3999
+ var SetHelpers = __webpack_require__(4402);
4000
+ var iterate = __webpack_require__(8469);
4001
+
4002
+ var Set = SetHelpers.Set;
4003
+ var add = SetHelpers.add;
4004
+
4005
+ module.exports = function (set) {
4006
+ var result = new Set();
4007
+ iterate(set, function (it) {
4008
+ add(result, it);
4009
+ });
4010
+ return result;
4011
+ };
4012
+
4013
+
4014
+ /***/ }),
4015
+
4016
+ /***/ 9297:
4017
+ /***/ (function(module, __unused_webpack_exports, __webpack_require__) {
4018
+
4019
+ "use strict";
4020
+
4021
+ var uncurryThis = __webpack_require__(9504);
4022
+ var toObject = __webpack_require__(8981);
4023
+
4024
+ var hasOwnProperty = uncurryThis({}.hasOwnProperty);
4025
+
4026
+ // `HasOwnProperty` abstract operation
4027
+ // https://tc39.es/ecma262/#sec-hasownproperty
4028
+ // eslint-disable-next-line es/no-object-hasown -- safe
4029
+ module.exports = Object.hasOwn || function hasOwn(it, key) {
4030
+ return hasOwnProperty(toObject(it), key);
4031
+ };
4032
+
4033
+
4034
+ /***/ }),
4035
+
4036
+ /***/ 9306:
4037
+ /***/ (function(module, __unused_webpack_exports, __webpack_require__) {
4038
+
4039
+ "use strict";
4040
+
4041
+ var isCallable = __webpack_require__(4901);
4042
+ var tryToString = __webpack_require__(6823);
4043
+
4044
+ var $TypeError = TypeError;
4045
+
4046
+ // `Assert: IsCallable(argument) is true`
4047
+ module.exports = function (argument) {
4048
+ if (isCallable(argument)) return argument;
4049
+ throw new $TypeError(tryToString(argument) + ' is not a function');
4050
+ };
4051
+
4052
+
4053
+ /***/ }),
4054
+
4055
+ /***/ 9429:
4056
+ /***/ (function(module, __unused_webpack_exports, __webpack_require__) {
4057
+
4058
+ "use strict";
4059
+
4060
+ var globalThis = __webpack_require__(4576);
4061
+ var IS_NODE = __webpack_require__(6193);
4062
+
4063
+ module.exports = function (name) {
4064
+ if (IS_NODE) {
4065
+ try {
4066
+ return globalThis.process.getBuiltinModule(name);
4067
+ } catch (error) { /* empty */ }
4068
+ try {
4069
+ // eslint-disable-next-line no-new-func -- safe
4070
+ return Function('return require("' + name + '")')();
4071
+ } catch (error) { /* empty */ }
4072
+ }
4073
+ };
4074
+
4075
+
4076
+ /***/ }),
4077
+
4078
+ /***/ 9433:
4079
+ /***/ (function(module, __unused_webpack_exports, __webpack_require__) {
4080
+
4081
+ "use strict";
4082
+
4083
+ var globalThis = __webpack_require__(4576);
4084
+
4085
+ // eslint-disable-next-line es/no-object-defineproperty -- safe
4086
+ var defineProperty = Object.defineProperty;
4087
+
4088
+ module.exports = function (key, value) {
4089
+ try {
4090
+ defineProperty(globalThis, key, { value: value, configurable: true, writable: true });
4091
+ } catch (error) {
4092
+ globalThis[key] = value;
4093
+ } return value;
4094
+ };
4095
+
4096
+
4097
+ /***/ }),
4098
+
4099
+ /***/ 9504:
4100
+ /***/ (function(module, __unused_webpack_exports, __webpack_require__) {
4101
+
4102
+ "use strict";
4103
+
4104
+ var NATIVE_BIND = __webpack_require__(616);
4105
+
4106
+ var FunctionPrototype = Function.prototype;
4107
+ var call = FunctionPrototype.call;
4108
+ // eslint-disable-next-line es/no-function-prototype-bind -- safe
4109
+ var uncurryThisWithBind = NATIVE_BIND && FunctionPrototype.bind.bind(call, call);
4110
+
4111
+ module.exports = NATIVE_BIND ? uncurryThisWithBind : function (fn) {
4112
+ return function () {
4113
+ return call.apply(fn, arguments);
4114
+ };
4115
+ };
4116
+
4117
+
4118
+ /***/ }),
4119
+
4120
+ /***/ 9519:
4121
+ /***/ (function(module, __unused_webpack_exports, __webpack_require__) {
4122
+
4123
+ "use strict";
4124
+
4125
+ var globalThis = __webpack_require__(4576);
4126
+ var userAgent = __webpack_require__(2839);
4127
+
4128
+ var process = globalThis.process;
4129
+ var Deno = globalThis.Deno;
4130
+ var versions = process && process.versions || Deno && Deno.version;
4131
+ var v8 = versions && versions.v8;
4132
+ var match, version;
4133
+
4134
+ if (v8) {
4135
+ match = v8.split('.');
4136
+ // in old Chrome, versions of V8 isn't V8 = Chrome / 10
4137
+ // but their correct versions are not interesting for us
4138
+ version = match[0] > 0 && match[0] < 4 ? 1 : +(match[0] + match[1]);
4139
+ }
4140
+
4141
+ // BrowserFS NodeJS `process` polyfill incorrectly set `.v8` to `0.0`
4142
+ // so check `userAgent` even if `.v8` exists, but 0
4143
+ if (!version && userAgent) {
4144
+ match = userAgent.match(/Edge\/(\d+)/);
4145
+ if (!match || match[1] >= 74) {
4146
+ match = userAgent.match(/Chrome\/(\d+)/);
4147
+ if (match) version = +match[1];
4148
+ }
4149
+ }
4150
+
4151
+ module.exports = version;
4152
+
4153
+
4154
+ /***/ }),
4155
+
4156
+ /***/ 9539:
4157
+ /***/ (function(module, __unused_webpack_exports, __webpack_require__) {
4158
+
4159
+ "use strict";
4160
+
4161
+ var call = __webpack_require__(9565);
4162
+ var anObject = __webpack_require__(8551);
4163
+ var getMethod = __webpack_require__(5966);
4164
+
4165
+ module.exports = function (iterator, kind, value) {
4166
+ var innerResult, innerError;
4167
+ anObject(iterator);
4168
+ try {
4169
+ innerResult = getMethod(iterator, 'return');
4170
+ if (!innerResult) {
4171
+ if (kind === 'throw') throw value;
4172
+ return value;
4173
+ }
4174
+ innerResult = call(innerResult, iterator);
4175
+ } catch (error) {
4176
+ innerError = true;
4177
+ innerResult = error;
4178
+ }
4179
+ if (kind === 'throw') throw value;
4180
+ if (innerError) throw innerResult;
4181
+ anObject(innerResult);
4182
+ return value;
4183
+ };
4184
+
4185
+
4186
+ /***/ }),
4187
+
4188
+ /***/ 9565:
4189
+ /***/ (function(module, __unused_webpack_exports, __webpack_require__) {
4190
+
4191
+ "use strict";
4192
+
4193
+ var NATIVE_BIND = __webpack_require__(616);
4194
+
4195
+ var call = Function.prototype.call;
4196
+ // eslint-disable-next-line es/no-function-prototype-bind -- safe
4197
+ module.exports = NATIVE_BIND ? call.bind(call) : function () {
4198
+ return call.apply(call, arguments);
4199
+ };
4200
+
4201
+
4202
+ /***/ }),
4203
+
4204
+ /***/ 9617:
4205
+ /***/ (function(module, __unused_webpack_exports, __webpack_require__) {
4206
+
4207
+ "use strict";
4208
+
4209
+ var toIndexedObject = __webpack_require__(5397);
4210
+ var toAbsoluteIndex = __webpack_require__(5610);
4211
+ var lengthOfArrayLike = __webpack_require__(6198);
4212
+
4213
+ // `Array.prototype.{ indexOf, includes }` methods implementation
4214
+ var createMethod = function (IS_INCLUDES) {
4215
+ return function ($this, el, fromIndex) {
4216
+ var O = toIndexedObject($this);
4217
+ var length = lengthOfArrayLike(O);
4218
+ if (length === 0) return !IS_INCLUDES && -1;
4219
+ var index = toAbsoluteIndex(fromIndex, length);
4220
+ var value;
4221
+ // Array#includes uses SameValueZero equality algorithm
4222
+ // eslint-disable-next-line no-self-compare -- NaN check
4223
+ if (IS_INCLUDES && el !== el) while (length > index) {
4224
+ value = O[index++];
4225
+ // eslint-disable-next-line no-self-compare -- NaN check
4226
+ if (value !== value) return true;
4227
+ // Array#indexOf ignores holes, Array#includes - not
4228
+ } else for (;length > index; index++) {
4229
+ if ((IS_INCLUDES || index in O) && O[index] === el) return IS_INCLUDES || index || 0;
4230
+ } return !IS_INCLUDES && -1;
4231
+ };
4232
+ };
4233
+
4234
+ module.exports = {
4235
+ // `Array.prototype.includes` method
4236
+ // https://tc39.es/ecma262/#sec-array.prototype.includes
4237
+ includes: createMethod(true),
4238
+ // `Array.prototype.indexOf` method
4239
+ // https://tc39.es/ecma262/#sec-array.prototype.indexof
4240
+ indexOf: createMethod(false)
4241
+ };
4242
+
4243
+
4244
+ /***/ }),
4245
+
4246
+ /***/ 9835:
4247
+ /***/ (function(module) {
4248
+
4249
+ "use strict";
4250
+
4251
+ // Should get iterator record of a set-like object before cloning this
4252
+ // https://bugs.webkit.org/show_bug.cgi?id=289430
4253
+ module.exports = function (METHOD_NAME) {
4254
+ try {
4255
+ // eslint-disable-next-line es/no-set -- needed for test
4256
+ var baseSet = new Set();
4257
+ var setLike = {
4258
+ size: 0,
4259
+ has: function () { return true; },
4260
+ keys: function () {
4261
+ // eslint-disable-next-line es/no-object-defineproperty -- needed for test
4262
+ return Object.defineProperty({}, 'next', {
4263
+ get: function () {
4264
+ baseSet.clear();
4265
+ baseSet.add(4);
4266
+ return function () {
4267
+ return { done: true };
4268
+ };
4269
+ }
4270
+ });
4271
+ }
4272
+ };
4273
+ var result = baseSet[METHOD_NAME](setLike);
4274
+
4275
+ return result.size === 1 && result.values().next().value === 4;
4276
+ } catch (error) {
4277
+ return false;
4278
+ }
4279
+ };
4280
+
4281
+
4282
+ /***/ })
4283
+
4284
+ /******/ });
4285
+ /************************************************************************/
4286
+ /******/ // The module cache
4287
+ /******/ var __webpack_module_cache__ = {};
4288
+ /******/
4289
+ /******/ // The require function
4290
+ /******/ function __webpack_require__(moduleId) {
4291
+ /******/ // Check if module is in cache
4292
+ /******/ var cachedModule = __webpack_module_cache__[moduleId];
4293
+ /******/ if (cachedModule !== undefined) {
4294
+ /******/ return cachedModule.exports;
4295
+ /******/ }
4296
+ /******/ // Create a new module (and put it into the cache)
4297
+ /******/ var module = __webpack_module_cache__[moduleId] = {
4298
+ /******/ // no module.id needed
4299
+ /******/ // no module.loaded needed
4300
+ /******/ exports: {}
4301
+ /******/ };
4302
+ /******/
4303
+ /******/ // Execute the module function
4304
+ /******/ __webpack_modules__[moduleId].call(module.exports, module, module.exports, __webpack_require__);
4305
+ /******/
4306
+ /******/ // Return the exports of the module
4307
+ /******/ return module.exports;
4308
+ /******/ }
4309
+ /******/
4310
+ /************************************************************************/
4311
+ /******/ /* webpack/runtime/compat get default export */
4312
+ /******/ !function() {
4313
+ /******/ // getDefaultExport function for compatibility with non-harmony modules
4314
+ /******/ __webpack_require__.n = function(module) {
4315
+ /******/ var getter = module && module.__esModule ?
4316
+ /******/ function() { return module['default']; } :
4317
+ /******/ function() { return module; };
4318
+ /******/ __webpack_require__.d(getter, { a: getter });
4319
+ /******/ return getter;
4320
+ /******/ };
4321
+ /******/ }();
4322
+ /******/
4323
+ /******/ /* webpack/runtime/define property getters */
4324
+ /******/ !function() {
4325
+ /******/ // define getter functions for harmony exports
4326
+ /******/ __webpack_require__.d = function(exports, definition) {
4327
+ /******/ for(var key in definition) {
4328
+ /******/ if(__webpack_require__.o(definition, key) && !__webpack_require__.o(exports, key)) {
4329
+ /******/ Object.defineProperty(exports, key, { enumerable: true, get: definition[key] });
4330
+ /******/ }
4331
+ /******/ }
4332
+ /******/ };
4333
+ /******/ }();
4334
+ /******/
4335
+ /******/ /* webpack/runtime/global */
4336
+ /******/ !function() {
4337
+ /******/ __webpack_require__.g = (function() {
4338
+ /******/ if (typeof globalThis === 'object') return globalThis;
4339
+ /******/ try {
4340
+ /******/ return this || new Function('return this')();
4341
+ /******/ } catch (e) {
4342
+ /******/ if (typeof window === 'object') return window;
4343
+ /******/ }
4344
+ /******/ })();
4345
+ /******/ }();
4346
+ /******/
4347
+ /******/ /* webpack/runtime/hasOwnProperty shorthand */
4348
+ /******/ !function() {
4349
+ /******/ __webpack_require__.o = function(obj, prop) { return Object.prototype.hasOwnProperty.call(obj, prop); }
4350
+ /******/ }();
4351
+ /******/
4352
+ /******/ /* webpack/runtime/make namespace object */
4353
+ /******/ !function() {
4354
+ /******/ // define __esModule on exports
4355
+ /******/ __webpack_require__.r = function(exports) {
4356
+ /******/ if(typeof Symbol !== 'undefined' && Symbol.toStringTag) {
4357
+ /******/ Object.defineProperty(exports, Symbol.toStringTag, { value: 'Module' });
4358
+ /******/ }
4359
+ /******/ Object.defineProperty(exports, '__esModule', { value: true });
4360
+ /******/ };
4361
+ /******/ }();
4362
+ /******/
4363
+ /******/ /* webpack/runtime/publicPath */
4364
+ /******/ !function() {
4365
+ /******/ __webpack_require__.p = "";
4366
+ /******/ }();
4367
+ /******/
4368
+ /************************************************************************/
4369
+ var __webpack_exports__ = {};
4370
+ // This entry needs to be wrapped in an IIFE because it needs to be in strict mode.
4371
+ !function() {
4372
+ "use strict";
4373
+ // ESM COMPAT FLAG
4374
+ __webpack_require__.r(__webpack_exports__);
4375
+
4376
+ // EXPORTS
4377
+ __webpack_require__.d(__webpack_exports__, {
4378
+ "default": function() { return /* binding */ entry_lib; }
4379
+ });
4380
+
4381
+ ;// ./node_modules/@vue/cli-service/lib/commands/build/setPublicPath.js
4382
+ /* eslint-disable no-var */
4383
+ // This file is imported into lib/wc client bundles.
4384
+
4385
+ if (typeof window !== 'undefined') {
4386
+ var currentScript = window.document.currentScript
4387
+ if (false) // removed by dead control flow
4388
+ { var getCurrentScript; }
4389
+
4390
+ var src = currentScript && currentScript.src.match(/(.+\/)[^/]+\.js(\?.*)?$/)
4391
+ if (src) {
4392
+ __webpack_require__.p = src[1] // eslint-disable-line
4393
+ }
4394
+ }
4395
+
4396
+ // Indicate to webpack that this file can be concatenated
4397
+ /* harmony default export */ var setPublicPath = (null);
4398
+
4399
+ ;// ./node_modules/babel-loader/lib/index.js??clonedRuleSet-82.use[1]!./node_modules/@vue/vue-loader-v15/lib/loaders/templateLoader.js??ruleSet[1].rules[3]!./node_modules/@vue/vue-loader-v15/lib/index.js??vue-loader-options!./src/elementConfig/ui-form/index.vue?vue&type=template&id=1f72a12e
4400
+ var render = function render() {
4401
+ var _vm = this,
4402
+ _c = _vm._self._c;
4403
+ return _c('el-form', _vm._g(_vm._b({
4404
+ ref: _vm.formRef,
4405
+ staticClass: "tf-form",
4406
+ attrs: {
4407
+ "model": _vm.model
4408
+ }
4409
+ }, 'el-form', _vm.$attrs, false), _vm.$listeners), [_vm._l(_vm.tempFormConfig, function (item, index) {
4410
+ return _c('el-form-item', _vm._b({
4411
+ key: `${item.prop || item.key}-${index}`,
4412
+ attrs: {
4413
+ "label": item.label,
4414
+ "prop": item.prop
4415
+ }
4416
+ }, 'el-form-item', item.formItemAttrs, false), [_vm._t(`item-${item.prop || item.key}`, function () {
4417
+ return [_c(_vm.getComponentName(item.component), _vm._g(_vm._b({
4418
+ tag: "component",
4419
+ model: {
4420
+ value: _vm.model[item.prop],
4421
+ callback: function ($$v) {
4422
+ _vm.$set(_vm.model, item.prop, $$v);
4423
+ },
4424
+ expression: "model[item.prop]"
4425
+ }
4426
+ }, 'component', _vm.handleBindAttrs(item), false), item.events), [_vm.isSelectComponent(item.component) && item.options ? _vm._l(item.options, function (opt) {
4427
+ return _c('el-option', {
4428
+ key: `${item.prop}-${opt.value}`,
4429
+ attrs: {
4430
+ "label": opt.label,
4431
+ "value": opt.value
4432
+ }
4433
+ });
4434
+ }) : _vm._e(), _vm.isRadioGroupComponent(item.component) && item.options ? _vm._l(item.options, function (opt) {
4435
+ return _c('el-radio', {
4436
+ key: `${item.prop}-${opt.value}`,
4437
+ attrs: {
4438
+ "label": opt.value
4439
+ }
4440
+ }, [_vm._v(" " + _vm._s(opt.label) + " ")]);
4441
+ }) : _vm._e()], 2)];
4442
+ }, {
4443
+ "item": item,
4444
+ "model": _vm.model,
4445
+ "index": index
4446
+ })], 2);
4447
+ }), _vm.showOperateBtn ? _c('el-form-item', {
4448
+ attrs: {
4449
+ "label": ""
4450
+ }
4451
+ }, [_vm.defaultBtn ? [_c('el-button', {
4452
+ on: {
4453
+ "click": function ($event) {
4454
+ return _vm.resetForm();
4455
+ }
4456
+ }
4457
+ }, [_vm._v("重置")]), _c('el-button', {
4458
+ attrs: {
4459
+ "type": "primary"
4460
+ },
4461
+ on: {
4462
+ "click": function ($event) {
4463
+ return _vm.$emit('search');
4464
+ }
4465
+ }
4466
+ }, [_vm._v("搜索")])] : _vm._e(), _vm._t("customBtn")], 2) : _vm._e()], 2);
4467
+ };
4468
+ var staticRenderFns = [];
4469
+
4470
+ // EXTERNAL MODULE: ./node_modules/core-js/modules/es.iterator.constructor.js
4471
+ var es_iterator_constructor = __webpack_require__(8111);
4472
+ // EXTERNAL MODULE: ./node_modules/core-js/modules/es.iterator.every.js
4473
+ var es_iterator_every = __webpack_require__(1148);
4474
+ // EXTERNAL MODULE: ./node_modules/core-js/modules/es.iterator.for-each.js
4475
+ var es_iterator_for_each = __webpack_require__(7588);
4476
+ // EXTERNAL MODULE: ./node_modules/deepcopy/umd/deepcopy.js
4477
+ var deepcopy = __webpack_require__(4607);
4478
+ var deepcopy_default = /*#__PURE__*/__webpack_require__.n(deepcopy);
4479
+ ;// ./node_modules/thread-loader/dist/cjs.js!./node_modules/babel-loader/lib/index.js??clonedRuleSet-82.use[1]!./node_modules/@vue/vue-loader-v15/lib/index.js??vue-loader-options!./src/elementConfig/ui-form/index.vue?vue&type=script&lang=js
4480
+
4481
+
4482
+
4483
+
4484
+ /**
4485
+ * @desc 表单组件
4486
+ * @params formRef ref
4487
+ * @params model modelForm
4488
+ * @params formConfig
4489
+ * @params formConfig
4490
+ * @params formConfig
4491
+ * @params formConfig
4492
+ */
4493
+ const componentMap = {
4494
+ input: "el-input",
4495
+ select: "el-select",
4496
+ datePicker: "el-date-picker"
4497
+ };
4498
+ /* harmony default export */ var ui_formvue_type_script_lang_js = ({
4499
+ name: "UiForm",
4500
+ props: {
4501
+ formRef: {
4502
+ type: String,
4503
+ default: "formRef"
4504
+ },
4505
+ model: {
4506
+ type: Object,
4507
+ default: () => ({})
4508
+ },
4509
+ formConfig: {
4510
+ type: Array,
4511
+ default: () => [],
4512
+ validator: val => val.every(row => row.prop || row.key)
4513
+ },
4514
+ showOperateBtn: {
4515
+ type: Boolean,
4516
+ default: true
4517
+ },
4518
+ defaultBtn: {
4519
+ type: Boolean,
4520
+ default: true
4521
+ },
4522
+ apiMapConfig: {
4523
+ // { [prop]: [api] } 或 {[prop]: {url: [api], params: [params]}}
4524
+ type: Object,
4525
+ default: () => ({})
4526
+ }
4527
+ },
4528
+ data() {
4529
+ return {
4530
+ tempFormConfig: []
4531
+ };
4532
+ },
4533
+ // created() {
4534
+ // this.initOptions()
4535
+ // },
4536
+ watch: {
4537
+ formConfig: {
4538
+ immediate: true,
4539
+ deep: true,
4540
+ handler(val) {
4541
+ this.tempFormConfig = deepcopy_default()(val);
4542
+ this.initOptions();
4543
+ }
4544
+ }
4545
+ },
4546
+ methods: {
4547
+ getComponentName(componentName) {
4548
+ return componentMap[componentName] || componentName || "el-input";
4549
+ },
4550
+ handleBindAttrs(item) {
4551
+ const style = {
4552
+ width: item.attrs?.width || "220px"
4553
+ };
4554
+ let placeholder = "";
4555
+ const componentName = this.getComponentName(item.component);
4556
+ if (["el-select", "select", "el-date-picker", "virtual-select"].includes(componentName)) {
4557
+ placeholder = `请选择${item.label}`;
4558
+ }
4559
+ if (["el-input", "input"].includes(componentName)) {
4560
+ placeholder = `请输入${item.label}`;
4561
+ }
4562
+ const baseAttrs = {
4563
+ style,
4564
+ placeholder,
4565
+ clearable: true,
4566
+ ...(item.attrs || {})
4567
+ };
4568
+ if (componentName === "virtual-select") {
4569
+ return {
4570
+ ...baseAttrs,
4571
+ options: item.options || [],
4572
+ listClass: "111w"
4573
+ };
4574
+ }
4575
+ return baseAttrs;
4576
+ },
4577
+ isSelectComponent(componentName) {
4578
+ return ["el-select", "select"].includes(this.getComponentName(componentName));
4579
+ },
4580
+ isRadioGroupComponent(componentName) {
4581
+ return this.getComponentName(componentName) === "el-radio-group";
4582
+ },
4583
+ isVirtualSelectComponent(componentName) {
4584
+ return this.getComponentName(componentName) === "virtual-select";
4585
+ },
4586
+ async initOptions() {
4587
+ for (const item of this.tempFormConfig) {
4588
+ // const
4589
+ const apiConfig = item.api || this.apiMapConfig[item.prop];
4590
+ const optionsRequired = this.isSelectComponent(item.component) || this.isRadioGroupComponent(item.component) || this.isVirtualSelectComponent(item.component);
4591
+ if (optionsRequired && apiConfig && !item.options?.length) {
4592
+ try {
4593
+ const {
4594
+ url,
4595
+ params = {}
4596
+ } = typeof apiConfig === "function" ? {
4597
+ url: apiConfig
4598
+ } : apiConfig;
4599
+ const res = await url(params);
4600
+ const options = item.format ? item.format(res) : res?.data || [];
4601
+ this.$set(item, "options", options);
4602
+ } catch (error) {
4603
+ this.$set(item, "options", []);
4604
+ }
4605
+ }
4606
+ }
4607
+ },
4608
+ resetForm() {
4609
+ this.$refs[this.formRef].resetFields();
4610
+ this.$emit("search");
4611
+ },
4612
+ getOptions() {
4613
+ const propOptionsMap = {};
4614
+ this.tempFormConfig.forEach(row => {
4615
+ if (row.options) {
4616
+ propOptionsMap[row.prop] = row.options;
4617
+ }
4618
+ });
4619
+ return propOptionsMap;
4620
+ }
4621
+ }
4622
+ });
4623
+ ;// ./src/elementConfig/ui-form/index.vue?vue&type=script&lang=js
4624
+ /* harmony default export */ var elementConfig_ui_formvue_type_script_lang_js = (ui_formvue_type_script_lang_js);
4625
+ ;// ./node_modules/@vue/vue-loader-v15/lib/runtime/componentNormalizer.js
4626
+ /* globals __VUE_SSR_CONTEXT__ */
4627
+
4628
+ // IMPORTANT: Do NOT use ES2015 features in this file (except for modules).
4629
+ // This module is a runtime utility for cleaner component module output and will
4630
+ // be included in the final webpack user bundle.
4631
+
4632
+ function normalizeComponent(
4633
+ scriptExports,
4634
+ render,
4635
+ staticRenderFns,
4636
+ functionalTemplate,
4637
+ injectStyles,
4638
+ scopeId,
4639
+ moduleIdentifier /* server only */,
4640
+ shadowMode /* vue-cli only */
4641
+ ) {
4642
+ // Vue.extend constructor export interop
4643
+ var options =
4644
+ typeof scriptExports === 'function' ? scriptExports.options : scriptExports
4645
+
4646
+ // render functions
4647
+ if (render) {
4648
+ options.render = render
4649
+ options.staticRenderFns = staticRenderFns
4650
+ options._compiled = true
4651
+ }
4652
+
4653
+ // functional template
4654
+ if (functionalTemplate) {
4655
+ options.functional = true
4656
+ }
4657
+
4658
+ // scopedId
4659
+ if (scopeId) {
4660
+ options._scopeId = 'data-v-' + scopeId
4661
+ }
4662
+
4663
+ var hook
4664
+ if (moduleIdentifier) {
4665
+ // server build
4666
+ hook = function (context) {
4667
+ // 2.3 injection
4668
+ context =
4669
+ context || // cached call
4670
+ (this.$vnode && this.$vnode.ssrContext) || // stateful
4671
+ (this.parent && this.parent.$vnode && this.parent.$vnode.ssrContext) // functional
4672
+ // 2.2 with runInNewContext: true
4673
+ if (!context && typeof __VUE_SSR_CONTEXT__ !== 'undefined') {
4674
+ context = __VUE_SSR_CONTEXT__
4675
+ }
4676
+ // inject component styles
4677
+ if (injectStyles) {
4678
+ injectStyles.call(this, context)
4679
+ }
4680
+ // register component module identifier for async chunk inferrence
4681
+ if (context && context._registeredComponents) {
4682
+ context._registeredComponents.add(moduleIdentifier)
4683
+ }
4684
+ }
4685
+ // used by ssr in case component is cached and beforeCreate
4686
+ // never gets called
4687
+ options._ssrRegister = hook
4688
+ } else if (injectStyles) {
4689
+ hook = shadowMode
4690
+ ? function () {
4691
+ injectStyles.call(
4692
+ this,
4693
+ (options.functional ? this.parent : this).$root.$options.shadowRoot
4694
+ )
4695
+ }
4696
+ : injectStyles
4697
+ }
4698
+
4699
+ if (hook) {
4700
+ if (options.functional) {
4701
+ // for template-only hot-reload because in that case the render fn doesn't
4702
+ // go through the normalizer
4703
+ options._injectStyles = hook
4704
+ // register for functional component in vue file
4705
+ var originalRender = options.render
4706
+ options.render = function renderWithStyleInjection(h, context) {
4707
+ hook.call(context)
4708
+ return originalRender(h, context)
4709
+ }
4710
+ } else {
4711
+ // inject component registration as beforeCreate hook
4712
+ var existing = options.beforeCreate
4713
+ options.beforeCreate = existing ? [].concat(existing, hook) : [hook]
4714
+ }
4715
+ }
4716
+
4717
+ return {
4718
+ exports: scriptExports,
4719
+ options: options
4720
+ }
4721
+ }
4722
+
4723
+ ;// ./src/elementConfig/ui-form/index.vue
4724
+
4725
+
4726
+
4727
+
4728
+
4729
+ /* normalize component */
4730
+ ;
4731
+ var component = normalizeComponent(
4732
+ elementConfig_ui_formvue_type_script_lang_js,
4733
+ render,
4734
+ staticRenderFns,
4735
+ false,
4736
+ null,
4737
+ null,
4738
+ null
4739
+
4740
+ )
4741
+
4742
+ /* harmony default export */ var ui_form = (component.exports);
4743
+ ;// ./src/elementConfig/index.js
4744
+
4745
+ const components = [ui_form];
4746
+ const install = function (Vue) {
4747
+ components.forEach(component => {
4748
+ Vue.component(component.name, component);
4749
+ });
4750
+ };
4751
+ /* harmony default export */ var elementConfig = (install);
4752
+ ;// ./node_modules/@vue/cli-service/lib/commands/build/entry-lib.js
4753
+
4754
+
4755
+ /* harmony default export */ var entry_lib = (elementConfig);
4756
+
4757
+
4758
+ }();
4759
+ /******/ return __webpack_exports__;
4760
+ /******/ })()
4761
+ ;
4762
+ });
4763
+ //# sourceMappingURL=backend-management-ui.umd.js.map