@ada-support/embed2 1.0.55 → 1.0.59

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.
@@ -8788,7 +8788,7 @@ var client = new error_tracker_BrowserClient({
8788
8788
  return event;
8789
8789
  },
8790
8790
  environment: "production",
8791
- release: "1.0.55-68d18b3",
8791
+ release: "1.0.59-1ff8966",
8792
8792
  sampleRate: 0.25,
8793
8793
  autoSessionTracking: false,
8794
8794
  // Integrations don't seem to work with Sentry: https://github.com/getsentry/sentry-javascript/issues/2541
@@ -8867,6 +8867,7 @@ var BROWSER_HAS_NOTIFICATIONS_RESPONSE_EVENT = "BROWSER_HAS_NOTIFICATIONS_RESPON
8867
8867
  var REQUEST_NOTIFICATIONS_EVENT = "REQUEST_NOTIFICATIONS";
8868
8868
  var END_CONVERSATION_EVENT = "END_CONVERSATION";
8869
8869
  var PUBLISH_EVENT = "PUBLISH_EVENT";
8870
+ var ZD_MESSAGING_HANDOFF = "ZD_MESSAGING_HANDOFF";
8870
8871
  /**
8871
8872
  * Store Events
8872
8873
  */
@@ -9487,7 +9488,7 @@ function getEmbedURL(_ref) {
9487
9488
  polyfillVersionString = "legacy";
9488
9489
  }
9489
9490
 
9490
- return concat_default()(_context5 = concat_default()(_context6 = concat_default()(_context7 = "".concat(host, "/embed/")).call(_context7, polyfillVersionString, "/")).call(_context6, frameName, "/")).call(_context5, "68d18b3", "/index.html");
9491
+ return concat_default()(_context5 = concat_default()(_context6 = concat_default()(_context7 = "".concat(host, "/embed/")).call(_context7, polyfillVersionString, "/")).call(_context6, frameName, "/")).call(_context5, "1ff8966", "/index.html");
9491
9492
  }
9492
9493
  /**
9493
9494
  * Generate the Chat / API URL
@@ -9649,6 +9650,8 @@ var IN_LIVE_CHAT_STORAGE_KEY = "inLiveChat";
9649
9650
  var ZD_SESSION_STORAGE_KEY = "ada-embed_zd-session-id";
9650
9651
  var ZD_PREVIOUS_TAGS_STORAGE_KEY = "ada-embed_zd-previous-tags";
9651
9652
  var IS_DRAWER_OPEN_STORAGE_KEY = "ada-embed_is-drawer-open";
9653
+ var ZD_MESSAGING_EXTERNAL_USER_ID_STORAGE_KEY = "ada-embed_zd-messaging-external-user-id";
9654
+ var ZD_MESSAGING_CHATTER_CREATED_STORAGE_KEY = "ada-embed_zd-messaging-chatter-created";
9652
9655
  /** @deprecated - Use CHATTER_TOKEN_STORAGE_KEY */
9653
9656
 
9654
9657
  var CHATTER_STORAGE_KEY = CHATTER_TOKEN_STORAGE_KEY;
@@ -9950,6 +9953,8 @@ var state = {
9950
9953
  chatterCreated: getValueFromStorage(CHATTER_CREATED_STORAGE_KEY) || undefined,
9951
9954
  zdSessionId: getValueFromStorage(ZD_SESSION_STORAGE_KEY) || undefined,
9952
9955
  zdPreviousTags: getValueFromStorage(ZD_PREVIOUS_TAGS_STORAGE_KEY) || undefined,
9956
+ zdMessagingExternalUserId: getValueFromStorage(ZD_MESSAGING_EXTERNAL_USER_ID_STORAGE_KEY) || null,
9957
+ zdMessagingChatterCreated: getValueFromStorage(ZD_MESSAGING_CHATTER_CREATED_STORAGE_KEY) || null,
9953
9958
  connections: {},
9954
9959
  appConnectionState: ConnectionState.Uninitiated,
9955
9960
  testMode: false,
@@ -9962,7 +9967,9 @@ var state = {
9962
9967
  latestCampaignKey: undefined,
9963
9968
  hasChatOpenedAfterProactiveMessagesShown: false,
9964
9969
  chatterInLiveChat: false,
9965
- adaSettings: {}
9970
+ adaSettings: {},
9971
+ wasCampaignShownButNowClosed: false,
9972
+ isChatEmpty: false
9966
9973
  };
9967
9974
  /* harmony default export */ var store_state = (state);
9968
9975
  ;// CONCATENATED MODULE: ./src/client/store/index.ts
@@ -10346,7 +10353,7 @@ var trim_default = /*#__PURE__*/__webpack_require__.n(trim);
10346
10353
 
10347
10354
 
10348
10355
  function getProcessedPath(path) {
10349
- var regex = new RegExp("^http(s)?://(www.)?");
10356
+ var regex = /^http(s)?:\/\/(www.)?/;
10350
10357
  return trim_default()(path).call(path).replace(regex, "");
10351
10358
  }
10352
10359
  function getPathSearchRegex(path) {
@@ -11042,7 +11049,7 @@ function getAlignment(adaSettings) {
11042
11049
 
11043
11050
  function wait(ms) {
11044
11051
  return new (promise_default())(function (resolve) {
11045
- return setTimeout(resolve, ms);
11052
+ setTimeout(resolve, ms);
11046
11053
  });
11047
11054
  }
11048
11055
  // EXTERNAL MODULE: ./node_modules/@babel/runtime-corejs3/core-js/object/get-own-property-symbols.js
@@ -11970,7 +11977,7 @@ var ChatFrame = /*#__PURE__*/function (_Component) {
11970
11977
  var _handleChatEvent = (0,asyncToGenerator/* default */.Z)( /*#__PURE__*/regenerator_default().mark(function _callee(type, payload, id) {
11971
11978
  var _this4 = this;
11972
11979
 
11973
- var _this$props9, adaSettings, setState, setConnectionState, _ref, eventKey, data, _ref2, analytics, analyticsCallback, client, _ref3, chatter, created, chatterTokenCallback, _client, _ref4, zdSessionId, zdPreviousTags, storage, _client2, _ref5, inLiveChat, eventCallbacks, customJavascriptEvent, specificCallback, genericCallback, resetChat, zdChatterAuthCallback, conversationEndCallback;
11980
+ var _this$props9, adaSettings, setState, setConnectionState, _ref, eventKey, data, _ref2, analytics, analyticsCallback, client, _ref3, chatter, created, chatterTokenCallback, _client, _ref4, zdSessionId, zdPreviousTags, storage, _client2, _ref5, zdMessagingExternalUserId, zdMessagingChatterCreated, _client3, _ref6, inLiveChat, eventCallbacks, customJavascriptEvent, specificCallback, genericCallback, resetChat, zdChatterAuthCallback, conversationEndCallback;
11974
11981
 
11975
11982
  return regenerator_default().wrap(function _callee$(_context22) {
11976
11983
  while (1) {
@@ -11978,7 +11985,7 @@ var ChatFrame = /*#__PURE__*/function (_Component) {
11978
11985
  case 0:
11979
11986
  _this$props9 = this.props, adaSettings = _this$props9.adaSettings, setState = _this$props9.setState, setConnectionState = _this$props9.setConnectionState;
11980
11987
  _context22.t0 = type;
11981
- _context22.next = _context22.t0 === GET_WINDOW_ORIGIN ? 4 : _context22.t0 === CHAT_STARTED ? 8 : _context22.t0 === CHAT_WEBSOCKET_CONNECTED ? 13 : _context22.t0 === PUBLISH_EVENT ? 15 : _context22.t0 === ANALYTICS_EVENT ? 18 : _context22.t0 === CHATTER_EVENT ? 22 : _context22.t0 === "ZD_SESSION" ? 32 : _context22.t0 === CHATTER_LIVECHAT_EVENT ? 41 : _context22.t0 === CUSTOM_JAVASCRIPT_EVENT ? 49 : _context22.t0 === RESET_FROM_CHAT_EVENT ? 58 : _context22.t0 === ZD_JWT_AUTH_EVENT ? 61 : _context22.t0 === CREATE_NOTIFICATION_EVENT ? 79 : _context22.t0 === BROWSER_HAS_NOTIFICATIONS_EVENT ? 81 : _context22.t0 === REQUEST_NOTIFICATIONS_EVENT ? 85 : _context22.t0 === END_CONVERSATION_EVENT ? 87 : 90;
11988
+ _context22.next = _context22.t0 === GET_WINDOW_ORIGIN ? 4 : _context22.t0 === CHAT_STARTED ? 8 : _context22.t0 === CHAT_WEBSOCKET_CONNECTED ? 13 : _context22.t0 === PUBLISH_EVENT ? 15 : _context22.t0 === ANALYTICS_EVENT ? 18 : _context22.t0 === CHATTER_EVENT ? 22 : _context22.t0 === "ZD_SESSION" ? 32 : _context22.t0 === ZD_MESSAGING_HANDOFF ? 41 : _context22.t0 === CHATTER_LIVECHAT_EVENT ? 50 : _context22.t0 === CUSTOM_JAVASCRIPT_EVENT ? 58 : _context22.t0 === RESET_FROM_CHAT_EVENT ? 67 : _context22.t0 === ZD_JWT_AUTH_EVENT ? 70 : _context22.t0 === CREATE_NOTIFICATION_EVENT ? 88 : _context22.t0 === BROWSER_HAS_NOTIFICATIONS_EVENT ? 90 : _context22.t0 === REQUEST_NOTIFICATIONS_EVENT ? 94 : _context22.t0 === END_CONVERSATION_EVENT ? 96 : 99;
11982
11989
  break;
11983
11990
 
11984
11991
  case 4:
@@ -11991,7 +11998,7 @@ var ChatFrame = /*#__PURE__*/function (_Component) {
11991
11998
 
11992
11999
  case 6:
11993
12000
  this.channel.postMessage("SET_WINDOW_ORIGIN", window.location, id);
11994
- return _context22.abrupt("break", 91);
12001
+ return _context22.abrupt("break", 100);
11995
12002
 
11996
12003
  case 8:
11997
12004
  if (this.channel) {
@@ -12006,18 +12013,18 @@ var ChatFrame = /*#__PURE__*/function (_Component) {
12006
12013
  setConnectionState({
12007
12014
  "chat": ConnectionState.Done
12008
12015
  });
12009
- return _context22.abrupt("break", 91);
12016
+ return _context22.abrupt("break", 100);
12010
12017
 
12011
12018
  case 13:
12012
12019
  setState({
12013
12020
  isChatWebsocketConnected: true
12014
12021
  });
12015
- return _context22.abrupt("break", 91);
12022
+ return _context22.abrupt("break", 100);
12016
12023
 
12017
12024
  case 15:
12018
12025
  _ref = payload, eventKey = _ref.eventKey, data = _ref.data;
12019
12026
  publishEvent(eventKey, data);
12020
- return _context22.abrupt("break", 91);
12027
+ return _context22.abrupt("break", 100);
12021
12028
 
12022
12029
  case 18:
12023
12030
  _ref2 = payload, analytics = _ref2.analytics;
@@ -12027,7 +12034,7 @@ var ChatFrame = /*#__PURE__*/function (_Component) {
12027
12034
  analyticsCallback(analytics);
12028
12035
  }
12029
12036
 
12030
- return _context22.abrupt("break", 91);
12037
+ return _context22.abrupt("break", 100);
12031
12038
 
12032
12039
  case 22:
12033
12040
  client = this.props.client;
@@ -12065,7 +12072,7 @@ var ChatFrame = /*#__PURE__*/function (_Component) {
12065
12072
  chatterTokenCallback(chatter);
12066
12073
  }
12067
12074
 
12068
- return _context22.abrupt("break", 91);
12075
+ return _context22.abrupt("break", 100);
12069
12076
 
12070
12077
  case 32:
12071
12078
  _client = this.props.client;
@@ -12111,48 +12118,81 @@ var ChatFrame = /*#__PURE__*/function (_Component) {
12111
12118
  }
12112
12119
  }
12113
12120
 
12114
- return _context22.abrupt("break", 91);
12121
+ return _context22.abrupt("break", 100);
12115
12122
 
12116
12123
  case 41:
12117
12124
  _client2 = this.props.client;
12118
- _ref5 = payload, inLiveChat = _ref5.inLiveChat;
12119
- _context22.next = 45;
12125
+ _ref5 = payload, zdMessagingExternalUserId = _ref5.zdMessagingExternalUserId, zdMessagingChatterCreated = _ref5.zdMessagingChatterCreated;
12126
+
12127
+ if (_client2) {
12128
+ _context22.next = 45;
12129
+ break;
12130
+ }
12131
+
12132
+ throw new errors/* AdaEmbedError */.S("`client` is undefined");
12133
+
12134
+ case 45:
12135
+ _context22.next = 47;
12136
+ return setState({
12137
+ zdMessagingExternalUserId: zdMessagingExternalUserId,
12138
+ zdMessagingChatterCreated: zdMessagingChatterCreated
12139
+ });
12140
+
12141
+ case 47:
12142
+ if (zdMessagingExternalUserId === null) {
12143
+ safeLocalStorage.removeItem(ZD_MESSAGING_EXTERNAL_USER_ID_STORAGE_KEY);
12144
+ } else {
12145
+ safeLocalStorage.setItem(ZD_MESSAGING_EXTERNAL_USER_ID_STORAGE_KEY, zdMessagingExternalUserId);
12146
+ }
12147
+
12148
+ if (zdMessagingChatterCreated === null) {
12149
+ safeLocalStorage.removeItem(ZD_MESSAGING_CHATTER_CREATED_STORAGE_KEY);
12150
+ } else {
12151
+ safeLocalStorage.setItem(ZD_MESSAGING_CHATTER_CREATED_STORAGE_KEY, zdMessagingChatterCreated);
12152
+ }
12153
+
12154
+ return _context22.abrupt("break", 100);
12155
+
12156
+ case 50:
12157
+ _client3 = this.props.client;
12158
+ _ref6 = payload, inLiveChat = _ref6.inLiveChat;
12159
+ _context22.next = 54;
12120
12160
  return setState({
12121
12161
  chatterInLiveChat: inLiveChat
12122
12162
  });
12123
12163
 
12124
- case 45:
12125
- if (_client2) {
12126
- _context22.next = 47;
12164
+ case 54:
12165
+ if (_client3) {
12166
+ _context22.next = 56;
12127
12167
  break;
12128
12168
  }
12129
12169
 
12130
12170
  throw new errors/* AdaEmbedError */.S("`client` is not defined");
12131
12171
 
12132
- case 47:
12172
+ case 56:
12133
12173
  /**
12134
12174
  * Store the token so when embed loads in the future, it doesn't have to wait for it to
12135
12175
  * come from chat. This is important for campaign and business event triggers.
12136
12176
  */
12137
- if (_client2.persistence === PERSISTENCE_NORMAL) {
12177
+ if (_client3.persistence === PERSISTENCE_NORMAL) {
12138
12178
  safeLocalStorage.setItem(IN_LIVE_CHAT_STORAGE_KEY, inLiveChat);
12139
- } else if (_client2.persistence === PERSISTENCE_SESSION) {
12179
+ } else if (_client3.persistence === PERSISTENCE_SESSION) {
12140
12180
  safeSessionStorage.setItem(IN_LIVE_CHAT_STORAGE_KEY, inLiveChat);
12141
12181
  }
12142
12182
 
12143
- return _context22.abrupt("break", 91);
12183
+ return _context22.abrupt("break", 100);
12144
12184
 
12145
- case 49:
12185
+ case 58:
12146
12186
  eventCallbacks = adaSettings.eventCallbacks;
12147
12187
 
12148
12188
  if (eventCallbacks) {
12149
- _context22.next = 52;
12189
+ _context22.next = 61;
12150
12190
  break;
12151
12191
  }
12152
12192
 
12153
- return _context22.abrupt("break", 91);
12193
+ return _context22.abrupt("break", 100);
12154
12194
 
12155
- case 52:
12195
+ case 61:
12156
12196
  customJavascriptEvent = payload.event_data;
12157
12197
  specificCallback = eventCallbacks[customJavascriptEvent.event_name];
12158
12198
  genericCallback = eventCallbacks["*"];
@@ -12165,22 +12205,22 @@ var ChatFrame = /*#__PURE__*/function (_Component) {
12165
12205
  genericCallback(customJavascriptEvent);
12166
12206
  }
12167
12207
 
12168
- return _context22.abrupt("break", 91);
12208
+ return _context22.abrupt("break", 100);
12169
12209
 
12170
- case 58:
12210
+ case 67:
12171
12211
  resetChat = this.props.resetChat;
12172
12212
  resetChat();
12173
- return _context22.abrupt("break", 91);
12213
+ return _context22.abrupt("break", 100);
12174
12214
 
12175
- case 61:
12215
+ case 70:
12176
12216
  zdChatterAuthCallback = adaSettings.zdChatterAuthCallback;
12177
12217
 
12178
12218
  if (!zdChatterAuthCallback) {
12179
- _context22.next = 75;
12219
+ _context22.next = 84;
12180
12220
  break;
12181
12221
  }
12182
12222
 
12183
- _context22.prev = 63;
12223
+ _context22.prev = 72;
12184
12224
  zdChatterAuthCallback(function (token) {
12185
12225
  if (!_this4.channel) {
12186
12226
  throw new errors/* AdaEmbedError */.S("`this.channel` is not defined");
@@ -12190,82 +12230,82 @@ var ChatFrame = /*#__PURE__*/function (_Component) {
12190
12230
  token: token
12191
12231
  }, id);
12192
12232
  });
12193
- _context22.next = 73;
12233
+ _context22.next = 82;
12194
12234
  break;
12195
12235
 
12196
- case 67:
12197
- _context22.prev = 67;
12198
- _context22.t1 = _context22["catch"](63);
12236
+ case 76:
12237
+ _context22.prev = 76;
12238
+ _context22.t1 = _context22["catch"](72);
12199
12239
  console.warn("Function for zdChatterAuthCallback produced an error - please ensure the callback is functioning normally");
12200
12240
 
12201
12241
  if (this.channel) {
12202
- _context22.next = 72;
12242
+ _context22.next = 81;
12203
12243
  break;
12204
12244
  }
12205
12245
 
12206
12246
  throw new errors/* AdaEmbedError */.S("`this.channel` is not defined");
12207
12247
 
12208
- case 72:
12248
+ case 81:
12209
12249
  this.channel.postMessage(ZD_JWT_AUTH_RESPONSE_EVENT, {}, id);
12210
12250
 
12211
- case 73:
12212
- _context22.next = 78;
12251
+ case 82:
12252
+ _context22.next = 87;
12213
12253
  break;
12214
12254
 
12215
- case 75:
12255
+ case 84:
12216
12256
  if (this.channel) {
12217
- _context22.next = 77;
12257
+ _context22.next = 86;
12218
12258
  break;
12219
12259
  }
12220
12260
 
12221
12261
  throw new errors/* AdaEmbedError */.S("`this.channel` is not defined");
12222
12262
 
12223
- case 77:
12263
+ case 86:
12224
12264
  this.channel.postMessage(ZD_JWT_AUTH_RESPONSE_EVENT, {}, id);
12225
12265
 
12226
- case 78:
12227
- return _context22.abrupt("break", 91);
12266
+ case 87:
12267
+ return _context22.abrupt("break", 100);
12228
12268
 
12229
- case 79:
12269
+ case 88:
12230
12270
  this.handleNotifications(payload);
12231
- return _context22.abrupt("break", 91);
12271
+ return _context22.abrupt("break", 100);
12232
12272
 
12233
- case 81:
12273
+ case 90:
12234
12274
  if (this.channel) {
12235
- _context22.next = 83;
12275
+ _context22.next = 92;
12236
12276
  break;
12237
12277
  }
12238
12278
 
12239
12279
  throw new errors/* AdaEmbedError */.S("`this.channel` is not defined");
12240
12280
 
12241
- case 83:
12281
+ case 92:
12242
12282
  this.channel.postMessage(BROWSER_HAS_NOTIFICATIONS_RESPONSE_EVENT, {
12243
12283
  browserHasNotificationSupport: browserHasNotificationSupport
12244
12284
  });
12245
- return _context22.abrupt("break", 91);
12285
+ return _context22.abrupt("break", 100);
12246
12286
 
12247
- case 85:
12287
+ case 94:
12248
12288
  requestNotificationPermission();
12249
- return _context22.abrupt("break", 91);
12289
+ return _context22.abrupt("break", 100);
12250
12290
 
12251
- case 87:
12291
+ case 96:
12252
12292
  conversationEndCallback = adaSettings.conversationEndCallback;
12253
12293
 
12254
12294
  if (conversationEndCallback) {
12255
12295
  conversationEndCallback(payload);
12256
12296
  }
12257
12297
 
12258
- return _context22.abrupt("break", 91);
12298
+ return _context22.abrupt("break", 100);
12259
12299
 
12260
- case 90:
12261
- return _context22.abrupt("break", 91);
12300
+ case 99:
12301
+ return _context22.abrupt("break", 100);
12262
12302
 
12263
- case 91:
12303
+ case 100:
12264
12304
  case "end":
12265
12305
  return _context22.stop();
12266
12306
  }
12267
12307
  }
12268
- }, _callee, this, [[63, 67]]);
12308
+ }, _callee, this, [[72, 76]]);
12269
12309
  }));
12270
12310
 
12271
12311
  function handleChatEvent(_x, _x2, _x3) {
@@ -12781,7 +12821,10 @@ var Container = /*#__PURE__*/function (_Component) {
12781
12821
  isChatWebsocketConnected = _this$props2.isChatWebsocketConnected,
12782
12822
  adaSettings = _this$props2.adaSettings,
12783
12823
  chatterInLiveChat = _this$props2.chatterInLiveChat,
12784
- messageService = _this$props2.messageService;
12824
+ messageService = _this$props2.messageService,
12825
+ wasCampaignShownButNowClosed = _this$props2.wasCampaignShownButNowClosed,
12826
+ isChatEmpty = _this$props2.isChatEmpty,
12827
+ setState = _this$props2.setState;
12785
12828
  var adaReadyCallback = adaSettings.adaReadyCallback,
12786
12829
  toggleCallback = adaSettings.toggleCallback;
12787
12830
 
@@ -12847,9 +12890,22 @@ var Container = /*#__PURE__*/function (_Component) {
12847
12890
  var chatChannel = messageService.getChannel(CHAT_IFRAME);
12848
12891
 
12849
12892
  if (chatChannel) {
12850
- chatChannel.postMessage(SEND_GREETING, {
12851
- responseId: followUpResponseId
12852
- });
12893
+ if (!wasCampaignShownButNowClosed) {
12894
+ chatChannel.postMessage(SEND_GREETING, {
12895
+ responseId: followUpResponseId
12896
+ }); // If the campaign has not been closed (i.e. is still visible), send the follow up response
12897
+ } else if (isChatEmpty) {
12898
+ chatChannel.postMessage(SEND_GREETING);
12899
+ } // We want to reset the state because there's a possibility
12900
+ // that a user might engage with another campaign on another page path
12901
+
12902
+
12903
+ if (followUpResponseId && wasCampaignShownButNowClosed) {
12904
+ setState({
12905
+ wasCampaignShownButNowClosed: false
12906
+ });
12907
+ }
12908
+
12853
12909
  this.setState({
12854
12910
  followUpResponseId: null
12855
12911
  });
@@ -13010,6 +13066,12 @@ var Container = /*#__PURE__*/function (_Component) {
13010
13066
  throw new errors/* AdaEmbedError */.S("Could not find campaign with key: ".concat(campaignKey));
13011
13067
  }
13012
13068
 
13069
+ var followUpResponseId = campaign.follow_up_response_id;
13070
+
13071
+ if (client !== null && client !== void 0 && client.features.afm_dont_show_proactive_messages_in_chat && !followUpResponseId) {
13072
+ followUpResponseId = campaign.response_id;
13073
+ }
13074
+
13013
13075
  setState({
13014
13076
  latestCampaignKey: campaignKey,
13015
13077
  hasChatOpenedAfterProactiveMessagesShown: false
@@ -13018,7 +13080,7 @@ var Container = /*#__PURE__*/function (_Component) {
13018
13080
  // Only need to load chat for engage campaigns, not free tier (message_text) campaigns
13019
13081
  chatHasBeenRendered: chatHasBeenRendered || !campaign.message_text,
13020
13082
  campaignToTrigger: campaign,
13021
- followUpResponseId: campaign.follow_up_response_id,
13083
+ followUpResponseId: followUpResponseId,
13022
13084
  campaignTriggerOptions: {
13023
13085
  ignoreFrequency: ignoreFrequency,
13024
13086
  ignoreStatus: ignoreStatus
@@ -13722,7 +13784,9 @@ function Container_mapStateToProps(storeState) {
13722
13784
  chatterInLiveChat = storeState.chatterInLiveChat,
13723
13785
  chatDimensions = storeState.chatDimensions,
13724
13786
  isIntroShown = storeState.isIntroShown,
13725
- language = storeState.language;
13787
+ language = storeState.language,
13788
+ wasCampaignShownButNowClosed = storeState.wasCampaignShownButNowClosed,
13789
+ isChatEmpty = storeState.isChatEmpty;
13726
13790
  return {
13727
13791
  client: client,
13728
13792
  hideMask: hideMask,
@@ -13736,7 +13800,9 @@ function Container_mapStateToProps(storeState) {
13736
13800
  chatterInLiveChat: chatterInLiveChat,
13737
13801
  chatDimensions: chatDimensions,
13738
13802
  isIntroShown: isIntroShown,
13739
- language: language
13803
+ language: language,
13804
+ wasCampaignShownButNowClosed: wasCampaignShownButNowClosed,
13805
+ isChatEmpty: isChatEmpty
13740
13806
  };
13741
13807
  }
13742
13808
 
@@ -14302,7 +14368,7 @@ window.__AdaEmbedConstructor = Embed;
14302
14368
  /* harmony export */ });
14303
14369
  var isModern = new RegExp("((CPU[ +]OS|iPhone[ +]OS|CPU[ +]iPhone|CPU IPhone OS)[ +]+(15|(1[6-9]|[2-9]\\d|\\d{3,}))[_.]\\d+(?:[_.]\\d+)?)|((Chromium|Chrome)\\/(97|(9[8-9]|\\d{3,}))\\.\\d+(?:\\.\\d+)?)|(Version\\/(15|(1[6-9]|[2-9]\\d|\\d{3,}))\\.\\d+(?:\\.\\d+)? Safari\\/)|(Firefox\\/(96|(9[7-9]|\\d{3,}))\\.\\d+\\.\\d+)|(Firefox\\/(96|(9[7-9]|\\d{3,}))\\.\\d+(pre|[ab]\\d+[a-z]*)?)").test(navigator.userAgent);
14304
14370
  var isProduction = "production" === "production";
14305
- var embed2Version = "68d18b3";
14371
+ var embed2Version = "1ff8966";
14306
14372
 
14307
14373
  /***/ }),
14308
14374
 
@@ -14644,9 +14710,9 @@ function _log() {
14644
14710
  service: "embed",
14645
14711
  env: "production",
14646
14712
  embedVersion: 2,
14647
- version: "1.0.55",
14713
+ version: "1.0.59",
14648
14714
  isNpm: true,
14649
- commitHash: "68d18b3"
14715
+ commitHash: "1ff8966"
14650
14716
  }))
14651
14717
  });
14652
14718
 
@@ -14660,6 +14726,146 @@ function _log() {
14660
14726
  return _log.apply(this, arguments);
14661
14727
  }
14662
14728
 
14729
+ /***/ }),
14730
+
14731
+ /***/ 93:
14732
+ /***/ (function(module, __unused_webpack_exports, __webpack_require__) {
14733
+
14734
+ var parent = __webpack_require__(8196);
14735
+
14736
+ module.exports = parent;
14737
+
14738
+
14739
+ /***/ }),
14740
+
14741
+ /***/ 5684:
14742
+ /***/ (function(module, __unused_webpack_exports, __webpack_require__) {
14743
+
14744
+ var parent = __webpack_require__(9373);
14745
+
14746
+ module.exports = parent;
14747
+
14748
+
14749
+ /***/ }),
14750
+
14751
+ /***/ 2182:
14752
+ /***/ (function(module, __unused_webpack_exports, __webpack_require__) {
14753
+
14754
+ var parent = __webpack_require__(5868);
14755
+
14756
+ module.exports = parent;
14757
+
14758
+
14759
+ /***/ }),
14760
+
14761
+ /***/ 5362:
14762
+ /***/ (function(module, __unused_webpack_exports, __webpack_require__) {
14763
+
14764
+ var parent = __webpack_require__(3383);
14765
+
14766
+ module.exports = parent;
14767
+
14768
+
14769
+ /***/ }),
14770
+
14771
+ /***/ 2271:
14772
+ /***/ (function(module, __unused_webpack_exports, __webpack_require__) {
14773
+
14774
+ var parent = __webpack_require__(4471);
14775
+
14776
+ module.exports = parent;
14777
+
14778
+
14779
+ /***/ }),
14780
+
14781
+ /***/ 3536:
14782
+ /***/ (function(module, __unused_webpack_exports, __webpack_require__) {
14783
+
14784
+ var parent = __webpack_require__(1910);
14785
+
14786
+ module.exports = parent;
14787
+
14788
+
14789
+ /***/ }),
14790
+
14791
+ /***/ 3151:
14792
+ /***/ (function(module, __unused_webpack_exports, __webpack_require__) {
14793
+
14794
+ var parent = __webpack_require__(9534);
14795
+
14796
+ module.exports = parent;
14797
+
14798
+
14799
+ /***/ }),
14800
+
14801
+ /***/ 9565:
14802
+ /***/ (function(module, __unused_webpack_exports, __webpack_require__) {
14803
+
14804
+ var parent = __webpack_require__(6507);
14805
+
14806
+ module.exports = parent;
14807
+
14808
+
14809
+ /***/ }),
14810
+
14811
+ /***/ 5012:
14812
+ /***/ (function(module, __unused_webpack_exports, __webpack_require__) {
14813
+
14814
+ var parent = __webpack_require__(3059);
14815
+
14816
+ module.exports = parent;
14817
+
14818
+
14819
+ /***/ }),
14820
+
14821
+ /***/ 8690:
14822
+ /***/ (function(module, __unused_webpack_exports, __webpack_require__) {
14823
+
14824
+ var parent = __webpack_require__(6670);
14825
+
14826
+ module.exports = parent;
14827
+
14828
+
14829
+ /***/ }),
14830
+
14831
+ /***/ 5626:
14832
+ /***/ (function(module, __unused_webpack_exports, __webpack_require__) {
14833
+
14834
+ var parent = __webpack_require__(7460);
14835
+
14836
+ module.exports = parent;
14837
+
14838
+
14839
+ /***/ }),
14840
+
14841
+ /***/ 4670:
14842
+ /***/ (function(module, __unused_webpack_exports, __webpack_require__) {
14843
+
14844
+ var parent = __webpack_require__(1895);
14845
+
14846
+ module.exports = parent;
14847
+
14848
+
14849
+ /***/ }),
14850
+
14851
+ /***/ 281:
14852
+ /***/ (function(module, __unused_webpack_exports, __webpack_require__) {
14853
+
14854
+ var parent = __webpack_require__(2547);
14855
+
14856
+ module.exports = parent;
14857
+
14858
+
14859
+ /***/ }),
14860
+
14861
+ /***/ 31:
14862
+ /***/ (function(module, __unused_webpack_exports, __webpack_require__) {
14863
+
14864
+ var parent = __webpack_require__(6509);
14865
+
14866
+ module.exports = parent;
14867
+
14868
+
14663
14869
  /***/ }),
14664
14870
 
14665
14871
  /***/ 5367:
@@ -14764,13 +14970,14 @@ module.exports = entryVirtual('Function').bind;
14764
14970
  /***/ 6246:
14765
14971
  /***/ (function(module, __unused_webpack_exports, __webpack_require__) {
14766
14972
 
14767
- var bind = __webpack_require__(7700);
14973
+ var isPrototypeOf = __webpack_require__(7046);
14974
+ var method = __webpack_require__(7700);
14768
14975
 
14769
14976
  var FunctionPrototype = Function.prototype;
14770
14977
 
14771
14978
  module.exports = function (it) {
14772
14979
  var own = it.bind;
14773
- return it === FunctionPrototype || (it instanceof Function && own === FunctionPrototype.bind) ? bind : own;
14980
+ return it === FunctionPrototype || (isPrototypeOf(FunctionPrototype, it) && own === FunctionPrototype.bind) ? method : own;
14774
14981
  };
14775
14982
 
14776
14983
 
@@ -14779,13 +14986,14 @@ module.exports = function (it) {
14779
14986
  /***/ 6043:
14780
14987
  /***/ (function(module, __unused_webpack_exports, __webpack_require__) {
14781
14988
 
14782
- var concat = __webpack_require__(5367);
14989
+ var isPrototypeOf = __webpack_require__(7046);
14990
+ var method = __webpack_require__(5367);
14783
14991
 
14784
14992
  var ArrayPrototype = Array.prototype;
14785
14993
 
14786
14994
  module.exports = function (it) {
14787
14995
  var own = it.concat;
14788
- return it === ArrayPrototype || (it instanceof Array && own === ArrayPrototype.concat) ? concat : own;
14996
+ return it === ArrayPrototype || (isPrototypeOf(ArrayPrototype, it) && own === ArrayPrototype.concat) ? method : own;
14789
14997
  };
14790
14998
 
14791
14999
 
@@ -14794,14 +15002,15 @@ module.exports = function (it) {
14794
15002
  /***/ 1727:
14795
15003
  /***/ (function(module, __unused_webpack_exports, __webpack_require__) {
14796
15004
 
14797
- var endsWith = __webpack_require__(7796);
15005
+ var isPrototypeOf = __webpack_require__(7046);
15006
+ var method = __webpack_require__(7796);
14798
15007
 
14799
15008
  var StringPrototype = String.prototype;
14800
15009
 
14801
15010
  module.exports = function (it) {
14802
15011
  var own = it.endsWith;
14803
- return typeof it === 'string' || it === StringPrototype
14804
- || (it instanceof String && own === StringPrototype.endsWith) ? endsWith : own;
15012
+ return typeof it == 'string' || it === StringPrototype
15013
+ || (isPrototypeOf(StringPrototype, it) && own === StringPrototype.endsWith) ? method : own;
14805
15014
  };
14806
15015
 
14807
15016
 
@@ -14810,13 +15019,14 @@ module.exports = function (it) {
14810
15019
  /***/ 2480:
14811
15020
  /***/ (function(module, __unused_webpack_exports, __webpack_require__) {
14812
15021
 
14813
- var filter = __webpack_require__(2383);
15022
+ var isPrototypeOf = __webpack_require__(7046);
15023
+ var method = __webpack_require__(2383);
14814
15024
 
14815
15025
  var ArrayPrototype = Array.prototype;
14816
15026
 
14817
15027
  module.exports = function (it) {
14818
15028
  var own = it.filter;
14819
- return it === ArrayPrototype || (it instanceof Array && own === ArrayPrototype.filter) ? filter : own;
15029
+ return it === ArrayPrototype || (isPrototypeOf(ArrayPrototype, it) && own === ArrayPrototype.filter) ? method : own;
14820
15030
  };
14821
15031
 
14822
15032
 
@@ -14825,13 +15035,14 @@ module.exports = function (it) {
14825
15035
  /***/ 2236:
14826
15036
  /***/ (function(module, __unused_webpack_exports, __webpack_require__) {
14827
15037
 
14828
- var find = __webpack_require__(7671);
15038
+ var isPrototypeOf = __webpack_require__(7046);
15039
+ var method = __webpack_require__(7671);
14829
15040
 
14830
15041
  var ArrayPrototype = Array.prototype;
14831
15042
 
14832
15043
  module.exports = function (it) {
14833
15044
  var own = it.find;
14834
- return it === ArrayPrototype || (it instanceof Array && own === ArrayPrototype.find) ? find : own;
15045
+ return it === ArrayPrototype || (isPrototypeOf(ArrayPrototype, it) && own === ArrayPrototype.find) ? method : own;
14835
15046
  };
14836
15047
 
14837
15048
 
@@ -14840,17 +15051,18 @@ module.exports = function (it) {
14840
15051
  /***/ 8557:
14841
15052
  /***/ (function(module, __unused_webpack_exports, __webpack_require__) {
14842
15053
 
14843
- var arrayIncludes = __webpack_require__(991);
14844
- var stringIncludes = __webpack_require__(1631);
15054
+ var isPrototypeOf = __webpack_require__(7046);
15055
+ var arrayMethod = __webpack_require__(991);
15056
+ var stringMethod = __webpack_require__(1631);
14845
15057
 
14846
15058
  var ArrayPrototype = Array.prototype;
14847
15059
  var StringPrototype = String.prototype;
14848
15060
 
14849
15061
  module.exports = function (it) {
14850
15062
  var own = it.includes;
14851
- if (it === ArrayPrototype || (it instanceof Array && own === ArrayPrototype.includes)) return arrayIncludes;
14852
- if (typeof it === 'string' || it === StringPrototype || (it instanceof String && own === StringPrototype.includes)) {
14853
- return stringIncludes;
15063
+ if (it === ArrayPrototype || (isPrototypeOf(ArrayPrototype, it) && own === ArrayPrototype.includes)) return arrayMethod;
15064
+ if (typeof it == 'string' || it === StringPrototype || (isPrototypeOf(StringPrototype, it) && own === StringPrototype.includes)) {
15065
+ return stringMethod;
14854
15066
  } return own;
14855
15067
  };
14856
15068
 
@@ -14860,13 +15072,14 @@ module.exports = function (it) {
14860
15072
  /***/ 4570:
14861
15073
  /***/ (function(module, __unused_webpack_exports, __webpack_require__) {
14862
15074
 
14863
- var indexOf = __webpack_require__(8700);
15075
+ var isPrototypeOf = __webpack_require__(7046);
15076
+ var method = __webpack_require__(8700);
14864
15077
 
14865
15078
  var ArrayPrototype = Array.prototype;
14866
15079
 
14867
15080
  module.exports = function (it) {
14868
15081
  var own = it.indexOf;
14869
- return it === ArrayPrototype || (it instanceof Array && own === ArrayPrototype.indexOf) ? indexOf : own;
15082
+ return it === ArrayPrototype || (isPrototypeOf(ArrayPrototype, it) && own === ArrayPrototype.indexOf) ? method : own;
14870
15083
  };
14871
15084
 
14872
15085
 
@@ -14875,13 +15088,14 @@ module.exports = function (it) {
14875
15088
  /***/ 8287:
14876
15089
  /***/ (function(module, __unused_webpack_exports, __webpack_require__) {
14877
15090
 
14878
- var map = __webpack_require__(3866);
15091
+ var isPrototypeOf = __webpack_require__(7046);
15092
+ var method = __webpack_require__(3866);
14879
15093
 
14880
15094
  var ArrayPrototype = Array.prototype;
14881
15095
 
14882
15096
  module.exports = function (it) {
14883
15097
  var own = it.map;
14884
- return it === ArrayPrototype || (it instanceof Array && own === ArrayPrototype.map) ? map : own;
15098
+ return it === ArrayPrototype || (isPrototypeOf(ArrayPrototype, it) && own === ArrayPrototype.map) ? method : own;
14885
15099
  };
14886
15100
 
14887
15101
 
@@ -14890,13 +15104,14 @@ module.exports = function (it) {
14890
15104
  /***/ 8025:
14891
15105
  /***/ (function(module, __unused_webpack_exports, __webpack_require__) {
14892
15106
 
14893
- var reduce = __webpack_require__(2999);
15107
+ var isPrototypeOf = __webpack_require__(7046);
15108
+ var method = __webpack_require__(2999);
14894
15109
 
14895
15110
  var ArrayPrototype = Array.prototype;
14896
15111
 
14897
15112
  module.exports = function (it) {
14898
15113
  var own = it.reduce;
14899
- return it === ArrayPrototype || (it instanceof Array && own === ArrayPrototype.reduce) ? reduce : own;
15114
+ return it === ArrayPrototype || (isPrototypeOf(ArrayPrototype, it) && own === ArrayPrototype.reduce) ? method : own;
14900
15115
  };
14901
15116
 
14902
15117
 
@@ -14905,13 +15120,14 @@ module.exports = function (it) {
14905
15120
  /***/ 9601:
14906
15121
  /***/ (function(module, __unused_webpack_exports, __webpack_require__) {
14907
15122
 
14908
- var slice = __webpack_require__(4900);
15123
+ var isPrototypeOf = __webpack_require__(7046);
15124
+ var method = __webpack_require__(4900);
14909
15125
 
14910
15126
  var ArrayPrototype = Array.prototype;
14911
15127
 
14912
15128
  module.exports = function (it) {
14913
15129
  var own = it.slice;
14914
- return it === ArrayPrototype || (it instanceof Array && own === ArrayPrototype.slice) ? slice : own;
15130
+ return it === ArrayPrototype || (isPrototypeOf(ArrayPrototype, it) && own === ArrayPrototype.slice) ? method : own;
14915
15131
  };
14916
15132
 
14917
15133
 
@@ -14920,14 +15136,15 @@ module.exports = function (it) {
14920
15136
  /***/ 1611:
14921
15137
  /***/ (function(module, __unused_webpack_exports, __webpack_require__) {
14922
15138
 
14923
- var startsWith = __webpack_require__(3269);
15139
+ var isPrototypeOf = __webpack_require__(7046);
15140
+ var method = __webpack_require__(3269);
14924
15141
 
14925
15142
  var StringPrototype = String.prototype;
14926
15143
 
14927
15144
  module.exports = function (it) {
14928
15145
  var own = it.startsWith;
14929
- return typeof it === 'string' || it === StringPrototype
14930
- || (it instanceof String && own === StringPrototype.startsWith) ? startsWith : own;
15146
+ return typeof it == 'string' || it === StringPrototype
15147
+ || (isPrototypeOf(StringPrototype, it) && own === StringPrototype.startsWith) ? method : own;
14931
15148
  };
14932
15149
 
14933
15150
 
@@ -14936,14 +15153,15 @@ module.exports = function (it) {
14936
15153
  /***/ 2774:
14937
15154
  /***/ (function(module, __unused_webpack_exports, __webpack_require__) {
14938
15155
 
14939
- var trim = __webpack_require__(3348);
15156
+ var isPrototypeOf = __webpack_require__(7046);
15157
+ var method = __webpack_require__(3348);
14940
15158
 
14941
15159
  var StringPrototype = String.prototype;
14942
15160
 
14943
15161
  module.exports = function (it) {
14944
15162
  var own = it.trim;
14945
- return typeof it === 'string' || it === StringPrototype
14946
- || (it instanceof String && own === StringPrototype.trim) ? trim : own;
15163
+ return typeof it == 'string' || it === StringPrototype
15164
+ || (isPrototypeOf(StringPrototype, it) && own === StringPrototype.trim) ? method : own;
14947
15165
  };
14948
15166
 
14949
15167
 
@@ -14953,14 +15171,15 @@ module.exports = function (it) {
14953
15171
  /***/ (function(module, __unused_webpack_exports, __webpack_require__) {
14954
15172
 
14955
15173
  __webpack_require__(2619);
14956
- var core = __webpack_require__(4058);
15174
+ var path = __webpack_require__(4058);
15175
+ var apply = __webpack_require__(9730);
14957
15176
 
14958
15177
  // eslint-disable-next-line es/no-json -- safe
14959
- if (!core.JSON) core.JSON = { stringify: JSON.stringify };
15178
+ if (!path.JSON) path.JSON = { stringify: JSON.stringify };
14960
15179
 
14961
15180
  // eslint-disable-next-line no-unused-vars -- required for `.length`
14962
15181
  module.exports = function stringify(it, replacer, space) {
14963
- return core.JSON.stringify.apply(null, arguments);
15182
+ return apply(path.JSON.stringify, null, arguments);
14964
15183
  };
14965
15184
 
14966
15185
 
@@ -15268,7 +15487,7 @@ module.exports = WrappedWellKnownSymbolModule.f('iterator');
15268
15487
  /***/ 4122:
15269
15488
  /***/ (function(module, __unused_webpack_exports, __webpack_require__) {
15270
15489
 
15271
- var parent = __webpack_require__(8196);
15490
+ var parent = __webpack_require__(93);
15272
15491
 
15273
15492
  module.exports = parent;
15274
15493
 
@@ -15278,7 +15497,7 @@ module.exports = parent;
15278
15497
  /***/ 9447:
15279
15498
  /***/ (function(module, __unused_webpack_exports, __webpack_require__) {
15280
15499
 
15281
- var parent = __webpack_require__(9373);
15500
+ var parent = __webpack_require__(5684);
15282
15501
 
15283
15502
  module.exports = parent;
15284
15503
 
@@ -15288,7 +15507,7 @@ module.exports = parent;
15288
15507
  /***/ 6672:
15289
15508
  /***/ (function(module, __unused_webpack_exports, __webpack_require__) {
15290
15509
 
15291
- var parent = __webpack_require__(5868);
15510
+ var parent = __webpack_require__(2182);
15292
15511
  __webpack_require__(2453);
15293
15512
  __webpack_require__(2523);
15294
15513
  __webpack_require__(6591);
@@ -15320,7 +15539,7 @@ module.exports = parent;
15320
15539
  /***/ 269:
15321
15540
  /***/ (function(module, __unused_webpack_exports, __webpack_require__) {
15322
15541
 
15323
- var parent = __webpack_require__(3383);
15542
+ var parent = __webpack_require__(5362);
15324
15543
 
15325
15544
  module.exports = parent;
15326
15545
 
@@ -15330,7 +15549,7 @@ module.exports = parent;
15330
15549
  /***/ 6094:
15331
15550
  /***/ (function(module, __unused_webpack_exports, __webpack_require__) {
15332
15551
 
15333
- var parent = __webpack_require__(4471);
15552
+ var parent = __webpack_require__(2271);
15334
15553
 
15335
15554
  module.exports = parent;
15336
15555
 
@@ -15340,7 +15559,7 @@ module.exports = parent;
15340
15559
  /***/ 3685:
15341
15560
  /***/ (function(module, __unused_webpack_exports, __webpack_require__) {
15342
15561
 
15343
- var parent = __webpack_require__(1910);
15562
+ var parent = __webpack_require__(3536);
15344
15563
 
15345
15564
  module.exports = parent;
15346
15565
 
@@ -15350,7 +15569,7 @@ module.exports = parent;
15350
15569
  /***/ 4710:
15351
15570
  /***/ (function(module, __unused_webpack_exports, __webpack_require__) {
15352
15571
 
15353
- var parent = __webpack_require__(9534);
15572
+ var parent = __webpack_require__(3151);
15354
15573
 
15355
15574
  module.exports = parent;
15356
15575
 
@@ -15360,7 +15579,7 @@ module.exports = parent;
15360
15579
  /***/ 4303:
15361
15580
  /***/ (function(module, __unused_webpack_exports, __webpack_require__) {
15362
15581
 
15363
- var parent = __webpack_require__(6507);
15582
+ var parent = __webpack_require__(9565);
15364
15583
 
15365
15584
  module.exports = parent;
15366
15585
 
@@ -15370,7 +15589,7 @@ module.exports = parent;
15370
15589
  /***/ 3799:
15371
15590
  /***/ (function(module, __unused_webpack_exports, __webpack_require__) {
15372
15591
 
15373
- var parent = __webpack_require__(3059);
15592
+ var parent = __webpack_require__(5012);
15374
15593
 
15375
15594
  module.exports = parent;
15376
15595
 
@@ -15380,7 +15599,7 @@ module.exports = parent;
15380
15599
  /***/ 5122:
15381
15600
  /***/ (function(module, __unused_webpack_exports, __webpack_require__) {
15382
15601
 
15383
- var parent = __webpack_require__(6670);
15602
+ var parent = __webpack_require__(8690);
15384
15603
 
15385
15604
  module.exports = parent;
15386
15605
 
@@ -15390,7 +15609,7 @@ module.exports = parent;
15390
15609
  /***/ 9531:
15391
15610
  /***/ (function(module, __unused_webpack_exports, __webpack_require__) {
15392
15611
 
15393
- var parent = __webpack_require__(7460);
15612
+ var parent = __webpack_require__(5626);
15394
15613
  __webpack_require__(9731);
15395
15614
  // TODO: Remove from `core-js@4`
15396
15615
  __webpack_require__(5708);
@@ -15405,7 +15624,7 @@ module.exports = parent;
15405
15624
  /***/ 856:
15406
15625
  /***/ (function(module, __unused_webpack_exports, __webpack_require__) {
15407
15626
 
15408
- var parent = __webpack_require__(1895);
15627
+ var parent = __webpack_require__(4670);
15409
15628
 
15410
15629
  module.exports = parent;
15411
15630
 
@@ -15415,7 +15634,7 @@ module.exports = parent;
15415
15634
  /***/ 6600:
15416
15635
  /***/ (function(module, __unused_webpack_exports, __webpack_require__) {
15417
15636
 
15418
- var parent = __webpack_require__(2547);
15637
+ var parent = __webpack_require__(281);
15419
15638
  __webpack_require__(8783);
15420
15639
  __webpack_require__(3975);
15421
15640
  __webpack_require__(5799);
@@ -15434,7 +15653,7 @@ module.exports = parent;
15434
15653
  /***/ 9759:
15435
15654
  /***/ (function(module, __unused_webpack_exports, __webpack_require__) {
15436
15655
 
15437
- var parent = __webpack_require__(6509);
15656
+ var parent = __webpack_require__(31);
15438
15657
 
15439
15658
  module.exports = parent;
15440
15659
 
@@ -15444,9 +15663,12 @@ module.exports = parent;
15444
15663
  /***/ 4883:
15445
15664
  /***/ (function(module, __unused_webpack_exports, __webpack_require__) {
15446
15665
 
15666
+ var global = __webpack_require__(1899);
15447
15667
  var isCallable = __webpack_require__(7475);
15448
15668
  var tryToString = __webpack_require__(9826);
15449
15669
 
15670
+ var TypeError = global.TypeError;
15671
+
15450
15672
  // `Assert: IsCallable(argument) is true`
15451
15673
  module.exports = function (argument) {
15452
15674
  if (isCallable(argument)) return argument;
@@ -15459,9 +15681,12 @@ module.exports = function (argument) {
15459
15681
  /***/ 174:
15460
15682
  /***/ (function(module, __unused_webpack_exports, __webpack_require__) {
15461
15683
 
15684
+ var global = __webpack_require__(1899);
15462
15685
  var isConstructor = __webpack_require__(4284);
15463
15686
  var tryToString = __webpack_require__(9826);
15464
15687
 
15688
+ var TypeError = global.TypeError;
15689
+
15465
15690
  // `Assert: IsConstructor(argument) is true`
15466
15691
  module.exports = function (argument) {
15467
15692
  if (isConstructor(argument)) return argument;
@@ -15474,10 +15699,14 @@ module.exports = function (argument) {
15474
15699
  /***/ 1851:
15475
15700
  /***/ (function(module, __unused_webpack_exports, __webpack_require__) {
15476
15701
 
15702
+ var global = __webpack_require__(1899);
15477
15703
  var isCallable = __webpack_require__(7475);
15478
15704
 
15705
+ var String = global.String;
15706
+ var TypeError = global.TypeError;
15707
+
15479
15708
  module.exports = function (argument) {
15480
- if (typeof argument === 'object' || isCallable(argument)) return argument;
15709
+ if (typeof argument == 'object' || isCallable(argument)) return argument;
15481
15710
  throw TypeError("Can't set " + String(argument) + ' as a prototype');
15482
15711
  };
15483
15712
 
@@ -15493,11 +15722,16 @@ module.exports = function () { /* empty */ };
15493
15722
  /***/ }),
15494
15723
 
15495
15724
  /***/ 5743:
15496
- /***/ (function(module) {
15725
+ /***/ (function(module, __unused_webpack_exports, __webpack_require__) {
15497
15726
 
15498
- module.exports = function (it, Constructor, name) {
15499
- if (it instanceof Constructor) return it;
15500
- throw TypeError('Incorrect ' + (name ? name + ' ' : '') + 'invocation');
15727
+ var global = __webpack_require__(1899);
15728
+ var isPrototypeOf = __webpack_require__(7046);
15729
+
15730
+ var TypeError = global.TypeError;
15731
+
15732
+ module.exports = function (it, Prototype) {
15733
+ if (isPrototypeOf(Prototype, it)) return it;
15734
+ throw TypeError('Incorrect invocation');
15501
15735
  };
15502
15736
 
15503
15737
 
@@ -15506,8 +15740,12 @@ module.exports = function (it, Constructor, name) {
15506
15740
  /***/ 6059:
15507
15741
  /***/ (function(module, __unused_webpack_exports, __webpack_require__) {
15508
15742
 
15743
+ var global = __webpack_require__(1899);
15509
15744
  var isObject = __webpack_require__(941);
15510
15745
 
15746
+ var String = global.String;
15747
+ var TypeError = global.TypeError;
15748
+
15511
15749
  // `Assert: Type(argument) is Object`
15512
15750
  module.exports = function (argument) {
15513
15751
  if (isObject(argument)) return argument;
@@ -15515,6 +15753,23 @@ module.exports = function (argument) {
15515
15753
  };
15516
15754
 
15517
15755
 
15756
+ /***/ }),
15757
+
15758
+ /***/ 7135:
15759
+ /***/ (function(module, __unused_webpack_exports, __webpack_require__) {
15760
+
15761
+ // FF26- bug: ArrayBuffers are non-extensible, but Object.isExtensible does not report it
15762
+ var fails = __webpack_require__(5981);
15763
+
15764
+ module.exports = fails(function () {
15765
+ if (typeof ArrayBuffer == 'function') {
15766
+ var buffer = new ArrayBuffer(8);
15767
+ // eslint-disable-next-line es/no-object-isextensible, es/no-object-defineproperty -- safe
15768
+ if (Object.isExtensible(buffer)) Object.defineProperty(buffer, 'a', { value: 8 });
15769
+ }
15770
+ });
15771
+
15772
+
15518
15773
  /***/ }),
15519
15774
 
15520
15775
  /***/ 1692:
@@ -15560,12 +15815,13 @@ module.exports = {
15560
15815
  /***/ (function(module, __unused_webpack_exports, __webpack_require__) {
15561
15816
 
15562
15817
  var bind = __webpack_require__(6843);
15818
+ var uncurryThis = __webpack_require__(5329);
15563
15819
  var IndexedObject = __webpack_require__(7026);
15564
15820
  var toObject = __webpack_require__(9678);
15565
15821
  var lengthOfArrayLike = __webpack_require__(623);
15566
15822
  var arraySpeciesCreate = __webpack_require__(4692);
15567
15823
 
15568
- var push = [].push;
15824
+ var push = uncurryThis([].push);
15569
15825
 
15570
15826
  // `Array.prototype.{ forEach, map, filter, some, every, find, findIndex, filterReject }` methods implementation
15571
15827
  var createMethod = function (TYPE) {
@@ -15579,7 +15835,7 @@ var createMethod = function (TYPE) {
15579
15835
  return function ($this, callbackfn, that, specificCreate) {
15580
15836
  var O = toObject($this);
15581
15837
  var self = IndexedObject(O);
15582
- var boundFunction = bind(callbackfn, that, 3);
15838
+ var boundFunction = bind(callbackfn, that);
15583
15839
  var length = lengthOfArrayLike(self);
15584
15840
  var index = 0;
15585
15841
  var create = specificCreate || arraySpeciesCreate;
@@ -15594,10 +15850,10 @@ var createMethod = function (TYPE) {
15594
15850
  case 3: return true; // some
15595
15851
  case 5: return value; // find
15596
15852
  case 6: return index; // findIndex
15597
- case 2: push.call(target, value); // filter
15853
+ case 2: push(target, value); // filter
15598
15854
  } else switch (TYPE) {
15599
15855
  case 4: return false; // every
15600
- case 7: push.call(target, value); // filterReject
15856
+ case 7: push(target, value); // filterReject
15601
15857
  }
15602
15858
  }
15603
15859
  }
@@ -15682,11 +15938,14 @@ module.exports = function (METHOD_NAME, argument) {
15682
15938
  /***/ 6499:
15683
15939
  /***/ (function(module, __unused_webpack_exports, __webpack_require__) {
15684
15940
 
15941
+ var global = __webpack_require__(1899);
15685
15942
  var aCallable = __webpack_require__(4883);
15686
15943
  var toObject = __webpack_require__(9678);
15687
15944
  var IndexedObject = __webpack_require__(7026);
15688
15945
  var lengthOfArrayLike = __webpack_require__(623);
15689
15946
 
15947
+ var TypeError = global.TypeError;
15948
+
15690
15949
  // `Array.prototype.{ reduce, reduceRight }` methods implementation
15691
15950
  var createMethod = function (IS_RIGHT) {
15692
15951
  return function (that, callbackfn, argumentsLength, memo) {
@@ -15724,17 +15983,53 @@ module.exports = {
15724
15983
  };
15725
15984
 
15726
15985
 
15986
+ /***/ }),
15987
+
15988
+ /***/ 5790:
15989
+ /***/ (function(module, __unused_webpack_exports, __webpack_require__) {
15990
+
15991
+ var global = __webpack_require__(1899);
15992
+ var toAbsoluteIndex = __webpack_require__(9413);
15993
+ var lengthOfArrayLike = __webpack_require__(623);
15994
+ var createProperty = __webpack_require__(5449);
15995
+
15996
+ var Array = global.Array;
15997
+ var max = Math.max;
15998
+
15999
+ module.exports = function (O, start, end) {
16000
+ var length = lengthOfArrayLike(O);
16001
+ var k = toAbsoluteIndex(start, length);
16002
+ var fin = toAbsoluteIndex(end === undefined ? length : end, length);
16003
+ var result = Array(max(fin - k, 0));
16004
+ for (var n = 0; k < fin; k++, n++) createProperty(result, n, O[k]);
16005
+ result.length = n;
16006
+ return result;
16007
+ };
16008
+
16009
+
16010
+ /***/ }),
16011
+
16012
+ /***/ 3765:
16013
+ /***/ (function(module, __unused_webpack_exports, __webpack_require__) {
16014
+
16015
+ var uncurryThis = __webpack_require__(5329);
16016
+
16017
+ module.exports = uncurryThis([].slice);
16018
+
16019
+
15727
16020
  /***/ }),
15728
16021
 
15729
16022
  /***/ 5693:
15730
16023
  /***/ (function(module, __unused_webpack_exports, __webpack_require__) {
15731
16024
 
16025
+ var global = __webpack_require__(1899);
15732
16026
  var isArray = __webpack_require__(1052);
15733
16027
  var isConstructor = __webpack_require__(4284);
15734
16028
  var isObject = __webpack_require__(941);
15735
16029
  var wellKnownSymbol = __webpack_require__(9813);
15736
16030
 
15737
16031
  var SPECIES = wellKnownSymbol('species');
16032
+ var Array = global.Array;
15738
16033
 
15739
16034
  // a part of `ArraySpeciesCreate` abstract operation
15740
16035
  // https://tc39.es/ecma262/#sec-arrayspeciescreate
@@ -15814,12 +16109,15 @@ module.exports = function (exec, SKIP_CLOSING) {
15814
16109
  /***/ }),
15815
16110
 
15816
16111
  /***/ 2532:
15817
- /***/ (function(module) {
16112
+ /***/ (function(module, __unused_webpack_exports, __webpack_require__) {
16113
+
16114
+ var uncurryThis = __webpack_require__(5329);
15818
16115
 
15819
- var toString = {}.toString;
16116
+ var toString = uncurryThis({}.toString);
16117
+ var stringSlice = uncurryThis(''.slice);
15820
16118
 
15821
16119
  module.exports = function (it) {
15822
- return toString.call(it).slice(8, -1);
16120
+ return stringSlice(toString(it), 8, -1);
15823
16121
  };
15824
16122
 
15825
16123
 
@@ -15828,12 +16126,15 @@ module.exports = function (it) {
15828
16126
  /***/ 9697:
15829
16127
  /***/ (function(module, __unused_webpack_exports, __webpack_require__) {
15830
16128
 
16129
+ var global = __webpack_require__(1899);
15831
16130
  var TO_STRING_TAG_SUPPORT = __webpack_require__(2885);
15832
16131
  var isCallable = __webpack_require__(7475);
15833
16132
  var classofRaw = __webpack_require__(2532);
15834
16133
  var wellKnownSymbol = __webpack_require__(9813);
15835
16134
 
15836
16135
  var TO_STRING_TAG = wellKnownSymbol('toStringTag');
16136
+ var Object = global.Object;
16137
+
15837
16138
  // ES3 wrong here
15838
16139
  var CORRECT_ARGUMENTS = classofRaw(function () { return arguments; }()) == 'Arguments';
15839
16140
 
@@ -15857,6 +16158,26 @@ module.exports = TO_STRING_TAG_SUPPORT ? classofRaw : function (it) {
15857
16158
  };
15858
16159
 
15859
16160
 
16161
+ /***/ }),
16162
+
16163
+ /***/ 8694:
16164
+ /***/ (function(module, __unused_webpack_exports, __webpack_require__) {
16165
+
16166
+ var uncurryThis = __webpack_require__(5329);
16167
+
16168
+ var replace = uncurryThis(''.replace);
16169
+
16170
+ var TEST = (function (arg) { return String(Error(arg).stack); })('zxcasd');
16171
+ var V8_OR_CHAKRA_STACK_ENTRY = /\n\s*at [^:]*:[^\n]*/;
16172
+ var IS_V8_OR_CHAKRA_STACK = V8_OR_CHAKRA_STACK_ENTRY.test(TEST);
16173
+
16174
+ module.exports = function (stack, dropEntries) {
16175
+ if (IS_V8_OR_CHAKRA_STACK && typeof stack == 'string') {
16176
+ while (dropEntries--) stack = replace(stack, V8_OR_CHAKRA_STACK_ENTRY, '');
16177
+ } return stack;
16178
+ };
16179
+
16180
+
15860
16181
  /***/ }),
15861
16182
 
15862
16183
  /***/ 8984:
@@ -15864,17 +16185,18 @@ module.exports = TO_STRING_TAG_SUPPORT ? classofRaw : function (it) {
15864
16185
 
15865
16186
  "use strict";
15866
16187
 
16188
+ var call = __webpack_require__(8834);
15867
16189
  var aCallable = __webpack_require__(4883);
15868
16190
  var anObject = __webpack_require__(6059);
15869
16191
 
15870
16192
  // https://github.com/tc39/collection-methods
15871
- module.exports = function (/* ...elements */) {
16193
+ module.exports = function deleteAll(/* ...elements */) {
15872
16194
  var collection = anObject(this);
15873
16195
  var remover = aCallable(collection['delete']);
15874
16196
  var allDeleted = true;
15875
16197
  var wasDeleted;
15876
16198
  for (var k = 0, len = arguments.length; k < len; k++) {
15877
- wasDeleted = remover.call(collection, arguments[k]);
16199
+ wasDeleted = call(remover, collection, arguments[k]);
15878
16200
  allDeleted = allDeleted && wasDeleted;
15879
16201
  }
15880
16202
  return !!allDeleted;
@@ -15889,11 +16211,14 @@ module.exports = function (/* ...elements */) {
15889
16211
  "use strict";
15890
16212
 
15891
16213
  // https://tc39.github.io/proposal-setmap-offrom/
16214
+ var bind = __webpack_require__(6843);
16215
+ var call = __webpack_require__(8834);
15892
16216
  var aCallable = __webpack_require__(4883);
15893
16217
  var aConstructor = __webpack_require__(174);
15894
- var bind = __webpack_require__(6843);
15895
16218
  var iterate = __webpack_require__(3091);
15896
16219
 
16220
+ var push = [].push;
16221
+
15897
16222
  module.exports = function from(source /* , mapFn, thisArg */) {
15898
16223
  var length = arguments.length;
15899
16224
  var mapFn = length > 1 ? arguments[1] : undefined;
@@ -15905,12 +16230,12 @@ module.exports = function from(source /* , mapFn, thisArg */) {
15905
16230
  array = [];
15906
16231
  if (mapping) {
15907
16232
  n = 0;
15908
- boundFunction = bind(mapFn, length > 2 ? arguments[2] : undefined, 2);
16233
+ boundFunction = bind(mapFn, length > 2 ? arguments[2] : undefined);
15909
16234
  iterate(source, function (nextItem) {
15910
- array.push(boundFunction(nextItem, n++));
16235
+ call(push, array, boundFunction(nextItem, n++));
15911
16236
  });
15912
16237
  } else {
15913
- iterate(source, array.push, { that: array });
16238
+ iterate(source, push, { that: array });
15914
16239
  }
15915
16240
  return new this(array);
15916
16241
  };
@@ -15919,16 +16244,15 @@ module.exports = function from(source /* , mapFn, thisArg */) {
15919
16244
  /***/ }),
15920
16245
 
15921
16246
  /***/ 5226:
15922
- /***/ (function(module) {
16247
+ /***/ (function(module, __unused_webpack_exports, __webpack_require__) {
15923
16248
 
15924
16249
  "use strict";
15925
16250
 
16251
+ var arraySlice = __webpack_require__(3765);
16252
+
15926
16253
  // https://tc39.github.io/proposal-setmap-offrom/
15927
16254
  module.exports = function of() {
15928
- var length = arguments.length;
15929
- var A = new Array(length);
15930
- while (length--) A[length] = arguments[length];
15931
- return new this(A);
16255
+ return new this(arraySlice(arguments));
15932
16256
  };
15933
16257
 
15934
16258
 
@@ -15956,8 +16280,8 @@ var internalStateGetterFor = InternalStateModule.getterFor;
15956
16280
 
15957
16281
  module.exports = {
15958
16282
  getConstructor: function (wrapper, CONSTRUCTOR_NAME, IS_MAP, ADDER) {
15959
- var C = wrapper(function (that, iterable) {
15960
- anInstance(that, C, CONSTRUCTOR_NAME);
16283
+ var Constructor = wrapper(function (that, iterable) {
16284
+ anInstance(that, Prototype);
15961
16285
  setInternalState(that, {
15962
16286
  type: CONSTRUCTOR_NAME,
15963
16287
  index: create(null),
@@ -15969,6 +16293,8 @@ module.exports = {
15969
16293
  if (iterable != undefined) iterate(iterable, that[ADDER], { that: that, AS_ENTRIES: IS_MAP });
15970
16294
  });
15971
16295
 
16296
+ var Prototype = Constructor.prototype;
16297
+
15972
16298
  var getInternalState = internalStateGetterFor(CONSTRUCTOR_NAME);
15973
16299
 
15974
16300
  var define = function (that, key, value) {
@@ -16009,7 +16335,7 @@ module.exports = {
16009
16335
  }
16010
16336
  };
16011
16337
 
16012
- redefineAll(C.prototype, {
16338
+ redefineAll(Prototype, {
16013
16339
  // `{ Map, Set }.prototype.clear()` methods
16014
16340
  // https://tc39.es/ecma262/#sec-map.prototype.clear
16015
16341
  // https://tc39.es/ecma262/#sec-set.prototype.clear
@@ -16053,7 +16379,7 @@ module.exports = {
16053
16379
  // https://tc39.es/ecma262/#sec-set.prototype.foreach
16054
16380
  forEach: function forEach(callbackfn /* , that = undefined */) {
16055
16381
  var state = getInternalState(this);
16056
- var boundFunction = bind(callbackfn, arguments.length > 1 ? arguments[1] : undefined, 3);
16382
+ var boundFunction = bind(callbackfn, arguments.length > 1 ? arguments[1] : undefined);
16057
16383
  var entry;
16058
16384
  while (entry = entry ? entry.next : state.first) {
16059
16385
  boundFunction(entry.value, entry.key, this);
@@ -16069,7 +16395,7 @@ module.exports = {
16069
16395
  }
16070
16396
  });
16071
16397
 
16072
- redefineAll(C.prototype, IS_MAP ? {
16398
+ redefineAll(Prototype, IS_MAP ? {
16073
16399
  // `Map.prototype.get(key)` method
16074
16400
  // https://tc39.es/ecma262/#sec-map.prototype.get
16075
16401
  get: function get(key) {
@@ -16088,14 +16414,14 @@ module.exports = {
16088
16414
  return define(this, value = value === 0 ? 0 : value, value);
16089
16415
  }
16090
16416
  });
16091
- if (DESCRIPTORS) defineProperty(C.prototype, 'size', {
16417
+ if (DESCRIPTORS) defineProperty(Prototype, 'size', {
16092
16418
  get: function () {
16093
16419
  return getInternalState(this).size;
16094
16420
  }
16095
16421
  });
16096
- return C;
16422
+ return Constructor;
16097
16423
  },
16098
- setStrong: function (C, CONSTRUCTOR_NAME, IS_MAP) {
16424
+ setStrong: function (Constructor, CONSTRUCTOR_NAME, IS_MAP) {
16099
16425
  var ITERATOR_NAME = CONSTRUCTOR_NAME + ' Iterator';
16100
16426
  var getInternalCollectionState = internalStateGetterFor(CONSTRUCTOR_NAME);
16101
16427
  var getInternalIteratorState = internalStateGetterFor(ITERATOR_NAME);
@@ -16108,7 +16434,7 @@ module.exports = {
16108
16434
  // https://tc39.es/ecma262/#sec-set.prototype.keys
16109
16435
  // https://tc39.es/ecma262/#sec-set.prototype.values
16110
16436
  // https://tc39.es/ecma262/#sec-set.prototype-@@iterator
16111
- defineIterator(C, CONSTRUCTOR_NAME, function (iterated, kind) {
16437
+ defineIterator(Constructor, CONSTRUCTOR_NAME, function (iterated, kind) {
16112
16438
  setInternalState(this, {
16113
16439
  type: ITERATOR_NAME,
16114
16440
  target: iterated,
@@ -16184,19 +16510,21 @@ module.exports = function (CONSTRUCTOR_NAME, wrapper, common) {
16184
16510
  InternalMetadataModule.enable();
16185
16511
  } else {
16186
16512
  Constructor = wrapper(function (target, iterable) {
16187
- setInternalState(anInstance(target, Constructor, CONSTRUCTOR_NAME), {
16513
+ setInternalState(anInstance(target, Prototype), {
16188
16514
  type: CONSTRUCTOR_NAME,
16189
16515
  collection: new NativeConstructor()
16190
16516
  });
16191
16517
  if (iterable != undefined) iterate(iterable, target[ADDER], { that: target, AS_ENTRIES: IS_MAP });
16192
16518
  });
16193
16519
 
16520
+ var Prototype = Constructor.prototype;
16521
+
16194
16522
  var getInternalState = internalStateGetterFor(CONSTRUCTOR_NAME);
16195
16523
 
16196
16524
  forEach(['add', 'clear', 'delete', 'forEach', 'get', 'has', 'set', 'keys', 'values', 'entries'], function (KEY) {
16197
16525
  var IS_ADDER = KEY == 'add' || KEY == 'set';
16198
16526
  if (KEY in NativePrototype && !(IS_WEAK && KEY == 'clear')) {
16199
- createNonEnumerableProperty(Constructor.prototype, KEY, function (a, b) {
16527
+ createNonEnumerableProperty(Prototype, KEY, function (a, b) {
16200
16528
  var collection = getInternalState(this).collection;
16201
16529
  if (!IS_ADDER && IS_WEAK && !isObject(a)) return KEY == 'get' ? undefined : false;
16202
16530
  var result = collection[KEY](a === 0 ? 0 : a, b);
@@ -16205,7 +16533,7 @@ module.exports = function (CONSTRUCTOR_NAME, wrapper, common) {
16205
16533
  }
16206
16534
  });
16207
16535
 
16208
- IS_WEAK || defineProperty(Constructor.prototype, 'size', {
16536
+ IS_WEAK || defineProperty(Prototype, 'size', {
16209
16537
  configurable: true,
16210
16538
  get: function () {
16211
16539
  return getInternalState(this).collection.size;
@@ -16224,6 +16552,29 @@ module.exports = function (CONSTRUCTOR_NAME, wrapper, common) {
16224
16552
  };
16225
16553
 
16226
16554
 
16555
+ /***/ }),
16556
+
16557
+ /***/ 3489:
16558
+ /***/ (function(module, __unused_webpack_exports, __webpack_require__) {
16559
+
16560
+ var hasOwn = __webpack_require__(953);
16561
+ var ownKeys = __webpack_require__(1136);
16562
+ var getOwnPropertyDescriptorModule = __webpack_require__(9677);
16563
+ var definePropertyModule = __webpack_require__(5988);
16564
+
16565
+ module.exports = function (target, source, exceptions) {
16566
+ var keys = ownKeys(source);
16567
+ var defineProperty = definePropertyModule.f;
16568
+ var getOwnPropertyDescriptor = getOwnPropertyDescriptorModule.f;
16569
+ for (var i = 0; i < keys.length; i++) {
16570
+ var key = keys[i];
16571
+ if (!hasOwn(target, key) && !(exceptions && hasOwn(exceptions, key))) {
16572
+ defineProperty(target, key, getOwnPropertyDescriptor(source, key));
16573
+ }
16574
+ }
16575
+ };
16576
+
16577
+
16227
16578
  /***/ }),
16228
16579
 
16229
16580
  /***/ 7772:
@@ -16276,9 +16627,9 @@ var Iterators = __webpack_require__(2077);
16276
16627
 
16277
16628
  var returnThis = function () { return this; };
16278
16629
 
16279
- module.exports = function (IteratorConstructor, NAME, next) {
16630
+ module.exports = function (IteratorConstructor, NAME, next, ENUMERABLE_NEXT) {
16280
16631
  var TO_STRING_TAG = NAME + ' Iterator';
16281
- IteratorConstructor.prototype = create(IteratorPrototype, { next: createPropertyDescriptor(1, next) });
16632
+ IteratorConstructor.prototype = create(IteratorPrototype, { next: createPropertyDescriptor(+!ENUMERABLE_NEXT, next) });
16282
16633
  setToStringTag(IteratorConstructor, TO_STRING_TAG, false, true);
16283
16634
  Iterators[TO_STRING_TAG] = returnThis;
16284
16635
  return IteratorConstructor;
@@ -16343,6 +16694,7 @@ module.exports = function (object, key, value) {
16343
16694
  "use strict";
16344
16695
 
16345
16696
  var $ = __webpack_require__(6887);
16697
+ var call = __webpack_require__(8834);
16346
16698
  var IS_PURE = __webpack_require__(2529);
16347
16699
  var FunctionName = __webpack_require__(9417);
16348
16700
  var isCallable = __webpack_require__(7475);
@@ -16413,7 +16765,7 @@ module.exports = function (Iterable, NAME, IteratorConstructor, next, DEFAULT, I
16413
16765
  createNonEnumerableProperty(IterablePrototype, 'name', VALUES);
16414
16766
  } else {
16415
16767
  INCORRECT_VALUES_NAME = true;
16416
- defaultIterator = function values() { return nativeIterator.call(this); };
16768
+ defaultIterator = function values() { return call(nativeIterator, this); };
16417
16769
  }
16418
16770
  }
16419
16771
 
@@ -16608,16 +16960,22 @@ var match, version;
16608
16960
 
16609
16961
  if (v8) {
16610
16962
  match = v8.split('.');
16611
- version = match[0] < 4 ? 1 : match[0] + match[1];
16612
- } else if (userAgent) {
16963
+ // in old Chrome, versions of V8 isn't V8 = Chrome / 10
16964
+ // but their correct versions are not interesting for us
16965
+ version = match[0] > 0 && match[0] < 4 ? 1 : +(match[0] + match[1]);
16966
+ }
16967
+
16968
+ // BrowserFS NodeJS `process` polyfill incorrectly set `.v8` to `0.0`
16969
+ // so check `userAgent` even if `.v8` exists, but 0
16970
+ if (!version && userAgent) {
16613
16971
  match = userAgent.match(/Edge\/(\d+)/);
16614
16972
  if (!match || match[1] >= 74) {
16615
16973
  match = userAgent.match(/Chrome\/(\d+)/);
16616
- if (match) version = match[1];
16974
+ if (match) version = +match[1];
16617
16975
  }
16618
16976
  }
16619
16977
 
16620
- module.exports = version && +version;
16978
+ module.exports = version;
16621
16979
 
16622
16980
 
16623
16981
  /***/ }),
@@ -16649,6 +17007,23 @@ module.exports = [
16649
17007
  ];
16650
17008
 
16651
17009
 
17010
+ /***/ }),
17011
+
17012
+ /***/ 8780:
17013
+ /***/ (function(module, __unused_webpack_exports, __webpack_require__) {
17014
+
17015
+ var fails = __webpack_require__(5981);
17016
+ var createPropertyDescriptor = __webpack_require__(1887);
17017
+
17018
+ module.exports = !fails(function () {
17019
+ var error = Error('a');
17020
+ if (!('stack' in error)) return true;
17021
+ // eslint-disable-next-line es/no-object-defineproperty -- safe
17022
+ Object.defineProperty(error, 'stack', createPropertyDescriptor(1, 7));
17023
+ return error.stack !== 7;
17024
+ });
17025
+
17026
+
16652
17027
  /***/ }),
16653
17028
 
16654
17029
  /***/ 6887:
@@ -16657,6 +17032,8 @@ module.exports = [
16657
17032
  "use strict";
16658
17033
 
16659
17034
  var global = __webpack_require__(1899);
17035
+ var apply = __webpack_require__(9730);
17036
+ var uncurryThis = __webpack_require__(5329);
16660
17037
  var isCallable = __webpack_require__(7475);
16661
17038
  var getOwnPropertyDescriptor = (__webpack_require__(9677).f);
16662
17039
  var isForced = __webpack_require__(7252);
@@ -16667,13 +17044,13 @@ var hasOwn = __webpack_require__(953);
16667
17044
 
16668
17045
  var wrapConstructor = function (NativeConstructor) {
16669
17046
  var Wrapper = function (a, b, c) {
16670
- if (this instanceof NativeConstructor) {
17047
+ if (this instanceof Wrapper) {
16671
17048
  switch (arguments.length) {
16672
17049
  case 0: return new NativeConstructor();
16673
17050
  case 1: return new NativeConstructor(a);
16674
17051
  case 2: return new NativeConstructor(a, b);
16675
17052
  } return new NativeConstructor(a, b, c);
16676
- } return NativeConstructor.apply(this, arguments);
17053
+ } return apply(NativeConstructor, this, arguments);
16677
17054
  };
16678
17055
  Wrapper.prototype = NativeConstructor.prototype;
16679
17056
  return Wrapper;
@@ -16723,14 +17100,14 @@ module.exports = function (options, source) {
16723
17100
  // export native or implementation
16724
17101
  sourceProperty = (USE_NATIVE && nativeProperty) ? nativeProperty : source[key];
16725
17102
 
16726
- if (USE_NATIVE && typeof targetProperty === typeof sourceProperty) continue;
17103
+ if (USE_NATIVE && typeof targetProperty == typeof sourceProperty) continue;
16727
17104
 
16728
17105
  // bind timers to global for call from export context
16729
17106
  if (options.bind && USE_NATIVE) resultProperty = bind(sourceProperty, global);
16730
17107
  // wrap global constructors for prevent changs in this version
16731
17108
  else if (options.wrap && USE_NATIVE) resultProperty = wrapConstructor(sourceProperty);
16732
17109
  // make static versions for prototype methods
16733
- else if (PROTO && isCallable(sourceProperty)) resultProperty = bind(Function.call, sourceProperty);
17110
+ else if (PROTO && isCallable(sourceProperty)) resultProperty = uncurryThis(sourceProperty);
16734
17111
  // default case
16735
17112
  else resultProperty = sourceProperty;
16736
17113
 
@@ -16784,37 +17161,57 @@ module.exports = !fails(function () {
16784
17161
  });
16785
17162
 
16786
17163
 
17164
+ /***/ }),
17165
+
17166
+ /***/ 9730:
17167
+ /***/ (function(module, __unused_webpack_exports, __webpack_require__) {
17168
+
17169
+ var NATIVE_BIND = __webpack_require__(8285);
17170
+
17171
+ var FunctionPrototype = Function.prototype;
17172
+ var apply = FunctionPrototype.apply;
17173
+ var call = FunctionPrototype.call;
17174
+
17175
+ // eslint-disable-next-line es/no-reflect -- safe
17176
+ module.exports = typeof Reflect == 'object' && Reflect.apply || (NATIVE_BIND ? call.bind(apply) : function () {
17177
+ return call.apply(apply, arguments);
17178
+ });
17179
+
17180
+
16787
17181
  /***/ }),
16788
17182
 
16789
17183
  /***/ 6843:
16790
17184
  /***/ (function(module, __unused_webpack_exports, __webpack_require__) {
16791
17185
 
17186
+ var uncurryThis = __webpack_require__(5329);
16792
17187
  var aCallable = __webpack_require__(4883);
17188
+ var NATIVE_BIND = __webpack_require__(8285);
17189
+
17190
+ var bind = uncurryThis(uncurryThis.bind);
16793
17191
 
16794
17192
  // optional / simple context binding
16795
- module.exports = function (fn, that, length) {
17193
+ module.exports = function (fn, that) {
16796
17194
  aCallable(fn);
16797
- if (that === undefined) return fn;
16798
- switch (length) {
16799
- case 0: return function () {
16800
- return fn.call(that);
16801
- };
16802
- case 1: return function (a) {
16803
- return fn.call(that, a);
16804
- };
16805
- case 2: return function (a, b) {
16806
- return fn.call(that, a, b);
16807
- };
16808
- case 3: return function (a, b, c) {
16809
- return fn.call(that, a, b, c);
16810
- };
16811
- }
16812
- return function (/* ...args */) {
17195
+ return that === undefined ? fn : NATIVE_BIND ? bind(fn, that) : function (/* ...args */) {
16813
17196
  return fn.apply(that, arguments);
16814
17197
  };
16815
17198
  };
16816
17199
 
16817
17200
 
17201
+ /***/ }),
17202
+
17203
+ /***/ 8285:
17204
+ /***/ (function(module, __unused_webpack_exports, __webpack_require__) {
17205
+
17206
+ var fails = __webpack_require__(5981);
17207
+
17208
+ module.exports = !fails(function () {
17209
+ var test = (function () { /* empty */ }).bind();
17210
+ // eslint-disable-next-line no-prototype-builtins -- safe
17211
+ return typeof test != 'function' || test.hasOwnProperty('prototype');
17212
+ });
17213
+
17214
+
16818
17215
  /***/ }),
16819
17216
 
16820
17217
  /***/ 8308:
@@ -16822,34 +17219,55 @@ module.exports = function (fn, that, length) {
16822
17219
 
16823
17220
  "use strict";
16824
17221
 
17222
+ var global = __webpack_require__(1899);
17223
+ var uncurryThis = __webpack_require__(5329);
16825
17224
  var aCallable = __webpack_require__(4883);
16826
17225
  var isObject = __webpack_require__(941);
17226
+ var hasOwn = __webpack_require__(953);
17227
+ var arraySlice = __webpack_require__(3765);
17228
+ var NATIVE_BIND = __webpack_require__(8285);
16827
17229
 
16828
- var slice = [].slice;
17230
+ var Function = global.Function;
17231
+ var concat = uncurryThis([].concat);
17232
+ var join = uncurryThis([].join);
16829
17233
  var factories = {};
16830
17234
 
16831
17235
  var construct = function (C, argsLength, args) {
16832
- if (!(argsLength in factories)) {
17236
+ if (!hasOwn(factories, argsLength)) {
16833
17237
  for (var list = [], i = 0; i < argsLength; i++) list[i] = 'a[' + i + ']';
16834
- // eslint-disable-next-line no-new-func -- we have no proper alternatives, IE8- only
16835
- factories[argsLength] = Function('C,a', 'return new C(' + list.join(',') + ')');
17238
+ factories[argsLength] = Function('C,a', 'return new C(' + join(list, ',') + ')');
16836
17239
  } return factories[argsLength](C, args);
16837
17240
  };
16838
17241
 
16839
17242
  // `Function.prototype.bind` method implementation
16840
17243
  // https://tc39.es/ecma262/#sec-function.prototype.bind
16841
- module.exports = Function.bind || function bind(that /* , ...args */) {
16842
- var fn = aCallable(this);
16843
- var partArgs = slice.call(arguments, 1);
17244
+ module.exports = NATIVE_BIND ? Function.bind : function bind(that /* , ...args */) {
17245
+ var F = aCallable(this);
17246
+ var Prototype = F.prototype;
17247
+ var partArgs = arraySlice(arguments, 1);
16844
17248
  var boundFunction = function bound(/* args... */) {
16845
- var args = partArgs.concat(slice.call(arguments));
16846
- return this instanceof boundFunction ? construct(fn, args.length, args) : fn.apply(that, args);
17249
+ var args = concat(partArgs, arraySlice(arguments));
17250
+ return this instanceof boundFunction ? construct(F, args.length, args) : F.apply(that, args);
16847
17251
  };
16848
- if (isObject(fn.prototype)) boundFunction.prototype = fn.prototype;
17252
+ if (isObject(Prototype)) boundFunction.prototype = Prototype;
16849
17253
  return boundFunction;
16850
17254
  };
16851
17255
 
16852
17256
 
17257
+ /***/ }),
17258
+
17259
+ /***/ 8834:
17260
+ /***/ (function(module, __unused_webpack_exports, __webpack_require__) {
17261
+
17262
+ var NATIVE_BIND = __webpack_require__(8285);
17263
+
17264
+ var call = Function.prototype.call;
17265
+
17266
+ module.exports = NATIVE_BIND ? call.bind(call) : function () {
17267
+ return call.apply(call, arguments);
17268
+ };
17269
+
17270
+
16853
17271
  /***/ }),
16854
17272
 
16855
17273
  /***/ 9417:
@@ -16874,6 +17292,27 @@ module.exports = {
16874
17292
  };
16875
17293
 
16876
17294
 
17295
+ /***/ }),
17296
+
17297
+ /***/ 5329:
17298
+ /***/ (function(module, __unused_webpack_exports, __webpack_require__) {
17299
+
17300
+ var NATIVE_BIND = __webpack_require__(8285);
17301
+
17302
+ var FunctionPrototype = Function.prototype;
17303
+ var bind = FunctionPrototype.bind;
17304
+ var call = FunctionPrototype.call;
17305
+ var uncurryThis = NATIVE_BIND && bind.bind(call, call);
17306
+
17307
+ module.exports = NATIVE_BIND ? function (fn) {
17308
+ return fn && uncurryThis(fn);
17309
+ } : function (fn) {
17310
+ return fn && function () {
17311
+ return call.apply(fn, arguments);
17312
+ };
17313
+ };
17314
+
17315
+
16877
17316
  /***/ }),
16878
17317
 
16879
17318
  /***/ 626:
@@ -16917,14 +17356,19 @@ module.exports = function (it) {
16917
17356
  /***/ 3476:
16918
17357
  /***/ (function(module, __unused_webpack_exports, __webpack_require__) {
16919
17358
 
17359
+ var global = __webpack_require__(1899);
17360
+ var call = __webpack_require__(8834);
16920
17361
  var aCallable = __webpack_require__(4883);
16921
17362
  var anObject = __webpack_require__(6059);
17363
+ var tryToString = __webpack_require__(9826);
16922
17364
  var getIteratorMethod = __webpack_require__(2902);
16923
17365
 
17366
+ var TypeError = global.TypeError;
17367
+
16924
17368
  module.exports = function (argument, usingIterator) {
16925
17369
  var iteratorMethod = arguments.length < 2 ? getIteratorMethod(argument) : usingIterator;
16926
- if (aCallable(iteratorMethod)) return anObject(iteratorMethod.call(argument));
16927
- throw TypeError(String(argument) + ' is not iterable');
17370
+ if (aCallable(iteratorMethod)) return anObject(call(iteratorMethod, argument));
17371
+ throw TypeError(tryToString(argument) + ' is not iterable');
16928
17372
  };
16929
17373
 
16930
17374
 
@@ -16979,14 +17423,15 @@ module.exports =
16979
17423
  /***/ 953:
16980
17424
  /***/ (function(module, __unused_webpack_exports, __webpack_require__) {
16981
17425
 
17426
+ var uncurryThis = __webpack_require__(5329);
16982
17427
  var toObject = __webpack_require__(9678);
16983
17428
 
16984
- var hasOwnProperty = {}.hasOwnProperty;
17429
+ var hasOwnProperty = uncurryThis({}.hasOwnProperty);
16985
17430
 
16986
17431
  // `HasOwnProperty` abstract operation
16987
17432
  // https://tc39.es/ecma262/#sec-hasownproperty
16988
17433
  module.exports = Object.hasOwn || function hasOwn(it, key) {
16989
- return hasOwnProperty.call(toObject(it), key);
17434
+ return hasOwnProperty(toObject(it), key);
16990
17435
  };
16991
17436
 
16992
17437
 
@@ -17008,7 +17453,7 @@ var global = __webpack_require__(1899);
17008
17453
  module.exports = function (a, b) {
17009
17454
  var console = global.console;
17010
17455
  if (console && console.error) {
17011
- arguments.length === 1 ? console.error(a) : console.error(a, b);
17456
+ arguments.length == 1 ? console.error(a) : console.error(a, b);
17012
17457
  }
17013
17458
  };
17014
17459
 
@@ -17032,9 +17477,9 @@ var DESCRIPTORS = __webpack_require__(5746);
17032
17477
  var fails = __webpack_require__(5981);
17033
17478
  var createElement = __webpack_require__(1333);
17034
17479
 
17035
- // Thank's IE8 for his funny defineProperty
17480
+ // Thanks to IE8 for its funny defineProperty
17036
17481
  module.exports = !DESCRIPTORS && !fails(function () {
17037
- // eslint-disable-next-line es/no-object-defineproperty -- requied for testing
17482
+ // eslint-disable-next-line es/no-object-defineproperty -- required for testing
17038
17483
  return Object.defineProperty(createElement('div'), 'a', {
17039
17484
  get: function () { return 7; }
17040
17485
  }).a != 7;
@@ -17046,10 +17491,13 @@ module.exports = !DESCRIPTORS && !fails(function () {
17046
17491
  /***/ 7026:
17047
17492
  /***/ (function(module, __unused_webpack_exports, __webpack_require__) {
17048
17493
 
17494
+ var global = __webpack_require__(1899);
17495
+ var uncurryThis = __webpack_require__(5329);
17049
17496
  var fails = __webpack_require__(5981);
17050
17497
  var classof = __webpack_require__(2532);
17051
17498
 
17052
- var split = ''.split;
17499
+ var Object = global.Object;
17500
+ var split = uncurryThis(''.split);
17053
17501
 
17054
17502
  // fallback for non-array-like ES3 and non-enumerable old V8 strings
17055
17503
  module.exports = fails(function () {
@@ -17057,7 +17505,7 @@ module.exports = fails(function () {
17057
17505
  // eslint-disable-next-line no-prototype-builtins -- safe
17058
17506
  return !Object('z').propertyIsEnumerable(0);
17059
17507
  }) ? function (it) {
17060
- return classof(it) == 'String' ? split.call(it, '') : Object(it);
17508
+ return classof(it) == 'String' ? split(it, '') : Object(it);
17061
17509
  } : Object;
17062
17510
 
17063
17511
 
@@ -17066,15 +17514,16 @@ module.exports = fails(function () {
17066
17514
  /***/ 1302:
17067
17515
  /***/ (function(module, __unused_webpack_exports, __webpack_require__) {
17068
17516
 
17517
+ var uncurryThis = __webpack_require__(5329);
17069
17518
  var isCallable = __webpack_require__(7475);
17070
17519
  var store = __webpack_require__(3030);
17071
17520
 
17072
- var functionToString = Function.toString;
17521
+ var functionToString = uncurryThis(Function.toString);
17073
17522
 
17074
17523
  // this helper broken in `core-js@3.4.1-3.4.4`, so we can't use `shared` helper
17075
17524
  if (!isCallable(store.inspectSource)) {
17076
17525
  store.inspectSource = function (it) {
17077
- return functionToString.call(it);
17526
+ return functionToString(it);
17078
17527
  };
17079
17528
  }
17080
17529
 
@@ -17093,7 +17542,7 @@ var createNonEnumerableProperty = __webpack_require__(2029);
17093
17542
  // https://tc39.es/proposal-error-cause/#sec-errorobjects-install-error-cause
17094
17543
  module.exports = function (O, options) {
17095
17544
  if (isObject(options) && 'cause' in options) {
17096
- createNonEnumerableProperty(O, 'cause', O.cause);
17545
+ createNonEnumerableProperty(O, 'cause', options.cause);
17097
17546
  }
17098
17547
  };
17099
17548
 
@@ -17104,12 +17553,14 @@ module.exports = function (O, options) {
17104
17553
  /***/ (function(module, __unused_webpack_exports, __webpack_require__) {
17105
17554
 
17106
17555
  var $ = __webpack_require__(6887);
17556
+ var uncurryThis = __webpack_require__(5329);
17107
17557
  var hiddenKeys = __webpack_require__(7748);
17108
17558
  var isObject = __webpack_require__(941);
17109
17559
  var hasOwn = __webpack_require__(953);
17110
17560
  var defineProperty = (__webpack_require__(5988).f);
17111
17561
  var getOwnPropertyNamesModule = __webpack_require__(946);
17112
17562
  var getOwnPropertyNamesExternalModule = __webpack_require__(684);
17563
+ var isExtensible = __webpack_require__(1584);
17113
17564
  var uid = __webpack_require__(9418);
17114
17565
  var FREEZING = __webpack_require__(5602);
17115
17566
 
@@ -17117,11 +17568,6 @@ var REQUIRED = false;
17117
17568
  var METADATA = uid('meta');
17118
17569
  var id = 0;
17119
17570
 
17120
- // eslint-disable-next-line es/no-object-isextensible -- safe
17121
- var isExtensible = Object.isExtensible || function () {
17122
- return true;
17123
- };
17124
-
17125
17571
  var setMetadata = function (it) {
17126
17572
  defineProperty(it, METADATA, { value: {
17127
17573
  objectID: 'O' + id++, // object ID
@@ -17165,7 +17611,7 @@ var enable = function () {
17165
17611
  meta.enable = function () { /* empty */ };
17166
17612
  REQUIRED = true;
17167
17613
  var getOwnPropertyNames = getOwnPropertyNamesModule.f;
17168
- var splice = [].splice;
17614
+ var splice = uncurryThis([].splice);
17169
17615
  var test = {};
17170
17616
  test[METADATA] = 1;
17171
17617
 
@@ -17175,7 +17621,7 @@ var enable = function () {
17175
17621
  var result = getOwnPropertyNames(it);
17176
17622
  for (var i = 0, length = result.length; i < length; i++) {
17177
17623
  if (result[i] === METADATA) {
17178
- splice.call(result, i, 1);
17624
+ splice(result, i, 1);
17179
17625
  break;
17180
17626
  }
17181
17627
  } return result;
@@ -17204,6 +17650,7 @@ hiddenKeys[METADATA] = true;
17204
17650
 
17205
17651
  var NATIVE_WEAK_MAP = __webpack_require__(8019);
17206
17652
  var global = __webpack_require__(1899);
17653
+ var uncurryThis = __webpack_require__(5329);
17207
17654
  var isObject = __webpack_require__(941);
17208
17655
  var createNonEnumerableProperty = __webpack_require__(2029);
17209
17656
  var hasOwn = __webpack_require__(953);
@@ -17212,6 +17659,7 @@ var sharedKey = __webpack_require__(4262);
17212
17659
  var hiddenKeys = __webpack_require__(7748);
17213
17660
 
17214
17661
  var OBJECT_ALREADY_INITIALIZED = 'Object already initialized';
17662
+ var TypeError = global.TypeError;
17215
17663
  var WeakMap = global.WeakMap;
17216
17664
  var set, get, has;
17217
17665
 
@@ -17230,20 +17678,20 @@ var getterFor = function (TYPE) {
17230
17678
 
17231
17679
  if (NATIVE_WEAK_MAP || shared.state) {
17232
17680
  var store = shared.state || (shared.state = new WeakMap());
17233
- var wmget = store.get;
17234
- var wmhas = store.has;
17235
- var wmset = store.set;
17681
+ var wmget = uncurryThis(store.get);
17682
+ var wmhas = uncurryThis(store.has);
17683
+ var wmset = uncurryThis(store.set);
17236
17684
  set = function (it, metadata) {
17237
- if (wmhas.call(store, it)) throw new TypeError(OBJECT_ALREADY_INITIALIZED);
17685
+ if (wmhas(store, it)) throw new TypeError(OBJECT_ALREADY_INITIALIZED);
17238
17686
  metadata.facade = it;
17239
- wmset.call(store, it, metadata);
17687
+ wmset(store, it, metadata);
17240
17688
  return metadata;
17241
17689
  };
17242
17690
  get = function (it) {
17243
- return wmget.call(store, it) || {};
17691
+ return wmget(store, it) || {};
17244
17692
  };
17245
17693
  has = function (it) {
17246
- return wmhas.call(store, it);
17694
+ return wmhas(store, it);
17247
17695
  };
17248
17696
  } else {
17249
17697
  var STATE = sharedKey('state');
@@ -17311,7 +17759,7 @@ module.exports = Array.isArray || function isArray(argument) {
17311
17759
  // `IsCallable` abstract operation
17312
17760
  // https://tc39.es/ecma262/#sec-iscallable
17313
17761
  module.exports = function (argument) {
17314
- return typeof argument === 'function';
17762
+ return typeof argument == 'function';
17315
17763
  };
17316
17764
 
17317
17765
 
@@ -17320,38 +17768,49 @@ module.exports = function (argument) {
17320
17768
  /***/ 4284:
17321
17769
  /***/ (function(module, __unused_webpack_exports, __webpack_require__) {
17322
17770
 
17771
+ var uncurryThis = __webpack_require__(5329);
17323
17772
  var fails = __webpack_require__(5981);
17324
17773
  var isCallable = __webpack_require__(7475);
17325
17774
  var classof = __webpack_require__(9697);
17326
17775
  var getBuiltIn = __webpack_require__(626);
17327
17776
  var inspectSource = __webpack_require__(1302);
17328
17777
 
17778
+ var noop = function () { /* empty */ };
17329
17779
  var empty = [];
17330
17780
  var construct = getBuiltIn('Reflect', 'construct');
17331
17781
  var constructorRegExp = /^\s*(?:class|function)\b/;
17332
- var exec = constructorRegExp.exec;
17333
- var INCORRECT_TO_STRING = !constructorRegExp.exec(function () { /* empty */ });
17782
+ var exec = uncurryThis(constructorRegExp.exec);
17783
+ var INCORRECT_TO_STRING = !constructorRegExp.exec(noop);
17334
17784
 
17335
- var isConstructorModern = function (argument) {
17785
+ var isConstructorModern = function isConstructor(argument) {
17336
17786
  if (!isCallable(argument)) return false;
17337
17787
  try {
17338
- construct(Object, empty, argument);
17788
+ construct(noop, empty, argument);
17339
17789
  return true;
17340
17790
  } catch (error) {
17341
17791
  return false;
17342
17792
  }
17343
17793
  };
17344
17794
 
17345
- var isConstructorLegacy = function (argument) {
17795
+ var isConstructorLegacy = function isConstructor(argument) {
17346
17796
  if (!isCallable(argument)) return false;
17347
17797
  switch (classof(argument)) {
17348
17798
  case 'AsyncFunction':
17349
17799
  case 'GeneratorFunction':
17350
17800
  case 'AsyncGeneratorFunction': return false;
17801
+ }
17802
+ try {
17351
17803
  // we can't check .prototype since constructors produced by .bind haven't it
17352
- } return INCORRECT_TO_STRING || !!exec.call(constructorRegExp, inspectSource(argument));
17804
+ // `Function#toString` throws on some built-it function in some legacy engines
17805
+ // (for example, `DOMQuad` and similar in FF41-)
17806
+ return INCORRECT_TO_STRING || !!exec(constructorRegExp, inspectSource(argument));
17807
+ } catch (error) {
17808
+ return true;
17809
+ }
17353
17810
  };
17354
17811
 
17812
+ isConstructorLegacy.sham = true;
17813
+
17355
17814
  // `IsConstructor` abstract operation
17356
17815
  // https://tc39.es/ecma262/#sec-isconstructor
17357
17816
  module.exports = !construct || fails(function () {
@@ -17400,7 +17859,7 @@ module.exports = isForced;
17400
17859
  var isCallable = __webpack_require__(7475);
17401
17860
 
17402
17861
  module.exports = function (it) {
17403
- return typeof it === 'object' ? it !== null : isCallable(it);
17862
+ return typeof it == 'object' ? it !== null : isCallable(it);
17404
17863
  };
17405
17864
 
17406
17865
 
@@ -17436,15 +17895,19 @@ module.exports = function (it) {
17436
17895
  /***/ 6664:
17437
17896
  /***/ (function(module, __unused_webpack_exports, __webpack_require__) {
17438
17897
 
17439
- var isCallable = __webpack_require__(7475);
17898
+ var global = __webpack_require__(1899);
17440
17899
  var getBuiltIn = __webpack_require__(626);
17900
+ var isCallable = __webpack_require__(7475);
17901
+ var isPrototypeOf = __webpack_require__(7046);
17441
17902
  var USE_SYMBOL_AS_UID = __webpack_require__(2302);
17442
17903
 
17904
+ var Object = global.Object;
17905
+
17443
17906
  module.exports = USE_SYMBOL_AS_UID ? function (it) {
17444
17907
  return typeof it == 'symbol';
17445
17908
  } : function (it) {
17446
17909
  var $Symbol = getBuiltIn('Symbol');
17447
- return isCallable($Symbol) && Object(it) instanceof $Symbol;
17910
+ return isCallable($Symbol) && isPrototypeOf($Symbol.prototype, Object(it));
17448
17911
  };
17449
17912
 
17450
17913
 
@@ -17453,25 +17916,33 @@ module.exports = USE_SYMBOL_AS_UID ? function (it) {
17453
17916
  /***/ 3091:
17454
17917
  /***/ (function(module, __unused_webpack_exports, __webpack_require__) {
17455
17918
 
17919
+ var global = __webpack_require__(1899);
17920
+ var bind = __webpack_require__(6843);
17921
+ var call = __webpack_require__(8834);
17456
17922
  var anObject = __webpack_require__(6059);
17923
+ var tryToString = __webpack_require__(9826);
17457
17924
  var isArrayIteratorMethod = __webpack_require__(6782);
17458
17925
  var lengthOfArrayLike = __webpack_require__(623);
17459
- var bind = __webpack_require__(6843);
17926
+ var isPrototypeOf = __webpack_require__(7046);
17460
17927
  var getIterator = __webpack_require__(3476);
17461
17928
  var getIteratorMethod = __webpack_require__(2902);
17462
17929
  var iteratorClose = __webpack_require__(7609);
17463
17930
 
17931
+ var TypeError = global.TypeError;
17932
+
17464
17933
  var Result = function (stopped, result) {
17465
17934
  this.stopped = stopped;
17466
17935
  this.result = result;
17467
17936
  };
17468
17937
 
17938
+ var ResultPrototype = Result.prototype;
17939
+
17469
17940
  module.exports = function (iterable, unboundFunction, options) {
17470
17941
  var that = options && options.that;
17471
17942
  var AS_ENTRIES = !!(options && options.AS_ENTRIES);
17472
17943
  var IS_ITERATOR = !!(options && options.IS_ITERATOR);
17473
17944
  var INTERRUPTED = !!(options && options.INTERRUPTED);
17474
- var fn = bind(unboundFunction, that, 1 + AS_ENTRIES + INTERRUPTED);
17945
+ var fn = bind(unboundFunction, that);
17475
17946
  var iterator, iterFn, index, length, result, next, step;
17476
17947
 
17477
17948
  var stop = function (condition) {
@@ -17490,25 +17961,25 @@ module.exports = function (iterable, unboundFunction, options) {
17490
17961
  iterator = iterable;
17491
17962
  } else {
17492
17963
  iterFn = getIteratorMethod(iterable);
17493
- if (!iterFn) throw TypeError(String(iterable) + ' is not iterable');
17964
+ if (!iterFn) throw TypeError(tryToString(iterable) + ' is not iterable');
17494
17965
  // optimisation for array iterators
17495
17966
  if (isArrayIteratorMethod(iterFn)) {
17496
17967
  for (index = 0, length = lengthOfArrayLike(iterable); length > index; index++) {
17497
17968
  result = callFn(iterable[index]);
17498
- if (result && result instanceof Result) return result;
17969
+ if (result && isPrototypeOf(ResultPrototype, result)) return result;
17499
17970
  } return new Result(false);
17500
17971
  }
17501
17972
  iterator = getIterator(iterable, iterFn);
17502
17973
  }
17503
17974
 
17504
17975
  next = iterator.next;
17505
- while (!(step = next.call(iterator)).done) {
17976
+ while (!(step = call(next, iterator)).done) {
17506
17977
  try {
17507
17978
  result = callFn(step.value);
17508
17979
  } catch (error) {
17509
17980
  iteratorClose(iterator, 'throw', error);
17510
17981
  }
17511
- if (typeof result == 'object' && result && result instanceof Result) return result;
17982
+ if (typeof result == 'object' && result && isPrototypeOf(ResultPrototype, result)) return result;
17512
17983
  } return new Result(false);
17513
17984
  };
17514
17985
 
@@ -17518,6 +17989,7 @@ module.exports = function (iterable, unboundFunction, options) {
17518
17989
  /***/ 7609:
17519
17990
  /***/ (function(module, __unused_webpack_exports, __webpack_require__) {
17520
17991
 
17992
+ var call = __webpack_require__(8834);
17521
17993
  var anObject = __webpack_require__(6059);
17522
17994
  var getMethod = __webpack_require__(4229);
17523
17995
 
@@ -17530,7 +18002,7 @@ module.exports = function (iterator, kind, value) {
17530
18002
  if (kind === 'throw') throw value;
17531
18003
  return value;
17532
18004
  }
17533
- innerResult = innerResult.call(iterator);
18005
+ innerResult = call(innerResult, iterator);
17534
18006
  } catch (error) {
17535
18007
  innerError = true;
17536
18008
  innerResult = error;
@@ -17627,16 +18099,21 @@ module.exports = function (obj) {
17627
18099
 
17628
18100
  "use strict";
17629
18101
 
18102
+ var call = __webpack_require__(8834);
18103
+ var aCallable = __webpack_require__(4883);
17630
18104
  var anObject = __webpack_require__(6059);
17631
18105
 
17632
18106
  // `Map.prototype.emplace` method
17633
18107
  // https://github.com/thumbsupep/proposal-upsert
17634
18108
  module.exports = function emplace(key, handler) {
17635
18109
  var map = anObject(this);
17636
- var value = (map.has(key) && 'update' in handler)
17637
- ? handler.update(map.get(key), key, map)
18110
+ var get = aCallable(map.get);
18111
+ var has = aCallable(map.has);
18112
+ var set = aCallable(map.set);
18113
+ var value = (call(has, map, key) && 'update' in handler)
18114
+ ? handler.update(call(get, map, key), key, map)
17638
18115
  : handler.insert(key, map);
17639
- map.set(key, value);
18116
+ call(set, map, key, value);
17640
18117
  return value;
17641
18118
  };
17642
18119
 
@@ -17648,27 +18125,35 @@ module.exports = function emplace(key, handler) {
17648
18125
 
17649
18126
  "use strict";
17650
18127
 
18128
+ var global = __webpack_require__(1899);
18129
+ var call = __webpack_require__(8834);
18130
+ var aCallable = __webpack_require__(4883);
17651
18131
  var isCallable = __webpack_require__(7475);
17652
18132
  var anObject = __webpack_require__(6059);
17653
18133
 
18134
+ var TypeError = global.TypeError;
18135
+
17654
18136
  // `Map.prototype.upsert` method
17655
18137
  // https://github.com/thumbsupep/proposal-upsert
17656
18138
  module.exports = function upsert(key, updateFn /* , insertFn */) {
17657
18139
  var map = anObject(this);
18140
+ var get = aCallable(map.get);
18141
+ var has = aCallable(map.has);
18142
+ var set = aCallable(map.set);
17658
18143
  var insertFn = arguments.length > 2 ? arguments[2] : undefined;
17659
18144
  var value;
17660
18145
  if (!isCallable(updateFn) && !isCallable(insertFn)) {
17661
18146
  throw TypeError('At least one callback required');
17662
18147
  }
17663
- if (map.has(key)) {
17664
- value = map.get(key);
18148
+ if (call(has, map, key)) {
18149
+ value = call(get, map, key);
17665
18150
  if (isCallable(updateFn)) {
17666
18151
  value = updateFn(value);
17667
- map.set(key, value);
18152
+ call(set, map, key, value);
17668
18153
  }
17669
18154
  } else if (isCallable(insertFn)) {
17670
18155
  value = insertFn();
17671
- map.set(key, value);
18156
+ call(set, map, key, value);
17672
18157
  } return value;
17673
18158
  };
17674
18159
 
@@ -17679,6 +18164,7 @@ module.exports = function upsert(key, updateFn /* , insertFn */) {
17679
18164
  /***/ (function(module, __unused_webpack_exports, __webpack_require__) {
17680
18165
 
17681
18166
  var global = __webpack_require__(1899);
18167
+ var bind = __webpack_require__(6843);
17682
18168
  var getOwnPropertyDescriptor = (__webpack_require__(9677).f);
17683
18169
  var macrotask = (__webpack_require__(2941).set);
17684
18170
  var IS_IOS = __webpack_require__(2749);
@@ -17730,9 +18216,9 @@ if (!queueMicrotask) {
17730
18216
  promise = Promise.resolve(undefined);
17731
18217
  // workaround of WebKit ~ iOS Safari 10.1 bug
17732
18218
  promise.constructor = Promise;
17733
- then = promise.then;
18219
+ then = bind(promise.then, promise);
17734
18220
  notify = function () {
17735
- then.call(promise, flush);
18221
+ then(flush);
17736
18222
  };
17737
18223
  // Node.js without promises
17738
18224
  } else if (IS_NODE) {
@@ -17746,9 +18232,10 @@ if (!queueMicrotask) {
17746
18232
  // - onreadystatechange
17747
18233
  // - setTimeout
17748
18234
  } else {
18235
+ // strange IE + webpack dev server bug - use .bind(global)
18236
+ macrotask = bind(macrotask, global);
17749
18237
  notify = function () {
17750
- // strange IE + webpack dev server bug - use .call(global)
17751
- macrotask.call(global, flush);
18238
+ macrotask(flush);
17752
18239
  };
17753
18240
  }
17754
18241
  }
@@ -17834,13 +18321,28 @@ module.exports.f = function (C) {
17834
18321
  };
17835
18322
 
17836
18323
 
18324
+ /***/ }),
18325
+
18326
+ /***/ 4649:
18327
+ /***/ (function(module, __unused_webpack_exports, __webpack_require__) {
18328
+
18329
+ var toString = __webpack_require__(5803);
18330
+
18331
+ module.exports = function (argument, $default) {
18332
+ return argument === undefined ? arguments.length < 2 ? '' : $default : toString(argument);
18333
+ };
18334
+
18335
+
17837
18336
  /***/ }),
17838
18337
 
17839
18338
  /***/ 344:
17840
18339
  /***/ (function(module, __unused_webpack_exports, __webpack_require__) {
17841
18340
 
18341
+ var global = __webpack_require__(1899);
17842
18342
  var isRegExp = __webpack_require__(685);
17843
18343
 
18344
+ var TypeError = global.TypeError;
18345
+
17844
18346
  module.exports = function (it) {
17845
18347
  if (isRegExp(it)) {
17846
18348
  throw TypeError("The method doesn't accept regular expressions");
@@ -17856,6 +18358,8 @@ module.exports = function (it) {
17856
18358
  "use strict";
17857
18359
 
17858
18360
  var DESCRIPTORS = __webpack_require__(5746);
18361
+ var uncurryThis = __webpack_require__(5329);
18362
+ var call = __webpack_require__(8834);
17859
18363
  var fails = __webpack_require__(5981);
17860
18364
  var objectKeys = __webpack_require__(4771);
17861
18365
  var getOwnPropertySymbolsModule = __webpack_require__(7857);
@@ -17867,6 +18371,7 @@ var IndexedObject = __webpack_require__(7026);
17867
18371
  var $assign = Object.assign;
17868
18372
  // eslint-disable-next-line es/no-object-defineproperty -- required for testing
17869
18373
  var defineProperty = Object.defineProperty;
18374
+ var concat = uncurryThis([].concat);
17870
18375
 
17871
18376
  // `Object.assign` method
17872
18377
  // https://tc39.es/ecma262/#sec-object.assign
@@ -17898,13 +18403,13 @@ module.exports = !$assign || fails(function () {
17898
18403
  var propertyIsEnumerable = propertyIsEnumerableModule.f;
17899
18404
  while (argumentsLength > index) {
17900
18405
  var S = IndexedObject(arguments[index++]);
17901
- var keys = getOwnPropertySymbols ? objectKeys(S).concat(getOwnPropertySymbols(S)) : objectKeys(S);
18406
+ var keys = getOwnPropertySymbols ? concat(objectKeys(S), getOwnPropertySymbols(S)) : objectKeys(S);
17902
18407
  var length = keys.length;
17903
18408
  var j = 0;
17904
18409
  var key;
17905
18410
  while (length > j) {
17906
18411
  key = keys[j++];
17907
- if (!DESCRIPTORS || propertyIsEnumerable.call(S, key)) T[key] = S[key];
18412
+ if (!DESCRIPTORS || call(propertyIsEnumerable, S, key)) T[key] = S[key];
17908
18413
  }
17909
18414
  } return T;
17910
18415
  } : $assign;
@@ -17917,7 +18422,7 @@ module.exports = !$assign || fails(function () {
17917
18422
 
17918
18423
  /* global ActiveXObject -- old IE, WSH */
17919
18424
  var anObject = __webpack_require__(6059);
17920
- var defineProperties = __webpack_require__(9938);
18425
+ var definePropertiesModule = __webpack_require__(9938);
17921
18426
  var enumBugKeys = __webpack_require__(6759);
17922
18427
  var hiddenKeys = __webpack_require__(7748);
17923
18428
  var html = __webpack_require__(5463);
@@ -17995,30 +18500,33 @@ module.exports = Object.create || function create(O, Properties) {
17995
18500
  // add "__proto__" for Object.getPrototypeOf polyfill
17996
18501
  result[IE_PROTO] = O;
17997
18502
  } else result = NullProtoObject();
17998
- return Properties === undefined ? result : defineProperties(result, Properties);
18503
+ return Properties === undefined ? result : definePropertiesModule.f(result, Properties);
17999
18504
  };
18000
18505
 
18001
18506
 
18002
18507
  /***/ }),
18003
18508
 
18004
18509
  /***/ 9938:
18005
- /***/ (function(module, __unused_webpack_exports, __webpack_require__) {
18510
+ /***/ (function(__unused_webpack_module, exports, __webpack_require__) {
18006
18511
 
18007
18512
  var DESCRIPTORS = __webpack_require__(5746);
18513
+ var V8_PROTOTYPE_DEFINE_BUG = __webpack_require__(3937);
18008
18514
  var definePropertyModule = __webpack_require__(5988);
18009
18515
  var anObject = __webpack_require__(6059);
18516
+ var toIndexedObject = __webpack_require__(4529);
18010
18517
  var objectKeys = __webpack_require__(4771);
18011
18518
 
18012
18519
  // `Object.defineProperties` method
18013
18520
  // https://tc39.es/ecma262/#sec-object.defineproperties
18014
18521
  // eslint-disable-next-line es/no-object-defineproperties -- safe
18015
- module.exports = DESCRIPTORS ? Object.defineProperties : function defineProperties(O, Properties) {
18522
+ exports.f = DESCRIPTORS && !V8_PROTOTYPE_DEFINE_BUG ? Object.defineProperties : function defineProperties(O, Properties) {
18016
18523
  anObject(O);
18524
+ var props = toIndexedObject(Properties);
18017
18525
  var keys = objectKeys(Properties);
18018
18526
  var length = keys.length;
18019
18527
  var index = 0;
18020
18528
  var key;
18021
- while (length > index) definePropertyModule.f(O, key = keys[index++], Properties[key]);
18529
+ while (length > index) definePropertyModule.f(O, key = keys[index++], props[key]);
18022
18530
  return O;
18023
18531
  };
18024
18532
 
@@ -18028,17 +18536,40 @@ module.exports = DESCRIPTORS ? Object.defineProperties : function defineProperti
18028
18536
  /***/ 5988:
18029
18537
  /***/ (function(__unused_webpack_module, exports, __webpack_require__) {
18030
18538
 
18539
+ var global = __webpack_require__(1899);
18031
18540
  var DESCRIPTORS = __webpack_require__(5746);
18032
18541
  var IE8_DOM_DEFINE = __webpack_require__(2840);
18542
+ var V8_PROTOTYPE_DEFINE_BUG = __webpack_require__(3937);
18033
18543
  var anObject = __webpack_require__(6059);
18034
18544
  var toPropertyKey = __webpack_require__(3894);
18035
18545
 
18546
+ var TypeError = global.TypeError;
18036
18547
  // eslint-disable-next-line es/no-object-defineproperty -- safe
18037
18548
  var $defineProperty = Object.defineProperty;
18549
+ // eslint-disable-next-line es/no-object-getownpropertydescriptor -- safe
18550
+ var $getOwnPropertyDescriptor = Object.getOwnPropertyDescriptor;
18551
+ var ENUMERABLE = 'enumerable';
18552
+ var CONFIGURABLE = 'configurable';
18553
+ var WRITABLE = 'writable';
18038
18554
 
18039
18555
  // `Object.defineProperty` method
18040
18556
  // https://tc39.es/ecma262/#sec-object.defineproperty
18041
- exports.f = DESCRIPTORS ? $defineProperty : function defineProperty(O, P, Attributes) {
18557
+ exports.f = DESCRIPTORS ? V8_PROTOTYPE_DEFINE_BUG ? function defineProperty(O, P, Attributes) {
18558
+ anObject(O);
18559
+ P = toPropertyKey(P);
18560
+ anObject(Attributes);
18561
+ if (typeof O === 'function' && P === 'prototype' && 'value' in Attributes && WRITABLE in Attributes && !Attributes[WRITABLE]) {
18562
+ var current = $getOwnPropertyDescriptor(O, P);
18563
+ if (current && current[WRITABLE]) {
18564
+ O[P] = Attributes.value;
18565
+ Attributes = {
18566
+ configurable: CONFIGURABLE in Attributes ? Attributes[CONFIGURABLE] : current[CONFIGURABLE],
18567
+ enumerable: ENUMERABLE in Attributes ? Attributes[ENUMERABLE] : current[ENUMERABLE],
18568
+ writable: false
18569
+ };
18570
+ }
18571
+ } return $defineProperty(O, P, Attributes);
18572
+ } : $defineProperty : function defineProperty(O, P, Attributes) {
18042
18573
  anObject(O);
18043
18574
  P = toPropertyKey(P);
18044
18575
  anObject(Attributes);
@@ -18057,6 +18588,7 @@ exports.f = DESCRIPTORS ? $defineProperty : function defineProperty(O, P, Attrib
18057
18588
  /***/ (function(__unused_webpack_module, exports, __webpack_require__) {
18058
18589
 
18059
18590
  var DESCRIPTORS = __webpack_require__(5746);
18591
+ var call = __webpack_require__(8834);
18060
18592
  var propertyIsEnumerableModule = __webpack_require__(6760);
18061
18593
  var createPropertyDescriptor = __webpack_require__(1887);
18062
18594
  var toIndexedObject = __webpack_require__(4529);
@@ -18075,7 +18607,7 @@ exports.f = DESCRIPTORS ? $getOwnPropertyDescriptor : function getOwnPropertyDes
18075
18607
  if (IE8_DOM_DEFINE) try {
18076
18608
  return $getOwnPropertyDescriptor(O, P);
18077
18609
  } catch (error) { /* empty */ }
18078
- if (hasOwn(O, P)) return createPropertyDescriptor(!propertyIsEnumerableModule.f.call(O, P), O[P]);
18610
+ if (hasOwn(O, P)) return createPropertyDescriptor(!call(propertyIsEnumerableModule.f, O, P), O[P]);
18079
18611
  };
18080
18612
 
18081
18613
 
@@ -18085,10 +18617,10 @@ exports.f = DESCRIPTORS ? $getOwnPropertyDescriptor : function getOwnPropertyDes
18085
18617
  /***/ (function(module, __unused_webpack_exports, __webpack_require__) {
18086
18618
 
18087
18619
  /* eslint-disable es/no-object-getownpropertynames -- safe */
18620
+ var classof = __webpack_require__(2532);
18088
18621
  var toIndexedObject = __webpack_require__(4529);
18089
18622
  var $getOwnPropertyNames = (__webpack_require__(946).f);
18090
-
18091
- var toString = {}.toString;
18623
+ var arraySlice = __webpack_require__(5790);
18092
18624
 
18093
18625
  var windowNames = typeof window == 'object' && window && Object.getOwnPropertyNames
18094
18626
  ? Object.getOwnPropertyNames(window) : [];
@@ -18097,13 +18629,13 @@ var getWindowNames = function (it) {
18097
18629
  try {
18098
18630
  return $getOwnPropertyNames(it);
18099
18631
  } catch (error) {
18100
- return windowNames.slice();
18632
+ return arraySlice(windowNames);
18101
18633
  }
18102
18634
  };
18103
18635
 
18104
18636
  // fallback for IE11 buggy Object.getOwnPropertyNames with iframe and window
18105
18637
  module.exports.f = function getOwnPropertyNames(it) {
18106
- return windowNames && toString.call(it) == '[object Window]'
18638
+ return windowNames && classof(it) == 'Window'
18107
18639
  ? getWindowNames(it)
18108
18640
  : $getOwnPropertyNames(toIndexedObject(it));
18109
18641
  };
@@ -18141,6 +18673,7 @@ exports.f = Object.getOwnPropertySymbols;
18141
18673
  /***/ 249:
18142
18674
  /***/ (function(module, __unused_webpack_exports, __webpack_require__) {
18143
18675
 
18676
+ var global = __webpack_require__(1899);
18144
18677
  var hasOwn = __webpack_require__(953);
18145
18678
  var isCallable = __webpack_require__(7475);
18146
18679
  var toObject = __webpack_require__(9678);
@@ -18148,11 +18681,11 @@ var sharedKey = __webpack_require__(4262);
18148
18681
  var CORRECT_PROTOTYPE_GETTER = __webpack_require__(4160);
18149
18682
 
18150
18683
  var IE_PROTO = sharedKey('IE_PROTO');
18684
+ var Object = global.Object;
18151
18685
  var ObjectPrototype = Object.prototype;
18152
18686
 
18153
18687
  // `Object.getPrototypeOf` method
18154
18688
  // https://tc39.es/ecma262/#sec-object.getprototypeof
18155
- // eslint-disable-next-line es/no-object-getprototypeof -- safe
18156
18689
  module.exports = CORRECT_PROTOTYPE_GETTER ? Object.getPrototypeOf : function (O) {
18157
18690
  var object = toObject(O);
18158
18691
  if (hasOwn(object, IE_PROTO)) return object[IE_PROTO];
@@ -18163,25 +18696,61 @@ module.exports = CORRECT_PROTOTYPE_GETTER ? Object.getPrototypeOf : function (O)
18163
18696
  };
18164
18697
 
18165
18698
 
18699
+ /***/ }),
18700
+
18701
+ /***/ 1584:
18702
+ /***/ (function(module, __unused_webpack_exports, __webpack_require__) {
18703
+
18704
+ var fails = __webpack_require__(5981);
18705
+ var isObject = __webpack_require__(941);
18706
+ var classof = __webpack_require__(2532);
18707
+ var ARRAY_BUFFER_NON_EXTENSIBLE = __webpack_require__(7135);
18708
+
18709
+ // eslint-disable-next-line es/no-object-isextensible -- safe
18710
+ var $isExtensible = Object.isExtensible;
18711
+ var FAILS_ON_PRIMITIVES = fails(function () { $isExtensible(1); });
18712
+
18713
+ // `Object.isExtensible` method
18714
+ // https://tc39.es/ecma262/#sec-object.isextensible
18715
+ module.exports = (FAILS_ON_PRIMITIVES || ARRAY_BUFFER_NON_EXTENSIBLE) ? function isExtensible(it) {
18716
+ if (!isObject(it)) return false;
18717
+ if (ARRAY_BUFFER_NON_EXTENSIBLE && classof(it) == 'ArrayBuffer') return false;
18718
+ return $isExtensible ? $isExtensible(it) : true;
18719
+ } : $isExtensible;
18720
+
18721
+
18722
+ /***/ }),
18723
+
18724
+ /***/ 7046:
18725
+ /***/ (function(module, __unused_webpack_exports, __webpack_require__) {
18726
+
18727
+ var uncurryThis = __webpack_require__(5329);
18728
+
18729
+ module.exports = uncurryThis({}.isPrototypeOf);
18730
+
18731
+
18166
18732
  /***/ }),
18167
18733
 
18168
18734
  /***/ 5629:
18169
18735
  /***/ (function(module, __unused_webpack_exports, __webpack_require__) {
18170
18736
 
18737
+ var uncurryThis = __webpack_require__(5329);
18171
18738
  var hasOwn = __webpack_require__(953);
18172
18739
  var toIndexedObject = __webpack_require__(4529);
18173
18740
  var indexOf = (__webpack_require__(1692).indexOf);
18174
18741
  var hiddenKeys = __webpack_require__(7748);
18175
18742
 
18743
+ var push = uncurryThis([].push);
18744
+
18176
18745
  module.exports = function (object, names) {
18177
18746
  var O = toIndexedObject(object);
18178
18747
  var i = 0;
18179
18748
  var result = [];
18180
18749
  var key;
18181
- for (key in O) !hasOwn(hiddenKeys, key) && hasOwn(O, key) && result.push(key);
18750
+ for (key in O) !hasOwn(hiddenKeys, key) && hasOwn(O, key) && push(result, key);
18182
18751
  // Don't enum bug & hidden keys
18183
18752
  while (names.length > i) if (hasOwn(O, key = names[i++])) {
18184
- ~indexOf(result, key) || result.push(key);
18753
+ ~indexOf(result, key) || push(result, key);
18185
18754
  }
18186
18755
  return result;
18187
18756
  };
@@ -18231,6 +18800,7 @@ exports.f = NASHORN_BUG ? function propertyIsEnumerable(V) {
18231
18800
  /***/ (function(module, __unused_webpack_exports, __webpack_require__) {
18232
18801
 
18233
18802
  /* eslint-disable no-proto -- safe */
18803
+ var uncurryThis = __webpack_require__(5329);
18234
18804
  var anObject = __webpack_require__(6059);
18235
18805
  var aPossiblePrototype = __webpack_require__(1851);
18236
18806
 
@@ -18244,14 +18814,14 @@ module.exports = Object.setPrototypeOf || ('__proto__' in {} ? function () {
18244
18814
  var setter;
18245
18815
  try {
18246
18816
  // eslint-disable-next-line es/no-object-getownpropertydescriptor -- safe
18247
- setter = Object.getOwnPropertyDescriptor(Object.prototype, '__proto__').set;
18248
- setter.call(test, []);
18817
+ setter = uncurryThis(Object.getOwnPropertyDescriptor(Object.prototype, '__proto__').set);
18818
+ setter(test, []);
18249
18819
  CORRECT_SETTER = test instanceof Array;
18250
18820
  } catch (error) { /* empty */ }
18251
18821
  return function setPrototypeOf(O, proto) {
18252
18822
  anObject(O);
18253
18823
  aPossiblePrototype(proto);
18254
- if (CORRECT_SETTER) setter.call(O, proto);
18824
+ if (CORRECT_SETTER) setter(O, proto);
18255
18825
  else O.__proto__ = proto;
18256
18826
  return O;
18257
18827
  };
@@ -18264,9 +18834,13 @@ module.exports = Object.setPrototypeOf || ('__proto__' in {} ? function () {
18264
18834
  /***/ (function(module, __unused_webpack_exports, __webpack_require__) {
18265
18835
 
18266
18836
  var DESCRIPTORS = __webpack_require__(5746);
18837
+ var uncurryThis = __webpack_require__(5329);
18267
18838
  var objectKeys = __webpack_require__(4771);
18268
18839
  var toIndexedObject = __webpack_require__(4529);
18269
- var propertyIsEnumerable = (__webpack_require__(6760).f);
18840
+ var $propertyIsEnumerable = (__webpack_require__(6760).f);
18841
+
18842
+ var propertyIsEnumerable = uncurryThis($propertyIsEnumerable);
18843
+ var push = uncurryThis([].push);
18270
18844
 
18271
18845
  // `Object.{ entries, values }` methods implementation
18272
18846
  var createMethod = function (TO_ENTRIES) {
@@ -18279,8 +18853,8 @@ var createMethod = function (TO_ENTRIES) {
18279
18853
  var key;
18280
18854
  while (length > i) {
18281
18855
  key = keys[i++];
18282
- if (!DESCRIPTORS || propertyIsEnumerable.call(O, key)) {
18283
- result.push(TO_ENTRIES ? [key, O[key]] : O[key]);
18856
+ if (!DESCRIPTORS || propertyIsEnumerable(O, key)) {
18857
+ push(result, TO_ENTRIES ? [key, O[key]] : O[key]);
18284
18858
  }
18285
18859
  }
18286
18860
  return result;
@@ -18319,16 +18893,20 @@ module.exports = TO_STRING_TAG_SUPPORT ? {}.toString : function toString() {
18319
18893
  /***/ 9811:
18320
18894
  /***/ (function(module, __unused_webpack_exports, __webpack_require__) {
18321
18895
 
18896
+ var global = __webpack_require__(1899);
18897
+ var call = __webpack_require__(8834);
18322
18898
  var isCallable = __webpack_require__(7475);
18323
18899
  var isObject = __webpack_require__(941);
18324
18900
 
18901
+ var TypeError = global.TypeError;
18902
+
18325
18903
  // `OrdinaryToPrimitive` abstract operation
18326
18904
  // https://tc39.es/ecma262/#sec-ordinarytoprimitive
18327
18905
  module.exports = function (input, pref) {
18328
18906
  var fn, val;
18329
- if (pref === 'string' && isCallable(fn = input.toString) && !isObject(val = fn.call(input))) return val;
18330
- if (isCallable(fn = input.valueOf) && !isObject(val = fn.call(input))) return val;
18331
- if (pref !== 'string' && isCallable(fn = input.toString) && !isObject(val = fn.call(input))) return val;
18907
+ if (pref === 'string' && isCallable(fn = input.toString) && !isObject(val = call(fn, input))) return val;
18908
+ if (isCallable(fn = input.valueOf) && !isObject(val = call(fn, input))) return val;
18909
+ if (pref !== 'string' && isCallable(fn = input.toString) && !isObject(val = call(fn, input))) return val;
18332
18910
  throw TypeError("Can't convert object to primitive value");
18333
18911
  };
18334
18912
 
@@ -18339,15 +18917,18 @@ module.exports = function (input, pref) {
18339
18917
  /***/ (function(module, __unused_webpack_exports, __webpack_require__) {
18340
18918
 
18341
18919
  var getBuiltIn = __webpack_require__(626);
18920
+ var uncurryThis = __webpack_require__(5329);
18342
18921
  var getOwnPropertyNamesModule = __webpack_require__(946);
18343
18922
  var getOwnPropertySymbolsModule = __webpack_require__(7857);
18344
18923
  var anObject = __webpack_require__(6059);
18345
18924
 
18925
+ var concat = uncurryThis([].concat);
18926
+
18346
18927
  // all object keys, includes non-enumerable and symbols
18347
18928
  module.exports = getBuiltIn('Reflect', 'ownKeys') || function ownKeys(it) {
18348
18929
  var keys = getOwnPropertyNamesModule.f(anObject(it));
18349
18930
  var getOwnPropertySymbols = getOwnPropertySymbolsModule.f;
18350
- return getOwnPropertySymbols ? keys.concat(getOwnPropertySymbols(it)) : keys;
18931
+ return getOwnPropertySymbols ? concat(keys, getOwnPropertySymbols(it)) : keys;
18351
18932
  };
18352
18933
 
18353
18934
 
@@ -18392,6 +18973,36 @@ module.exports = function (C, x) {
18392
18973
  };
18393
18974
 
18394
18975
 
18976
+ /***/ }),
18977
+
18978
+ /***/ 8397:
18979
+ /***/ (function(module) {
18980
+
18981
+ var Queue = function () {
18982
+ this.head = null;
18983
+ this.tail = null;
18984
+ };
18985
+
18986
+ Queue.prototype = {
18987
+ add: function (item) {
18988
+ var entry = { item: item, next: null };
18989
+ if (this.head) this.tail.next = entry;
18990
+ else this.head = entry;
18991
+ this.tail = entry;
18992
+ },
18993
+ get: function () {
18994
+ var entry = this.head;
18995
+ if (entry) {
18996
+ this.head = entry.next;
18997
+ if (this.tail === entry) this.tail = null;
18998
+ return entry.item;
18999
+ }
19000
+ }
19001
+ };
19002
+
19003
+ module.exports = Queue;
19004
+
19005
+
18395
19006
  /***/ }),
18396
19007
 
18397
19008
  /***/ 7524:
@@ -18423,7 +19034,11 @@ module.exports = function (target, key, value, options) {
18423
19034
  /***/ }),
18424
19035
 
18425
19036
  /***/ 8219:
18426
- /***/ (function(module) {
19037
+ /***/ (function(module, __unused_webpack_exports, __webpack_require__) {
19038
+
19039
+ var global = __webpack_require__(1899);
19040
+
19041
+ var TypeError = global.TypeError;
18427
19042
 
18428
19043
  // `RequireObjectCoercible` abstract operation
18429
19044
  // https://tc39.es/ecma262/#sec-requireobjectcoercible
@@ -18453,10 +19068,12 @@ module.exports = function (x, y) {
18453
19068
 
18454
19069
  var global = __webpack_require__(1899);
18455
19070
 
19071
+ // eslint-disable-next-line es/no-object-defineproperty -- safe
19072
+ var defineProperty = Object.defineProperty;
19073
+
18456
19074
  module.exports = function (key, value) {
18457
19075
  try {
18458
- // eslint-disable-next-line es/no-object-defineproperty -- safe
18459
- Object.defineProperty(global, key, { value: value, configurable: true, writable: true });
19076
+ defineProperty(global, key, { value: value, configurable: true, writable: true });
18460
19077
  } catch (error) {
18461
19078
  global[key] = value;
18462
19079
  } return value;
@@ -18557,9 +19174,11 @@ var store = __webpack_require__(3030);
18557
19174
  (module.exports = function (key, value) {
18558
19175
  return store[key] || (store[key] = value !== undefined ? value : {});
18559
19176
  })('versions', []).push({
18560
- version: '3.18.2',
19177
+ version: '3.21.0',
18561
19178
  mode: IS_PURE ? 'pure' : 'global',
18562
- copyright: '© 2021 Denis Pushkarev (zloirock.ru)'
19179
+ copyright: '© 2014-2022 Denis Pushkarev (zloirock.ru)',
19180
+ license: 'https://github.com/zloirock/core-js/blob/v3.21.0/LICENSE',
19181
+ source: 'https://github.com/zloirock/core-js'
18563
19182
  });
18564
19183
 
18565
19184
 
@@ -18588,10 +19207,15 @@ module.exports = function (O, defaultConstructor) {
18588
19207
  /***/ 4620:
18589
19208
  /***/ (function(module, __unused_webpack_exports, __webpack_require__) {
18590
19209
 
19210
+ var uncurryThis = __webpack_require__(5329);
18591
19211
  var toIntegerOrInfinity = __webpack_require__(2435);
18592
19212
  var toString = __webpack_require__(5803);
18593
19213
  var requireObjectCoercible = __webpack_require__(8219);
18594
19214
 
19215
+ var charAt = uncurryThis(''.charAt);
19216
+ var charCodeAt = uncurryThis(''.charCodeAt);
19217
+ var stringSlice = uncurryThis(''.slice);
19218
+
18595
19219
  var createMethod = function (CONVERT_TO_STRING) {
18596
19220
  return function ($this, pos) {
18597
19221
  var S = toString(requireObjectCoercible($this));
@@ -18599,11 +19223,15 @@ var createMethod = function (CONVERT_TO_STRING) {
18599
19223
  var size = S.length;
18600
19224
  var first, second;
18601
19225
  if (position < 0 || position >= size) return CONVERT_TO_STRING ? '' : undefined;
18602
- first = S.charCodeAt(position);
19226
+ first = charCodeAt(S, position);
18603
19227
  return first < 0xD800 || first > 0xDBFF || position + 1 === size
18604
- || (second = S.charCodeAt(position + 1)) < 0xDC00 || second > 0xDFFF
18605
- ? CONVERT_TO_STRING ? S.charAt(position) : first
18606
- : CONVERT_TO_STRING ? S.slice(position, position + 2) : (first - 0xD800 << 10) + (second - 0xDC00) + 0x10000;
19228
+ || (second = charCodeAt(S, position + 1)) < 0xDC00 || second > 0xDFFF
19229
+ ? CONVERT_TO_STRING
19230
+ ? charAt(S, position)
19231
+ : first
19232
+ : CONVERT_TO_STRING
19233
+ ? stringSlice(S, position, position + 2)
19234
+ : (first - 0xD800 << 10) + (second - 0xDC00) + 0x10000;
18607
19235
  };
18608
19236
  };
18609
19237
 
@@ -18644,10 +19272,12 @@ module.exports = function (METHOD_NAME) {
18644
19272
  /***/ 4853:
18645
19273
  /***/ (function(module, __unused_webpack_exports, __webpack_require__) {
18646
19274
 
19275
+ var uncurryThis = __webpack_require__(5329);
18647
19276
  var requireObjectCoercible = __webpack_require__(8219);
18648
19277
  var toString = __webpack_require__(5803);
18649
19278
  var whitespaces = __webpack_require__(3483);
18650
19279
 
19280
+ var replace = uncurryThis(''.replace);
18651
19281
  var whitespace = '[' + whitespaces + ']';
18652
19282
  var ltrim = RegExp('^' + whitespace + whitespace + '*');
18653
19283
  var rtrim = RegExp(whitespace + whitespace + '*$');
@@ -18656,8 +19286,8 @@ var rtrim = RegExp(whitespace + whitespace + '*$');
18656
19286
  var createMethod = function (TYPE) {
18657
19287
  return function ($this) {
18658
19288
  var string = toString(requireObjectCoercible($this));
18659
- if (TYPE & 1) string = string.replace(ltrim, '');
18660
- if (TYPE & 2) string = string.replace(rtrim, '');
19289
+ if (TYPE & 1) string = replace(string, ltrim, '');
19290
+ if (TYPE & 2) string = replace(string, rtrim, '');
18661
19291
  return string;
18662
19292
  };
18663
19293
  };
@@ -18681,19 +19311,25 @@ module.exports = {
18681
19311
  /***/ (function(module, __unused_webpack_exports, __webpack_require__) {
18682
19312
 
18683
19313
  var global = __webpack_require__(1899);
19314
+ var apply = __webpack_require__(9730);
19315
+ var bind = __webpack_require__(6843);
18684
19316
  var isCallable = __webpack_require__(7475);
19317
+ var hasOwn = __webpack_require__(953);
18685
19318
  var fails = __webpack_require__(5981);
18686
- var bind = __webpack_require__(6843);
18687
19319
  var html = __webpack_require__(5463);
19320
+ var arraySlice = __webpack_require__(3765);
18688
19321
  var createElement = __webpack_require__(1333);
19322
+ var validateArgumentsLength = __webpack_require__(8348);
18689
19323
  var IS_IOS = __webpack_require__(2749);
18690
19324
  var IS_NODE = __webpack_require__(6049);
18691
19325
 
18692
19326
  var set = global.setImmediate;
18693
19327
  var clear = global.clearImmediate;
18694
19328
  var process = global.process;
18695
- var MessageChannel = global.MessageChannel;
18696
19329
  var Dispatch = global.Dispatch;
19330
+ var Function = global.Function;
19331
+ var MessageChannel = global.MessageChannel;
19332
+ var String = global.String;
18697
19333
  var counter = 0;
18698
19334
  var queue = {};
18699
19335
  var ONREADYSTATECHANGE = 'onreadystatechange';
@@ -18705,8 +19341,7 @@ try {
18705
19341
  } catch (error) { /* empty */ }
18706
19342
 
18707
19343
  var run = function (id) {
18708
- // eslint-disable-next-line no-prototype-builtins -- safe
18709
- if (queue.hasOwnProperty(id)) {
19344
+ if (hasOwn(queue, id)) {
18710
19345
  var fn = queue[id];
18711
19346
  delete queue[id];
18712
19347
  fn();
@@ -18730,14 +19365,12 @@ var post = function (id) {
18730
19365
 
18731
19366
  // Node.js 0.9+ & IE10+ has setImmediate, otherwise:
18732
19367
  if (!set || !clear) {
18733
- set = function setImmediate(fn) {
18734
- var args = [];
18735
- var argumentsLength = arguments.length;
18736
- var i = 1;
18737
- while (argumentsLength > i) args.push(arguments[i++]);
19368
+ set = function setImmediate(handler) {
19369
+ validateArgumentsLength(arguments.length, 1);
19370
+ var fn = isCallable(handler) ? handler : Function(handler);
19371
+ var args = arraySlice(arguments, 1);
18738
19372
  queue[++counter] = function () {
18739
- // eslint-disable-next-line no-new-func -- spec requirement
18740
- (isCallable(fn) ? fn : Function(fn)).apply(undefined, args);
19373
+ apply(fn, undefined, args);
18741
19374
  };
18742
19375
  defer(counter);
18743
19376
  return counter;
@@ -18761,7 +19394,7 @@ if (!set || !clear) {
18761
19394
  channel = new MessageChannel();
18762
19395
  port = channel.port2;
18763
19396
  channel.port1.onmessage = listener;
18764
- defer = bind(port.postMessage, port, 1);
19397
+ defer = bind(port.postMessage, port);
18765
19398
  // Browsers with postMessage, skip WebWorkers
18766
19399
  // IE8 has postMessage, but it's sync & typeof its postMessage is 'object'
18767
19400
  } else if (
@@ -18866,8 +19499,11 @@ module.exports = function (argument) {
18866
19499
  /***/ 9678:
18867
19500
  /***/ (function(module, __unused_webpack_exports, __webpack_require__) {
18868
19501
 
19502
+ var global = __webpack_require__(1899);
18869
19503
  var requireObjectCoercible = __webpack_require__(8219);
18870
19504
 
19505
+ var Object = global.Object;
19506
+
18871
19507
  // `ToObject` abstract operation
18872
19508
  // https://tc39.es/ecma262/#sec-toobject
18873
19509
  module.exports = function (argument) {
@@ -18880,12 +19516,15 @@ module.exports = function (argument) {
18880
19516
  /***/ 6935:
18881
19517
  /***/ (function(module, __unused_webpack_exports, __webpack_require__) {
18882
19518
 
19519
+ var global = __webpack_require__(1899);
19520
+ var call = __webpack_require__(8834);
18883
19521
  var isObject = __webpack_require__(941);
18884
19522
  var isSymbol = __webpack_require__(6664);
18885
19523
  var getMethod = __webpack_require__(4229);
18886
19524
  var ordinaryToPrimitive = __webpack_require__(9811);
18887
19525
  var wellKnownSymbol = __webpack_require__(9813);
18888
19526
 
19527
+ var TypeError = global.TypeError;
18889
19528
  var TO_PRIMITIVE = wellKnownSymbol('toPrimitive');
18890
19529
 
18891
19530
  // `ToPrimitive` abstract operation
@@ -18896,7 +19535,7 @@ module.exports = function (input, pref) {
18896
19535
  var result;
18897
19536
  if (exoticToPrim) {
18898
19537
  if (pref === undefined) pref = 'default';
18899
- result = exoticToPrim.call(input, pref);
19538
+ result = call(exoticToPrim, input, pref);
18900
19539
  if (!isObject(result) || isSymbol(result)) return result;
18901
19540
  throw TypeError("Can't convert object to primitive value");
18902
19541
  }
@@ -18917,7 +19556,7 @@ var isSymbol = __webpack_require__(6664);
18917
19556
  // https://tc39.es/ecma262/#sec-topropertykey
18918
19557
  module.exports = function (argument) {
18919
19558
  var key = toPrimitive(argument, 'string');
18920
- return isSymbol(key) ? key : String(key);
19559
+ return isSymbol(key) ? key : key + '';
18921
19560
  };
18922
19561
 
18923
19562
 
@@ -18941,8 +19580,11 @@ module.exports = String(test) === '[object z]';
18941
19580
  /***/ 5803:
18942
19581
  /***/ (function(module, __unused_webpack_exports, __webpack_require__) {
18943
19582
 
19583
+ var global = __webpack_require__(1899);
18944
19584
  var classof = __webpack_require__(9697);
18945
19585
 
19586
+ var String = global.String;
19587
+
18946
19588
  module.exports = function (argument) {
18947
19589
  if (classof(argument) === 'Symbol') throw TypeError('Cannot convert a Symbol value to a string');
18948
19590
  return String(argument);
@@ -18952,7 +19594,11 @@ module.exports = function (argument) {
18952
19594
  /***/ }),
18953
19595
 
18954
19596
  /***/ 9826:
18955
- /***/ (function(module) {
19597
+ /***/ (function(module, __unused_webpack_exports, __webpack_require__) {
19598
+
19599
+ var global = __webpack_require__(1899);
19600
+
19601
+ var String = global.String;
18956
19602
 
18957
19603
  module.exports = function (argument) {
18958
19604
  try {
@@ -18966,13 +19612,16 @@ module.exports = function (argument) {
18966
19612
  /***/ }),
18967
19613
 
18968
19614
  /***/ 9418:
18969
- /***/ (function(module) {
19615
+ /***/ (function(module, __unused_webpack_exports, __webpack_require__) {
19616
+
19617
+ var uncurryThis = __webpack_require__(5329);
18970
19618
 
18971
19619
  var id = 0;
18972
19620
  var postfix = Math.random();
19621
+ var toString = uncurryThis(1.0.toString);
18973
19622
 
18974
19623
  module.exports = function (key) {
18975
- return 'Symbol(' + String(key === undefined ? '' : key) + ')_' + (++id + postfix).toString(36);
19624
+ return 'Symbol(' + (key === undefined ? '' : key) + ')_' + toString(++id + postfix, 36);
18976
19625
  };
18977
19626
 
18978
19627
 
@@ -18989,6 +19638,40 @@ module.exports = NATIVE_SYMBOL
18989
19638
  && typeof Symbol.iterator == 'symbol';
18990
19639
 
18991
19640
 
19641
+ /***/ }),
19642
+
19643
+ /***/ 3937:
19644
+ /***/ (function(module, __unused_webpack_exports, __webpack_require__) {
19645
+
19646
+ var DESCRIPTORS = __webpack_require__(5746);
19647
+ var fails = __webpack_require__(5981);
19648
+
19649
+ // V8 ~ Chrome 36-
19650
+ // https://bugs.chromium.org/p/v8/issues/detail?id=3334
19651
+ module.exports = DESCRIPTORS && fails(function () {
19652
+ // eslint-disable-next-line es/no-object-defineproperty -- required for testing
19653
+ return Object.defineProperty(function () { /* empty */ }, 'prototype', {
19654
+ value: 42,
19655
+ writable: false
19656
+ }).prototype != 42;
19657
+ });
19658
+
19659
+
19660
+ /***/ }),
19661
+
19662
+ /***/ 8348:
19663
+ /***/ (function(module, __unused_webpack_exports, __webpack_require__) {
19664
+
19665
+ var global = __webpack_require__(1899);
19666
+
19667
+ var TypeError = global.TypeError;
19668
+
19669
+ module.exports = function (passed, required) {
19670
+ if (passed < required) throw TypeError('Not enough arguments');
19671
+ return passed;
19672
+ };
19673
+
19674
+
18992
19675
  /***/ }),
18993
19676
 
18994
19677
  /***/ 1477:
@@ -19013,14 +19696,18 @@ var USE_SYMBOL_AS_UID = __webpack_require__(2302);
19013
19696
 
19014
19697
  var WellKnownSymbolsStore = shared('wks');
19015
19698
  var Symbol = global.Symbol;
19699
+ var symbolFor = Symbol && Symbol['for'];
19016
19700
  var createWellKnownSymbol = USE_SYMBOL_AS_UID ? Symbol : Symbol && Symbol.withoutSetter || uid;
19017
19701
 
19018
19702
  module.exports = function (name) {
19019
19703
  if (!hasOwn(WellKnownSymbolsStore, name) || !(NATIVE_SYMBOL || typeof WellKnownSymbolsStore[name] == 'string')) {
19704
+ var description = 'Symbol.' + name;
19020
19705
  if (NATIVE_SYMBOL && hasOwn(Symbol, name)) {
19021
19706
  WellKnownSymbolsStore[name] = Symbol[name];
19707
+ } else if (USE_SYMBOL_AS_UID && symbolFor) {
19708
+ WellKnownSymbolsStore[name] = symbolFor(description);
19022
19709
  } else {
19023
- WellKnownSymbolsStore[name] = createWellKnownSymbol('Symbol.' + name);
19710
+ WellKnownSymbolsStore[name] = createWellKnownSymbol(description);
19024
19711
  }
19025
19712
  } return WellKnownSymbolsStore[name];
19026
19713
  };
@@ -19044,35 +19731,51 @@ module.exports = '\u0009\u000A\u000B\u000C\u000D\u0020\u00A0\u1680\u2000\u2001\u
19044
19731
  "use strict";
19045
19732
 
19046
19733
  var $ = __webpack_require__(6887);
19734
+ var global = __webpack_require__(1899);
19735
+ var isPrototypeOf = __webpack_require__(7046);
19047
19736
  var getPrototypeOf = __webpack_require__(249);
19048
19737
  var setPrototypeOf = __webpack_require__(8929);
19738
+ var copyConstructorProperties = __webpack_require__(3489);
19049
19739
  var create = __webpack_require__(9290);
19050
19740
  var createNonEnumerableProperty = __webpack_require__(2029);
19051
19741
  var createPropertyDescriptor = __webpack_require__(1887);
19742
+ var clearErrorStack = __webpack_require__(8694);
19052
19743
  var installErrorCause = __webpack_require__(3794);
19053
19744
  var iterate = __webpack_require__(3091);
19054
- var toString = __webpack_require__(5803);
19745
+ var normalizeStringArgument = __webpack_require__(4649);
19746
+ var wellKnownSymbol = __webpack_require__(9813);
19747
+ var ERROR_STACK_INSTALLABLE = __webpack_require__(8780);
19748
+
19749
+ var TO_STRING_TAG = wellKnownSymbol('toStringTag');
19750
+ var Error = global.Error;
19751
+ var push = [].push;
19055
19752
 
19056
19753
  var $AggregateError = function AggregateError(errors, message /* , options */) {
19057
- var that = this;
19058
19754
  var options = arguments.length > 2 ? arguments[2] : undefined;
19059
- if (!(that instanceof $AggregateError)) return new $AggregateError(errors, message, options);
19755
+ var isInstance = isPrototypeOf(AggregateErrorPrototype, this);
19756
+ var that;
19060
19757
  if (setPrototypeOf) {
19061
- // eslint-disable-next-line unicorn/error-message -- expected
19062
- that = setPrototypeOf(new Error(undefined), getPrototypeOf(that));
19758
+ that = setPrototypeOf(new Error(), isInstance ? getPrototypeOf(this) : AggregateErrorPrototype);
19759
+ } else {
19760
+ that = isInstance ? this : create(AggregateErrorPrototype);
19761
+ createNonEnumerableProperty(that, TO_STRING_TAG, 'Error');
19063
19762
  }
19064
- if (message !== undefined) createNonEnumerableProperty(that, 'message', toString(message));
19763
+ if (message !== undefined) createNonEnumerableProperty(that, 'message', normalizeStringArgument(message));
19764
+ if (ERROR_STACK_INSTALLABLE) createNonEnumerableProperty(that, 'stack', clearErrorStack(that.stack, 1));
19065
19765
  installErrorCause(that, options);
19066
19766
  var errorsArray = [];
19067
- iterate(errors, errorsArray.push, { that: errorsArray });
19767
+ iterate(errors, push, { that: errorsArray });
19068
19768
  createNonEnumerableProperty(that, 'errors', errorsArray);
19069
19769
  return that;
19070
19770
  };
19071
19771
 
19072
- $AggregateError.prototype = create(Error.prototype, {
19073
- constructor: createPropertyDescriptor(5, $AggregateError),
19074
- message: createPropertyDescriptor(5, ''),
19075
- name: createPropertyDescriptor(5, 'AggregateError')
19772
+ if (setPrototypeOf) setPrototypeOf($AggregateError, Error);
19773
+ else copyConstructorProperties($AggregateError, Error, { name: true });
19774
+
19775
+ var AggregateErrorPrototype = $AggregateError.prototype = create(Error.prototype, {
19776
+ constructor: createPropertyDescriptor(1, $AggregateError),
19777
+ message: createPropertyDescriptor(1, ''),
19778
+ name: createPropertyDescriptor(1, 'AggregateError')
19076
19779
  });
19077
19780
 
19078
19781
  // `AggregateError` constructor
@@ -19090,6 +19793,7 @@ $({ global: true }, {
19090
19793
  "use strict";
19091
19794
 
19092
19795
  var $ = __webpack_require__(6887);
19796
+ var global = __webpack_require__(1899);
19093
19797
  var fails = __webpack_require__(5981);
19094
19798
  var isArray = __webpack_require__(1052);
19095
19799
  var isObject = __webpack_require__(941);
@@ -19104,6 +19808,7 @@ var V8_VERSION = __webpack_require__(3385);
19104
19808
  var IS_CONCAT_SPREADABLE = wellKnownSymbol('isConcatSpreadable');
19105
19809
  var MAX_SAFE_INTEGER = 0x1FFFFFFFFFFFFF;
19106
19810
  var MAXIMUM_ALLOWED_INDEX_EXCEEDED = 'Maximum allowed index exceeded';
19811
+ var TypeError = global.TypeError;
19107
19812
 
19108
19813
  // We can't use this feature detection in V8 since it causes
19109
19814
  // deoptimization and serious performance degradation
@@ -19235,22 +19940,24 @@ addToUnscopables('includes');
19235
19940
 
19236
19941
  /* eslint-disable es/no-array-prototype-indexof -- required for testing */
19237
19942
  var $ = __webpack_require__(6887);
19238
- var $indexOf = (__webpack_require__(1692).indexOf);
19943
+ var uncurryThis = __webpack_require__(5329);
19944
+ var $IndexOf = (__webpack_require__(1692).indexOf);
19239
19945
  var arrayMethodIsStrict = __webpack_require__(4194);
19240
19946
 
19241
- var nativeIndexOf = [].indexOf;
19947
+ var un$IndexOf = uncurryThis([].indexOf);
19242
19948
 
19243
- var NEGATIVE_ZERO = !!nativeIndexOf && 1 / [1].indexOf(1, -0) < 0;
19949
+ var NEGATIVE_ZERO = !!un$IndexOf && 1 / un$IndexOf([1], 1, -0) < 0;
19244
19950
  var STRICT_METHOD = arrayMethodIsStrict('indexOf');
19245
19951
 
19246
19952
  // `Array.prototype.indexOf` method
19247
19953
  // https://tc39.es/ecma262/#sec-array.prototype.indexof
19248
19954
  $({ target: 'Array', proto: true, forced: NEGATIVE_ZERO || !STRICT_METHOD }, {
19249
19955
  indexOf: function indexOf(searchElement /* , fromIndex = 0 */) {
19956
+ var fromIndex = arguments.length > 1 ? arguments[1] : undefined;
19250
19957
  return NEGATIVE_ZERO
19251
19958
  // convert -0 to +0
19252
- ? nativeIndexOf.apply(this, arguments) || 0
19253
- : $indexOf(this, searchElement, arguments.length > 1 ? arguments[1] : undefined);
19959
+ ? un$IndexOf(this, searchElement, fromIndex) || 0
19960
+ : $IndexOf(this, searchElement, fromIndex);
19254
19961
  }
19255
19962
  });
19256
19963
 
@@ -19266,7 +19973,10 @@ var toIndexedObject = __webpack_require__(4529);
19266
19973
  var addToUnscopables = __webpack_require__(8479);
19267
19974
  var Iterators = __webpack_require__(2077);
19268
19975
  var InternalStateModule = __webpack_require__(5402);
19976
+ var defineProperty = (__webpack_require__(5988).f);
19269
19977
  var defineIterator = __webpack_require__(7771);
19978
+ var IS_PURE = __webpack_require__(2529);
19979
+ var DESCRIPTORS = __webpack_require__(5746);
19270
19980
 
19271
19981
  var ARRAY_ITERATOR = 'Array Iterator';
19272
19982
  var setInternalState = InternalStateModule.set;
@@ -19308,13 +20018,18 @@ module.exports = defineIterator(Array, 'Array', function (iterated, kind) {
19308
20018
  // argumentsList[@@iterator] is %ArrayProto_values%
19309
20019
  // https://tc39.es/ecma262/#sec-createunmappedargumentsobject
19310
20020
  // https://tc39.es/ecma262/#sec-createmappedargumentsobject
19311
- Iterators.Arguments = Iterators.Array;
20021
+ var values = Iterators.Arguments = Iterators.Array;
19312
20022
 
19313
20023
  // https://tc39.es/ecma262/#sec-array.prototype-@@unscopables
19314
20024
  addToUnscopables('keys');
19315
20025
  addToUnscopables('values');
19316
20026
  addToUnscopables('entries');
19317
20027
 
20028
+ // V8 ~ Chrome 45- bug
20029
+ if (!IS_PURE && DESCRIPTORS && values.name !== 'values') try {
20030
+ defineProperty(values, 'name', { value: 'values' });
20031
+ } catch (error) { /* empty */ }
20032
+
19318
20033
 
19319
20034
  /***/ }),
19320
20035
 
@@ -19361,7 +20076,8 @@ var CHROME_BUG = !IS_NODE && CHROME_VERSION > 79 && CHROME_VERSION < 83;
19361
20076
  // https://tc39.es/ecma262/#sec-array.prototype.reduce
19362
20077
  $({ target: 'Array', proto: true, forced: !STRICT_METHOD || CHROME_BUG }, {
19363
20078
  reduce: function reduce(callbackfn /* , initialValue */) {
19364
- return $reduce(this, callbackfn, arguments.length, arguments.length > 1 ? arguments[1] : undefined);
20079
+ var length = arguments.length;
20080
+ return $reduce(this, callbackfn, length, length > 1 ? arguments[1] : undefined);
19365
20081
  }
19366
20082
  });
19367
20083
 
@@ -19374,6 +20090,7 @@ $({ target: 'Array', proto: true, forced: !STRICT_METHOD || CHROME_BUG }, {
19374
20090
  "use strict";
19375
20091
 
19376
20092
  var $ = __webpack_require__(6887);
20093
+ var global = __webpack_require__(1899);
19377
20094
  var isArray = __webpack_require__(1052);
19378
20095
  var isConstructor = __webpack_require__(4284);
19379
20096
  var isObject = __webpack_require__(941);
@@ -19383,11 +20100,12 @@ var toIndexedObject = __webpack_require__(4529);
19383
20100
  var createProperty = __webpack_require__(5449);
19384
20101
  var wellKnownSymbol = __webpack_require__(9813);
19385
20102
  var arrayMethodHasSpeciesSupport = __webpack_require__(568);
20103
+ var un$Slice = __webpack_require__(3765);
19386
20104
 
19387
20105
  var HAS_SPECIES_SUPPORT = arrayMethodHasSpeciesSupport('slice');
19388
20106
 
19389
20107
  var SPECIES = wellKnownSymbol('species');
19390
- var nativeSlice = [].slice;
20108
+ var Array = global.Array;
19391
20109
  var max = Math.max;
19392
20110
 
19393
20111
  // `Array.prototype.slice` method
@@ -19411,7 +20129,7 @@ $({ target: 'Array', proto: true, forced: !HAS_SPECIES_SUPPORT }, {
19411
20129
  if (Constructor === null) Constructor = undefined;
19412
20130
  }
19413
20131
  if (Constructor === Array || Constructor === undefined) {
19414
- return nativeSlice.call(O, k, fin);
20132
+ return un$Slice(O, k, fin);
19415
20133
  }
19416
20134
  }
19417
20135
  result = new (Constructor === undefined ? Array : Constructor)(max(fin - k, 0));
@@ -19432,7 +20150,7 @@ var bind = __webpack_require__(8308);
19432
20150
 
19433
20151
  // `Function.prototype.bind` method
19434
20152
  // https://tc39.es/ecma262/#sec-function.prototype.bind
19435
- $({ target: 'Function', proto: true }, {
20153
+ $({ target: 'Function', proto: true, forced: Function.bind !== bind }, {
19436
20154
  bind: bind
19437
20155
  });
19438
20156
 
@@ -19443,19 +20161,29 @@ $({ target: 'Function', proto: true }, {
19443
20161
  /***/ (function(__unused_webpack_module, __unused_webpack_exports, __webpack_require__) {
19444
20162
 
19445
20163
  var $ = __webpack_require__(6887);
20164
+ var global = __webpack_require__(1899);
19446
20165
  var getBuiltIn = __webpack_require__(626);
20166
+ var apply = __webpack_require__(9730);
20167
+ var uncurryThis = __webpack_require__(5329);
19447
20168
  var fails = __webpack_require__(5981);
19448
20169
 
20170
+ var Array = global.Array;
19449
20171
  var $stringify = getBuiltIn('JSON', 'stringify');
19450
- var re = /[\uD800-\uDFFF]/g;
20172
+ var exec = uncurryThis(/./.exec);
20173
+ var charAt = uncurryThis(''.charAt);
20174
+ var charCodeAt = uncurryThis(''.charCodeAt);
20175
+ var replace = uncurryThis(''.replace);
20176
+ var numberToString = uncurryThis(1.0.toString);
20177
+
20178
+ var tester = /[\uD800-\uDFFF]/g;
19451
20179
  var low = /^[\uD800-\uDBFF]$/;
19452
20180
  var hi = /^[\uDC00-\uDFFF]$/;
19453
20181
 
19454
20182
  var fix = function (match, offset, string) {
19455
- var prev = string.charAt(offset - 1);
19456
- var next = string.charAt(offset + 1);
19457
- if ((low.test(match) && !hi.test(next)) || (hi.test(match) && !low.test(prev))) {
19458
- return '\\u' + match.charCodeAt(0).toString(16);
20183
+ var prev = charAt(string, offset - 1);
20184
+ var next = charAt(string, offset + 1);
20185
+ if ((exec(low, match) && !exec(hi, next)) || (exec(hi, match) && !exec(low, prev))) {
20186
+ return '\\u' + numberToString(charCodeAt(match, 0), 16);
19459
20187
  } return match;
19460
20188
  };
19461
20189
 
@@ -19471,8 +20199,9 @@ if ($stringify) {
19471
20199
  $({ target: 'JSON', stat: true, forced: FORCED }, {
19472
20200
  // eslint-disable-next-line no-unused-vars -- required for `.length`
19473
20201
  stringify: function stringify(it, replacer, space) {
19474
- var result = $stringify.apply(null, arguments);
19475
- return typeof result == 'string' ? result.replace(re, fix) : result;
20202
+ for (var i = 0, l = arguments.length, args = Array(l); i < l; i++) args[i] = arguments[i];
20203
+ var result = apply($stringify, null, args);
20204
+ return typeof result == 'string' ? replace(result, tester, fix) : result;
19476
20205
  }
19477
20206
  });
19478
20207
  }
@@ -19494,7 +20223,7 @@ setToStringTag(global.JSON, 'JSON', true);
19494
20223
  /***/ }),
19495
20224
 
19496
20225
  /***/ 7501:
19497
- /***/ (function(module, __unused_webpack_exports, __webpack_require__) {
20226
+ /***/ (function(__unused_webpack_module, __unused_webpack_exports, __webpack_require__) {
19498
20227
 
19499
20228
  "use strict";
19500
20229
 
@@ -19503,7 +20232,7 @@ var collectionStrong = __webpack_require__(5616);
19503
20232
 
19504
20233
  // `Map` constructor
19505
20234
  // https://tc39.es/ecma262/#sec-map-objects
19506
- module.exports = collection('Map', function (init) {
20235
+ collection('Map', function (init) {
19507
20236
  return function Map() { return init(this, arguments.length ? arguments[0] : undefined); };
19508
20237
  }, collectionStrong);
19509
20238
 
@@ -19555,11 +20284,12 @@ $({ target: 'Object', stat: true, sham: !DESCRIPTORS }, {
19555
20284
 
19556
20285
  var $ = __webpack_require__(6887);
19557
20286
  var DESCRIPTORS = __webpack_require__(5746);
19558
- var defineProperties = __webpack_require__(9938);
20287
+ var defineProperties = (__webpack_require__(9938).f);
19559
20288
 
19560
20289
  // `Object.defineProperties` method
19561
20290
  // https://tc39.es/ecma262/#sec-object.defineproperties
19562
- $({ target: 'Object', stat: true, forced: !DESCRIPTORS, sham: !DESCRIPTORS }, {
20291
+ // eslint-disable-next-line es/no-object-defineproperties -- safe
20292
+ $({ target: 'Object', stat: true, forced: Object.defineProperties !== defineProperties, sham: !DESCRIPTORS }, {
19563
20293
  defineProperties: defineProperties
19564
20294
  });
19565
20295
 
@@ -19571,12 +20301,13 @@ $({ target: 'Object', stat: true, forced: !DESCRIPTORS, sham: !DESCRIPTORS }, {
19571
20301
 
19572
20302
  var $ = __webpack_require__(6887);
19573
20303
  var DESCRIPTORS = __webpack_require__(5746);
19574
- var objectDefinePropertyModile = __webpack_require__(5988);
20304
+ var defineProperty = (__webpack_require__(5988).f);
19575
20305
 
19576
20306
  // `Object.defineProperty` method
19577
20307
  // https://tc39.es/ecma262/#sec-object.defineproperty
19578
- $({ target: 'Object', stat: true, forced: !DESCRIPTORS, sham: !DESCRIPTORS }, {
19579
- defineProperty: objectDefinePropertyModile.f
20308
+ // eslint-disable-next-line es/no-object-defineproperty -- safe
20309
+ $({ target: 'Object', stat: true, forced: Object.defineProperty !== defineProperty, sham: !DESCRIPTORS }, {
20310
+ defineProperty: defineProperty
19580
20311
  });
19581
20312
 
19582
20313
 
@@ -19750,6 +20481,7 @@ $({ target: 'Object', stat: true }, {
19750
20481
  "use strict";
19751
20482
 
19752
20483
  var $ = __webpack_require__(6887);
20484
+ var call = __webpack_require__(8834);
19753
20485
  var aCallable = __webpack_require__(4883);
19754
20486
  var newPromiseCapabilityModule = __webpack_require__(9520);
19755
20487
  var perform = __webpack_require__(2);
@@ -19771,9 +20503,8 @@ $({ target: 'Promise', stat: true }, {
19771
20503
  iterate(iterable, function (promise) {
19772
20504
  var index = counter++;
19773
20505
  var alreadyCalled = false;
19774
- values.push(undefined);
19775
20506
  remaining++;
19776
- promiseResolve.call(C, promise).then(function (value) {
20507
+ call(promiseResolve, C, promise).then(function (value) {
19777
20508
  if (alreadyCalled) return;
19778
20509
  alreadyCalled = true;
19779
20510
  values[index] = { status: 'fulfilled', value: value };
@@ -19803,6 +20534,7 @@ $({ target: 'Promise', stat: true }, {
19803
20534
  var $ = __webpack_require__(6887);
19804
20535
  var aCallable = __webpack_require__(4883);
19805
20536
  var getBuiltIn = __webpack_require__(626);
20537
+ var call = __webpack_require__(8834);
19806
20538
  var newPromiseCapabilityModule = __webpack_require__(9520);
19807
20539
  var perform = __webpack_require__(2);
19808
20540
  var iterate = __webpack_require__(3091);
@@ -19814,6 +20546,7 @@ var PROMISE_ANY_ERROR = 'No one promise resolved';
19814
20546
  $({ target: 'Promise', stat: true }, {
19815
20547
  any: function any(iterable) {
19816
20548
  var C = this;
20549
+ var AggregateError = getBuiltIn('AggregateError');
19817
20550
  var capability = newPromiseCapabilityModule.f(C);
19818
20551
  var resolve = capability.resolve;
19819
20552
  var reject = capability.reject;
@@ -19826,9 +20559,8 @@ $({ target: 'Promise', stat: true }, {
19826
20559
  iterate(iterable, function (promise) {
19827
20560
  var index = counter++;
19828
20561
  var alreadyRejected = false;
19829
- errors.push(undefined);
19830
20562
  remaining++;
19831
- promiseResolve.call(C, promise).then(function (value) {
20563
+ call(promiseResolve, C, promise).then(function (value) {
19832
20564
  if (alreadyRejected || alreadyResolved) return;
19833
20565
  alreadyResolved = true;
19834
20566
  resolve(value);
@@ -19836,10 +20568,10 @@ $({ target: 'Promise', stat: true }, {
19836
20568
  if (alreadyRejected || alreadyResolved) return;
19837
20569
  alreadyRejected = true;
19838
20570
  errors[index] = error;
19839
- --remaining || reject(new (getBuiltIn('AggregateError'))(errors, PROMISE_ANY_ERROR));
20571
+ --remaining || reject(new AggregateError(errors, PROMISE_ANY_ERROR));
19840
20572
  });
19841
20573
  });
19842
- --remaining || reject(new (getBuiltIn('AggregateError'))(errors, PROMISE_ANY_ERROR));
20574
+ --remaining || reject(new AggregateError(errors, PROMISE_ANY_ERROR));
19843
20575
  });
19844
20576
  if (result.error) reject(result.value);
19845
20577
  return capability.promise;
@@ -19866,6 +20598,7 @@ var redefine = __webpack_require__(9754);
19866
20598
 
19867
20599
  // Safari bug https://bugs.webkit.org/show_bug.cgi?id=200829
19868
20600
  var NON_GENERIC = !!NativePromise && fails(function () {
20601
+ // eslint-disable-next-line unicorn/no-thenable -- required for testing
19869
20602
  NativePromise.prototype['finally'].call({ then: function () { /* empty */ } }, function () { /* empty */ });
19870
20603
  });
19871
20604
 
@@ -19906,6 +20639,7 @@ var $ = __webpack_require__(6887);
19906
20639
  var IS_PURE = __webpack_require__(2529);
19907
20640
  var global = __webpack_require__(1899);
19908
20641
  var getBuiltIn = __webpack_require__(626);
20642
+ var call = __webpack_require__(8834);
19909
20643
  var NativePromise = __webpack_require__(9297);
19910
20644
  var redefine = __webpack_require__(9754);
19911
20645
  var redefineAll = __webpack_require__(7524);
@@ -19926,6 +20660,7 @@ var promiseResolve = __webpack_require__(6584);
19926
20660
  var hostReportErrors = __webpack_require__(4845);
19927
20661
  var newPromiseCapabilityModule = __webpack_require__(9520);
19928
20662
  var perform = __webpack_require__(2);
20663
+ var Queue = __webpack_require__(8397);
19929
20664
  var InternalStateModule = __webpack_require__(5402);
19930
20665
  var isForced = __webpack_require__(7252);
19931
20666
  var wellKnownSymbol = __webpack_require__(9813);
@@ -19935,17 +20670,19 @@ var V8_VERSION = __webpack_require__(3385);
19935
20670
 
19936
20671
  var SPECIES = wellKnownSymbol('species');
19937
20672
  var PROMISE = 'Promise';
19938
- var getInternalState = InternalStateModule.get;
20673
+
20674
+ var getInternalState = InternalStateModule.getterFor(PROMISE);
19939
20675
  var setInternalState = InternalStateModule.set;
19940
20676
  var getInternalPromiseState = InternalStateModule.getterFor(PROMISE);
19941
20677
  var NativePromisePrototype = NativePromise && NativePromise.prototype;
19942
20678
  var PromiseConstructor = NativePromise;
19943
- var PromiseConstructorPrototype = NativePromisePrototype;
20679
+ var PromisePrototype = NativePromisePrototype;
19944
20680
  var TypeError = global.TypeError;
19945
20681
  var document = global.document;
19946
20682
  var process = global.process;
19947
20683
  var newPromiseCapability = newPromiseCapabilityModule.f;
19948
20684
  var newGenericPromiseCapability = newPromiseCapability;
20685
+
19949
20686
  var DISPATCH_EVENT = !!(document && document.createEvent && global.dispatchEvent);
19950
20687
  var NATIVE_REJECTION_EVENT = isCallable(global.PromiseRejectionEvent);
19951
20688
  var UNHANDLED_REJECTION = 'unhandledrejection';
@@ -19956,6 +20693,7 @@ var REJECTED = 2;
19956
20693
  var HANDLED = 1;
19957
20694
  var UNHANDLED = 2;
19958
20695
  var SUBCLASSING = false;
20696
+
19959
20697
  var Internal, OwnPromiseCapability, PromiseWrapper, nativeThen;
19960
20698
 
19961
20699
  var FORCED = isForced(PROMISE, function () {
@@ -19966,7 +20704,7 @@ var FORCED = isForced(PROMISE, function () {
19966
20704
  // We can't detect it synchronously, so just check versions
19967
20705
  if (!GLOBAL_CORE_JS_PROMISE && V8_VERSION === 66) return true;
19968
20706
  // We need Promise#finally in the pure version for preventing prototype pollution
19969
- if (IS_PURE && !PromiseConstructorPrototype['finally']) return true;
20707
+ if (IS_PURE && !PromisePrototype['finally']) return true;
19970
20708
  // We can't use @@species feature detection in V8 since it causes
19971
20709
  // deoptimization and performance degradation
19972
20710
  // https://github.com/zloirock/core-js/issues/679
@@ -19994,49 +20732,50 @@ var isThenable = function (it) {
19994
20732
  return isObject(it) && isCallable(then = it.then) ? then : false;
19995
20733
  };
19996
20734
 
20735
+ var callReaction = function (reaction, state) {
20736
+ var value = state.value;
20737
+ var ok = state.state == FULFILLED;
20738
+ var handler = ok ? reaction.ok : reaction.fail;
20739
+ var resolve = reaction.resolve;
20740
+ var reject = reaction.reject;
20741
+ var domain = reaction.domain;
20742
+ var result, then, exited;
20743
+ try {
20744
+ if (handler) {
20745
+ if (!ok) {
20746
+ if (state.rejection === UNHANDLED) onHandleUnhandled(state);
20747
+ state.rejection = HANDLED;
20748
+ }
20749
+ if (handler === true) result = value;
20750
+ else {
20751
+ if (domain) domain.enter();
20752
+ result = handler(value); // can throw
20753
+ if (domain) {
20754
+ domain.exit();
20755
+ exited = true;
20756
+ }
20757
+ }
20758
+ if (result === reaction.promise) {
20759
+ reject(TypeError('Promise-chain cycle'));
20760
+ } else if (then = isThenable(result)) {
20761
+ call(then, result, resolve, reject);
20762
+ } else resolve(result);
20763
+ } else reject(value);
20764
+ } catch (error) {
20765
+ if (domain && !exited) domain.exit();
20766
+ reject(error);
20767
+ }
20768
+ };
20769
+
19997
20770
  var notify = function (state, isReject) {
19998
20771
  if (state.notified) return;
19999
20772
  state.notified = true;
20000
- var chain = state.reactions;
20001
20773
  microtask(function () {
20002
- var value = state.value;
20003
- var ok = state.state == FULFILLED;
20004
- var index = 0;
20005
- // variable length - can't use forEach
20006
- while (chain.length > index) {
20007
- var reaction = chain[index++];
20008
- var handler = ok ? reaction.ok : reaction.fail;
20009
- var resolve = reaction.resolve;
20010
- var reject = reaction.reject;
20011
- var domain = reaction.domain;
20012
- var result, then, exited;
20013
- try {
20014
- if (handler) {
20015
- if (!ok) {
20016
- if (state.rejection === UNHANDLED) onHandleUnhandled(state);
20017
- state.rejection = HANDLED;
20018
- }
20019
- if (handler === true) result = value;
20020
- else {
20021
- if (domain) domain.enter();
20022
- result = handler(value); // can throw
20023
- if (domain) {
20024
- domain.exit();
20025
- exited = true;
20026
- }
20027
- }
20028
- if (result === reaction.promise) {
20029
- reject(TypeError('Promise-chain cycle'));
20030
- } else if (then = isThenable(result)) {
20031
- then.call(result, resolve, reject);
20032
- } else resolve(result);
20033
- } else reject(value);
20034
- } catch (error) {
20035
- if (domain && !exited) domain.exit();
20036
- reject(error);
20037
- }
20774
+ var reactions = state.reactions;
20775
+ var reaction;
20776
+ while (reaction = reactions.get()) {
20777
+ callReaction(reaction, state);
20038
20778
  }
20039
- state.reactions = [];
20040
20779
  state.notified = false;
20041
20780
  if (isReject && !state.rejection) onUnhandled(state);
20042
20781
  });
@@ -20056,7 +20795,7 @@ var dispatchEvent = function (name, promise, reason) {
20056
20795
  };
20057
20796
 
20058
20797
  var onUnhandled = function (state) {
20059
- task.call(global, function () {
20798
+ call(task, global, function () {
20060
20799
  var promise = state.facade;
20061
20800
  var value = state.value;
20062
20801
  var IS_UNHANDLED = isUnhandled(state);
@@ -20079,7 +20818,7 @@ var isUnhandled = function (state) {
20079
20818
  };
20080
20819
 
20081
20820
  var onHandleUnhandled = function (state) {
20082
- task.call(global, function () {
20821
+ call(task, global, function () {
20083
20822
  var promise = state.facade;
20084
20823
  if (IS_NODE) {
20085
20824
  process.emit('rejectionHandled', promise);
@@ -20113,7 +20852,7 @@ var internalResolve = function (state, value, unwrap) {
20113
20852
  microtask(function () {
20114
20853
  var wrapper = { done: false };
20115
20854
  try {
20116
- then.call(value,
20855
+ call(then, value,
20117
20856
  bind(internalResolve, wrapper, state),
20118
20857
  bind(internalReject, wrapper, state)
20119
20858
  );
@@ -20135,9 +20874,9 @@ var internalResolve = function (state, value, unwrap) {
20135
20874
  if (FORCED) {
20136
20875
  // 25.4.3.1 Promise(executor)
20137
20876
  PromiseConstructor = function Promise(executor) {
20138
- anInstance(this, PromiseConstructor, PROMISE);
20877
+ anInstance(this, PromisePrototype);
20139
20878
  aCallable(executor);
20140
- Internal.call(this);
20879
+ call(Internal, this);
20141
20880
  var state = getInternalState(this);
20142
20881
  try {
20143
20882
  executor(bind(internalResolve, state), bind(internalReject, state));
@@ -20145,7 +20884,7 @@ if (FORCED) {
20145
20884
  internalReject(state, error);
20146
20885
  }
20147
20886
  };
20148
- PromiseConstructorPrototype = PromiseConstructor.prototype;
20887
+ PromisePrototype = PromiseConstructor.prototype;
20149
20888
  // eslint-disable-next-line no-unused-vars -- required for `.length`
20150
20889
  Internal = function Promise(executor) {
20151
20890
  setInternalState(this, {
@@ -20153,24 +20892,27 @@ if (FORCED) {
20153
20892
  done: false,
20154
20893
  notified: false,
20155
20894
  parent: false,
20156
- reactions: [],
20895
+ reactions: new Queue(),
20157
20896
  rejection: false,
20158
20897
  state: PENDING,
20159
20898
  value: undefined
20160
20899
  });
20161
20900
  };
20162
- Internal.prototype = redefineAll(PromiseConstructorPrototype, {
20901
+ Internal.prototype = redefineAll(PromisePrototype, {
20163
20902
  // `Promise.prototype.then` method
20164
20903
  // https://tc39.es/ecma262/#sec-promise.prototype.then
20904
+ // eslint-disable-next-line unicorn/no-thenable -- safe
20165
20905
  then: function then(onFulfilled, onRejected) {
20166
20906
  var state = getInternalPromiseState(this);
20167
20907
  var reaction = newPromiseCapability(speciesConstructor(this, PromiseConstructor));
20908
+ state.parent = true;
20168
20909
  reaction.ok = isCallable(onFulfilled) ? onFulfilled : true;
20169
20910
  reaction.fail = isCallable(onRejected) && onRejected;
20170
20911
  reaction.domain = IS_NODE ? process.domain : undefined;
20171
- state.parent = true;
20172
- state.reactions.push(reaction);
20173
- if (state.state != PENDING) notify(state, false);
20912
+ if (state.state == PENDING) state.reactions.add(reaction);
20913
+ else microtask(function () {
20914
+ callReaction(reaction, state);
20915
+ });
20174
20916
  return reaction.promise;
20175
20917
  },
20176
20918
  // `Promise.prototype.catch` method
@@ -20200,13 +20942,13 @@ if (FORCED) {
20200
20942
  redefine(NativePromisePrototype, 'then', function then(onFulfilled, onRejected) {
20201
20943
  var that = this;
20202
20944
  return new PromiseConstructor(function (resolve, reject) {
20203
- nativeThen.call(that, resolve, reject);
20945
+ call(nativeThen, that, resolve, reject);
20204
20946
  }).then(onFulfilled, onRejected);
20205
20947
  // https://github.com/zloirock/core-js/issues/640
20206
20948
  }, { unsafe: true });
20207
20949
 
20208
20950
  // makes sure that native promise-based APIs `Promise#catch` properly works with patched `Promise#then`
20209
- redefine(NativePromisePrototype, 'catch', PromiseConstructorPrototype['catch'], { unsafe: true });
20951
+ redefine(NativePromisePrototype, 'catch', PromisePrototype['catch'], { unsafe: true });
20210
20952
  }
20211
20953
 
20212
20954
  // make `.constructor === Promise` work for native promise-based APIs
@@ -20216,7 +20958,7 @@ if (FORCED) {
20216
20958
 
20217
20959
  // make `instanceof Promise` work for native promise-based APIs
20218
20960
  if (setPrototypeOf) {
20219
- setPrototypeOf(NativePromisePrototype, PromiseConstructorPrototype);
20961
+ setPrototypeOf(NativePromisePrototype, PromisePrototype);
20220
20962
  }
20221
20963
  }
20222
20964
  }
@@ -20236,7 +20978,7 @@ $({ target: PROMISE, stat: true, forced: FORCED }, {
20236
20978
  // https://tc39.es/ecma262/#sec-promise.reject
20237
20979
  reject: function reject(r) {
20238
20980
  var capability = newPromiseCapability(this);
20239
- capability.reject.call(undefined, r);
20981
+ call(capability.reject, undefined, r);
20240
20982
  return capability.promise;
20241
20983
  }
20242
20984
  });
@@ -20265,9 +21007,8 @@ $({ target: PROMISE, stat: true, forced: INCORRECT_ITERATION }, {
20265
21007
  iterate(iterable, function (promise) {
20266
21008
  var index = counter++;
20267
21009
  var alreadyCalled = false;
20268
- values.push(undefined);
20269
21010
  remaining++;
20270
- $promiseResolve.call(C, promise).then(function (value) {
21011
+ call($promiseResolve, C, promise).then(function (value) {
20271
21012
  if (alreadyCalled) return;
20272
21013
  alreadyCalled = true;
20273
21014
  values[index] = value;
@@ -20288,7 +21029,7 @@ $({ target: PROMISE, stat: true, forced: INCORRECT_ITERATION }, {
20288
21029
  var result = perform(function () {
20289
21030
  var $promiseResolve = aCallable(C.resolve);
20290
21031
  iterate(iterable, function (promise) {
20291
- $promiseResolve.call(C, promise).then(capability.resolve, reject);
21032
+ call($promiseResolve, C, promise).then(capability.resolve, reject);
20292
21033
  });
20293
21034
  });
20294
21035
  if (result.error) reject(result.value);
@@ -20304,14 +21045,17 @@ $({ target: PROMISE, stat: true, forced: INCORRECT_ITERATION }, {
20304
21045
 
20305
21046
  var $ = __webpack_require__(6887);
20306
21047
  var getBuiltIn = __webpack_require__(626);
21048
+ var apply = __webpack_require__(9730);
21049
+ var bind = __webpack_require__(8308);
20307
21050
  var aConstructor = __webpack_require__(174);
20308
21051
  var anObject = __webpack_require__(6059);
20309
21052
  var isObject = __webpack_require__(941);
20310
21053
  var create = __webpack_require__(9290);
20311
- var bind = __webpack_require__(8308);
20312
21054
  var fails = __webpack_require__(5981);
20313
21055
 
20314
21056
  var nativeConstruct = getBuiltIn('Reflect', 'construct');
21057
+ var ObjectPrototype = Object.prototype;
21058
+ var push = [].push;
20315
21059
 
20316
21060
  // `Reflect.construct` method
20317
21061
  // https://tc39.es/ecma262/#sec-reflect.construct
@@ -20321,9 +21065,11 @@ var NEW_TARGET_BUG = fails(function () {
20321
21065
  function F() { /* empty */ }
20322
21066
  return !(nativeConstruct(function () { /* empty */ }, [], F) instanceof F);
20323
21067
  });
21068
+
20324
21069
  var ARGS_BUG = !fails(function () {
20325
21070
  nativeConstruct(function () { /* empty */ });
20326
21071
  });
21072
+
20327
21073
  var FORCED = NEW_TARGET_BUG || ARGS_BUG;
20328
21074
 
20329
21075
  $({ target: 'Reflect', stat: true, forced: FORCED, sham: FORCED }, {
@@ -20343,13 +21089,13 @@ $({ target: 'Reflect', stat: true, forced: FORCED, sham: FORCED }, {
20343
21089
  }
20344
21090
  // w/o altered newTarget, lot of arguments case
20345
21091
  var $args = [null];
20346
- $args.push.apply($args, args);
20347
- return new (bind.apply(Target, $args))();
21092
+ apply(push, $args, args);
21093
+ return new (apply(bind, Target, $args))();
20348
21094
  }
20349
21095
  // with altered newTarget, not support built-in constructors
20350
21096
  var proto = newTarget.prototype;
20351
- var instance = create(isObject(proto) ? proto : Object.prototype);
20352
- var result = Function.apply.call(Target, instance, args);
21097
+ var instance = create(isObject(proto) ? proto : ObjectPrototype);
21098
+ var result = apply(Target, instance, args);
20353
21099
  return isObject(result) ? result : instance;
20354
21100
  }
20355
21101
  });
@@ -20366,7 +21112,7 @@ $({ target: 'Reflect', stat: true, forced: FORCED, sham: FORCED }, {
20366
21112
  /***/ }),
20367
21113
 
20368
21114
  /***/ 9008:
20369
- /***/ (function(module, __unused_webpack_exports, __webpack_require__) {
21115
+ /***/ (function(__unused_webpack_module, __unused_webpack_exports, __webpack_require__) {
20370
21116
 
20371
21117
  "use strict";
20372
21118
 
@@ -20375,7 +21121,7 @@ var collectionStrong = __webpack_require__(5616);
20375
21121
 
20376
21122
  // `Set` constructor
20377
21123
  // https://tc39.es/ecma262/#sec-set-objects
20378
- module.exports = collection('Set', function (init) {
21124
+ collection('Set', function (init) {
20379
21125
  return function Set() { return init(this, arguments.length ? arguments[0] : undefined); };
20380
21126
  }, collectionStrong);
20381
21127
 
@@ -20388,6 +21134,7 @@ module.exports = collection('Set', function (init) {
20388
21134
  "use strict";
20389
21135
 
20390
21136
  var $ = __webpack_require__(6887);
21137
+ var uncurryThis = __webpack_require__(5329);
20391
21138
  var getOwnPropertyDescriptor = (__webpack_require__(9677).f);
20392
21139
  var toLength = __webpack_require__(3057);
20393
21140
  var toString = __webpack_require__(5803);
@@ -20397,7 +21144,8 @@ var correctIsRegExpLogic = __webpack_require__(7772);
20397
21144
  var IS_PURE = __webpack_require__(2529);
20398
21145
 
20399
21146
  // eslint-disable-next-line es/no-string-prototype-endswith -- safe
20400
- var $endsWith = ''.endsWith;
21147
+ var un$EndsWith = uncurryThis(''.endsWith);
21148
+ var slice = uncurryThis(''.slice);
20401
21149
  var min = Math.min;
20402
21150
 
20403
21151
  var CORRECT_IS_REGEXP_LOGIC = correctIsRegExpLogic('endsWith');
@@ -20417,9 +21165,9 @@ $({ target: 'String', proto: true, forced: !MDN_POLYFILL_BUG && !CORRECT_IS_REGE
20417
21165
  var len = that.length;
20418
21166
  var end = endPosition === undefined ? len : min(toLength(endPosition), len);
20419
21167
  var search = toString(searchString);
20420
- return $endsWith
20421
- ? $endsWith.call(that, search, end)
20422
- : that.slice(end - search.length, end) === search;
21168
+ return un$EndsWith
21169
+ ? un$EndsWith(that, search, end)
21170
+ : slice(that, end - search.length, end) === search;
20423
21171
  }
20424
21172
  });
20425
21173
 
@@ -20432,17 +21180,23 @@ $({ target: 'String', proto: true, forced: !MDN_POLYFILL_BUG && !CORRECT_IS_REGE
20432
21180
  "use strict";
20433
21181
 
20434
21182
  var $ = __webpack_require__(6887);
21183
+ var uncurryThis = __webpack_require__(5329);
20435
21184
  var notARegExp = __webpack_require__(344);
20436
21185
  var requireObjectCoercible = __webpack_require__(8219);
20437
21186
  var toString = __webpack_require__(5803);
20438
21187
  var correctIsRegExpLogic = __webpack_require__(7772);
20439
21188
 
21189
+ var stringIndexOf = uncurryThis(''.indexOf);
21190
+
20440
21191
  // `String.prototype.includes` method
20441
21192
  // https://tc39.es/ecma262/#sec-string.prototype.includes
20442
21193
  $({ target: 'String', proto: true, forced: !correctIsRegExpLogic('includes') }, {
20443
21194
  includes: function includes(searchString /* , position = 0 */) {
20444
- return !!~toString(requireObjectCoercible(this))
20445
- .indexOf(toString(notARegExp(searchString)), arguments.length > 1 ? arguments[1] : undefined);
21195
+ return !!~stringIndexOf(
21196
+ toString(requireObjectCoercible(this)),
21197
+ toString(notARegExp(searchString)),
21198
+ arguments.length > 1 ? arguments[1] : undefined
21199
+ );
20446
21200
  }
20447
21201
  });
20448
21202
 
@@ -20493,6 +21247,7 @@ defineIterator(String, 'String', function (iterated) {
20493
21247
  "use strict";
20494
21248
 
20495
21249
  var $ = __webpack_require__(6887);
21250
+ var uncurryThis = __webpack_require__(5329);
20496
21251
  var getOwnPropertyDescriptor = (__webpack_require__(9677).f);
20497
21252
  var toLength = __webpack_require__(3057);
20498
21253
  var toString = __webpack_require__(5803);
@@ -20502,7 +21257,8 @@ var correctIsRegExpLogic = __webpack_require__(7772);
20502
21257
  var IS_PURE = __webpack_require__(2529);
20503
21258
 
20504
21259
  // eslint-disable-next-line es/no-string-prototype-startswith -- safe
20505
- var $startsWith = ''.startsWith;
21260
+ var un$StartsWith = uncurryThis(''.startsWith);
21261
+ var stringSlice = uncurryThis(''.slice);
20506
21262
  var min = Math.min;
20507
21263
 
20508
21264
  var CORRECT_IS_REGEXP_LOGIC = correctIsRegExpLogic('startsWith');
@@ -20520,9 +21276,9 @@ $({ target: 'String', proto: true, forced: !MDN_POLYFILL_BUG && !CORRECT_IS_REGE
20520
21276
  notARegExp(searchString);
20521
21277
  var index = toLength(min(arguments.length > 1 ? arguments[1] : undefined, that.length));
20522
21278
  var search = toString(searchString);
20523
- return $startsWith
20524
- ? $startsWith.call(that, search, index)
20525
- : that.slice(index, index + search.length) === search;
21279
+ return un$StartsWith
21280
+ ? un$StartsWith(that, search, index)
21281
+ : stringSlice(that, index, index + search.length) === search;
20526
21282
  }
20527
21283
  });
20528
21284
 
@@ -20613,6 +21369,9 @@ defineWellKnownSymbol('iterator');
20613
21369
  var $ = __webpack_require__(6887);
20614
21370
  var global = __webpack_require__(1899);
20615
21371
  var getBuiltIn = __webpack_require__(626);
21372
+ var apply = __webpack_require__(9730);
21373
+ var call = __webpack_require__(8834);
21374
+ var uncurryThis = __webpack_require__(5329);
20616
21375
  var IS_PURE = __webpack_require__(2529);
20617
21376
  var DESCRIPTORS = __webpack_require__(5746);
20618
21377
  var NATIVE_SYMBOL = __webpack_require__(2497);
@@ -20621,6 +21380,7 @@ var hasOwn = __webpack_require__(953);
20621
21380
  var isArray = __webpack_require__(1052);
20622
21381
  var isCallable = __webpack_require__(7475);
20623
21382
  var isObject = __webpack_require__(941);
21383
+ var isPrototypeOf = __webpack_require__(7046);
20624
21384
  var isSymbol = __webpack_require__(6664);
20625
21385
  var anObject = __webpack_require__(6059);
20626
21386
  var toObject = __webpack_require__(9678);
@@ -20635,7 +21395,9 @@ var getOwnPropertyNamesExternal = __webpack_require__(684);
20635
21395
  var getOwnPropertySymbolsModule = __webpack_require__(7857);
20636
21396
  var getOwnPropertyDescriptorModule = __webpack_require__(9677);
20637
21397
  var definePropertyModule = __webpack_require__(5988);
21398
+ var definePropertiesModule = __webpack_require__(9938);
20638
21399
  var propertyIsEnumerableModule = __webpack_require__(6760);
21400
+ var arraySlice = __webpack_require__(3765);
20639
21401
  var redefine = __webpack_require__(9754);
20640
21402
  var shared = __webpack_require__(8726);
20641
21403
  var sharedKey = __webpack_require__(4262);
@@ -20652,21 +21414,28 @@ var HIDDEN = sharedKey('hidden');
20652
21414
  var SYMBOL = 'Symbol';
20653
21415
  var PROTOTYPE = 'prototype';
20654
21416
  var TO_PRIMITIVE = wellKnownSymbol('toPrimitive');
21417
+
20655
21418
  var setInternalState = InternalStateModule.set;
20656
21419
  var getInternalState = InternalStateModule.getterFor(SYMBOL);
21420
+
20657
21421
  var ObjectPrototype = Object[PROTOTYPE];
20658
21422
  var $Symbol = global.Symbol;
21423
+ var SymbolPrototype = $Symbol && $Symbol[PROTOTYPE];
21424
+ var TypeError = global.TypeError;
21425
+ var QObject = global.QObject;
20659
21426
  var $stringify = getBuiltIn('JSON', 'stringify');
20660
21427
  var nativeGetOwnPropertyDescriptor = getOwnPropertyDescriptorModule.f;
20661
21428
  var nativeDefineProperty = definePropertyModule.f;
20662
21429
  var nativeGetOwnPropertyNames = getOwnPropertyNamesExternal.f;
20663
21430
  var nativePropertyIsEnumerable = propertyIsEnumerableModule.f;
21431
+ var push = uncurryThis([].push);
21432
+
20664
21433
  var AllSymbols = shared('symbols');
20665
21434
  var ObjectPrototypeSymbols = shared('op-symbols');
20666
21435
  var StringToSymbolRegistry = shared('string-to-symbol-registry');
20667
21436
  var SymbolToStringRegistry = shared('symbol-to-string-registry');
20668
21437
  var WellKnownSymbolsStore = shared('wks');
20669
- var QObject = global.QObject;
21438
+
20670
21439
  // Don't use setters in Qt Script, https://github.com/zloirock/core-js/issues/173
20671
21440
  var USE_SETTER = !QObject || !QObject[PROTOTYPE] || !QObject[PROTOTYPE].findChild;
20672
21441
 
@@ -20685,7 +21454,7 @@ var setSymbolDescriptor = DESCRIPTORS && fails(function () {
20685
21454
  } : nativeDefineProperty;
20686
21455
 
20687
21456
  var wrap = function (tag, description) {
20688
- var symbol = AllSymbols[tag] = nativeObjectCreate($Symbol[PROTOTYPE]);
21457
+ var symbol = AllSymbols[tag] = nativeObjectCreate(SymbolPrototype);
20689
21458
  setInternalState(symbol, {
20690
21459
  type: SYMBOL,
20691
21460
  tag: tag,
@@ -20716,7 +21485,7 @@ var $defineProperties = function defineProperties(O, Properties) {
20716
21485
  var properties = toIndexedObject(Properties);
20717
21486
  var keys = objectKeys(properties).concat($getOwnPropertySymbols(properties));
20718
21487
  $forEach(keys, function (key) {
20719
- if (!DESCRIPTORS || $propertyIsEnumerable.call(properties, key)) $defineProperty(O, key, properties[key]);
21488
+ if (!DESCRIPTORS || call($propertyIsEnumerable, properties, key)) $defineProperty(O, key, properties[key]);
20720
21489
  });
20721
21490
  return O;
20722
21491
  };
@@ -20727,7 +21496,7 @@ var $create = function create(O, Properties) {
20727
21496
 
20728
21497
  var $propertyIsEnumerable = function propertyIsEnumerable(V) {
20729
21498
  var P = toPropertyKey(V);
20730
- var enumerable = nativePropertyIsEnumerable.call(this, P);
21499
+ var enumerable = call(nativePropertyIsEnumerable, this, P);
20731
21500
  if (this === ObjectPrototype && hasOwn(AllSymbols, P) && !hasOwn(ObjectPrototypeSymbols, P)) return false;
20732
21501
  return enumerable || !hasOwn(this, P) || !hasOwn(AllSymbols, P) || hasOwn(this, HIDDEN) && this[HIDDEN][P]
20733
21502
  ? enumerable : true;
@@ -20748,7 +21517,7 @@ var $getOwnPropertyNames = function getOwnPropertyNames(O) {
20748
21517
  var names = nativeGetOwnPropertyNames(toIndexedObject(O));
20749
21518
  var result = [];
20750
21519
  $forEach(names, function (key) {
20751
- if (!hasOwn(AllSymbols, key) && !hasOwn(hiddenKeys, key)) result.push(key);
21520
+ if (!hasOwn(AllSymbols, key) && !hasOwn(hiddenKeys, key)) push(result, key);
20752
21521
  });
20753
21522
  return result;
20754
21523
  };
@@ -20759,7 +21528,7 @@ var $getOwnPropertySymbols = function getOwnPropertySymbols(O) {
20759
21528
  var result = [];
20760
21529
  $forEach(names, function (key) {
20761
21530
  if (hasOwn(AllSymbols, key) && (!IS_OBJECT_PROTOTYPE || hasOwn(ObjectPrototype, key))) {
20762
- result.push(AllSymbols[key]);
21531
+ push(result, AllSymbols[key]);
20763
21532
  }
20764
21533
  });
20765
21534
  return result;
@@ -20769,11 +21538,11 @@ var $getOwnPropertySymbols = function getOwnPropertySymbols(O) {
20769
21538
  // https://tc39.es/ecma262/#sec-symbol-constructor
20770
21539
  if (!NATIVE_SYMBOL) {
20771
21540
  $Symbol = function Symbol() {
20772
- if (this instanceof $Symbol) throw TypeError('Symbol is not a constructor');
21541
+ if (isPrototypeOf(SymbolPrototype, this)) throw TypeError('Symbol is not a constructor');
20773
21542
  var description = !arguments.length || arguments[0] === undefined ? undefined : $toString(arguments[0]);
20774
21543
  var tag = uid(description);
20775
21544
  var setter = function (value) {
20776
- if (this === ObjectPrototype) setter.call(ObjectPrototypeSymbols, value);
21545
+ if (this === ObjectPrototype) call(setter, ObjectPrototypeSymbols, value);
20777
21546
  if (hasOwn(this, HIDDEN) && hasOwn(this[HIDDEN], tag)) this[HIDDEN][tag] = false;
20778
21547
  setSymbolDescriptor(this, tag, createPropertyDescriptor(1, value));
20779
21548
  };
@@ -20781,7 +21550,9 @@ if (!NATIVE_SYMBOL) {
20781
21550
  return wrap(tag, description);
20782
21551
  };
20783
21552
 
20784
- redefine($Symbol[PROTOTYPE], 'toString', function toString() {
21553
+ SymbolPrototype = $Symbol[PROTOTYPE];
21554
+
21555
+ redefine(SymbolPrototype, 'toString', function toString() {
20785
21556
  return getInternalState(this).tag;
20786
21557
  });
20787
21558
 
@@ -20791,6 +21562,7 @@ if (!NATIVE_SYMBOL) {
20791
21562
 
20792
21563
  propertyIsEnumerableModule.f = $propertyIsEnumerable;
20793
21564
  definePropertyModule.f = $defineProperty;
21565
+ definePropertiesModule.f = $defineProperties;
20794
21566
  getOwnPropertyDescriptorModule.f = $getOwnPropertyDescriptor;
20795
21567
  getOwnPropertyNamesModule.f = getOwnPropertyNamesExternal.f = $getOwnPropertyNames;
20796
21568
  getOwnPropertySymbolsModule.f = $getOwnPropertySymbols;
@@ -20801,7 +21573,7 @@ if (!NATIVE_SYMBOL) {
20801
21573
 
20802
21574
  if (DESCRIPTORS) {
20803
21575
  // https://github.com/tc39/proposal-Symbol-description
20804
- nativeDefineProperty($Symbol[PROTOTYPE], 'description', {
21576
+ nativeDefineProperty(SymbolPrototype, 'description', {
20805
21577
  configurable: true,
20806
21578
  get: function description() {
20807
21579
  return getInternalState(this).description;
@@ -20890,28 +21662,27 @@ if ($stringify) {
20890
21662
  $({ target: 'JSON', stat: true, forced: FORCED_JSON_STRINGIFY }, {
20891
21663
  // eslint-disable-next-line no-unused-vars -- required for `.length`
20892
21664
  stringify: function stringify(it, replacer, space) {
20893
- var args = [it];
20894
- var index = 1;
20895
- var $replacer;
20896
- while (arguments.length > index) args.push(arguments[index++]);
20897
- $replacer = replacer;
21665
+ var args = arraySlice(arguments);
21666
+ var $replacer = replacer;
20898
21667
  if (!isObject(replacer) && it === undefined || isSymbol(it)) return; // IE8 returns string on undefined
20899
21668
  if (!isArray(replacer)) replacer = function (key, value) {
20900
- if (isCallable($replacer)) value = $replacer.call(this, key, value);
21669
+ if (isCallable($replacer)) value = call($replacer, this, key, value);
20901
21670
  if (!isSymbol(value)) return value;
20902
21671
  };
20903
21672
  args[1] = replacer;
20904
- return $stringify.apply(null, args);
21673
+ return apply($stringify, null, args);
20905
21674
  }
20906
21675
  });
20907
21676
  }
20908
21677
 
20909
21678
  // `Symbol.prototype[@@toPrimitive]` method
20910
21679
  // https://tc39.es/ecma262/#sec-symbol.prototype-@@toprimitive
20911
- if (!$Symbol[PROTOTYPE][TO_PRIMITIVE]) {
20912
- var valueOf = $Symbol[PROTOTYPE].valueOf;
20913
- redefine($Symbol[PROTOTYPE], TO_PRIMITIVE, function () {
20914
- return valueOf.apply(this, arguments);
21680
+ if (!SymbolPrototype[TO_PRIMITIVE]) {
21681
+ var valueOf = SymbolPrototype.valueOf;
21682
+ // eslint-disable-next-line no-unused-vars -- required for .length
21683
+ redefine(SymbolPrototype, TO_PRIMITIVE, function (hint) {
21684
+ // TODO: improve hint logic
21685
+ return call(valueOf, this);
20915
21686
  });
20916
21687
  }
20917
21688
  // `Symbol.prototype[@@toStringTag]` property
@@ -21046,15 +21817,12 @@ __webpack_require__(7627);
21046
21817
  "use strict";
21047
21818
 
21048
21819
  var $ = __webpack_require__(6887);
21049
- var IS_PURE = __webpack_require__(2529);
21050
- var collectionDeleteAll = __webpack_require__(8984);
21820
+ var deleteAll = __webpack_require__(8984);
21051
21821
 
21052
21822
  // `Map.prototype.deleteAll` method
21053
21823
  // https://github.com/tc39/proposal-collection-methods
21054
- $({ target: 'Map', proto: true, real: true, forced: IS_PURE }, {
21055
- deleteAll: function deleteAll(/* ...elements */) {
21056
- return collectionDeleteAll.apply(this, arguments);
21057
- }
21824
+ $({ target: 'Map', proto: true, real: true, forced: true }, {
21825
+ deleteAll: deleteAll
21058
21826
  });
21059
21827
 
21060
21828
 
@@ -21066,13 +21834,12 @@ $({ target: 'Map', proto: true, real: true, forced: IS_PURE }, {
21066
21834
  "use strict";
21067
21835
 
21068
21836
  var $ = __webpack_require__(6887);
21069
- var IS_PURE = __webpack_require__(2529);
21070
- var $emplace = __webpack_require__(8721);
21837
+ var emplace = __webpack_require__(8721);
21071
21838
 
21072
21839
  // `Map.prototype.emplace` method
21073
21840
  // https://github.com/thumbsupep/proposal-upsert
21074
- $({ target: 'Map', proto: true, real: true, forced: IS_PURE }, {
21075
- emplace: $emplace
21841
+ $({ target: 'Map', proto: true, real: true, forced: true }, {
21842
+ emplace: emplace
21076
21843
  });
21077
21844
 
21078
21845
 
@@ -21084,7 +21851,6 @@ $({ target: 'Map', proto: true, real: true, forced: IS_PURE }, {
21084
21851
  "use strict";
21085
21852
 
21086
21853
  var $ = __webpack_require__(6887);
21087
- var IS_PURE = __webpack_require__(2529);
21088
21854
  var anObject = __webpack_require__(6059);
21089
21855
  var bind = __webpack_require__(6843);
21090
21856
  var getMapIterator = __webpack_require__(9993);
@@ -21092,11 +21858,11 @@ var iterate = __webpack_require__(3091);
21092
21858
 
21093
21859
  // `Map.prototype.every` method
21094
21860
  // https://github.com/tc39/proposal-collection-methods
21095
- $({ target: 'Map', proto: true, real: true, forced: IS_PURE }, {
21861
+ $({ target: 'Map', proto: true, real: true, forced: true }, {
21096
21862
  every: function every(callbackfn /* , thisArg */) {
21097
21863
  var map = anObject(this);
21098
21864
  var iterator = getMapIterator(map);
21099
- var boundFunction = bind(callbackfn, arguments.length > 1 ? arguments[1] : undefined, 3);
21865
+ var boundFunction = bind(callbackfn, arguments.length > 1 ? arguments[1] : undefined);
21100
21866
  return !iterate(iterator, function (key, value, stop) {
21101
21867
  if (!boundFunction(value, key, map)) return stop();
21102
21868
  }, { AS_ENTRIES: true, IS_ITERATOR: true, INTERRUPTED: true }).stopped;
@@ -21112,26 +21878,26 @@ $({ target: 'Map', proto: true, real: true, forced: IS_PURE }, {
21112
21878
  "use strict";
21113
21879
 
21114
21880
  var $ = __webpack_require__(6887);
21115
- var IS_PURE = __webpack_require__(2529);
21116
21881
  var getBuiltIn = __webpack_require__(626);
21882
+ var bind = __webpack_require__(6843);
21883
+ var call = __webpack_require__(8834);
21117
21884
  var aCallable = __webpack_require__(4883);
21118
21885
  var anObject = __webpack_require__(6059);
21119
- var bind = __webpack_require__(6843);
21120
21886
  var speciesConstructor = __webpack_require__(487);
21121
21887
  var getMapIterator = __webpack_require__(9993);
21122
21888
  var iterate = __webpack_require__(3091);
21123
21889
 
21124
21890
  // `Map.prototype.filter` method
21125
21891
  // https://github.com/tc39/proposal-collection-methods
21126
- $({ target: 'Map', proto: true, real: true, forced: IS_PURE }, {
21892
+ $({ target: 'Map', proto: true, real: true, forced: true }, {
21127
21893
  filter: function filter(callbackfn /* , thisArg */) {
21128
21894
  var map = anObject(this);
21129
21895
  var iterator = getMapIterator(map);
21130
- var boundFunction = bind(callbackfn, arguments.length > 1 ? arguments[1] : undefined, 3);
21896
+ var boundFunction = bind(callbackfn, arguments.length > 1 ? arguments[1] : undefined);
21131
21897
  var newMap = new (speciesConstructor(map, getBuiltIn('Map')))();
21132
21898
  var setter = aCallable(newMap.set);
21133
21899
  iterate(iterator, function (key, value) {
21134
- if (boundFunction(value, key, map)) setter.call(newMap, key, value);
21900
+ if (boundFunction(value, key, map)) call(setter, newMap, key, value);
21135
21901
  }, { AS_ENTRIES: true, IS_ITERATOR: true });
21136
21902
  return newMap;
21137
21903
  }
@@ -21146,7 +21912,6 @@ $({ target: 'Map', proto: true, real: true, forced: IS_PURE }, {
21146
21912
  "use strict";
21147
21913
 
21148
21914
  var $ = __webpack_require__(6887);
21149
- var IS_PURE = __webpack_require__(2529);
21150
21915
  var anObject = __webpack_require__(6059);
21151
21916
  var bind = __webpack_require__(6843);
21152
21917
  var getMapIterator = __webpack_require__(9993);
@@ -21154,11 +21919,11 @@ var iterate = __webpack_require__(3091);
21154
21919
 
21155
21920
  // `Map.prototype.findKey` method
21156
21921
  // https://github.com/tc39/proposal-collection-methods
21157
- $({ target: 'Map', proto: true, real: true, forced: IS_PURE }, {
21922
+ $({ target: 'Map', proto: true, real: true, forced: true }, {
21158
21923
  findKey: function findKey(callbackfn /* , thisArg */) {
21159
21924
  var map = anObject(this);
21160
21925
  var iterator = getMapIterator(map);
21161
- var boundFunction = bind(callbackfn, arguments.length > 1 ? arguments[1] : undefined, 3);
21926
+ var boundFunction = bind(callbackfn, arguments.length > 1 ? arguments[1] : undefined);
21162
21927
  return iterate(iterator, function (key, value, stop) {
21163
21928
  if (boundFunction(value, key, map)) return stop(key);
21164
21929
  }, { AS_ENTRIES: true, IS_ITERATOR: true, INTERRUPTED: true }).result;
@@ -21174,7 +21939,6 @@ $({ target: 'Map', proto: true, real: true, forced: IS_PURE }, {
21174
21939
  "use strict";
21175
21940
 
21176
21941
  var $ = __webpack_require__(6887);
21177
- var IS_PURE = __webpack_require__(2529);
21178
21942
  var anObject = __webpack_require__(6059);
21179
21943
  var bind = __webpack_require__(6843);
21180
21944
  var getMapIterator = __webpack_require__(9993);
@@ -21182,11 +21946,11 @@ var iterate = __webpack_require__(3091);
21182
21946
 
21183
21947
  // `Map.prototype.find` method
21184
21948
  // https://github.com/tc39/proposal-collection-methods
21185
- $({ target: 'Map', proto: true, real: true, forced: IS_PURE }, {
21949
+ $({ target: 'Map', proto: true, real: true, forced: true }, {
21186
21950
  find: function find(callbackfn /* , thisArg */) {
21187
21951
  var map = anObject(this);
21188
21952
  var iterator = getMapIterator(map);
21189
- var boundFunction = bind(callbackfn, arguments.length > 1 ? arguments[1] : undefined, 3);
21953
+ var boundFunction = bind(callbackfn, arguments.length > 1 ? arguments[1] : undefined);
21190
21954
  return iterate(iterator, function (key, value, stop) {
21191
21955
  if (boundFunction(value, key, map)) return stop(value);
21192
21956
  }, { AS_ENTRIES: true, IS_ITERATOR: true, INTERRUPTED: true }).result;
@@ -21204,7 +21968,7 @@ var from = __webpack_require__(3590);
21204
21968
 
21205
21969
  // `Map.from` method
21206
21970
  // https://tc39.github.io/proposal-setmap-offrom/#sec-map.from
21207
- $({ target: 'Map', stat: true }, {
21971
+ $({ target: 'Map', stat: true, forced: true }, {
21208
21972
  from: from
21209
21973
  });
21210
21974
 
@@ -21217,13 +21981,17 @@ $({ target: 'Map', stat: true }, {
21217
21981
  "use strict";
21218
21982
 
21219
21983
  var $ = __webpack_require__(6887);
21984
+ var call = __webpack_require__(8834);
21985
+ var uncurryThis = __webpack_require__(5329);
21220
21986
  var aCallable = __webpack_require__(4883);
21221
21987
  var getIterator = __webpack_require__(3476);
21222
21988
  var iterate = __webpack_require__(3091);
21223
21989
 
21990
+ var push = uncurryThis([].push);
21991
+
21224
21992
  // `Map.groupBy` method
21225
21993
  // https://github.com/tc39/proposal-collection-methods
21226
- $({ target: 'Map', stat: true }, {
21994
+ $({ target: 'Map', stat: true, forced: true }, {
21227
21995
  groupBy: function groupBy(iterable, keyDerivative) {
21228
21996
  aCallable(keyDerivative);
21229
21997
  var iterator = getIterator(iterable);
@@ -21233,8 +22001,8 @@ $({ target: 'Map', stat: true }, {
21233
22001
  var set = aCallable(newMap.set);
21234
22002
  iterate(iterator, function (element) {
21235
22003
  var derivedKey = keyDerivative(element);
21236
- if (!has.call(newMap, derivedKey)) set.call(newMap, derivedKey, [element]);
21237
- else get.call(newMap, derivedKey).push(element);
22004
+ if (!call(has, newMap, derivedKey)) call(set, newMap, derivedKey, [element]);
22005
+ else push(call(get, newMap, derivedKey), element);
21238
22006
  }, { IS_ITERATOR: true });
21239
22007
  return newMap;
21240
22008
  }
@@ -21249,7 +22017,6 @@ $({ target: 'Map', stat: true }, {
21249
22017
  "use strict";
21250
22018
 
21251
22019
  var $ = __webpack_require__(6887);
21252
- var IS_PURE = __webpack_require__(2529);
21253
22020
  var anObject = __webpack_require__(6059);
21254
22021
  var getMapIterator = __webpack_require__(9993);
21255
22022
  var sameValueZero = __webpack_require__(7309);
@@ -21257,7 +22024,7 @@ var iterate = __webpack_require__(3091);
21257
22024
 
21258
22025
  // `Map.prototype.includes` method
21259
22026
  // https://github.com/tc39/proposal-collection-methods
21260
- $({ target: 'Map', proto: true, real: true, forced: IS_PURE }, {
22027
+ $({ target: 'Map', proto: true, real: true, forced: true }, {
21261
22028
  includes: function includes(searchElement) {
21262
22029
  return iterate(getMapIterator(anObject(this)), function (key, value, stop) {
21263
22030
  if (sameValueZero(value, searchElement)) return stop();
@@ -21274,18 +22041,19 @@ $({ target: 'Map', proto: true, real: true, forced: IS_PURE }, {
21274
22041
  "use strict";
21275
22042
 
21276
22043
  var $ = __webpack_require__(6887);
22044
+ var call = __webpack_require__(8834);
21277
22045
  var iterate = __webpack_require__(3091);
21278
22046
  var aCallable = __webpack_require__(4883);
21279
22047
 
21280
22048
  // `Map.keyBy` method
21281
22049
  // https://github.com/tc39/proposal-collection-methods
21282
- $({ target: 'Map', stat: true }, {
22050
+ $({ target: 'Map', stat: true, forced: true }, {
21283
22051
  keyBy: function keyBy(iterable, keyDerivative) {
21284
22052
  var newMap = new this();
21285
22053
  aCallable(keyDerivative);
21286
22054
  var setter = aCallable(newMap.set);
21287
22055
  iterate(iterable, function (element) {
21288
- setter.call(newMap, keyDerivative(element), element);
22056
+ call(setter, newMap, keyDerivative(element), element);
21289
22057
  });
21290
22058
  return newMap;
21291
22059
  }
@@ -21300,14 +22068,13 @@ $({ target: 'Map', stat: true }, {
21300
22068
  "use strict";
21301
22069
 
21302
22070
  var $ = __webpack_require__(6887);
21303
- var IS_PURE = __webpack_require__(2529);
21304
22071
  var anObject = __webpack_require__(6059);
21305
22072
  var getMapIterator = __webpack_require__(9993);
21306
22073
  var iterate = __webpack_require__(3091);
21307
22074
 
21308
22075
  // `Map.prototype.keyOf` method
21309
22076
  // https://github.com/tc39/proposal-collection-methods
21310
- $({ target: 'Map', proto: true, real: true, forced: IS_PURE }, {
22077
+ $({ target: 'Map', proto: true, real: true, forced: true }, {
21311
22078
  keyOf: function keyOf(searchElement) {
21312
22079
  return iterate(getMapIterator(anObject(this)), function (key, value, stop) {
21313
22080
  if (value === searchElement) return stop(key);
@@ -21324,26 +22091,26 @@ $({ target: 'Map', proto: true, real: true, forced: IS_PURE }, {
21324
22091
  "use strict";
21325
22092
 
21326
22093
  var $ = __webpack_require__(6887);
21327
- var IS_PURE = __webpack_require__(2529);
21328
22094
  var getBuiltIn = __webpack_require__(626);
22095
+ var bind = __webpack_require__(6843);
22096
+ var call = __webpack_require__(8834);
21329
22097
  var aCallable = __webpack_require__(4883);
21330
22098
  var anObject = __webpack_require__(6059);
21331
- var bind = __webpack_require__(6843);
21332
22099
  var speciesConstructor = __webpack_require__(487);
21333
22100
  var getMapIterator = __webpack_require__(9993);
21334
22101
  var iterate = __webpack_require__(3091);
21335
22102
 
21336
22103
  // `Map.prototype.mapKeys` method
21337
22104
  // https://github.com/tc39/proposal-collection-methods
21338
- $({ target: 'Map', proto: true, real: true, forced: IS_PURE }, {
22105
+ $({ target: 'Map', proto: true, real: true, forced: true }, {
21339
22106
  mapKeys: function mapKeys(callbackfn /* , thisArg */) {
21340
22107
  var map = anObject(this);
21341
22108
  var iterator = getMapIterator(map);
21342
- var boundFunction = bind(callbackfn, arguments.length > 1 ? arguments[1] : undefined, 3);
22109
+ var boundFunction = bind(callbackfn, arguments.length > 1 ? arguments[1] : undefined);
21343
22110
  var newMap = new (speciesConstructor(map, getBuiltIn('Map')))();
21344
22111
  var setter = aCallable(newMap.set);
21345
22112
  iterate(iterator, function (key, value) {
21346
- setter.call(newMap, boundFunction(value, key, map), value);
22113
+ call(setter, newMap, boundFunction(value, key, map), value);
21347
22114
  }, { AS_ENTRIES: true, IS_ITERATOR: true });
21348
22115
  return newMap;
21349
22116
  }
@@ -21358,26 +22125,26 @@ $({ target: 'Map', proto: true, real: true, forced: IS_PURE }, {
21358
22125
  "use strict";
21359
22126
 
21360
22127
  var $ = __webpack_require__(6887);
21361
- var IS_PURE = __webpack_require__(2529);
21362
22128
  var getBuiltIn = __webpack_require__(626);
22129
+ var bind = __webpack_require__(6843);
22130
+ var call = __webpack_require__(8834);
21363
22131
  var aCallable = __webpack_require__(4883);
21364
22132
  var anObject = __webpack_require__(6059);
21365
- var bind = __webpack_require__(6843);
21366
22133
  var speciesConstructor = __webpack_require__(487);
21367
22134
  var getMapIterator = __webpack_require__(9993);
21368
22135
  var iterate = __webpack_require__(3091);
21369
22136
 
21370
22137
  // `Map.prototype.mapValues` method
21371
22138
  // https://github.com/tc39/proposal-collection-methods
21372
- $({ target: 'Map', proto: true, real: true, forced: IS_PURE }, {
22139
+ $({ target: 'Map', proto: true, real: true, forced: true }, {
21373
22140
  mapValues: function mapValues(callbackfn /* , thisArg */) {
21374
22141
  var map = anObject(this);
21375
22142
  var iterator = getMapIterator(map);
21376
- var boundFunction = bind(callbackfn, arguments.length > 1 ? arguments[1] : undefined, 3);
22143
+ var boundFunction = bind(callbackfn, arguments.length > 1 ? arguments[1] : undefined);
21377
22144
  var newMap = new (speciesConstructor(map, getBuiltIn('Map')))();
21378
22145
  var setter = aCallable(newMap.set);
21379
22146
  iterate(iterator, function (key, value) {
21380
- setter.call(newMap, key, boundFunction(value, key, map));
22147
+ call(setter, newMap, key, boundFunction(value, key, map));
21381
22148
  }, { AS_ENTRIES: true, IS_ITERATOR: true });
21382
22149
  return newMap;
21383
22150
  }
@@ -21392,16 +22159,15 @@ $({ target: 'Map', proto: true, real: true, forced: IS_PURE }, {
21392
22159
  "use strict";
21393
22160
 
21394
22161
  var $ = __webpack_require__(6887);
21395
- var IS_PURE = __webpack_require__(2529);
21396
22162
  var aCallable = __webpack_require__(4883);
21397
22163
  var anObject = __webpack_require__(6059);
21398
22164
  var iterate = __webpack_require__(3091);
21399
22165
 
21400
22166
  // `Map.prototype.merge` method
21401
22167
  // https://github.com/tc39/proposal-collection-methods
21402
- $({ target: 'Map', proto: true, real: true, forced: IS_PURE }, {
22168
+ $({ target: 'Map', proto: true, real: true, forced: true }, {
21403
22169
  // eslint-disable-next-line no-unused-vars -- required for `.length`
21404
- merge: function merge(iterable /* ...iterbles */) {
22170
+ merge: function merge(iterable /* ...iterables */) {
21405
22171
  var map = anObject(this);
21406
22172
  var setter = aCallable(map.set);
21407
22173
  var argumentsLength = arguments.length;
@@ -21424,7 +22190,7 @@ var of = __webpack_require__(5226);
21424
22190
 
21425
22191
  // `Map.of` method
21426
22192
  // https://tc39.github.io/proposal-setmap-offrom/#sec-map.of
21427
- $({ target: 'Map', stat: true }, {
22193
+ $({ target: 'Map', stat: true, forced: true }, {
21428
22194
  of: of
21429
22195
  });
21430
22196
 
@@ -21437,15 +22203,17 @@ $({ target: 'Map', stat: true }, {
21437
22203
  "use strict";
21438
22204
 
21439
22205
  var $ = __webpack_require__(6887);
21440
- var IS_PURE = __webpack_require__(2529);
22206
+ var global = __webpack_require__(1899);
21441
22207
  var anObject = __webpack_require__(6059);
21442
22208
  var aCallable = __webpack_require__(4883);
21443
22209
  var getMapIterator = __webpack_require__(9993);
21444
22210
  var iterate = __webpack_require__(3091);
21445
22211
 
22212
+ var TypeError = global.TypeError;
22213
+
21446
22214
  // `Map.prototype.reduce` method
21447
22215
  // https://github.com/tc39/proposal-collection-methods
21448
- $({ target: 'Map', proto: true, real: true, forced: IS_PURE }, {
22216
+ $({ target: 'Map', proto: true, real: true, forced: true }, {
21449
22217
  reduce: function reduce(callbackfn /* , initialValue */) {
21450
22218
  var map = anObject(this);
21451
22219
  var iterator = getMapIterator(map);
@@ -21474,7 +22242,6 @@ $({ target: 'Map', proto: true, real: true, forced: IS_PURE }, {
21474
22242
  "use strict";
21475
22243
 
21476
22244
  var $ = __webpack_require__(6887);
21477
- var IS_PURE = __webpack_require__(2529);
21478
22245
  var anObject = __webpack_require__(6059);
21479
22246
  var bind = __webpack_require__(6843);
21480
22247
  var getMapIterator = __webpack_require__(9993);
@@ -21482,11 +22249,11 @@ var iterate = __webpack_require__(3091);
21482
22249
 
21483
22250
  // `Set.prototype.some` method
21484
22251
  // https://github.com/tc39/proposal-collection-methods
21485
- $({ target: 'Map', proto: true, real: true, forced: IS_PURE }, {
22252
+ $({ target: 'Map', proto: true, real: true, forced: true }, {
21486
22253
  some: function some(callbackfn /* , thisArg */) {
21487
22254
  var map = anObject(this);
21488
22255
  var iterator = getMapIterator(map);
21489
- var boundFunction = bind(callbackfn, arguments.length > 1 ? arguments[1] : undefined, 3);
22256
+ var boundFunction = bind(callbackfn, arguments.length > 1 ? arguments[1] : undefined);
21490
22257
  return iterate(iterator, function (key, value, stop) {
21491
22258
  if (boundFunction(value, key, map)) return stop();
21492
22259
  }, { AS_ENTRIES: true, IS_ITERATOR: true, INTERRUPTED: true }).stopped;
@@ -21503,13 +22270,12 @@ $({ target: 'Map', proto: true, real: true, forced: IS_PURE }, {
21503
22270
 
21504
22271
  // TODO: remove from `core-js@4`
21505
22272
  var $ = __webpack_require__(6887);
21506
- var IS_PURE = __webpack_require__(2529);
21507
- var $upsert = __webpack_require__(716);
22273
+ var upsert = __webpack_require__(716);
21508
22274
 
21509
22275
  // `Map.prototype.updateOrInsert` method (replaced by `Map.prototype.emplace`)
21510
22276
  // https://github.com/thumbsupep/proposal-upsert
21511
- $({ target: 'Map', proto: true, real: true, name: 'upsert', forced: IS_PURE }, {
21512
- updateOrInsert: $upsert
22277
+ $({ target: 'Map', proto: true, real: true, name: 'upsert', forced: true }, {
22278
+ updateOrInsert: upsert
21513
22279
  });
21514
22280
 
21515
22281
 
@@ -21521,23 +22287,29 @@ $({ target: 'Map', proto: true, real: true, name: 'upsert', forced: IS_PURE }, {
21521
22287
  "use strict";
21522
22288
 
21523
22289
  var $ = __webpack_require__(6887);
21524
- var IS_PURE = __webpack_require__(2529);
22290
+ var global = __webpack_require__(1899);
22291
+ var call = __webpack_require__(8834);
21525
22292
  var anObject = __webpack_require__(6059);
21526
22293
  var aCallable = __webpack_require__(4883);
21527
22294
 
22295
+ var TypeError = global.TypeError;
22296
+
21528
22297
  // `Set.prototype.update` method
21529
22298
  // https://github.com/tc39/proposal-collection-methods
21530
- $({ target: 'Map', proto: true, real: true, forced: IS_PURE }, {
22299
+ $({ target: 'Map', proto: true, real: true, forced: true }, {
21531
22300
  update: function update(key, callback /* , thunk */) {
21532
22301
  var map = anObject(this);
22302
+ var get = aCallable(map.get);
22303
+ var has = aCallable(map.has);
22304
+ var set = aCallable(map.set);
21533
22305
  var length = arguments.length;
21534
22306
  aCallable(callback);
21535
- var isPresentInMap = map.has(key);
22307
+ var isPresentInMap = call(has, map, key);
21536
22308
  if (!isPresentInMap && length < 3) {
21537
22309
  throw TypeError('Updating absent value');
21538
22310
  }
21539
- var value = isPresentInMap ? map.get(key) : aCallable(length > 2 ? arguments[2] : undefined)(key, map);
21540
- map.set(key, callback(value, key, map));
22311
+ var value = isPresentInMap ? call(get, map, key) : aCallable(length > 2 ? arguments[2] : undefined)(key, map);
22312
+ call(set, map, key, callback(value, key, map));
21541
22313
  return map;
21542
22314
  }
21543
22315
  });
@@ -21552,13 +22324,12 @@ $({ target: 'Map', proto: true, real: true, forced: IS_PURE }, {
21552
22324
 
21553
22325
  // TODO: remove from `core-js@4`
21554
22326
  var $ = __webpack_require__(6887);
21555
- var IS_PURE = __webpack_require__(2529);
21556
- var $upsert = __webpack_require__(716);
22327
+ var upsert = __webpack_require__(716);
21557
22328
 
21558
22329
  // `Map.prototype.upsert` method (replaced by `Map.prototype.emplace`)
21559
22330
  // https://github.com/thumbsupep/proposal-upsert
21560
- $({ target: 'Map', proto: true, real: true, forced: IS_PURE }, {
21561
- upsert: $upsert
22331
+ $({ target: 'Map', proto: true, real: true, forced: true }, {
22332
+ upsert: upsert
21562
22333
  });
21563
22334
 
21564
22335
 
@@ -21593,7 +22364,7 @@ var perform = __webpack_require__(2);
21593
22364
 
21594
22365
  // `Promise.try` method
21595
22366
  // https://github.com/tc39/proposal-promise-try
21596
- $({ target: 'Promise', stat: true }, {
22367
+ $({ target: 'Promise', stat: true, forced: true }, {
21597
22368
  'try': function (callbackfn) {
21598
22369
  var promiseCapability = newPromiseCapabilityModule.f(this);
21599
22370
  var result = perform(callbackfn);
@@ -23045,9 +23816,9 @@ var runtime = (function (exports) {
23045
23816
  // This is a polyfill for %IteratorPrototype% for environments that
23046
23817
  // don't natively support it.
23047
23818
  var IteratorPrototype = {};
23048
- IteratorPrototype[iteratorSymbol] = function () {
23819
+ define(IteratorPrototype, iteratorSymbol, function () {
23049
23820
  return this;
23050
- };
23821
+ });
23051
23822
 
23052
23823
  var getProto = Object.getPrototypeOf;
23053
23824
  var NativeIteratorPrototype = getProto && getProto(getProto(values([])));
@@ -23061,8 +23832,9 @@ var runtime = (function (exports) {
23061
23832
 
23062
23833
  var Gp = GeneratorFunctionPrototype.prototype =
23063
23834
  Generator.prototype = Object.create(IteratorPrototype);
23064
- GeneratorFunction.prototype = Gp.constructor = GeneratorFunctionPrototype;
23065
- GeneratorFunctionPrototype.constructor = GeneratorFunction;
23835
+ GeneratorFunction.prototype = GeneratorFunctionPrototype;
23836
+ define(Gp, "constructor", GeneratorFunctionPrototype);
23837
+ define(GeneratorFunctionPrototype, "constructor", GeneratorFunction);
23066
23838
  GeneratorFunction.displayName = define(
23067
23839
  GeneratorFunctionPrototype,
23068
23840
  toStringTagSymbol,
@@ -23176,9 +23948,9 @@ var runtime = (function (exports) {
23176
23948
  }
23177
23949
 
23178
23950
  defineIteratorMethods(AsyncIterator.prototype);
23179
- AsyncIterator.prototype[asyncIteratorSymbol] = function () {
23951
+ define(AsyncIterator.prototype, asyncIteratorSymbol, function () {
23180
23952
  return this;
23181
- };
23953
+ });
23182
23954
  exports.AsyncIterator = AsyncIterator;
23183
23955
 
23184
23956
  // Note that simple async functions are implemented on top of
@@ -23371,13 +24143,13 @@ var runtime = (function (exports) {
23371
24143
  // iterator prototype chain incorrectly implement this, causing the Generator
23372
24144
  // object to not be returned from this call. This ensures that doesn't happen.
23373
24145
  // See https://github.com/facebook/regenerator/issues/274 for more details.
23374
- Gp[iteratorSymbol] = function() {
24146
+ define(Gp, iteratorSymbol, function() {
23375
24147
  return this;
23376
- };
24148
+ });
23377
24149
 
23378
- Gp.toString = function() {
24150
+ define(Gp, "toString", function() {
23379
24151
  return "[object Generator]";
23380
- };
24152
+ });
23381
24153
 
23382
24154
  function pushTryEntry(locs) {
23383
24155
  var entry = { tryLoc: locs[0] };
@@ -23696,14 +24468,19 @@ try {
23696
24468
  } catch (accidentalStrictMode) {
23697
24469
  // This module should not be running in strict mode, so the above
23698
24470
  // assignment should always work unless something is misconfigured. Just
23699
- // in case runtime.js accidentally runs in strict mode, we can escape
24471
+ // in case runtime.js accidentally runs in strict mode, in modern engines
24472
+ // we can explicitly access globalThis. In older engines we can escape
23700
24473
  // strict mode using a global Function call. This could conceivably fail
23701
24474
  // if a Content Security Policy forbids using Function, but in that case
23702
24475
  // the proper solution is to fix the accidental strict mode problem. If
23703
24476
  // you've misconfigured your bundler to force strict mode and applied a
23704
24477
  // CSP to forbid Function, and you're not willing to fix either of those
23705
24478
  // problems, please detail your unique predicament in a GitHub issue.
23706
- Function("r", "regeneratorRuntime = r")(runtime);
24479
+ if (typeof globalThis === "object") {
24480
+ globalThis.regeneratorRuntime = runtime;
24481
+ } else {
24482
+ Function("r", "regeneratorRuntime = r")(runtime);
24483
+ }
23707
24484
  }
23708
24485
 
23709
24486
 
@@ -24193,7 +24970,7 @@ function _loadEmbed() {
24193
24970
  polyfillVersionString = "legacy";
24194
24971
  }
24195
24972
 
24196
- embedScriptSource = concat_default()(_context16 = concat_default()(_context17 = "".concat(host, "/embed/")).call(_context17, polyfillVersionString, "/client/")).call(_context16, "68d18b3", "/index.js");
24973
+ embedScriptSource = concat_default()(_context16 = concat_default()(_context17 = "".concat(host, "/embed/")).call(_context17, polyfillVersionString, "/client/")).call(_context16, "1ff8966", "/index.js");
24197
24974
  }
24198
24975
 
24199
24976
  clientScriptExists = Boolean( true || // The client script is bundled with npm module