@mapgis/webclient-vue-cesium 16.6.1 → 16.8.1

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.
@@ -108,7 +108,7 @@ var DESCRIPTORS = __webpack_require__("83ab");
108
108
  var call = __webpack_require__("c65b");
109
109
  var propertyIsEnumerableModule = __webpack_require__("d1e7");
110
110
  var createPropertyDescriptor = __webpack_require__("5c6c");
111
- var toIndexedObject = __webpack_require__("fc6a");
111
+ var toIndexedObject = __webpack_require__("fc6a9");
112
112
  var toPropertyKey = __webpack_require__("a04b");
113
113
  var hasOwn = __webpack_require__("1a2db");
114
114
  var IE8_DOM_DEFINE = __webpack_require__("0cfb");
@@ -6948,31 +6948,25 @@ module.exports = fails(function () {
6948
6948
 
6949
6949
  "use strict";
6950
6950
 
6951
- var apply = __webpack_require__("2ba4");
6952
6951
  var call = __webpack_require__("c65b");
6953
6952
  var uncurryThis = __webpack_require__("e330");
6954
6953
  var fixRegExpWellKnownSymbolLogic = __webpack_require__("d784");
6955
6954
  var anObject = __webpack_require__("825a");
6956
6955
  var isNullOrUndefined = __webpack_require__("7234");
6957
- var isRegExp = __webpack_require__("44e7");
6958
6956
  var requireObjectCoercible = __webpack_require__("1d80");
6959
6957
  var speciesConstructor = __webpack_require__("4840");
6960
6958
  var advanceStringIndex = __webpack_require__("8aa5");
6961
6959
  var toLength = __webpack_require__("50c4");
6962
6960
  var toString = __webpack_require__("577e");
6963
6961
  var getMethod = __webpack_require__("dc4a");
6964
- var arraySlice = __webpack_require__("4dae");
6965
- var callRegExpExec = __webpack_require__("14c3");
6966
- var regexpExec = __webpack_require__("9263");
6962
+ var regExpExec = __webpack_require__("14c3");
6967
6963
  var stickyHelpers = __webpack_require__("9f7f");
6968
6964
  var fails = __webpack_require__("d039");
6969
6965
 
6970
6966
  var UNSUPPORTED_Y = stickyHelpers.UNSUPPORTED_Y;
6971
6967
  var MAX_UINT32 = 0xFFFFFFFF;
6972
6968
  var min = Math.min;
6973
- var $push = [].push;
6974
- var exec = uncurryThis(/./.exec);
6975
- var push = uncurryThis($push);
6969
+ var push = uncurryThis([].push);
6976
6970
  var stringSlice = uncurryThis(''.slice);
6977
6971
 
6978
6972
  // Chrome 51 has a buggy "split" implementation when RegExp#exec !== nativeExec
@@ -6986,60 +6980,20 @@ var SPLIT_WORKS_WITH_OVERWRITTEN_EXEC = !fails(function () {
6986
6980
  return result.length !== 2 || result[0] !== 'a' || result[1] !== 'b';
6987
6981
  });
6988
6982
 
6983
+ var BUGGY = 'abbc'.split(/(b)*/)[1] === 'c' ||
6984
+ // eslint-disable-next-line regexp/no-empty-group -- required for testing
6985
+ 'test'.split(/(?:)/, -1).length !== 4 ||
6986
+ 'ab'.split(/(?:ab)*/).length !== 2 ||
6987
+ '.'.split(/(.?)(.?)/).length !== 4 ||
6988
+ // eslint-disable-next-line regexp/no-empty-capturing-group, regexp/no-empty-group -- required for testing
6989
+ '.'.split(/()()/).length > 1 ||
6990
+ ''.split(/.?/).length;
6991
+
6989
6992
  // @@split logic
6990
6993
  fixRegExpWellKnownSymbolLogic('split', function (SPLIT, nativeSplit, maybeCallNative) {
6991
- var internalSplit;
6992
- if (
6993
- 'abbc'.split(/(b)*/)[1] === 'c' ||
6994
- // eslint-disable-next-line regexp/no-empty-group -- required for testing
6995
- 'test'.split(/(?:)/, -1).length !== 4 ||
6996
- 'ab'.split(/(?:ab)*/).length !== 2 ||
6997
- '.'.split(/(.?)(.?)/).length !== 4 ||
6998
- // eslint-disable-next-line regexp/no-empty-capturing-group, regexp/no-empty-group -- required for testing
6999
- '.'.split(/()()/).length > 1 ||
7000
- ''.split(/.?/).length
7001
- ) {
7002
- // based on es5-shim implementation, need to rework it
7003
- internalSplit = function (separator, limit) {
7004
- var string = toString(requireObjectCoercible(this));
7005
- var lim = limit === undefined ? MAX_UINT32 : limit >>> 0;
7006
- if (lim === 0) return [];
7007
- if (separator === undefined) return [string];
7008
- // If `separator` is not a regex, use native split
7009
- if (!isRegExp(separator)) {
7010
- return call(nativeSplit, string, separator, lim);
7011
- }
7012
- var output = [];
7013
- var flags = (separator.ignoreCase ? 'i' : '') +
7014
- (separator.multiline ? 'm' : '') +
7015
- (separator.unicode ? 'u' : '') +
7016
- (separator.sticky ? 'y' : '');
7017
- var lastLastIndex = 0;
7018
- // Make `global` and avoid `lastIndex` issues by working with a copy
7019
- var separatorCopy = new RegExp(separator.source, flags + 'g');
7020
- var match, lastIndex, lastLength;
7021
- while (match = call(regexpExec, separatorCopy, string)) {
7022
- lastIndex = separatorCopy.lastIndex;
7023
- if (lastIndex > lastLastIndex) {
7024
- push(output, stringSlice(string, lastLastIndex, match.index));
7025
- if (match.length > 1 && match.index < string.length) apply($push, output, arraySlice(match, 1));
7026
- lastLength = match[0].length;
7027
- lastLastIndex = lastIndex;
7028
- if (output.length >= lim) break;
7029
- }
7030
- if (separatorCopy.lastIndex === match.index) separatorCopy.lastIndex++; // Avoid an infinite loop
7031
- }
7032
- if (lastLastIndex === string.length) {
7033
- if (lastLength || !exec(separatorCopy, '')) push(output, '');
7034
- } else push(output, stringSlice(string, lastLastIndex));
7035
- return output.length > lim ? arraySlice(output, 0, lim) : output;
7036
- };
7037
- // Chakra, V8
7038
- } else if ('0'.split(undefined, 0).length) {
7039
- internalSplit = function (separator, limit) {
7040
- return separator === undefined && limit === 0 ? [] : call(nativeSplit, this, separator, limit);
7041
- };
7042
- } else internalSplit = nativeSplit;
6994
+ var internalSplit = '0'.split(undefined, 0).length ? function (separator, limit) {
6995
+ return separator === undefined && limit === 0 ? [] : call(nativeSplit, this, separator, limit);
6996
+ } : nativeSplit;
7043
6997
 
7044
6998
  return [
7045
6999
  // `String.prototype.split` method
@@ -7059,30 +7013,30 @@ fixRegExpWellKnownSymbolLogic('split', function (SPLIT, nativeSplit, maybeCallNa
7059
7013
  function (string, limit) {
7060
7014
  var rx = anObject(this);
7061
7015
  var S = toString(string);
7062
- var res = maybeCallNative(internalSplit, rx, S, limit, internalSplit !== nativeSplit);
7063
7016
 
7064
- if (res.done) return res.value;
7017
+ if (!BUGGY) {
7018
+ var res = maybeCallNative(internalSplit, rx, S, limit, internalSplit !== nativeSplit);
7019
+ if (res.done) return res.value;
7020
+ }
7065
7021
 
7066
7022
  var C = speciesConstructor(rx, RegExp);
7067
-
7068
7023
  var unicodeMatching = rx.unicode;
7069
7024
  var flags = (rx.ignoreCase ? 'i' : '') +
7070
7025
  (rx.multiline ? 'm' : '') +
7071
7026
  (rx.unicode ? 'u' : '') +
7072
7027
  (UNSUPPORTED_Y ? 'g' : 'y');
7073
-
7074
7028
  // ^(? + rx + ) is needed, in combination with some S slicing, to
7075
7029
  // simulate the 'y' flag.
7076
7030
  var splitter = new C(UNSUPPORTED_Y ? '^(?:' + rx.source + ')' : rx, flags);
7077
7031
  var lim = limit === undefined ? MAX_UINT32 : limit >>> 0;
7078
7032
  if (lim === 0) return [];
7079
- if (S.length === 0) return callRegExpExec(splitter, S) === null ? [S] : [];
7033
+ if (S.length === 0) return regExpExec(splitter, S) === null ? [S] : [];
7080
7034
  var p = 0;
7081
7035
  var q = 0;
7082
7036
  var A = [];
7083
7037
  while (q < S.length) {
7084
7038
  splitter.lastIndex = UNSUPPORTED_Y ? 0 : q;
7085
- var z = callRegExpExec(splitter, UNSUPPORTED_Y ? stringSlice(S, q) : S);
7039
+ var z = regExpExec(splitter, UNSUPPORTED_Y ? stringSlice(S, q) : S);
7086
7040
  var e;
7087
7041
  if (
7088
7042
  z === null ||
@@ -7103,7 +7057,7 @@ fixRegExpWellKnownSymbolLogic('split', function (SPLIT, nativeSplit, maybeCallNa
7103
7057
  return A;
7104
7058
  }
7105
7059
  ];
7106
- }, !SPLIT_WORKS_WITH_OVERWRITTEN_EXEC, UNSUPPORTED_Y);
7060
+ }, BUGGY || !SPLIT_WORKS_WITH_OVERWRITTEN_EXEC, UNSUPPORTED_Y);
7107
7061
 
7108
7062
 
7109
7063
  /***/ }),
@@ -7139,7 +7093,7 @@ var TEMPLATE = String(String).split('String');
7139
7093
 
7140
7094
  var makeBuiltIn = module.exports = function (value, name, options) {
7141
7095
  if (stringSlice($String(name), 0, 7) === 'Symbol(') {
7142
- name = '[' + replace($String(name), /^Symbol\(([^)]*)\)/, '$1') + ']';
7096
+ name = '[' + replace($String(name), /^Symbol\(([^)]*)\).*$/, '$1') + ']';
7143
7097
  }
7144
7098
  if (options && options.getter) name = 'get ' + name;
7145
7099
  if (options && options.setter) name = 'set ' + name;
@@ -7275,24 +7229,59 @@ $({ target: 'Promise', stat: true, forced: PROMISE_STATICS_INCORRECT_ITERATION }
7275
7229
 
7276
7230
  /***/ }),
7277
7231
 
7278
- /***/ "1626":
7232
+ /***/ "157a":
7279
7233
  /***/ (function(module, exports, __webpack_require__) {
7280
7234
 
7281
7235
  "use strict";
7282
7236
 
7283
- var $documentAll = __webpack_require__("8ea1");
7237
+ var global = __webpack_require__("da84");
7238
+ var DESCRIPTORS = __webpack_require__("83ab");
7284
7239
 
7285
- var documentAll = $documentAll.all;
7240
+ // eslint-disable-next-line es/no-object-getownpropertydescriptor -- safe
7241
+ var getOwnPropertyDescriptor = Object.getOwnPropertyDescriptor;
7242
+
7243
+ // Avoid NodeJS experimental warning
7244
+ module.exports = function (name) {
7245
+ if (!DESCRIPTORS) return global[name];
7246
+ var descriptor = getOwnPropertyDescriptor(global, name);
7247
+ return descriptor && descriptor.value;
7248
+ };
7249
+
7250
+
7251
+ /***/ }),
7252
+
7253
+ /***/ "1626":
7254
+ /***/ (function(module, exports, __webpack_require__) {
7255
+
7256
+ "use strict";
7257
+
7258
+ // https://tc39.es/ecma262/#sec-IsHTMLDDA-internal-slot
7259
+ var documentAll = typeof document == 'object' && document.all;
7286
7260
 
7287
7261
  // `IsCallable` abstract operation
7288
7262
  // https://tc39.es/ecma262/#sec-iscallable
7289
- module.exports = $documentAll.IS_HTMLDDA ? function (argument) {
7263
+ // eslint-disable-next-line unicorn/no-typeof-undefined -- required for testing
7264
+ module.exports = typeof documentAll == 'undefined' && documentAll !== undefined ? function (argument) {
7290
7265
  return typeof argument == 'function' || argument === documentAll;
7291
7266
  } : function (argument) {
7292
7267
  return typeof argument == 'function';
7293
7268
  };
7294
7269
 
7295
7270
 
7271
+ /***/ }),
7272
+
7273
+ /***/ "1787":
7274
+ /***/ (function(module, exports, __webpack_require__) {
7275
+
7276
+ "use strict";
7277
+
7278
+ var isObject = __webpack_require__("861d");
7279
+
7280
+ module.exports = function (argument) {
7281
+ return isObject(argument) || argument === null;
7282
+ };
7283
+
7284
+
7296
7285
  /***/ }),
7297
7286
 
7298
7287
  /***/ "19aa":
@@ -7561,7 +7550,7 @@ module.exports = function (options, source) {
7561
7550
  } else if (STATIC) {
7562
7551
  target = global[TARGET] || defineGlobalProperty(TARGET, {});
7563
7552
  } else {
7564
- target = (global[TARGET] || {}).prototype;
7553
+ target = global[TARGET] && global[TARGET].prototype;
7565
7554
  }
7566
7555
  if (target) for (key in source) {
7567
7556
  sourceProperty = source[key];
@@ -7658,7 +7647,7 @@ var INCORRECT_NAME = PROPER_FUNCTION_NAME && nativeToString.name !== TO_STRING;
7658
7647
  // `RegExp.prototype.toString` method
7659
7648
  // https://tc39.es/ecma262/#sec-regexp.prototype.tostring
7660
7649
  if (NOT_GENERIC || INCORRECT_NAME) {
7661
- defineBuiltIn(RegExp.prototype, TO_STRING, function toString() {
7650
+ defineBuiltIn(RegExpPrototype, TO_STRING, function toString() {
7662
7651
  var R = anObject(this);
7663
7652
  var pattern = $toString(R.source);
7664
7653
  var flags = $toString(getRegExpFlags(R));
@@ -7788,8 +7777,6 @@ var requireObjectCoercible = __webpack_require__("1d80");
7788
7777
  var correctIsRegExpLogic = __webpack_require__("ab13d");
7789
7778
  var IS_PURE = __webpack_require__("c430");
7790
7779
 
7791
- // eslint-disable-next-line es/no-string-prototype-startswith -- safe
7792
- var nativeStartsWith = uncurryThis(''.startsWith);
7793
7780
  var stringSlice = uncurryThis(''.slice);
7794
7781
  var min = Math.min;
7795
7782
 
@@ -7808,9 +7795,7 @@ $({ target: 'String', proto: true, forced: !MDN_POLYFILL_BUG && !CORRECT_IS_REGE
7808
7795
  notARegExp(searchString);
7809
7796
  var index = toLength(min(arguments.length > 1 ? arguments[1] : undefined, that.length));
7810
7797
  var search = toString(searchString);
7811
- return nativeStartsWith
7812
- ? nativeStartsWith(that, search, index)
7813
- : stringSlice(that, index, index + search.length) === search;
7798
+ return stringSlice(that, index, index + search.length) === search;
7814
7799
  }
7815
7800
  });
7816
7801
 
@@ -8053,7 +8038,7 @@ var DESCRIPTORS = __webpack_require__("83ab");
8053
8038
  var V8_PROTOTYPE_DEFINE_BUG = __webpack_require__("aed9");
8054
8039
  var definePropertyModule = __webpack_require__("9bf2");
8055
8040
  var anObject = __webpack_require__("825a");
8056
- var toIndexedObject = __webpack_require__("fc6a");
8041
+ var toIndexedObject = __webpack_require__("fc6a9");
8057
8042
  var objectKeys = __webpack_require__("df75");
8058
8043
 
8059
8044
  // `Object.defineProperties` method
@@ -8090,13 +8075,13 @@ module.exports = uncurryThis({}.isPrototypeOf);
8090
8075
 
8091
8076
  "use strict";
8092
8077
 
8093
- var isCallable = __webpack_require__("1626");
8078
+ var isPossiblePrototype = __webpack_require__("1787");
8094
8079
 
8095
8080
  var $String = String;
8096
8081
  var $TypeError = TypeError;
8097
8082
 
8098
8083
  module.exports = function (argument) {
8099
- if (typeof argument == 'object' || isCallable(argument)) return argument;
8084
+ if (isPossiblePrototype(argument)) return argument;
8100
8085
  throw new $TypeError("Can't set " + $String(argument) + ' as a prototype');
8101
8086
  };
8102
8087
 
@@ -8435,7 +8420,7 @@ $({ target: 'String', proto: true, forced: forcedStringTrimMethod('trim') }, {
8435
8420
 
8436
8421
  "use strict";
8437
8422
 
8438
- var toIndexedObject = __webpack_require__("fc6a");
8423
+ var toIndexedObject = __webpack_require__("fc6a9");
8439
8424
  var toAbsoluteIndex = __webpack_require__("23cb");
8440
8425
  var lengthOfArrayLike = __webpack_require__("07fa");
8441
8426
 
@@ -8444,6 +8429,7 @@ var createMethod = function (IS_INCLUDES) {
8444
8429
  return function ($this, el, fromIndex) {
8445
8430
  var O = toIndexedObject($this);
8446
8431
  var length = lengthOfArrayLike(O);
8432
+ if (length === 0) return !IS_INCLUDES && -1;
8447
8433
  var index = toAbsoluteIndex(fromIndex, length);
8448
8434
  var value;
8449
8435
  // Array#includes uses SameValueZero equality algorithm
@@ -8469,32 +8455,6 @@ module.exports = {
8469
8455
  };
8470
8456
 
8471
8457
 
8472
- /***/ }),
8473
-
8474
- /***/ "4dae":
8475
- /***/ (function(module, exports, __webpack_require__) {
8476
-
8477
- "use strict";
8478
-
8479
- var toAbsoluteIndex = __webpack_require__("23cb");
8480
- var lengthOfArrayLike = __webpack_require__("07fa");
8481
- var createProperty = __webpack_require__("8418");
8482
-
8483
- var $Array = Array;
8484
- var max = Math.max;
8485
-
8486
- module.exports = function (O, start, end) {
8487
- var length = lengthOfArrayLike(O);
8488
- var k = toAbsoluteIndex(start, length);
8489
- var fin = toAbsoluteIndex(end === undefined ? length : end, length);
8490
- var result = $Array(max(fin - k, 0));
8491
- var n = 0;
8492
- for (; k < fin; k++, n++) createProperty(result, n, O[k]);
8493
- result.length = n;
8494
- return result;
8495
- };
8496
-
8497
-
8498
8458
  /***/ }),
8499
8459
 
8500
8460
  /***/ "5087":
@@ -8528,7 +8488,8 @@ var min = Math.min;
8528
8488
  // `ToLength` abstract operation
8529
8489
  // https://tc39.es/ecma262/#sec-tolength
8530
8490
  module.exports = function (argument) {
8531
- return argument > 0 ? min(toIntegerOrInfinity(argument), 0x1FFFFFFFFFFFFF) : 0; // 2 ** 53 - 1 == 9007199254740991
8491
+ var len = toIntegerOrInfinity(argument);
8492
+ return len > 0 ? min(len, 0x1FFFFFFFFFFFFF) : 0; // 2 ** 53 - 1 == 9007199254740991
8532
8493
  };
8533
8494
 
8534
8495
 
@@ -8689,18 +8650,11 @@ fixRegExpWellKnownSymbolLogic('replace', function (_, nativeReplace, maybeCallNa
8689
8650
 
8690
8651
  "use strict";
8691
8652
 
8692
- var IS_PURE = __webpack_require__("c430");
8693
8653
  var store = __webpack_require__("c6cd");
8694
8654
 
8695
- (module.exports = function (key, value) {
8696
- return store[key] || (store[key] = value !== undefined ? value : {});
8697
- })('versions', []).push({
8698
- version: '3.33.0',
8699
- mode: IS_PURE ? 'pure' : 'global',
8700
- copyright: '© 2014-2023 Denis Pushkarev (zloirock.ru)',
8701
- license: 'https://github.com/zloirock/core-js/blob/v3.33.0/LICENSE',
8702
- source: 'https://github.com/zloirock/core-js'
8703
- });
8655
+ module.exports = function (key, value) {
8656
+ return store[key] || (store[key] = value || {});
8657
+ };
8704
8658
 
8705
8659
 
8706
8660
  /***/ }),
@@ -8713,7 +8667,7 @@ var store = __webpack_require__("c6cd");
8713
8667
  var getBuiltIn = __webpack_require__("d066");
8714
8668
  var uncurryThis = __webpack_require__("e330");
8715
8669
  var getOwnPropertyNamesModule = __webpack_require__("241c");
8716
- var getOwnPropertySymbolsModule = __webpack_require__("7418");
8670
+ var getOwnPropertySymbolsModule = __webpack_require__("74183");
8717
8671
  var anObject = __webpack_require__("825a");
8718
8672
 
8719
8673
  var concat = uncurryThis([].concat);
@@ -9592,13 +9546,18 @@ function processImage(img, canvas, radius, blurAlphaChannel, useOffset, skipStyl
9592
9546
  img = document.getElementById(img);
9593
9547
  }
9594
9548
 
9595
- if (!img || !('naturalWidth' in img)) {
9549
+ if (!img || Object.prototype.toString.call(img).slice(8, -1) === 'HTMLImageElement' && !('naturalWidth' in img)) {
9596
9550
  return;
9597
9551
  }
9598
9552
 
9599
9553
  var dimensionType = useOffset ? 'offset' : 'natural';
9600
9554
  var w = img[dimensionType + 'Width'];
9601
- var h = img[dimensionType + 'Height'];
9555
+ var h = img[dimensionType + 'Height']; // add ImageBitmap support,can blur texture source
9556
+
9557
+ if (Object.prototype.toString.call(img).slice(8, -1) === 'ImageBitmap') {
9558
+ w = img.width;
9559
+ h = img.height;
9560
+ }
9602
9561
 
9603
9562
  if (typeof canvas === 'string') {
9604
9563
  canvas = document.getElementById(canvas);
@@ -9767,15 +9726,15 @@ function processImageDataRGBA(imageData, topX, topY, width, height, radius) {
9767
9726
  stackOut = stackEnd;
9768
9727
 
9769
9728
  for (var x = 0; x < width; x++) {
9770
- var paInitial = aSum * mulSum >> shgSum;
9729
+ var paInitial = aSum * mulSum >>> shgSum;
9771
9730
  pixels[yi + 3] = paInitial;
9772
9731
 
9773
9732
  if (paInitial !== 0) {
9774
9733
  var _a2 = 255 / paInitial;
9775
9734
 
9776
- pixels[yi] = (rSum * mulSum >> shgSum) * _a2;
9777
- pixels[yi + 1] = (gSum * mulSum >> shgSum) * _a2;
9778
- pixels[yi + 2] = (bSum * mulSum >> shgSum) * _a2;
9735
+ pixels[yi] = (rSum * mulSum >>> shgSum) * _a2;
9736
+ pixels[yi + 1] = (gSum * mulSum >>> shgSum) * _a2;
9737
+ pixels[yi + 2] = (bSum * mulSum >>> shgSum) * _a2;
9779
9738
  } else {
9780
9739
  pixels[yi] = pixels[yi + 1] = pixels[yi + 2] = 0;
9781
9740
  }
@@ -9880,13 +9839,13 @@ function processImageDataRGBA(imageData, topX, topY, width, height, radius) {
9880
9839
  for (var _y = 0; _y < height; _y++) {
9881
9840
  var _p2 = yi << 2;
9882
9841
 
9883
- pixels[_p2 + 3] = _pa = _aSum * mulSum >> shgSum;
9842
+ pixels[_p2 + 3] = _pa = _aSum * mulSum >>> shgSum;
9884
9843
 
9885
9844
  if (_pa > 0) {
9886
9845
  _pa = 255 / _pa;
9887
- pixels[_p2] = (_rSum * mulSum >> shgSum) * _pa;
9888
- pixels[_p2 + 1] = (_gSum * mulSum >> shgSum) * _pa;
9889
- pixels[_p2 + 2] = (_bSum * mulSum >> shgSum) * _pa;
9846
+ pixels[_p2] = (_rSum * mulSum >>> shgSum) * _pa;
9847
+ pixels[_p2 + 1] = (_gSum * mulSum >>> shgSum) * _pa;
9848
+ pixels[_p2 + 2] = (_bSum * mulSum >>> shgSum) * _pa;
9890
9849
  } else {
9891
9850
  pixels[_p2] = pixels[_p2 + 1] = pixels[_p2 + 2] = 0;
9892
9851
  }
@@ -10019,9 +9978,9 @@ function processImageDataRGB(imageData, topX, topY, width, height, radius) {
10019
9978
  stackOut = stackEnd;
10020
9979
 
10021
9980
  for (var x = 0; x < width; x++) {
10022
- pixels[yi] = rSum * mulSum >> shgSum;
10023
- pixels[yi + 1] = gSum * mulSum >> shgSum;
10024
- pixels[yi + 2] = bSum * mulSum >> shgSum;
9981
+ pixels[yi] = rSum * mulSum >>> shgSum;
9982
+ pixels[yi + 1] = gSum * mulSum >>> shgSum;
9983
+ pixels[yi + 2] = bSum * mulSum >>> shgSum;
10025
9984
  rSum -= rOutSum;
10026
9985
  gSum -= gOutSum;
10027
9986
  bSum -= bOutSum;
@@ -10096,9 +10055,9 @@ function processImageDataRGB(imageData, topX, topY, width, height, radius) {
10096
10055
 
10097
10056
  for (var _y2 = 0; _y2 < height; _y2++) {
10098
10057
  p = yi << 2;
10099
- pixels[p] = _rSum2 * mulSum >> shgSum;
10100
- pixels[p + 1] = _gSum2 * mulSum >> shgSum;
10101
- pixels[p + 2] = _bSum2 * mulSum >> shgSum;
10058
+ pixels[p] = _rSum2 * mulSum >>> shgSum;
10059
+ pixels[p + 1] = _gSum2 * mulSum >>> shgSum;
10060
+ pixels[p + 2] = _bSum2 * mulSum >>> shgSum;
10102
10061
  _rSum2 -= _rOutSum2;
10103
10062
  _gSum2 -= _gOutSum2;
10104
10063
  _bSum2 -= _bOutSum2;
@@ -10270,7 +10229,6 @@ var getBuiltIn = __webpack_require__("d066");
10270
10229
  var inspectSource = __webpack_require__("8925");
10271
10230
 
10272
10231
  var noop = function () { /* empty */ };
10273
- var empty = [];
10274
10232
  var construct = getBuiltIn('Reflect', 'construct');
10275
10233
  var constructorRegExp = /^\s*(?:class|function)\b/;
10276
10234
  var exec = uncurryThis(constructorRegExp.exec);
@@ -10279,7 +10237,7 @@ var INCORRECT_TO_STRING = !constructorRegExp.test(noop);
10279
10237
  var isConstructorModern = function isConstructor(argument) {
10280
10238
  if (!isCallable(argument)) return false;
10281
10239
  try {
10282
- construct(noop, empty, argument);
10240
+ construct(noop, [], argument);
10283
10241
  return true;
10284
10242
  } catch (error) {
10285
10243
  return false;
@@ -10510,7 +10468,7 @@ module.exports = function (object, key, method) {
10510
10468
 
10511
10469
  /***/ }),
10512
10470
 
10513
- /***/ "7418":
10471
+ /***/ "74183":
10514
10472
  /***/ (function(module, exports, __webpack_require__) {
10515
10473
 
10516
10474
  "use strict";
@@ -10699,24 +10657,6 @@ module.exports = !fails(function () {
10699
10657
  });
10700
10658
 
10701
10659
 
10702
- /***/ }),
10703
-
10704
- /***/ "8418":
10705
- /***/ (function(module, exports, __webpack_require__) {
10706
-
10707
- "use strict";
10708
-
10709
- var toPropertyKey = __webpack_require__("a04b");
10710
- var definePropertyModule = __webpack_require__("9bf2");
10711
- var createPropertyDescriptor = __webpack_require__("5c6c");
10712
-
10713
- module.exports = function (object, key, value) {
10714
- var propertyKey = toPropertyKey(key);
10715
- if (propertyKey in object) definePropertyModule.f(object, propertyKey, createPropertyDescriptor(0, value));
10716
- else object[propertyKey] = value;
10717
- };
10718
-
10719
-
10720
10660
  /***/ }),
10721
10661
 
10722
10662
  /***/ "861d":
@@ -10725,13 +10665,8 @@ module.exports = function (object, key, value) {
10725
10665
  "use strict";
10726
10666
 
10727
10667
  var isCallable = __webpack_require__("1626");
10728
- var $documentAll = __webpack_require__("8ea1");
10729
10668
 
10730
- var documentAll = $documentAll.all;
10731
-
10732
- module.exports = $documentAll.IS_HTMLDDA ? function (it) {
10733
- return typeof it == 'object' ? it !== null : isCallable(it) || it === documentAll;
10734
- } : function (it) {
10669
+ module.exports = function (it) {
10735
10670
  return typeof it == 'object' ? it !== null : isCallable(it);
10736
10671
  };
10737
10672
 
@@ -10776,8 +10711,6 @@ var requireObjectCoercible = __webpack_require__("1d80");
10776
10711
  var correctIsRegExpLogic = __webpack_require__("ab13d");
10777
10712
  var IS_PURE = __webpack_require__("c430");
10778
10713
 
10779
- // eslint-disable-next-line es/no-string-prototype-endswith -- safe
10780
- var nativeEndsWith = uncurryThis(''.endsWith);
10781
10714
  var slice = uncurryThis(''.slice);
10782
10715
  var min = Math.min;
10783
10716
 
@@ -10798,9 +10731,7 @@ $({ target: 'String', proto: true, forced: !MDN_POLYFILL_BUG && !CORRECT_IS_REGE
10798
10731
  var len = that.length;
10799
10732
  var end = endPosition === undefined ? len : min(toLength(endPosition), len);
10800
10733
  var search = toString(searchString);
10801
- return nativeEndsWith
10802
- ? nativeEndsWith(that, search, end)
10803
- : slice(that, end - search.length, end) === search;
10734
+ return slice(that, end - search.length, end) === search;
10804
10735
  }
10805
10736
  });
10806
10737
 
@@ -10821,25 +10752,6 @@ module.exports = function (S, index, unicode) {
10821
10752
  };
10822
10753
 
10823
10754
 
10824
- /***/ }),
10825
-
10826
- /***/ "8ea1":
10827
- /***/ (function(module, exports, __webpack_require__) {
10828
-
10829
- "use strict";
10830
-
10831
- var documentAll = typeof document == 'object' && document.all;
10832
-
10833
- // https://tc39.es/ecma262/#sec-IsHTMLDDA-internal-slot
10834
- // eslint-disable-next-line unicorn/no-typeof-undefined -- required for testing
10835
- var IS_HTMLDDA = typeof documentAll == 'undefined' && documentAll !== undefined;
10836
-
10837
- module.exports = {
10838
- all: documentAll,
10839
- IS_HTMLDDA: IS_HTMLDDA
10840
- };
10841
-
10842
-
10843
10755
  /***/ }),
10844
10756
 
10845
10757
  /***/ "90d8":
@@ -11214,11 +11126,11 @@ module.exports = function (argument) {
11214
11126
 
11215
11127
  var _typeof = __webpack_require__("7037")["default"];
11216
11128
  var toPrimitive = __webpack_require__("e50d");
11217
- function _toPropertyKey(arg) {
11218
- var key = toPrimitive(arg, "string");
11219
- return _typeof(key) === "symbol" ? key : String(key);
11129
+ function toPropertyKey(t) {
11130
+ var i = toPrimitive(t, "string");
11131
+ return "symbol" == _typeof(i) ? i : String(i);
11220
11132
  }
11221
- module.exports = _toPropertyKey, module.exports.__esModule = true, module.exports["default"] = module.exports;
11133
+ module.exports = toPropertyKey, module.exports.__esModule = true, module.exports["default"] = module.exports;
11222
11134
 
11223
11135
  /***/ }),
11224
11136
 
@@ -11422,8 +11334,8 @@ module.exports = Math.trunc || function trunc(x) {
11422
11334
  "use strict";
11423
11335
 
11424
11336
  var global = __webpack_require__("da84");
11337
+ var safeGetBuiltIn = __webpack_require__("157a");
11425
11338
  var bind = __webpack_require__("0366");
11426
- var getOwnPropertyDescriptor = __webpack_require__("06cf").f;
11427
11339
  var macrotask = __webpack_require__("2cf4").set;
11428
11340
  var Queue = __webpack_require__("01b4");
11429
11341
  var IS_IOS = __webpack_require__("1cdc");
@@ -11435,9 +11347,7 @@ var MutationObserver = global.MutationObserver || global.WebKitMutationObserver;
11435
11347
  var document = global.document;
11436
11348
  var process = global.process;
11437
11349
  var Promise = global.Promise;
11438
- // Node.js 11 shows ExperimentalWarning on getting `queueMicrotask`
11439
- var queueMicrotaskDescriptor = getOwnPropertyDescriptor(global, 'queueMicrotask');
11440
- var microtask = queueMicrotaskDescriptor && queueMicrotaskDescriptor.value;
11350
+ var microtask = safeGetBuiltIn('queueMicrotask');
11441
11351
  var notify, toggle, node, promise, then;
11442
11352
 
11443
11353
  // modern engines have queueMicrotask method
@@ -11697,13 +11607,20 @@ module.exports = function (it) {
11697
11607
 
11698
11608
  "use strict";
11699
11609
 
11700
- var global = __webpack_require__("da84");
11610
+ var IS_PURE = __webpack_require__("c430");
11611
+ var globalThis = __webpack_require__("da84");
11701
11612
  var defineGlobalProperty = __webpack_require__("6374");
11702
11613
 
11703
11614
  var SHARED = '__core-js_shared__';
11704
- var store = global[SHARED] || defineGlobalProperty(SHARED, {});
11615
+ var store = module.exports = globalThis[SHARED] || defineGlobalProperty(SHARED, {});
11705
11616
 
11706
- module.exports = store;
11617
+ (store.versions || (store.versions = [])).push({
11618
+ version: '3.36.0',
11619
+ mode: IS_PURE ? 'pure' : 'global',
11620
+ copyright: '© 2014-2024 Denis Pushkarev (zloirock.ru)',
11621
+ license: 'https://github.com/zloirock/core-js/blob/v3.36.0/LICENSE',
11622
+ source: 'https://github.com/zloirock/core-js'
11623
+ });
11707
11624
 
11708
11625
 
11709
11626
  /***/ }),
@@ -11917,7 +11834,7 @@ $({ target: 'Array', proto: true, forced: FORCED }, {
11917
11834
 
11918
11835
  var uncurryThis = __webpack_require__("e330");
11919
11836
  var hasOwn = __webpack_require__("1a2db");
11920
- var toIndexedObject = __webpack_require__("fc6a");
11837
+ var toIndexedObject = __webpack_require__("fc6a9");
11921
11838
  var indexOf = __webpack_require__("4d64").indexOf;
11922
11839
  var hiddenKeys = __webpack_require__("d012");
11923
11840
 
@@ -12252,13 +12169,16 @@ var lengthOfArrayLike = __webpack_require__("07fa");
12252
12169
 
12253
12170
  var $TypeError = TypeError;
12254
12171
 
12172
+ var REDUCE_EMPTY = 'Reduce of empty array with no initial value';
12173
+
12255
12174
  // `Array.prototype.{ reduce, reduceRight }` methods implementation
12256
12175
  var createMethod = function (IS_RIGHT) {
12257
12176
  return function (that, callbackfn, argumentsLength, memo) {
12258
- aCallable(callbackfn);
12259
12177
  var O = toObject(that);
12260
12178
  var self = IndexedObject(O);
12261
12179
  var length = lengthOfArrayLike(O);
12180
+ aCallable(callbackfn);
12181
+ if (length === 0 && argumentsLength < 2) throw new $TypeError(REDUCE_EMPTY);
12262
12182
  var index = IS_RIGHT ? length - 1 : 0;
12263
12183
  var i = IS_RIGHT ? -1 : 1;
12264
12184
  if (argumentsLength < 2) while (true) {
@@ -12269,7 +12189,7 @@ var createMethod = function (IS_RIGHT) {
12269
12189
  }
12270
12190
  index += i;
12271
12191
  if (IS_RIGHT ? index < 0 : length <= index) {
12272
- throw new $TypeError('Reduce of empty array with no initial value');
12192
+ throw new $TypeError(REDUCE_EMPTY);
12273
12193
  }
12274
12194
  }
12275
12195
  for (;IS_RIGHT ? index >= 0 : length > index; index += i) if (index in self) {
@@ -12313,7 +12233,7 @@ module.exports = function (passed, required) {
12313
12233
 
12314
12234
  // TODO: Remove from `core-js@4` since it's moved to entry points
12315
12235
  __webpack_require__("ac1f");
12316
- var uncurryThis = __webpack_require__("4625");
12236
+ var call = __webpack_require__("c65b");
12317
12237
  var defineBuiltIn = __webpack_require__("cb2d");
12318
12238
  var regexpExec = __webpack_require__("9263");
12319
12239
  var fails = __webpack_require__("d039");
@@ -12327,7 +12247,7 @@ module.exports = function (KEY, exec, FORCED, SHAM) {
12327
12247
  var SYMBOL = wellKnownSymbol(KEY);
12328
12248
 
12329
12249
  var DELEGATES_TO_SYMBOL = !fails(function () {
12330
- // String methods call symbol-named RegEp methods
12250
+ // String methods call symbol-named RegExp methods
12331
12251
  var O = {};
12332
12252
  O[SYMBOL] = function () { return 7; };
12333
12253
  return ''[KEY](O) !== 7;
@@ -12365,18 +12285,17 @@ module.exports = function (KEY, exec, FORCED, SHAM) {
12365
12285
  !DELEGATES_TO_EXEC ||
12366
12286
  FORCED
12367
12287
  ) {
12368
- var uncurriedNativeRegExpMethod = uncurryThis(/./[SYMBOL]);
12288
+ var nativeRegExpMethod = /./[SYMBOL];
12369
12289
  var methods = exec(SYMBOL, ''[KEY], function (nativeMethod, regexp, str, arg2, forceStringMethod) {
12370
- var uncurriedNativeMethod = uncurryThis(nativeMethod);
12371
12290
  var $exec = regexp.exec;
12372
12291
  if ($exec === regexpExec || $exec === RegExpPrototype.exec) {
12373
12292
  if (DELEGATES_TO_SYMBOL && !forceStringMethod) {
12374
12293
  // The native String method already delegates to @@method (this
12375
12294
  // polyfilled function), leasing to infinite recursion.
12376
12295
  // We avoid it by directly calling the native @@method method.
12377
- return { done: true, value: uncurriedNativeRegExpMethod(regexp, str, arg2) };
12296
+ return { done: true, value: call(nativeRegExpMethod, regexp, str, arg2) };
12378
12297
  }
12379
- return { done: true, value: uncurriedNativeMethod(str, regexp, arg2) };
12298
+ return { done: true, value: call(nativeMethod, str, regexp, arg2) };
12380
12299
  }
12381
12300
  return { done: false };
12382
12301
  });
@@ -12430,8 +12349,9 @@ module.exports =
12430
12349
  // eslint-disable-next-line no-restricted-globals -- safe
12431
12350
  check(typeof self == 'object' && self) ||
12432
12351
  check(typeof global == 'object' && global) ||
12352
+ check(typeof this == 'object' && this) ||
12433
12353
  // eslint-disable-next-line no-new-func -- fallback
12434
- (function () { return this; })() || this || Function('return this')();
12354
+ (function () { return this; })() || Function('return this')();
12435
12355
 
12436
12356
  /* WEBPACK VAR INJECTION */}.call(this, __webpack_require__("c8ba")))
12437
12357
 
@@ -12489,10 +12409,10 @@ var DOMIterables = __webpack_require__("fdbc");
12489
12409
  var DOMTokenListPrototype = __webpack_require__("785a");
12490
12410
  var ArrayIteratorMethods = __webpack_require__("e260");
12491
12411
  var createNonEnumerableProperty = __webpack_require__("9112");
12412
+ var setToStringTag = __webpack_require__("d44e");
12492
12413
  var wellKnownSymbol = __webpack_require__("b622");
12493
12414
 
12494
12415
  var ITERATOR = wellKnownSymbol('iterator');
12495
- var TO_STRING_TAG = wellKnownSymbol('toStringTag');
12496
12416
  var ArrayValues = ArrayIteratorMethods.values;
12497
12417
 
12498
12418
  var handlePrototype = function (CollectionPrototype, COLLECTION_NAME) {
@@ -12503,9 +12423,7 @@ var handlePrototype = function (CollectionPrototype, COLLECTION_NAME) {
12503
12423
  } catch (error) {
12504
12424
  CollectionPrototype[ITERATOR] = ArrayValues;
12505
12425
  }
12506
- if (!CollectionPrototype[TO_STRING_TAG]) {
12507
- createNonEnumerableProperty(CollectionPrototype, TO_STRING_TAG, COLLECTION_NAME);
12508
- }
12426
+ setToStringTag(CollectionPrototype, COLLECTION_NAME, true);
12509
12427
  if (DOMIterables[COLLECTION_NAME]) for (var METHOD_NAME in ArrayIteratorMethods) {
12510
12428
  // some Chrome versions have non-configurable methods on DOMTokenList
12511
12429
  if (CollectionPrototype[METHOD_NAME] !== ArrayIteratorMethods[METHOD_NAME]) try {
@@ -12596,7 +12514,7 @@ module.exports = !fails(function () {
12596
12514
 
12597
12515
  "use strict";
12598
12516
 
12599
- var toIndexedObject = __webpack_require__("fc6a");
12517
+ var toIndexedObject = __webpack_require__("fc6a9");
12600
12518
  var addToUnscopables = __webpack_require__("44d2");
12601
12519
  var Iterators = __webpack_require__("3f8c");
12602
12520
  var InternalStateModule = __webpack_require__("69f3");
@@ -12632,13 +12550,12 @@ module.exports = defineIterator(Array, 'Array', function (iterated, kind) {
12632
12550
  }, function () {
12633
12551
  var state = getInternalState(this);
12634
12552
  var target = state.target;
12635
- var kind = state.kind;
12636
12553
  var index = state.index++;
12637
12554
  if (!target || index >= target.length) {
12638
12555
  state.target = undefined;
12639
12556
  return createIterResultObject(undefined, true);
12640
12557
  }
12641
- switch (kind) {
12558
+ switch (state.kind) {
12642
12559
  case 'keys': return createIterResultObject(index, false);
12643
12560
  case 'values': return createIterResultObject(target[index], false);
12644
12561
  } return createIterResultObject([index, target[index]], false);
@@ -12686,17 +12603,17 @@ module.exports = NATIVE_BIND ? uncurryThisWithBind : function (fn) {
12686
12603
  /***/ (function(module, exports, __webpack_require__) {
12687
12604
 
12688
12605
  var _typeof = __webpack_require__("7037")["default"];
12689
- function _toPrimitive(input, hint) {
12690
- if (_typeof(input) !== "object" || input === null) return input;
12691
- var prim = input[Symbol.toPrimitive];
12692
- if (prim !== undefined) {
12693
- var res = prim.call(input, hint || "default");
12694
- if (_typeof(res) !== "object") return res;
12606
+ function toPrimitive(t, r) {
12607
+ if ("object" != _typeof(t) || !t) return t;
12608
+ var e = t[Symbol.toPrimitive];
12609
+ if (void 0 !== e) {
12610
+ var i = e.call(t, r || "default");
12611
+ if ("object" != _typeof(i)) return i;
12695
12612
  throw new TypeError("@@toPrimitive must return a primitive value.");
12696
12613
  }
12697
- return (hint === "string" ? String : Number)(input);
12614
+ return ("string" === r ? String : Number)(t);
12698
12615
  }
12699
- module.exports = _toPrimitive, module.exports.__esModule = true, module.exports["default"] = module.exports;
12616
+ module.exports = toPrimitive, module.exports.__esModule = true, module.exports["default"] = module.exports;
12700
12617
 
12701
12618
  /***/ }),
12702
12619
 
@@ -12845,7 +12762,6 @@ module.exports.f = function (C) {
12845
12762
  "use strict";
12846
12763
 
12847
12764
  var $ = __webpack_require__("23e7");
12848
- var call = __webpack_require__("c65b");
12849
12765
  var newPromiseCapabilityModule = __webpack_require__("f069");
12850
12766
  var FORCED_PROMISE_CONSTRUCTOR = __webpack_require__("4738").CONSTRUCTOR;
12851
12767
 
@@ -12854,7 +12770,8 @@ var FORCED_PROMISE_CONSTRUCTOR = __webpack_require__("4738").CONSTRUCTOR;
12854
12770
  $({ target: 'Promise', stat: true, forced: FORCED_PROMISE_CONSTRUCTOR }, {
12855
12771
  reject: function reject(r) {
12856
12772
  var capability = newPromiseCapabilityModule.f(this);
12857
- call(capability.reject, undefined, r);
12773
+ var capabilityReject = capability.reject;
12774
+ capabilityReject(r);
12858
12775
  return capability.promise;
12859
12776
  }
12860
12777
  });
@@ -12929,7 +12846,7 @@ module.exports = function (key) {
12929
12846
 
12930
12847
  /***/ }),
12931
12848
 
12932
- /***/ "fc6a":
12849
+ /***/ "fc6a9":
12933
12850
  /***/ (function(module, exports, __webpack_require__) {
12934
12851
 
12935
12852
  "use strict";