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