zwplayer-vue2x 1.0.31 → 1.0.33

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.
@@ -11,7 +11,1711 @@
11
11
  return /******/ (function() { // webpackBootstrap
12
12
  /******/ var __webpack_modules__ = ({
13
13
 
14
- /***/ 790:
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
+ /***/ 283:
29
+ /***/ (function(module, __unused_webpack_exports, __webpack_require__) {
30
+
31
+ "use strict";
32
+
33
+ var uncurryThis = __webpack_require__(9504);
34
+ var fails = __webpack_require__(9039);
35
+ var isCallable = __webpack_require__(4901);
36
+ var hasOwn = __webpack_require__(9297);
37
+ var DESCRIPTORS = __webpack_require__(3724);
38
+ var CONFIGURABLE_FUNCTION_NAME = (__webpack_require__(350).CONFIGURABLE);
39
+ var inspectSource = __webpack_require__(3706);
40
+ var InternalStateModule = __webpack_require__(1181);
41
+
42
+ var enforceInternalState = InternalStateModule.enforce;
43
+ var getInternalState = InternalStateModule.get;
44
+ var $String = String;
45
+ // eslint-disable-next-line es/no-object-defineproperty -- safe
46
+ var defineProperty = Object.defineProperty;
47
+ var stringSlice = uncurryThis(''.slice);
48
+ var replace = uncurryThis(''.replace);
49
+ var join = uncurryThis([].join);
50
+
51
+ var CONFIGURABLE_LENGTH = DESCRIPTORS && !fails(function () {
52
+ return defineProperty(function () { /* empty */ }, 'length', { value: 8 }).length !== 8;
53
+ });
54
+
55
+ var TEMPLATE = String(String).split('String');
56
+
57
+ var makeBuiltIn = module.exports = function (value, name, options) {
58
+ if (stringSlice($String(name), 0, 7) === 'Symbol(') {
59
+ name = '[' + replace($String(name), /^Symbol\(([^)]*)\).*$/, '$1') + ']';
60
+ }
61
+ if (options && options.getter) name = 'get ' + name;
62
+ if (options && options.setter) name = 'set ' + name;
63
+ if (!hasOwn(value, 'name') || (CONFIGURABLE_FUNCTION_NAME && value.name !== name)) {
64
+ if (DESCRIPTORS) defineProperty(value, 'name', { value: name, configurable: true });
65
+ else value.name = name;
66
+ }
67
+ if (CONFIGURABLE_LENGTH && options && hasOwn(options, 'arity') && value.length !== options.arity) {
68
+ defineProperty(value, 'length', { value: options.arity });
69
+ }
70
+ try {
71
+ if (options && hasOwn(options, 'constructor') && options.constructor) {
72
+ if (DESCRIPTORS) defineProperty(value, 'prototype', { writable: false });
73
+ // in V8 ~ Chrome 53, prototypes of some methods, like `Array.prototype.values`, are non-writable
74
+ } else if (value.prototype) value.prototype = undefined;
75
+ } catch (error) { /* empty */ }
76
+ var state = enforceInternalState(value);
77
+ if (!hasOwn(state, 'source')) {
78
+ state.source = join(TEMPLATE, typeof name == 'string' ? name : '');
79
+ } return value;
80
+ };
81
+
82
+ // add fake Function#toString for correct work wrapped methods / constructors with methods like LoDash isNative
83
+ // eslint-disable-next-line no-extend-native -- required
84
+ Function.prototype.toString = makeBuiltIn(function toString() {
85
+ return isCallable(this) && getInternalState(this).source || inspectSource(this);
86
+ }, 'toString');
87
+
88
+
89
+ /***/ }),
90
+
91
+ /***/ 350:
92
+ /***/ (function(module, __unused_webpack_exports, __webpack_require__) {
93
+
94
+ "use strict";
95
+
96
+ var DESCRIPTORS = __webpack_require__(3724);
97
+ var hasOwn = __webpack_require__(9297);
98
+
99
+ var FunctionPrototype = Function.prototype;
100
+ // eslint-disable-next-line es/no-object-getownpropertydescriptor -- safe
101
+ var getDescriptor = DESCRIPTORS && Object.getOwnPropertyDescriptor;
102
+
103
+ var EXISTS = hasOwn(FunctionPrototype, 'name');
104
+ // additional protection from minified / mangled / dropped function names
105
+ var PROPER = EXISTS && (function something() { /* empty */ }).name === 'something';
106
+ var CONFIGURABLE = EXISTS && (!DESCRIPTORS || (DESCRIPTORS && getDescriptor(FunctionPrototype, 'name').configurable));
107
+
108
+ module.exports = {
109
+ EXISTS: EXISTS,
110
+ PROPER: PROPER,
111
+ CONFIGURABLE: CONFIGURABLE
112
+ };
113
+
114
+
115
+ /***/ }),
116
+
117
+ /***/ 421:
118
+ /***/ (function(module) {
119
+
120
+ "use strict";
121
+
122
+ module.exports = {};
123
+
124
+
125
+ /***/ }),
126
+
127
+ /***/ 616:
128
+ /***/ (function(module, __unused_webpack_exports, __webpack_require__) {
129
+
130
+ "use strict";
131
+
132
+ var fails = __webpack_require__(9039);
133
+
134
+ module.exports = !fails(function () {
135
+ // eslint-disable-next-line es/no-function-prototype-bind -- safe
136
+ var test = (function () { /* empty */ }).bind();
137
+ // eslint-disable-next-line no-prototype-builtins -- safe
138
+ return typeof test != 'function' || test.hasOwnProperty('prototype');
139
+ });
140
+
141
+
142
+ /***/ }),
143
+
144
+ /***/ 655:
145
+ /***/ (function(module, __unused_webpack_exports, __webpack_require__) {
146
+
147
+ "use strict";
148
+
149
+ var classof = __webpack_require__(6955);
150
+
151
+ var $String = String;
152
+
153
+ module.exports = function (argument) {
154
+ if (classof(argument) === 'Symbol') throw new TypeError('Cannot convert a Symbol value to a string');
155
+ return $String(argument);
156
+ };
157
+
158
+
159
+ /***/ }),
160
+
161
+ /***/ 741:
162
+ /***/ (function(module) {
163
+
164
+ "use strict";
165
+
166
+ var ceil = Math.ceil;
167
+ var floor = Math.floor;
168
+
169
+ // `Math.trunc` method
170
+ // https://tc39.es/ecma262/#sec-math.trunc
171
+ // eslint-disable-next-line es/no-math-trunc -- safe
172
+ module.exports = Math.trunc || function trunc(x) {
173
+ var n = +x;
174
+ return (n > 0 ? floor : ceil)(n);
175
+ };
176
+
177
+
178
+ /***/ }),
179
+
180
+ /***/ 757:
181
+ /***/ (function(module, __unused_webpack_exports, __webpack_require__) {
182
+
183
+ "use strict";
184
+
185
+ var getBuiltIn = __webpack_require__(7751);
186
+ var isCallable = __webpack_require__(4901);
187
+ var isPrototypeOf = __webpack_require__(1625);
188
+ var USE_SYMBOL_AS_UID = __webpack_require__(7040);
189
+
190
+ var $Object = Object;
191
+
192
+ module.exports = USE_SYMBOL_AS_UID ? function (it) {
193
+ return typeof it == 'symbol';
194
+ } : function (it) {
195
+ var $Symbol = getBuiltIn('Symbol');
196
+ return isCallable($Symbol) && isPrototypeOf($Symbol.prototype, $Object(it));
197
+ };
198
+
199
+
200
+ /***/ }),
201
+
202
+ /***/ 1181:
203
+ /***/ (function(module, __unused_webpack_exports, __webpack_require__) {
204
+
205
+ "use strict";
206
+
207
+ var NATIVE_WEAK_MAP = __webpack_require__(8622);
208
+ var globalThis = __webpack_require__(4576);
209
+ var isObject = __webpack_require__(34);
210
+ var createNonEnumerableProperty = __webpack_require__(6699);
211
+ var hasOwn = __webpack_require__(9297);
212
+ var shared = __webpack_require__(7629);
213
+ var sharedKey = __webpack_require__(6119);
214
+ var hiddenKeys = __webpack_require__(421);
215
+
216
+ var OBJECT_ALREADY_INITIALIZED = 'Object already initialized';
217
+ var TypeError = globalThis.TypeError;
218
+ var WeakMap = globalThis.WeakMap;
219
+ var set, get, has;
220
+
221
+ var enforce = function (it) {
222
+ return has(it) ? get(it) : set(it, {});
223
+ };
224
+
225
+ var getterFor = function (TYPE) {
226
+ return function (it) {
227
+ var state;
228
+ if (!isObject(it) || (state = get(it)).type !== TYPE) {
229
+ throw new TypeError('Incompatible receiver, ' + TYPE + ' required');
230
+ } return state;
231
+ };
232
+ };
233
+
234
+ if (NATIVE_WEAK_MAP || shared.state) {
235
+ var store = shared.state || (shared.state = new WeakMap());
236
+ /* eslint-disable no-self-assign -- prototype methods protection */
237
+ store.get = store.get;
238
+ store.has = store.has;
239
+ store.set = store.set;
240
+ /* eslint-enable no-self-assign -- prototype methods protection */
241
+ set = function (it, metadata) {
242
+ if (store.has(it)) throw new TypeError(OBJECT_ALREADY_INITIALIZED);
243
+ metadata.facade = it;
244
+ store.set(it, metadata);
245
+ return metadata;
246
+ };
247
+ get = function (it) {
248
+ return store.get(it) || {};
249
+ };
250
+ has = function (it) {
251
+ return store.has(it);
252
+ };
253
+ } else {
254
+ var STATE = sharedKey('state');
255
+ hiddenKeys[STATE] = true;
256
+ set = function (it, metadata) {
257
+ if (hasOwn(it, STATE)) throw new TypeError(OBJECT_ALREADY_INITIALIZED);
258
+ metadata.facade = it;
259
+ createNonEnumerableProperty(it, STATE, metadata);
260
+ return metadata;
261
+ };
262
+ get = function (it) {
263
+ return hasOwn(it, STATE) ? it[STATE] : {};
264
+ };
265
+ has = function (it) {
266
+ return hasOwn(it, STATE);
267
+ };
268
+ }
269
+
270
+ module.exports = {
271
+ set: set,
272
+ get: get,
273
+ has: has,
274
+ enforce: enforce,
275
+ getterFor: getterFor
276
+ };
277
+
278
+
279
+ /***/ }),
280
+
281
+ /***/ 1291:
282
+ /***/ (function(module, __unused_webpack_exports, __webpack_require__) {
283
+
284
+ "use strict";
285
+
286
+ var trunc = __webpack_require__(741);
287
+
288
+ // `ToIntegerOrInfinity` abstract operation
289
+ // https://tc39.es/ecma262/#sec-tointegerorinfinity
290
+ module.exports = function (argument) {
291
+ var number = +argument;
292
+ // eslint-disable-next-line no-self-compare -- NaN check
293
+ return number !== number || number === 0 ? 0 : trunc(number);
294
+ };
295
+
296
+
297
+ /***/ }),
298
+
299
+ /***/ 1625:
300
+ /***/ (function(module, __unused_webpack_exports, __webpack_require__) {
301
+
302
+ "use strict";
303
+
304
+ var uncurryThis = __webpack_require__(9504);
305
+
306
+ module.exports = uncurryThis({}.isPrototypeOf);
307
+
308
+
309
+ /***/ }),
310
+
311
+ /***/ 1828:
312
+ /***/ (function(module, __unused_webpack_exports, __webpack_require__) {
313
+
314
+ "use strict";
315
+
316
+ var uncurryThis = __webpack_require__(9504);
317
+ var hasOwn = __webpack_require__(9297);
318
+ var toIndexedObject = __webpack_require__(5397);
319
+ var indexOf = (__webpack_require__(9617).indexOf);
320
+ var hiddenKeys = __webpack_require__(421);
321
+
322
+ var push = uncurryThis([].push);
323
+
324
+ module.exports = function (object, names) {
325
+ var O = toIndexedObject(object);
326
+ var i = 0;
327
+ var result = [];
328
+ var key;
329
+ for (key in O) !hasOwn(hiddenKeys, key) && hasOwn(O, key) && push(result, key);
330
+ // Don't enum bug & hidden keys
331
+ while (names.length > i) if (hasOwn(O, key = names[i++])) {
332
+ ~indexOf(result, key) || push(result, key);
333
+ }
334
+ return result;
335
+ };
336
+
337
+
338
+ /***/ }),
339
+
340
+ /***/ 2140:
341
+ /***/ (function(module, __unused_webpack_exports, __webpack_require__) {
342
+
343
+ "use strict";
344
+
345
+ var wellKnownSymbol = __webpack_require__(8227);
346
+
347
+ var TO_STRING_TAG = wellKnownSymbol('toStringTag');
348
+ var test = {};
349
+ // eslint-disable-next-line unicorn/no-immediate-mutation -- ES3 syntax limitation
350
+ test[TO_STRING_TAG] = 'z';
351
+
352
+ module.exports = String(test) === '[object z]';
353
+
354
+
355
+ /***/ }),
356
+
357
+ /***/ 2195:
358
+ /***/ (function(module, __unused_webpack_exports, __webpack_require__) {
359
+
360
+ "use strict";
361
+
362
+ var uncurryThis = __webpack_require__(9504);
363
+
364
+ var toString = uncurryThis({}.toString);
365
+ var stringSlice = uncurryThis(''.slice);
366
+
367
+ module.exports = function (it) {
368
+ return stringSlice(toString(it), 8, -1);
369
+ };
370
+
371
+
372
+ /***/ }),
373
+
374
+ /***/ 2777:
375
+ /***/ (function(module, __unused_webpack_exports, __webpack_require__) {
376
+
377
+ "use strict";
378
+
379
+ var call = __webpack_require__(9565);
380
+ var isObject = __webpack_require__(34);
381
+ var isSymbol = __webpack_require__(757);
382
+ var getMethod = __webpack_require__(5966);
383
+ var ordinaryToPrimitive = __webpack_require__(4270);
384
+ var wellKnownSymbol = __webpack_require__(8227);
385
+
386
+ var $TypeError = TypeError;
387
+ var TO_PRIMITIVE = wellKnownSymbol('toPrimitive');
388
+
389
+ // `ToPrimitive` abstract operation
390
+ // https://tc39.es/ecma262/#sec-toprimitive
391
+ module.exports = function (input, pref) {
392
+ if (!isObject(input) || isSymbol(input)) return input;
393
+ var exoticToPrim = getMethod(input, TO_PRIMITIVE);
394
+ var result;
395
+ if (exoticToPrim) {
396
+ if (pref === undefined) pref = 'default';
397
+ result = call(exoticToPrim, input, pref);
398
+ if (!isObject(result) || isSymbol(result)) return result;
399
+ throw new $TypeError("Can't convert object to primitive value");
400
+ }
401
+ if (pref === undefined) pref = 'number';
402
+ return ordinaryToPrimitive(input, pref);
403
+ };
404
+
405
+
406
+ /***/ }),
407
+
408
+ /***/ 2796:
409
+ /***/ (function(module, __unused_webpack_exports, __webpack_require__) {
410
+
411
+ "use strict";
412
+
413
+ var fails = __webpack_require__(9039);
414
+ var isCallable = __webpack_require__(4901);
415
+
416
+ var replacement = /#|\.prototype\./;
417
+
418
+ var isForced = function (feature, detection) {
419
+ var value = data[normalize(feature)];
420
+ return value === POLYFILL ? true
421
+ : value === NATIVE ? false
422
+ : isCallable(detection) ? fails(detection)
423
+ : !!detection;
424
+ };
425
+
426
+ var normalize = isForced.normalize = function (string) {
427
+ return String(string).replace(replacement, '.').toLowerCase();
428
+ };
429
+
430
+ var data = isForced.data = {};
431
+ var NATIVE = isForced.NATIVE = 'N';
432
+ var POLYFILL = isForced.POLYFILL = 'P';
433
+
434
+ module.exports = isForced;
435
+
436
+
437
+ /***/ }),
438
+
439
+ /***/ 2839:
440
+ /***/ (function(module, __unused_webpack_exports, __webpack_require__) {
441
+
442
+ "use strict";
443
+
444
+ var globalThis = __webpack_require__(4576);
445
+
446
+ var navigator = globalThis.navigator;
447
+ var userAgent = navigator && navigator.userAgent;
448
+
449
+ module.exports = userAgent ? String(userAgent) : '';
450
+
451
+
452
+ /***/ }),
453
+
454
+ /***/ 3110:
455
+ /***/ (function(__unused_webpack_module, __unused_webpack_exports, __webpack_require__) {
456
+
457
+ "use strict";
458
+
459
+ var $ = __webpack_require__(6518);
460
+ var getBuiltIn = __webpack_require__(7751);
461
+ var apply = __webpack_require__(8745);
462
+ var call = __webpack_require__(9565);
463
+ var uncurryThis = __webpack_require__(9504);
464
+ var fails = __webpack_require__(9039);
465
+ var isArray = __webpack_require__(4376);
466
+ var isCallable = __webpack_require__(4901);
467
+ var isRawJSON = __webpack_require__(5810);
468
+ var isSymbol = __webpack_require__(757);
469
+ var classof = __webpack_require__(2195);
470
+ var toString = __webpack_require__(655);
471
+ var arraySlice = __webpack_require__(7680);
472
+ var parseJSONString = __webpack_require__(8235);
473
+ var uid = __webpack_require__(3392);
474
+ var NATIVE_SYMBOL = __webpack_require__(4495);
475
+ var NATIVE_RAW_JSON = __webpack_require__(7819);
476
+
477
+ var $String = String;
478
+ var $stringify = getBuiltIn('JSON', 'stringify');
479
+ var exec = uncurryThis(/./.exec);
480
+ var charAt = uncurryThis(''.charAt);
481
+ var charCodeAt = uncurryThis(''.charCodeAt);
482
+ var replace = uncurryThis(''.replace);
483
+ var slice = uncurryThis(''.slice);
484
+ var push = uncurryThis([].push);
485
+ var numberToString = uncurryThis(1.1.toString);
486
+
487
+ var surrogates = /[\uD800-\uDFFF]/g;
488
+ var lowSurrogates = /^[\uD800-\uDBFF]$/;
489
+ var hiSurrogates = /^[\uDC00-\uDFFF]$/;
490
+
491
+ var MARK = uid();
492
+ var MARK_LENGTH = MARK.length;
493
+
494
+ var WRONG_SYMBOLS_CONVERSION = !NATIVE_SYMBOL || fails(function () {
495
+ var symbol = getBuiltIn('Symbol')('stringify detection');
496
+ // MS Edge converts symbol values to JSON as {}
497
+ return $stringify([symbol]) !== '[null]'
498
+ // WebKit converts symbol values to JSON as null
499
+ || $stringify({ a: symbol }) !== '{}'
500
+ // V8 throws on boxed symbols
501
+ || $stringify(Object(symbol)) !== '{}';
502
+ });
503
+
504
+ // https://github.com/tc39/proposal-well-formed-stringify
505
+ var ILL_FORMED_UNICODE = fails(function () {
506
+ return $stringify('\uDF06\uD834') !== '"\\udf06\\ud834"'
507
+ || $stringify('\uDEAD') !== '"\\udead"';
508
+ });
509
+
510
+ var stringifyWithProperSymbolsConversion = WRONG_SYMBOLS_CONVERSION ? function (it, replacer) {
511
+ var args = arraySlice(arguments);
512
+ var $replacer = getReplacerFunction(replacer);
513
+ if (!isCallable($replacer) && (it === undefined || isSymbol(it))) return; // IE8 returns string on undefined
514
+ args[1] = function (key, value) {
515
+ // some old implementations (like WebKit) could pass numbers as keys
516
+ if (isCallable($replacer)) value = call($replacer, this, $String(key), value);
517
+ if (!isSymbol(value)) return value;
518
+ };
519
+ return apply($stringify, null, args);
520
+ } : $stringify;
521
+
522
+ var fixIllFormedJSON = function (match, offset, string) {
523
+ var prev = charAt(string, offset - 1);
524
+ var next = charAt(string, offset + 1);
525
+ if ((exec(lowSurrogates, match) && !exec(hiSurrogates, next)) || (exec(hiSurrogates, match) && !exec(lowSurrogates, prev))) {
526
+ return '\\u' + numberToString(charCodeAt(match, 0), 16);
527
+ } return match;
528
+ };
529
+
530
+ var getReplacerFunction = function (replacer) {
531
+ if (isCallable(replacer)) return replacer;
532
+ if (!isArray(replacer)) return;
533
+ var rawLength = replacer.length;
534
+ var keys = [];
535
+ for (var i = 0; i < rawLength; i++) {
536
+ var element = replacer[i];
537
+ if (typeof element == 'string') push(keys, element);
538
+ else if (typeof element == 'number' || classof(element) === 'Number' || classof(element) === 'String') push(keys, toString(element));
539
+ }
540
+ var keysLength = keys.length;
541
+ var root = true;
542
+ return function (key, value) {
543
+ if (root) {
544
+ root = false;
545
+ return value;
546
+ }
547
+ if (isArray(this)) return value;
548
+ for (var j = 0; j < keysLength; j++) if (keys[j] === key) return value;
549
+ };
550
+ };
551
+
552
+ // `JSON.stringify` method
553
+ // https://tc39.es/ecma262/#sec-json.stringify
554
+ // https://github.com/tc39/proposal-json-parse-with-source
555
+ if ($stringify) $({ target: 'JSON', stat: true, arity: 3, forced: WRONG_SYMBOLS_CONVERSION || ILL_FORMED_UNICODE || !NATIVE_RAW_JSON }, {
556
+ stringify: function stringify(text, replacer, space) {
557
+ var replacerFunction = getReplacerFunction(replacer);
558
+ var rawStrings = [];
559
+
560
+ var json = stringifyWithProperSymbolsConversion(text, function (key, value) {
561
+ // some old implementations (like WebKit) could pass numbers as keys
562
+ var v = isCallable(replacerFunction) ? call(replacerFunction, this, $String(key), value) : value;
563
+ return !NATIVE_RAW_JSON && isRawJSON(v) ? MARK + (push(rawStrings, v.rawJSON) - 1) : v;
564
+ }, space);
565
+
566
+ if (typeof json != 'string') return json;
567
+
568
+ if (ILL_FORMED_UNICODE) json = replace(json, surrogates, fixIllFormedJSON);
569
+
570
+ if (NATIVE_RAW_JSON) return json;
571
+
572
+ var result = '';
573
+ var length = json.length;
574
+
575
+ for (var i = 0; i < length; i++) {
576
+ var chr = charAt(json, i);
577
+ if (chr === '"') {
578
+ var end = parseJSONString(json, ++i).end - 1;
579
+ var string = slice(json, i, end);
580
+ result += slice(string, 0, MARK_LENGTH) === MARK
581
+ ? rawStrings[slice(string, MARK_LENGTH)]
582
+ : '"' + string + '"';
583
+ i = end;
584
+ } else result += chr;
585
+ }
586
+
587
+ return result;
588
+ }
589
+ });
590
+
591
+
592
+ /***/ }),
593
+
594
+ /***/ 3392:
595
+ /***/ (function(module, __unused_webpack_exports, __webpack_require__) {
596
+
597
+ "use strict";
598
+
599
+ var uncurryThis = __webpack_require__(9504);
600
+
601
+ var id = 0;
602
+ var postfix = Math.random();
603
+ var toString = uncurryThis(1.1.toString);
604
+
605
+ module.exports = function (key) {
606
+ return 'Symbol(' + (key === undefined ? '' : key) + ')_' + toString(++id + postfix, 36);
607
+ };
608
+
609
+
610
+ /***/ }),
611
+
612
+ /***/ 3706:
613
+ /***/ (function(module, __unused_webpack_exports, __webpack_require__) {
614
+
615
+ "use strict";
616
+
617
+ var uncurryThis = __webpack_require__(9504);
618
+ var isCallable = __webpack_require__(4901);
619
+ var store = __webpack_require__(7629);
620
+
621
+ var functionToString = uncurryThis(Function.toString);
622
+
623
+ // this helper broken in `core-js@3.4.1-3.4.4`, so we can't use `shared` helper
624
+ if (!isCallable(store.inspectSource)) {
625
+ store.inspectSource = function (it) {
626
+ return functionToString(it);
627
+ };
628
+ }
629
+
630
+ module.exports = store.inspectSource;
631
+
632
+
633
+ /***/ }),
634
+
635
+ /***/ 3717:
636
+ /***/ (function(__unused_webpack_module, exports) {
637
+
638
+ "use strict";
639
+
640
+ // eslint-disable-next-line es/no-object-getownpropertysymbols -- safe
641
+ exports.f = Object.getOwnPropertySymbols;
642
+
643
+
644
+ /***/ }),
645
+
646
+ /***/ 3724:
647
+ /***/ (function(module, __unused_webpack_exports, __webpack_require__) {
648
+
649
+ "use strict";
650
+
651
+ var fails = __webpack_require__(9039);
652
+
653
+ // Detect IE8's incomplete defineProperty implementation
654
+ module.exports = !fails(function () {
655
+ // eslint-disable-next-line es/no-object-defineproperty -- required for testing
656
+ return Object.defineProperty({}, 1, { get: function () { return 7; } })[1] !== 7;
657
+ });
658
+
659
+
660
+ /***/ }),
661
+
662
+ /***/ 4055:
663
+ /***/ (function(module, __unused_webpack_exports, __webpack_require__) {
664
+
665
+ "use strict";
666
+
667
+ var globalThis = __webpack_require__(4576);
668
+ var isObject = __webpack_require__(34);
669
+
670
+ var document = globalThis.document;
671
+ // typeof document.createElement is 'object' in old IE
672
+ var EXISTS = isObject(document) && isObject(document.createElement);
673
+
674
+ module.exports = function (it) {
675
+ return EXISTS ? document.createElement(it) : {};
676
+ };
677
+
678
+
679
+ /***/ }),
680
+
681
+ /***/ 4117:
682
+ /***/ (function(module) {
683
+
684
+ "use strict";
685
+
686
+ // we can't use just `it == null` since of `document.all` special case
687
+ // https://tc39.es/ecma262/#sec-IsHTMLDDA-internal-slot-aec
688
+ module.exports = function (it) {
689
+ return it === null || it === undefined;
690
+ };
691
+
692
+
693
+ /***/ }),
694
+
695
+ /***/ 4270:
696
+ /***/ (function(module, __unused_webpack_exports, __webpack_require__) {
697
+
698
+ "use strict";
699
+
700
+ var call = __webpack_require__(9565);
701
+ var isCallable = __webpack_require__(4901);
702
+ var isObject = __webpack_require__(34);
703
+
704
+ var $TypeError = TypeError;
705
+
706
+ // `OrdinaryToPrimitive` abstract operation
707
+ // https://tc39.es/ecma262/#sec-ordinarytoprimitive
708
+ module.exports = function (input, pref) {
709
+ var fn, val;
710
+ if (pref === 'string' && isCallable(fn = input.toString) && !isObject(val = call(fn, input))) return val;
711
+ if (isCallable(fn = input.valueOf) && !isObject(val = call(fn, input))) return val;
712
+ if (pref !== 'string' && isCallable(fn = input.toString) && !isObject(val = call(fn, input))) return val;
713
+ throw new $TypeError("Can't convert object to primitive value");
714
+ };
715
+
716
+
717
+ /***/ }),
718
+
719
+ /***/ 4376:
720
+ /***/ (function(module, __unused_webpack_exports, __webpack_require__) {
721
+
722
+ "use strict";
723
+
724
+ var classof = __webpack_require__(2195);
725
+
726
+ // `IsArray` abstract operation
727
+ // https://tc39.es/ecma262/#sec-isarray
728
+ // eslint-disable-next-line es/no-array-isarray -- safe
729
+ module.exports = Array.isArray || function isArray(argument) {
730
+ return classof(argument) === 'Array';
731
+ };
732
+
733
+
734
+ /***/ }),
735
+
736
+ /***/ 4495:
737
+ /***/ (function(module, __unused_webpack_exports, __webpack_require__) {
738
+
739
+ "use strict";
740
+
741
+ /* eslint-disable es/no-symbol -- required for testing */
742
+ var V8_VERSION = __webpack_require__(9519);
743
+ var fails = __webpack_require__(9039);
744
+ var globalThis = __webpack_require__(4576);
745
+
746
+ var $String = globalThis.String;
747
+
748
+ // eslint-disable-next-line es/no-object-getownpropertysymbols -- required for testing
749
+ module.exports = !!Object.getOwnPropertySymbols && !fails(function () {
750
+ var symbol = Symbol('symbol detection');
751
+ // Chrome 38 Symbol has incorrect toString conversion
752
+ // `get-own-property-symbols` polyfill symbols converted to object are not Symbol instances
753
+ // nb: Do not call `String` directly to avoid this being optimized out to `symbol+''` which will,
754
+ // of course, fail.
755
+ return !$String(symbol) || !(Object(symbol) instanceof Symbol) ||
756
+ // Chrome 38-40 symbols are not inherited from DOM collections prototypes to instances
757
+ !Symbol.sham && V8_VERSION && V8_VERSION < 41;
758
+ });
759
+
760
+
761
+ /***/ }),
762
+
763
+ /***/ 4576:
764
+ /***/ (function(module, __unused_webpack_exports, __webpack_require__) {
765
+
766
+ "use strict";
767
+
768
+ var check = function (it) {
769
+ return it && it.Math === Math && it;
770
+ };
771
+
772
+ // https://github.com/zloirock/core-js/issues/86#issuecomment-115759028
773
+ module.exports =
774
+ // eslint-disable-next-line es/no-global-this -- safe
775
+ check(typeof globalThis == 'object' && globalThis) ||
776
+ check(typeof window == 'object' && window) ||
777
+ // eslint-disable-next-line no-restricted-globals -- safe
778
+ check(typeof self == 'object' && self) ||
779
+ check(typeof __webpack_require__.g == 'object' && __webpack_require__.g) ||
780
+ check(typeof this == 'object' && this) ||
781
+ // eslint-disable-next-line no-new-func -- fallback
782
+ (function () { return this; })() || Function('return this')();
783
+
784
+
785
+ /***/ }),
786
+
787
+ /***/ 4659:
788
+ /***/ (function(module, __unused_webpack_exports, __webpack_require__) {
789
+
790
+ "use strict";
791
+
792
+ var DESCRIPTORS = __webpack_require__(3724);
793
+ var definePropertyModule = __webpack_require__(4913);
794
+ var createPropertyDescriptor = __webpack_require__(6980);
795
+
796
+ module.exports = function (object, key, value) {
797
+ if (DESCRIPTORS) definePropertyModule.f(object, key, createPropertyDescriptor(0, value));
798
+ else object[key] = value;
799
+ };
800
+
801
+
802
+ /***/ }),
803
+
804
+ /***/ 4901:
805
+ /***/ (function(module) {
806
+
807
+ "use strict";
808
+
809
+ // https://tc39.es/ecma262/#sec-IsHTMLDDA-internal-slot
810
+ var documentAll = typeof document == 'object' && document.all;
811
+
812
+ // `IsCallable` abstract operation
813
+ // https://tc39.es/ecma262/#sec-iscallable
814
+ // eslint-disable-next-line unicorn/no-typeof-undefined -- required for testing
815
+ module.exports = typeof documentAll == 'undefined' && documentAll !== undefined ? function (argument) {
816
+ return typeof argument == 'function' || argument === documentAll;
817
+ } : function (argument) {
818
+ return typeof argument == 'function';
819
+ };
820
+
821
+
822
+ /***/ }),
823
+
824
+ /***/ 4913:
825
+ /***/ (function(__unused_webpack_module, exports, __webpack_require__) {
826
+
827
+ "use strict";
828
+
829
+ var DESCRIPTORS = __webpack_require__(3724);
830
+ var IE8_DOM_DEFINE = __webpack_require__(5917);
831
+ var V8_PROTOTYPE_DEFINE_BUG = __webpack_require__(8686);
832
+ var anObject = __webpack_require__(8551);
833
+ var toPropertyKey = __webpack_require__(6969);
834
+
835
+ var $TypeError = TypeError;
836
+ // eslint-disable-next-line es/no-object-defineproperty -- safe
837
+ var $defineProperty = Object.defineProperty;
838
+ // eslint-disable-next-line es/no-object-getownpropertydescriptor -- safe
839
+ var $getOwnPropertyDescriptor = Object.getOwnPropertyDescriptor;
840
+ var ENUMERABLE = 'enumerable';
841
+ var CONFIGURABLE = 'configurable';
842
+ var WRITABLE = 'writable';
843
+
844
+ // `Object.defineProperty` method
845
+ // https://tc39.es/ecma262/#sec-object.defineproperty
846
+ exports.f = DESCRIPTORS ? V8_PROTOTYPE_DEFINE_BUG ? function defineProperty(O, P, Attributes) {
847
+ anObject(O);
848
+ P = toPropertyKey(P);
849
+ anObject(Attributes);
850
+ if (typeof O === 'function' && P === 'prototype' && 'value' in Attributes && WRITABLE in Attributes && !Attributes[WRITABLE]) {
851
+ var current = $getOwnPropertyDescriptor(O, P);
852
+ if (current && current[WRITABLE]) {
853
+ O[P] = Attributes.value;
854
+ Attributes = {
855
+ configurable: CONFIGURABLE in Attributes ? Attributes[CONFIGURABLE] : current[CONFIGURABLE],
856
+ enumerable: ENUMERABLE in Attributes ? Attributes[ENUMERABLE] : current[ENUMERABLE],
857
+ writable: false
858
+ };
859
+ }
860
+ } return $defineProperty(O, P, Attributes);
861
+ } : $defineProperty : function defineProperty(O, P, Attributes) {
862
+ anObject(O);
863
+ P = toPropertyKey(P);
864
+ anObject(Attributes);
865
+ if (IE8_DOM_DEFINE) try {
866
+ return $defineProperty(O, P, Attributes);
867
+ } catch (error) { /* empty */ }
868
+ if ('get' in Attributes || 'set' in Attributes) throw new $TypeError('Accessors not supported');
869
+ if ('value' in Attributes) O[P] = Attributes.value;
870
+ return O;
871
+ };
872
+
873
+
874
+ /***/ }),
875
+
876
+ /***/ 5031:
877
+ /***/ (function(module, __unused_webpack_exports, __webpack_require__) {
878
+
879
+ "use strict";
880
+
881
+ var getBuiltIn = __webpack_require__(7751);
882
+ var uncurryThis = __webpack_require__(9504);
883
+ var getOwnPropertyNamesModule = __webpack_require__(8480);
884
+ var getOwnPropertySymbolsModule = __webpack_require__(3717);
885
+ var anObject = __webpack_require__(8551);
886
+
887
+ var concat = uncurryThis([].concat);
888
+
889
+ // all object keys, includes non-enumerable and symbols
890
+ module.exports = getBuiltIn('Reflect', 'ownKeys') || function ownKeys(it) {
891
+ var keys = getOwnPropertyNamesModule.f(anObject(it));
892
+ var getOwnPropertySymbols = getOwnPropertySymbolsModule.f;
893
+ return getOwnPropertySymbols ? concat(keys, getOwnPropertySymbols(it)) : keys;
894
+ };
895
+
896
+
897
+ /***/ }),
898
+
899
+ /***/ 5397:
900
+ /***/ (function(module, __unused_webpack_exports, __webpack_require__) {
901
+
902
+ "use strict";
903
+
904
+ // toObject with fallback for non-array-like ES3 strings
905
+ var IndexedObject = __webpack_require__(7055);
906
+ var requireObjectCoercible = __webpack_require__(7750);
907
+
908
+ module.exports = function (it) {
909
+ return IndexedObject(requireObjectCoercible(it));
910
+ };
911
+
912
+
913
+ /***/ }),
914
+
915
+ /***/ 5610:
916
+ /***/ (function(module, __unused_webpack_exports, __webpack_require__) {
917
+
918
+ "use strict";
919
+
920
+ var toIntegerOrInfinity = __webpack_require__(1291);
921
+
922
+ var max = Math.max;
923
+ var min = Math.min;
924
+
925
+ // Helper for a popular repeating case of the spec:
926
+ // Let integer be ? ToInteger(index).
927
+ // If integer < 0, let result be max((length + integer), 0); else let result be min(integer, length).
928
+ module.exports = function (index, length) {
929
+ var integer = toIntegerOrInfinity(index);
930
+ return integer < 0 ? max(integer + length, 0) : min(integer, length);
931
+ };
932
+
933
+
934
+ /***/ }),
935
+
936
+ /***/ 5745:
937
+ /***/ (function(module, __unused_webpack_exports, __webpack_require__) {
938
+
939
+ "use strict";
940
+
941
+ var store = __webpack_require__(7629);
942
+
943
+ module.exports = function (key, value) {
944
+ return store[key] || (store[key] = value || {});
945
+ };
946
+
947
+
948
+ /***/ }),
949
+
950
+ /***/ 5810:
951
+ /***/ (function(module, __unused_webpack_exports, __webpack_require__) {
952
+
953
+ "use strict";
954
+
955
+ var isObject = __webpack_require__(34);
956
+ var getInternalState = (__webpack_require__(1181).get);
957
+
958
+ module.exports = function isRawJSON(O) {
959
+ if (!isObject(O)) return false;
960
+ var state = getInternalState(O);
961
+ return !!state && state.type === 'RawJSON';
962
+ };
963
+
964
+
965
+ /***/ }),
966
+
967
+ /***/ 5917:
968
+ /***/ (function(module, __unused_webpack_exports, __webpack_require__) {
969
+
970
+ "use strict";
971
+
972
+ var DESCRIPTORS = __webpack_require__(3724);
973
+ var fails = __webpack_require__(9039);
974
+ var createElement = __webpack_require__(4055);
975
+
976
+ // Thanks to IE8 for its funny defineProperty
977
+ module.exports = !DESCRIPTORS && !fails(function () {
978
+ // eslint-disable-next-line es/no-object-defineproperty -- required for testing
979
+ return Object.defineProperty(createElement('div'), 'a', {
980
+ get: function () { return 7; }
981
+ }).a !== 7;
982
+ });
983
+
984
+
985
+ /***/ }),
986
+
987
+ /***/ 5966:
988
+ /***/ (function(module, __unused_webpack_exports, __webpack_require__) {
989
+
990
+ "use strict";
991
+
992
+ var aCallable = __webpack_require__(9306);
993
+ var isNullOrUndefined = __webpack_require__(4117);
994
+
995
+ // `GetMethod` abstract operation
996
+ // https://tc39.es/ecma262/#sec-getmethod
997
+ module.exports = function (V, P) {
998
+ var func = V[P];
999
+ return isNullOrUndefined(func) ? undefined : aCallable(func);
1000
+ };
1001
+
1002
+
1003
+ /***/ }),
1004
+
1005
+ /***/ 6119:
1006
+ /***/ (function(module, __unused_webpack_exports, __webpack_require__) {
1007
+
1008
+ "use strict";
1009
+
1010
+ var shared = __webpack_require__(5745);
1011
+ var uid = __webpack_require__(3392);
1012
+
1013
+ var keys = shared('keys');
1014
+
1015
+ module.exports = function (key) {
1016
+ return keys[key] || (keys[key] = uid(key));
1017
+ };
1018
+
1019
+
1020
+ /***/ }),
1021
+
1022
+ /***/ 6198:
1023
+ /***/ (function(module, __unused_webpack_exports, __webpack_require__) {
1024
+
1025
+ "use strict";
1026
+
1027
+ var toLength = __webpack_require__(8014);
1028
+
1029
+ // `LengthOfArrayLike` abstract operation
1030
+ // https://tc39.es/ecma262/#sec-lengthofarraylike
1031
+ module.exports = function (obj) {
1032
+ return toLength(obj.length);
1033
+ };
1034
+
1035
+
1036
+ /***/ }),
1037
+
1038
+ /***/ 6395:
1039
+ /***/ (function(module) {
1040
+
1041
+ "use strict";
1042
+
1043
+ module.exports = false;
1044
+
1045
+
1046
+ /***/ }),
1047
+
1048
+ /***/ 6518:
1049
+ /***/ (function(module, __unused_webpack_exports, __webpack_require__) {
1050
+
1051
+ "use strict";
1052
+
1053
+ var globalThis = __webpack_require__(4576);
1054
+ var getOwnPropertyDescriptor = (__webpack_require__(7347).f);
1055
+ var createNonEnumerableProperty = __webpack_require__(6699);
1056
+ var defineBuiltIn = __webpack_require__(6840);
1057
+ var defineGlobalProperty = __webpack_require__(9433);
1058
+ var copyConstructorProperties = __webpack_require__(7740);
1059
+ var isForced = __webpack_require__(2796);
1060
+
1061
+ /*
1062
+ options.target - name of the target object
1063
+ options.global - target is the global object
1064
+ options.stat - export as static methods of target
1065
+ options.proto - export as prototype methods of target
1066
+ options.real - real prototype method for the `pure` version
1067
+ options.forced - export even if the native feature is available
1068
+ options.bind - bind methods to the target, required for the `pure` version
1069
+ options.wrap - wrap constructors to preventing global pollution, required for the `pure` version
1070
+ options.unsafe - use the simple assignment of property instead of delete + defineProperty
1071
+ options.sham - add a flag to not completely full polyfills
1072
+ options.enumerable - export as enumerable property
1073
+ options.dontCallGetSet - prevent calling a getter on target
1074
+ options.name - the .name of the function if it does not match the key
1075
+ */
1076
+ module.exports = function (options, source) {
1077
+ var TARGET = options.target;
1078
+ var GLOBAL = options.global;
1079
+ var STATIC = options.stat;
1080
+ var FORCED, target, key, targetProperty, sourceProperty, descriptor;
1081
+ if (GLOBAL) {
1082
+ target = globalThis;
1083
+ } else if (STATIC) {
1084
+ target = globalThis[TARGET] || defineGlobalProperty(TARGET, {});
1085
+ } else {
1086
+ target = globalThis[TARGET] && globalThis[TARGET].prototype;
1087
+ }
1088
+ if (target) for (key in source) {
1089
+ sourceProperty = source[key];
1090
+ if (options.dontCallGetSet) {
1091
+ descriptor = getOwnPropertyDescriptor(target, key);
1092
+ targetProperty = descriptor && descriptor.value;
1093
+ } else targetProperty = target[key];
1094
+ FORCED = isForced(GLOBAL ? key : TARGET + (STATIC ? '.' : '#') + key, options.forced);
1095
+ // contained in target
1096
+ if (!FORCED && targetProperty !== undefined) {
1097
+ if (typeof sourceProperty == typeof targetProperty) continue;
1098
+ copyConstructorProperties(sourceProperty, targetProperty);
1099
+ }
1100
+ // add a flag to not completely full polyfills
1101
+ if (options.sham || (targetProperty && targetProperty.sham)) {
1102
+ createNonEnumerableProperty(sourceProperty, 'sham', true);
1103
+ }
1104
+ defineBuiltIn(target, key, sourceProperty, options);
1105
+ }
1106
+ };
1107
+
1108
+
1109
+ /***/ }),
1110
+
1111
+ /***/ 6699:
1112
+ /***/ (function(module, __unused_webpack_exports, __webpack_require__) {
1113
+
1114
+ "use strict";
1115
+
1116
+ var DESCRIPTORS = __webpack_require__(3724);
1117
+ var definePropertyModule = __webpack_require__(4913);
1118
+ var createPropertyDescriptor = __webpack_require__(6980);
1119
+
1120
+ module.exports = DESCRIPTORS ? function (object, key, value) {
1121
+ return definePropertyModule.f(object, key, createPropertyDescriptor(1, value));
1122
+ } : function (object, key, value) {
1123
+ object[key] = value;
1124
+ return object;
1125
+ };
1126
+
1127
+
1128
+ /***/ }),
1129
+
1130
+ /***/ 6823:
1131
+ /***/ (function(module) {
1132
+
1133
+ "use strict";
1134
+
1135
+ var $String = String;
1136
+
1137
+ module.exports = function (argument) {
1138
+ try {
1139
+ return $String(argument);
1140
+ } catch (error) {
1141
+ return 'Object';
1142
+ }
1143
+ };
1144
+
1145
+
1146
+ /***/ }),
1147
+
1148
+ /***/ 6840:
1149
+ /***/ (function(module, __unused_webpack_exports, __webpack_require__) {
1150
+
1151
+ "use strict";
1152
+
1153
+ var isCallable = __webpack_require__(4901);
1154
+ var definePropertyModule = __webpack_require__(4913);
1155
+ var makeBuiltIn = __webpack_require__(283);
1156
+ var defineGlobalProperty = __webpack_require__(9433);
1157
+
1158
+ module.exports = function (O, key, value, options) {
1159
+ if (!options) options = {};
1160
+ var simple = options.enumerable;
1161
+ var name = options.name !== undefined ? options.name : key;
1162
+ if (isCallable(value)) makeBuiltIn(value, name, options);
1163
+ if (options.global) {
1164
+ if (simple) O[key] = value;
1165
+ else defineGlobalProperty(key, value);
1166
+ } else {
1167
+ try {
1168
+ if (!options.unsafe) delete O[key];
1169
+ else if (O[key]) simple = true;
1170
+ } catch (error) { /* empty */ }
1171
+ if (simple) O[key] = value;
1172
+ else definePropertyModule.f(O, key, {
1173
+ value: value,
1174
+ enumerable: false,
1175
+ configurable: !options.nonConfigurable,
1176
+ writable: !options.nonWritable
1177
+ });
1178
+ } return O;
1179
+ };
1180
+
1181
+
1182
+ /***/ }),
1183
+
1184
+ /***/ 6955:
1185
+ /***/ (function(module, __unused_webpack_exports, __webpack_require__) {
1186
+
1187
+ "use strict";
1188
+
1189
+ var TO_STRING_TAG_SUPPORT = __webpack_require__(2140);
1190
+ var isCallable = __webpack_require__(4901);
1191
+ var classofRaw = __webpack_require__(2195);
1192
+ var wellKnownSymbol = __webpack_require__(8227);
1193
+
1194
+ var TO_STRING_TAG = wellKnownSymbol('toStringTag');
1195
+ var $Object = Object;
1196
+
1197
+ // ES3 wrong here
1198
+ var CORRECT_ARGUMENTS = classofRaw(function () { return arguments; }()) === 'Arguments';
1199
+
1200
+ // fallback for IE11 Script Access Denied error
1201
+ var tryGet = function (it, key) {
1202
+ try {
1203
+ return it[key];
1204
+ } catch (error) { /* empty */ }
1205
+ };
1206
+
1207
+ // getting tag from ES6+ `Object.prototype.toString`
1208
+ module.exports = TO_STRING_TAG_SUPPORT ? classofRaw : function (it) {
1209
+ var O, tag, result;
1210
+ return it === undefined ? 'Undefined' : it === null ? 'Null'
1211
+ // @@toStringTag case
1212
+ : typeof (tag = tryGet(O = $Object(it), TO_STRING_TAG)) == 'string' ? tag
1213
+ // builtinTag case
1214
+ : CORRECT_ARGUMENTS ? classofRaw(O)
1215
+ // ES3 arguments fallback
1216
+ : (result = classofRaw(O)) === 'Object' && isCallable(O.callee) ? 'Arguments' : result;
1217
+ };
1218
+
1219
+
1220
+ /***/ }),
1221
+
1222
+ /***/ 6969:
1223
+ /***/ (function(module, __unused_webpack_exports, __webpack_require__) {
1224
+
1225
+ "use strict";
1226
+
1227
+ var toPrimitive = __webpack_require__(2777);
1228
+ var isSymbol = __webpack_require__(757);
1229
+
1230
+ // `ToPropertyKey` abstract operation
1231
+ // https://tc39.es/ecma262/#sec-topropertykey
1232
+ module.exports = function (argument) {
1233
+ var key = toPrimitive(argument, 'string');
1234
+ return isSymbol(key) ? key : key + '';
1235
+ };
1236
+
1237
+
1238
+ /***/ }),
1239
+
1240
+ /***/ 6980:
1241
+ /***/ (function(module) {
1242
+
1243
+ "use strict";
1244
+
1245
+ module.exports = function (bitmap, value) {
1246
+ return {
1247
+ enumerable: !(bitmap & 1),
1248
+ configurable: !(bitmap & 2),
1249
+ writable: !(bitmap & 4),
1250
+ value: value
1251
+ };
1252
+ };
1253
+
1254
+
1255
+ /***/ }),
1256
+
1257
+ /***/ 7040:
1258
+ /***/ (function(module, __unused_webpack_exports, __webpack_require__) {
1259
+
1260
+ "use strict";
1261
+
1262
+ /* eslint-disable es/no-symbol -- required for testing */
1263
+ var NATIVE_SYMBOL = __webpack_require__(4495);
1264
+
1265
+ module.exports = NATIVE_SYMBOL &&
1266
+ !Symbol.sham &&
1267
+ typeof Symbol.iterator == 'symbol';
1268
+
1269
+
1270
+ /***/ }),
1271
+
1272
+ /***/ 7055:
1273
+ /***/ (function(module, __unused_webpack_exports, __webpack_require__) {
1274
+
1275
+ "use strict";
1276
+
1277
+ var uncurryThis = __webpack_require__(9504);
1278
+ var fails = __webpack_require__(9039);
1279
+ var classof = __webpack_require__(2195);
1280
+
1281
+ var $Object = Object;
1282
+ var split = uncurryThis(''.split);
1283
+
1284
+ // fallback for non-array-like ES3 and non-enumerable old V8 strings
1285
+ module.exports = fails(function () {
1286
+ // throws an error in rhino, see https://github.com/mozilla/rhino/issues/346
1287
+ // eslint-disable-next-line no-prototype-builtins -- safe
1288
+ return !$Object('z').propertyIsEnumerable(0);
1289
+ }) ? function (it) {
1290
+ return classof(it) === 'String' ? split(it, '') : $Object(it);
1291
+ } : $Object;
1292
+
1293
+
1294
+ /***/ }),
1295
+
1296
+ /***/ 7347:
1297
+ /***/ (function(__unused_webpack_module, exports, __webpack_require__) {
1298
+
1299
+ "use strict";
1300
+
1301
+ var DESCRIPTORS = __webpack_require__(3724);
1302
+ var call = __webpack_require__(9565);
1303
+ var propertyIsEnumerableModule = __webpack_require__(8773);
1304
+ var createPropertyDescriptor = __webpack_require__(6980);
1305
+ var toIndexedObject = __webpack_require__(5397);
1306
+ var toPropertyKey = __webpack_require__(6969);
1307
+ var hasOwn = __webpack_require__(9297);
1308
+ var IE8_DOM_DEFINE = __webpack_require__(5917);
1309
+
1310
+ // eslint-disable-next-line es/no-object-getownpropertydescriptor -- safe
1311
+ var $getOwnPropertyDescriptor = Object.getOwnPropertyDescriptor;
1312
+
1313
+ // `Object.getOwnPropertyDescriptor` method
1314
+ // https://tc39.es/ecma262/#sec-object.getownpropertydescriptor
1315
+ exports.f = DESCRIPTORS ? $getOwnPropertyDescriptor : function getOwnPropertyDescriptor(O, P) {
1316
+ O = toIndexedObject(O);
1317
+ P = toPropertyKey(P);
1318
+ if (IE8_DOM_DEFINE) try {
1319
+ return $getOwnPropertyDescriptor(O, P);
1320
+ } catch (error) { /* empty */ }
1321
+ if (hasOwn(O, P)) return createPropertyDescriptor(!call(propertyIsEnumerableModule.f, O, P), O[P]);
1322
+ };
1323
+
1324
+
1325
+ /***/ }),
1326
+
1327
+ /***/ 7629:
1328
+ /***/ (function(module, __unused_webpack_exports, __webpack_require__) {
1329
+
1330
+ "use strict";
1331
+
1332
+ var IS_PURE = __webpack_require__(6395);
1333
+ var globalThis = __webpack_require__(4576);
1334
+ var defineGlobalProperty = __webpack_require__(9433);
1335
+
1336
+ var SHARED = '__core-js_shared__';
1337
+ var store = module.exports = globalThis[SHARED] || defineGlobalProperty(SHARED, {});
1338
+
1339
+ (store.versions || (store.versions = [])).push({
1340
+ version: '3.48.0',
1341
+ mode: IS_PURE ? 'pure' : 'global',
1342
+ copyright: '© 2013–2025 Denis Pushkarev (zloirock.ru), 2025–2026 CoreJS Company (core-js.io). All rights reserved.',
1343
+ license: 'https://github.com/zloirock/core-js/blob/v3.48.0/LICENSE',
1344
+ source: 'https://github.com/zloirock/core-js'
1345
+ });
1346
+
1347
+
1348
+ /***/ }),
1349
+
1350
+ /***/ 7680:
1351
+ /***/ (function(module, __unused_webpack_exports, __webpack_require__) {
1352
+
1353
+ "use strict";
1354
+
1355
+ var uncurryThis = __webpack_require__(9504);
1356
+
1357
+ module.exports = uncurryThis([].slice);
1358
+
1359
+
1360
+ /***/ }),
1361
+
1362
+ /***/ 7740:
1363
+ /***/ (function(module, __unused_webpack_exports, __webpack_require__) {
1364
+
1365
+ "use strict";
1366
+
1367
+ var hasOwn = __webpack_require__(9297);
1368
+ var ownKeys = __webpack_require__(5031);
1369
+ var getOwnPropertyDescriptorModule = __webpack_require__(7347);
1370
+ var definePropertyModule = __webpack_require__(4913);
1371
+
1372
+ module.exports = function (target, source, exceptions) {
1373
+ var keys = ownKeys(source);
1374
+ var defineProperty = definePropertyModule.f;
1375
+ var getOwnPropertyDescriptor = getOwnPropertyDescriptorModule.f;
1376
+ for (var i = 0; i < keys.length; i++) {
1377
+ var key = keys[i];
1378
+ if (!hasOwn(target, key) && !(exceptions && hasOwn(exceptions, key))) {
1379
+ defineProperty(target, key, getOwnPropertyDescriptor(source, key));
1380
+ }
1381
+ }
1382
+ };
1383
+
1384
+
1385
+ /***/ }),
1386
+
1387
+ /***/ 7750:
1388
+ /***/ (function(module, __unused_webpack_exports, __webpack_require__) {
1389
+
1390
+ "use strict";
1391
+
1392
+ var isNullOrUndefined = __webpack_require__(4117);
1393
+
1394
+ var $TypeError = TypeError;
1395
+
1396
+ // `RequireObjectCoercible` abstract operation
1397
+ // https://tc39.es/ecma262/#sec-requireobjectcoercible
1398
+ module.exports = function (it) {
1399
+ if (isNullOrUndefined(it)) throw new $TypeError("Can't call method on " + it);
1400
+ return it;
1401
+ };
1402
+
1403
+
1404
+ /***/ }),
1405
+
1406
+ /***/ 7751:
1407
+ /***/ (function(module, __unused_webpack_exports, __webpack_require__) {
1408
+
1409
+ "use strict";
1410
+
1411
+ var globalThis = __webpack_require__(4576);
1412
+ var isCallable = __webpack_require__(4901);
1413
+
1414
+ var aFunction = function (argument) {
1415
+ return isCallable(argument) ? argument : undefined;
1416
+ };
1417
+
1418
+ module.exports = function (namespace, method) {
1419
+ return arguments.length < 2 ? aFunction(globalThis[namespace]) : globalThis[namespace] && globalThis[namespace][method];
1420
+ };
1421
+
1422
+
1423
+ /***/ }),
1424
+
1425
+ /***/ 7819:
1426
+ /***/ (function(module, __unused_webpack_exports, __webpack_require__) {
1427
+
1428
+ "use strict";
1429
+
1430
+ /* eslint-disable es/no-json -- safe */
1431
+ var fails = __webpack_require__(9039);
1432
+
1433
+ module.exports = !fails(function () {
1434
+ var unsafeInt = '9007199254740993';
1435
+ // eslint-disable-next-line es/no-json-rawjson -- feature detection
1436
+ var raw = JSON.rawJSON(unsafeInt);
1437
+ // eslint-disable-next-line es/no-json-israwjson -- feature detection
1438
+ return !JSON.isRawJSON(raw) || JSON.stringify(raw) !== unsafeInt;
1439
+ });
1440
+
1441
+
1442
+ /***/ }),
1443
+
1444
+ /***/ 8014:
1445
+ /***/ (function(module, __unused_webpack_exports, __webpack_require__) {
1446
+
1447
+ "use strict";
1448
+
1449
+ var toIntegerOrInfinity = __webpack_require__(1291);
1450
+
1451
+ var min = Math.min;
1452
+
1453
+ // `ToLength` abstract operation
1454
+ // https://tc39.es/ecma262/#sec-tolength
1455
+ module.exports = function (argument) {
1456
+ var len = toIntegerOrInfinity(argument);
1457
+ return len > 0 ? min(len, 0x1FFFFFFFFFFFFF) : 0; // 2 ** 53 - 1 == 9007199254740991
1458
+ };
1459
+
1460
+
1461
+ /***/ }),
1462
+
1463
+ /***/ 8227:
1464
+ /***/ (function(module, __unused_webpack_exports, __webpack_require__) {
1465
+
1466
+ "use strict";
1467
+
1468
+ var globalThis = __webpack_require__(4576);
1469
+ var shared = __webpack_require__(5745);
1470
+ var hasOwn = __webpack_require__(9297);
1471
+ var uid = __webpack_require__(3392);
1472
+ var NATIVE_SYMBOL = __webpack_require__(4495);
1473
+ var USE_SYMBOL_AS_UID = __webpack_require__(7040);
1474
+
1475
+ var Symbol = globalThis.Symbol;
1476
+ var WellKnownSymbolsStore = shared('wks');
1477
+ var createWellKnownSymbol = USE_SYMBOL_AS_UID ? Symbol['for'] || Symbol : Symbol && Symbol.withoutSetter || uid;
1478
+
1479
+ module.exports = function (name) {
1480
+ if (!hasOwn(WellKnownSymbolsStore, name)) {
1481
+ WellKnownSymbolsStore[name] = NATIVE_SYMBOL && hasOwn(Symbol, name)
1482
+ ? Symbol[name]
1483
+ : createWellKnownSymbol('Symbol.' + name);
1484
+ } return WellKnownSymbolsStore[name];
1485
+ };
1486
+
1487
+
1488
+ /***/ }),
1489
+
1490
+ /***/ 8235:
1491
+ /***/ (function(module, __unused_webpack_exports, __webpack_require__) {
1492
+
1493
+ "use strict";
1494
+
1495
+ var uncurryThis = __webpack_require__(9504);
1496
+ var hasOwn = __webpack_require__(9297);
1497
+
1498
+ var $SyntaxError = SyntaxError;
1499
+ var $parseInt = parseInt;
1500
+ var fromCharCode = String.fromCharCode;
1501
+ var at = uncurryThis(''.charAt);
1502
+ var slice = uncurryThis(''.slice);
1503
+ var exec = uncurryThis(/./.exec);
1504
+
1505
+ var codePoints = {
1506
+ '\\"': '"',
1507
+ '\\\\': '\\',
1508
+ '\\/': '/',
1509
+ '\\b': '\b',
1510
+ '\\f': '\f',
1511
+ '\\n': '\n',
1512
+ '\\r': '\r',
1513
+ '\\t': '\t'
1514
+ };
1515
+
1516
+ var IS_4_HEX_DIGITS = /^[\da-f]{4}$/i;
1517
+ // eslint-disable-next-line regexp/no-control-character -- safe
1518
+ var IS_C0_CONTROL_CODE = /^[\u0000-\u001F]$/;
1519
+
1520
+ module.exports = function (source, i) {
1521
+ var unterminated = true;
1522
+ var value = '';
1523
+ while (i < source.length) {
1524
+ var chr = at(source, i);
1525
+ if (chr === '\\') {
1526
+ var twoChars = slice(source, i, i + 2);
1527
+ if (hasOwn(codePoints, twoChars)) {
1528
+ value += codePoints[twoChars];
1529
+ i += 2;
1530
+ } else if (twoChars === '\\u') {
1531
+ i += 2;
1532
+ var fourHexDigits = slice(source, i, i + 4);
1533
+ if (!exec(IS_4_HEX_DIGITS, fourHexDigits)) throw new $SyntaxError('Bad Unicode escape at: ' + i);
1534
+ value += fromCharCode($parseInt(fourHexDigits, 16));
1535
+ i += 4;
1536
+ } else throw new $SyntaxError('Unknown escape sequence: "' + twoChars + '"');
1537
+ } else if (chr === '"') {
1538
+ unterminated = false;
1539
+ i++;
1540
+ break;
1541
+ } else {
1542
+ if (exec(IS_C0_CONTROL_CODE, chr)) throw new $SyntaxError('Bad control character in string literal at: ' + i);
1543
+ value += chr;
1544
+ i++;
1545
+ }
1546
+ }
1547
+ if (unterminated) throw new $SyntaxError('Unterminated string at: ' + i);
1548
+ return { value: value, end: i };
1549
+ };
1550
+
1551
+
1552
+ /***/ }),
1553
+
1554
+ /***/ 8335:
1555
+ /***/ (function(__unused_webpack_module, __unused_webpack_exports, __webpack_require__) {
1556
+
1557
+ "use strict";
1558
+
1559
+ // TODO: Remove from `core-js@4`
1560
+ __webpack_require__(9112);
1561
+
1562
+
1563
+ /***/ }),
1564
+
1565
+ /***/ 8480:
1566
+ /***/ (function(__unused_webpack_module, exports, __webpack_require__) {
1567
+
1568
+ "use strict";
1569
+
1570
+ var internalObjectKeys = __webpack_require__(1828);
1571
+ var enumBugKeys = __webpack_require__(8727);
1572
+
1573
+ var hiddenKeys = enumBugKeys.concat('length', 'prototype');
1574
+
1575
+ // `Object.getOwnPropertyNames` method
1576
+ // https://tc39.es/ecma262/#sec-object.getownpropertynames
1577
+ // eslint-disable-next-line es/no-object-getownpropertynames -- safe
1578
+ exports.f = Object.getOwnPropertyNames || function getOwnPropertyNames(O) {
1579
+ return internalObjectKeys(O, hiddenKeys);
1580
+ };
1581
+
1582
+
1583
+ /***/ }),
1584
+
1585
+ /***/ 8551:
1586
+ /***/ (function(module, __unused_webpack_exports, __webpack_require__) {
1587
+
1588
+ "use strict";
1589
+
1590
+ var isObject = __webpack_require__(34);
1591
+
1592
+ var $String = String;
1593
+ var $TypeError = TypeError;
1594
+
1595
+ // `Assert: Type(argument) is Object`
1596
+ module.exports = function (argument) {
1597
+ if (isObject(argument)) return argument;
1598
+ throw new $TypeError($String(argument) + ' is not an object');
1599
+ };
1600
+
1601
+
1602
+ /***/ }),
1603
+
1604
+ /***/ 8622:
1605
+ /***/ (function(module, __unused_webpack_exports, __webpack_require__) {
1606
+
1607
+ "use strict";
1608
+
1609
+ var globalThis = __webpack_require__(4576);
1610
+ var isCallable = __webpack_require__(4901);
1611
+
1612
+ var WeakMap = globalThis.WeakMap;
1613
+
1614
+ module.exports = isCallable(WeakMap) && /native code/.test(String(WeakMap));
1615
+
1616
+
1617
+ /***/ }),
1618
+
1619
+ /***/ 8686:
1620
+ /***/ (function(module, __unused_webpack_exports, __webpack_require__) {
1621
+
1622
+ "use strict";
1623
+
1624
+ var DESCRIPTORS = __webpack_require__(3724);
1625
+ var fails = __webpack_require__(9039);
1626
+
1627
+ // V8 ~ Chrome 36-
1628
+ // https://bugs.chromium.org/p/v8/issues/detail?id=3334
1629
+ module.exports = DESCRIPTORS && fails(function () {
1630
+ // eslint-disable-next-line es/no-object-defineproperty -- required for testing
1631
+ return Object.defineProperty(function () { /* empty */ }, 'prototype', {
1632
+ value: 42,
1633
+ writable: false
1634
+ }).prototype !== 42;
1635
+ });
1636
+
1637
+
1638
+ /***/ }),
1639
+
1640
+ /***/ 8727:
1641
+ /***/ (function(module) {
1642
+
1643
+ "use strict";
1644
+
1645
+ // IE8- don't enum bug keys
1646
+ module.exports = [
1647
+ 'constructor',
1648
+ 'hasOwnProperty',
1649
+ 'isPrototypeOf',
1650
+ 'propertyIsEnumerable',
1651
+ 'toLocaleString',
1652
+ 'toString',
1653
+ 'valueOf'
1654
+ ];
1655
+
1656
+
1657
+ /***/ }),
1658
+
1659
+ /***/ 8745:
1660
+ /***/ (function(module, __unused_webpack_exports, __webpack_require__) {
1661
+
1662
+ "use strict";
1663
+
1664
+ var NATIVE_BIND = __webpack_require__(616);
1665
+
1666
+ var FunctionPrototype = Function.prototype;
1667
+ var apply = FunctionPrototype.apply;
1668
+ var call = FunctionPrototype.call;
1669
+
1670
+ // eslint-disable-next-line es/no-function-prototype-bind, es/no-reflect -- safe
1671
+ module.exports = typeof Reflect == 'object' && Reflect.apply || (NATIVE_BIND ? call.bind(apply) : function () {
1672
+ return call.apply(apply, arguments);
1673
+ });
1674
+
1675
+
1676
+ /***/ }),
1677
+
1678
+ /***/ 8773:
1679
+ /***/ (function(__unused_webpack_module, exports) {
1680
+
1681
+ "use strict";
1682
+
1683
+ var $propertyIsEnumerable = {}.propertyIsEnumerable;
1684
+ // eslint-disable-next-line es/no-object-getownpropertydescriptor -- safe
1685
+ var getOwnPropertyDescriptor = Object.getOwnPropertyDescriptor;
1686
+
1687
+ // Nashorn ~ JDK8 bug
1688
+ var NASHORN_BUG = getOwnPropertyDescriptor && !$propertyIsEnumerable.call({ 1: 2 }, 1);
1689
+
1690
+ // `Object.prototype.propertyIsEnumerable` method implementation
1691
+ // https://tc39.es/ecma262/#sec-object.prototype.propertyisenumerable
1692
+ exports.f = NASHORN_BUG ? function propertyIsEnumerable(V) {
1693
+ var descriptor = getOwnPropertyDescriptor(this, V);
1694
+ return !!descriptor && descriptor.enumerable;
1695
+ } : $propertyIsEnumerable;
1696
+
1697
+
1698
+ /***/ }),
1699
+
1700
+ /***/ 8981:
1701
+ /***/ (function(module, __unused_webpack_exports, __webpack_require__) {
1702
+
1703
+ "use strict";
1704
+
1705
+ var requireObjectCoercible = __webpack_require__(7750);
1706
+
1707
+ var $Object = Object;
1708
+
1709
+ // `ToObject` abstract operation
1710
+ // https://tc39.es/ecma262/#sec-toobject
1711
+ module.exports = function (argument) {
1712
+ return $Object(requireObjectCoercible(argument));
1713
+ };
1714
+
1715
+
1716
+ /***/ }),
1717
+
1718
+ /***/ 9015:
15
1719
  /***/ (function(module) {
16
1720
 
17
1721
  // zwplayer tools
@@ -77,6 +1781,456 @@ const zwplayer_loadjs = function (id, url, cb) {
77
1781
  };
78
1782
  module.exports.l = zwplayer_loadjs;
79
1783
 
1784
+ /***/ }),
1785
+
1786
+ /***/ 9039:
1787
+ /***/ (function(module) {
1788
+
1789
+ "use strict";
1790
+
1791
+ module.exports = function (exec) {
1792
+ try {
1793
+ return !!exec();
1794
+ } catch (error) {
1795
+ return true;
1796
+ }
1797
+ };
1798
+
1799
+
1800
+ /***/ }),
1801
+
1802
+ /***/ 9112:
1803
+ /***/ (function(__unused_webpack_module, __unused_webpack_exports, __webpack_require__) {
1804
+
1805
+ "use strict";
1806
+
1807
+ var $ = __webpack_require__(6518);
1808
+ var DESCRIPTORS = __webpack_require__(3724);
1809
+ var globalThis = __webpack_require__(4576);
1810
+ var getBuiltIn = __webpack_require__(7751);
1811
+ var uncurryThis = __webpack_require__(9504);
1812
+ var call = __webpack_require__(9565);
1813
+ var isCallable = __webpack_require__(4901);
1814
+ var isObject = __webpack_require__(34);
1815
+ var isArray = __webpack_require__(4376);
1816
+ var hasOwn = __webpack_require__(9297);
1817
+ var toString = __webpack_require__(655);
1818
+ var lengthOfArrayLike = __webpack_require__(6198);
1819
+ var createProperty = __webpack_require__(4659);
1820
+ var fails = __webpack_require__(9039);
1821
+ var parseJSONString = __webpack_require__(8235);
1822
+ var NATIVE_SYMBOL = __webpack_require__(4495);
1823
+
1824
+ var JSON = globalThis.JSON;
1825
+ var Number = globalThis.Number;
1826
+ var SyntaxError = globalThis.SyntaxError;
1827
+ var nativeParse = JSON && JSON.parse;
1828
+ var enumerableOwnProperties = getBuiltIn('Object', 'keys');
1829
+ // eslint-disable-next-line es/no-object-getownpropertydescriptor -- safe
1830
+ var getOwnPropertyDescriptor = Object.getOwnPropertyDescriptor;
1831
+ var at = uncurryThis(''.charAt);
1832
+ var slice = uncurryThis(''.slice);
1833
+ var exec = uncurryThis(/./.exec);
1834
+ var push = uncurryThis([].push);
1835
+
1836
+ var IS_DIGIT = /^\d$/;
1837
+ var IS_NON_ZERO_DIGIT = /^[1-9]$/;
1838
+ var IS_NUMBER_START = /^[\d-]$/;
1839
+ var IS_WHITESPACE = /^[\t\n\r ]$/;
1840
+
1841
+ var PRIMITIVE = 0;
1842
+ var OBJECT = 1;
1843
+
1844
+ var $parse = function (source, reviver) {
1845
+ source = toString(source);
1846
+ var context = new Context(source, 0, '');
1847
+ var root = context.parse();
1848
+ var value = root.value;
1849
+ var endIndex = context.skip(IS_WHITESPACE, root.end);
1850
+ if (endIndex < source.length) {
1851
+ throw new SyntaxError('Unexpected extra character: "' + at(source, endIndex) + '" after the parsed data at: ' + endIndex);
1852
+ }
1853
+ return isCallable(reviver) ? internalize({ '': value }, '', reviver, root) : value;
1854
+ };
1855
+
1856
+ var internalize = function (holder, name, reviver, node) {
1857
+ var val = holder[name];
1858
+ var unmodified = node && val === node.value;
1859
+ var context = unmodified && typeof node.source == 'string' ? { source: node.source } : {};
1860
+ var elementRecordsLen, keys, len, i, P;
1861
+ if (isObject(val)) {
1862
+ var nodeIsArray = isArray(val);
1863
+ var nodes = unmodified ? node.nodes : nodeIsArray ? [] : {};
1864
+ if (nodeIsArray) {
1865
+ elementRecordsLen = nodes.length;
1866
+ len = lengthOfArrayLike(val);
1867
+ for (i = 0; i < len; i++) {
1868
+ internalizeProperty(val, i, internalize(val, '' + i, reviver, i < elementRecordsLen ? nodes[i] : undefined));
1869
+ }
1870
+ } else {
1871
+ keys = enumerableOwnProperties(val);
1872
+ len = lengthOfArrayLike(keys);
1873
+ for (i = 0; i < len; i++) {
1874
+ P = keys[i];
1875
+ internalizeProperty(val, P, internalize(val, P, reviver, hasOwn(nodes, P) ? nodes[P] : undefined));
1876
+ }
1877
+ }
1878
+ }
1879
+ return call(reviver, holder, name, val, context);
1880
+ };
1881
+
1882
+ var internalizeProperty = function (object, key, value) {
1883
+ if (DESCRIPTORS) {
1884
+ var descriptor = getOwnPropertyDescriptor(object, key);
1885
+ if (descriptor && !descriptor.configurable) return;
1886
+ }
1887
+ if (value === undefined) delete object[key];
1888
+ else createProperty(object, key, value);
1889
+ };
1890
+
1891
+ var Node = function (value, end, source, nodes) {
1892
+ this.value = value;
1893
+ this.end = end;
1894
+ this.source = source;
1895
+ this.nodes = nodes;
1896
+ };
1897
+
1898
+ var Context = function (source, index) {
1899
+ this.source = source;
1900
+ this.index = index;
1901
+ };
1902
+
1903
+ // https://www.json.org/json-en.html
1904
+ Context.prototype = {
1905
+ fork: function (nextIndex) {
1906
+ return new Context(this.source, nextIndex);
1907
+ },
1908
+ parse: function () {
1909
+ var source = this.source;
1910
+ var i = this.skip(IS_WHITESPACE, this.index);
1911
+ var fork = this.fork(i);
1912
+ var chr = at(source, i);
1913
+ if (exec(IS_NUMBER_START, chr)) return fork.number();
1914
+ switch (chr) {
1915
+ case '{':
1916
+ return fork.object();
1917
+ case '[':
1918
+ return fork.array();
1919
+ case '"':
1920
+ return fork.string();
1921
+ case 't':
1922
+ return fork.keyword(true);
1923
+ case 'f':
1924
+ return fork.keyword(false);
1925
+ case 'n':
1926
+ return fork.keyword(null);
1927
+ } throw new SyntaxError('Unexpected character: "' + chr + '" at: ' + i);
1928
+ },
1929
+ node: function (type, value, start, end, nodes) {
1930
+ return new Node(value, end, type ? null : slice(this.source, start, end), nodes);
1931
+ },
1932
+ object: function () {
1933
+ var source = this.source;
1934
+ var i = this.index + 1;
1935
+ var expectKeypair = false;
1936
+ var object = {};
1937
+ var nodes = {};
1938
+ while (i < source.length) {
1939
+ i = this.until(['"', '}'], i);
1940
+ if (at(source, i) === '}' && !expectKeypair) {
1941
+ i++;
1942
+ break;
1943
+ }
1944
+ // Parsing the key
1945
+ var result = this.fork(i).string();
1946
+ var key = result.value;
1947
+ i = result.end;
1948
+ i = this.until([':'], i) + 1;
1949
+ // Parsing value
1950
+ i = this.skip(IS_WHITESPACE, i);
1951
+ result = this.fork(i).parse();
1952
+ createProperty(nodes, key, result);
1953
+ createProperty(object, key, result.value);
1954
+ i = this.until([',', '}'], result.end);
1955
+ var chr = at(source, i);
1956
+ if (chr === ',') {
1957
+ expectKeypair = true;
1958
+ i++;
1959
+ } else if (chr === '}') {
1960
+ i++;
1961
+ break;
1962
+ }
1963
+ }
1964
+ return this.node(OBJECT, object, this.index, i, nodes);
1965
+ },
1966
+ array: function () {
1967
+ var source = this.source;
1968
+ var i = this.index + 1;
1969
+ var expectElement = false;
1970
+ var array = [];
1971
+ var nodes = [];
1972
+ while (i < source.length) {
1973
+ i = this.skip(IS_WHITESPACE, i);
1974
+ if (at(source, i) === ']' && !expectElement) {
1975
+ i++;
1976
+ break;
1977
+ }
1978
+ var result = this.fork(i).parse();
1979
+ push(nodes, result);
1980
+ push(array, result.value);
1981
+ i = this.until([',', ']'], result.end);
1982
+ if (at(source, i) === ',') {
1983
+ expectElement = true;
1984
+ i++;
1985
+ } else if (at(source, i) === ']') {
1986
+ i++;
1987
+ break;
1988
+ }
1989
+ }
1990
+ return this.node(OBJECT, array, this.index, i, nodes);
1991
+ },
1992
+ string: function () {
1993
+ var index = this.index;
1994
+ var parsed = parseJSONString(this.source, this.index + 1);
1995
+ return this.node(PRIMITIVE, parsed.value, index, parsed.end);
1996
+ },
1997
+ number: function () {
1998
+ var source = this.source;
1999
+ var startIndex = this.index;
2000
+ var i = startIndex;
2001
+ if (at(source, i) === '-') i++;
2002
+ if (at(source, i) === '0') i++;
2003
+ else if (exec(IS_NON_ZERO_DIGIT, at(source, i))) i = this.skip(IS_DIGIT, i + 1);
2004
+ else throw new SyntaxError('Failed to parse number at: ' + i);
2005
+ if (at(source, i) === '.') i = this.skip(IS_DIGIT, i + 1);
2006
+ if (at(source, i) === 'e' || at(source, i) === 'E') {
2007
+ i++;
2008
+ if (at(source, i) === '+' || at(source, i) === '-') i++;
2009
+ var exponentStartIndex = i;
2010
+ i = this.skip(IS_DIGIT, i);
2011
+ if (exponentStartIndex === i) throw new SyntaxError("Failed to parse number's exponent value at: " + i);
2012
+ }
2013
+ return this.node(PRIMITIVE, Number(slice(source, startIndex, i)), startIndex, i);
2014
+ },
2015
+ keyword: function (value) {
2016
+ var keyword = '' + value;
2017
+ var index = this.index;
2018
+ var endIndex = index + keyword.length;
2019
+ if (slice(this.source, index, endIndex) !== keyword) throw new SyntaxError('Failed to parse value at: ' + index);
2020
+ return this.node(PRIMITIVE, value, index, endIndex);
2021
+ },
2022
+ skip: function (regex, i) {
2023
+ var source = this.source;
2024
+ for (; i < source.length; i++) if (!exec(regex, at(source, i))) break;
2025
+ return i;
2026
+ },
2027
+ until: function (array, i) {
2028
+ i = this.skip(IS_WHITESPACE, i);
2029
+ var chr = at(this.source, i);
2030
+ for (var j = 0; j < array.length; j++) if (array[j] === chr) return i;
2031
+ throw new SyntaxError('Unexpected character: "' + chr + '" at: ' + i);
2032
+ }
2033
+ };
2034
+
2035
+ var NO_SOURCE_SUPPORT = fails(function () {
2036
+ var unsafeInt = '9007199254740993';
2037
+ var source;
2038
+ nativeParse(unsafeInt, function (key, value, context) {
2039
+ source = context.source;
2040
+ });
2041
+ return source !== unsafeInt;
2042
+ });
2043
+
2044
+ var PROPER_BASE_PARSE = NATIVE_SYMBOL && !fails(function () {
2045
+ // Safari 9 bug
2046
+ return 1 / nativeParse('-0 \t') !== -Infinity;
2047
+ });
2048
+
2049
+ // `JSON.parse` method
2050
+ // https://tc39.es/ecma262/#sec-json.parse
2051
+ // https://github.com/tc39/proposal-json-parse-with-source
2052
+ $({ target: 'JSON', stat: true, forced: NO_SOURCE_SUPPORT }, {
2053
+ parse: function parse(text, reviver) {
2054
+ return PROPER_BASE_PARSE && !isCallable(reviver) ? nativeParse(text) : $parse(text, reviver);
2055
+ }
2056
+ });
2057
+
2058
+
2059
+ /***/ }),
2060
+
2061
+ /***/ 9297:
2062
+ /***/ (function(module, __unused_webpack_exports, __webpack_require__) {
2063
+
2064
+ "use strict";
2065
+
2066
+ var uncurryThis = __webpack_require__(9504);
2067
+ var toObject = __webpack_require__(8981);
2068
+
2069
+ var hasOwnProperty = uncurryThis({}.hasOwnProperty);
2070
+
2071
+ // `HasOwnProperty` abstract operation
2072
+ // https://tc39.es/ecma262/#sec-hasownproperty
2073
+ // eslint-disable-next-line es/no-object-hasown -- safe
2074
+ module.exports = Object.hasOwn || function hasOwn(it, key) {
2075
+ return hasOwnProperty(toObject(it), key);
2076
+ };
2077
+
2078
+
2079
+ /***/ }),
2080
+
2081
+ /***/ 9306:
2082
+ /***/ (function(module, __unused_webpack_exports, __webpack_require__) {
2083
+
2084
+ "use strict";
2085
+
2086
+ var isCallable = __webpack_require__(4901);
2087
+ var tryToString = __webpack_require__(6823);
2088
+
2089
+ var $TypeError = TypeError;
2090
+
2091
+ // `Assert: IsCallable(argument) is true`
2092
+ module.exports = function (argument) {
2093
+ if (isCallable(argument)) return argument;
2094
+ throw new $TypeError(tryToString(argument) + ' is not a function');
2095
+ };
2096
+
2097
+
2098
+ /***/ }),
2099
+
2100
+ /***/ 9433:
2101
+ /***/ (function(module, __unused_webpack_exports, __webpack_require__) {
2102
+
2103
+ "use strict";
2104
+
2105
+ var globalThis = __webpack_require__(4576);
2106
+
2107
+ // eslint-disable-next-line es/no-object-defineproperty -- safe
2108
+ var defineProperty = Object.defineProperty;
2109
+
2110
+ module.exports = function (key, value) {
2111
+ try {
2112
+ defineProperty(globalThis, key, { value: value, configurable: true, writable: true });
2113
+ } catch (error) {
2114
+ globalThis[key] = value;
2115
+ } return value;
2116
+ };
2117
+
2118
+
2119
+ /***/ }),
2120
+
2121
+ /***/ 9504:
2122
+ /***/ (function(module, __unused_webpack_exports, __webpack_require__) {
2123
+
2124
+ "use strict";
2125
+
2126
+ var NATIVE_BIND = __webpack_require__(616);
2127
+
2128
+ var FunctionPrototype = Function.prototype;
2129
+ var call = FunctionPrototype.call;
2130
+ // eslint-disable-next-line es/no-function-prototype-bind -- safe
2131
+ var uncurryThisWithBind = NATIVE_BIND && FunctionPrototype.bind.bind(call, call);
2132
+
2133
+ module.exports = NATIVE_BIND ? uncurryThisWithBind : function (fn) {
2134
+ return function () {
2135
+ return call.apply(fn, arguments);
2136
+ };
2137
+ };
2138
+
2139
+
2140
+ /***/ }),
2141
+
2142
+ /***/ 9519:
2143
+ /***/ (function(module, __unused_webpack_exports, __webpack_require__) {
2144
+
2145
+ "use strict";
2146
+
2147
+ var globalThis = __webpack_require__(4576);
2148
+ var userAgent = __webpack_require__(2839);
2149
+
2150
+ var process = globalThis.process;
2151
+ var Deno = globalThis.Deno;
2152
+ var versions = process && process.versions || Deno && Deno.version;
2153
+ var v8 = versions && versions.v8;
2154
+ var match, version;
2155
+
2156
+ if (v8) {
2157
+ match = v8.split('.');
2158
+ // in old Chrome, versions of V8 isn't V8 = Chrome / 10
2159
+ // but their correct versions are not interesting for us
2160
+ version = match[0] > 0 && match[0] < 4 ? 1 : +(match[0] + match[1]);
2161
+ }
2162
+
2163
+ // BrowserFS NodeJS `process` polyfill incorrectly set `.v8` to `0.0`
2164
+ // so check `userAgent` even if `.v8` exists, but 0
2165
+ if (!version && userAgent) {
2166
+ match = userAgent.match(/Edge\/(\d+)/);
2167
+ if (!match || match[1] >= 74) {
2168
+ match = userAgent.match(/Chrome\/(\d+)/);
2169
+ if (match) version = +match[1];
2170
+ }
2171
+ }
2172
+
2173
+ module.exports = version;
2174
+
2175
+
2176
+ /***/ }),
2177
+
2178
+ /***/ 9565:
2179
+ /***/ (function(module, __unused_webpack_exports, __webpack_require__) {
2180
+
2181
+ "use strict";
2182
+
2183
+ var NATIVE_BIND = __webpack_require__(616);
2184
+
2185
+ var call = Function.prototype.call;
2186
+ // eslint-disable-next-line es/no-function-prototype-bind -- safe
2187
+ module.exports = NATIVE_BIND ? call.bind(call) : function () {
2188
+ return call.apply(call, arguments);
2189
+ };
2190
+
2191
+
2192
+ /***/ }),
2193
+
2194
+ /***/ 9617:
2195
+ /***/ (function(module, __unused_webpack_exports, __webpack_require__) {
2196
+
2197
+ "use strict";
2198
+
2199
+ var toIndexedObject = __webpack_require__(5397);
2200
+ var toAbsoluteIndex = __webpack_require__(5610);
2201
+ var lengthOfArrayLike = __webpack_require__(6198);
2202
+
2203
+ // `Array.prototype.{ indexOf, includes }` methods implementation
2204
+ var createMethod = function (IS_INCLUDES) {
2205
+ return function ($this, el, fromIndex) {
2206
+ var O = toIndexedObject($this);
2207
+ var length = lengthOfArrayLike(O);
2208
+ if (length === 0) return !IS_INCLUDES && -1;
2209
+ var index = toAbsoluteIndex(fromIndex, length);
2210
+ var value;
2211
+ // Array#includes uses SameValueZero equality algorithm
2212
+ // eslint-disable-next-line no-self-compare -- NaN check
2213
+ if (IS_INCLUDES && el !== el) while (length > index) {
2214
+ value = O[index++];
2215
+ // eslint-disable-next-line no-self-compare -- NaN check
2216
+ if (value !== value) return true;
2217
+ // Array#indexOf ignores holes, Array#includes - not
2218
+ } else for (;length > index; index++) {
2219
+ if ((IS_INCLUDES || index in O) && O[index] === el) return IS_INCLUDES || index || 0;
2220
+ } return !IS_INCLUDES && -1;
2221
+ };
2222
+ };
2223
+
2224
+ module.exports = {
2225
+ // `Array.prototype.includes` method
2226
+ // https://tc39.es/ecma262/#sec-array.prototype.includes
2227
+ includes: createMethod(true),
2228
+ // `Array.prototype.indexOf` method
2229
+ // https://tc39.es/ecma262/#sec-array.prototype.indexof
2230
+ indexOf: createMethod(false)
2231
+ };
2232
+
2233
+
80
2234
  /***/ })
81
2235
 
82
2236
  /******/ });
@@ -99,7 +2253,7 @@ module.exports.l = zwplayer_loadjs;
99
2253
  /******/ };
100
2254
  /******/
101
2255
  /******/ // Execute the module function
102
- /******/ __webpack_modules__[moduleId](module, module.exports, __webpack_require__);
2256
+ /******/ __webpack_modules__[moduleId].call(module.exports, module, module.exports, __webpack_require__);
103
2257
  /******/
104
2258
  /******/ // Return the exports of the module
105
2259
  /******/ return module.exports;
@@ -118,6 +2272,18 @@ module.exports.l = zwplayer_loadjs;
118
2272
  /******/ };
119
2273
  /******/ }();
120
2274
  /******/
2275
+ /******/ /* webpack/runtime/global */
2276
+ /******/ !function() {
2277
+ /******/ __webpack_require__.g = (function() {
2278
+ /******/ if (typeof globalThis === 'object') return globalThis;
2279
+ /******/ try {
2280
+ /******/ return this || new Function('return this')();
2281
+ /******/ } catch (e) {
2282
+ /******/ if (typeof window === 'object') return window;
2283
+ /******/ }
2284
+ /******/ })();
2285
+ /******/ }();
2286
+ /******/
121
2287
  /******/ /* webpack/runtime/hasOwnProperty shorthand */
122
2288
  /******/ !function() {
123
2289
  /******/ __webpack_require__.o = function(obj, prop) { return Object.prototype.hasOwnProperty.call(obj, prop); }
@@ -154,7 +2320,7 @@ __webpack_require__.d(__webpack_exports__, {
154
2320
  zwplayer: function() { return /* reexport */ vueplayer; }
155
2321
  });
156
2322
 
157
- ;// ./node_modules/.pnpm/@vue+cli-service@5.0.9_@vue_f4a29e173fddc84262ec7621c4e0ef6c/node_modules/@vue/cli-service/lib/commands/build/setPublicPath.js
2323
+ ;// ./node_modules/@vue/cli-service/lib/commands/build/setPublicPath.js
158
2324
  /* eslint-disable no-var */
159
2325
  // This file is imported into lib/wc client bundles.
160
2326
 
@@ -172,9 +2338,15 @@ if (typeof window !== 'undefined') {
172
2338
  // Indicate to webpack that this file can be concatenated
173
2339
  /* harmony default export */ var setPublicPath = (null);
174
2340
 
2341
+ // EXTERNAL MODULE: ./node_modules/core-js/modules/es.json.stringify.js
2342
+ var es_json_stringify = __webpack_require__(3110);
2343
+ // EXTERNAL MODULE: ./node_modules/core-js/modules/esnext.json.parse.js
2344
+ var esnext_json_parse = __webpack_require__(8335);
175
2345
  // EXTERNAL MODULE: ./sources/vueplayer/src/loadjs.js
176
- var loadjs = __webpack_require__(790);
177
- ;// ./node_modules/.pnpm/thread-loader@3.0.4_webpack@5.101.3/node_modules/thread-loader/dist/cjs.js!./node_modules/.pnpm/babel-loader@8.4.1_@babel+core@7.28.3_webpack@5.101.3/node_modules/babel-loader/lib/index.js??clonedRuleSet-82.use[1]!./node_modules/.pnpm/vue-loader@15.11.1_@vue+com_7c7793d1852df33c99c082426f2edbd5/node_modules/vue-loader/lib/index.js??vue-loader-options!./sources/vueplayer/src/main.vue?vue&type=script&lang=js
2346
+ var loadjs = __webpack_require__(9015);
2347
+ ;// ./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!./sources/vueplayer/src/main.vue?vue&type=script&lang=js
2348
+
2349
+
178
2350
  // import { h } from 'vue'
179
2351
 
180
2352
  const zwplayer_js_def = 'zwplayer/zwplayer.js?v=3.6';
@@ -203,6 +2375,12 @@ const availabe_props = {
203
2375
  disableVolumeControl: 'boolean',
204
2376
  lostFocusPause: 'boolean',
205
2377
  autoSmallWindow: 'boolean',
2378
+ localPlayback: 'boolean',
2379
+ recordButton: 'boolean',
2380
+ segmentButton: 'boolean',
2381
+ disableMutedConfirm: 'boolean',
2382
+ keepAudioWindow: 'boolean',
2383
+ lang: 'string',
206
2384
  thumbnails: 'object',
207
2385
  sendDanmu: 'function',
208
2386
  danmuBarId: 'string',
@@ -245,7 +2423,7 @@ const availabe_props = {
245
2423
  default: true
246
2424
  }
247
2425
  },
248
- emits: ['oneterror', 'onmediaevent', 'onready'],
2426
+ emits: ['oneterror', 'onmediaevent', 'onready', 'onFileSelected', 'onFileLoaded'],
249
2427
  methods: {
250
2428
  play(url, isLive, useOldFlv) {
251
2429
  let vm = this;
@@ -403,7 +2581,7 @@ const availabe_props = {
403
2581
  },
404
2582
  mounted() {
405
2583
  let vm = this;
406
- // console.log('mounted');
2584
+ //console.log('mounted main');
407
2585
  let zwplayer_js;
408
2586
  if (vm.zwplayerlib) zwplayer_js = vm.zwplayerlib;else zwplayer_js = zwplayer_js_def;
409
2587
  vm.rootElm = document.getElementById(vm.playerid);
@@ -416,7 +2594,7 @@ const availabe_props = {
416
2594
  (0,loadjs/* zwplayer_loadjs */.l)('zwplayer-core', zwplayer_js, function (jsid) {
417
2595
  let url = '';
418
2596
  if (!jsid) {
419
- console.log('zwplayer_loadjs failed!');
2597
+ //console.log('zwplayer_loadjs failed!');
420
2598
  }
421
2599
  if (vm.murl) url = vm.murl;else if (vm.videoprop && typeof vm.videoprop.url !== 'undefined') url = vm.videoprop.url;
422
2600
  let videostyle = "width:100%;height:100%;";
@@ -437,6 +2615,12 @@ const availabe_props = {
437
2615
  vm.$emit('onnetclose', this);
438
2616
  return true;
439
2617
  },
2618
+ onFileSelected: function (event) {
2619
+ vm.$emit('onFileSelected', event, this);
2620
+ },
2621
+ onFileLoaded: function (event) {
2622
+ vm.$emit('onFileLoaded', event, this);
2623
+ },
440
2624
  onneterror: function () {
441
2625
  vm.$emit('onneterror', this);
442
2626
  },
@@ -462,6 +2646,7 @@ const availabe_props = {
462
2646
  else params[prop] = vm.$attrs[prop];
463
2647
  }
464
2648
  }
2649
+ //console.log(params)
465
2650
  vm.zwplayer = new window.ZWPlayer(params);
466
2651
  if (params.danmuBarId) {
467
2652
  vm.zwplayer.buildDanmuControlbar(params.danmuBarId, 'vue-zwp-danmubar');
@@ -489,7 +2674,7 @@ const availabe_props = {
489
2674
  });
490
2675
  ;// ./sources/vueplayer/src/main.vue?vue&type=script&lang=js
491
2676
  /* harmony default export */ var src_mainvue_type_script_lang_js = (mainvue_type_script_lang_js);
492
- ;// ./node_modules/.pnpm/vue-loader@15.11.1_@vue+com_7c7793d1852df33c99c082426f2edbd5/node_modules/vue-loader/lib/runtime/componentNormalizer.js
2677
+ ;// ./node_modules/@vue/vue-loader-v15/lib/runtime/componentNormalizer.js
493
2678
  /* globals __VUE_SSR_CONTEXT__ */
494
2679
 
495
2680
  // IMPORTANT: Do NOT use ES2015 features in this file (except for modules).
@@ -726,6 +2911,13 @@ Player.prototype = {
726
2911
  vm.zwplayer.addSubtitle(subtitleUrl, pos, title);
727
2912
  }
728
2913
  },
2914
+ loadSubtitle(subtitleUrl, pos, title) {
2915
+ //console.log('loadSubtitle')
2916
+ let vm = this;
2917
+ if (vm.zwplayer) {
2918
+ vm.zwplayer.loadSubtitle(subtitleUrl, pos, title);
2919
+ }
2920
+ },
729
2921
  removeSubtitle() {
730
2922
  let vm = this;
731
2923
  if (vm.zwplayer) {
@@ -779,7 +2971,7 @@ Player.prototype = {
779
2971
  };
780
2972
 
781
2973
  /* harmony default export */ var sources = (ZwModule);
782
- ;// ./node_modules/.pnpm/@vue+cli-service@5.0.9_@vue_f4a29e173fddc84262ec7621c4e0ef6c/node_modules/@vue/cli-service/lib/commands/build/entry-lib.js
2974
+ ;// ./node_modules/@vue/cli-service/lib/commands/build/entry-lib.js
783
2975
 
784
2976
 
785
2977
  /* harmony default export */ var entry_lib = (sources);