@everymatrix/player-lugas-limit 1.80.3 → 1.80.5

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.
@@ -8,7 +8,7 @@ const appGlobals = require('./app-globals-3a1e7e63.js');
8
8
  const defineCustomElements = async (win, options) => {
9
9
  if (typeof window === 'undefined') return undefined;
10
10
  await appGlobals.globalScripts();
11
- return index.bootstrapLazy([["player-lugas-limit.cjs",[[1,"player-lugas-limit",{"userId":[513,"user-id"],"session":[513],"endpoint":[513],"currency":[513],"flow":[513],"amount":[513],"lang":[513],"clientStyling":[513,"client-styling"],"clientStylingUrl":[513,"client-styling-url"],"mbSource":[513,"mb-source"],"translationUrl":[513,"translation-url"],"showExistingLimit":[516,"show-existing-limit"],"hasValidation":[32],"kycStep":[32],"isLoading":[32],"regularDepositLimitAmount":[32],"isSubmitted":[32],"isUseExistingLimitOptionActive":[32],"selectedPredefinedAmount":[32],"errorMessageOnInitialization":[32],"errorMessageOnSubmit":[32],"errorMessageOnInput":[32],"hasLugasError":[32],"showCustomAmount":[32],"newAmount":[32]},null,{"translationUrl":["handleNewTranslations"],"clientStyling":["handleClientStylingChange"],"clientStylingUrl":["handleClientStylingUrlChange"]}]]]], options);
11
+ return index.bootstrapLazy([["player-lugas-limit.cjs",[[1,"player-lugas-limit",{"userId":[513,"user-id"],"session":[513],"endpoint":[513],"currency":[513],"flow":[513],"amount":[513],"lang":[513],"clientStyling":[513,"client-styling"],"clientStylingUrl":[513,"client-styling-url"],"mbSource":[513,"mb-source"],"translationUrl":[513,"translation-url"],"showExistingLimit":[516,"show-existing-limit"],"buttonTextStrategy":[513,"button-text-strategy"],"hasValidation":[32],"kycStep":[32],"isLoading":[32],"regularDepositLimitAmount":[32],"isSubmitted":[32],"isUseExistingLimitOptionActive":[32],"selectedPredefinedAmount":[32],"errorMessageOnInitialization":[32],"errorMessageOnSubmit":[32],"errorMessageOnInput":[32],"hasLugasError":[32],"showCustomAmount":[32],"newAmount":[32]},null,{"translationUrl":["handleNewTranslations"],"clientStyling":["handleClientStylingChange"],"clientStylingUrl":["handleClientStylingUrlChange"]}]]]], options);
12
12
  };
13
13
 
14
14
  exports.setNonce = index.setNonce;
@@ -214,6 +214,7 @@ const PlayerLugasLimit = class {
214
214
  this.mbSource = undefined;
215
215
  this.translationUrl = '';
216
216
  this.showExistingLimit = true;
217
+ this.buttonTextStrategy = '';
217
218
  this.hasValidation = true;
218
219
  this.kycStep = undefined;
219
220
  this.isLoading = false;
@@ -311,7 +312,7 @@ const PlayerLugasLimit = class {
311
312
  headers: {
312
313
  'X-SessionId': this.session,
313
314
  'Content-Type': 'application/json',
314
- 'Authorization': `Bearer ${this.session}`
315
+ Authorization: `Bearer ${this.session}`
315
316
  },
316
317
  body: JSON.stringify(body)
317
318
  };
@@ -387,9 +388,11 @@ const PlayerLugasLimit = class {
387
388
  handleValidatorInputChange(event) {
388
389
  this.newAmount = event.target.value;
389
390
  this.isValidNumber = !isNaN(Number(this.newAmount));
390
- this.isWithinRange = (Number(this.newAmount) >= this.minAmount) && (Number(this.newAmount) <= this.maxAmount);
391
+ this.isWithinRange = Number(this.newAmount) >= this.minAmount && Number(this.newAmount) <= this.maxAmount;
391
392
  if (!this.isWithinRange || !this.isValidNumber) {
392
- this.errorMessageOnInput = translate('invalidInputMessageLimit', this.lang, { values: { currency: this.displayedCurrency, minValue: this.minAmount, maxValue: this.maxAmount } });
393
+ this.errorMessageOnInput = translate('invalidInputMessageLimit', this.lang, {
394
+ values: { currency: this.displayedCurrency, minValue: this.minAmount, maxValue: this.maxAmount }
395
+ });
393
396
  }
394
397
  else {
395
398
  this.errorMessageOnInput = '';
@@ -411,7 +414,9 @@ const PlayerLugasLimit = class {
411
414
  case 1:
412
415
  return (index.h("div", { class: "ValidatorContainer" }, index.h("div", { class: "Paragraphs" }, index.h("p", null, translate('kycSure', this.lang, { values: { currency: this.currency } })), index.h("p", null, translate('kyc1', this.lang, { values: { currency: this.currency } })), index.h("div", { class: "ContainerButtons" }, index.h("button", { class: "FirstButton", onClick: () => this.postPlayerSituation(this.newAmount, false) }, translate('setNewLimit', this.lang, { values: { currency: this.currency } })), index.h("button", { class: "SecondButton", onClick: () => this.postPlayerSituation(this.amount, true) }, translate('keepExistingLimit', this.lang, { values: { currency: this.currency } }))))));
413
416
  case 2:
414
- return (index.h("div", { class: "ValidatorContainer" }, index.h("img", { class: "DocumentIcon", src: documentSvg, alt: "DocumentIcon" }), index.h("div", { class: "Paragraphs" }, index.h("p", { class: "KycThanks" }, translate('kycThanks', this.lang, { values: { currency: this.currency } })), index.h("p", { class: "Kyc2", innerHTML: translate('kyc2', this.lang, { values: { currency: this.currency, amount: this.regularDepositLimitAmount } }) }), index.h("div", { class: "ContainerOptions" }, ['BankLogin', 'UploadDocuments'].map(opt => this.renderOption(opt))))));
417
+ return (index.h("div", { class: "ValidatorContainer" }, index.h("img", { class: "DocumentIcon", src: documentSvg, alt: "DocumentIcon" }), index.h("div", { class: "Paragraphs" }, index.h("p", { class: "KycThanks" }, translate('kycThanks', this.lang, { values: { currency: this.currency } })), index.h("p", { class: "Kyc2", innerHTML: translate('kyc2', this.lang, {
418
+ values: { currency: this.currency, amount: this.regularDepositLimitAmount }
419
+ }) }), index.h("div", { class: "ContainerOptions" }, ['BankLogin', 'UploadDocuments'].map((opt) => this.renderOption(opt))))));
415
420
  default:
416
421
  return (index.h("div", { class: "ValidatorContainer" }, index.h("div", { class: "Paragraphs" }, index.h("div", { class: "IconContainer" }, index.h("img", { src: successSvg, alt: "SuccessIcon" })), index.h("p", { class: "ParagraphStep3" }, translate('kycSuccess', this.lang, { values: { currency: this.currency } })), index.h("p", { class: "ParagraphStep3" }, translate('kyc3', this.lang, { values: { currency: this.currency } })), index.h("div", { class: "ContainerButtons" }, index.h("button", { class: "SecondButton", onClick: () => this.handleClick('Close') }, translate('Close', this.lang, { values: { currency: this.currency } }))))));
417
422
  }
@@ -419,22 +424,40 @@ const PlayerLugasLimit = class {
419
424
  renderPredefinedButtons() {
420
425
  return this.predefinedAmounts.map((currentAmount) => (index.h("button", { class: this.selectedPredefinedAmount === currentAmount ? 'Active' : '', onClick: () => this.handleAmountClick(currentAmount), disabled: this.hasLugasError }, currentAmount)));
421
426
  }
422
- ;
423
427
  goToPrivacyPolicy() {
424
428
  window.postMessage({ type: 'GoToPrivacyPolicy' });
425
429
  }
426
- ;
427
- renderValidator() {
428
- return (index.h("div", { class: "ValidatorContainer" }, this.errorMessageOnSubmit && (index.h("div", { class: "ErrorContainer" }, !this.hasLugasError && (index.h("span", { class: "DismissError", onClick: () => this.errorMessageOnSubmit = '' }, index.h("svg", { xmlns: "http://www.w3.org/2000/svg", width: "9", height: "9", viewBox: "0 0 9 9", fill: "none" }, index.h("path", { d: "M8.18659 0.14708C8.37063 0.33182 8.38174 0.62421 8.21888 0.821452L8.18659 0.857219L4.87619 4.16727L8.18659 7.47732C8.27743 7.56861 8.32973 7.69132 8.33266 7.82007C8.3356 7.94883 8.28895 8.0738 8.20235 8.16913C8.11576 8.26446 7.99584 8.32288 7.86739 8.3323C7.73895 8.34172 7.61179 8.30143 7.51221 8.21975L7.47645 8.18746L4.1664 4.87706L0.856348 8.18746C0.765058 8.27831 0.64235 8.3306 0.513592 8.33354C0.384834 8.33647 0.25987 8.28982 0.164536 8.20322C0.0692018 8.11663 0.0107856 7.99671 0.00136402 7.86827C-0.00805761 7.73982 0.0322357 7.61266 0.113914 7.51308L0.146209 7.47732L3.4566 4.16727L0.146209 0.857219C0.0553613 0.765928 0.00306475 0.64322 0.000130477 0.514462C-0.0028038 0.385704 0.0438486 0.260741 0.130443 0.165407C0.217038 0.0700723 0.336953 0.0116562 0.4654 0.00223455C0.593846 -0.00718708 0.721002 0.0331062 0.820581 0.114785L0.856348 0.14708L4.1664 3.45748L7.47645 0.14708C7.52307 0.10045 7.57843 0.0634608 7.63935 0.0382248C7.70027 0.0129888 7.76557 0 7.83152 0C7.89746 0 7.96276 0.0129888 8.02368 0.0382248C8.0846 0.0634608 8.13996 0.10045 8.18659 0.14708Z", fill: "#111111" })))), index.h("p", { class: "ErrorParagraph" }, index.h("span", { class: "ErrorIcon" }, index.h("svg", { xmlns: "http://www.w3.org/2000/svg", width: "9", height: "9", viewBox: "0 0 9 9" }, index.h("path", { d: "M8.18659 0.14708C8.37063 0.33182 8.38174 0.62421 8.21888 0.821452L8.18659 0.857219L4.87619 4.16727L8.18659 7.47732C8.27743 7.56861 8.32973 7.69132 8.33266 7.82007C8.3356 7.94883 8.28895 8.0738 8.20235 8.16913C8.11576 8.26446 7.99584 8.32288 7.86739 8.3323C7.73895 8.34172 7.61179 8.30143 7.51221 8.21975L7.47645 8.18746L4.1664 4.87706L0.856348 8.18746C0.765058 8.27831 0.64235 8.3306 0.513592 8.33354C0.384834 8.33647 0.25987 8.28982 0.164536 8.20322C0.0692018 8.11663 0.0107856 7.99671 0.00136402 7.86827C-0.00805761 7.73982 0.0322357 7.61266 0.113914 7.51308L0.146209 7.47732L3.4566 4.16727L0.146209 0.857219C0.0553613 0.765928 0.00306475 0.64322 0.000130477 0.514462C-0.0028038 0.385704 0.0438486 0.260741 0.130443 0.165407C0.217038 0.0700723 0.336953 0.0116562 0.4654 0.00223455C0.593846 -0.00718708 0.721002 0.0331062 0.820581 0.114785L0.856348 0.14708L4.1664 3.45748L7.47645 0.14708C7.52307 0.10045 7.57843 0.0634608 7.63935 0.0382248C7.70027 0.0129888 7.76557 0 7.83152 0C7.89746 0 7.96276 0.0129888 8.02368 0.0382248C8.0846 0.0634608 8.13996 0.10045 8.18659 0.14708Z" }))), index.h("div", { innerHTML: this.errorMessageOnSubmit })))), index.h("div", { class: "Paragraphs" }, index.h("p", null, translate('LugasInfoBox', this.lang))), index.h("div", { class: "LimitAmountWrapper" }, this.isSubmitted
429
- && index.h("slot", { name: 'spinner' })
430
- && index.h("div", { class: "LoadingWrapper" }, index.h("svg", { class: "spinner", viewBox: "0 0 50 50" }, index.h("circle", { class: "path", cx: "25", cy: "25", r: "20", fill: "none", "stroke-width": "5" }))), index.h("p", { class: "ChooseLimitLabel" }, translate('ChooseLimit', this.lang)), index.h("div", { class: "PredefinedAmounts" }, index.h("button", { class: this.selectedPredefinedAmount === 'Other' ? 'Active' : '', onClick: () => this.handleAmountClick('Other') }, translate('ButtonCustomValue', this.lang)), this.renderPredefinedButtons(), index.h("button", { class: this.selectedPredefinedAmount === 'Max' ? 'Active' : '', onClick: () => this.handleAmountClick('Max') }, translate('ButtonMax', this.lang))), this.showCustomAmount && (index.h("form", { onSubmit: (event) => this.handleSubmit(event) }, this.showCustomAmount &&
431
- index.h("div", null, index.h("input", { class: `CustomAmountInput ${this.errorMessageOnInput ? 'InvalidInput' : ''}`, type: "number", value: this.selectedPredefinedAmount === 'Max' ? this.maxAmount : null, step: 0.01, placeholder: "0.00", disabled: this.hasLugasError || this.selectedPredefinedAmount === 'Max', onInput: (event) => this.handleValidatorInputChange(event) }), this.errorMessageOnInput && index.h("p", { class: "InvalidParagraph" }, this.errorMessageOnInput)), this.selectedPredefinedAmount &&
432
- index.h("button", { class: "PrimaryButton SetLimitBtn", type: "submit", disabled: this.hasLugasError || this.isSubmitted || !Boolean(this.newAmount) || Boolean(this.errorMessageOnInput) }, translate('LugasSetLimitDialogButtonSetLimit', this.lang, {
433
- values: {
434
- currency: this.displayedCurrency,
435
- amount: Number.parseFloat(this.newAmount || '0').toFixed(2)
430
+ formatSetButtonText() {
431
+ const amountNumber = Number.parseFloat(this.newAmount || '0');
432
+ let amount = '';
433
+ switch (this.buttonTextStrategy) {
434
+ case 'preferInteger': {
435
+ if (Number.isInteger(amountNumber)) {
436
+ amount = `${amountNumber}`;
436
437
  }
437
- })))))));
438
+ else {
439
+ amount = amountNumber.toFixed(2);
440
+ }
441
+ break;
442
+ }
443
+ default: {
444
+ amount = amountNumber.toFixed(2);
445
+ break;
446
+ }
447
+ }
448
+ return translate('LugasSetLimitDialogButtonSetLimit', this.lang, {
449
+ values: {
450
+ currency: this.displayedCurrency,
451
+ amount
452
+ }
453
+ });
454
+ }
455
+ renderSetButton() {
456
+ const disabled = this.hasLugasError || this.isSubmitted || !Boolean(this.newAmount) || Boolean(this.errorMessageOnInput);
457
+ return (index.h("button", { class: "PrimaryButton SetLimitBtn", type: "submit", disabled: disabled }, this.formatSetButtonText()));
458
+ }
459
+ renderValidator() {
460
+ return (index.h("div", { class: "ValidatorContainer" }, this.errorMessageOnSubmit && (index.h("div", { class: "ErrorContainer" }, !this.hasLugasError && (index.h("span", { class: "DismissError", onClick: () => (this.errorMessageOnSubmit = '') }, index.h("svg", { xmlns: "http://www.w3.org/2000/svg", width: "9", height: "9", viewBox: "0 0 9 9", fill: "none" }, index.h("path", { d: "M8.18659 0.14708C8.37063 0.33182 8.38174 0.62421 8.21888 0.821452L8.18659 0.857219L4.87619 4.16727L8.18659 7.47732C8.27743 7.56861 8.32973 7.69132 8.33266 7.82007C8.3356 7.94883 8.28895 8.0738 8.20235 8.16913C8.11576 8.26446 7.99584 8.32288 7.86739 8.3323C7.73895 8.34172 7.61179 8.30143 7.51221 8.21975L7.47645 8.18746L4.1664 4.87706L0.856348 8.18746C0.765058 8.27831 0.64235 8.3306 0.513592 8.33354C0.384834 8.33647 0.25987 8.28982 0.164536 8.20322C0.0692018 8.11663 0.0107856 7.99671 0.00136402 7.86827C-0.00805761 7.73982 0.0322357 7.61266 0.113914 7.51308L0.146209 7.47732L3.4566 4.16727L0.146209 0.857219C0.0553613 0.765928 0.00306475 0.64322 0.000130477 0.514462C-0.0028038 0.385704 0.0438486 0.260741 0.130443 0.165407C0.217038 0.0700723 0.336953 0.0116562 0.4654 0.00223455C0.593846 -0.00718708 0.721002 0.0331062 0.820581 0.114785L0.856348 0.14708L4.1664 3.45748L7.47645 0.14708C7.52307 0.10045 7.57843 0.0634608 7.63935 0.0382248C7.70027 0.0129888 7.76557 0 7.83152 0C7.89746 0 7.96276 0.0129888 8.02368 0.0382248C8.0846 0.0634608 8.13996 0.10045 8.18659 0.14708Z", fill: "#111111" })))), index.h("p", { class: "ErrorParagraph" }, index.h("span", { class: "ErrorIcon" }, index.h("svg", { xmlns: "http://www.w3.org/2000/svg", width: "9", height: "9", viewBox: "0 0 9 9" }, index.h("path", { d: "M8.18659 0.14708C8.37063 0.33182 8.38174 0.62421 8.21888 0.821452L8.18659 0.857219L4.87619 4.16727L8.18659 7.47732C8.27743 7.56861 8.32973 7.69132 8.33266 7.82007C8.3356 7.94883 8.28895 8.0738 8.20235 8.16913C8.11576 8.26446 7.99584 8.32288 7.86739 8.3323C7.73895 8.34172 7.61179 8.30143 7.51221 8.21975L7.47645 8.18746L4.1664 4.87706L0.856348 8.18746C0.765058 8.27831 0.64235 8.3306 0.513592 8.33354C0.384834 8.33647 0.25987 8.28982 0.164536 8.20322C0.0692018 8.11663 0.0107856 7.99671 0.00136402 7.86827C-0.00805761 7.73982 0.0322357 7.61266 0.113914 7.51308L0.146209 7.47732L3.4566 4.16727L0.146209 0.857219C0.0553613 0.765928 0.00306475 0.64322 0.000130477 0.514462C-0.0028038 0.385704 0.0438486 0.260741 0.130443 0.165407C0.217038 0.0700723 0.336953 0.0116562 0.4654 0.00223455C0.593846 -0.00718708 0.721002 0.0331062 0.820581 0.114785L0.856348 0.14708L4.1664 3.45748L7.47645 0.14708C7.52307 0.10045 7.57843 0.0634608 7.63935 0.0382248C7.70027 0.0129888 7.76557 0 7.83152 0C7.89746 0 7.96276 0.0129888 8.02368 0.0382248C8.0846 0.0634608 8.13996 0.10045 8.18659 0.14708Z" }))), index.h("div", { innerHTML: this.errorMessageOnSubmit })))), index.h("div", { class: "Paragraphs" }, index.h("p", null, translate('LugasInfoBox', this.lang))), index.h("div", { class: "LimitAmountWrapper" }, this.isSubmitted && index.h("slot", { name: "spinner" }) && (index.h("div", { class: "LoadingWrapper" }, index.h("svg", { class: "spinner", viewBox: "0 0 50 50" }, index.h("circle", { class: "path", cx: "25", cy: "25", r: "20", fill: "none", "stroke-width": "5" })))), index.h("p", { class: "ChooseLimitLabel" }, translate('ChooseLimit', this.lang)), index.h("div", { class: "PredefinedAmounts" }, index.h("button", { class: this.selectedPredefinedAmount === 'Other' ? 'Active' : '', onClick: () => this.handleAmountClick('Other') }, translate('ButtonCustomValue', this.lang)), this.renderPredefinedButtons(), index.h("button", { class: this.selectedPredefinedAmount === 'Max' ? 'Active' : '', onClick: () => this.handleAmountClick('Max') }, translate('ButtonMax', this.lang))), this.showCustomAmount && (index.h("form", { onSubmit: (event) => this.handleSubmit(event) }, this.showCustomAmount && (index.h("div", null, index.h("input", { class: `CustomAmountInput ${this.errorMessageOnInput ? 'InvalidInput' : ''}`, type: "number", value: this.selectedPredefinedAmount === 'Max' ? this.maxAmount : null, step: 0.01, placeholder: "0.00", disabled: this.hasLugasError || this.selectedPredefinedAmount === 'Max', onInput: (event) => this.handleValidatorInputChange(event) }), this.errorMessageOnInput && index.h("p", { class: "InvalidParagraph" }, this.errorMessageOnInput))), this.selectedPredefinedAmount && this.renderSetButton())))));
438
461
  }
439
462
  renderTitle() {
440
463
  switch (this.kycStep) {
@@ -454,8 +477,7 @@ const PlayerLugasLimit = class {
454
477
  if (this.errorMessageOnInitialization) {
455
478
  return (index.h("div", null, index.h("p", null, this.errorMessageOnInitialization)));
456
479
  }
457
- return (index.h("div", { class: "ModalContainer", ref: el => this.stylingContainer = el, "data-current-step": this.kycStep }, index.h("div", { class: "Container" }, index.h("div", { class: "ModalHeader" }, index.h("h2", null, this.renderTitle())), index.h("div", { class: "ModalBody" }, this.hasValidation ? validationContainer : kycConfirmation, this.hasValidation &&
458
- index.h("div", { class: "ModalFooter" }, index.h("hr", null), index.h("div", { class: "Paragraphs" }, this.showExistingLimit ? index.h("p", { class: "ExistingLimit" }, translate('LugasSetLimitDialogExistingLimit.text', this.lang), index.h("span", { class: this.isUseExistingLimitOptionActive ? 'Link' : 'Link Inactive', onClick: () => this.postPlayerSituation(this.amount, true) }, translate('LugasSetLimitDialogExistingLimit.link', this.lang))) : null, index.h("p", { class: "PrivacyNote" }, translate('LugasSetLimitDialogPrivacyNote.text', this.lang), index.h("span", { class: "Link", onClick: this.goToPrivacyPolicy }, translate('LugasSetLimitDialogPrivacyNote.link', this.lang)))))))));
480
+ return (index.h("div", { class: "ModalContainer", ref: (el) => (this.stylingContainer = el), "data-current-step": this.kycStep }, index.h("div", { class: "Container" }, index.h("div", { class: "ModalHeader" }, index.h("h2", null, this.renderTitle())), index.h("div", { class: "ModalBody" }, this.hasValidation ? validationContainer : kycConfirmation, this.hasValidation && (index.h("div", { class: "ModalFooter" }, index.h("hr", null), index.h("div", { class: "Paragraphs" }, this.showExistingLimit ? (index.h("p", { class: "ExistingLimit" }, translate('LugasSetLimitDialogExistingLimit.text', this.lang), index.h("span", { class: this.isUseExistingLimitOptionActive ? 'Link' : 'Link Inactive', onClick: () => this.postPlayerSituation(this.amount, true) }, translate('LugasSetLimitDialogExistingLimit.link', this.lang)))) : null, index.h("p", { class: "PrivacyNote" }, translate('LugasSetLimitDialogPrivacyNote.text', this.lang), index.h("span", { class: "Link", onClick: this.goToPrivacyPolicy }, translate('LugasSetLimitDialogPrivacyNote.link', this.lang))))))))));
459
481
  }
460
482
  static get watchers() { return {
461
483
  "translationUrl": ["handleNewTranslations"],
@@ -19,7 +19,7 @@ var patchBrowser = () => {
19
19
 
20
20
  patchBrowser().then(async (options) => {
21
21
  await appGlobals.globalScripts();
22
- return index.bootstrapLazy([["player-lugas-limit.cjs",[[1,"player-lugas-limit",{"userId":[513,"user-id"],"session":[513],"endpoint":[513],"currency":[513],"flow":[513],"amount":[513],"lang":[513],"clientStyling":[513,"client-styling"],"clientStylingUrl":[513,"client-styling-url"],"mbSource":[513,"mb-source"],"translationUrl":[513,"translation-url"],"showExistingLimit":[516,"show-existing-limit"],"hasValidation":[32],"kycStep":[32],"isLoading":[32],"regularDepositLimitAmount":[32],"isSubmitted":[32],"isUseExistingLimitOptionActive":[32],"selectedPredefinedAmount":[32],"errorMessageOnInitialization":[32],"errorMessageOnSubmit":[32],"errorMessageOnInput":[32],"hasLugasError":[32],"showCustomAmount":[32],"newAmount":[32]},null,{"translationUrl":["handleNewTranslations"],"clientStyling":["handleClientStylingChange"],"clientStylingUrl":["handleClientStylingUrlChange"]}]]]], options);
22
+ return index.bootstrapLazy([["player-lugas-limit.cjs",[[1,"player-lugas-limit",{"userId":[513,"user-id"],"session":[513],"endpoint":[513],"currency":[513],"flow":[513],"amount":[513],"lang":[513],"clientStyling":[513,"client-styling"],"clientStylingUrl":[513,"client-styling-url"],"mbSource":[513,"mb-source"],"translationUrl":[513,"translation-url"],"showExistingLimit":[516,"show-existing-limit"],"buttonTextStrategy":[513,"button-text-strategy"],"hasValidation":[32],"kycStep":[32],"isLoading":[32],"regularDepositLimitAmount":[32],"isSubmitted":[32],"isUseExistingLimitOptionActive":[32],"selectedPredefinedAmount":[32],"errorMessageOnInitialization":[32],"errorMessageOnSubmit":[32],"errorMessageOnInput":[32],"hasLugasError":[32],"showCustomAmount":[32],"newAmount":[32]},null,{"translationUrl":["handleNewTranslations"],"clientStyling":["handleClientStylingChange"],"clientStylingUrl":["handleClientStylingUrlChange"]}]]]], options);
23
23
  });
24
24
 
25
25
  exports.setNonce = index.setNonce;
@@ -37,6 +37,7 @@ export class PlayerLugasLimit {
37
37
  this.mbSource = undefined;
38
38
  this.translationUrl = '';
39
39
  this.showExistingLimit = true;
40
+ this.buttonTextStrategy = '';
40
41
  this.hasValidation = true;
41
42
  this.kycStep = undefined;
42
43
  this.isLoading = false;
@@ -134,7 +135,7 @@ export class PlayerLugasLimit {
134
135
  headers: {
135
136
  'X-SessionId': this.session,
136
137
  'Content-Type': 'application/json',
137
- 'Authorization': `Bearer ${this.session}`
138
+ Authorization: `Bearer ${this.session}`
138
139
  },
139
140
  body: JSON.stringify(body)
140
141
  };
@@ -210,9 +211,11 @@ export class PlayerLugasLimit {
210
211
  handleValidatorInputChange(event) {
211
212
  this.newAmount = event.target.value;
212
213
  this.isValidNumber = !isNaN(Number(this.newAmount));
213
- this.isWithinRange = (Number(this.newAmount) >= this.minAmount) && (Number(this.newAmount) <= this.maxAmount);
214
+ this.isWithinRange = Number(this.newAmount) >= this.minAmount && Number(this.newAmount) <= this.maxAmount;
214
215
  if (!this.isWithinRange || !this.isValidNumber) {
215
- this.errorMessageOnInput = translate('invalidInputMessageLimit', this.lang, { values: { currency: this.displayedCurrency, minValue: this.minAmount, maxValue: this.maxAmount } });
216
+ this.errorMessageOnInput = translate('invalidInputMessageLimit', this.lang, {
217
+ values: { currency: this.displayedCurrency, minValue: this.minAmount, maxValue: this.maxAmount }
218
+ });
216
219
  }
217
220
  else {
218
221
  this.errorMessageOnInput = '';
@@ -234,7 +237,9 @@ export class PlayerLugasLimit {
234
237
  case 1:
235
238
  return (h("div", { class: "ValidatorContainer" }, h("div", { class: "Paragraphs" }, h("p", null, translate('kycSure', this.lang, { values: { currency: this.currency } })), h("p", null, translate('kyc1', this.lang, { values: { currency: this.currency } })), h("div", { class: "ContainerButtons" }, h("button", { class: "FirstButton", onClick: () => this.postPlayerSituation(this.newAmount, false) }, translate('setNewLimit', this.lang, { values: { currency: this.currency } })), h("button", { class: "SecondButton", onClick: () => this.postPlayerSituation(this.amount, true) }, translate('keepExistingLimit', this.lang, { values: { currency: this.currency } }))))));
236
239
  case 2:
237
- return (h("div", { class: "ValidatorContainer" }, h("img", { class: "DocumentIcon", src: DocumentIcon, alt: "DocumentIcon" }), h("div", { class: "Paragraphs" }, h("p", { class: "KycThanks" }, translate('kycThanks', this.lang, { values: { currency: this.currency } })), h("p", { class: "Kyc2", innerHTML: translate('kyc2', this.lang, { values: { currency: this.currency, amount: this.regularDepositLimitAmount } }) }), h("div", { class: "ContainerOptions" }, ['BankLogin', 'UploadDocuments'].map(opt => this.renderOption(opt))))));
240
+ return (h("div", { class: "ValidatorContainer" }, h("img", { class: "DocumentIcon", src: DocumentIcon, alt: "DocumentIcon" }), h("div", { class: "Paragraphs" }, h("p", { class: "KycThanks" }, translate('kycThanks', this.lang, { values: { currency: this.currency } })), h("p", { class: "Kyc2", innerHTML: translate('kyc2', this.lang, {
241
+ values: { currency: this.currency, amount: this.regularDepositLimitAmount }
242
+ }) }), h("div", { class: "ContainerOptions" }, ['BankLogin', 'UploadDocuments'].map((opt) => this.renderOption(opt))))));
238
243
  default:
239
244
  return (h("div", { class: "ValidatorContainer" }, h("div", { class: "Paragraphs" }, h("div", { class: "IconContainer" }, h("img", { src: SuccessIcon, alt: "SuccessIcon" })), h("p", { class: "ParagraphStep3" }, translate('kycSuccess', this.lang, { values: { currency: this.currency } })), h("p", { class: "ParagraphStep3" }, translate('kyc3', this.lang, { values: { currency: this.currency } })), h("div", { class: "ContainerButtons" }, h("button", { class: "SecondButton", onClick: () => this.handleClick('Close') }, translate('Close', this.lang, { values: { currency: this.currency } }))))));
240
245
  }
@@ -242,22 +247,40 @@ export class PlayerLugasLimit {
242
247
  renderPredefinedButtons() {
243
248
  return this.predefinedAmounts.map((currentAmount) => (h("button", { class: this.selectedPredefinedAmount === currentAmount ? 'Active' : '', onClick: () => this.handleAmountClick(currentAmount), disabled: this.hasLugasError }, currentAmount)));
244
249
  }
245
- ;
246
250
  goToPrivacyPolicy() {
247
251
  window.postMessage({ type: 'GoToPrivacyPolicy' });
248
252
  }
249
- ;
250
- renderValidator() {
251
- return (h("div", { class: "ValidatorContainer" }, this.errorMessageOnSubmit && (h("div", { class: "ErrorContainer" }, !this.hasLugasError && (h("span", { class: "DismissError", onClick: () => this.errorMessageOnSubmit = '' }, h("svg", { xmlns: "http://www.w3.org/2000/svg", width: "9", height: "9", viewBox: "0 0 9 9", fill: "none" }, h("path", { d: "M8.18659 0.14708C8.37063 0.33182 8.38174 0.62421 8.21888 0.821452L8.18659 0.857219L4.87619 4.16727L8.18659 7.47732C8.27743 7.56861 8.32973 7.69132 8.33266 7.82007C8.3356 7.94883 8.28895 8.0738 8.20235 8.16913C8.11576 8.26446 7.99584 8.32288 7.86739 8.3323C7.73895 8.34172 7.61179 8.30143 7.51221 8.21975L7.47645 8.18746L4.1664 4.87706L0.856348 8.18746C0.765058 8.27831 0.64235 8.3306 0.513592 8.33354C0.384834 8.33647 0.25987 8.28982 0.164536 8.20322C0.0692018 8.11663 0.0107856 7.99671 0.00136402 7.86827C-0.00805761 7.73982 0.0322357 7.61266 0.113914 7.51308L0.146209 7.47732L3.4566 4.16727L0.146209 0.857219C0.0553613 0.765928 0.00306475 0.64322 0.000130477 0.514462C-0.0028038 0.385704 0.0438486 0.260741 0.130443 0.165407C0.217038 0.0700723 0.336953 0.0116562 0.4654 0.00223455C0.593846 -0.00718708 0.721002 0.0331062 0.820581 0.114785L0.856348 0.14708L4.1664 3.45748L7.47645 0.14708C7.52307 0.10045 7.57843 0.0634608 7.63935 0.0382248C7.70027 0.0129888 7.76557 0 7.83152 0C7.89746 0 7.96276 0.0129888 8.02368 0.0382248C8.0846 0.0634608 8.13996 0.10045 8.18659 0.14708Z", fill: "#111111" })))), h("p", { class: "ErrorParagraph" }, h("span", { class: "ErrorIcon" }, h("svg", { xmlns: "http://www.w3.org/2000/svg", width: "9", height: "9", viewBox: "0 0 9 9" }, h("path", { d: "M8.18659 0.14708C8.37063 0.33182 8.38174 0.62421 8.21888 0.821452L8.18659 0.857219L4.87619 4.16727L8.18659 7.47732C8.27743 7.56861 8.32973 7.69132 8.33266 7.82007C8.3356 7.94883 8.28895 8.0738 8.20235 8.16913C8.11576 8.26446 7.99584 8.32288 7.86739 8.3323C7.73895 8.34172 7.61179 8.30143 7.51221 8.21975L7.47645 8.18746L4.1664 4.87706L0.856348 8.18746C0.765058 8.27831 0.64235 8.3306 0.513592 8.33354C0.384834 8.33647 0.25987 8.28982 0.164536 8.20322C0.0692018 8.11663 0.0107856 7.99671 0.00136402 7.86827C-0.00805761 7.73982 0.0322357 7.61266 0.113914 7.51308L0.146209 7.47732L3.4566 4.16727L0.146209 0.857219C0.0553613 0.765928 0.00306475 0.64322 0.000130477 0.514462C-0.0028038 0.385704 0.0438486 0.260741 0.130443 0.165407C0.217038 0.0700723 0.336953 0.0116562 0.4654 0.00223455C0.593846 -0.00718708 0.721002 0.0331062 0.820581 0.114785L0.856348 0.14708L4.1664 3.45748L7.47645 0.14708C7.52307 0.10045 7.57843 0.0634608 7.63935 0.0382248C7.70027 0.0129888 7.76557 0 7.83152 0C7.89746 0 7.96276 0.0129888 8.02368 0.0382248C8.0846 0.0634608 8.13996 0.10045 8.18659 0.14708Z" }))), h("div", { innerHTML: this.errorMessageOnSubmit })))), h("div", { class: "Paragraphs" }, h("p", null, translate('LugasInfoBox', this.lang))), h("div", { class: "LimitAmountWrapper" }, this.isSubmitted
252
- && h("slot", { name: 'spinner' })
253
- && h("div", { class: "LoadingWrapper" }, h("svg", { class: "spinner", viewBox: "0 0 50 50" }, h("circle", { class: "path", cx: "25", cy: "25", r: "20", fill: "none", "stroke-width": "5" }))), h("p", { class: "ChooseLimitLabel" }, translate('ChooseLimit', this.lang)), h("div", { class: "PredefinedAmounts" }, h("button", { class: this.selectedPredefinedAmount === 'Other' ? 'Active' : '', onClick: () => this.handleAmountClick('Other') }, translate('ButtonCustomValue', this.lang)), this.renderPredefinedButtons(), h("button", { class: this.selectedPredefinedAmount === 'Max' ? 'Active' : '', onClick: () => this.handleAmountClick('Max') }, translate('ButtonMax', this.lang))), this.showCustomAmount && (h("form", { onSubmit: (event) => this.handleSubmit(event) }, this.showCustomAmount &&
254
- h("div", null, h("input", { class: `CustomAmountInput ${this.errorMessageOnInput ? 'InvalidInput' : ''}`, type: "number", value: this.selectedPredefinedAmount === 'Max' ? this.maxAmount : null, step: 0.01, placeholder: "0.00", disabled: this.hasLugasError || this.selectedPredefinedAmount === 'Max', onInput: (event) => this.handleValidatorInputChange(event) }), this.errorMessageOnInput && h("p", { class: "InvalidParagraph" }, this.errorMessageOnInput)), this.selectedPredefinedAmount &&
255
- h("button", { class: "PrimaryButton SetLimitBtn", type: "submit", disabled: this.hasLugasError || this.isSubmitted || !Boolean(this.newAmount) || Boolean(this.errorMessageOnInput) }, translate('LugasSetLimitDialogButtonSetLimit', this.lang, {
256
- values: {
257
- currency: this.displayedCurrency,
258
- amount: Number.parseFloat(this.newAmount || '0').toFixed(2)
253
+ formatSetButtonText() {
254
+ const amountNumber = Number.parseFloat(this.newAmount || '0');
255
+ let amount = '';
256
+ switch (this.buttonTextStrategy) {
257
+ case 'preferInteger': {
258
+ if (Number.isInteger(amountNumber)) {
259
+ amount = `${amountNumber}`;
260
+ }
261
+ else {
262
+ amount = amountNumber.toFixed(2);
259
263
  }
260
- })))))));
264
+ break;
265
+ }
266
+ default: {
267
+ amount = amountNumber.toFixed(2);
268
+ break;
269
+ }
270
+ }
271
+ return translate('LugasSetLimitDialogButtonSetLimit', this.lang, {
272
+ values: {
273
+ currency: this.displayedCurrency,
274
+ amount
275
+ }
276
+ });
277
+ }
278
+ renderSetButton() {
279
+ const disabled = this.hasLugasError || this.isSubmitted || !Boolean(this.newAmount) || Boolean(this.errorMessageOnInput);
280
+ return (h("button", { class: "PrimaryButton SetLimitBtn", type: "submit", disabled: disabled }, this.formatSetButtonText()));
281
+ }
282
+ renderValidator() {
283
+ return (h("div", { class: "ValidatorContainer" }, this.errorMessageOnSubmit && (h("div", { class: "ErrorContainer" }, !this.hasLugasError && (h("span", { class: "DismissError", onClick: () => (this.errorMessageOnSubmit = '') }, h("svg", { xmlns: "http://www.w3.org/2000/svg", width: "9", height: "9", viewBox: "0 0 9 9", fill: "none" }, h("path", { d: "M8.18659 0.14708C8.37063 0.33182 8.38174 0.62421 8.21888 0.821452L8.18659 0.857219L4.87619 4.16727L8.18659 7.47732C8.27743 7.56861 8.32973 7.69132 8.33266 7.82007C8.3356 7.94883 8.28895 8.0738 8.20235 8.16913C8.11576 8.26446 7.99584 8.32288 7.86739 8.3323C7.73895 8.34172 7.61179 8.30143 7.51221 8.21975L7.47645 8.18746L4.1664 4.87706L0.856348 8.18746C0.765058 8.27831 0.64235 8.3306 0.513592 8.33354C0.384834 8.33647 0.25987 8.28982 0.164536 8.20322C0.0692018 8.11663 0.0107856 7.99671 0.00136402 7.86827C-0.00805761 7.73982 0.0322357 7.61266 0.113914 7.51308L0.146209 7.47732L3.4566 4.16727L0.146209 0.857219C0.0553613 0.765928 0.00306475 0.64322 0.000130477 0.514462C-0.0028038 0.385704 0.0438486 0.260741 0.130443 0.165407C0.217038 0.0700723 0.336953 0.0116562 0.4654 0.00223455C0.593846 -0.00718708 0.721002 0.0331062 0.820581 0.114785L0.856348 0.14708L4.1664 3.45748L7.47645 0.14708C7.52307 0.10045 7.57843 0.0634608 7.63935 0.0382248C7.70027 0.0129888 7.76557 0 7.83152 0C7.89746 0 7.96276 0.0129888 8.02368 0.0382248C8.0846 0.0634608 8.13996 0.10045 8.18659 0.14708Z", fill: "#111111" })))), h("p", { class: "ErrorParagraph" }, h("span", { class: "ErrorIcon" }, h("svg", { xmlns: "http://www.w3.org/2000/svg", width: "9", height: "9", viewBox: "0 0 9 9" }, h("path", { d: "M8.18659 0.14708C8.37063 0.33182 8.38174 0.62421 8.21888 0.821452L8.18659 0.857219L4.87619 4.16727L8.18659 7.47732C8.27743 7.56861 8.32973 7.69132 8.33266 7.82007C8.3356 7.94883 8.28895 8.0738 8.20235 8.16913C8.11576 8.26446 7.99584 8.32288 7.86739 8.3323C7.73895 8.34172 7.61179 8.30143 7.51221 8.21975L7.47645 8.18746L4.1664 4.87706L0.856348 8.18746C0.765058 8.27831 0.64235 8.3306 0.513592 8.33354C0.384834 8.33647 0.25987 8.28982 0.164536 8.20322C0.0692018 8.11663 0.0107856 7.99671 0.00136402 7.86827C-0.00805761 7.73982 0.0322357 7.61266 0.113914 7.51308L0.146209 7.47732L3.4566 4.16727L0.146209 0.857219C0.0553613 0.765928 0.00306475 0.64322 0.000130477 0.514462C-0.0028038 0.385704 0.0438486 0.260741 0.130443 0.165407C0.217038 0.0700723 0.336953 0.0116562 0.4654 0.00223455C0.593846 -0.00718708 0.721002 0.0331062 0.820581 0.114785L0.856348 0.14708L4.1664 3.45748L7.47645 0.14708C7.52307 0.10045 7.57843 0.0634608 7.63935 0.0382248C7.70027 0.0129888 7.76557 0 7.83152 0C7.89746 0 7.96276 0.0129888 8.02368 0.0382248C8.0846 0.0634608 8.13996 0.10045 8.18659 0.14708Z" }))), h("div", { innerHTML: this.errorMessageOnSubmit })))), h("div", { class: "Paragraphs" }, h("p", null, translate('LugasInfoBox', this.lang))), h("div", { class: "LimitAmountWrapper" }, this.isSubmitted && h("slot", { name: "spinner" }) && (h("div", { class: "LoadingWrapper" }, h("svg", { class: "spinner", viewBox: "0 0 50 50" }, h("circle", { class: "path", cx: "25", cy: "25", r: "20", fill: "none", "stroke-width": "5" })))), h("p", { class: "ChooseLimitLabel" }, translate('ChooseLimit', this.lang)), h("div", { class: "PredefinedAmounts" }, h("button", { class: this.selectedPredefinedAmount === 'Other' ? 'Active' : '', onClick: () => this.handleAmountClick('Other') }, translate('ButtonCustomValue', this.lang)), this.renderPredefinedButtons(), h("button", { class: this.selectedPredefinedAmount === 'Max' ? 'Active' : '', onClick: () => this.handleAmountClick('Max') }, translate('ButtonMax', this.lang))), this.showCustomAmount && (h("form", { onSubmit: (event) => this.handleSubmit(event) }, this.showCustomAmount && (h("div", null, h("input", { class: `CustomAmountInput ${this.errorMessageOnInput ? 'InvalidInput' : ''}`, type: "number", value: this.selectedPredefinedAmount === 'Max' ? this.maxAmount : null, step: 0.01, placeholder: "0.00", disabled: this.hasLugasError || this.selectedPredefinedAmount === 'Max', onInput: (event) => this.handleValidatorInputChange(event) }), this.errorMessageOnInput && h("p", { class: "InvalidParagraph" }, this.errorMessageOnInput))), this.selectedPredefinedAmount && this.renderSetButton())))));
261
284
  }
262
285
  renderTitle() {
263
286
  switch (this.kycStep) {
@@ -277,8 +300,7 @@ export class PlayerLugasLimit {
277
300
  if (this.errorMessageOnInitialization) {
278
301
  return (h("div", null, h("p", null, this.errorMessageOnInitialization)));
279
302
  }
280
- return (h("div", { class: "ModalContainer", ref: el => this.stylingContainer = el, "data-current-step": this.kycStep }, h("div", { class: "Container" }, h("div", { class: "ModalHeader" }, h("h2", null, this.renderTitle())), h("div", { class: "ModalBody" }, this.hasValidation ? validationContainer : kycConfirmation, this.hasValidation &&
281
- h("div", { class: "ModalFooter" }, h("hr", null), h("div", { class: "Paragraphs" }, this.showExistingLimit ? h("p", { class: "ExistingLimit" }, translate('LugasSetLimitDialogExistingLimit.text', this.lang), h("span", { class: this.isUseExistingLimitOptionActive ? 'Link' : 'Link Inactive', onClick: () => this.postPlayerSituation(this.amount, true) }, translate('LugasSetLimitDialogExistingLimit.link', this.lang))) : null, h("p", { class: "PrivacyNote" }, translate('LugasSetLimitDialogPrivacyNote.text', this.lang), h("span", { class: "Link", onClick: this.goToPrivacyPolicy }, translate('LugasSetLimitDialogPrivacyNote.link', this.lang)))))))));
303
+ return (h("div", { class: "ModalContainer", ref: (el) => (this.stylingContainer = el), "data-current-step": this.kycStep }, h("div", { class: "Container" }, h("div", { class: "ModalHeader" }, h("h2", null, this.renderTitle())), h("div", { class: "ModalBody" }, this.hasValidation ? validationContainer : kycConfirmation, this.hasValidation && (h("div", { class: "ModalFooter" }, h("hr", null), h("div", { class: "Paragraphs" }, this.showExistingLimit ? (h("p", { class: "ExistingLimit" }, translate('LugasSetLimitDialogExistingLimit.text', this.lang), h("span", { class: this.isUseExistingLimitOptionActive ? 'Link' : 'Link Inactive', onClick: () => this.postPlayerSituation(this.amount, true) }, translate('LugasSetLimitDialogExistingLimit.link', this.lang)))) : null, h("p", { class: "PrivacyNote" }, translate('LugasSetLimitDialogPrivacyNote.text', this.lang), h("span", { class: "Link", onClick: this.goToPrivacyPolicy }, translate('LugasSetLimitDialogPrivacyNote.link', this.lang))))))))));
282
304
  }
283
305
  static get is() { return "player-lugas-limit"; }
284
306
  static get encapsulation() { return "shadow"; }
@@ -507,6 +529,24 @@ export class PlayerLugasLimit {
507
529
  "attribute": "show-existing-limit",
508
530
  "reflect": true,
509
531
  "defaultValue": "true"
532
+ },
533
+ "buttonTextStrategy": {
534
+ "type": "string",
535
+ "mutable": false,
536
+ "complexType": {
537
+ "original": "'' | 'preferInteger'",
538
+ "resolved": "\"\" | \"preferInteger\"",
539
+ "references": {}
540
+ },
541
+ "required": false,
542
+ "optional": false,
543
+ "docs": {
544
+ "tags": [],
545
+ "text": ""
546
+ },
547
+ "attribute": "button-text-strategy",
548
+ "reflect": true,
549
+ "defaultValue": "''"
510
550
  }
511
551
  };
512
552
  }
@@ -5,7 +5,7 @@ import { g as globalScripts } from './app-globals-0f993ce5.js';
5
5
  const defineCustomElements = async (win, options) => {
6
6
  if (typeof window === 'undefined') return undefined;
7
7
  await globalScripts();
8
- return bootstrapLazy([["player-lugas-limit",[[1,"player-lugas-limit",{"userId":[513,"user-id"],"session":[513],"endpoint":[513],"currency":[513],"flow":[513],"amount":[513],"lang":[513],"clientStyling":[513,"client-styling"],"clientStylingUrl":[513,"client-styling-url"],"mbSource":[513,"mb-source"],"translationUrl":[513,"translation-url"],"showExistingLimit":[516,"show-existing-limit"],"hasValidation":[32],"kycStep":[32],"isLoading":[32],"regularDepositLimitAmount":[32],"isSubmitted":[32],"isUseExistingLimitOptionActive":[32],"selectedPredefinedAmount":[32],"errorMessageOnInitialization":[32],"errorMessageOnSubmit":[32],"errorMessageOnInput":[32],"hasLugasError":[32],"showCustomAmount":[32],"newAmount":[32]},null,{"translationUrl":["handleNewTranslations"],"clientStyling":["handleClientStylingChange"],"clientStylingUrl":["handleClientStylingUrlChange"]}]]]], options);
8
+ return bootstrapLazy([["player-lugas-limit",[[1,"player-lugas-limit",{"userId":[513,"user-id"],"session":[513],"endpoint":[513],"currency":[513],"flow":[513],"amount":[513],"lang":[513],"clientStyling":[513,"client-styling"],"clientStylingUrl":[513,"client-styling-url"],"mbSource":[513,"mb-source"],"translationUrl":[513,"translation-url"],"showExistingLimit":[516,"show-existing-limit"],"buttonTextStrategy":[513,"button-text-strategy"],"hasValidation":[32],"kycStep":[32],"isLoading":[32],"regularDepositLimitAmount":[32],"isSubmitted":[32],"isUseExistingLimitOptionActive":[32],"selectedPredefinedAmount":[32],"errorMessageOnInitialization":[32],"errorMessageOnSubmit":[32],"errorMessageOnInput":[32],"hasLugasError":[32],"showCustomAmount":[32],"newAmount":[32]},null,{"translationUrl":["handleNewTranslations"],"clientStyling":["handleClientStylingChange"],"clientStylingUrl":["handleClientStylingUrlChange"]}]]]], options);
9
9
  };
10
10
 
11
11
  export { defineCustomElements };
@@ -210,6 +210,7 @@ const PlayerLugasLimit = class {
210
210
  this.mbSource = undefined;
211
211
  this.translationUrl = '';
212
212
  this.showExistingLimit = true;
213
+ this.buttonTextStrategy = '';
213
214
  this.hasValidation = true;
214
215
  this.kycStep = undefined;
215
216
  this.isLoading = false;
@@ -307,7 +308,7 @@ const PlayerLugasLimit = class {
307
308
  headers: {
308
309
  'X-SessionId': this.session,
309
310
  'Content-Type': 'application/json',
310
- 'Authorization': `Bearer ${this.session}`
311
+ Authorization: `Bearer ${this.session}`
311
312
  },
312
313
  body: JSON.stringify(body)
313
314
  };
@@ -383,9 +384,11 @@ const PlayerLugasLimit = class {
383
384
  handleValidatorInputChange(event) {
384
385
  this.newAmount = event.target.value;
385
386
  this.isValidNumber = !isNaN(Number(this.newAmount));
386
- this.isWithinRange = (Number(this.newAmount) >= this.minAmount) && (Number(this.newAmount) <= this.maxAmount);
387
+ this.isWithinRange = Number(this.newAmount) >= this.minAmount && Number(this.newAmount) <= this.maxAmount;
387
388
  if (!this.isWithinRange || !this.isValidNumber) {
388
- this.errorMessageOnInput = translate('invalidInputMessageLimit', this.lang, { values: { currency: this.displayedCurrency, minValue: this.minAmount, maxValue: this.maxAmount } });
389
+ this.errorMessageOnInput = translate('invalidInputMessageLimit', this.lang, {
390
+ values: { currency: this.displayedCurrency, minValue: this.minAmount, maxValue: this.maxAmount }
391
+ });
389
392
  }
390
393
  else {
391
394
  this.errorMessageOnInput = '';
@@ -407,7 +410,9 @@ const PlayerLugasLimit = class {
407
410
  case 1:
408
411
  return (h("div", { class: "ValidatorContainer" }, h("div", { class: "Paragraphs" }, h("p", null, translate('kycSure', this.lang, { values: { currency: this.currency } })), h("p", null, translate('kyc1', this.lang, { values: { currency: this.currency } })), h("div", { class: "ContainerButtons" }, h("button", { class: "FirstButton", onClick: () => this.postPlayerSituation(this.newAmount, false) }, translate('setNewLimit', this.lang, { values: { currency: this.currency } })), h("button", { class: "SecondButton", onClick: () => this.postPlayerSituation(this.amount, true) }, translate('keepExistingLimit', this.lang, { values: { currency: this.currency } }))))));
409
412
  case 2:
410
- return (h("div", { class: "ValidatorContainer" }, h("img", { class: "DocumentIcon", src: documentSvg, alt: "DocumentIcon" }), h("div", { class: "Paragraphs" }, h("p", { class: "KycThanks" }, translate('kycThanks', this.lang, { values: { currency: this.currency } })), h("p", { class: "Kyc2", innerHTML: translate('kyc2', this.lang, { values: { currency: this.currency, amount: this.regularDepositLimitAmount } }) }), h("div", { class: "ContainerOptions" }, ['BankLogin', 'UploadDocuments'].map(opt => this.renderOption(opt))))));
413
+ return (h("div", { class: "ValidatorContainer" }, h("img", { class: "DocumentIcon", src: documentSvg, alt: "DocumentIcon" }), h("div", { class: "Paragraphs" }, h("p", { class: "KycThanks" }, translate('kycThanks', this.lang, { values: { currency: this.currency } })), h("p", { class: "Kyc2", innerHTML: translate('kyc2', this.lang, {
414
+ values: { currency: this.currency, amount: this.regularDepositLimitAmount }
415
+ }) }), h("div", { class: "ContainerOptions" }, ['BankLogin', 'UploadDocuments'].map((opt) => this.renderOption(opt))))));
411
416
  default:
412
417
  return (h("div", { class: "ValidatorContainer" }, h("div", { class: "Paragraphs" }, h("div", { class: "IconContainer" }, h("img", { src: successSvg, alt: "SuccessIcon" })), h("p", { class: "ParagraphStep3" }, translate('kycSuccess', this.lang, { values: { currency: this.currency } })), h("p", { class: "ParagraphStep3" }, translate('kyc3', this.lang, { values: { currency: this.currency } })), h("div", { class: "ContainerButtons" }, h("button", { class: "SecondButton", onClick: () => this.handleClick('Close') }, translate('Close', this.lang, { values: { currency: this.currency } }))))));
413
418
  }
@@ -415,22 +420,40 @@ const PlayerLugasLimit = class {
415
420
  renderPredefinedButtons() {
416
421
  return this.predefinedAmounts.map((currentAmount) => (h("button", { class: this.selectedPredefinedAmount === currentAmount ? 'Active' : '', onClick: () => this.handleAmountClick(currentAmount), disabled: this.hasLugasError }, currentAmount)));
417
422
  }
418
- ;
419
423
  goToPrivacyPolicy() {
420
424
  window.postMessage({ type: 'GoToPrivacyPolicy' });
421
425
  }
422
- ;
423
- renderValidator() {
424
- return (h("div", { class: "ValidatorContainer" }, this.errorMessageOnSubmit && (h("div", { class: "ErrorContainer" }, !this.hasLugasError && (h("span", { class: "DismissError", onClick: () => this.errorMessageOnSubmit = '' }, h("svg", { xmlns: "http://www.w3.org/2000/svg", width: "9", height: "9", viewBox: "0 0 9 9", fill: "none" }, h("path", { d: "M8.18659 0.14708C8.37063 0.33182 8.38174 0.62421 8.21888 0.821452L8.18659 0.857219L4.87619 4.16727L8.18659 7.47732C8.27743 7.56861 8.32973 7.69132 8.33266 7.82007C8.3356 7.94883 8.28895 8.0738 8.20235 8.16913C8.11576 8.26446 7.99584 8.32288 7.86739 8.3323C7.73895 8.34172 7.61179 8.30143 7.51221 8.21975L7.47645 8.18746L4.1664 4.87706L0.856348 8.18746C0.765058 8.27831 0.64235 8.3306 0.513592 8.33354C0.384834 8.33647 0.25987 8.28982 0.164536 8.20322C0.0692018 8.11663 0.0107856 7.99671 0.00136402 7.86827C-0.00805761 7.73982 0.0322357 7.61266 0.113914 7.51308L0.146209 7.47732L3.4566 4.16727L0.146209 0.857219C0.0553613 0.765928 0.00306475 0.64322 0.000130477 0.514462C-0.0028038 0.385704 0.0438486 0.260741 0.130443 0.165407C0.217038 0.0700723 0.336953 0.0116562 0.4654 0.00223455C0.593846 -0.00718708 0.721002 0.0331062 0.820581 0.114785L0.856348 0.14708L4.1664 3.45748L7.47645 0.14708C7.52307 0.10045 7.57843 0.0634608 7.63935 0.0382248C7.70027 0.0129888 7.76557 0 7.83152 0C7.89746 0 7.96276 0.0129888 8.02368 0.0382248C8.0846 0.0634608 8.13996 0.10045 8.18659 0.14708Z", fill: "#111111" })))), h("p", { class: "ErrorParagraph" }, h("span", { class: "ErrorIcon" }, h("svg", { xmlns: "http://www.w3.org/2000/svg", width: "9", height: "9", viewBox: "0 0 9 9" }, h("path", { d: "M8.18659 0.14708C8.37063 0.33182 8.38174 0.62421 8.21888 0.821452L8.18659 0.857219L4.87619 4.16727L8.18659 7.47732C8.27743 7.56861 8.32973 7.69132 8.33266 7.82007C8.3356 7.94883 8.28895 8.0738 8.20235 8.16913C8.11576 8.26446 7.99584 8.32288 7.86739 8.3323C7.73895 8.34172 7.61179 8.30143 7.51221 8.21975L7.47645 8.18746L4.1664 4.87706L0.856348 8.18746C0.765058 8.27831 0.64235 8.3306 0.513592 8.33354C0.384834 8.33647 0.25987 8.28982 0.164536 8.20322C0.0692018 8.11663 0.0107856 7.99671 0.00136402 7.86827C-0.00805761 7.73982 0.0322357 7.61266 0.113914 7.51308L0.146209 7.47732L3.4566 4.16727L0.146209 0.857219C0.0553613 0.765928 0.00306475 0.64322 0.000130477 0.514462C-0.0028038 0.385704 0.0438486 0.260741 0.130443 0.165407C0.217038 0.0700723 0.336953 0.0116562 0.4654 0.00223455C0.593846 -0.00718708 0.721002 0.0331062 0.820581 0.114785L0.856348 0.14708L4.1664 3.45748L7.47645 0.14708C7.52307 0.10045 7.57843 0.0634608 7.63935 0.0382248C7.70027 0.0129888 7.76557 0 7.83152 0C7.89746 0 7.96276 0.0129888 8.02368 0.0382248C8.0846 0.0634608 8.13996 0.10045 8.18659 0.14708Z" }))), h("div", { innerHTML: this.errorMessageOnSubmit })))), h("div", { class: "Paragraphs" }, h("p", null, translate('LugasInfoBox', this.lang))), h("div", { class: "LimitAmountWrapper" }, this.isSubmitted
425
- && h("slot", { name: 'spinner' })
426
- && h("div", { class: "LoadingWrapper" }, h("svg", { class: "spinner", viewBox: "0 0 50 50" }, h("circle", { class: "path", cx: "25", cy: "25", r: "20", fill: "none", "stroke-width": "5" }))), h("p", { class: "ChooseLimitLabel" }, translate('ChooseLimit', this.lang)), h("div", { class: "PredefinedAmounts" }, h("button", { class: this.selectedPredefinedAmount === 'Other' ? 'Active' : '', onClick: () => this.handleAmountClick('Other') }, translate('ButtonCustomValue', this.lang)), this.renderPredefinedButtons(), h("button", { class: this.selectedPredefinedAmount === 'Max' ? 'Active' : '', onClick: () => this.handleAmountClick('Max') }, translate('ButtonMax', this.lang))), this.showCustomAmount && (h("form", { onSubmit: (event) => this.handleSubmit(event) }, this.showCustomAmount &&
427
- h("div", null, h("input", { class: `CustomAmountInput ${this.errorMessageOnInput ? 'InvalidInput' : ''}`, type: "number", value: this.selectedPredefinedAmount === 'Max' ? this.maxAmount : null, step: 0.01, placeholder: "0.00", disabled: this.hasLugasError || this.selectedPredefinedAmount === 'Max', onInput: (event) => this.handleValidatorInputChange(event) }), this.errorMessageOnInput && h("p", { class: "InvalidParagraph" }, this.errorMessageOnInput)), this.selectedPredefinedAmount &&
428
- h("button", { class: "PrimaryButton SetLimitBtn", type: "submit", disabled: this.hasLugasError || this.isSubmitted || !Boolean(this.newAmount) || Boolean(this.errorMessageOnInput) }, translate('LugasSetLimitDialogButtonSetLimit', this.lang, {
429
- values: {
430
- currency: this.displayedCurrency,
431
- amount: Number.parseFloat(this.newAmount || '0').toFixed(2)
426
+ formatSetButtonText() {
427
+ const amountNumber = Number.parseFloat(this.newAmount || '0');
428
+ let amount = '';
429
+ switch (this.buttonTextStrategy) {
430
+ case 'preferInteger': {
431
+ if (Number.isInteger(amountNumber)) {
432
+ amount = `${amountNumber}`;
432
433
  }
433
- })))))));
434
+ else {
435
+ amount = amountNumber.toFixed(2);
436
+ }
437
+ break;
438
+ }
439
+ default: {
440
+ amount = amountNumber.toFixed(2);
441
+ break;
442
+ }
443
+ }
444
+ return translate('LugasSetLimitDialogButtonSetLimit', this.lang, {
445
+ values: {
446
+ currency: this.displayedCurrency,
447
+ amount
448
+ }
449
+ });
450
+ }
451
+ renderSetButton() {
452
+ const disabled = this.hasLugasError || this.isSubmitted || !Boolean(this.newAmount) || Boolean(this.errorMessageOnInput);
453
+ return (h("button", { class: "PrimaryButton SetLimitBtn", type: "submit", disabled: disabled }, this.formatSetButtonText()));
454
+ }
455
+ renderValidator() {
456
+ return (h("div", { class: "ValidatorContainer" }, this.errorMessageOnSubmit && (h("div", { class: "ErrorContainer" }, !this.hasLugasError && (h("span", { class: "DismissError", onClick: () => (this.errorMessageOnSubmit = '') }, h("svg", { xmlns: "http://www.w3.org/2000/svg", width: "9", height: "9", viewBox: "0 0 9 9", fill: "none" }, h("path", { d: "M8.18659 0.14708C8.37063 0.33182 8.38174 0.62421 8.21888 0.821452L8.18659 0.857219L4.87619 4.16727L8.18659 7.47732C8.27743 7.56861 8.32973 7.69132 8.33266 7.82007C8.3356 7.94883 8.28895 8.0738 8.20235 8.16913C8.11576 8.26446 7.99584 8.32288 7.86739 8.3323C7.73895 8.34172 7.61179 8.30143 7.51221 8.21975L7.47645 8.18746L4.1664 4.87706L0.856348 8.18746C0.765058 8.27831 0.64235 8.3306 0.513592 8.33354C0.384834 8.33647 0.25987 8.28982 0.164536 8.20322C0.0692018 8.11663 0.0107856 7.99671 0.00136402 7.86827C-0.00805761 7.73982 0.0322357 7.61266 0.113914 7.51308L0.146209 7.47732L3.4566 4.16727L0.146209 0.857219C0.0553613 0.765928 0.00306475 0.64322 0.000130477 0.514462C-0.0028038 0.385704 0.0438486 0.260741 0.130443 0.165407C0.217038 0.0700723 0.336953 0.0116562 0.4654 0.00223455C0.593846 -0.00718708 0.721002 0.0331062 0.820581 0.114785L0.856348 0.14708L4.1664 3.45748L7.47645 0.14708C7.52307 0.10045 7.57843 0.0634608 7.63935 0.0382248C7.70027 0.0129888 7.76557 0 7.83152 0C7.89746 0 7.96276 0.0129888 8.02368 0.0382248C8.0846 0.0634608 8.13996 0.10045 8.18659 0.14708Z", fill: "#111111" })))), h("p", { class: "ErrorParagraph" }, h("span", { class: "ErrorIcon" }, h("svg", { xmlns: "http://www.w3.org/2000/svg", width: "9", height: "9", viewBox: "0 0 9 9" }, h("path", { d: "M8.18659 0.14708C8.37063 0.33182 8.38174 0.62421 8.21888 0.821452L8.18659 0.857219L4.87619 4.16727L8.18659 7.47732C8.27743 7.56861 8.32973 7.69132 8.33266 7.82007C8.3356 7.94883 8.28895 8.0738 8.20235 8.16913C8.11576 8.26446 7.99584 8.32288 7.86739 8.3323C7.73895 8.34172 7.61179 8.30143 7.51221 8.21975L7.47645 8.18746L4.1664 4.87706L0.856348 8.18746C0.765058 8.27831 0.64235 8.3306 0.513592 8.33354C0.384834 8.33647 0.25987 8.28982 0.164536 8.20322C0.0692018 8.11663 0.0107856 7.99671 0.00136402 7.86827C-0.00805761 7.73982 0.0322357 7.61266 0.113914 7.51308L0.146209 7.47732L3.4566 4.16727L0.146209 0.857219C0.0553613 0.765928 0.00306475 0.64322 0.000130477 0.514462C-0.0028038 0.385704 0.0438486 0.260741 0.130443 0.165407C0.217038 0.0700723 0.336953 0.0116562 0.4654 0.00223455C0.593846 -0.00718708 0.721002 0.0331062 0.820581 0.114785L0.856348 0.14708L4.1664 3.45748L7.47645 0.14708C7.52307 0.10045 7.57843 0.0634608 7.63935 0.0382248C7.70027 0.0129888 7.76557 0 7.83152 0C7.89746 0 7.96276 0.0129888 8.02368 0.0382248C8.0846 0.0634608 8.13996 0.10045 8.18659 0.14708Z" }))), h("div", { innerHTML: this.errorMessageOnSubmit })))), h("div", { class: "Paragraphs" }, h("p", null, translate('LugasInfoBox', this.lang))), h("div", { class: "LimitAmountWrapper" }, this.isSubmitted && h("slot", { name: "spinner" }) && (h("div", { class: "LoadingWrapper" }, h("svg", { class: "spinner", viewBox: "0 0 50 50" }, h("circle", { class: "path", cx: "25", cy: "25", r: "20", fill: "none", "stroke-width": "5" })))), h("p", { class: "ChooseLimitLabel" }, translate('ChooseLimit', this.lang)), h("div", { class: "PredefinedAmounts" }, h("button", { class: this.selectedPredefinedAmount === 'Other' ? 'Active' : '', onClick: () => this.handleAmountClick('Other') }, translate('ButtonCustomValue', this.lang)), this.renderPredefinedButtons(), h("button", { class: this.selectedPredefinedAmount === 'Max' ? 'Active' : '', onClick: () => this.handleAmountClick('Max') }, translate('ButtonMax', this.lang))), this.showCustomAmount && (h("form", { onSubmit: (event) => this.handleSubmit(event) }, this.showCustomAmount && (h("div", null, h("input", { class: `CustomAmountInput ${this.errorMessageOnInput ? 'InvalidInput' : ''}`, type: "number", value: this.selectedPredefinedAmount === 'Max' ? this.maxAmount : null, step: 0.01, placeholder: "0.00", disabled: this.hasLugasError || this.selectedPredefinedAmount === 'Max', onInput: (event) => this.handleValidatorInputChange(event) }), this.errorMessageOnInput && h("p", { class: "InvalidParagraph" }, this.errorMessageOnInput))), this.selectedPredefinedAmount && this.renderSetButton())))));
434
457
  }
435
458
  renderTitle() {
436
459
  switch (this.kycStep) {
@@ -450,8 +473,7 @@ const PlayerLugasLimit = class {
450
473
  if (this.errorMessageOnInitialization) {
451
474
  return (h("div", null, h("p", null, this.errorMessageOnInitialization)));
452
475
  }
453
- return (h("div", { class: "ModalContainer", ref: el => this.stylingContainer = el, "data-current-step": this.kycStep }, h("div", { class: "Container" }, h("div", { class: "ModalHeader" }, h("h2", null, this.renderTitle())), h("div", { class: "ModalBody" }, this.hasValidation ? validationContainer : kycConfirmation, this.hasValidation &&
454
- h("div", { class: "ModalFooter" }, h("hr", null), h("div", { class: "Paragraphs" }, this.showExistingLimit ? h("p", { class: "ExistingLimit" }, translate('LugasSetLimitDialogExistingLimit.text', this.lang), h("span", { class: this.isUseExistingLimitOptionActive ? 'Link' : 'Link Inactive', onClick: () => this.postPlayerSituation(this.amount, true) }, translate('LugasSetLimitDialogExistingLimit.link', this.lang))) : null, h("p", { class: "PrivacyNote" }, translate('LugasSetLimitDialogPrivacyNote.text', this.lang), h("span", { class: "Link", onClick: this.goToPrivacyPolicy }, translate('LugasSetLimitDialogPrivacyNote.link', this.lang)))))))));
476
+ return (h("div", { class: "ModalContainer", ref: (el) => (this.stylingContainer = el), "data-current-step": this.kycStep }, h("div", { class: "Container" }, h("div", { class: "ModalHeader" }, h("h2", null, this.renderTitle())), h("div", { class: "ModalBody" }, this.hasValidation ? validationContainer : kycConfirmation, this.hasValidation && (h("div", { class: "ModalFooter" }, h("hr", null), h("div", { class: "Paragraphs" }, this.showExistingLimit ? (h("p", { class: "ExistingLimit" }, translate('LugasSetLimitDialogExistingLimit.text', this.lang), h("span", { class: this.isUseExistingLimitOptionActive ? 'Link' : 'Link Inactive', onClick: () => this.postPlayerSituation(this.amount, true) }, translate('LugasSetLimitDialogExistingLimit.link', this.lang)))) : null, h("p", { class: "PrivacyNote" }, translate('LugasSetLimitDialogPrivacyNote.text', this.lang), h("span", { class: "Link", onClick: this.goToPrivacyPolicy }, translate('LugasSetLimitDialogPrivacyNote.link', this.lang))))))))));
455
477
  }
456
478
  static get watchers() { return {
457
479
  "translationUrl": ["handleNewTranslations"],
@@ -16,5 +16,5 @@ var patchBrowser = () => {
16
16
 
17
17
  patchBrowser().then(async (options) => {
18
18
  await globalScripts();
19
- return bootstrapLazy([["player-lugas-limit",[[1,"player-lugas-limit",{"userId":[513,"user-id"],"session":[513],"endpoint":[513],"currency":[513],"flow":[513],"amount":[513],"lang":[513],"clientStyling":[513,"client-styling"],"clientStylingUrl":[513,"client-styling-url"],"mbSource":[513,"mb-source"],"translationUrl":[513,"translation-url"],"showExistingLimit":[516,"show-existing-limit"],"hasValidation":[32],"kycStep":[32],"isLoading":[32],"regularDepositLimitAmount":[32],"isSubmitted":[32],"isUseExistingLimitOptionActive":[32],"selectedPredefinedAmount":[32],"errorMessageOnInitialization":[32],"errorMessageOnSubmit":[32],"errorMessageOnInput":[32],"hasLugasError":[32],"showCustomAmount":[32],"newAmount":[32]},null,{"translationUrl":["handleNewTranslations"],"clientStyling":["handleClientStylingChange"],"clientStylingUrl":["handleClientStylingUrlChange"]}]]]], options);
19
+ return bootstrapLazy([["player-lugas-limit",[[1,"player-lugas-limit",{"userId":[513,"user-id"],"session":[513],"endpoint":[513],"currency":[513],"flow":[513],"amount":[513],"lang":[513],"clientStyling":[513,"client-styling"],"clientStylingUrl":[513,"client-styling-url"],"mbSource":[513,"mb-source"],"translationUrl":[513,"translation-url"],"showExistingLimit":[516,"show-existing-limit"],"buttonTextStrategy":[513,"button-text-strategy"],"hasValidation":[32],"kycStep":[32],"isLoading":[32],"regularDepositLimitAmount":[32],"isSubmitted":[32],"isUseExistingLimitOptionActive":[32],"selectedPredefinedAmount":[32],"errorMessageOnInitialization":[32],"errorMessageOnSubmit":[32],"errorMessageOnInput":[32],"hasLugasError":[32],"showCustomAmount":[32],"newAmount":[32]},null,{"translationUrl":["handleNewTranslations"],"clientStyling":["handleClientStylingChange"],"clientStylingUrl":["handleClientStylingUrlChange"]}]]]], options);
20
20
  });
@@ -1 +1 @@
1
- import{r as n,c as t,h as i}from"./index-43ec4fd3.js";let e={en:{LugasSetLimitDialogTitle:"Monthly Central Deposit Limit",LugasSetLimitDialogTitle2:"Responsible Gaming",LugasInfoBox:"The central limit is your monthly deposit limit for all licensed websites in Germany. Note that your limit and deposit details may vary if changed on other sites.",ChooseLimit:"Choose Limit",ButtonCustomValue:"Other",ButtonMax:"Max",LugasSetLimitDialogButtonSetLimit:"SET LIMIT {amount} {currency}",invalidInputMessageLimit:"The value entered must be between {minValue} {currency} and {maxValue} {currency}.",LugasSetLimitDialogPrivacyNote:{text:"The selected limit is connected to processing player's personal data due to our legal obligations. In some cases setting a limit is a consent to processing player's personal data. For details see our ",link:"Privacy Policy"},LugasSetLimitDialogExistingLimit:{text:"If you would like to use your existing limit ",link:"click here"},LugasNotSet:"No deposit limit set. Please enter a new limit.",loading:"Loading, please wait ...",error:"It was an error while trying to fetch the data",kyc1:"All deposit limit changes must be reported to LUGAS in accordance with regulatory requirements. Please note that decreases in the limit will take effect immediately, while increases will only come into effect after 8 days at the latest.",kyc2:"We could not apply the desired LUGAS limit. To increase the limit, one of the following methods can be used. In the meantime, the following value will be set for the limit: {amount} {currency}",kyc3:"We have transmitted your desired limit to Lugas Please be aware that the limit will only come into effect after 8 days at the latest.",kycThanks:"THANK YOU!",kycSuccess:"Successful",kycSure:"Are you sure?",setNewLimit:"SET NEW LIMIT",keepExistingLimit:"KEEP EXISTING LIMIT",Close:"CLOSE",UploadDocuments:"Upload documents",UploadDocumentsSubTitle:"Last payslip as well as a current bank statement",BankLogin:"Online bank login",BankLoginSubTitle:"Log into your bank account to verify your details",LugasF1002Error:"We were unable to set your cross-provider deposit limit at LUGAS due to a technical error. Please contact our support team and provide error code F1002. We'll be happy to assist you in resolving this issue."},de:{LugasSetLimitDialogTitle:"Monatliches zentrales Einzahlungslimit",LugasSetLimitDialogTitle2:"Spielerschutz",LugasInfoBox:"Das zentrale Limit ist Ihr monatliches Einzahlungslimit für alle lizenzierten Websites in Deutschland. Beachten Sie, dass sich Ihr Limit und der verbleibende Betrag ändern können, wenn Sie auf anderen Websites Einzahlungen vornehmen oder Ihr Limit anpassen.",ChooseLimit:"Choose Limit",ButtonCustomValue:"Eigener",ButtonMax:"Max",LugasSetLimitDialogButtonSetLimit:"LIMIT SETZEN {amount} {currency}",invalidInputMessageLimit:"Der eingegebene Wert muss zwischen {minValue} und {maxValue} {currency} liegen.",LugasSetLimitDialogPrivacyNote:{text:"Das gewählte Limit steht wegen unserer rechtlichen Verpflichtungen in Verbindung mit der Verarbeitung persönlicher Daten der Spieler. In manchen Fällen gilt das Setzen eines Limits als Einwilligung zur Verarbeitung persönlicher Daten des Spielers. Mehr Infos unter ",link:"Erklärung zum Datenschutz"},LugasSetLimitDialogExistingLimit:{text:"Wenn Sie Ihr bestehendes Limit nutzen möchten, ",link:"klicken Sie hier"},LugasNotSet:"Kein Einzahlungslimit festgelegt. Bitte geben Sie ein neues Limit ein.",loading:"Lade, bitte warten ...",error:"Beim Laden der Daten ist ein Fehler aufgetreten.",kyc1:"Alle Änderungen des Einzahlungslimits müssen gemäß den gesetzlichen Anforderungen an LUGAS gemeldet werden. Bitte beachten Sie, dass eine Senkung des Limits sofort wirksam wird, während eine Erhöhung spätestens nach 8 Tagen in Kraft tritt.",kyc2:"Das gewünschte LUGAS-Limit konnte nicht gesetzt werden. Um das Limit zu erhöhen, kann eine der folgenden Methoden verwendet werden. In der Zwischenzeit wird für das Limit folgender Wert eingemeldet: {amount} {currency}",kyc3:"Wir haben Ihr gewünschtes Limit an LUGAS übermittelt. Bitte beachten Sie, dass das Limit spätestens nach 8 Tagen in Kraft tritt.",kycThanks:"DANKE SCHÖN!",kycSuccess:"Successful",kycSure:"Sind Sie sicher?",setNewLimit:"NEUES LIMIT FESTLEGEN",keepExistingLimit:"AKTUELLES LIMIT BEIBEHALTEN",Close:"SCHLIESSEN",UploadDocuments:"Dokumente hochladen",UploadDocumentsSubTitle:"Letzte Gehaltsabrechnung sowie ein aktueller Kontoauszug",BankLogin:"Online-Banking-Login",BankLoginSubTitle:"Melden Sie sich bei Ihrem Bankkonto an, um Ihre Daten zu überprüfen"}};const l=n=>new Promise((t=>{fetch(n).then((n=>n.json())).then((n=>{Object.keys(n).forEach((t=>{e[t]||(e[t]={});for(let i in n[t])e[t][i]=n[t][i]})),t(!0)}))})),a=(n,t,i)=>{let l=(a=e[t||"de"],n.split(".").reduce(((n,t)=>n&&void 0!==n[t]?n[t]:null),a));var a;if(null===l)return n;if(void 0!==i)for(const[n,t]of Object.entries(i.values)){const i=new RegExp(`{${n}}`,"g");l=l.replace(i,t)}return l};function o(n,t){if(n){const i=document.createElement("style");i.innerHTML=t,n.appendChild(i)}}function d(n,t){const i=new URL(t);fetch(i.href).then((n=>n.text())).then((t=>{const i=document.createElement("style");i.innerHTML=t,n&&n.appendChild(i)})).catch((n=>{console.error("There was an error while trying to load client styling from URL",n)}))}const s=class{constructor(i){n(this,i),this.uploadDocuments=t(this,"uploadDocuments",7),this.bankLogin=t(this,"bankLogin",7),this.closePopup=t(this,"closePopup",7),this.predefinedAmounts=[],this.displayedCurrency="",this.handleClick=n=>{switch(n){case"UploadDocuments":this.uploadDocuments.emit(),window.postMessage({type:"uploadDocuments"},window.location.href);break;case"BankLogin":this.bankLogin.emit(),window.postMessage({type:"bankLogin"},window.location.href);break;case"Close":this.closePopup.emit(),window.postMessage({type:"closePopup"},window.location.href)}},this.userId="",this.session="",this.endpoint="",this.currency="EUR",this.flow="",this.amount="",this.lang=void 0,this.clientStyling="",this.clientStylingUrl="",this.mbSource=void 0,this.translationUrl="",this.showExistingLimit=!0,this.hasValidation=!0,this.kycStep=void 0,this.isLoading=!1,this.regularDepositLimitAmount="",this.isSubmitted=!1,this.isUseExistingLimitOptionActive=!0,this.selectedPredefinedAmount=void 0,this.errorMessageOnInitialization="",this.errorMessageOnSubmit="",this.errorMessageOnInput="",this.hasLugasError=!1,this.showCustomAmount=!1,this.newAmount=""}handleNewTranslations(){this.isLoading=!0,l(this.translationUrl).then((()=>{this.isLoading=!1}))}handleClientStylingChange(n,t){n!=t&&o(this.stylingContainer,this.clientStyling)}handleClientStylingUrlChange(n,t){n!=t&&this.clientStylingUrl&&d(this.stylingContainer,this.clientStylingUrl)}setScrollable(n){window.postMessage({type:n?"EnableScroll":"DisableScroll"},window.location.href)}async componentWillLoad(){this.translationUrl.length>2&&await l(this.translationUrl),await this.fetchDepositLimitConfig(),this.displayedCurrency="EUR"===this.currency?"€":this.currency}componentDidLoad(){this.stylingContainer&&(null!=window.emMessageBus?function(n,t){if(window.emMessageBus){const i=document.createElement("style");window.emMessageBus.subscribe(t,(t=>{i.innerHTML=t,n&&n.appendChild(i)}))}}(this.stylingContainer,`${this.mbSource}.Style`):(this.clientStyling&&o(this.stylingContainer,this.clientStyling),this.clientStylingUrl&&d(this.stylingContainer,this.clientStylingUrl)),this.setScrollable(!1))}disconnectedCallback(){this.stylingSubscription&&this.stylingSubscription.unsubscribe(),this.setScrollable(!0)}async fetchDepositLimitConfig(){this.isLoading=!0;try{const n=new URL("/api/v1/gm/legislation/config/month-deposit-limit/",this.endpoint),t=await fetch(n.href);if(!t.ok)throw new Error("Failed to load config");const i=await t.json();this.predefinedAmounts=i.preDefinedOptions,this.minAmount=i.minAmount,this.maxAmount=i.maxAmount}catch(n){this.errorMessageOnInitialization=a("error",this.lang),console.error(n)}finally{this.isLoading=!1}}async postPlayerSituation(n,t=!1,i=!1){if(t&&!this.isUseExistingLimitOptionActive)return;this.isSubmitted=!0,this.errorMessageOnSubmit="";const e=new URL(`v2/player/${this.userId}/limit/lugas/`,this.endpoint),l=Object.assign({softMigration:"1"===this.flow,keepLimit:t,roleLimitAmount:i?this.amount:0},n&&{amount:n}),a={method:"POST",headers:{"X-SessionId":this.session,"Content-Type":"application/json",Authorization:`Bearer ${this.session}`},body:JSON.stringify(l)};try{const n=await fetch(e.href,a);if(!n.ok){let t;try{t=await n.json()}catch(i){t={message:n.statusText}}throw Object.assign(Object.assign({},t),{status:n.status})}const t=await n.json();this.kycStep=t.popup,this.hasValidation=!1,this.regularDepositLimitAmount=t.regulatorDepositLimitAmount||""}catch(n){this.handleSubmissionError(n,t)}finally{this.isSubmitted=!1}}handleSubmissionError(n,t){var i,e;if(this.errorMessageOnSubmit=a("LugasNotSet",this.lang),t&&(this.isUseExistingLimitOptionActive=!1),3===n.errorCode&&"GmLegislation"===n.errorSourceName){const t=null!==(e=null===(i=n.thirdPartyResponse)||void 0===i?void 0:i.message)&&void 0!==e?e:"";t.includes("F1002")&&(this.errorMessageOnSubmit=a("LugasF1002Error",this.lang),this.hasLugasError=!0,this.isUseExistingLimitOptionActive=!1),console.error(n.error,t)}else console.error("Unexpected Error:",n)}handleAmountClick(n){switch(this.showCustomAmount=!1,this.errorMessageOnInput="",this.selectedPredefinedAmount=n,n){case"Other":this.newAmount="",this.showCustomAmount=!0;break;case"Max":this.newAmount=this.maxAmount.toString(),this.showCustomAmount=!0;break;default:this.newAmount=n,this.postPlayerSituation(this.newAmount,!1,!0)}}handleSubmit(n){n.preventDefault(),this.errorMessageOnInput||this.postPlayerSituation(this.newAmount,!1,!0)}handleValidatorInputChange(n){this.newAmount=n.target.value,this.isValidNumber=!isNaN(Number(this.newAmount)),this.isWithinRange=Number(this.newAmount)>=this.minAmount&&Number(this.newAmount)<=this.maxAmount,this.errorMessageOnInput=this.isWithinRange&&this.isValidNumber?"":a("invalidInputMessageLimit",this.lang,{values:{currency:this.displayedCurrency,minValue:this.minAmount,maxValue:this.maxAmount}});const t=this.newAmount.split(".");t.length>1&&(this.newAmount=`${t[0]}.${t[1].slice(0,2)}`,n.target.value=this.newAmount)}renderOption(n){return i("button",{onClick:()=>this.handleClick(n)},i("div",{class:"Option"},a(n,this.lang)),i("div",{class:"OptionSubTitle"},a(`${n}SubTitle`,this.lang)),i("img",{class:"ArrowIcon",src:"data:image/svg+xml;base64,PHN2ZyB4bWxucz0iaHR0cDovL3d3dy53My5vcmcvMjAwMC9zdmciIHdpZHRoPSI1IiBoZWlnaHQ9IjgiIGZpbGw9Im5vbmUiPjxwYXRoIGZpbGw9IiMwMDAiIGQ9Ik0wIDcuMDYgMy4wNTUgNCAwIC45NC45NCAwbDQuMDAxIDQtNCA0TDAgNy4wNloiIG9wYWNpdHk9Ii40Ii8+PC9zdmc+",alt:"ArrowIcon"}))}renderKYC(n){switch(n){case 0:return void this.handleClick("Close");case 1:return i("div",{class:"ValidatorContainer"},i("div",{class:"Paragraphs"},i("p",null,a("kycSure",this.lang,{values:{currency:this.currency}})),i("p",null,a("kyc1",this.lang,{values:{currency:this.currency}})),i("div",{class:"ContainerButtons"},i("button",{class:"FirstButton",onClick:()=>this.postPlayerSituation(this.newAmount,!1)},a("setNewLimit",this.lang,{values:{currency:this.currency}})),i("button",{class:"SecondButton",onClick:()=>this.postPlayerSituation(this.amount,!0)},a("keepExistingLimit",this.lang,{values:{currency:this.currency}})))));case 2:return i("div",{class:"ValidatorContainer"},i("img",{class:"DocumentIcon",src:"data:image/svg+xml;base64,PHN2ZyB4bWxucz0iaHR0cDovL3d3dy53My5vcmcvMjAwMC9zdmciIHhtbG5zOnhsaW5rPSJodHRwOi8vd3d3LnczLm9yZy8xOTk5L3hsaW5rIiB3aWR0aD0iMTUxIiBoZWlnaHQ9IjE0MCIgZmlsbD0ibm9uZSI+PHBhdGggZmlsbD0idXJsKCNhKSIgZD0iTTU1LjM2NCAxMTAuNzk5YzMwLjU3NyAwIDU1LjM2NS0yNC44MDMgNTUuMzY1LTU1LjRDMTEwLjcyOSAyNC44MDMgODUuOTQxIDAgNTUuMzY1IDAgMjQuNzg3IDAgMCAyNC44MDMgMCA1NS40YzAgMzAuNTk2IDI0Ljc4OCA1NS4zOTkgNTUuMzY0IDU1LjM5OVoiLz48cGF0aCBmaWxsPSJ1cmwoI2IpIiBkPSJNMjAuMTIyIDk4LjY0N0gyMDV2NTEuMzg3SDIwLjEyMnoiIG9wYWNpdHk9Ii40Ii8+PHBhdGggZmlsbD0iI2ZmZiIgZD0ibTQ2Ljc0OCAxOS42NC0zMy43MiA1MS44IDQ2LjUyOCAzMS42MTEgNDAuOTI2LTYxLjczTDY2Ljk3IDE3LjkwNmwtMjAuMjIyIDEuNzM1WiIvPjxwYXRoIGZpbGw9IiNEN0VEQjkiIGQ9Im01MC4yMTQgMjAuNzk3LTMzLjE3IDQ5Ljc3OSA0MS41NzkgMjguMDEgMzcuNjU4LTU2LjUzLTMyLjc3OC0yMi40MTUtMTMuMjg5IDEuMTU2WiIvPjxwYXRoIGZpbGw9InVybCgjYykiIGQ9Im00Ni43NDggMTkuNjQgMjAuNTExLTIuMDIzIDMzLjIyMyAyMy43MDQtNDAuOTIzIDYxLjc5My00Ni42MTItMzEuNzI5IDMzLjgtNTEuNzQ0WiIgb3BhY2l0eT0iLjEiLz48cGF0aCBmaWxsPSIjZmZmIiBkPSJNNTcuMDcgNjkuMDczYTEyLjg3IDEyLjg3IDAgMCAxLTEuNjA4LS4xMDIgMTIuNzEgMTIuNzEgMCAwIDEtOC41MDktNC44NTIgMTIuNzI2IDEyLjcyNiAwIDAgMS0yLjU4Ny05LjQ1MmMuODgzLTcuMDA1IDcuMjk2LTExLjk4OCAxNC4yOTUtMTEuMTAzIDcgLjg4MyAxMS45NzggNy4zIDExLjA5NiAxNC4zMDQtLjgxNCA2LjQ2NC02LjMzOCAxMS4yMDUtMTIuNjg3IDExLjIwNVptLS4wMTYtMjMuNTM2Yy01LjMyIDAtOS45NSAzLjk3Mi0xMC42MzIgOS4zOWExMC42NjMgMTAuNjYzIDAgMCAwIDIuMTY5IDcuOTIgMTAuNjUzIDEwLjY1MyAwIDAgMCA3LjEzIDQuMDY3YzUuODY2LjczOCAxMS4yNDEtMy40MzQgMTEuOTgtOS4zMDUuNzQtNS44Ny0zLjQzMi0xMS4yNDgtOS4yOTgtMTEuOTg3YTEwLjgyMiAxMC44MjIgMCAwIDAtMS4zNDktLjA4NVoiLz48cGF0aCBmaWxsPSIjZmZmIiBkPSJtNTYuMDg1IDUyLjI0Mi0xLjg2LTEuMjQ0LTMuNzMgNS41ODQgMS44NiAxLjI0NCAzLjczLTUuNTg0Wk01OS40OTUgNTQuNTI0bC0xLjg2LTEuMjQ1LTMuNzMgNS41ODQgMS44NiAxLjI0NCAzLjczLTUuNTgzWk02My4yMTUgNTcuMDEybC0xLjg2LTEuMjQ1LTMuNzMgNS41ODQgMS44NiAxLjI0NCAzLjczLTUuNTgzWk01NC41NzggNDkuMTc3bDEwLjg1IDcuMjU4LTIuNDAzLTguMzQtOC40NDcgMS4wODJaTTU5LjQyMyA2NC40MTZsLTEwLjg1LTcuMjU3LTEuMDM2IDEuNTUgMTAuODUgNy4yNTggMS4wMzYtMS41NVoiLz48cGF0aCBmaWxsPSJ1cmwoI2QpIiBkPSJtNDYuNzQ4IDE5LjY0IDI4Ljg5IDU5LjU1IDI1LjEzMy0zNy41OC0zMy44LTIzLjcwNC0yMC4yMjMgMS43MzVaIiBvcGFjaXR5PSIuMTUiLz48cGF0aCBmaWxsPSIjZmZmIiBkPSJtNTkuMDMgMjguNjU1IDguMDIyLTEwLjk2Mi0yMC4zNTcgMS44ODUgMTIuMzM1IDkuMDc3WiIvPjxkZWZzPjxsaW5lYXJHcmFkaWVudCBpZD0iYSIgeDE9Ijc0LjMwOCIgeDI9IjI0Ljg0NSIgeTE9IjEwNy40NiIgeTI9Ii0yOC4zNTMiIGdyYWRpZW50VW5pdHM9InVzZXJTcGFjZU9uVXNlIj48c3RvcCBvZmZzZXQ9Ii4yNzciIHN0b3AtY29sb3I9IiM3RUM1MUUiIHN0b3Atb3BhY2l0eT0iLjAxIi8+PHN0b3Agb2Zmc2V0PSIuNTQ4IiBzdG9wLWNvbG9yPSIjN0VDNTFFIiBzdG9wLW9wYWNpdHk9Ii4wNzUiLz48c3RvcCBvZmZzZXQ9Ii43ODIiIHN0b3AtY29sb3I9IiM3RUM1MUUiIHN0b3Atb3BhY2l0eT0iLjE1Ii8+PC9saW5lYXJHcmFkaWVudD48bGluZWFyR3JhZGllbnQgaWQ9ImMiIHgxPSI0OC44MzUiIHgyPSI2My42OTciIHkxPSIxMDEuMjM1IiB5Mj0iMTcuMDAxIiBncmFkaWVudFVuaXRzPSJ1c2VyU3BhY2VPblVzZSI+PHN0b3Agc3RvcC1jb2xvcj0iIzAwNTE4MCIvPjxzdG9wIG9mZnNldD0iLjI5NyIgc3RvcC1jb2xvcj0iIzAwNTE4MCIgc3RvcC1vcGFjaXR5PSIuNjU1Ii8+PHN0b3Agb2Zmc2V0PSIuNjAzIiBzdG9wLWNvbG9yPSIjMDA1MTgwIiBzdG9wLW9wYWNpdHk9Ii4zNTQiLz48c3RvcCBvZmZzZXQ9Ii44NDgiIHN0b3AtY29sb3I9IiMwMDUxODAiIHN0b3Atb3BhY2l0eT0iLjE2OCIvPjxzdG9wIG9mZnNldD0iMSIgc3RvcC1jb2xvcj0iIzAwNTE4MCIgc3RvcC1vcGFjaXR5PSIuMSIvPjwvbGluZWFyR3JhZGllbnQ+PGxpbmVhckdyYWRpZW50IGlkPSJkIiB4MT0iNzMuNzU5IiB4Mj0iNzMuNzU5IiB5MT0iMTcuOTA2IiB5Mj0iNzkuMTkiIGdyYWRpZW50VW5pdHM9InVzZXJTcGFjZU9uVXNlIj48c3RvcCBzdG9wLWNvbG9yPSIjMDA1MTgwIi8+PHN0b3Agb2Zmc2V0PSIuMDE0IiBzdG9wLWNvbG9yPSIjMDA1MTgwIiBzdG9wLW9wYWNpdHk9Ii45NzQiLz48c3RvcCBvZmZzZXQ9Ii4yNjkiIHN0b3AtY29sb3I9IiMwMDUxODAiIHN0b3Atb3BhY2l0eT0iLjU1OCIvPjxzdG9wIG9mZnNldD0iLjQ5IiBzdG9wLWNvbG9yPSIjMDA1MTgwIiBzdG9wLW9wYWNpdHk9Ii4yNTQiLz48c3RvcCBvZmZzZXQ9Ii42NjUiIHN0b3AtY29sb3I9IiMwMDUxODAiIHN0b3Atb3BhY2l0eT0iLjA2OCIvPjxzdG9wIG9mZnNldD0iLjc3NCIgc3RvcC1jb2xvcj0iIzAwNTE4MCIgc3RvcC1vcGFjaXR5PSIwIi8+PC9saW5lYXJHcmFkaWVudD48cGF0dGVybiBpZD0iYiIgd2lkdGg9IjEiIGhlaWdodD0iMSIgcGF0dGVybkNvbnRlbnRVbml0cz0ib2JqZWN0Qm91bmRpbmdCb3giPjx1c2UgeGxpbms6aHJlZj0iI2UiIHRyYW5zZm9ybT0ic2NhbGUoLjAwMTg1IC4wMDY2NykiLz48L3BhdHRlcm4+PGltYWdlIHhsaW5rOmhyZWY9ImRhdGE6aW1hZ2UvcG5nO2Jhc2U2NCxpVkJPUncwS0dnb0FBQUFOU1VoRVVnQUFBaHdBQUFDV0NBWUFBQUNWU2xIckFBQUFDWEJJV1hNQUFBc1NBQUFMRWdIUzNYNzhBQUFnQUVsRVFWUjRYdTJkeTVianhwbHVkNEFnbVpsVktWV1huTFoxVnZzc0Q5cVRycUZlb0Y1QzcrUDMwVXZVQzNnb1Q5d0RMeDh2cTlVbDJhV3VTNUpKSU9JTUFnRUVBZ0h3a21UZTZ0dHIyVWxFQkprWHllVDI5LzhSTU00NWhCQkNDQ0ZPU2JGdGdSQkNDQ0hFYlpGd0NDR0VFT0xrU0RpRUVFSUljWElrSEVJSUlZUTRPUklPSVlRUVFwd2NDWWNRUWdnaFRvNkVRd2doaEJBblI4SWhoQkJDaUpNajRSQkNDQ0hFeVpGd0NDR0VFT0xrU0RpRUVFSUljWElrSEVJSUlZUTRPUklPSVlRUVFwd2NDWWNRUWdnaFRvNkVRd2doaEJBblI4SWhoQkJDaUpNajRSQkNDQ0hFeVpGd0NDR0VFT0xrU0RpRUVFSUljWElrSEVJSUlZUTRPUklPSVlRUVFwd2NDWWNRUWdnaFRrNjViY0ZEd3hoanRxMFJqd2Zubk51MlJnZ2h4T1BIUE9UM2U4bUZ1QzhrUWtJSWNWd2VwSENNaU1hUjVPT1BJNC9GUGZMdy9pWE1JQWtSUW9qRGVWRENrWWpHRnVuNE5qUDkxcysvemt3ZGc2dXIwLzJ4dnR1MjRGVGMyemVPT2QzZmRYLzIrbGtrSVVJSXNSc1BRamdtUkNNUmpFUW8zcjhmVFQyK0FWYXJsUUg0Zm16UnZweWQzZjhmQytEeThtNStqamZiRnR5V04rSEIzZncrMCt6ek00eXVsWUFJSVVTZWV4ZU9FZG1JeGw3N3g5OUVjckZhbVZmTncvVjZIYTM5QXpGVmRYMmtNa3llc2p5UC9uaC9HVjk0WkpiTDViMytRenM3b25qOUtUZDRWMElWZUFPUVM2K3k2Yy9ZenpZWWwzd0lJVVRIdlFySHRHd2tvdEZJUmhDTXF2cjM1bXNqSEwveno3STNOd1BKcURlYmFPeTMwY3gvcDB2M1lqYWZuK1NQVnl3V0I3MXVtUk9Sdnc3WDNaYSthT1U0WEw1dUsxTzd5RkJXY21KeXd2T21mWkI3L1hRcyt6TklRSVFRbnpNUFJUaWlyMDNwSkJLTi80Z2tvNnJXaHQ5MVloRmt3dGExZ1NzQVhsYXhZRUJkVjRhdnVCTm1aWG5ZSC9RbitMbDVhTXJEUkthWUhTSXFmZWs2VktMMmxxVC9seDh1eTlzSlIxbisvZURucDdMVGx1SlNpUWxDOHFiOXIzaCtGeUh4Zy9mNVB6NGhoTGhqN2swNDhySUI4TnJMUmtZMDdHOXVUTDNaR0M4WDRLb1g1aXNhb1FEc2wxVWtIeSt3elhqQTJ2cWtKUmFBb3BnZC9BY3Rackdzdkp0WXQvMTdGQWVLeit6ZFljOHI5NUNrMmV5Zjdkb2ZweFp5bUFBZElqOWpvaE1MVEJDUzc2RXZJWmVYYmlJQjJVbEFKQjlDaUtmT1F4R09yR3prUk1OVmxiSDFDL1BDTm5MeFJkMEl5SmRZV3hzWFpPUlpiZUNTaTBneXdseU9RMlZrSDhFd1cwUWhmcTBQdkI5ZFp6NXUvNTdidmxkZzI4OS9UQWtLREdUb1o3TE1adHZsWjFwMDNnSXdhMzYyUStTbWxaZFdTdjRLUU5uOERzdmwwdDFTUUNRZlFvalBnbnNSamt6dlJ2T2Zid3l2Z214VXBxcStUbVRqaFhsUlY2YXExb1c5ckkyMXo3MWMxTFZ4dGpiMm1UWFA2bk12SXJZMnpsay9iODhNRi82YldXdDdZdUdpNjdCK0g0d3Bkdm9EbW1KNlhUR1kvOVErNmoyM0c1NzgzdHRFSXJCTlROclhlVDhVb0k4VDMyUG4xMjM1WmJobUI0bVpXak9aOHZ3OExqUmxPWGYvMDE2OWJiOUhMQ1RGajE1RXl2S0g1dXVJZ054U1BrQUNJb1I0R3R5M2NFUmZoK25HemMzN292NVZJaHZQMTRXdG54dHJhMk0zTjRXMTFqeTdxSTIxNThZNWE1eTFoZ3V3OXN3NGE0MXoxcHdUeE9JY3Q0d0VZMFEybk4xUFBMYkpSR0JLRU1aZXc0OWYrNHZyN2V1THpQY3dSZUVpVHhrd2tKMVlhb3FaZzQra0hDSTdPUWtwaWsrVGY3dVA2WFArdHo4L0pqYmJoR3NzdVlrRnBpaExGOUtYSUNmL0xOKzVlRjJRa09MSGhRc0p5RzdweHh1WTd2MFkvZmtsSUVLSXg4aWRDOGY0emhRdkhLOVdLN05lcjgxcWRWV0VkS05lWHhZNTJiaDRabzJyejAxZGJ3cG5yYkZuMWpoN1pweXo1cXlSRGJkWVJrbEg4OVV0REdmZDljSzUzbnlMY3dZV1RITXpIREptYjdFQU1OSHoxbUVzWHIrSzE5NWt4V0l3bG9qQnBOaEVRdE54blgxT0xEYXh6SXlLVUpIK0hLdnVlb2ZVWmtvZzhpSXpjNHlVcFhvU0V3bE0vRHJ4OXl0bUh6ckorQmNVUmVsbXM5TDlESmhJUUdMNUFGK0NpWHRBL2lzMHBXNVBQM0svYS9iM2wzd0lJUjRMRDBRNHZqVmhaNG9YanY5clZxdDNoZjNOamRtc1ZvV3JYcGd2bnE4S1cxK2Fhck11WEYyYjgvTmw0ZXJheThhWk5kYWVHVnRYUlNvYVB1Vnd4cm01Y1F0bkZrRXFtakgvMEJvVzRCcng4R09SYkFReDRRREdQdUROeG1WVXBTY2QvcnA1ZnJRNFhlTUhONU1Da250T0t3R1J5S3dISC9oK01oV0puQmhNcHpRMENjMVFZUFpKWllhbHAwUmV3dGoxZnVMU2w0MVA3a01ZYi9wbHdueFJ6TnlZZ09UU2oyS3hjSEgvUjBnLzlwQVBVUG9oaEhnQ1BNaTd4VmJWdGVGM05CK3lWN3lvcjQyRmR0ZUplMVliYk5mb0djb25aOVlhdDF5MnBSUmIxMFVuR3JXaGJzVERXZVBtemtDTmMxNUMzR1p1d0xUUzRlZHZ3TTBOaGZlUXV2bjU5dXIxY0hYKy83VzdrcUluQWQ0b0RJbHdNUHdBTWMwSFR1c2dSZUU2SGJxSjVNTDFIa05mRk9wMU0xWjAzM09HcFJsMFBtY3hnelVlUjVySW1DTDZJRnlsVXJMQ2xJV0RXVHNTNXNQZkZmclNNZy9YdmVUbGVyQU9pb0cwbUhrK2dla0x5eWYvT3ArQWVoUDlQQ1ZMR2psWkJObjRRRkVVN3VQSG1hczNDeisyZ2VMWkIxZk1hbWRubGJ2ODExa3YvYkQxTzFkc05vNlhZT2MzRHI2aWFrb3Z2Ni8rYXNxeWRLelhacmxjdXU5WEs4TTNRVDVlK3gvdlRmZzUyd2ZnLzBHbS8vNjF2MU1zOUpJUEljUkQ0czRURHVpOUtZNlVWUG9KeDh2cWhkbEVDWWM5dXlrdTdJV3BOemVGYzliVWkwVVIwZzA3bnhjaDJiQzJMQllMWjF3UWowWTBuSE1HYTgzY3pmM2pSU01SemhubnlpYjE4T0l4RDZuSGZON0pTSlNFWklubnA4b3JnelNqNmwxdnd2eG1iSDBpTXNhNE9BcUo1OXZuM2d4ZkJ4Z2tNY1lZZDlON3JlUjdieWJTazk3UHRjNmtJLzMxeFUxLzNxY3NYZXh5U0ttbzdYMjV6czhYcHArZ3hQT2RsSHpDclB4all3b1gwcEVnSUorS3dwbVBNemVXZmhTL2JDKzk3TmYzQVVvL2hCQ1BsZnNXRGlEc1VNazBqWDcxdnNqMWNOU2JteUl1cWRTTFJlR3NOY3U2S3R4eWFXeGQrWjZPZVZrc1hDUWM4NmE4VXRkRmtBMDM3MFRET1dlQ0xKUmxKeDloYkNBY2M0Q3luVy9qb2gyRm94cXNxWnJMNkRtYjVIb2dIU1BTc3VtdmpkZFZXVkdKTDZ2Kzg2YktPZEVIOVNZcDY1amU5eThtWHVlbS83Tk9DTW82bmwrRitadUo1KzRnSnEyVXJOdTVWZk84c041THlGQkEwdlFEd014bUxpY2ZBTzltcFp1V2orN3NqK3k1SHozNXVITEo4ZXY5Znpialk1SVBJY1NkY3kvQ0FjVFNZYnIveE50aXV6TTR0cVVjdHE0S2U5YjFjSVNVdzlabHNWajQwZ3B1YnF5dGk1Qnd6T3RaTVNZY3JXeTRKZzJoa1l4eTFqNmVFNGxIUzlvRE12Y2Zsc0ZFcW5qTzAzMllic0xJNklmdEpybkdHTmMralNyNWdNOUx5bUROcG4yQmRsMzZmZm9mMm9rY3BCL29rYURFcjNIVGZ0RGZET2F5eVUzbU5kSStsU2t4S1lyQzVYdFRWcE5TRXN1TU1WNUFXdWt3aGJ0dUJXVGw4dW5IdGRzbCtZQzhmUFI3UG1BeS9laWRlQXBLUDRRUUQ1bUhKQnhrRC83NmVtMDJIejhXdG41cHZseGZGL2JMeWxRMzUwVzNVNlZmV2dsSlJ5Y2RQdDJZbDNXQmM4YmEyVkE2eXJyWUtoeWxNN2laY2M2WnNoV0dPUEdZNDJhSmdBeUVwSS9EbWJSbmcrVEQxdzlGWTlVbStZQWVGNVR1dGJ5TWJES2xtZDNFcEYvcW9US3UxYU14K1RER2RYSlI5RjkzTE9tSXBNUVkwemJWRHI3SDJQTW5oS1FuSXplRkN5NWlJaEdKbnhQRzIrdDE0ZUtHMTIzeXNVL1pCVHI1R0d5M0hXazZQVUxwWld4TThpR0VPQW4zSmh6UVNrY3NIcVM5SEZWMUhVbEhiYjVjUHkrc3JZejlvamJWNXR5WFZjNDN4Yk93UGZic3pOUlZWVGhuemJLZUYyNWhmWW5GTFl5ZDE4WENXdU5zNldXa3RBWFdtcks1WnQ0bEhjN2FvaXlkSVZ3N1p5aWRnWkt5RlpFZ0hLVnBaU09TREVldTFOTDE2VHJuVFByLzdpRXF0VkFOQkdSS1VJd3h6ajk1WEVwU3djaVZkWHp5a1YvZlBjd0x5YVlhVzdPRGpHeEdmczVJUkRieGVMenVKdmtlOGR4RXlhWmRzNGFibmhqNU1zMjRnS3pkbEh5RTlVRStQalJsbDIzeUVaLzNjVVQ1Z08xcFIzcmRUZHpubTRRUTRzbndFSVFEaUtYalczajkxdkMrTzVNamxGYzJMNzEwOUU4Y2pRNEJlM1pobnJWYlpmY1ZqOUxNblRQVzFzVXU0dUhjektjaEFQaHhOMHQ2UG1qbVd3a3BtNWFQS1Bsd3pxUlNFYjhHclVUUVhBWkpxTUpBOXlFNUppUFZtQ0RrUCtDcmdXUTB2U1VqTWhHK1QxOXlJdW5aMEJNRjA2Ni9yWVRrbTFyRDQ1dEVRc2JTa0RFQkNUdGZqTGx4cTJpZE1VVXJHNlpZTzY3OVhHaEVOVVhoaXFKd2ZQSzdZRkw1K05RY2RoYmtJNVJqaXRtSFZqTDJrNDkrMzhkQVBnRCtGTjhCZDJ2NmtWNTNFL2Y1aGlHRWVOVGNxM0FBVzZXaks2ODBSNTNiR3hPZlB2ckZabFg0KzZrMDRuRjJVMWdiaTRjMWRiWHdPMWVXMWl5cnFOU3ltQnRYMTc2eDFNMk5MV3RmWXFsbnhkejUvZzVuZmRrbFYycnhrbEVVQUdXVGVQangwbENTRjQreUhBcEhockFtbDREZ0oveDQ2eDExZjExR1JLcDB2STVGWWRoRE1wNXUxTDZra2pTMHRvOXpZMm5xa3BFWDN6dFNSSzh4WFpJWlMwSFN1YjdzRkZ2N1F6cXg4UE9oSHlTa0h1c2RVbzlWSkNXN2xGeUFmTE5wYzlxcFArZGo3bkpIclcrVkQrZ0x5SDd5TVRibUorNzdEVVFJOFdoNFNNSUI1TXNyckZZR0lDOGVMNDJyTnVaRlhabTR2OE05OHpkeXF6Zkw0c0xXeHAwMzR0R2MwYkdjei8xT2xpYjFjQXZieUVlL3VYU2JmRGhyaTFZZ3lyakhJNlFoelhiYWJPclJ5RWQ4R2twWU55SWNZMldZK0VNK1RUUklaTVRRcENSWk1RaVBOOEZRc212Q2M3dlgyYThVMDVPY01OOElUTmNmTXAyQWJKZVBNTzRYSFVVOEFMUGVKaDZGQ3p0ZTR0MHVVNmxIT09MOTQxVEo1WmJ5QVh2ZjZSYVVmZ2doanNTOUN3ZXdSVG93OEpvcDhlQnI4RGQ0ZTJucTlYWHg0c3ZLMkxwTFBkeXoydFNiVGVIcWM1T1ZqNlRrNHB3MXJod21IMjNacGZTN1hwcnpQZ3BYT2xNbXlVZVFqMjQzeTNqWkJUY3p3VGxhZVVrYlVLUDVySEFFcHNTam5XOUtKT1I2T1ByUE1hYUtTanF4TFBTZjF4ZVlLbDkrbWZvZTNZWGJWenlBcmYwZlFUeHVrdm5iaVVmaFlIV1llRFJiYkZQeEdOdGlDMG5KNVFqeUFmRDlxSHpBRHVsSGV0MmZmQWh2TGtLSUI4T0RFSTVBSkI0akF2TGFpd2NRU2kwQVkrVVdXMWNtSngrOTVNTlpFL2Q3T051a0grMng2RjNQQjNIWkpVay93cmJic2RKTDZQdUlkN2prbWsxRG8ybFdRa0taSnY1Z2RJbVlKTUxoaDNMUzBTMm80OTZQcmVJeDhzRnVodkppVEQyWmVKakI5NG9TaitaaDFWc1RpOGZHcFdQYnBNT1BiL0s3WDhZT01ndmZaMFE2Z0wzRVk5RG5NWEc0V0p4NmRHUFQ4aEVPR1R0RVBzN096dHlmaU5odjEwdDYzWjk4U0c4MFFvaDc0VUVKQnhCTEI1QVZEK0MxNFRYd2ZqZjVnQ3RjdFRFdlhsVEdWcFdKNzhuaW50VW05SHhZV3h1N3JJcjRUck9oOU5MciszRE5jZWkyTE1ZUEU5c21JRDRCd2ZVYlQzdmJhMU1KQVhDem5tRE1VdUhJc0UwNEt1ZzNuSTVKUngxdmo4MnNPVUE2MHZFMjdUaWhkTVFIbEcyVkRsTzRjQ3U5WEhOcEVVdkdDdGJGVGU5bjZwcExpNmE1dEJNUGdPc2R4Q09YZXZqdlBYUHdpeSszUk0ybWNIdjVHSlJlMVBjaGhMZ2xEMDQ0QW9sNEFJZkxCMEM0ODJ6bytaaEtQL3BOcDJmRzJ1YW85TG9xenRKN3RTem1adUdjSDVzVUVIOEd5S2lBUU5JREFwMkVRTnNMQXIxVW95Y2owZHp3SmpuTlNDSWJrQ1FjdlRYaE1zakRzTHdTejBNa0IvRUhlVlVQMTI0VERtZ2JTK09EeUhMQzBSdS9pZGZtaGVQUWxBTVlKQjNRVHp2VzZ5QVlVK0p4M2U1cWllZFdXOFVEd28zbDB1MjFRUCt1dHREYjZWS1djL2MvZTVSZFlLTHZZMW8rWUkvMFEvSWh4T2ZEZ3hXT21JblVJN2wrN1I5SFpaZFh3THJwK1lEZlUxWHJiUHBoWDFUbVJaTisyTHFLQk9UQ1dGdWI4K1p3c1lNRnhPMTN1cW1YQzlmdWFvbDdRY0p2RzNiRHRDTGlCM3QvbjFoSVlnbnA5Vy9Fak1nR01KcHc5Tlo5eGlrSGdGbEhoNHBOU1FkZzF2MjA0eUR4bU0wYy8wc3Y5Y2lKQi9qVUE3eDh3RnQraXVTaldDejg3ekFoSDl0M3ZNQ1c5Q09kNnlINUVPSnA4eWlFSTVCSlBZQ0o1QVBZTi8wQURoYVFjQytYY1FHcEN6ZWZkMExSYTBMdEM0aHp6c3puM1E2WE5Ba0Iycm5vS0xGbXZPeWtKTmQ4Nmx6KzdJOElrOHdiWXh4VmRBejZIcjBjd0dlYWNoU3VQY0UwRnFKSVBFTGlrVXBIVVlSZWo1Vi8zcWZ1TmJvR1V5OGVBQjh6NGdIanZSNFF4QU4rbXYzVFFaSjZBT1VQWFlsbEovbVlQbXdzZnB5NzdrOCtwamNtSWNST1BDcmhTTWtJeUY3cEIvZ2RMd0RoY0RFNFRFQnlKWmd6MTl6WHBSR1FjRU01NTN3UGlCY0pmMU01YS8ycHA4N05UZGVJMnBjUTVsQW1VZ0pSd2hINlF2RDNsZXVTajFnNm90Sk1qcVFXTXlVYTdYekU4TkF3R04yMTBsdVRmUEEvMFpSajhQeWsxTEpOUE14MUp4MUFLeGloejZPWXpkejdySGlVRHQ2Ums0OGdIclBad3YzSWZ3UGpKUmM0U0Q2NmNjKzI2LzdrWTM2VEVrSzBQR3JoaU5raC9VaXVoNzBmY0ZvQmNjNmFzK1hTMkdoSFRQOE1rRVpBbkRYaEhKQ1FncmhXUXByNUlDRkFXZmJ2ZE5zWEVWK1dBU2lUK1Q0VEVnS3dSVFNDT095Y2JpUnIwcmtISnh4K29ocy9Zc3JSam8yVVdDQ1VXZGdxSGlIeEtKckVZemFidVYraWRVV1RiaFN6OS81cmN6ejY3TjEwNmdFSHlvZTIyZ29oR3A2TWNLVGN0WURFTzJER0JNVHZnbGtVc1lBNDIwaElYVFZKaURQeFRwaXBGQVJnWEVLYW5oQWdLeUx6a2w0NUppTWhZZjFBTG1LaXVmUXdNWC9aOVcvNDZ6M1NqYkJtUitHSXgrOUtPT0kxeDBvNW9KT09NUDZKN3ZWTk1YUHcwYS8vNk5jTXhXUG00SDNYSk5yc2NFbmxZMHc4WUx6UkZIYVREOWgyenNlVmcrL2lnVzV0L25xQUJFU0l4OE9URlk2VWh5b2c3dHdhWi92bmdNU05xTU96UVBJcGlIT3VLOFVBcVlUTXdkL3hsdjdKcDVBbUlxV3Z4L2lCM3Q5bnVQUEZNeW9hd0M2eWtjN2xlamo4dzRlWGNLUnJqcFZ5d0xSMCtMRytlQXpMTE9QaVVSUk44akVMZ3BFdnQwQVFEeGc5WEF6b3k4ZGZpVzhzUjBQdm5JOUJzMmxQUHBJNWlZY1FUNEhQUmpoU0hvNkE5TThCQ1FJU3B5RExwQStrUFExMUVWS1EwSWc2VVlxQm5vVE1vVXMreXJLWGdPUmtKR1l3TnU4ZXRoKytZNkxoQjNyWCs2WWJmdXJ4Q0lkZmY1eVVBMUxwV0hYUG0wdzdtcm1aTDduTW1wSkxLaDRoOFlDaGVFQW5IOFZZeVlWOHMrbmtBV005K1ZEcUljUlQ1Yk1WanBTTWdFd0lTWDRIVE5pQ0MwY1VrR1FuakhQV25ObWxjVXU3WHdyQ2drVW8yVFJ5d3R5UE8yZDd3akYzempBUDE5NG1jaklTNDl5V0k5ZGhValM2NjhoVTlrZzMwdkdIS2h4K2ZTYlp1R1hLQWJSOUhUQ1ZkdENrRk8rOWRBQTdpUWZEY2d0TTlIcVFpc2U1Zzc4QUUvSXhYWExwL2psMDVNYjZDL1FHSjhTRFFjS1I0YUQwQTQ0a0lORkJaSFZ0K0FLR1paaHo0Mnh0ckxWdDcwZXVET01XdHQyU081YUNMUEN5MEpaVm10MHhXUkVwNCtRajJubzdJaUZqNUVVRGtsaGtyM1NqTjM3VC94NFBWVGo4ZUM3bDhMZThoLzFTRHNoTEJ6Q1NkdlRGby9qZ3BjUFBUWWhIV1RwKzZxUURZTmFJeDA4N2lRZkFYL1k0Vm4xcjZqRTIxazNxalU2SWUwZkNzUU4zSnlEUlFXVE5TYWdBdS9hQnBMdGhYQ1FrN1c0WTEyOUdCWWdsWkdHNzhvcHp6ckNnRlEraTlXRk5XMDFwVXBHTzZlMjNmZWxJUkNNYU1xYTdpWnUvM2kvZDhIT1BTemlBMFpUanVsbXpUOG9CWkpNT3lLY2Q3M3Z6UVR4S0IvL3lZenVJeDN3K2R6K0UxOGdlS3BZWEQ4ZzBtZ2JlWERXUEoxT1BxWEUvcVRjOUllNEZDY2NCbkVaQWhnZVJBY1JIc2IvOENuWXF3MHdJU0plQ2hENlFmQXJpUldOWWpvRW0wY2lJaUorejJlU2o1eUxPK1lQSGVvTU55WW1rMlR2R0J2Wk5OK0RSQzhjeFVvNTBQUFIxUUxPTjluL1QrVEo1L0s5V091QjI0Z0hqOGpFcUhwREtSMyt1WTJ5OFc2QTNRQ0h1REFuSEViZ0xBUUZJN3dWekt3RVo2UU1KS2NnU2NFay9DSUNiUjMwZXR0OXNHdVk2NlZpUTluekVRZ0prblFPMmlZWng0UmIxNlpwZDA0MzRwTkYwM2VjbkhEN2xDTXcrUnFXVjBiUURZdkdZQlFFWmlNZkN3WC9ueFlNRHlpMnBlRnhkT2U4Y1NqMkVlT2hJT0U3QXFRUUVtbnZCWkFRRTRGaU5xTkNVV1hJN1l2emtvQnpqSHp1ellBSHRhL1JGSkt5blpSRUdjMyt2UHUySGVsNDBZSXRzd0U3cEJqd2U0WUJqU3NjdzVSaXVTWk1PeUtZZFFQa3VsUTZZRkkvbDB2SFg1dkdFZUlUSGY0ckY0NnBKTzFyblVPb2h4RU5Fd25FSEhFdEFJTjZHZTZDQTFGNUNVZ0hoNGhtaEViV1RFR3RjMG93S0VDUmtzWER0V0NqSCtJZUpjRFJmRjBraTR0Y09aU05OUVdBb0Y3MjViYUlCQjZVYjZkelRGbzc5VW83dWNiK3ZBL0pwUnljZE1KOHYzUS84d3o4dmxZN3crUHpjTlp0YVdDNy8xbzdIMGdGdzJZakhtekRRSmg0ZzhSRGlZU0hodUFmdVRVRHF5dGd2OHdJQ2wxellrSWFNbFdIOFY4N082WmRpbXNSakNZc2dHVGJlN2RLSlNFODJra1FrakRIRklub2NXd1BiUlNOd1VMcmhtME42SC95NWRhY1dEdWdhUitGMndwSE83WnR5ZE5jajB2R1Rmendzc1hoK21pOGRSeENQeTdUTUFyenBpUWZBZDRNMURXUGozUUs5U1FweEZDUWM5OHlJZk1BQkFySjNDU1lSRUlEUm5URE9HbmRtamJWbnJWRGtVcEJ1YnVFZk4wMnBZUndZbEdTNnlvcHJ0K24yellLZWxHd2xJeGtReE9DbTlaUXAyUmpNUjVJQ2oxYzRnSjNLS2dBZlBvNnQyNTV5d0hicCtCR1l6WU5jL0dOYU9nRCtBc3ZsODJiOHo4QjI4Ymk2dW5MOUZvOVI4WUF0OGlIeEVPSjJTRGdlR0E5RlFBQ215akRnWldIWUMySU5uQk0zcEVJbkc2RXhkWWtYaTFoQzBqU0VobHpxRWVRa2o1OFpKQlROZitlU0VHTUtGeWNtaDZRYjhOaUZZLyt5U25jOW5YTEF1SFJBRUk4ZDBnNFlpTWRZbVNYbXF1bno2THhENGlIRVhTUGhlT0RjaDRBQS9qQ3l1akxXVm9aL1M4NENHU3ZEUkFJQy9SUWtsaEFnYWtwMUJwWXNuRFVzTzdrWUU1SHczRFFBOGVOTnIwaHpIY3RBVW4xcGliZlRkbU9Ka0J5UWJzRERFUTYvYm5zZkIvUlRqcmlza3E2OWJjb0JYanArN0M2WnpYL3VYbk9iZE1DUnhPT1ZneitteXdLRDUvY205ZVlweEY1SU9CNFpkeThnM1dGa0wwTFpKZWtEQWZBUzBpL0RRRDhGZ1hFSnlTWWh6cHJsMHY4R1l5SVNtT3o5R0k5Q3RvaEc0V0NkRE8yZmJzQXFlZDdURWc1L1BUeVJGQTVQT1dCY09pRHQ3Umd2czhCUVBJSjBRQ1FlcjE0NS92aEhNdlNlTzVqVUc2Z1FPeVBoZU9UY2lZRFlHOFBYWGtDZ080d3NKeURROUlGTXBDRHdESGZXN1lnQk9Hc1RqNlhockJNVDZFc0lnRnY0NjBXY2V1UjZQS0lEeWZaaWkyaTBZd2VrRy81NWowTTRZTGMranU1NkpPWEkzSU9sbmRzeDVZQnA2WUFnSG45dXIzY1ZqMTV2cWNSRGlKTWg0WGhpN0xnREpobmJUMEFnZnhycVYwRGQ5b0hVQmw3MCtrQUE0aFFFR2pseGZrY01GeEFrNUt6WGdOcEpDRFFsRmVKclg1WUp2U0hkV0orc2xQUllFb3RHVGpKZ090bUEzZE1OZUx6QzRkZm15eXF3WDhyUkY0N2RVdzZBOHUvbnZiRjlwUU9PSng2U0RpR21rWEE4Y2U1SFFHcmpxaGVkZ0dUNlFLQXB3OWphMkdjWDVubHozYVVna0N2Rm5FZVB3L1pjNkNRa3JQVmpQaEU1QTJ6VEl4SXpXWVpKeURXYXBxTGgxeFZ1dFlxdWQwdzMwdXZQUlRqZ3RDa0g3QzRkUGVHQWc2UURKQjVDakNIaCtNeTRTd0dCZkI5SUp5RCt6cmdRbFdGc2JiaUVDM3ZSbG1FZ1NqVXlXM09EaEFDNDViS2RpNS9YaloyUmpnT2NuZmwwaFMza0pBTTZrZGhWTnZ6OGlIeGNYL2V1SDROdytPdDhId2NjWGxhQjQ2Y2NjRnJwa0hBSWtVZkM4Um16Ui85SE1qWXVJREIrUjF6WTFvZzZWb2J4L1I3UGVVNHFJYzdhcGhUVFNjZ0ZUYUpCa0F6Zm5OcGRENFdqWDI3cFM4a1pDYzFBVHlCV0VGd2pGWTNCV25aUE42QXZISWVjTk9yWFBSemhnTVBMS25ESEtRZElPb1E0RXVXMkJlTHBrcjRwUmdLU3ZsbWEvdGdiQjVqbVBHbm5CZVRTZmY4YUx5Qm5aNDdWeXJ4YXZuWFFDTWd2cVlCNFVYa2ZCR1FGdmd5emFmdEFvRWxCYnA0YmEydXpvcUtmZ2xqajZuUERCcXl0MmxMTU9wYVFHVGk3TVJkVktpRmRHZ0xnVEN3Y0ZjNVpZNXJmT2QxUzY5YlduTkZKd2dxZ09NTVF4UnNOdVNQWnAyU0Q2MnNvaXZZeVRUZWVJblY5WTRoT0lLMDNhek9iYno4Qk5GQmRYNXVTTHVWWXJ6K1k1ZkkvQjlJUjgvNzllNU5LeDl1M2I4MjNZOUt4SjhZWUkra1FvbzhTRGpISzZST1EvRlpjbU9vRHFac2s1RXZ5S1FpNCt0eS94cUFjMCs4SkFiODdwdm14MmpRRWFCT1JtTzFOcDlOa2Q3cWs4bkZndXVIbkgyZkNBZkRUcko5aVRKVlZJSk55YkNtcmdGSU9JZTRiSlJ4aWxOTW5JRXNIYjZNRUpPb0QrUjNZbTVWNUZ3a0lLM2hadlRCMVhSbllSR1VZc0RlMXNmYTVXUUd1S2RPNFo3VzVzTmJRbEdMWTFBTUoyWnhaQXhlK2Y2TkpRd0RjeHZlR0JKenRFZy9PejQ4dUg2WW9ITmZYdlRYN3BCdXhiS1Nrb3ZBVXFmNzkyc1RTNFZPTzZaUkVLWWNRZDRzU0RuRXdkNW1BZUFGSiswQkNHWVpCR2NaL2ZkN2JFUVB3ckVsQ1dna2hsNFJFRXRJUWVrT2dLODIwblBmVGtYM1lWVFNPbFc3QTAwdzRRQ21IRUE4ZEpSemlZRzZSZ01SZlhEWUJBVjZ0VnFaTlFONk83WVJaMGFZZ3EzNFpCalpZV3huN1JXMllld0ZaM1FUQnFJakxNZjBrQkt5OU1RV2RoQUNzTXlKeUFiaVZOVkE0MklUaG9aVEVuRGRpc3FOb3BHTlRzdkc1VUszWEppY2QrektXY2hDZFJub2JsSElJMFNIaEVFZGpEd0ZKZUJOL2NTRUIrZjcxcFlzRnhLY2diN3NFNU9jdEF0SUl4Y3ZycUF3VDlZSUVDZUVHVnJZMnJsNjNBZ0srS2JXWGhLeHJBemUwSW5MaGp3bHp6UTZaZ0xYV1hOQkp3YUQ4c21vT0Z6TmRjMmhNVGpJK01SUU52elpKTC9aSU43WXgyMlB0UTJTWHNzb1kzNUljQkNhRXVEVXFxWWc3NDZnbEdCaWNCUUw3bDJIQWI4bUZZVU1xZEtVWVoydnovQkxTY2d4MEpSbUlFcEdMWjRUbkVaRTc2K09DUEVWU1JvbnBST05qTkZhNDZCSzRYVGxsNmw0cWZ2MzlsVlJnZStNb3dITDV0OEdZeWlwQzNBOUtPTVNkc1VjQ1l2cGp1U1pVNFBXbCt4NzZmU0J4SStvdVpaamVsdHl3SStZNlNVRzhoSHhhQlFueHIvV3NTVUptZ0xVWG5YVFV0V0Y5ZzdWMTEyaUtsNUhaUmJqdWhDVGRUSHVCVHpSaTBpUmpJQnI5b1d5ajZEN3B4dWVFeWlwQzNBMFNEbkZ2SEVsQWdHOGR2RFU5QWNudGhHRllodWxTRUM4aGJRcnlJVWxCQmhJUzk0TjBFbkw1QmRnaWlNaGxrcFRNWExoVmk3WFhCaUFWRWk3Z21uemtFL0NDRVpWanRvZ0dER1ZqMzNSRENDRnVpNFJEUEJnT0Y1QW0vSDRUcmhzQnlUU2lwbjBnUGdYNWR5OGp2VEpNMmd0eXhjc1AvanJlbHR2T054THlxZWtEOWFLeDlxTHhCVER2eWpQUHVjVEVaWmkyUE5NSlNjQW1KUmtnaENPdGFFeHRlODJsR29kc2s5MWVUaW4zZnMxSHlmZmZKLy91dFl5TkN5RWFKQnppd1hKckFZRkJJeXF2TDkzM3FZQXMzN3IxZW0zS0VqZGVobm5mQ2doNHlmajE2b3FxaWlUa3F3MjI2bS9OWmY0Q2V4MVNFai8yc2Y1aytLTDdlWjhWc1ZSYzlpUWpiZFVucGJFQUFBZ2hTVVJCVk54MGRXMEltMXN5UGFkVFpaT2NhQlN6bVlQM3ZUR2xHOGRIWlJVaEpCemlFWEc0Z01EWVRwaWNnTEJjdXFuZE1DRUYrUmZ2ZXllajhzRWZUQmErbzVlUTY0R0UyT0o1S3czVzF1WVRuUWk0WjU4TU05d2xIYTI4Y0FtUk5HVFRqNGlwSktOb3hXUW9HNE8xVzlJTlQzZW5XQ0dFeUNIaEVJK1dVd2tJd1BkUkgwZ3FJT05sR0hpMzZYYlJlQW54TjZucjc0cTU3cThCd2szcnVQWWY3cCtJaGNLUFBYLzJxU2NZeGF6N25iclhTYmxzMXFZaU1TNGFVenRUY253MjVSUWh4SzJRY0lnbnd4NENrdUZONzB2Y2lBcVJnTUJJR2FZdklCQWt4S2NnNytpa0lEU2tRa2hCQUxva2hHYXRGNHBHUklCUDF4UHB4aGQrTHZTRGRBbEpmbU50OW95TkhVUmpsM1JqMjVaWUljVG5pWVJEUEZrbUJBUzJTa2phaVBxNiszS1o3d01CMHUyNERvWXBTTDE1Yjk0MXJ4cVhZbVowSDh6MWl5QWZReEVCS0dZdm9uU2pNbndJVjdtRUJMNGs0WXZvY1NNYVJURnp2NUJ0RFJsTk1RNUpOOUl6T0lRUW53Y1NEdkhac0tlQUpHV1lONzB2WFFKQ0p5QkFyZ3l6UFFYSmxXSnd2OFkzcFFZUnFldktGRitGRC9oT1JQS2xsUmM5R1hoZlYvSHZ5cGNmdXNjVThBdDV0b3ZHN2RPTjlOQXZJY1RUUk1JaFBsdjJGSkNFTkFGSitrRGV2emZmQS8xbTFMZnVQNGE3WVhvcENIUVNNbWhLTFhGOHVPSmxzek9tVFVSK0JYV1FqK1lEMzFidmU0SVJwTVRXbHdiU0RvNThxcEdqTHlDZGJLU2lNY1l1NlVaNnlxZ1E0bWtnNFJDaVlVOEJTUklRR0c5RUJTNjloUHpYeUc2WWZncmlqK3l1dmw2YllyRnc5dWJHek9iK2c3cmUvTk84U3hPTmQxZUFudzhOcXZueURCVGxkU01rL2NURDgyL0RvU3piUldOV2xvNmZjalBKT3FVYlFudzJTRGlFR09ISUFrTGJCd0xERkdTMU1nQnhMMGo1RnRjVGtHcHRDaFl1N2dmeEl0SWxJY3h3WFgvSVN3UHc2dy96NXZuZE9TSXpTaGNuSTU0MDkvRFlKRDJaZXR1WWhUV0piSXdsR3o4bTE3bDBZNWY3cUFnaEhqNFNEaUYyNUdnQzBqNTgzVjNIQWdLdGhQUUVwUFN2Vi8zUVNRaDBTVWk0N21URTMwenRwMGhHNExmOHF2Ynp2SU9TdVl0RkJJQmZkUS9ycWpKVDVaSlpPcmVqYUlEU0RTRStOeVFjUWh6SThRVWtITWtPbzgybzlGTVFnUEl0RHY1QVZZWHpQWmFPMzBQVnpJZXlqSi83bVgvTmNYVjBhdXB2WnI5MUFIVWtJb0dza01RRU9UbEFOSTZaYnVUdUZDdUVlRmhJT0lRNEVyY1hrTys2c1RkaDdIVTNQWktDK0l1LzhXcUphdzhuK3p1VWhKSU14SDBoMEgyUTI1c2I4eE0vK3lXcGlJUUgxTUFWV1lLY2JIa25tVW96WnZQVGxFZHl0NllYUXR3ZkVnNGhUc1R0QlFTR0tValVqQXF0aEFBTStrR0FaWE5BV1ZoZXZ2MkQ2NUlRZ0tVTEVnTDlOS1FOTGVaelYyLytPWkp5L0RZU2s5MEl5VVpmTlA3Ulc1TkxObUFrM1RqZlBkMDRDMDI3UW9nN1I4SWh4QjJ4cDRCQVhrSU12T25HM2tBL0JhSGRFVFBvQndIZ2J5empKSVFSQ1ltMjZVSmFsb241ZWJBWjVXdGcweVFsODNsWFd2a0JnUC9EckxkNk45R0FpVWJSdnd5SGxzdm5PNHZGNWVYbHptdUZFSWRqZEFORElSNEdpWUJrbCt3K0hxY2dFRktRbUZkdE9jWVRTMGkvSjZRanZvRmRqcnlVVERNbEdUQzlJNlU4UDNkNTRjaVhVM0lKUjA0NHJxNnVYSFRQNFk1WHJ4eC8vR051QnJhYzNhSzd4WXJQSFNVY1Fqd1F0aVFnY0tzVUJOSWtwRTFBR3I0NU8zT3JxQ2NrVFVJQXlySkpRMzRnUy9WMWZ2d1F0bTE5SFplTmZMcHg0bkxLS1Y5YmlDZUJFZzRoSGhFSHBpQWp6MGxTRU1nbUlTUkp5Q3ZTTkFUZ0R3RFpWQVNBMzJkSEQ2THQyUmlWalQ4UEo5ZzkzUUI0YzNXVmYyUDg3cnV4TjB5bEcwSnNRUW1IRUkrSUExS1FYQUxTakc5UFFYS2t5VWpvRGZHc3lmTDNQd3lHc25MeSs4RUlrRFNHN3BGcUJQWkpONjdHWk9QVks4ZDMyVUtMRUdJSEpCeENQR0lPRUJDNGpZUmtMdk1Da3ZLMzlsRjdma2o1aCtIUDhQZmtPdmFVcmFLeGU3SUJSMjBXUGRickNQR2tVVWxGaUNmTURpV1l3Tmk2N2VVWW1DekpmTk44WFNXbG1YSCtjOXVDaFAxRUk2Qm1VU0h1RmlVY1FqeGhka2hBMnFXWnNkMlNFSUEzMytKUFNXMCt4RjkzVTM4Q0x5S0pBSHhEbnRYcXp6dUtTWjl0Z2hFNFlySUJTamVFMkJrbEhFSjg1dXlSZ3NEZVNVZ1FrUkZlUjQrYmRHUk1SRzdMTnRGUXVpSEVhVkhDSWNSbnpoNHBDT1NiVW5QakRkRng3UzNmZGcvZnhESnk2WGpkSkNJcFVhbG1IeUhaSmhrdzBTUzZuVU9mSjhSbmlSSU9JY1FrZXlZZ01KNkN4RVJySWdIcDhkYU03WlNKZWIxdHdRaXBhQXpTalZldi9MelNEU0dPZ29SRENMRTNwNWVRSE4vMnZ2QTJYNnA1blJ1TU9JSm93QTdwaG9SRGlENFNEaUhFclRsQVFHQ3JZTFJNclBzMiszQmlWY3VCb2dHU0RTRU9Rc0loaERnSko1YVFtT1E1RStZUkU1WWRVVFJBc2lIRUdCSU9JY1NkY1ljU2NreDJmcE9VYkFneGpvUkRDSEZ2SENnZ2dkczhkeHQ3dlRGS05JVFlqb1JEQ1BHZ3VLV0VCQTU1amIzZkRDVWFRdXlPaEVNSThlQTVrb1FjQlVtR0VJY2g0UkJDUEZydVNrUWtHVUxjSGdtSEVPTEpjVnNSa1dBSWNYd2tIRUlJSVlRNE9jVzJCVUlJSVlRUXQwWENJWVFRUW9pVEkrRVFRZ2doeE1tUmNBZ2hoQkRpNUVnNGhCQkNDSEZ5SkJ4Q0NDR0VPRGtTRGlHRUVFS2NIQW1IRUVJSUlVNk9oRU1JSVlRUUowZkNJWVFRUW9pVEkrRVFRZ2doeE1tUmNBZ2hoQkRpNUVnNGhCQkNDSEZ5SkJ4Q0NDR0VPRGtTRGlHRUVFS2NIQW1IRUVJSUlVNk9oRU1JSVlRUUowZkNJWVFRUW9pVEkrRVFRZ2doeE1tUmNBZ2hoQkRpNUVnNGhCQkNDSEZ5SkJ4Q0NDR0VPRGtTRGlHRUVFS2NIQW1IRUVJSUlVNk9oRU1JSVlRUUowZkNJWVFRUW9pVEkrRVFRZ2doeE1tUmNBZ2hoQkRpNUVnNGhCQkNDSEZ5SkJ4Q0NDR0VPRGtTRGlHRUVFS2NIQW1IRUVJSUlVN08vd2RCTFJKM2dMSkpOd0FBQUFCSlJVNUVya0pnZ2c9PSIgaWQ9ImUiIHdpZHRoPSI1NDAiIGhlaWdodD0iMTUwIiBwcmVzZXJ2ZUFzcGVjdFJhdGlvPSJub25lIi8+PC9kZWZzPjwvc3ZnPg==",alt:"DocumentIcon"}),i("div",{class:"Paragraphs"},i("p",{class:"KycThanks"},a("kycThanks",this.lang,{values:{currency:this.currency}})),i("p",{class:"Kyc2",innerHTML:a("kyc2",this.lang,{values:{currency:this.currency,amount:this.regularDepositLimitAmount}})}),i("div",{class:"ContainerOptions"},["BankLogin","UploadDocuments"].map((n=>this.renderOption(n))))));default:return i("div",{class:"ValidatorContainer"},i("div",{class:"Paragraphs"},i("div",{class:"IconContainer"},i("img",{src:"data:image/svg+xml;base64,PHN2ZyB4bWxucz0iaHR0cDovL3d3dy53My5vcmcvMjAwMC9zdmciIHhtbDpzcGFjZT0icHJlc2VydmUiIGZpbGwtcnVsZT0iZXZlbm9kZCIgY2xpcC1ydWxlPSJldmVub2RkIiBzdHlsZT0ic2hhcGUtcmVuZGVyaW5nOmdlb21ldHJpY1ByZWNpc2lvbjt0ZXh0LXJlbmRlcmluZzpnZW9tZXRyaWNQcmVjaXNpb247aW1hZ2UtcmVuZGVyaW5nOm9wdGltaXplUXVhbGl0eSIgdmlld0JveD0iMCAwIDkwIDY5Ij48cGF0aCBkPSJtMCAzOCAxMC0xMyAyNiAyMkw3OCAwbDEyIDExLTUzIDU4eiIgc3R5bGU9ImZpbGw6IzAwMDtmaWxsLXJ1bGU6bm9uemVybyIvPjwvc3ZnPg==",alt:"SuccessIcon"})),i("p",{class:"ParagraphStep3"},a("kycSuccess",this.lang,{values:{currency:this.currency}})),i("p",{class:"ParagraphStep3"},a("kyc3",this.lang,{values:{currency:this.currency}})),i("div",{class:"ContainerButtons"},i("button",{class:"SecondButton",onClick:()=>this.handleClick("Close")},a("Close",this.lang,{values:{currency:this.currency}})))))}}renderPredefinedButtons(){return this.predefinedAmounts.map((n=>i("button",{class:this.selectedPredefinedAmount===n?"Active":"",onClick:()=>this.handleAmountClick(n),disabled:this.hasLugasError},n)))}goToPrivacyPolicy(){window.postMessage({type:"GoToPrivacyPolicy"})}renderValidator(){return i("div",{class:"ValidatorContainer"},this.errorMessageOnSubmit&&i("div",{class:"ErrorContainer"},!this.hasLugasError&&i("span",{class:"DismissError",onClick:()=>this.errorMessageOnSubmit=""},i("svg",{xmlns:"http://www.w3.org/2000/svg",width:"9",height:"9",viewBox:"0 0 9 9",fill:"none"},i("path",{d:"M8.18659 0.14708C8.37063 0.33182 8.38174 0.62421 8.21888 0.821452L8.18659 0.857219L4.87619 4.16727L8.18659 7.47732C8.27743 7.56861 8.32973 7.69132 8.33266 7.82007C8.3356 7.94883 8.28895 8.0738 8.20235 8.16913C8.11576 8.26446 7.99584 8.32288 7.86739 8.3323C7.73895 8.34172 7.61179 8.30143 7.51221 8.21975L7.47645 8.18746L4.1664 4.87706L0.856348 8.18746C0.765058 8.27831 0.64235 8.3306 0.513592 8.33354C0.384834 8.33647 0.25987 8.28982 0.164536 8.20322C0.0692018 8.11663 0.0107856 7.99671 0.00136402 7.86827C-0.00805761 7.73982 0.0322357 7.61266 0.113914 7.51308L0.146209 7.47732L3.4566 4.16727L0.146209 0.857219C0.0553613 0.765928 0.00306475 0.64322 0.000130477 0.514462C-0.0028038 0.385704 0.0438486 0.260741 0.130443 0.165407C0.217038 0.0700723 0.336953 0.0116562 0.4654 0.00223455C0.593846 -0.00718708 0.721002 0.0331062 0.820581 0.114785L0.856348 0.14708L4.1664 3.45748L7.47645 0.14708C7.52307 0.10045 7.57843 0.0634608 7.63935 0.0382248C7.70027 0.0129888 7.76557 0 7.83152 0C7.89746 0 7.96276 0.0129888 8.02368 0.0382248C8.0846 0.0634608 8.13996 0.10045 8.18659 0.14708Z",fill:"#111111"}))),i("p",{class:"ErrorParagraph"},i("span",{class:"ErrorIcon"},i("svg",{xmlns:"http://www.w3.org/2000/svg",width:"9",height:"9",viewBox:"0 0 9 9"},i("path",{d:"M8.18659 0.14708C8.37063 0.33182 8.38174 0.62421 8.21888 0.821452L8.18659 0.857219L4.87619 4.16727L8.18659 7.47732C8.27743 7.56861 8.32973 7.69132 8.33266 7.82007C8.3356 7.94883 8.28895 8.0738 8.20235 8.16913C8.11576 8.26446 7.99584 8.32288 7.86739 8.3323C7.73895 8.34172 7.61179 8.30143 7.51221 8.21975L7.47645 8.18746L4.1664 4.87706L0.856348 8.18746C0.765058 8.27831 0.64235 8.3306 0.513592 8.33354C0.384834 8.33647 0.25987 8.28982 0.164536 8.20322C0.0692018 8.11663 0.0107856 7.99671 0.00136402 7.86827C-0.00805761 7.73982 0.0322357 7.61266 0.113914 7.51308L0.146209 7.47732L3.4566 4.16727L0.146209 0.857219C0.0553613 0.765928 0.00306475 0.64322 0.000130477 0.514462C-0.0028038 0.385704 0.0438486 0.260741 0.130443 0.165407C0.217038 0.0700723 0.336953 0.0116562 0.4654 0.00223455C0.593846 -0.00718708 0.721002 0.0331062 0.820581 0.114785L0.856348 0.14708L4.1664 3.45748L7.47645 0.14708C7.52307 0.10045 7.57843 0.0634608 7.63935 0.0382248C7.70027 0.0129888 7.76557 0 7.83152 0C7.89746 0 7.96276 0.0129888 8.02368 0.0382248C8.0846 0.0634608 8.13996 0.10045 8.18659 0.14708Z"}))),i("div",{innerHTML:this.errorMessageOnSubmit}))),i("div",{class:"Paragraphs"},i("p",null,a("LugasInfoBox",this.lang))),i("div",{class:"LimitAmountWrapper"},this.isSubmitted&&i("slot",{name:"spinner"})&&i("div",{class:"LoadingWrapper"},i("svg",{class:"spinner",viewBox:"0 0 50 50"},i("circle",{class:"path",cx:"25",cy:"25",r:"20",fill:"none","stroke-width":"5"}))),i("p",{class:"ChooseLimitLabel"},a("ChooseLimit",this.lang)),i("div",{class:"PredefinedAmounts"},i("button",{class:"Other"===this.selectedPredefinedAmount?"Active":"",onClick:()=>this.handleAmountClick("Other")},a("ButtonCustomValue",this.lang)),this.renderPredefinedButtons(),i("button",{class:"Max"===this.selectedPredefinedAmount?"Active":"",onClick:()=>this.handleAmountClick("Max")},a("ButtonMax",this.lang))),this.showCustomAmount&&i("form",{onSubmit:n=>this.handleSubmit(n)},this.showCustomAmount&&i("div",null,i("input",{class:"CustomAmountInput "+(this.errorMessageOnInput?"InvalidInput":""),type:"number",value:"Max"===this.selectedPredefinedAmount?this.maxAmount:null,step:.01,placeholder:"0.00",disabled:this.hasLugasError||"Max"===this.selectedPredefinedAmount,onInput:n=>this.handleValidatorInputChange(n)}),this.errorMessageOnInput&&i("p",{class:"InvalidParagraph"},this.errorMessageOnInput)),this.selectedPredefinedAmount&&i("button",{class:"PrimaryButton SetLimitBtn",type:"submit",disabled:this.hasLugasError||this.isSubmitted||!Boolean(this.newAmount)||Boolean(this.errorMessageOnInput)},a("LugasSetLimitDialogButtonSetLimit",this.lang,{values:{currency:this.displayedCurrency,amount:Number.parseFloat(this.newAmount||"0").toFixed(2)}})))))}renderTitle(){switch(this.kycStep){case 2:case 3:return a("LugasSetLimitDialogTitle2",this.lang);default:return a("LugasSetLimitDialogTitle",this.lang)}}render(){const n=this.renderKYC(this.kycStep),t=this.renderValidator();return this.isLoading?i("div",null,i("p",null,a("loading",this.lang,{values:{currency:this.currency}}))):this.errorMessageOnInitialization?i("div",null,i("p",null,this.errorMessageOnInitialization)):i("div",{class:"ModalContainer",ref:n=>this.stylingContainer=n,"data-current-step":this.kycStep},i("div",{class:"Container"},i("div",{class:"ModalHeader"},i("h2",null,this.renderTitle())),i("div",{class:"ModalBody"},this.hasValidation?t:n,this.hasValidation&&i("div",{class:"ModalFooter"},i("hr",null),i("div",{class:"Paragraphs"},this.showExistingLimit?i("p",{class:"ExistingLimit"},a("LugasSetLimitDialogExistingLimit.text",this.lang),i("span",{class:this.isUseExistingLimitOptionActive?"Link":"Link Inactive",onClick:()=>this.postPlayerSituation(this.amount,!0)},a("LugasSetLimitDialogExistingLimit.link",this.lang))):null,i("p",{class:"PrivacyNote"},a("LugasSetLimitDialogPrivacyNote.text",this.lang),i("span",{class:"Link",onClick:this.goToPrivacyPolicy},a("LugasSetLimitDialogPrivacyNote.link",this.lang))))))))}static get watchers(){return{translationUrl:["handleNewTranslations"],clientStyling:["handleClientStylingChange"],clientStylingUrl:["handleClientStylingUrlChange"]}}};s.style='@import url("https://fonts.googleapis.com/css2?family=Roboto:wght@100&display=swap");\n:host {\n font-family: "Roboto", sans-serif;\n}\n\n.ModalContainer {\n position: fixed;\n top: 0;\n left: 0;\n width: 100vw;\n height: 100vh;\n background-color: var(--emw--color-black-transparency-50, rgba(0, 0, 0, 0.5));\n display: flex;\n justify-content: center;\n align-items: center;\n font-size: var(--emw--font-size-small, 12px);\n container-type: inline-size;\n}\n.ModalContainer hr {\n border: 1px solid var(--emw--color-black-transparency-10, rgba(0, 0, 0, 0.1));\n margin: 10px 0px;\n}\n.ModalContainer p {\n margin: 0;\n}\n.ModalContainer button {\n width: 100%;\n border: 1px solid var(--emw--color-gray-100, #E8E9EB);\n padding: 10px 0;\n cursor: pointer;\n width: 100%;\n border-radius: var(--emw--border-radius-small, 4px);\n}\n.ModalContainer button.PrimaryButton {\n background: var(--emw--color-primary, #6BB816);\n border: none;\n font-weight: 500;\n}\n.ModalContainer button.PrimaryButton:not(:disabled) {\n color: var(--emw--color-white, #FFF);\n}\n.ModalContainer button.PrimaryButton:disabled {\n cursor: default;\n}\n.ModalContainer .Container {\n position: fixed;\n top: 30vh;\n width: 320px;\n background: var(--emw--color-white, #FFF);\n display: flex;\n flex-direction: column;\n justify-content: space-between;\n border-radius: 4px;\n transform: scale(1.1);\n}\n.ModalContainer .ModalHeader {\n display: flex;\n justify-content: space-between;\n align-items: center;\n background-color: var(--emw--color-gray-50, #F7F8FA);\n padding: 12px;\n border-top-left-radius: 4px;\n border-top-right-radius: 4px;\n}\n.ModalContainer .ModalHeader h2 {\n font-weight: bold;\n font-size: var(--emw--font-size-small, 12px);\n margin: 0;\n}\n.ModalContainer .ModalBody {\n background: var(--emw--color-white, #FFF);\n padding: 12px;\n container-type: inline-size;\n border-radius: 4px;\n}\n.ModalContainer .ModalBody .ErrorContainer {\n display: flex;\n align-items: center;\n color: var(--emw--color-red-100, #E10014);\n border-bottom: 1px solid var(--emw--color-gray-100, #E8E9EB);\n margin: -12px;\n padding: 12px;\n margin-bottom: 12px;\n font-weight: bold;\n position: relative;\n background: linear-gradient(180deg, var(--emw--color-gray-100, #E8E9EB) 0%, rgba(255, 255, 255, 0.47) 30%);\n}\n.ModalContainer .ModalBody .DismissError {\n position: absolute;\n right: 12px;\n cursor: pointer;\n}\n.ModalContainer .ModalBody .ErrorParagraph {\n display: flex;\n align-items: center;\n}\n.ModalContainer .ModalBody .ErrorIcon {\n background: linear-gradient(180deg, var(--emw--color-red-100, #E10014) 0%, var(--emw--color-red-150, #D60080) 100%);\n text-align: center;\n width: 16px;\n height: 16px;\n border-radius: 50%;\n display: inline-flex;\n justify-content: center;\n align-items: center;\n margin-right: 6px;\n flex-shrink: 0;\n}\n.ModalContainer .ModalBody .ErrorIcon svg {\n width: 6px;\n height: 6px;\n}\n.ModalContainer .ModalBody .ErrorIcon svg path {\n fill: var(--emw--color-white, #FFF);\n}\n.ModalContainer .ModalBody .ChooseLimitLabel {\n text-transform: uppercase;\n}\n.ModalContainer .ModalBody .PredefinedAmounts {\n display: flex;\n justify-content: space-between;\n}\n.ModalContainer .ModalBody .PredefinedAmounts button {\n background: none;\n margin: -1px 0 0 -1px;\n color: var(--emw--color-gray-150, #808080);\n border-radius: 0;\n}\n.ModalContainer .ModalBody .PredefinedAmounts button.Active {\n font-weight: bold;\n background: var(--emw--color-gray-50, #F7F8FA);\n color: var(--emw--color-gray-200, #323233);\n}\n.ModalContainer .ModalBody .PredefinedAmounts button:first-child {\n border-radius: 4px 0 0 4px;\n}\n.ModalContainer .ModalBody .PredefinedAmounts button:last-child {\n border-radius: 0 4px 4px 0;\n}\n.ModalContainer .ModalBody .CustomAmountInput {\n width: 100%;\n padding: 10px;\n border: 1px solid var(--emw--color-gray-100, #E8E9EB);\n border-radius: 4px;\n box-sizing: border-box;\n margin-bottom: 6px;\n color: var(--emw--color-gray-200, #323233);\n font-weight: bold;\n}\n.ModalContainer .ModalBody .CustomAmountInput.InvalidInput {\n border: 1px solid var(--emw--color-red, #FF0000);\n}\n.ModalContainer .ModalBody .InvalidParagraph {\n font-size: var(--emw--font-size-small, 12px);\n color: var(--emw--color-red, #FF0000);\n}\n.ModalContainer .ModalBody .SetLimitBtn {\n margin-top: 10px;\n border-radius: 4px;\n}\n.ModalContainer .ValidatorContainer {\n display: flex;\n flex-direction: column;\n justify-content: space-between;\n}\n.ModalContainer .Paragraphs:not(:last-child) {\n margin-bottom: 20px;\n}\n.ModalContainer .Paragraphs .KycThanks {\n font-weight: 500;\n text-align: center;\n padding-bottom: 12px;\n}\n.ModalContainer .Paragraphs .Kyc2 {\n color: var(--emw--color-gray-150, #666666);\n text-align: center;\n}\n.ModalContainer .LimitAmountWrapper {\n display: flex;\n flex-direction: column;\n gap: 10px;\n position: relative;\n}\n\n.ModalFooter {\n padding-top: 12px;\n margin: 5px 0px;\n}\n\n.Link {\n color: inherit;\n text-decoration: underline;\n cursor: pointer;\n}\n.Link.Inactive {\n cursor: default;\n color: var(--emw--color-gray-150, #808080);\n}\n\n.ContainerButtons {\n display: flex;\n justify-content: space-around;\n gap: 10px;\n padding-top: 5px;\n}\n.ContainerButtons .FirstButton {\n background-color: var(--emw--color-white, #FFF);\n font-weight: bold;\n color: var(--emw--button-color, #002554);\n font-size: var(--emw--font-size-small, 10px);\n border: 2.5px solid var(--emw--button-border-color, #DEE2E6);\n width: 100%;\n cursor: pointer;\n}\n.ContainerButtons .SecondButton {\n background-color: var(--emw--color-primary, #6BB816);\n border: none;\n cursor: pointer;\n font-weight: bold;\n font-size: var(--emw--font-size-small, 10px);\n color: var(--emw--color-white, #FFF);\n width: 100%;\n}\n.ContainerButtons button {\n width: 240px;\n height: 30px;\n}\n\n.ContainerOptions {\n padding-top: 10px;\n}\n.ContainerOptions > button {\n border-radius: 0;\n border-left: 0;\n border-right: 0;\n border-bottom: 0;\n border-top: 1px solid var(--emw--color-white, #E8E9EB);\n background-color: var(--emw--color-white, #FFFFFF);\n display: grid;\n text-align: left;\n font-size: 12px;\n grid-template-rows: 1fr 1fr;\n grid-template-columns: 1fr 20px;\n color: var(--emw--color-black, #111111);\n}\n.ContainerOptions > button:last-child {\n padding-bottom: 0;\n}\n.ContainerOptions .Option {\n font-family: "Roboto", sans-serif;\n grid-column: 1/2;\n grid-row: 1/2;\n font-weight: 400;\n}\n.ContainerOptions .OptionSubTitle {\n font-family: "Roboto Condensed", sans-serif;\n font-weight: 300;\n grid-column: 1/2;\n grid-row: 2/3;\n}\n.ContainerOptions .ArrowIcon {\n grid-column: 2/3;\n grid-row: 1/3;\n margin: auto;\n}\n\ninput {\n /* Firefox */\n -moz-appearance: textfield;\n /* Chrome, Safari, Edge, Opera */\n}\ninput::-webkit-outer-spin-button, input::-webkit-inner-spin-button {\n -webkit-appearance: none;\n margin: 0;\n}\n\n@container (max-width: 1300px) {\n .ModalContainer .Container {\n width: 50%;\n }\n}\n@container (max-width: 800px) {\n .ModalContainer .Container {\n width: 70%;\n }\n}\n.LoadingWrapper {\n width: 100%;\n height: 100%;\n background: var(--emw--color-white-transparency-80, rgba(255, 255, 255, 0.8));\n position: absolute;\n display: flex;\n justify-content: center;\n align-items: center;\n}\n\n.spinner {\n animation: rotate 2s linear infinite;\n z-index: 2;\n width: 30px;\n height: 30px;\n}\n.spinner .path {\n stroke: var(--emw--color-primary, #6BB816);\n stroke-linecap: round;\n animation: dash 1.5s ease-in-out infinite;\n}\n\n.DocumentIcon {\n padding: 20px 48px 0 86px;\n}\n\n@keyframes rotate {\n 100% {\n transform: rotate(360deg);\n }\n}\n@keyframes dash {\n 0% {\n stroke-dasharray: 1, 150;\n stroke-dashoffset: 0;\n }\n 50% {\n stroke-dasharray: 90, 150;\n stroke-dashoffset: -35;\n }\n 100% {\n stroke-dasharray: 90, 150;\n stroke-dashoffset: -124;\n }\n}';export{s as player_lugas_limit}
1
+ import{r as n,c as t,h as i}from"./index-43ec4fd3.js";let e={en:{LugasSetLimitDialogTitle:"Monthly Central Deposit Limit",LugasSetLimitDialogTitle2:"Responsible Gaming",LugasInfoBox:"The central limit is your monthly deposit limit for all licensed websites in Germany. Note that your limit and deposit details may vary if changed on other sites.",ChooseLimit:"Choose Limit",ButtonCustomValue:"Other",ButtonMax:"Max",LugasSetLimitDialogButtonSetLimit:"SET LIMIT {amount} {currency}",invalidInputMessageLimit:"The value entered must be between {minValue} {currency} and {maxValue} {currency}.",LugasSetLimitDialogPrivacyNote:{text:"The selected limit is connected to processing player's personal data due to our legal obligations. In some cases setting a limit is a consent to processing player's personal data. For details see our ",link:"Privacy Policy"},LugasSetLimitDialogExistingLimit:{text:"If you would like to use your existing limit ",link:"click here"},LugasNotSet:"No deposit limit set. Please enter a new limit.",loading:"Loading, please wait ...",error:"It was an error while trying to fetch the data",kyc1:"All deposit limit changes must be reported to LUGAS in accordance with regulatory requirements. Please note that decreases in the limit will take effect immediately, while increases will only come into effect after 8 days at the latest.",kyc2:"We could not apply the desired LUGAS limit. To increase the limit, one of the following methods can be used. In the meantime, the following value will be set for the limit: {amount} {currency}",kyc3:"We have transmitted your desired limit to Lugas Please be aware that the limit will only come into effect after 8 days at the latest.",kycThanks:"THANK YOU!",kycSuccess:"Successful",kycSure:"Are you sure?",setNewLimit:"SET NEW LIMIT",keepExistingLimit:"KEEP EXISTING LIMIT",Close:"CLOSE",UploadDocuments:"Upload documents",UploadDocumentsSubTitle:"Last payslip as well as a current bank statement",BankLogin:"Online bank login",BankLoginSubTitle:"Log into your bank account to verify your details",LugasF1002Error:"We were unable to set your cross-provider deposit limit at LUGAS due to a technical error. Please contact our support team and provide error code F1002. We'll be happy to assist you in resolving this issue."},de:{LugasSetLimitDialogTitle:"Monatliches zentrales Einzahlungslimit",LugasSetLimitDialogTitle2:"Spielerschutz",LugasInfoBox:"Das zentrale Limit ist Ihr monatliches Einzahlungslimit für alle lizenzierten Websites in Deutschland. Beachten Sie, dass sich Ihr Limit und der verbleibende Betrag ändern können, wenn Sie auf anderen Websites Einzahlungen vornehmen oder Ihr Limit anpassen.",ChooseLimit:"Choose Limit",ButtonCustomValue:"Eigener",ButtonMax:"Max",LugasSetLimitDialogButtonSetLimit:"LIMIT SETZEN {amount} {currency}",invalidInputMessageLimit:"Der eingegebene Wert muss zwischen {minValue} und {maxValue} {currency} liegen.",LugasSetLimitDialogPrivacyNote:{text:"Das gewählte Limit steht wegen unserer rechtlichen Verpflichtungen in Verbindung mit der Verarbeitung persönlicher Daten der Spieler. In manchen Fällen gilt das Setzen eines Limits als Einwilligung zur Verarbeitung persönlicher Daten des Spielers. Mehr Infos unter ",link:"Erklärung zum Datenschutz"},LugasSetLimitDialogExistingLimit:{text:"Wenn Sie Ihr bestehendes Limit nutzen möchten, ",link:"klicken Sie hier"},LugasNotSet:"Kein Einzahlungslimit festgelegt. Bitte geben Sie ein neues Limit ein.",loading:"Lade, bitte warten ...",error:"Beim Laden der Daten ist ein Fehler aufgetreten.",kyc1:"Alle Änderungen des Einzahlungslimits müssen gemäß den gesetzlichen Anforderungen an LUGAS gemeldet werden. Bitte beachten Sie, dass eine Senkung des Limits sofort wirksam wird, während eine Erhöhung spätestens nach 8 Tagen in Kraft tritt.",kyc2:"Das gewünschte LUGAS-Limit konnte nicht gesetzt werden. Um das Limit zu erhöhen, kann eine der folgenden Methoden verwendet werden. In der Zwischenzeit wird für das Limit folgender Wert eingemeldet: {amount} {currency}",kyc3:"Wir haben Ihr gewünschtes Limit an LUGAS übermittelt. Bitte beachten Sie, dass das Limit spätestens nach 8 Tagen in Kraft tritt.",kycThanks:"DANKE SCHÖN!",kycSuccess:"Successful",kycSure:"Sind Sie sicher?",setNewLimit:"NEUES LIMIT FESTLEGEN",keepExistingLimit:"AKTUELLES LIMIT BEIBEHALTEN",Close:"SCHLIESSEN",UploadDocuments:"Dokumente hochladen",UploadDocumentsSubTitle:"Letzte Gehaltsabrechnung sowie ein aktueller Kontoauszug",BankLogin:"Online-Banking-Login",BankLoginSubTitle:"Melden Sie sich bei Ihrem Bankkonto an, um Ihre Daten zu überprüfen"}};const l=n=>new Promise((t=>{fetch(n).then((n=>n.json())).then((n=>{Object.keys(n).forEach((t=>{e[t]||(e[t]={});for(let i in n[t])e[t][i]=n[t][i]})),t(!0)}))})),a=(n,t,i)=>{let l=(a=e[t||"de"],n.split(".").reduce(((n,t)=>n&&void 0!==n[t]?n[t]:null),a));var a;if(null===l)return n;if(void 0!==i)for(const[n,t]of Object.entries(i.values)){const i=new RegExp(`{${n}}`,"g");l=l.replace(i,t)}return l};function o(n,t){if(n){const i=document.createElement("style");i.innerHTML=t,n.appendChild(i)}}function d(n,t){const i=new URL(t);fetch(i.href).then((n=>n.text())).then((t=>{const i=document.createElement("style");i.innerHTML=t,n&&n.appendChild(i)})).catch((n=>{console.error("There was an error while trying to load client styling from URL",n)}))}const s=class{constructor(i){n(this,i),this.uploadDocuments=t(this,"uploadDocuments",7),this.bankLogin=t(this,"bankLogin",7),this.closePopup=t(this,"closePopup",7),this.predefinedAmounts=[],this.displayedCurrency="",this.handleClick=n=>{switch(n){case"UploadDocuments":this.uploadDocuments.emit(),window.postMessage({type:"uploadDocuments"},window.location.href);break;case"BankLogin":this.bankLogin.emit(),window.postMessage({type:"bankLogin"},window.location.href);break;case"Close":this.closePopup.emit(),window.postMessage({type:"closePopup"},window.location.href)}},this.userId="",this.session="",this.endpoint="",this.currency="EUR",this.flow="",this.amount="",this.lang=void 0,this.clientStyling="",this.clientStylingUrl="",this.mbSource=void 0,this.translationUrl="",this.showExistingLimit=!0,this.buttonTextStrategy="",this.hasValidation=!0,this.kycStep=void 0,this.isLoading=!1,this.regularDepositLimitAmount="",this.isSubmitted=!1,this.isUseExistingLimitOptionActive=!0,this.selectedPredefinedAmount=void 0,this.errorMessageOnInitialization="",this.errorMessageOnSubmit="",this.errorMessageOnInput="",this.hasLugasError=!1,this.showCustomAmount=!1,this.newAmount=""}handleNewTranslations(){this.isLoading=!0,l(this.translationUrl).then((()=>{this.isLoading=!1}))}handleClientStylingChange(n,t){n!=t&&o(this.stylingContainer,this.clientStyling)}handleClientStylingUrlChange(n,t){n!=t&&this.clientStylingUrl&&d(this.stylingContainer,this.clientStylingUrl)}setScrollable(n){window.postMessage({type:n?"EnableScroll":"DisableScroll"},window.location.href)}async componentWillLoad(){this.translationUrl.length>2&&await l(this.translationUrl),await this.fetchDepositLimitConfig(),this.displayedCurrency="EUR"===this.currency?"€":this.currency}componentDidLoad(){this.stylingContainer&&(null!=window.emMessageBus?function(n,t){if(window.emMessageBus){const i=document.createElement("style");window.emMessageBus.subscribe(t,(t=>{i.innerHTML=t,n&&n.appendChild(i)}))}}(this.stylingContainer,`${this.mbSource}.Style`):(this.clientStyling&&o(this.stylingContainer,this.clientStyling),this.clientStylingUrl&&d(this.stylingContainer,this.clientStylingUrl)),this.setScrollable(!1))}disconnectedCallback(){this.stylingSubscription&&this.stylingSubscription.unsubscribe(),this.setScrollable(!0)}async fetchDepositLimitConfig(){this.isLoading=!0;try{const n=new URL("/api/v1/gm/legislation/config/month-deposit-limit/",this.endpoint),t=await fetch(n.href);if(!t.ok)throw new Error("Failed to load config");const i=await t.json();this.predefinedAmounts=i.preDefinedOptions,this.minAmount=i.minAmount,this.maxAmount=i.maxAmount}catch(n){this.errorMessageOnInitialization=a("error",this.lang),console.error(n)}finally{this.isLoading=!1}}async postPlayerSituation(n,t=!1,i=!1){if(t&&!this.isUseExistingLimitOptionActive)return;this.isSubmitted=!0,this.errorMessageOnSubmit="";const e=new URL(`v2/player/${this.userId}/limit/lugas/`,this.endpoint),l=Object.assign({softMigration:"1"===this.flow,keepLimit:t,roleLimitAmount:i?this.amount:0},n&&{amount:n}),a={method:"POST",headers:{"X-SessionId":this.session,"Content-Type":"application/json",Authorization:`Bearer ${this.session}`},body:JSON.stringify(l)};try{const n=await fetch(e.href,a);if(!n.ok){let t;try{t=await n.json()}catch(i){t={message:n.statusText}}throw Object.assign(Object.assign({},t),{status:n.status})}const t=await n.json();this.kycStep=t.popup,this.hasValidation=!1,this.regularDepositLimitAmount=t.regulatorDepositLimitAmount||""}catch(n){this.handleSubmissionError(n,t)}finally{this.isSubmitted=!1}}handleSubmissionError(n,t){var i,e;if(this.errorMessageOnSubmit=a("LugasNotSet",this.lang),t&&(this.isUseExistingLimitOptionActive=!1),3===n.errorCode&&"GmLegislation"===n.errorSourceName){const t=null!==(e=null===(i=n.thirdPartyResponse)||void 0===i?void 0:i.message)&&void 0!==e?e:"";t.includes("F1002")&&(this.errorMessageOnSubmit=a("LugasF1002Error",this.lang),this.hasLugasError=!0,this.isUseExistingLimitOptionActive=!1),console.error(n.error,t)}else console.error("Unexpected Error:",n)}handleAmountClick(n){switch(this.showCustomAmount=!1,this.errorMessageOnInput="",this.selectedPredefinedAmount=n,n){case"Other":this.newAmount="",this.showCustomAmount=!0;break;case"Max":this.newAmount=this.maxAmount.toString(),this.showCustomAmount=!0;break;default:this.newAmount=n,this.postPlayerSituation(this.newAmount,!1,!0)}}handleSubmit(n){n.preventDefault(),this.errorMessageOnInput||this.postPlayerSituation(this.newAmount,!1,!0)}handleValidatorInputChange(n){this.newAmount=n.target.value,this.isValidNumber=!isNaN(Number(this.newAmount)),this.isWithinRange=Number(this.newAmount)>=this.minAmount&&Number(this.newAmount)<=this.maxAmount,this.errorMessageOnInput=this.isWithinRange&&this.isValidNumber?"":a("invalidInputMessageLimit",this.lang,{values:{currency:this.displayedCurrency,minValue:this.minAmount,maxValue:this.maxAmount}});const t=this.newAmount.split(".");t.length>1&&(this.newAmount=`${t[0]}.${t[1].slice(0,2)}`,n.target.value=this.newAmount)}renderOption(n){return i("button",{onClick:()=>this.handleClick(n)},i("div",{class:"Option"},a(n,this.lang)),i("div",{class:"OptionSubTitle"},a(`${n}SubTitle`,this.lang)),i("img",{class:"ArrowIcon",src:"data:image/svg+xml;base64,PHN2ZyB4bWxucz0iaHR0cDovL3d3dy53My5vcmcvMjAwMC9zdmciIHdpZHRoPSI1IiBoZWlnaHQ9IjgiIGZpbGw9Im5vbmUiPjxwYXRoIGZpbGw9IiMwMDAiIGQ9Ik0wIDcuMDYgMy4wNTUgNCAwIC45NC45NCAwbDQuMDAxIDQtNCA0TDAgNy4wNloiIG9wYWNpdHk9Ii40Ii8+PC9zdmc+",alt:"ArrowIcon"}))}renderKYC(n){switch(n){case 0:return void this.handleClick("Close");case 1:return i("div",{class:"ValidatorContainer"},i("div",{class:"Paragraphs"},i("p",null,a("kycSure",this.lang,{values:{currency:this.currency}})),i("p",null,a("kyc1",this.lang,{values:{currency:this.currency}})),i("div",{class:"ContainerButtons"},i("button",{class:"FirstButton",onClick:()=>this.postPlayerSituation(this.newAmount,!1)},a("setNewLimit",this.lang,{values:{currency:this.currency}})),i("button",{class:"SecondButton",onClick:()=>this.postPlayerSituation(this.amount,!0)},a("keepExistingLimit",this.lang,{values:{currency:this.currency}})))));case 2:return i("div",{class:"ValidatorContainer"},i("img",{class:"DocumentIcon",src:"data:image/svg+xml;base64,PHN2ZyB4bWxucz0iaHR0cDovL3d3dy53My5vcmcvMjAwMC9zdmciIHhtbG5zOnhsaW5rPSJodHRwOi8vd3d3LnczLm9yZy8xOTk5L3hsaW5rIiB3aWR0aD0iMTUxIiBoZWlnaHQ9IjE0MCIgZmlsbD0ibm9uZSI+PHBhdGggZmlsbD0idXJsKCNhKSIgZD0iTTU1LjM2NCAxMTAuNzk5YzMwLjU3NyAwIDU1LjM2NS0yNC44MDMgNTUuMzY1LTU1LjRDMTEwLjcyOSAyNC44MDMgODUuOTQxIDAgNTUuMzY1IDAgMjQuNzg3IDAgMCAyNC44MDMgMCA1NS40YzAgMzAuNTk2IDI0Ljc4OCA1NS4zOTkgNTUuMzY0IDU1LjM5OVoiLz48cGF0aCBmaWxsPSJ1cmwoI2IpIiBkPSJNMjAuMTIyIDk4LjY0N0gyMDV2NTEuMzg3SDIwLjEyMnoiIG9wYWNpdHk9Ii40Ii8+PHBhdGggZmlsbD0iI2ZmZiIgZD0ibTQ2Ljc0OCAxOS42NC0zMy43MiA1MS44IDQ2LjUyOCAzMS42MTEgNDAuOTI2LTYxLjczTDY2Ljk3IDE3LjkwNmwtMjAuMjIyIDEuNzM1WiIvPjxwYXRoIGZpbGw9IiNEN0VEQjkiIGQ9Im01MC4yMTQgMjAuNzk3LTMzLjE3IDQ5Ljc3OSA0MS41NzkgMjguMDEgMzcuNjU4LTU2LjUzLTMyLjc3OC0yMi40MTUtMTMuMjg5IDEuMTU2WiIvPjxwYXRoIGZpbGw9InVybCgjYykiIGQ9Im00Ni43NDggMTkuNjQgMjAuNTExLTIuMDIzIDMzLjIyMyAyMy43MDQtNDAuOTIzIDYxLjc5My00Ni42MTItMzEuNzI5IDMzLjgtNTEuNzQ0WiIgb3BhY2l0eT0iLjEiLz48cGF0aCBmaWxsPSIjZmZmIiBkPSJNNTcuMDcgNjkuMDczYTEyLjg3IDEyLjg3IDAgMCAxLTEuNjA4LS4xMDIgMTIuNzEgMTIuNzEgMCAwIDEtOC41MDktNC44NTIgMTIuNzI2IDEyLjcyNiAwIDAgMS0yLjU4Ny05LjQ1MmMuODgzLTcuMDA1IDcuMjk2LTExLjk4OCAxNC4yOTUtMTEuMTAzIDcgLjg4MyAxMS45NzggNy4zIDExLjA5NiAxNC4zMDQtLjgxNCA2LjQ2NC02LjMzOCAxMS4yMDUtMTIuNjg3IDExLjIwNVptLS4wMTYtMjMuNTM2Yy01LjMyIDAtOS45NSAzLjk3Mi0xMC42MzIgOS4zOWExMC42NjMgMTAuNjYzIDAgMCAwIDIuMTY5IDcuOTIgMTAuNjUzIDEwLjY1MyAwIDAgMCA3LjEzIDQuMDY3YzUuODY2LjczOCAxMS4yNDEtMy40MzQgMTEuOTgtOS4zMDUuNzQtNS44Ny0zLjQzMi0xMS4yNDgtOS4yOTgtMTEuOTg3YTEwLjgyMiAxMC44MjIgMCAwIDAtMS4zNDktLjA4NVoiLz48cGF0aCBmaWxsPSIjZmZmIiBkPSJtNTYuMDg1IDUyLjI0Mi0xLjg2LTEuMjQ0LTMuNzMgNS41ODQgMS44NiAxLjI0NCAzLjczLTUuNTg0Wk01OS40OTUgNTQuNTI0bC0xLjg2LTEuMjQ1LTMuNzMgNS41ODQgMS44NiAxLjI0NCAzLjczLTUuNTgzWk02My4yMTUgNTcuMDEybC0xLjg2LTEuMjQ1LTMuNzMgNS41ODQgMS44NiAxLjI0NCAzLjczLTUuNTgzWk01NC41NzggNDkuMTc3bDEwLjg1IDcuMjU4LTIuNDAzLTguMzQtOC40NDcgMS4wODJaTTU5LjQyMyA2NC40MTZsLTEwLjg1LTcuMjU3LTEuMDM2IDEuNTUgMTAuODUgNy4yNTggMS4wMzYtMS41NVoiLz48cGF0aCBmaWxsPSJ1cmwoI2QpIiBkPSJtNDYuNzQ4IDE5LjY0IDI4Ljg5IDU5LjU1IDI1LjEzMy0zNy41OC0zMy44LTIzLjcwNC0yMC4yMjMgMS43MzVaIiBvcGFjaXR5PSIuMTUiLz48cGF0aCBmaWxsPSIjZmZmIiBkPSJtNTkuMDMgMjguNjU1IDguMDIyLTEwLjk2Mi0yMC4zNTcgMS44ODUgMTIuMzM1IDkuMDc3WiIvPjxkZWZzPjxsaW5lYXJHcmFkaWVudCBpZD0iYSIgeDE9Ijc0LjMwOCIgeDI9IjI0Ljg0NSIgeTE9IjEwNy40NiIgeTI9Ii0yOC4zNTMiIGdyYWRpZW50VW5pdHM9InVzZXJTcGFjZU9uVXNlIj48c3RvcCBvZmZzZXQ9Ii4yNzciIHN0b3AtY29sb3I9IiM3RUM1MUUiIHN0b3Atb3BhY2l0eT0iLjAxIi8+PHN0b3Agb2Zmc2V0PSIuNTQ4IiBzdG9wLWNvbG9yPSIjN0VDNTFFIiBzdG9wLW9wYWNpdHk9Ii4wNzUiLz48c3RvcCBvZmZzZXQ9Ii43ODIiIHN0b3AtY29sb3I9IiM3RUM1MUUiIHN0b3Atb3BhY2l0eT0iLjE1Ii8+PC9saW5lYXJHcmFkaWVudD48bGluZWFyR3JhZGllbnQgaWQ9ImMiIHgxPSI0OC44MzUiIHgyPSI2My42OTciIHkxPSIxMDEuMjM1IiB5Mj0iMTcuMDAxIiBncmFkaWVudFVuaXRzPSJ1c2VyU3BhY2VPblVzZSI+PHN0b3Agc3RvcC1jb2xvcj0iIzAwNTE4MCIvPjxzdG9wIG9mZnNldD0iLjI5NyIgc3RvcC1jb2xvcj0iIzAwNTE4MCIgc3RvcC1vcGFjaXR5PSIuNjU1Ii8+PHN0b3Agb2Zmc2V0PSIuNjAzIiBzdG9wLWNvbG9yPSIjMDA1MTgwIiBzdG9wLW9wYWNpdHk9Ii4zNTQiLz48c3RvcCBvZmZzZXQ9Ii44NDgiIHN0b3AtY29sb3I9IiMwMDUxODAiIHN0b3Atb3BhY2l0eT0iLjE2OCIvPjxzdG9wIG9mZnNldD0iMSIgc3RvcC1jb2xvcj0iIzAwNTE4MCIgc3RvcC1vcGFjaXR5PSIuMSIvPjwvbGluZWFyR3JhZGllbnQ+PGxpbmVhckdyYWRpZW50IGlkPSJkIiB4MT0iNzMuNzU5IiB4Mj0iNzMuNzU5IiB5MT0iMTcuOTA2IiB5Mj0iNzkuMTkiIGdyYWRpZW50VW5pdHM9InVzZXJTcGFjZU9uVXNlIj48c3RvcCBzdG9wLWNvbG9yPSIjMDA1MTgwIi8+PHN0b3Agb2Zmc2V0PSIuMDE0IiBzdG9wLWNvbG9yPSIjMDA1MTgwIiBzdG9wLW9wYWNpdHk9Ii45NzQiLz48c3RvcCBvZmZzZXQ9Ii4yNjkiIHN0b3AtY29sb3I9IiMwMDUxODAiIHN0b3Atb3BhY2l0eT0iLjU1OCIvPjxzdG9wIG9mZnNldD0iLjQ5IiBzdG9wLWNvbG9yPSIjMDA1MTgwIiBzdG9wLW9wYWNpdHk9Ii4yNTQiLz48c3RvcCBvZmZzZXQ9Ii42NjUiIHN0b3AtY29sb3I9IiMwMDUxODAiIHN0b3Atb3BhY2l0eT0iLjA2OCIvPjxzdG9wIG9mZnNldD0iLjc3NCIgc3RvcC1jb2xvcj0iIzAwNTE4MCIgc3RvcC1vcGFjaXR5PSIwIi8+PC9saW5lYXJHcmFkaWVudD48cGF0dGVybiBpZD0iYiIgd2lkdGg9IjEiIGhlaWdodD0iMSIgcGF0dGVybkNvbnRlbnRVbml0cz0ib2JqZWN0Qm91bmRpbmdCb3giPjx1c2UgeGxpbms6aHJlZj0iI2UiIHRyYW5zZm9ybT0ic2NhbGUoLjAwMTg1IC4wMDY2NykiLz48L3BhdHRlcm4+PGltYWdlIHhsaW5rOmhyZWY9ImRhdGE6aW1hZ2UvcG5nO2Jhc2U2NCxpVkJPUncwS0dnb0FBQUFOU1VoRVVnQUFBaHdBQUFDV0NBWUFBQUNWU2xIckFBQUFDWEJJV1hNQUFBc1NBQUFMRWdIUzNYNzhBQUFnQUVsRVFWUjRYdTJkeTVianhwbHVkNEFnbVpsVktWV1huTFoxVnZzc0Q5cVRycUZlb0Y1QzcrUDMwVXZVQzNnb1Q5d0RMeDh2cTlVbDJhV3VTNUpKSU9JTUFnRUVBZ0h3a21UZTZ0dHIyVWxFQkprWHllVDI5LzhSTU00NWhCQkNDQ0ZPU2JGdGdSQkNDQ0hFYlpGd0NDR0VFT0xrU0RpRUVFSUljWElrSEVJSUlZUTRPUklPSVlRUVFwd2NDWWNRUWdnaFRvNkVRd2doaEJBblI4SWhoQkJDaUpNajRSQkNDQ0hFeVpGd0NDR0VFT0xrU0RpRUVFSUljWElrSEVJSUlZUTRPUklPSVlRUVFwd2NDWWNRUWdnaFRvNkVRd2doaEJBblI4SWhoQkJDaUpNajRSQkNDQ0hFeVpGd0NDR0VFT0xrU0RpRUVFSUljWElrSEVJSUlZUTRPUklPSVlRUVFwd2NDWWNRUWdnaFRrNjViY0ZEd3hoanRxMFJqd2Zubk51MlJnZ2h4T1BIUE9UM2U4bUZ1QzhrUWtJSWNWd2VwSENNaU1hUjVPT1BJNC9GUGZMdy9pWE1JQWtSUW9qRGVWRENrWWpHRnVuNE5qUDkxcysvemt3ZGc2dXIwLzJ4dnR1MjRGVGMyemVPT2QzZmRYLzIrbGtrSVVJSXNSc1BRamdtUkNNUmpFUW8zcjhmVFQyK0FWYXJsUUg0Zm16UnZweWQzZjhmQytEeThtNStqamZiRnR5V04rSEIzZncrMCt6ek00eXVsWUFJSVVTZWV4ZU9FZG1JeGw3N3g5OUVjckZhbVZmTncvVjZIYTM5QXpGVmRYMmtNa3llc2p5UC9uaC9HVjk0WkpiTDViMytRenM3b25qOUtUZDRWMElWZUFPUVM2K3k2Yy9ZenpZWWwzd0lJVVRIdlFySHRHd2tvdEZJUmhDTXF2cjM1bXNqSEwveno3STNOd1BKcURlYmFPeTMwY3gvcDB2M1lqYWZuK1NQVnl3V0I3MXVtUk9Sdnc3WDNaYSthT1U0WEw1dUsxTzd5RkJXY21KeXd2T21mWkI3L1hRcyt6TklRSVFRbnpNUFJUaWlyMDNwSkJLTi80Z2tvNnJXaHQ5MVloRmt3dGExZ1NzQVhsYXhZRUJkVjRhdnVCTm1aWG5ZSC9RbitMbDVhTXJEUkthWUhTSXFmZWs2VktMMmxxVC9seDh1eTlzSlIxbisvZURucDdMVGx1SlNpUWxDOHFiOXIzaCtGeUh4Zy9mNVB6NGhoTGhqN2swNDhySUI4TnJMUmtZMDdHOXVUTDNaR0M4WDRLb1g1aXNhb1FEc2wxVWtIeSt3elhqQTJ2cWtKUmFBb3BnZC9BY3Rackdzdkp0WXQvMTdGQWVLeit6ZFljOHI5NUNrMmV5Zjdkb2ZweFp5bUFBZElqOWpvaE1MVEJDUzc2RXZJWmVYYmlJQjJVbEFKQjlDaUtmT1F4R09yR3prUk1OVmxiSDFDL1BDTm5MeFJkMEl5SmRZV3hzWFpPUlpiZUNTaTBneXdseU9RMlZrSDhFd1cwUWhmcTBQdkI5ZFp6NXUvNTdidmxkZzI4OS9UQWtLREdUb1o3TE1adHZsWjFwMDNnSXdhMzYyUStTbWxaZFdTdjRLUU5uOERzdmwwdDFTUUNRZlFvalBnbnNSamt6dlJ2T2Zid3l2Z214VXBxcStUbVRqaFhsUlY2YXExb1c5ckkyMXo3MWMxTFZ4dGpiMm1UWFA2bk12SXJZMnpsay9iODhNRi82YldXdDdZdUdpNjdCK0g0d3Bkdm9EbW1KNlhUR1kvOVErNmoyM0c1NzgzdHRFSXJCTlROclhlVDhVb0k4VDMyUG4xMjM1WmJobUI0bVpXak9aOHZ3OExqUmxPWGYvMDE2OWJiOUhMQ1RGajE1RXl2S0g1dXVJZ054U1BrQUNJb1I0R3R5M2NFUmZoK25HemMzN292NVZJaHZQMTRXdG54dHJhMk0zTjRXMTFqeTdxSTIxNThZNWE1eTFoZ3V3OXN3NGE0MXoxcHdUeE9JY3Q0d0VZMFEybk4xUFBMYkpSR0JLRU1aZXc0OWYrNHZyN2V1THpQY3dSZUVpVHhrd2tKMVlhb3FaZzQra0hDSTdPUWtwaWsrVGY3dVA2WFArdHo4L0pqYmJoR3NzdVlrRnBpaExGOUtYSUNmL0xOKzVlRjJRa09MSGhRc0p5RzdweHh1WTd2MFkvZmtsSUVLSXg4aWRDOGY0emhRdkhLOVdLN05lcjgxcWRWV0VkS05lWHhZNTJiaDRabzJyejAxZGJ3cG5yYkZuMWpoN1pweXo1cXlSRGJkWVJrbEg4OVV0REdmZDljSzUzbnlMY3dZV1RITXpIREptYjdFQU1OSHoxbUVzWHIrSzE5NWt4V0l3bG9qQnBOaEVRdE54blgxT0xEYXh6SXlLVUpIK0hLdnVlb2ZVWmtvZzhpSXpjNHlVcFhvU0V3bE0vRHJ4OXl0bUh6ckorQmNVUmVsbXM5TDlESmhJUUdMNUFGK0NpWHRBL2lzMHBXNVBQM0svYS9iM2wzd0lJUjRMRDBRNHZqVmhaNG9YanY5clZxdDNoZjNOamRtc1ZvV3JYcGd2bnE4S1cxK2Fhck11WEYyYjgvTmw0ZXJheThhWk5kYWVHVnRYUlNvYVB1Vnd4cm01Y1F0bkZrRXFtakgvMEJvVzRCcng4R09SYkFReDRRREdQdUROeG1WVXBTY2QvcnA1ZnJRNFhlTUhONU1Da250T0t3R1J5S3dISC9oK01oV0puQmhNcHpRMENjMVFZUFpKWllhbHAwUmV3dGoxZnVMU2w0MVA3a01ZYi9wbHdueFJ6TnlZZ09UU2oyS3hjSEgvUjBnLzlwQVBVUG9oaEhnQ1BNaTd4VmJWdGVGM05CK3lWN3lvcjQyRmR0ZUplMVliYk5mb0djb25aOVlhdDF5MnBSUmIxMFVuR3JXaGJzVERXZVBtemtDTmMxNUMzR1p1d0xUUzRlZHZ3TTBOaGZlUXV2bjU5dXIxY0hYKy83VzdrcUluQWQ0b0RJbHdNUHdBTWMwSFR1c2dSZUU2SGJxSjVNTDFIa05mRk9wMU0xWjAzM09HcFJsMFBtY3hnelVlUjVySW1DTDZJRnlsVXJMQ2xJV0RXVHNTNXNQZkZmclNNZy9YdmVUbGVyQU9pb0cwbUhrK2dla0x5eWYvT3ArQWVoUDlQQ1ZMR2psWkJObjRRRkVVN3VQSG1hczNDeisyZ2VMWkIxZk1hbWRubGJ2ODExa3YvYkQxTzFkc05vNlhZT2MzRHI2aWFrb3Z2Ni8rYXNxeWRLelhacmxjdXU5WEs4TTNRVDVlK3gvdlRmZzUyd2ZnLzBHbS8vNjF2MU1zOUpJUEljUkQ0czRURHVpOUtZNlVWUG9KeDh2cWhkbEVDWWM5dXlrdTdJV3BOemVGYzliVWkwVVIwZzA3bnhjaDJiQzJMQllMWjF3UWowWTBuSE1HYTgzY3pmM2pSU01SemhubnlpYjE4T0l4RDZuSGZON0pTSlNFWklubnA4b3JnelNqNmwxdnd2eG1iSDBpTXNhNE9BcUo1OXZuM2d4ZkJ4Z2tNY1lZZDlON3JlUjdieWJTazk3UHRjNmtJLzMxeFUxLzNxY3NYZXh5U0ttbzdYMjV6czhYcHArZ3hQT2RsSHpDclB4all3b1gwcEVnSUorS3dwbVBNemVXZmhTL2JDKzk3TmYzQVVvL2hCQ1BsZnNXRGlEc1VNazBqWDcxdnNqMWNOU2JteUl1cWRTTFJlR3NOY3U2S3R4eWFXeGQrWjZPZVZrc1hDUWM4NmE4VXRkRmtBMDM3MFRET1dlQ0xKUmxKeDloYkNBY2M0Q3luVy9qb2gyRm94cXNxWnJMNkRtYjVIb2dIU1BTc3VtdmpkZFZXVkdKTDZ2Kzg2YktPZEVIOVNZcDY1amU5eThtWHVlbS83Tk9DTW82bmwrRitadUo1KzRnSnEyVXJOdTVWZk84c041THlGQkEwdlFEd014bUxpY2ZBTzltcFp1V2orN3NqK3k1SHozNXVITEo4ZXY5Znpialk1SVBJY1NkY3kvQ0FjVFNZYnIveE50aXV6TTR0cVVjdHE0S2U5YjFjSVNVdzlabHNWajQwZ3B1YnF5dGk1Qnd6T3RaTVNZY3JXeTRKZzJoa1l4eTFqNmVFNGxIUzlvRE12Y2Zsc0ZFcW5qTzAzMllic0xJNklmdEpybkdHTmMralNyNWdNOUx5bUROcG4yQmRsMzZmZm9mMm9rY3BCL29rYURFcjNIVGZ0RGZET2F5eVUzbU5kSStsU2t4S1lyQzVYdFRWcE5TRXN1TU1WNUFXdWt3aGJ0dUJXVGw4dW5IdGRzbCtZQzhmUFI3UG1BeS9laWRlQXBLUDRRUUQ1bUhKQnhrRC83NmVtMDJIejhXdG41cHZseGZGL2JMeWxRMzUwVzNVNlZmV2dsSlJ5Y2RQdDJZbDNXQmM4YmEyVkE2eXJyWUtoeWxNN2laY2M2WnNoV0dPUEdZNDJhSmdBeUVwSS9EbWJSbmcrVEQxdzlGWTlVbStZQWVGNVR1dGJ5TWJES2xtZDNFcEYvcW9US3UxYU14K1RER2RYSlI5RjkzTE9tSXBNUVkwemJWRHI3SDJQTW5oS1FuSXplRkN5NWlJaEdKbnhQRzIrdDE0ZUtHMTIzeXNVL1pCVHI1R0d5M0hXazZQVUxwWld4TThpR0VPQW4zSmh6UVNrY3NIcVM5SEZWMUhVbEhiYjVjUHkrc3JZejlvamJWNXR5WFZjNDN4Yk93UGZic3pOUlZWVGhuemJLZUYyNWhmWW5GTFl5ZDE4WENXdU5zNldXa3RBWFdtcks1WnQ0bEhjN2FvaXlkSVZ3N1p5aWRnWkt5RlpFZ0hLVnBaU09TREVldTFOTDE2VHJuVFByLzdpRXF0VkFOQkdSS1VJd3h6ajk1WEVwU3djaVZkWHp5a1YvZlBjd0x5YVlhVzdPRGpHeEdmczVJUkRieGVMenVKdmtlOGR4RXlhWmRzNGFibmhqNU1zMjRnS3pkbEh5RTlVRStQalJsbDIzeUVaLzNjVVQ1Z08xcFIzcmRUZHpubTRRUTRzbndFSVFEaUtYalczajkxdkMrTzVNamxGYzJMNzEwOUU4Y2pRNEJlM1pobnJWYlpmY1ZqOUxNblRQVzFzVXU0dUhjektjaEFQaHhOMHQ2UG1qbVd3a3BtNWFQS1Bsd3pxUlNFYjhHclVUUVhBWkpxTUpBOXlFNUppUFZtQ0RrUCtDcmdXUTB2U1VqTWhHK1QxOXlJdW5aMEJNRjA2Ni9yWVRrbTFyRDQ1dEVRc2JTa0RFQkNUdGZqTGx4cTJpZE1VVXJHNlpZTzY3OVhHaEVOVVhoaXFKd2ZQSzdZRkw1K05RY2RoYmtJNVJqaXRtSFZqTDJrNDkrMzhkQVBnRCtGTjhCZDJ2NmtWNTNFL2Y1aGlHRWVOVGNxM0FBVzZXaks2ODBSNTNiR3hPZlB2ckZabFg0KzZrMDRuRjJVMWdiaTRjMWRiWHdPMWVXMWl5cnFOU3ltQnRYMTc2eDFNMk5MV3RmWXFsbnhkejUvZzVuZmRrbFYycnhrbEVVQUdXVGVQangwbENTRjQreUhBcEhockFtbDREZ0oveDQ2eDExZjExR1JLcDB2STVGWWRoRE1wNXUxTDZra2pTMHRvOXpZMm5xa3BFWDN6dFNSSzh4WFpJWlMwSFN1YjdzRkZ2N1F6cXg4UE9oSHlTa0h1c2RVbzlWSkNXN2xGeUFmTE5wYzlxcFArZGo3bkpIclcrVkQrZ0x5SDd5TVRibUorNzdEVVFJOFdoNFNNSUI1TXNyckZZR0lDOGVMNDJyTnVaRlhabTR2OE05OHpkeXF6Zkw0c0xXeHAwMzR0R2MwYkdjei8xT2xpYjFjQXZieUVlL3VYU2JmRGhyaTFZZ3lyakhJNlFoelhiYWJPclJ5RWQ4R2twWU55SWNZMldZK0VNK1RUUklaTVRRcENSWk1RaVBOOEZRc212Q2M3dlgyYThVMDVPY01OOElUTmNmTXAyQWJKZVBNTzRYSFVVOEFMUGVKaDZGQ3p0ZTR0MHVVNmxIT09MOTQxVEo1WmJ5QVh2ZjZSYVVmZ2doanNTOUN3ZXdSVG93OEpvcDhlQnI4RGQ0ZTJucTlYWHg0c3ZLMkxwTFBkeXoydFNiVGVIcWM1T1ZqNlRrNHB3MXJod21IMjNacGZTN1hwcnpQZ3BYT2xNbXlVZVFqMjQzeTNqWkJUY3p3VGxhZVVrYlVLUDVySEFFcHNTam5XOUtKT1I2T1ByUE1hYUtTanF4TFBTZjF4ZVlLbDkrbWZvZTNZWGJWenlBcmYwZlFUeHVrdm5iaVVmaFlIV1llRFJiYkZQeEdOdGlDMG5KNVFqeUFmRDlxSHpBRHVsSGV0MmZmQWh2TGtLSUI4T0RFSTVBSkI0akF2TGFpd2NRU2kwQVkrVVdXMWNtSngrOTVNTlpFL2Q3T051a0grMng2RjNQQjNIWkpVay93cmJic2RKTDZQdUlkN2prbWsxRG8ybFdRa0taSnY1Z2RJbVlKTUxoaDNMUzBTMm80OTZQcmVJeDhzRnVodkppVEQyWmVKakI5NG9TaitaaDFWc1RpOGZHcFdQYnBNT1BiL0s3WDhZT01ndmZaMFE2Z0wzRVk5RG5NWEc0V0p4NmRHUFQ4aEVPR1R0RVBzN096dHlmaU5odjEwdDYzWjk4U0c4MFFvaDc0VUVKQnhCTEI1QVZEK0MxNFRYd2ZqZjVnQ3RjdFRFdlhsVEdWcFdKNzhuaW50VW05SHhZV3h1N3JJcjRUck9oOU5MciszRE5jZWkyTE1ZUEU5c21JRDRCd2ZVYlQzdmJhMU1KQVhDem5tRE1VdUhJc0UwNEt1ZzNuSTVKUngxdmo4MnNPVUE2MHZFMjdUaWhkTVFIbEcyVkRsTzRjQ3U5WEhOcEVVdkdDdGJGVGU5bjZwcExpNmE1dEJNUGdPc2R4Q09YZXZqdlBYUHdpeSszUk0ybWNIdjVHSlJlMVBjaGhMZ2xEMDQ0QW9sNEFJZkxCMEM0ODJ6bytaaEtQL3BOcDJmRzJ1YW85TG9xenRKN3RTem1adUdjSDVzVUVIOEd5S2lBUU5JREFwMkVRTnNMQXIxVW95Y2owZHp3SmpuTlNDSWJrQ1FjdlRYaE1zakRzTHdTejBNa0IvRUhlVlVQMTI0VERtZ2JTK09EeUhMQzBSdS9pZGZtaGVQUWxBTVlKQjNRVHp2VzZ5QVlVK0p4M2U1cWllZFdXOFVEd28zbDB1MjFRUCt1dHREYjZWS1djL2MvZTVSZFlLTHZZMW8rWUkvMFEvSWh4T2ZEZ3hXT21JblVJN2wrN1I5SFpaZFh3THJwK1lEZlUxWHJiUHBoWDFUbVJaTisyTHFLQk9UQ1dGdWI4K1p3c1lNRnhPMTN1cW1YQzlmdWFvbDdRY0p2RzNiRHRDTGlCM3QvbjFoSVlnbnA5Vy9Fak1nR01KcHc5Tlo5eGlrSGdGbEhoNHBOU1FkZzF2MjA0eUR4bU0wYy8wc3Y5Y2lKQi9qVUE3eDh3RnQraXVTaldDejg3ekFoSDl0M3ZNQ1c5Q09kNnlINUVPSnA4eWlFSTVCSlBZQ0o1QVBZTi8wQURoYVFjQytYY1FHcEN6ZWZkMExSYTBMdEM0aHp6c3puM1E2WE5Ba0Iycm5vS0xGbXZPeWtKTmQ4Nmx6KzdJOElrOHdiWXh4VmRBejZIcjBjd0dlYWNoU3VQY0UwRnFKSVBFTGlrVXBIVVlSZWo1Vi8zcWZ1TmJvR1V5OGVBQjh6NGdIanZSNFF4QU4rbXYzVFFaSjZBT1VQWFlsbEovbVlQbXdzZnB5NzdrOCtwamNtSWNST1BDcmhTTWtJeUY3cEIvZ2RMd0RoY0RFNFRFQnlKWmd6MTl6WHBSR1FjRU01NTN3UGlCY0pmMU01YS8ycHA4N05UZGVJMnBjUTVsQW1VZ0pSd2hINlF2RDNsZXVTajFnNm90Sk1qcVFXTXlVYTdYekU4TkF3R04yMTBsdVRmUEEvMFpSajhQeWsxTEpOUE14MUp4MUFLeGloejZPWXpkejdySGlVRHQ2Ums0OGdIclBad3YzSWZ3UGpKUmM0U0Q2NmNjKzI2LzdrWTM2VEVrSzBQR3JoaU5raC9VaXVoNzBmY0ZvQmNjNmFzK1hTMkdoSFRQOE1rRVpBbkRYaEhKQ1FncmhXUXByNUlDRkFXZmJ2ZE5zWEVWK1dBU2lUK1Q0VEVnS3dSVFNDT095Y2JpUnIwcmtISnh4K29ocy9Zc3JSam8yVVdDQ1VXZGdxSGlIeEtKckVZemFidVYraWRVV1RiaFN6OS81cmN6ejY3TjEwNmdFSHlvZTIyZ29oR3A2TWNLVGN0WURFTzJER0JNVHZnbGtVc1lBNDIwaElYVFZKaURQeFRwaXBGQVJnWEVLYW5oQWdLeUx6a2w0NUppTWhZZjFBTG1LaXVmUXdNWC9aOVcvNDZ6M1NqYkJtUitHSXgrOUtPT0kxeDBvNW9KT09NUDZKN3ZWTk1YUHcwYS8vNk5jTXhXUG00SDNYSk5yc2NFbmxZMHc4WUx6UkZIYVREOWgyenNlVmcrL2lnVzV0L25xQUJFU0l4OE9URlk2VWh5b2c3dHdhWi92bmdNU05xTU96UVBJcGlIT3VLOFVBcVlUTXdkL3hsdjdKcDVBbUlxV3Z4L2lCM3Q5bnVQUEZNeW9hd0M2eWtjN2xlamo4dzRlWGNLUnJqcFZ5d0xSMCtMRytlQXpMTE9QaVVSUk44akVMZ3BFdnQwQVFEeGc5WEF6b3k4ZGZpVzhzUjBQdm5JOUJzMmxQUHBJNWlZY1FUNEhQUmpoU0hvNkE5TThCQ1FJU3B5RExwQStrUFExMUVWS1EwSWc2VVlxQm5vVE1vVXMreXJLWGdPUmtKR1l3TnU4ZXRoKytZNkxoQjNyWCs2WWJmdXJ4Q0lkZmY1eVVBMUxwV0hYUG0wdzdtcm1aTDduTW1wSkxLaDRoOFlDaGVFQW5IOFZZeVlWOHMrbmtBV005K1ZEcUljUlQ1Yk1WanBTTWdFd0lTWDRIVE5pQ0MwY1VrR1FuakhQV25ObWxjVXU3WHdyQ2drVW8yVFJ5d3R5UE8yZDd3akYzempBUDE5NG1jaklTNDl5V0k5ZGhValM2NjhoVTlrZzMwdkdIS2h4K2ZTYlp1R1hLQWJSOUhUQ1ZkdENrRk8rOWRBQTdpUWZEY2d0TTlIcVFpc2U1Zzc4QUUvSXhYWExwL2psMDVNYjZDL1FHSjhTRFFjS1I0YUQwQTQ0a0lORkJaSFZ0K0FLR1paaHo0Mnh0ckxWdDcwZXVET01XdHQyU081YUNMUEN5MEpaVm10MHhXUkVwNCtRajJubzdJaUZqNUVVRGtsaGtyM1NqTjM3VC94NFBWVGo4ZUM3bDhMZThoLzFTRHNoTEJ6Q1NkdlRGby9qZ3BjUFBUWWhIV1RwKzZxUURZTmFJeDA4N2lRZkFYL1k0Vm4xcjZqRTIxazNxalU2SWUwZkNzUU4zSnlEUlFXVE5TYWdBdS9hQnBMdGhYQ1FrN1c0WTEyOUdCWWdsWkdHNzhvcHp6ckNnRlEraTlXRk5XMDFwVXBHTzZlMjNmZWxJUkNNYU1xYTdpWnUvM2kvZDhIT1BTemlBMFpUanVsbXpUOG9CWkpNT3lLY2Q3M3Z6UVR4S0IvL3lZenVJeDN3K2R6K0UxOGdlS3BZWEQ4ZzBtZ2JlWERXUEoxT1BxWEUvcVRjOUllNEZDY2NCbkVaQWhnZVJBY1JIc2IvOENuWXF3MHdJU0plQ2hENlFmQXJpUldOWWpvRW0wY2lJaUorejJlU2o1eUxPK1lQSGVvTU55WW1rMlR2R0J2Wk5OK0RSQzhjeFVvNTBQUFIxUUxPTjluL1QrVEo1L0s5V091QjI0Z0hqOGpFcUhwREtSMyt1WTJ5OFc2QTNRQ0h1REFuSEViZ0xBUUZJN3dWekt3RVo2UU1KS2NnU2NFay9DSUNiUjMwZXR0OXNHdVk2NlZpUTluekVRZ0prblFPMmlZWng0UmIxNlpwZDA0MzRwTkYwM2VjbkhEN2xDTXcrUnFXVjBiUURZdkdZQlFFWmlNZkN3WC9ueFlNRHlpMnBlRnhkT2U4Y1NqMkVlT2hJT0U3QXFRUUVtbnZCWkFRRTRGaU5xTkNVV1hJN1l2emtvQnpqSHp1ellBSHRhL1JGSkt5blpSRUdjMyt2UHUySGVsNDBZSXRzd0U3cEJqd2U0WUJqU3NjdzVSaXVTWk1PeUtZZFFQa3VsUTZZRkkvbDB2SFg1dkdFZUlUSGY0ckY0NnBKTzFyblVPb2h4RU5Fd25FSEhFdEFJTjZHZTZDQTFGNUNVZ0hoNGhtaEViV1RFR3RjMG93S0VDUmtzWER0V0NqSCtJZUpjRFJmRjBraTR0Y09aU05OUVdBb0Y3MjViYUlCQjZVYjZkelRGbzc5VW83dWNiK3ZBL0pwUnljZE1KOHYzUS84d3o4dmxZN3crUHpjTlp0YVdDNy8xbzdIMGdGdzJZakhtekRRSmg0ZzhSRGlZU0hodUFmdVRVRHF5dGd2OHdJQ2wxellrSWFNbFdIOFY4N082WmRpbXNSakNZc2dHVGJlN2RLSlNFODJra1FrakRIRklub2NXd1BiUlNOd1VMcmhtME42SC95NWRhY1dEdWdhUitGMndwSE83WnR5ZE5jajB2R1Rmendzc1hoK21pOGRSeENQeTdUTUFyenBpUWZBZDRNMURXUGozUUs5U1FweEZDUWM5OHlJZk1BQkFySjNDU1lSRUlEUm5URE9HbmRtamJWbnJWRGtVcEJ1YnVFZk4wMnBZUndZbEdTNnlvcHJ0K24yellLZWxHd2xJeGtReE9DbTlaUXAyUmpNUjVJQ2oxYzRnSjNLS2dBZlBvNnQyNTV5d0hicCtCR1l6WU5jL0dOYU9nRCtBc3ZsODJiOHo4QjI4Ymk2dW5MOUZvOVI4WUF0OGlIeEVPSjJTRGdlR0E5RlFBQ215akRnWldIWUMySU5uQk0zcEVJbkc2RXhkWWtYaTFoQzBqU0VobHpxRWVRa2o1OFpKQlROZitlU0VHTUtGeWNtaDZRYjhOaUZZLyt5U25jOW5YTEF1SFJBRUk4ZDBnNFlpTWRZbVNYbXF1bno2THhENGlIRVhTUGhlT0RjaDRBQS9qQ3l1akxXVm9aL1M4NENHU3ZEUkFJQy9SUWtsaEFnYWtwMUJwWXNuRFVzTzdrWUU1SHczRFFBOGVOTnIwaHpIY3RBVW4xcGliZlRkbU9Ka0J5UWJzRERFUTYvYm5zZkIvUlRqcmlza3E2OWJjb0JYanArN0M2WnpYL3VYbk9iZE1DUnhPT1ZneitteXdLRDUvY205ZVlweEY1SU9CNFpkeThnM1dGa0wwTFpKZWtEQWZBUzBpL0RRRDhGZ1hFSnlTWWh6cHJsMHY4R1l5SVNtT3o5R0k5Q3RvaEc0V0NkRE8yZmJzQXFlZDdURWc1L1BUeVJGQTVQT1dCY09pRHQ3Umd2czhCUVBJSjBRQ1FlcjE0NS92aEhNdlNlTzVqVUc2Z1FPeVBoZU9UY2lZRFlHOFBYWGtDZ080d3NKeURROUlGTXBDRHdESGZXN1lnQk9Hc1RqNlhockJNVDZFc0lnRnY0NjBXY2V1UjZQS0lEeWZaaWkyaTBZd2VrRy81NWowTTRZTGMranU1NkpPWEkzSU9sbmRzeDVZQnA2WUFnSG45dXIzY1ZqMTV2cWNSRGlKTWg0WGhpN0xnREpobmJUMEFnZnhycVYwRGQ5b0hVQmw3MCtrQUE0aFFFR2pseGZrY01GeEFrNUt6WGdOcEpDRFFsRmVKclg1WUp2U0hkV0orc2xQUllFb3RHVGpKZ090bUEzZE1OZUx6QzRkZm15eXF3WDhyUkY0N2RVdzZBOHUvbnZiRjlwUU9PSng2U0RpR21rWEE4Y2U1SFFHcmpxaGVkZ0dUNlFLQXB3OWphMkdjWDVubHozYVVna0N2Rm5FZVB3L1pjNkNRa3JQVmpQaEU1QTJ6VEl4SXpXWVpKeURXYXBxTGgxeFZ1dFlxdWQwdzMwdXZQUlRqZ3RDa0g3QzRkUGVHQWc2UURKQjVDakNIaCtNeTRTd0dCZkI5SUp5RCt6cmdRbFdGc2JiaUVDM3ZSbG1FZ1NqVXlXM09EaEFDNDViS2RpNS9YaloyUmpnT2NuZmwwaFMza0pBTTZrZGhWTnZ6OGlIeGNYL2V1SDROdytPdDhId2NjWGxhQjQ2Y2NjRnJwa0hBSWtVZkM4Um16Ui85SE1qWXVJREIrUjF6WTFvZzZWb2J4L1I3UGVVNHFJYzdhcGhUVFNjZ0ZUYUpCa0F6Zm5OcGRENFdqWDI3cFM4a1pDYzFBVHlCV0VGd2pGWTNCV25aUE42QXZISWVjTk9yWFBSemhnTVBMS25ESEtRZElPb1E0RXVXMkJlTHBrcjRwUmdLU3ZsbWEvdGdiQjVqbVBHbm5CZVRTZmY4YUx5Qm5aNDdWeXJ4YXZuWFFDTWd2cVlCNFVYa2ZCR1FGdmd5emFmdEFvRWxCYnA0YmEydXpvcUtmZ2xqajZuUERCcXl0MmxMTU9wYVFHVGk3TVJkVktpRmRHZ0xnVEN3Y0ZjNVpZNXJmT2QxUzY5YlduTkZKd2dxZ09NTVF4UnNOdVNQWnAyU0Q2MnNvaXZZeVRUZWVJblY5WTRoT0lLMDNhek9iYno4Qk5GQmRYNXVTTHVWWXJ6K1k1ZkkvQjlJUjgvNzllNU5LeDl1M2I4MjNZOUt4SjhZWUkra1FvbzhTRGpISzZST1EvRlpjbU9vRHFac2s1RXZ5S1FpNCt0eS94cUFjMCs4SkFiODdwdm14MmpRRWFCT1JtTzFOcDlOa2Q3cWs4bkZndXVIbkgyZkNBZkRUcko5aVRKVlZJSk55YkNtcmdGSU9JZTRiSlJ4aWxOTW5JRXNIYjZNRUpPb0QrUjNZbTVWNUZ3a0lLM2hadlRCMVhSbllSR1VZc0RlMXNmYTVXUUd1S2RPNFo3VzVzTmJRbEdMWTFBTUoyWnhaQXhlK2Y2TkpRd0RjeHZlR0JKenRFZy9PejQ4dUg2WW9ITmZYdlRYN3BCdXhiS1Nrb3ZBVXFmNzkyc1RTNFZPTzZaUkVLWWNRZDRzU0RuRXdkNW1BZUFGSiswQkNHWVpCR2NaL2ZkN2JFUVB3ckVsQ1dna2hsNFJFRXRJUWVrT2dLODIwblBmVGtYM1lWVFNPbFc3QTAwdzRRQ21IRUE4ZEpSemlZRzZSZ01SZlhEWUJBVjZ0VnFaTlFONk83WVJaMGFZZ3EzNFpCalpZV3huN1JXMllld0ZaM1FUQnFJakxNZjBrQkt5OU1RV2RoQUNzTXlKeUFiaVZOVkE0MklUaG9aVEVuRGRpc3FOb3BHTlRzdkc1VUszWEppY2QrektXY2hDZFJub2JsSElJMFNIaEVFZGpEd0ZKZUJOL2NTRUIrZjcxcFlzRnhLY2diN3NFNU9jdEF0SUl4Y3ZycUF3VDlZSUVDZUVHVnJZMnJsNjNBZ0srS2JXWGhLeHJBemUwSW5MaGp3bHp6UTZaZ0xYV1hOQkp3YUQ4c21vT0Z6TmRjMmhNVGpJK01SUU52elpKTC9aSU43WXgyMlB0UTJTWHNzb1kzNUljQkNhRXVEVXFxWWc3NDZnbEdCaWNCUUw3bDJIQWI4bUZZVU1xZEtVWVoydnovQkxTY2d4MEpSbUlFcEdMWjRUbkVaRTc2K09DUEVWU1JvbnBST05qTkZhNDZCSzRYVGxsNmw0cWZ2MzlsVlJnZStNb3dITDV0OEdZeWlwQzNBOUtPTVNkc1VjQ1l2cGp1U1pVNFBXbCt4NzZmU0J4SStvdVpaamVsdHl3SStZNlNVRzhoSHhhQlFueHIvV3NTVUptZ0xVWG5YVFV0V0Y5ZzdWMTEyaUtsNUhaUmJqdWhDVGRUSHVCVHpSaTBpUmpJQnI5b1d5ajZEN3B4dWVFeWlwQzNBMFNEbkZ2SEVsQWdHOGR2RFU5QWNudGhHRllodWxTRUM4aGJRcnlJVWxCQmhJUzk0TjBFbkw1QmRnaWlNaGxrcFRNWExoVmk3WFhCaUFWRWk3Z21uemtFL0NDRVpWanRvZ0dER1ZqMzNSRENDRnVpNFJEUEJnT0Y1QW0vSDRUcmhzQnlUU2lwbjBnUGdYNWR5OGp2VEpNMmd0eXhjc1AvanJlbHR2T054THlxZWtEOWFLeDlxTHhCVER2eWpQUHVjVEVaWmkyUE5NSlNjQW1KUmtnaENPdGFFeHRlODJsR29kc2s5MWVUaW4zZnMxSHlmZmZKLy91dFl5TkN5RWFKQnppd1hKckFZRkJJeXF2TDkzM3FZQXMzN3IxZW0zS0VqZGVobm5mQ2doNHlmajE2b3FxaWlUa3F3MjI2bS9OWmY0Q2V4MVNFai8yc2Y1aytLTDdlWjhWc1ZSYzlpUWpiZFVucGJFQUFBZ2hTVVJCVk54MGRXMEltMXN5UGFkVFpaT2NhQlN6bVlQM3ZUR2xHOGRIWlJVaEpCemlFWEc0Z01EWVRwaWNnTEJjdXFuZE1DRUYrUmZ2ZXllajhzRWZUQmErbzVlUTY0R0UyT0o1S3czVzF1WVRuUWk0WjU4TU05d2xIYTI4Y0FtUk5HVFRqNGlwSktOb3hXUW9HNE8xVzlJTlQzZW5XQ0dFeUNIaEVJK1dVd2tJd1BkUkgwZ3FJT05sR0hpMzZYYlJlQW54TjZucjc0cTU3cThCd2szcnVQWWY3cCtJaGNLUFBYLzJxU2NZeGF6N25iclhTYmxzMXFZaU1TNGFVenRUY253MjVSUWh4SzJRY0lnbnd4NENrdUZONzB2Y2lBcVJnTUJJR2FZdklCQWt4S2NnNytpa0lEU2tRa2hCQUxva2hHYXRGNHBHUklCUDF4UHB4aGQrTHZTRGRBbEpmbU50OW95TkhVUmpsM1JqMjVaWUljVG5pWVJEUEZrbUJBUzJTa2phaVBxNiszS1o3d01CMHUyNERvWXBTTDE1Yjk0MXJ4cVhZbVowSDh6MWl5QWZReEVCS0dZdm9uU2pNbndJVjdtRUJMNGs0WXZvY1NNYVJURnp2NUJ0RFJsTk1RNUpOOUl6T0lRUW53Y1NEdkhac0tlQUpHV1lONzB2WFFKQ0p5QkFyZ3l6UFFYSmxXSnd2OFkzcFFZUnFldktGRitGRC9oT1JQS2xsUmM5R1hoZlYvSHZ5cGNmdXNjVThBdDV0b3ZHN2RPTjlOQXZJY1RUUk1JaFBsdjJGSkNFTkFGSitrRGV2emZmQS8xbTFMZnVQNGE3WVhvcENIUVNNbWhLTFhGOHVPSmxzek9tVFVSK0JYV1FqK1lEMzFidmU0SVJwTVRXbHdiU0RvNThxcEdqTHlDZGJLU2lNY1l1NlVaNnlxZ1E0bWtnNFJDaVlVOEJTUklRR0c5RUJTNjloUHpYeUc2WWZncmlqK3l1dmw2YllyRnc5dWJHek9iK2c3cmUvTk84U3hPTmQxZUFudzhOcXZueURCVGxkU01rL2NURDgyL0RvU3piUldOV2xvNmZjalBKT3FVYlFudzJTRGlFR09ISUFrTGJCd0xERkdTMU1nQnhMMGo1RnRjVGtHcHRDaFl1N2dmeEl0SWxJY3h3WFgvSVN3UHc2dy96NXZuZE9TSXpTaGNuSTU0MDkvRFlKRDJaZXR1WWhUV0piSXdsR3o4bTE3bDBZNWY3cUFnaEhqNFNEaUYyNUdnQzBqNTgzVjNIQWdLdGhQUUVwUFN2Vi8zUVNRaDBTVWk0N21URTMwenRwMGhHNExmOHF2Ynp2SU9TdVl0RkJJQmZkUS9ycWpKVDVaSlpPcmVqYUlEU0RTRStOeVFjUWh6SThRVWtITWtPbzgybzlGTVFnUEl0RHY1QVZZWHpQWmFPMzBQVnpJZXlqSi83bVgvTmNYVjBhdXB2WnI5MUFIVWtJb0dza01RRU9UbEFOSTZaYnVUdUZDdUVlRmhJT0lRNEVyY1hrTys2c1RkaDdIVTNQWktDK0l1LzhXcUphdzhuK3p1VWhKSU14SDBoMEgyUTI1c2I4eE0vK3lXcGlJUUgxTUFWV1lLY2JIa25tVW96WnZQVGxFZHl0NllYUXR3ZkVnNGhUc1R0QlFTR0tValVqQXF0aEFBTStrR0FaWE5BV1ZoZXZ2MkQ2NUlRZ0tVTEVnTDlOS1FOTGVaelYyLytPWkp5L0RZU2s5MEl5VVpmTlA3Ulc1TkxObUFrM1RqZlBkMDRDMDI3UW9nN1I4SWh4QjJ4cDRCQVhrSU12T25HM2tBL0JhSGRFVFBvQndIZ2J5empKSVFSQ1ltMjZVSmFsb241ZWJBWjVXdGcweVFsODNsWFd2a0JnUC9EckxkNk45R0FpVWJSdnd5SGxzdm5PNHZGNWVYbHptdUZFSWRqZEFORElSNEdpWUJrbCt3K0hxY2dFRktRbUZkdE9jWVRTMGkvSjZRanZvRmRqcnlVVERNbEdUQzlJNlU4UDNkNTRjaVhVM0lKUjA0NHJxNnVYSFRQNFk1WHJ4eC8vR051QnJhYzNhSzd4WXJQSFNVY1Fqd1F0aVFnY0tzVUJOSWtwRTFBR3I0NU8zT3JxQ2NrVFVJQXlySkpRMzRnUy9WMWZ2d1F0bTE5SFplTmZMcHg0bkxLS1Y5YmlDZUJFZzRoSGhFSHBpQWp6MGxTRU1nbUlTUkp5Q3ZTTkFUZ0R3RFpWQVNBMzJkSEQ2THQyUmlWalQ4UEo5ZzkzUUI0YzNXVmYyUDg3cnV4TjB5bEcwSnNRUW1IRUkrSUExS1FYQUxTakc5UFFYS2t5VWpvRGZHc3lmTDNQd3lHc25MeSs4RUlrRFNHN3BGcUJQWkpONjdHWk9QVks4ZDMyVUtMRUdJSEpCeENQR0lPRUJDNGpZUmtMdk1Da3ZLMzlsRjdma2o1aCtIUDhQZmtPdmFVcmFLeGU3SUJSMjBXUGRickNQR2tVVWxGaUNmTURpV1l3Tmk2N2VVWW1DekpmTk44WFNXbG1YSCtjOXVDaFAxRUk2Qm1VU0h1RmlVY1FqeGhka2hBMnFXWnNkMlNFSUEzMytKUFNXMCt4RjkzVTM4Q0x5S0pBSHhEbnRYcXp6dUtTWjl0Z2hFNFlySUJTamVFMkJrbEhFSjg1dXlSZ3NEZVNVZ1FrUkZlUjQrYmRHUk1SRzdMTnRGUXVpSEVhVkhDSWNSbnpoNHBDT1NiVW5QakRkRng3UzNmZGcvZnhESnk2WGpkSkNJcFVhbG1IeUhaSmhrdzBTUzZuVU9mSjhSbmlSSU9JY1FrZXlZZ01KNkN4RVJySWdIcDhkYU03WlNKZWIxdHdRaXBhQXpTalZldi9MelNEU0dPZ29SRENMRTNwNWVRSE4vMnZ2QTJYNnA1blJ1TU9JSm93QTdwaG9SRGlENFNEaUhFclRsQVFHQ3JZTFJNclBzMiszQmlWY3VCb2dHU0RTRU9Rc0loaERnSko1YVFtT1E1RStZUkU1WWRVVFJBc2lIRUdCSU9JY1NkY1ljU2NreDJmcE9VYkFneGpvUkRDSEZ2SENnZ2dkczhkeHQ3dlRGS05JVFlqb1JEQ1BHZ3VLV0VCQTU1amIzZkRDVWFRdXlPaEVNSThlQTVrb1FjQlVtR0VJY2g0UkJDUEZydVNrUWtHVUxjSGdtSEVPTEpjVnNSa1dBSWNYd2tIRUlJSVlRNE9jVzJCVUlJSVlRUXQwWENJWVFRUW9pVEkrRVFRZ2doeE1tUmNBZ2hoQkRpNUVnNGhCQkNDSEZ5SkJ4Q0NDR0VPRGtTRGlHRUVFS2NIQW1IRUVJSUlVNk9oRU1JSVlRUUowZkNJWVFRUW9pVEkrRVFRZ2doeE1tUmNBZ2hoQkRpNUVnNGhCQkNDSEZ5SkJ4Q0NDR0VPRGtTRGlHRUVFS2NIQW1IRUVJSUlVNk9oRU1JSVlRUUowZkNJWVFRUW9pVEkrRVFRZ2doeE1tUmNBZ2hoQkRpNUVnNGhCQkNDSEZ5SkJ4Q0NDR0VPRGtTRGlHRUVFS2NIQW1IRUVJSUlVNk9oRU1JSVlRUUowZkNJWVFRUW9pVEkrRVFRZ2doeE1tUmNBZ2hoQkRpNUVnNGhCQkNDSEZ5SkJ4Q0NDR0VPRGtTRGlHRUVFS2NIQW1IRUVJSUlVN08vd2RCTFJKM2dMSkpOd0FBQUFCSlJVNUVya0pnZ2c9PSIgaWQ9ImUiIHdpZHRoPSI1NDAiIGhlaWdodD0iMTUwIiBwcmVzZXJ2ZUFzcGVjdFJhdGlvPSJub25lIi8+PC9kZWZzPjwvc3ZnPg==",alt:"DocumentIcon"}),i("div",{class:"Paragraphs"},i("p",{class:"KycThanks"},a("kycThanks",this.lang,{values:{currency:this.currency}})),i("p",{class:"Kyc2",innerHTML:a("kyc2",this.lang,{values:{currency:this.currency,amount:this.regularDepositLimitAmount}})}),i("div",{class:"ContainerOptions"},["BankLogin","UploadDocuments"].map((n=>this.renderOption(n))))));default:return i("div",{class:"ValidatorContainer"},i("div",{class:"Paragraphs"},i("div",{class:"IconContainer"},i("img",{src:"data:image/svg+xml;base64,PHN2ZyB4bWxucz0iaHR0cDovL3d3dy53My5vcmcvMjAwMC9zdmciIHhtbDpzcGFjZT0icHJlc2VydmUiIGZpbGwtcnVsZT0iZXZlbm9kZCIgY2xpcC1ydWxlPSJldmVub2RkIiBzdHlsZT0ic2hhcGUtcmVuZGVyaW5nOmdlb21ldHJpY1ByZWNpc2lvbjt0ZXh0LXJlbmRlcmluZzpnZW9tZXRyaWNQcmVjaXNpb247aW1hZ2UtcmVuZGVyaW5nOm9wdGltaXplUXVhbGl0eSIgdmlld0JveD0iMCAwIDkwIDY5Ij48cGF0aCBkPSJtMCAzOCAxMC0xMyAyNiAyMkw3OCAwbDEyIDExLTUzIDU4eiIgc3R5bGU9ImZpbGw6IzAwMDtmaWxsLXJ1bGU6bm9uemVybyIvPjwvc3ZnPg==",alt:"SuccessIcon"})),i("p",{class:"ParagraphStep3"},a("kycSuccess",this.lang,{values:{currency:this.currency}})),i("p",{class:"ParagraphStep3"},a("kyc3",this.lang,{values:{currency:this.currency}})),i("div",{class:"ContainerButtons"},i("button",{class:"SecondButton",onClick:()=>this.handleClick("Close")},a("Close",this.lang,{values:{currency:this.currency}})))))}}renderPredefinedButtons(){return this.predefinedAmounts.map((n=>i("button",{class:this.selectedPredefinedAmount===n?"Active":"",onClick:()=>this.handleAmountClick(n),disabled:this.hasLugasError},n)))}goToPrivacyPolicy(){window.postMessage({type:"GoToPrivacyPolicy"})}formatSetButtonText(){const n=Number.parseFloat(this.newAmount||"0");let t="";return t="preferInteger"===this.buttonTextStrategy&&Number.isInteger(n)?`${n}`:n.toFixed(2),a("LugasSetLimitDialogButtonSetLimit",this.lang,{values:{currency:this.displayedCurrency,amount:t}})}renderSetButton(){const n=this.hasLugasError||this.isSubmitted||!Boolean(this.newAmount)||Boolean(this.errorMessageOnInput);return i("button",{class:"PrimaryButton SetLimitBtn",type:"submit",disabled:n},this.formatSetButtonText())}renderValidator(){return i("div",{class:"ValidatorContainer"},this.errorMessageOnSubmit&&i("div",{class:"ErrorContainer"},!this.hasLugasError&&i("span",{class:"DismissError",onClick:()=>this.errorMessageOnSubmit=""},i("svg",{xmlns:"http://www.w3.org/2000/svg",width:"9",height:"9",viewBox:"0 0 9 9",fill:"none"},i("path",{d:"M8.18659 0.14708C8.37063 0.33182 8.38174 0.62421 8.21888 0.821452L8.18659 0.857219L4.87619 4.16727L8.18659 7.47732C8.27743 7.56861 8.32973 7.69132 8.33266 7.82007C8.3356 7.94883 8.28895 8.0738 8.20235 8.16913C8.11576 8.26446 7.99584 8.32288 7.86739 8.3323C7.73895 8.34172 7.61179 8.30143 7.51221 8.21975L7.47645 8.18746L4.1664 4.87706L0.856348 8.18746C0.765058 8.27831 0.64235 8.3306 0.513592 8.33354C0.384834 8.33647 0.25987 8.28982 0.164536 8.20322C0.0692018 8.11663 0.0107856 7.99671 0.00136402 7.86827C-0.00805761 7.73982 0.0322357 7.61266 0.113914 7.51308L0.146209 7.47732L3.4566 4.16727L0.146209 0.857219C0.0553613 0.765928 0.00306475 0.64322 0.000130477 0.514462C-0.0028038 0.385704 0.0438486 0.260741 0.130443 0.165407C0.217038 0.0700723 0.336953 0.0116562 0.4654 0.00223455C0.593846 -0.00718708 0.721002 0.0331062 0.820581 0.114785L0.856348 0.14708L4.1664 3.45748L7.47645 0.14708C7.52307 0.10045 7.57843 0.0634608 7.63935 0.0382248C7.70027 0.0129888 7.76557 0 7.83152 0C7.89746 0 7.96276 0.0129888 8.02368 0.0382248C8.0846 0.0634608 8.13996 0.10045 8.18659 0.14708Z",fill:"#111111"}))),i("p",{class:"ErrorParagraph"},i("span",{class:"ErrorIcon"},i("svg",{xmlns:"http://www.w3.org/2000/svg",width:"9",height:"9",viewBox:"0 0 9 9"},i("path",{d:"M8.18659 0.14708C8.37063 0.33182 8.38174 0.62421 8.21888 0.821452L8.18659 0.857219L4.87619 4.16727L8.18659 7.47732C8.27743 7.56861 8.32973 7.69132 8.33266 7.82007C8.3356 7.94883 8.28895 8.0738 8.20235 8.16913C8.11576 8.26446 7.99584 8.32288 7.86739 8.3323C7.73895 8.34172 7.61179 8.30143 7.51221 8.21975L7.47645 8.18746L4.1664 4.87706L0.856348 8.18746C0.765058 8.27831 0.64235 8.3306 0.513592 8.33354C0.384834 8.33647 0.25987 8.28982 0.164536 8.20322C0.0692018 8.11663 0.0107856 7.99671 0.00136402 7.86827C-0.00805761 7.73982 0.0322357 7.61266 0.113914 7.51308L0.146209 7.47732L3.4566 4.16727L0.146209 0.857219C0.0553613 0.765928 0.00306475 0.64322 0.000130477 0.514462C-0.0028038 0.385704 0.0438486 0.260741 0.130443 0.165407C0.217038 0.0700723 0.336953 0.0116562 0.4654 0.00223455C0.593846 -0.00718708 0.721002 0.0331062 0.820581 0.114785L0.856348 0.14708L4.1664 3.45748L7.47645 0.14708C7.52307 0.10045 7.57843 0.0634608 7.63935 0.0382248C7.70027 0.0129888 7.76557 0 7.83152 0C7.89746 0 7.96276 0.0129888 8.02368 0.0382248C8.0846 0.0634608 8.13996 0.10045 8.18659 0.14708Z"}))),i("div",{innerHTML:this.errorMessageOnSubmit}))),i("div",{class:"Paragraphs"},i("p",null,a("LugasInfoBox",this.lang))),i("div",{class:"LimitAmountWrapper"},this.isSubmitted&&i("slot",{name:"spinner"})&&i("div",{class:"LoadingWrapper"},i("svg",{class:"spinner",viewBox:"0 0 50 50"},i("circle",{class:"path",cx:"25",cy:"25",r:"20",fill:"none","stroke-width":"5"}))),i("p",{class:"ChooseLimitLabel"},a("ChooseLimit",this.lang)),i("div",{class:"PredefinedAmounts"},i("button",{class:"Other"===this.selectedPredefinedAmount?"Active":"",onClick:()=>this.handleAmountClick("Other")},a("ButtonCustomValue",this.lang)),this.renderPredefinedButtons(),i("button",{class:"Max"===this.selectedPredefinedAmount?"Active":"",onClick:()=>this.handleAmountClick("Max")},a("ButtonMax",this.lang))),this.showCustomAmount&&i("form",{onSubmit:n=>this.handleSubmit(n)},this.showCustomAmount&&i("div",null,i("input",{class:"CustomAmountInput "+(this.errorMessageOnInput?"InvalidInput":""),type:"number",value:"Max"===this.selectedPredefinedAmount?this.maxAmount:null,step:.01,placeholder:"0.00",disabled:this.hasLugasError||"Max"===this.selectedPredefinedAmount,onInput:n=>this.handleValidatorInputChange(n)}),this.errorMessageOnInput&&i("p",{class:"InvalidParagraph"},this.errorMessageOnInput)),this.selectedPredefinedAmount&&this.renderSetButton())))}renderTitle(){switch(this.kycStep){case 2:case 3:return a("LugasSetLimitDialogTitle2",this.lang);default:return a("LugasSetLimitDialogTitle",this.lang)}}render(){const n=this.renderKYC(this.kycStep),t=this.renderValidator();return this.isLoading?i("div",null,i("p",null,a("loading",this.lang,{values:{currency:this.currency}}))):this.errorMessageOnInitialization?i("div",null,i("p",null,this.errorMessageOnInitialization)):i("div",{class:"ModalContainer",ref:n=>this.stylingContainer=n,"data-current-step":this.kycStep},i("div",{class:"Container"},i("div",{class:"ModalHeader"},i("h2",null,this.renderTitle())),i("div",{class:"ModalBody"},this.hasValidation?t:n,this.hasValidation&&i("div",{class:"ModalFooter"},i("hr",null),i("div",{class:"Paragraphs"},this.showExistingLimit?i("p",{class:"ExistingLimit"},a("LugasSetLimitDialogExistingLimit.text",this.lang),i("span",{class:this.isUseExistingLimitOptionActive?"Link":"Link Inactive",onClick:()=>this.postPlayerSituation(this.amount,!0)},a("LugasSetLimitDialogExistingLimit.link",this.lang))):null,i("p",{class:"PrivacyNote"},a("LugasSetLimitDialogPrivacyNote.text",this.lang),i("span",{class:"Link",onClick:this.goToPrivacyPolicy},a("LugasSetLimitDialogPrivacyNote.link",this.lang))))))))}static get watchers(){return{translationUrl:["handleNewTranslations"],clientStyling:["handleClientStylingChange"],clientStylingUrl:["handleClientStylingUrlChange"]}}};s.style='@import url("https://fonts.googleapis.com/css2?family=Roboto:wght@100&display=swap");\n:host {\n font-family: "Roboto", sans-serif;\n}\n\n.ModalContainer {\n position: fixed;\n top: 0;\n left: 0;\n width: 100vw;\n height: 100vh;\n background-color: var(--emw--color-black-transparency-50, rgba(0, 0, 0, 0.5));\n display: flex;\n justify-content: center;\n align-items: center;\n font-size: var(--emw--font-size-small, 12px);\n container-type: inline-size;\n}\n.ModalContainer hr {\n border: 1px solid var(--emw--color-black-transparency-10, rgba(0, 0, 0, 0.1));\n margin: 10px 0px;\n}\n.ModalContainer p {\n margin: 0;\n}\n.ModalContainer button {\n width: 100%;\n border: 1px solid var(--emw--color-gray-100, #E8E9EB);\n padding: 10px 0;\n cursor: pointer;\n width: 100%;\n border-radius: var(--emw--border-radius-small, 4px);\n}\n.ModalContainer button.PrimaryButton {\n background: var(--emw--color-primary, #6BB816);\n border: none;\n font-weight: 500;\n}\n.ModalContainer button.PrimaryButton:not(:disabled) {\n color: var(--emw--color-white, #FFF);\n}\n.ModalContainer button.PrimaryButton:disabled {\n cursor: default;\n}\n.ModalContainer .Container {\n position: fixed;\n top: 30vh;\n width: 320px;\n background: var(--emw--color-white, #FFF);\n display: flex;\n flex-direction: column;\n justify-content: space-between;\n border-radius: 4px;\n transform: scale(1.1);\n}\n.ModalContainer .ModalHeader {\n display: flex;\n justify-content: space-between;\n align-items: center;\n background-color: var(--emw--color-gray-50, #F7F8FA);\n padding: 12px;\n border-top-left-radius: 4px;\n border-top-right-radius: 4px;\n}\n.ModalContainer .ModalHeader h2 {\n font-weight: bold;\n font-size: var(--emw--font-size-small, 12px);\n margin: 0;\n}\n.ModalContainer .ModalBody {\n background: var(--emw--color-white, #FFF);\n padding: 12px;\n container-type: inline-size;\n border-radius: 4px;\n}\n.ModalContainer .ModalBody .ErrorContainer {\n display: flex;\n align-items: center;\n color: var(--emw--color-red-100, #E10014);\n border-bottom: 1px solid var(--emw--color-gray-100, #E8E9EB);\n margin: -12px;\n padding: 12px;\n margin-bottom: 12px;\n font-weight: bold;\n position: relative;\n background: linear-gradient(180deg, var(--emw--color-gray-100, #E8E9EB) 0%, rgba(255, 255, 255, 0.47) 30%);\n}\n.ModalContainer .ModalBody .DismissError {\n position: absolute;\n right: 12px;\n cursor: pointer;\n}\n.ModalContainer .ModalBody .ErrorParagraph {\n display: flex;\n align-items: center;\n}\n.ModalContainer .ModalBody .ErrorIcon {\n background: linear-gradient(180deg, var(--emw--color-red-100, #E10014) 0%, var(--emw--color-red-150, #D60080) 100%);\n text-align: center;\n width: 16px;\n height: 16px;\n border-radius: 50%;\n display: inline-flex;\n justify-content: center;\n align-items: center;\n margin-right: 6px;\n flex-shrink: 0;\n}\n.ModalContainer .ModalBody .ErrorIcon svg {\n width: 6px;\n height: 6px;\n}\n.ModalContainer .ModalBody .ErrorIcon svg path {\n fill: var(--emw--color-white, #FFF);\n}\n.ModalContainer .ModalBody .ChooseLimitLabel {\n text-transform: uppercase;\n}\n.ModalContainer .ModalBody .PredefinedAmounts {\n display: flex;\n justify-content: space-between;\n}\n.ModalContainer .ModalBody .PredefinedAmounts button {\n background: none;\n margin: -1px 0 0 -1px;\n color: var(--emw--color-gray-150, #808080);\n border-radius: 0;\n}\n.ModalContainer .ModalBody .PredefinedAmounts button.Active {\n font-weight: bold;\n background: var(--emw--color-gray-50, #F7F8FA);\n color: var(--emw--color-gray-200, #323233);\n}\n.ModalContainer .ModalBody .PredefinedAmounts button:first-child {\n border-radius: 4px 0 0 4px;\n}\n.ModalContainer .ModalBody .PredefinedAmounts button:last-child {\n border-radius: 0 4px 4px 0;\n}\n.ModalContainer .ModalBody .CustomAmountInput {\n width: 100%;\n padding: 10px;\n border: 1px solid var(--emw--color-gray-100, #E8E9EB);\n border-radius: 4px;\n box-sizing: border-box;\n margin-bottom: 6px;\n color: var(--emw--color-gray-200, #323233);\n font-weight: bold;\n}\n.ModalContainer .ModalBody .CustomAmountInput.InvalidInput {\n border: 1px solid var(--emw--color-red, #FF0000);\n}\n.ModalContainer .ModalBody .InvalidParagraph {\n font-size: var(--emw--font-size-small, 12px);\n color: var(--emw--color-red, #FF0000);\n}\n.ModalContainer .ModalBody .SetLimitBtn {\n margin-top: 10px;\n border-radius: 4px;\n}\n.ModalContainer .ValidatorContainer {\n display: flex;\n flex-direction: column;\n justify-content: space-between;\n}\n.ModalContainer .Paragraphs:not(:last-child) {\n margin-bottom: 20px;\n}\n.ModalContainer .Paragraphs .KycThanks {\n font-weight: 500;\n text-align: center;\n padding-bottom: 12px;\n}\n.ModalContainer .Paragraphs .Kyc2 {\n color: var(--emw--color-gray-150, #666666);\n text-align: center;\n}\n.ModalContainer .LimitAmountWrapper {\n display: flex;\n flex-direction: column;\n gap: 10px;\n position: relative;\n}\n\n.ModalFooter {\n padding-top: 12px;\n margin: 5px 0px;\n}\n\n.Link {\n color: inherit;\n text-decoration: underline;\n cursor: pointer;\n}\n.Link.Inactive {\n cursor: default;\n color: var(--emw--color-gray-150, #808080);\n}\n\n.ContainerButtons {\n display: flex;\n justify-content: space-around;\n gap: 10px;\n padding-top: 5px;\n}\n.ContainerButtons .FirstButton {\n background-color: var(--emw--color-white, #FFF);\n font-weight: bold;\n color: var(--emw--button-color, #002554);\n font-size: var(--emw--font-size-small, 10px);\n border: 2.5px solid var(--emw--button-border-color, #DEE2E6);\n width: 100%;\n cursor: pointer;\n}\n.ContainerButtons .SecondButton {\n background-color: var(--emw--color-primary, #6BB816);\n border: none;\n cursor: pointer;\n font-weight: bold;\n font-size: var(--emw--font-size-small, 10px);\n color: var(--emw--color-white, #FFF);\n width: 100%;\n}\n.ContainerButtons button {\n width: 240px;\n height: 30px;\n}\n\n.ContainerOptions {\n padding-top: 10px;\n}\n.ContainerOptions > button {\n border-radius: 0;\n border-left: 0;\n border-right: 0;\n border-bottom: 0;\n border-top: 1px solid var(--emw--color-white, #E8E9EB);\n background-color: var(--emw--color-white, #FFFFFF);\n display: grid;\n text-align: left;\n font-size: 12px;\n grid-template-rows: 1fr 1fr;\n grid-template-columns: 1fr 20px;\n color: var(--emw--color-black, #111111);\n}\n.ContainerOptions > button:last-child {\n padding-bottom: 0;\n}\n.ContainerOptions .Option {\n font-family: "Roboto", sans-serif;\n grid-column: 1/2;\n grid-row: 1/2;\n font-weight: 400;\n}\n.ContainerOptions .OptionSubTitle {\n font-family: "Roboto Condensed", sans-serif;\n font-weight: 300;\n grid-column: 1/2;\n grid-row: 2/3;\n}\n.ContainerOptions .ArrowIcon {\n grid-column: 2/3;\n grid-row: 1/3;\n margin: auto;\n}\n\ninput {\n /* Firefox */\n -moz-appearance: textfield;\n /* Chrome, Safari, Edge, Opera */\n}\ninput::-webkit-outer-spin-button, input::-webkit-inner-spin-button {\n -webkit-appearance: none;\n margin: 0;\n}\n\n@container (max-width: 1300px) {\n .ModalContainer .Container {\n width: 50%;\n }\n}\n@container (max-width: 800px) {\n .ModalContainer .Container {\n width: 70%;\n }\n}\n.LoadingWrapper {\n width: 100%;\n height: 100%;\n background: var(--emw--color-white-transparency-80, rgba(255, 255, 255, 0.8));\n position: absolute;\n display: flex;\n justify-content: center;\n align-items: center;\n}\n\n.spinner {\n animation: rotate 2s linear infinite;\n z-index: 2;\n width: 30px;\n height: 30px;\n}\n.spinner .path {\n stroke: var(--emw--color-primary, #6BB816);\n stroke-linecap: round;\n animation: dash 1.5s ease-in-out infinite;\n}\n\n.DocumentIcon {\n padding: 20px 48px 0 86px;\n}\n\n@keyframes rotate {\n 100% {\n transform: rotate(360deg);\n }\n}\n@keyframes dash {\n 0% {\n stroke-dasharray: 1, 150;\n stroke-dashoffset: 0;\n }\n 50% {\n stroke-dasharray: 90, 150;\n stroke-dashoffset: -35;\n }\n 100% {\n stroke-dasharray: 90, 150;\n stroke-dashoffset: -124;\n }\n}';export{s as player_lugas_limit}
@@ -1 +1 @@
1
- import{p as i,b as n}from"./index-43ec4fd3.js";export{s as setNonce}from"./index-43ec4fd3.js";import{g as t}from"./app-globals-0f993ce5.js";(()=>{const n=import.meta.url,t={};return""!==n&&(t.resourcesUrl=new URL(".",n).href),i(t)})().then((async i=>(await t(),n([["player-lugas-limit",[[1,"player-lugas-limit",{userId:[513,"user-id"],session:[513],endpoint:[513],currency:[513],flow:[513],amount:[513],lang:[513],clientStyling:[513,"client-styling"],clientStylingUrl:[513,"client-styling-url"],mbSource:[513,"mb-source"],translationUrl:[513,"translation-url"],showExistingLimit:[516,"show-existing-limit"],hasValidation:[32],kycStep:[32],isLoading:[32],regularDepositLimitAmount:[32],isSubmitted:[32],isUseExistingLimitOptionActive:[32],selectedPredefinedAmount:[32],errorMessageOnInitialization:[32],errorMessageOnSubmit:[32],errorMessageOnInput:[32],hasLugasError:[32],showCustomAmount:[32],newAmount:[32]},null,{translationUrl:["handleNewTranslations"],clientStyling:["handleClientStylingChange"],clientStylingUrl:["handleClientStylingUrlChange"]}]]]],i))));
1
+ import{p as t,b as i}from"./index-43ec4fd3.js";export{s as setNonce}from"./index-43ec4fd3.js";import{g as n}from"./app-globals-0f993ce5.js";(()=>{const i=import.meta.url,n={};return""!==i&&(n.resourcesUrl=new URL(".",i).href),t(n)})().then((async t=>(await n(),i([["player-lugas-limit",[[1,"player-lugas-limit",{userId:[513,"user-id"],session:[513],endpoint:[513],currency:[513],flow:[513],amount:[513],lang:[513],clientStyling:[513,"client-styling"],clientStylingUrl:[513,"client-styling-url"],mbSource:[513,"mb-source"],translationUrl:[513,"translation-url"],showExistingLimit:[516,"show-existing-limit"],buttonTextStrategy:[513,"button-text-strategy"],hasValidation:[32],kycStep:[32],isLoading:[32],regularDepositLimitAmount:[32],isSubmitted:[32],isUseExistingLimitOptionActive:[32],selectedPredefinedAmount:[32],errorMessageOnInitialization:[32],errorMessageOnSubmit:[32],errorMessageOnInput:[32],hasLugasError:[32],showCustomAmount:[32],newAmount:[32]},null,{translationUrl:["handleNewTranslations"],clientStyling:["handleClientStylingChange"],clientStylingUrl:["handleClientStylingUrlChange"]}]]]],t))));
@@ -12,6 +12,7 @@ export declare class PlayerLugasLimit {
12
12
  mbSource: string;
13
13
  translationUrl: string;
14
14
  showExistingLimit: boolean;
15
+ buttonTextStrategy: '' | 'preferInteger';
15
16
  hasValidation: boolean;
16
17
  kycStep: number;
17
18
  isLoading: boolean;
@@ -54,6 +55,8 @@ export declare class PlayerLugasLimit {
54
55
  renderKYC(step: any): any;
55
56
  renderPredefinedButtons(): any[];
56
57
  goToPrivacyPolicy(): void;
58
+ formatSetButtonText(): string;
59
+ renderSetButton(): any;
57
60
  renderValidator(): any;
58
61
  renderTitle(): string;
59
62
  render(): any;
@@ -8,6 +8,7 @@ import { HTMLStencilElement, JSXBase } from "./stencil-public-runtime";
8
8
  export namespace Components {
9
9
  interface PlayerLugasLimit {
10
10
  "amount": string;
11
+ "buttonTextStrategy": '' | 'preferInteger';
11
12
  "clientStyling": string;
12
13
  "clientStylingUrl": string;
13
14
  "currency": string;
@@ -52,6 +53,7 @@ declare global {
52
53
  declare namespace LocalJSX {
53
54
  interface PlayerLugasLimit {
54
55
  "amount"?: string;
56
+ "buttonTextStrategy"?: '' | 'preferInteger';
55
57
  "clientStyling"?: string;
56
58
  "clientStylingUrl"?: string;
57
59
  "currency"?: string;
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@everymatrix/player-lugas-limit",
3
- "version": "1.80.3",
3
+ "version": "1.80.5",
4
4
  "main": "./dist/index.cjs.js",
5
5
  "module": "./dist/index.js",
6
6
  "es2015": "./dist/esm/index.mjs",