') !== '7';\n});\n\n// @@replace logic\nfixRegExpWellKnownSymbolLogic('replace', function (_, nativeReplace, maybeCallNative) {\n var UNSAFE_SUBSTITUTE = REGEXP_REPLACE_SUBSTITUTES_UNDEFINED_CAPTURE ? '$' : '$0';\n\n return [\n // `String.prototype.replace` method\n // https://tc39.es/ecma262/#sec-string.prototype.replace\n function replace(searchValue, replaceValue) {\n var O = requireObjectCoercible(this);\n var replacer = isNullOrUndefined(searchValue) ? undefined : getMethod(searchValue, REPLACE);\n return replacer\n ? call(replacer, searchValue, O, replaceValue)\n : call(nativeReplace, toString(O), searchValue, replaceValue);\n },\n // `RegExp.prototype[@@replace]` method\n // https://tc39.es/ecma262/#sec-regexp.prototype-@@replace\n function (string, replaceValue) {\n var rx = anObject(this);\n var S = toString(string);\n\n if (\n typeof replaceValue == 'string' &&\n stringIndexOf(replaceValue, UNSAFE_SUBSTITUTE) === -1 &&\n stringIndexOf(replaceValue, '$<') === -1\n ) {\n var res = maybeCallNative(nativeReplace, rx, S, replaceValue);\n if (res.done) return res.value;\n }\n\n var functionalReplace = isCallable(replaceValue);\n if (!functionalReplace) replaceValue = toString(replaceValue);\n\n var global = rx.global;\n var fullUnicode;\n if (global) {\n fullUnicode = rx.unicode;\n rx.lastIndex = 0;\n }\n\n var results = [];\n var result;\n while (true) {\n result = regExpExec(rx, S);\n if (result === null) break;\n\n push(results, result);\n if (!global) break;\n\n var matchStr = toString(result[0]);\n if (matchStr === '') rx.lastIndex = advanceStringIndex(S, toLength(rx.lastIndex), fullUnicode);\n }\n\n var accumulatedResult = '';\n var nextSourcePosition = 0;\n for (var i = 0; i < results.length; i++) {\n result = results[i];\n\n var matched = toString(result[0]);\n var position = max(min(toIntegerOrInfinity(result.index), S.length), 0);\n var captures = [];\n var replacement;\n // NOTE: This is equivalent to\n // captures = result.slice(1).map(maybeToString)\n // but for some reason `nativeSlice.call(result, 1, result.length)` (called in\n // the slice polyfill when slicing native arrays) \"doesn't work\" in safari 9 and\n // causes a crash (https://pastebin.com/N21QzeQA) when trying to debug it.\n for (var j = 1; j < result.length; j++) push(captures, maybeToString(result[j]));\n var namedCaptures = result.groups;\n if (functionalReplace) {\n var replacerArgs = concat([matched], captures, position, S);\n if (namedCaptures !== undefined) push(replacerArgs, namedCaptures);\n replacement = toString(apply(replaceValue, undefined, replacerArgs));\n } else {\n replacement = getSubstitution(matched, S, position, captures, namedCaptures, replaceValue);\n }\n if (position >= nextSourcePosition) {\n accumulatedResult += stringSlice(S, nextSourcePosition, position) + replacement;\n nextSourcePosition = position + matched.length;\n }\n }\n\n return accumulatedResult + stringSlice(S, nextSourcePosition);\n }\n ];\n}, !REPLACE_SUPPORTS_NAMED_GROUPS || !REPLACE_KEEPS_$0 || REGEXP_REPLACE_SUBSTITUTES_UNDEFINED_CAPTURE);\n","'use strict';\nvar $ = require('../internals/export');\nvar globalThis = require('../internals/global-this');\nvar call = require('../internals/function-call');\nvar uncurryThis = require('../internals/function-uncurry-this');\nvar IS_PURE = require('../internals/is-pure');\nvar DESCRIPTORS = require('../internals/descriptors');\nvar NATIVE_SYMBOL = require('../internals/symbol-constructor-detection');\nvar fails = require('../internals/fails');\nvar hasOwn = require('../internals/has-own-property');\nvar isPrototypeOf = require('../internals/object-is-prototype-of');\nvar anObject = require('../internals/an-object');\nvar toIndexedObject = require('../internals/to-indexed-object');\nvar toPropertyKey = require('../internals/to-property-key');\nvar $toString = require('../internals/to-string');\nvar createPropertyDescriptor = require('../internals/create-property-descriptor');\nvar nativeObjectCreate = require('../internals/object-create');\nvar objectKeys = require('../internals/object-keys');\nvar getOwnPropertyNamesModule = require('../internals/object-get-own-property-names');\nvar getOwnPropertyNamesExternal = require('../internals/object-get-own-property-names-external');\nvar getOwnPropertySymbolsModule = require('../internals/object-get-own-property-symbols');\nvar getOwnPropertyDescriptorModule = require('../internals/object-get-own-property-descriptor');\nvar definePropertyModule = require('../internals/object-define-property');\nvar definePropertiesModule = require('../internals/object-define-properties');\nvar propertyIsEnumerableModule = require('../internals/object-property-is-enumerable');\nvar defineBuiltIn = require('../internals/define-built-in');\nvar defineBuiltInAccessor = require('../internals/define-built-in-accessor');\nvar shared = require('../internals/shared');\nvar sharedKey = require('../internals/shared-key');\nvar hiddenKeys = require('../internals/hidden-keys');\nvar uid = require('../internals/uid');\nvar wellKnownSymbol = require('../internals/well-known-symbol');\nvar wrappedWellKnownSymbolModule = require('../internals/well-known-symbol-wrapped');\nvar defineWellKnownSymbol = require('../internals/well-known-symbol-define');\nvar defineSymbolToPrimitive = require('../internals/symbol-define-to-primitive');\nvar setToStringTag = require('../internals/set-to-string-tag');\nvar InternalStateModule = require('../internals/internal-state');\nvar $forEach = require('../internals/array-iteration').forEach;\n\nvar HIDDEN = sharedKey('hidden');\nvar SYMBOL = 'Symbol';\nvar PROTOTYPE = 'prototype';\n\nvar setInternalState = InternalStateModule.set;\nvar getInternalState = InternalStateModule.getterFor(SYMBOL);\n\nvar ObjectPrototype = Object[PROTOTYPE];\nvar $Symbol = globalThis.Symbol;\nvar SymbolPrototype = $Symbol && $Symbol[PROTOTYPE];\nvar RangeError = globalThis.RangeError;\nvar TypeError = globalThis.TypeError;\nvar QObject = globalThis.QObject;\nvar nativeGetOwnPropertyDescriptor = getOwnPropertyDescriptorModule.f;\nvar nativeDefineProperty = definePropertyModule.f;\nvar nativeGetOwnPropertyNames = getOwnPropertyNamesExternal.f;\nvar nativePropertyIsEnumerable = propertyIsEnumerableModule.f;\nvar push = uncurryThis([].push);\n\nvar AllSymbols = shared('symbols');\nvar ObjectPrototypeSymbols = shared('op-symbols');\nvar WellKnownSymbolsStore = shared('wks');\n\n// Don't use setters in Qt Script, https://github.com/zloirock/core-js/issues/173\nvar USE_SETTER = !QObject || !QObject[PROTOTYPE] || !QObject[PROTOTYPE].findChild;\n\n// fallback for old Android, https://code.google.com/p/v8/issues/detail?id=687\nvar fallbackDefineProperty = function (O, P, Attributes) {\n var ObjectPrototypeDescriptor = nativeGetOwnPropertyDescriptor(ObjectPrototype, P);\n if (ObjectPrototypeDescriptor) delete ObjectPrototype[P];\n nativeDefineProperty(O, P, Attributes);\n if (ObjectPrototypeDescriptor && O !== ObjectPrototype) {\n nativeDefineProperty(ObjectPrototype, P, ObjectPrototypeDescriptor);\n }\n};\n\nvar setSymbolDescriptor = DESCRIPTORS && fails(function () {\n return nativeObjectCreate(nativeDefineProperty({}, 'a', {\n get: function () { return nativeDefineProperty(this, 'a', { value: 7 }).a; }\n })).a !== 7;\n}) ? fallbackDefineProperty : nativeDefineProperty;\n\nvar wrap = function (tag, description) {\n var symbol = AllSymbols[tag] = nativeObjectCreate(SymbolPrototype);\n setInternalState(symbol, {\n type: SYMBOL,\n tag: tag,\n description: description\n });\n if (!DESCRIPTORS) symbol.description = description;\n return symbol;\n};\n\nvar $defineProperty = function defineProperty(O, P, Attributes) {\n if (O === ObjectPrototype) $defineProperty(ObjectPrototypeSymbols, P, Attributes);\n anObject(O);\n var key = toPropertyKey(P);\n anObject(Attributes);\n if (hasOwn(AllSymbols, key)) {\n if (!Attributes.enumerable) {\n if (!hasOwn(O, HIDDEN)) nativeDefineProperty(O, HIDDEN, createPropertyDescriptor(1, nativeObjectCreate(null)));\n O[HIDDEN][key] = true;\n } else {\n if (hasOwn(O, HIDDEN) && O[HIDDEN][key]) O[HIDDEN][key] = false;\n Attributes = nativeObjectCreate(Attributes, { enumerable: createPropertyDescriptor(0, false) });\n } return setSymbolDescriptor(O, key, Attributes);\n } return nativeDefineProperty(O, key, Attributes);\n};\n\nvar $defineProperties = function defineProperties(O, Properties) {\n anObject(O);\n var properties = toIndexedObject(Properties);\n var keys = objectKeys(properties).concat($getOwnPropertySymbols(properties));\n $forEach(keys, function (key) {\n if (!DESCRIPTORS || call($propertyIsEnumerable, properties, key)) $defineProperty(O, key, properties[key]);\n });\n return O;\n};\n\nvar $create = function create(O, Properties) {\n return Properties === undefined ? nativeObjectCreate(O) : $defineProperties(nativeObjectCreate(O), Properties);\n};\n\nvar $propertyIsEnumerable = function propertyIsEnumerable(V) {\n var P = toPropertyKey(V);\n var enumerable = call(nativePropertyIsEnumerable, this, P);\n if (this === ObjectPrototype && hasOwn(AllSymbols, P) && !hasOwn(ObjectPrototypeSymbols, P)) return false;\n return enumerable || !hasOwn(this, P) || !hasOwn(AllSymbols, P) || hasOwn(this, HIDDEN) && this[HIDDEN][P]\n ? enumerable : true;\n};\n\nvar $getOwnPropertyDescriptor = function getOwnPropertyDescriptor(O, P) {\n var it = toIndexedObject(O);\n var key = toPropertyKey(P);\n if (it === ObjectPrototype && hasOwn(AllSymbols, key) && !hasOwn(ObjectPrototypeSymbols, key)) return;\n var descriptor = nativeGetOwnPropertyDescriptor(it, key);\n if (descriptor && hasOwn(AllSymbols, key) && !(hasOwn(it, HIDDEN) && it[HIDDEN][key])) {\n descriptor.enumerable = true;\n }\n return descriptor;\n};\n\nvar $getOwnPropertyNames = function getOwnPropertyNames(O) {\n var names = nativeGetOwnPropertyNames(toIndexedObject(O));\n var result = [];\n $forEach(names, function (key) {\n if (!hasOwn(AllSymbols, key) && !hasOwn(hiddenKeys, key)) push(result, key);\n });\n return result;\n};\n\nvar $getOwnPropertySymbols = function (O) {\n var IS_OBJECT_PROTOTYPE = O === ObjectPrototype;\n var names = nativeGetOwnPropertyNames(IS_OBJECT_PROTOTYPE ? ObjectPrototypeSymbols : toIndexedObject(O));\n var result = [];\n $forEach(names, function (key) {\n if (hasOwn(AllSymbols, key) && (!IS_OBJECT_PROTOTYPE || hasOwn(ObjectPrototype, key))) {\n push(result, AllSymbols[key]);\n }\n });\n return result;\n};\n\n// `Symbol` constructor\n// https://tc39.es/ecma262/#sec-symbol-constructor\nif (!NATIVE_SYMBOL) {\n $Symbol = function Symbol() {\n if (isPrototypeOf(SymbolPrototype, this)) throw new TypeError('Symbol is not a constructor');\n var description = !arguments.length || arguments[0] === undefined ? undefined : $toString(arguments[0]);\n var tag = uid(description);\n var setter = function (value) {\n var $this = this === undefined ? globalThis : this;\n if ($this === ObjectPrototype) call(setter, ObjectPrototypeSymbols, value);\n if (hasOwn($this, HIDDEN) && hasOwn($this[HIDDEN], tag)) $this[HIDDEN][tag] = false;\n var descriptor = createPropertyDescriptor(1, value);\n try {\n setSymbolDescriptor($this, tag, descriptor);\n } catch (error) {\n if (!(error instanceof RangeError)) throw error;\n fallbackDefineProperty($this, tag, descriptor);\n }\n };\n if (DESCRIPTORS && USE_SETTER) setSymbolDescriptor(ObjectPrototype, tag, { configurable: true, set: setter });\n return wrap(tag, description);\n };\n\n SymbolPrototype = $Symbol[PROTOTYPE];\n\n defineBuiltIn(SymbolPrototype, 'toString', function toString() {\n return getInternalState(this).tag;\n });\n\n defineBuiltIn($Symbol, 'withoutSetter', function (description) {\n return wrap(uid(description), description);\n });\n\n propertyIsEnumerableModule.f = $propertyIsEnumerable;\n definePropertyModule.f = $defineProperty;\n definePropertiesModule.f = $defineProperties;\n getOwnPropertyDescriptorModule.f = $getOwnPropertyDescriptor;\n getOwnPropertyNamesModule.f = getOwnPropertyNamesExternal.f = $getOwnPropertyNames;\n getOwnPropertySymbolsModule.f = $getOwnPropertySymbols;\n\n wrappedWellKnownSymbolModule.f = function (name) {\n return wrap(wellKnownSymbol(name), name);\n };\n\n if (DESCRIPTORS) {\n // https://github.com/tc39/proposal-Symbol-description\n defineBuiltInAccessor(SymbolPrototype, 'description', {\n configurable: true,\n get: function description() {\n return getInternalState(this).description;\n }\n });\n if (!IS_PURE) {\n defineBuiltIn(ObjectPrototype, 'propertyIsEnumerable', $propertyIsEnumerable, { unsafe: true });\n }\n }\n}\n\n$({ global: true, constructor: true, wrap: true, forced: !NATIVE_SYMBOL, sham: !NATIVE_SYMBOL }, {\n Symbol: $Symbol\n});\n\n$forEach(objectKeys(WellKnownSymbolsStore), function (name) {\n defineWellKnownSymbol(name);\n});\n\n$({ target: SYMBOL, stat: true, forced: !NATIVE_SYMBOL }, {\n useSetter: function () { USE_SETTER = true; },\n useSimple: function () { USE_SETTER = false; }\n});\n\n$({ target: 'Object', stat: true, forced: !NATIVE_SYMBOL, sham: !DESCRIPTORS }, {\n // `Object.create` method\n // https://tc39.es/ecma262/#sec-object.create\n create: $create,\n // `Object.defineProperty` method\n // https://tc39.es/ecma262/#sec-object.defineproperty\n defineProperty: $defineProperty,\n // `Object.defineProperties` method\n // https://tc39.es/ecma262/#sec-object.defineproperties\n defineProperties: $defineProperties,\n // `Object.getOwnPropertyDescriptor` method\n // https://tc39.es/ecma262/#sec-object.getownpropertydescriptors\n getOwnPropertyDescriptor: $getOwnPropertyDescriptor\n});\n\n$({ target: 'Object', stat: true, forced: !NATIVE_SYMBOL }, {\n // `Object.getOwnPropertyNames` method\n // https://tc39.es/ecma262/#sec-object.getownpropertynames\n getOwnPropertyNames: $getOwnPropertyNames\n});\n\n// `Symbol.prototype[@@toPrimitive]` method\n// https://tc39.es/ecma262/#sec-symbol.prototype-@@toprimitive\ndefineSymbolToPrimitive();\n\n// `Symbol.prototype[@@toStringTag]` property\n// https://tc39.es/ecma262/#sec-symbol.prototype-@@tostringtag\nsetToStringTag($Symbol, SYMBOL);\n\nhiddenKeys[HIDDEN] = true;\n","// `Symbol.prototype.description` getter\n// https://tc39.es/ecma262/#sec-symbol.prototype.description\n'use strict';\nvar $ = require('../internals/export');\nvar DESCRIPTORS = require('../internals/descriptors');\nvar globalThis = require('../internals/global-this');\nvar uncurryThis = require('../internals/function-uncurry-this');\nvar hasOwn = require('../internals/has-own-property');\nvar isCallable = require('../internals/is-callable');\nvar isPrototypeOf = require('../internals/object-is-prototype-of');\nvar toString = require('../internals/to-string');\nvar defineBuiltInAccessor = require('../internals/define-built-in-accessor');\nvar copyConstructorProperties = require('../internals/copy-constructor-properties');\n\nvar NativeSymbol = globalThis.Symbol;\nvar SymbolPrototype = NativeSymbol && NativeSymbol.prototype;\n\nif (DESCRIPTORS && isCallable(NativeSymbol) && (!('description' in SymbolPrototype) ||\n // Safari 12 bug\n NativeSymbol().description !== undefined\n)) {\n var EmptyStringDescriptionStore = {};\n // wrap Symbol constructor for correct work with undefined description\n var SymbolWrapper = function Symbol() {\n var description = arguments.length < 1 || arguments[0] === undefined ? undefined : toString(arguments[0]);\n var result = isPrototypeOf(SymbolPrototype, this)\n // eslint-disable-next-line sonarjs/inconsistent-function-call -- ok\n ? new NativeSymbol(description)\n // in Edge 13, String(Symbol(undefined)) === 'Symbol(undefined)'\n : description === undefined ? NativeSymbol() : NativeSymbol(description);\n if (description === '') EmptyStringDescriptionStore[result] = true;\n return result;\n };\n\n copyConstructorProperties(SymbolWrapper, NativeSymbol);\n SymbolWrapper.prototype = SymbolPrototype;\n SymbolPrototype.constructor = SymbolWrapper;\n\n var NATIVE_SYMBOL = String(NativeSymbol('description detection')) === 'Symbol(description detection)';\n var thisSymbolValue = uncurryThis(SymbolPrototype.valueOf);\n var symbolDescriptiveString = uncurryThis(SymbolPrototype.toString);\n var regexp = /^Symbol\\((.*)\\)[^)]+$/;\n var replace = uncurryThis(''.replace);\n var stringSlice = uncurryThis(''.slice);\n\n defineBuiltInAccessor(SymbolPrototype, 'description', {\n configurable: true,\n get: function description() {\n var symbol = thisSymbolValue(this);\n if (hasOwn(EmptyStringDescriptionStore, symbol)) return '';\n var string = symbolDescriptiveString(symbol);\n var desc = NATIVE_SYMBOL ? stringSlice(string, 7, -1) : replace(string, regexp, '$1');\n return desc === '' ? undefined : desc;\n }\n });\n\n $({ global: true, constructor: true, forced: true }, {\n Symbol: SymbolWrapper\n });\n}\n","'use strict';\nvar $ = require('../internals/export');\nvar getBuiltIn = require('../internals/get-built-in');\nvar hasOwn = require('../internals/has-own-property');\nvar toString = require('../internals/to-string');\nvar shared = require('../internals/shared');\nvar NATIVE_SYMBOL_REGISTRY = require('../internals/symbol-registry-detection');\n\nvar StringToSymbolRegistry = shared('string-to-symbol-registry');\nvar SymbolToStringRegistry = shared('symbol-to-string-registry');\n\n// `Symbol.for` method\n// https://tc39.es/ecma262/#sec-symbol.for\n$({ target: 'Symbol', stat: true, forced: !NATIVE_SYMBOL_REGISTRY }, {\n 'for': function (key) {\n var string = toString(key);\n if (hasOwn(StringToSymbolRegistry, string)) return StringToSymbolRegistry[string];\n var symbol = getBuiltIn('Symbol')(string);\n StringToSymbolRegistry[string] = symbol;\n SymbolToStringRegistry[symbol] = string;\n return symbol;\n }\n});\n","'use strict';\nvar defineWellKnownSymbol = require('../internals/well-known-symbol-define');\n\n// `Symbol.iterator` well-known symbol\n// https://tc39.es/ecma262/#sec-symbol.iterator\ndefineWellKnownSymbol('iterator');\n","'use strict';\n// TODO: Remove this module from `core-js@4` since it's split to modules listed below\nrequire('../modules/es.symbol.constructor');\nrequire('../modules/es.symbol.for');\nrequire('../modules/es.symbol.key-for');\nrequire('../modules/es.json.stringify');\nrequire('../modules/es.object.get-own-property-symbols');\n","'use strict';\nvar $ = require('../internals/export');\nvar hasOwn = require('../internals/has-own-property');\nvar isSymbol = require('../internals/is-symbol');\nvar tryToString = require('../internals/try-to-string');\nvar shared = require('../internals/shared');\nvar NATIVE_SYMBOL_REGISTRY = require('../internals/symbol-registry-detection');\n\nvar SymbolToStringRegistry = shared('symbol-to-string-registry');\n\n// `Symbol.keyFor` method\n// https://tc39.es/ecma262/#sec-symbol.keyfor\n$({ target: 'Symbol', stat: true, forced: !NATIVE_SYMBOL_REGISTRY }, {\n keyFor: function keyFor(sym) {\n if (!isSymbol(sym)) throw new TypeError(tryToString(sym) + ' is not a symbol');\n if (hasOwn(SymbolToStringRegistry, sym)) return SymbolToStringRegistry[sym];\n }\n});\n","'use strict';\nvar globalThis = require('../internals/global-this');\nvar DOMIterables = require('../internals/dom-iterables');\nvar DOMTokenListPrototype = require('../internals/dom-token-list-prototype');\nvar forEach = require('../internals/array-for-each');\nvar createNonEnumerableProperty = require('../internals/create-non-enumerable-property');\n\nvar handlePrototype = function (CollectionPrototype) {\n // some Chrome versions have non-configurable methods on DOMTokenList\n if (CollectionPrototype && CollectionPrototype.forEach !== forEach) try {\n createNonEnumerableProperty(CollectionPrototype, 'forEach', forEach);\n } catch (error) {\n CollectionPrototype.forEach = forEach;\n }\n};\n\nfor (var COLLECTION_NAME in DOMIterables) {\n if (DOMIterables[COLLECTION_NAME]) {\n handlePrototype(globalThis[COLLECTION_NAME] && globalThis[COLLECTION_NAME].prototype);\n }\n}\n\nhandlePrototype(DOMTokenListPrototype);\n","'use strict';\nvar globalThis = require('../internals/global-this');\nvar DOMIterables = require('../internals/dom-iterables');\nvar DOMTokenListPrototype = require('../internals/dom-token-list-prototype');\nvar ArrayIteratorMethods = require('../modules/es.array.iterator');\nvar createNonEnumerableProperty = require('../internals/create-non-enumerable-property');\nvar setToStringTag = require('../internals/set-to-string-tag');\nvar wellKnownSymbol = require('../internals/well-known-symbol');\n\nvar ITERATOR = wellKnownSymbol('iterator');\nvar ArrayValues = ArrayIteratorMethods.values;\n\nvar handlePrototype = function (CollectionPrototype, COLLECTION_NAME) {\n if (CollectionPrototype) {\n // some Chrome versions have non-configurable methods on DOMTokenList\n if (CollectionPrototype[ITERATOR] !== ArrayValues) try {\n createNonEnumerableProperty(CollectionPrototype, ITERATOR, ArrayValues);\n } catch (error) {\n CollectionPrototype[ITERATOR] = ArrayValues;\n }\n setToStringTag(CollectionPrototype, COLLECTION_NAME, true);\n if (DOMIterables[COLLECTION_NAME]) for (var METHOD_NAME in ArrayIteratorMethods) {\n // some Chrome versions have non-configurable methods on DOMTokenList\n if (CollectionPrototype[METHOD_NAME] !== ArrayIteratorMethods[METHOD_NAME]) try {\n createNonEnumerableProperty(CollectionPrototype, METHOD_NAME, ArrayIteratorMethods[METHOD_NAME]);\n } catch (error) {\n CollectionPrototype[METHOD_NAME] = ArrayIteratorMethods[METHOD_NAME];\n }\n }\n }\n};\n\nfor (var COLLECTION_NAME in DOMIterables) {\n handlePrototype(globalThis[COLLECTION_NAME] && globalThis[COLLECTION_NAME].prototype, COLLECTION_NAME);\n}\n\nhandlePrototype(DOMTokenListPrototype, 'DOMTokenList');\n","// The module cache\nvar __webpack_module_cache__ = {};\n\n// The require function\nfunction __webpack_require__(moduleId) {\n\t// Check if module is in cache\n\tvar cachedModule = __webpack_module_cache__[moduleId];\n\tif (cachedModule !== undefined) {\n\t\treturn cachedModule.exports;\n\t}\n\t// Create a new module (and put it into the cache)\n\tvar module = __webpack_module_cache__[moduleId] = {\n\t\t// no module.id needed\n\t\t// no module.loaded needed\n\t\texports: {}\n\t};\n\n\t// Execute the module function\n\t__webpack_modules__[moduleId].call(module.exports, module, module.exports, __webpack_require__);\n\n\t// Return the exports of the module\n\treturn module.exports;\n}\n\n","function _newArrowCheck(n, r) {\n if (n !== r) throw new TypeError(\"Cannot instantiate an arrow function\");\n}\nexport { _newArrowCheck as default };","__webpack_require__.g = (function() {\n\tif (typeof globalThis === 'object') return globalThis;\n\ttry {\n\t\treturn this || new Function('return this')();\n\t} catch (e) {\n\t\tif (typeof window === 'object') return window;\n\t}\n})();","function _typeof(o) {\n \"@babel/helpers - typeof\";\n\n return _typeof = \"function\" == typeof Symbol && \"symbol\" == typeof Symbol.iterator ? function (o) {\n return typeof o;\n } : function (o) {\n return o && \"function\" == typeof Symbol && o.constructor === Symbol && o !== Symbol.prototype ? \"symbol\" : typeof o;\n }, _typeof(o);\n}\nexport { _typeof as default };","function _arrayLikeToArray(r, a) {\n (null == a || a > r.length) && (a = r.length);\n for (var e = 0, n = Array(a); e < a; e++) n[e] = r[e];\n return n;\n}\nexport { _arrayLikeToArray as default };","import arrayWithHoles from \"./arrayWithHoles.js\";\nimport iterableToArrayLimit from \"./iterableToArrayLimit.js\";\nimport unsupportedIterableToArray from \"./unsupportedIterableToArray.js\";\nimport nonIterableRest from \"./nonIterableRest.js\";\nfunction _slicedToArray(r, e) {\n return arrayWithHoles(r) || iterableToArrayLimit(r, e) || unsupportedIterableToArray(r, e) || nonIterableRest();\n}\nexport { _slicedToArray as default };","function _arrayWithHoles(r) {\n if (Array.isArray(r)) return r;\n}\nexport { _arrayWithHoles as default };","function _iterableToArrayLimit(r, l) {\n var t = null == r ? null : \"undefined\" != typeof Symbol && r[Symbol.iterator] || r[\"@@iterator\"];\n if (null != t) {\n var e,\n n,\n i,\n u,\n a = [],\n f = !0,\n o = !1;\n try {\n if (i = (t = t.call(r)).next, 0 === l) {\n if (Object(t) !== t) return;\n f = !1;\n } else for (; !(f = (e = i.call(t)).done) && (a.push(e.value), a.length !== l); f = !0);\n } catch (r) {\n o = !0, n = r;\n } finally {\n try {\n if (!f && null != t[\"return\"] && (u = t[\"return\"](), Object(u) !== u)) return;\n } finally {\n if (o) throw n;\n }\n }\n return a;\n }\n}\nexport { _iterableToArrayLimit as default };","import arrayLikeToArray from \"./arrayLikeToArray.js\";\nfunction _unsupportedIterableToArray(r, a) {\n if (r) {\n if (\"string\" == typeof r) return arrayLikeToArray(r, a);\n var t = {}.toString.call(r).slice(8, -1);\n return \"Object\" === t && r.constructor && (t = r.constructor.name), \"Map\" === t || \"Set\" === t ? Array.from(r) : \"Arguments\" === t || /^(?:Ui|I)nt(?:8|16|32)(?:Clamped)?Array$/.test(t) ? arrayLikeToArray(r, a) : void 0;\n }\n}\nexport { _unsupportedIterableToArray as default };","function _nonIterableRest() {\n throw new TypeError(\"Invalid attempt to destructure non-iterable instance.\\nIn order to be iterable, non-array objects must have a [Symbol.iterator]() method.\");\n}\nexport { _nonIterableRest as default };","'use strict';\r\nimport { handleTagCo } from './tagCommanderAction';\r\n\r\nexport function httpRequestXmlEncoded(url, method, formElement, onSuccess, onFailed) {\r\n const xmlhttp = new XMLHttpRequest();\r\n\r\n xmlhttp.onreadystatechange = function () {\r\n if (xmlhttp.readyState === XMLHttpRequest.DONE) {\r\n\r\n if (xmlhttp.status === 401) window.location.reload();\r\n\r\n if (xmlhttp.status === 400) {\r\n if (xmlhttp.responseText) {\r\n const response = JSON.parse(xmlhttp.responseText);\r\n onFailed(response);\r\n }\r\n else {\r\n onFailed(response);\r\n }\r\n }\r\n\r\n if (xmlhttp.status !== 400 && xmlhttp.responseText) {\r\n const response = JSON.parse(xmlhttp.responseText);\r\n if (xmlhttp.status === 200 || xmlhttp.status === 201 || xmlhttp.status === 202) {\r\n onSuccess(response);\r\n handleTagCo(response);\r\n } else {\r\n onFailed(response);\r\n }\r\n }\r\n }\r\n };\r\n\r\n xmlhttp.open(method, url, true);\r\n xmlhttp.setRequestHeader('Content-Type', 'application/x-www-form-urlencoded');\r\n xmlhttp.setRequestHeader('X-Requested-With', 'XMLHttpRequest');\r\n\r\n const data = new FormData(formElement);\r\n\r\n if (data !== undefined && data !== null) {\r\n const urlEncodedDataPairs = [];\r\n\r\n for (const [name, value] of data) {\r\n urlEncodedDataPairs.push(`${encodeURIComponent(name)}=${encodeURIComponent(value)}`);\r\n }\r\n\r\n const urlEncodedData = urlEncodedDataPairs.join('&').replace(/%20/g, '+');\r\n xmlhttp.send(urlEncodedData);\r\n } else {\r\n xmlhttp.send();\r\n }\r\n}\r\n\r\nexport function httpRequestXmlJsonToEncoded(url, method, json, onSuccess, onFailed) {\r\n const xmlhttp = new XMLHttpRequest();\r\n\r\n xmlhttp.onreadystatechange = function () {\r\n if (xmlhttp.readyState === XMLHttpRequest.DONE) {\r\n\r\n if (xmlhttp.status === 401) window.location.reload();\r\n\r\n if (xmlhttp.status === 400) onFailed();\r\n\r\n if (xmlhttp.status !== 400 && xmlhttp.responseText) {\r\n const response = JSON.parse(xmlhttp.responseText);\r\n if (xmlhttp.status === 200 || xmlhttp.status === 201 || xmlhttp.status === 202) {\r\n onSuccess(response);\r\n handleTagCo(response);\r\n } else {\r\n onFailed(response);\r\n }\r\n }\r\n }\r\n };\r\n\r\n xmlhttp.open(method, url, true);\r\n xmlhttp.setRequestHeader('Content-Type', 'application/x-www-form-urlencoded');\r\n xmlhttp.setRequestHeader('X-Requested-With', 'XMLHttpRequest');\r\n\r\n const data = new jsonToFormData(json);\r\n\r\n if (data !== undefined && data !== null) {\r\n const urlEncodedDataPairs = [];\r\n\r\n for (const [name, value] of data) {\r\n urlEncodedDataPairs.push(`${encodeURIComponent(name)}=${encodeURIComponent(value)}`);\r\n }\r\n\r\n const urlEncodedData = urlEncodedDataPairs.join('&').replace(/%20/g, '+');\r\n xmlhttp.send(urlEncodedData);\r\n } else {\r\n xmlhttp.send();\r\n }\r\n\r\n function buildFormData(formData, data, parentKey) {\r\n if (data && typeof data === 'object' && !(data instanceof Date) && !(data instanceof File)) {\r\n Object.keys(data).forEach(key => {\r\n buildFormData(formData, data[key], parentKey\r\n ? !isNaN(+key)\r\n ? `${parentKey}[${key}]`\r\n : `${parentKey}.${key}`\r\n : key);\r\n });\r\n } else {\r\n const value = data == null ? '' : data;\r\n\r\n formData.append(parentKey, value);\r\n }\r\n }\r\n\r\n function jsonToFormData(data) {\r\n const formData = new FormData();\r\n\r\n buildFormData(formData, data);\r\n\r\n return formData;\r\n }\r\n}\r\n\r\nexport function httpRequestXml(url, method, data, onSuccess, onFailed) {\r\n const xmlhttp = new XMLHttpRequest();\r\n\r\n xmlhttp.onreadystatechange = function () {\r\n if (xmlhttp.readyState === XMLHttpRequest.DONE) {\r\n\r\n if(xmlhttp.status === 401) window.location.reload();\r\n\r\n if (xmlhttp.status === 400) onFailed();\r\n\r\n if (xmlhttp.status !== 400 && xmlhttp.responseText) {\r\n const response = JSON.parse(xmlhttp.responseText);\r\n if (xmlhttp.status === 200 || xmlhttp.status === 201 || xmlhttp.status === 202) {\r\n onSuccess(response);\r\n handleTagCo(response);\r\n } else {\r\n onFailed(response);\r\n }\r\n }\r\n }\r\n };\r\n\r\n xmlhttp.open(method, url, true);\r\n xmlhttp.setRequestHeader('Content-Type', 'application/json');\r\n xmlhttp.setRequestHeader('X-Requested-With', 'XMLHttpRequest');\r\n\r\n if (data !== undefined && data !== null) {\r\n\r\n if (data['__RequestVerificationToken'] !== undefined && data['__RequestVerificationToken'].length > 0) {\r\n xmlhttp.setRequestHeader('RequestVerificationToken', data['__RequestVerificationToken']);\r\n }\r\n\r\n xmlhttp.send(JSON.stringify(data));\r\n } else {\r\n xmlhttp.send();\r\n }\r\n}\r\n\r\n\r\nexport function httpRequestXmlWithAuthorizationHeader(url, method, token, data, onSuccess, onFailed) {\r\n const xmlhttp = new XMLHttpRequest();\r\n\r\n xmlhttp.onreadystatechange = function () {\r\n if (xmlhttp.readyState === XMLHttpRequest.DONE) {\r\n\r\n if (xmlhttp.status === 401) window.location.reload();\r\n\r\n if (xmlhttp.responseText) {\r\n if (xmlhttp.status === 200 || xmlhttp.status === 201 || xmlhttp.status === 202 || xmlhttp.status == 409) {\r\n const response = JSON.parse(xmlhttp.responseText);\r\n onSuccess(response);\r\n } else {\r\n onFailed(xmlhttp.responseText);\r\n }\r\n }\r\n }\r\n };\r\n\r\n xmlhttp.onerror = function (e) {\r\n let errorMessage = { message: \"XML Http Failed\" };\r\n onFailed(errorMessage);\r\n }\r\n\r\n xmlhttp.open(method, url, true);\r\n xmlhttp.withCredentials = true;\r\n xmlhttp.setRequestHeader(\"Content-Type\", \"application/json\");\r\n xmlhttp.setRequestHeader('Authorization', `Bearer ${token}`);\r\n\r\n if (data !== undefined && data !== null) {\r\n xmlhttp.send(JSON.stringify(data));\r\n } else {\r\n xmlhttp.send();\r\n }\r\n}\r\n\r\n\r\nexport function httpRequestFiles(url, data, onSuccess, onFailed) {\r\n\r\n const xmlhttp = new XMLHttpRequest();\r\n\r\n xmlhttp.onreadystatechange = function () {\r\n if (xmlhttp.readyState === XMLHttpRequest.DONE) {\r\n\r\n if (xmlhttp.status === 401) window.location.reload();\r\n\r\n if (xmlhttp.responseText) {\r\n const response = JSON.parse(xmlhttp.responseText);\r\n if (xmlhttp.status === 200 || xmlhttp.status === 201 || xmlhttp.status === 202) {\r\n onSuccess(response);\r\n handleTagCo(response);\r\n } else {\r\n onFailed(response);\r\n }\r\n }\r\n }\r\n };\r\n\r\n xmlhttp.open(\"POST\", url, true);\r\n\r\n if (data !== undefined && data !== null) {\r\n\r\n if (data['__RequestVerificationToken'] !== undefined && data['__RequestVerificationToken'].length > 0) {\r\n xmlhttp.setRequestHeader('RequestVerificationToken', data['__RequestVerificationToken']);\r\n }\r\n\r\n xmlhttp.send(data);\r\n } else {\r\n xmlhttp.send();\r\n }\r\n}\r\n","'use strict';\r\n\r\nexport function handleTagCo(response) {\r\n if (response && response.TagsCoVariable) {\r\n try {\r\n tc_vars = response.TagsCoVariable;\r\n tC.container.reload();\r\n } catch (error) {\r\n console.warn(error);\r\n }\r\n }\r\n}","'use strict';\r\n\r\nexport const convertedFormValuesToObjectWithData = function (form) {\r\n\r\n\r\n function convertInputValues(elements) {\r\n if (elements.length <= 0)\r\n return;\r\n\r\n for (let i = 0; i < elements.length; ++i) {\r\n const element = elements[i];\r\n const name = element.name;\r\n const value = element.value;\r\n let text = '';\r\n\r\n if (element.nodeName == 'SELECT' && !!element.value) {\r\n text = element.selectedOptions[0].text;\r\n }\r\n\r\n const attributes = element.attributes;\r\n\r\n if (name && value && !element.disabled) {\r\n if (element.type === 'radio' && !element.checked) continue;\r\n\r\n if (element.type === 'checkbox') {\r\n if (element.checked) {\r\n obj[name] = buildObj(element.checked, attributes);\r\n }\r\n } else {\r\n obj[name] = buildObj(value, attributes, text);\r\n }\r\n }\r\n }\r\n }\r\n\r\n let obj = {};\r\n const inputs = form.getElementsByTagName('input');\r\n const selects = form.getElementsByTagName('select');\r\n const textAreas = form.getElementsByTagName('textarea');\r\n\r\n convertInputValues(inputs);\r\n convertInputValues(selects);\r\n convertInputValues(textAreas);\r\n\r\n return obj;\r\n};\r\n\r\nfunction buildObj(value, attributes, text) {\r\n let atts = {};\r\n\r\n for (let i = 0; i < attributes.length; ++i) {\r\n const attribute = attributes[i];\r\n\r\n if (attribute.name.indexOf('data-') > -1) {\r\n\r\n const name = attribute.name.replace('data-', '');\r\n\r\n if (attribute.value.indexOf('CountryCode') > -1) {\r\n atts['country'] = text;\r\n }\r\n\r\n atts[name] = !isNaN(attribute.value) ? parseInt(attribute.value) : attribute.value;\r\n }\r\n }\r\n\r\n var valueAttribute;\r\n if (attributes.type !== undefined) {\r\n valueAttribute = !isNaN(value) && ((attributes[\"data-type\"] !== undefined )? (attributes[\"data-type\"].value !== 'string') : (attributes.value !== 'string')) && attributes.type.value !== 'tel' ? parseFloat(value) : value;\r\n } else {\r\n valueAttribute = value;\r\n }\r\n\r\n if (isNaN(valueAttribute)) atts['value'] = value;\r\n else atts['value'] = valueAttribute;\r\n\r\n return atts;\r\n}\r\n","'use strict';\r\n\r\nexport function addEvent(selector, eventType, call) {\r\n let elements = document.querySelectorAll(selector);\r\n\r\n for(let i = 0; i < elements.length; i++){\r\n if (elements[i]) {\r\n elements[i].addEventListener(eventType, call);\r\n }\r\n }\r\n}\r\n\r\n\r\nexport function removeEvent(selector, eventType, call) {\r\n let elements = document.querySelectorAll(selector);\r\n\r\n for (let i = 0; i < elements.length; i++) {\r\n if (elements[i]) {\r\n elements[i].removeEventListener(eventType, call);\r\n }\r\n }\r\n}\r\n","'use strict';\r\n\r\nexport function generateRecaptcha(formElement, callBack) {\r\n\r\n const loadingCtaModifier = 'cta--loading';\r\n function showSubmitCTASpinner(ctaSubmitElement) {\r\n if (ctaSubmitElement.classList.contains('cta') && !ctaSubmitElement.classList.contains(loadingCtaModifier)) {\r\n ctaSubmitElement.classList.add(loadingCtaModifier);\r\n ctaSubmitElement.setAttribute('disabled', 'disabled');\r\n const loaderElement = document.createElement('span');\r\n loaderElement.classList.add('loader');\r\n ctaSubmitElement.append(loaderElement);\r\n }\r\n }\r\n\r\n function hideSubmitCTASpinner(ctaSubmitElement) {\r\n if (ctaSubmitElement.classList.contains('cta') && ctaSubmitElement.classList.contains(loadingCtaModifier)) {\r\n ctaSubmitElement.classList.remove(loadingCtaModifier);\r\n ctaSubmitElement.removeAttribute('disabled');\r\n const loaderElement = ctaSubmitElement.querySelector('.loader');\r\n ctaSubmitElement.removeChild(loaderElement);\r\n }\r\n }\r\n\r\n let ctaSubmitElement = formElement.querySelector('[type=\\\"submit\\\"]') ?? document.querySelector(`[form=\"${formElement.id}\"]`);\r\n formElement.addEventListener('submit', function (e) {\r\n e.preventDefault();\r\n\r\n if (!e.target.reportValidity())\r\n return;\r\n\r\n showSubmitCTASpinner(ctaSubmitElement);\r\n\r\n if (typeof grecaptcha.ready === 'function') {\r\n grecaptcha.ready(function () {\r\n grecaptcha.execute(\r\n ctaSubmitElement.getAttribute(\"data-sitekey\"), {\r\n action: ctaSubmitElement.getAttribute(\"data-action\")\r\n }).then(function (token) {\r\n if (token) {\r\n let response = formElement.querySelector('[name=\\\"g-recaptcha-response\\\"]');\r\n if (response) {\r\n response.value = token;\r\n }\r\n else {\r\n let elt = document.createElement(\"input\");\r\n elt.hidden = true;\r\n elt.name = \"g-recaptcha-response\";\r\n elt.value = token;\r\n formElement.insertBefore(elt, ctaSubmitElement);\r\n }\r\n\r\n callBack(() => hideSubmitCTASpinner(ctaSubmitElement));\r\n }\r\n });\r\n });\r\n }\r\n else {\r\n callBack(() => hideSubmitCTASpinner(ctaSubmitElement));\r\n }\r\n });\r\n}\r\n","'use strict';\r\n\r\nimport { httpRequestXmlJsonToEncoded } from '../../utils/httpRequestXml';\r\nimport { convertedFormValuesToObjectWithData } from '../../utils/convertedFormValuesToObjectWithData';\r\nimport { Modal } from '@lf/mwuikit/src/scripts/objects/modal';\r\nimport { addEvent } from '../../utils/addEvent';\r\nimport { generateRecaptcha } from '../../api/reCaptchaForm';\r\n\r\n(function () {\r\n const formElement = document.getElementById('scpi-advisor-form');\r\n const modal = Modal({ isAlignCenter: true });\r\n const questionImmo = document.querySelector('[data-binding=\"question-immo\"]');\r\n modal.init();\r\n\r\n if (formElement) {\r\n function sendData(hideCtaSubmitSpinner) {\r\n\r\n const data = convertedFormValuesToObjectWithData(formElement);\r\n const model = buildModel(data);\r\n\r\n httpRequestXmlJsonToEncoded(formElement.getAttribute('action'),\r\n 'POST',\r\n model,\r\n function (response) {\r\n if (response.redirection) {\r\n window.location = response.redirection;\r\n } else {\r\n if (typeof hideCtaSubmitSpinner === 'function')\r\n hideCtaSubmitSpinner();\r\n\r\n addScpiResult(response);\r\n }\r\n },\r\n function () {\r\n if (typeof hideCtaSubmitSpinner === 'function')\r\n hideCtaSubmitSpinner();\r\n\r\n alert('Erreur lors de l’enregistrement');\r\n }\r\n );\r\n }\r\n\r\n function addScpiResult(response) {\r\n if (response.html != null) {\r\n modal.show(response.html,\r\n closeModal\r\n );\r\n }\r\n\r\n const increaseAmountCta = document.getElementById('increaseAmount');\r\n if (increaseAmountCta)\r\n increaseAmountCta.addEventListener('click', investMore);\r\n }\r\n\r\n function closeModal() {\r\n const buttonElement = document.getElementById('close-this-modal');\r\n if (buttonElement) {\r\n buttonElement.addEventListener('click',\r\n function (event) {\r\n event.preventDefault();\r\n modal.hide();\r\n });\r\n }\r\n }\r\n\r\n function buildModel(data) {\r\n const responses = [];\r\n const model = {};\r\n for (let item in data) {\r\n const obj = data[item];\r\n if (obj.group === 'response') {\r\n const resp = {\r\n Id: 0,\r\n OptionId: obj.optionid ?? null,\r\n QuestionId: obj.questionid,\r\n Text: !obj.optionid ? obj.value : null\r\n };\r\n responses.push(resp);\r\n } else {\r\n model[item] = obj.value;\r\n }\r\n }\r\n\r\n model.Responses = responses;\r\n return model;\r\n }\r\n\r\n function selectNo(event) {\r\n questionImmo.style.display = 'none';\r\n\r\n if (event.target.checked) {\r\n modal.show(\r\n `\r\n \r\n Cet outil a été concocté pour vous aider à savoir quelles SCPI correspondraient le mieux à vos attentes. Il est réservé aux particuliers.\r\n
En tant que personne morale, nous vous invitons à contacter un conseiller Moniwan pour vous aider dans votre projet d'investissement en SCPI.\r\n
\r\n \r\n `,\r\n closeModal\r\n );\r\n }\r\n }\r\n\r\n function selectYes() {\r\n questionImmo.style.display = '';\r\n }\r\n\r\n function addEventRadio() {\r\n const elements = document.querySelectorAll('input[type=\"radio\"]');\r\n\r\n for (let i = 0; i < elements.length; i++) {\r\n elements[i].addEventListener('click', checkRadio);\r\n }\r\n\r\n const elementsWithNotice = document.querySelectorAll('input[type=\"radio\"][data-noticecontent]');\r\n\r\n for (let i = 0; i < elementsWithNotice.length; i++) {\r\n elementsWithNotice[i].addEventListener('click', checkNotice);\r\n }\r\n }\r\n\r\n function checkNotice(event) {\r\n const element = event.target;\r\n const questionId = element.dataset.questionid;\r\n const optionId = element.dataset.optionid;\r\n const noticeContent = element.dataset.noticecontent;\r\n\r\n let notice = document.getElementById('notice-' + questionId);\r\n let paragraph = notice.getElementsByTagName('p');\r\n\r\n if (questionId !== undefined) {\r\n if (noticeContent !== undefined) {\r\n var notices = document.getElementsByClassName('notice-option');\r\n for (let j = 0; j < notices.length; j++) {\r\n notices[j].style.display = 'none';\r\n }\r\n notice.style.display = '';\r\n paragraph[0].innerHTML = noticeContent;\r\n } else {\r\n notice.style.display = 'none';\r\n paragraph[0].innerHTML = '';\r\n }\r\n }\r\n }\r\n\r\n function checkRadio() {\r\n const elements = document.querySelectorAll('input[type=\"radio\"]');\r\n let shouldWhateverBeHidden = false;\r\n\r\n for (let i = 0; i < elements.length; i++) {\r\n const element = elements[i];\r\n if (element.checked) {\r\n const questionCode = element.dataset.questioncode;\r\n const optionCode = element.dataset.code;\r\n const leadingOption = document.querySelector('[data-code=\"' + questionCode + '\"]');\r\n if (leadingOption) {\r\n if (optionCode === 'WHATEVER_TYPOLOGIE' || optionCode === 'WHATEVER_PLACE') {\r\n document.getElementById('label-' + leadingOption.getAttribute('id')).style.display = 'none';\r\n leadingOption.style.display = 'none';\r\n leadingOption.required = false;\r\n leadingOption.checked = false;\r\n } else {\r\n document.getElementById('label-' + leadingOption.getAttribute('id')).style.display = '';\r\n shouldWhateverBeHidden = true;\r\n leadingOption.required = true;\r\n }\r\n }\r\n }\r\n }\r\n\r\n const whatever = document.querySelector('[data-code=\"WHATEVER_PREPONDERENCE\"]');\r\n if (whatever) {\r\n if (shouldWhateverBeHidden) {\r\n whatever.checked = false;\r\n document.getElementById('label-' + whatever.getAttribute('id')).style.display = 'none';\r\n whatever.required = false;\r\n } else {\r\n document.getElementById('label-' + whatever.getAttribute('id')).style.display = '';\r\n whatever.required = true;\r\n }\r\n }\r\n\r\n checkEsg();\r\n }\r\n\r\n function checkEsg() {\r\n const esgOption = document.querySelector('[data-code=\"ESG_ENABLE\"]');\r\n const esgOptionDisable = document.querySelector('[data-code=\"ESG_DISABLE\"]');\r\n\r\n let esgActive = esgOption.checked;\r\n\r\n const esgOptions = document.querySelectorAll('input[data-parentcode=\"ESG\"]');\r\n for (var i = 0; i < esgOptions.length; i++) {\r\n const esgOption = esgOptions[i];\r\n\r\n if (esgActive) {\r\n let element = document.getElementById('label-' + esgOption.getAttribute('id'));\r\n element.style.display = '';\r\n esgOption.style.display = '';\r\n esgOption.required = true;\r\n element.parentElement.style.display = '';\r\n } else {\r\n let element = document.getElementById('label-' + esgOption.getAttribute('id'));\r\n element.style.display = 'none';\r\n esgOption.style.display = 'none';\r\n esgOption.required = false;\r\n esgOption.checked = false;\r\n element.parentElement.style.display = 'none';\r\n element.checked = false;\r\n }\r\n }\r\n\r\n const esgQuestions = document.querySelectorAll('label[data-parentcode=\"ESG\"]');\r\n for (var i = 0; i < esgQuestions.length; i++) {\r\n const esgQuestion = esgQuestions[i];\r\n\r\n if (esgActive) {\r\n esgQuestion.style.display = '';\r\n } else {\r\n esgQuestion.style.display = 'none';\r\n }\r\n }\r\n\r\n if (!esgOptionDisable.checked && !esgOption.checked)\r\n return;\r\n\r\n const durability = document.querySelector('[data-code=\"DURABILITY\"]');\r\n if (esgActive && (durability.cannotBeVisible === undefined || durability.cannotBeVisible === false)) {\r\n document.getElementById('label-' + durability.getAttribute('id')).style.display = '';\r\n durability.required = true;\r\n } else {\r\n document.getElementById('label-' + durability.getAttribute('id')).style.display = 'none';\r\n durability.checked = false;\r\n durability.required = false;\r\n }\r\n }\r\n\r\n function investMore(event) {\r\n event.preventDefault();\r\n const element = document.querySelector('[data-questioncode=\"AMOUNT\"]');\r\n element.value = event.target.dataset.amount;\r\n sendData();\r\n }\r\n\r\n function applyInvestEsgRule() {\r\n const element = document.querySelector('[data-questioncode=\"AMOUNT\"]');\r\n element.addEventListener('input', function (e) {\r\n investEsgRule(e.target.value, true);\r\n });\r\n }\r\n\r\n function investEsgRule(value, shouldCheckEsg) {\r\n let parsed = parseFloat(value);\r\n\r\n if (isNaN(parsed))\r\n return;\r\n\r\n const durability = document.querySelector('[data-code=\"DURABILITY\"]');\r\n if (parsed < 15000) {\r\n document.getElementById('label-' + durability.getAttribute('id')).style.display = 'none';\r\n durability.checked = false;\r\n durability.cannotBeVisible = true;\r\n durability.required = false;\r\n }\r\n else if (shouldCheckEsg) {\r\n durability.cannotBeVisible = false;\r\n checkEsg();\r\n }\r\n }\r\n\r\n const investmentAmountInput = document.querySelector('input[data-questioncode=\"AMOUNT\"]');\r\n if (investmentAmountInput) {\r\n investmentAmountInput.addEventListener('blur', checkNumberInput);\r\n }\r\n\r\n const incomeInput = document.querySelector('input[data-questioncode=\"INCOME\"]');\r\n if (incomeInput) {\r\n incomeInput.addEventListener('blur', checkNumberInput);\r\n }\r\n\r\n const familyNumberInput = document.querySelector('input[data-questioncode=\"FAMILY_NUMBER\"]');\r\n if (familyNumberInput) {\r\n familyNumberInput.addEventListener('blur', checkNumberInput);\r\n }\r\n\r\n function checkNumberInput(event) {\r\n let value = event.target.value;\r\n if (isNaN(value) || value === \"\")\r\n return;\r\n\r\n value = parseInt(value, 10);\r\n if (value < 1) {\r\n value = 1;\r\n }\r\n event.target.value = value;\r\n }\r\n\r\n addEventRadio();\r\n\r\n addEvent('#natural-person-no', 'click', selectNo);\r\n addEvent('#natural-person-yes', 'click', selectYes);\r\n\r\n generateRecaptcha(formElement, (hideCtaSubmitSpinner) => sendData(hideCtaSubmitSpinner));\r\n\r\n checkEsg();\r\n applyInvestEsgRule();\r\n\r\n let amountElement = document.querySelector('[data-questioncode=\"AMOUNT\"]');\r\n investEsgRule(amountElement.value, false);\r\n\r\n function customInputNumberValidity(element) {\r\n element.target.setCustomValidity(\"\");\r\n if (element.target.validity.valid) {\r\n let inputs = formElement.querySelectorAll(`input[name=\"${element.target.name}\"]`);\r\n for (let i = 0; i < inputs.length; i++)\r\n inputs[i].setCustomValidity(\"\");\r\n }\r\n else {\r\n if (element.target.min !== \"\" && element.target.value !== \"\" && parseFloat(element.target.value) < parseFloat(element.target.min)) {\r\n element.target.setCustomValidity(element.target.dataset.minErrorMessage);\r\n return;\r\n }\r\n\r\n if (element.target.max !== \"\" && element.target.value !== \"\" && parseFloat(element.target.value) > parseFloat(eelement.target.max)) {\r\n element.target.setCustomValidity(element.target.dataset.maxErrorMessage);\r\n return;\r\n }\r\n\r\n element.target.setCustomValidity(element.target.dataset.emptyErrorMessage);\r\n }\r\n }\r\n\r\n function customInputValidity(element) {\r\n element.target.setCustomValidity(\"\");\r\n if (element.target.validity.valid) {\r\n let inputs = formElement.querySelectorAll(`input[name=\"${element.target.name}\"]`);\r\n for (let i = 0; i < inputs.length; i++)\r\n inputs[i].setCustomValidity(\"\");\r\n }\r\n else {\r\n element.target.setCustomValidity(element.target.dataset.emptyErrorMessage);\r\n }\r\n }\r\n\r\n function setCustomInputsValidity(formElement) {\r\n let inputs = formElement.getElementsByTagName(\"input\");\r\n for (let i = 0; i < inputs.length; i++) {\r\n if (inputs[i].type === \"number\") {\r\n inputs[i].oninvalid = customInputNumberValidity;\r\n inputs[i].oninput = customInputNumberValidity;\r\n }\r\n else {\r\n inputs[i].oninvalid = customInputValidity;\r\n inputs[i].oninput = customInputValidity;\r\n }\r\n }\r\n }\r\n\r\n document.documentElement.style.scrollBehavior = 'auto';\r\n document.documentElement.style.scrollPaddingTop = '200px';\r\n setCustomInputsValidity(formElement);\r\n }\r\n}());\r\n","'use strict';\r\n\r\nexport function Modal(params) {\r\n\r\n const element = (function () {\r\n let element = null;\r\n\r\n if (document.getElementsByClassName('modal').length > 0) {\r\n element = document.getElementsByClassName('modal')[0];\r\n const wrapper = element.getElementsByClassName('modal__wrapper')[0];\r\n\r\n if (!!wrapper) {\r\n if (!!params && params.isLarger && !wrapper.classList.contains('modal__wrapper--larger')) {\r\n wrapper.classList.add('modal__wrapper--larger');\r\n } else if (wrapper.classList.contains('modal__wrapper--larger')) {\r\n wrapper.classList.remove('modal__wrapper--larger');\r\n }\r\n\r\n if (!!params && params.isAlignCenter && !element.classList.contains('modal--vertically-centered')) {\r\n element.classList.add('modal--vertically-centered');\r\n } else if (element.classList.contains('modal--vertically-centered')) {\r\n element.classList.remove('modal--vertically-centered');\r\n }\r\n }\r\n } else {\r\n element = document.createElement('div');\r\n element.classList.add('modal');\r\n\r\n if (!!params && params.isAlignCenter) element.classList.add('modal--vertically-centered');\r\n const wrapperModifier = !!params && params.isLarger ? ' modal__wrapper--larger' : '';\r\n const closeSymbol = typeof CLOSEMODALSYMBOL !== 'undefined' ? CLOSEMODALSYMBOL : '✖';\r\n\r\n element.innerHTML = ' \\\r\n
\\\r\n
\\\r\n
';\r\n }\r\n\r\n return element;\r\n })();\r\n\r\n function updateStyles(params) {\r\n const wrapper = element.getElementsByClassName('modal__wrapper')[0];\r\n\r\n if (!!params && params.isLarger && !wrapper.classList.contains('modal__wrapper--larger')) {\r\n wrapper.classList.add('modal__wrapper--larger');\r\n } else if ((!params || !params.isLarger) && wrapper.classList.contains('modal__wrapper--larger')) {\r\n wrapper.classList.remove('modal__wrapper--larger');\r\n }\r\n\r\n if (!!params && params.isAlignCenter && !element.classList.contains('modal--vertically-centered')) {\r\n element.classList.add('modal--vertically-centered');\r\n } else if ((!params || !params.isAlignCenter) && element.classList.contains('modal--vertically-centered')) {\r\n element.classList.remove('modal--vertically-centered');\r\n }\r\n }\r\n\r\n function init() {\r\n const _this = this;\r\n document.body.appendChild(_this.element);\r\n _this.element.style.display = 'none';\r\n\r\n const modalCloseCTAElements = _this.element.querySelectorAll('.modal__close-cta');\r\n for (let i = 0; i < modalCloseCTAElements.length; ++i) {\r\n modalCloseCTAElements[i].addEventListener('click', function (event) {\r\n event.preventDefault();\r\n _this.hide();\r\n });\r\n }\r\n\r\n element.addEventListener('click', function (event) {\r\n if (event.target === _this.element) {\r\n _this.hide();\r\n }\r\n });\r\n }\r\n\r\n function clearContent(wrapperElement) {\r\n if (wrapperElement.hasChildNodes()) {\r\n while (wrapperElement.firstChild) {\r\n wrapperElement.removeChild(wrapperElement.firstChild);\r\n }\r\n }\r\n }\r\n\r\n function show(content, callback) {\r\n const _this = this;\r\n\r\n const modalContentWrapperElement = _this.element.querySelector('.modal__content');\r\n clearContent(modalContentWrapperElement); // TODO: avoid clearContent here\r\n\r\n const contentWrapperElement = document.createElement('div');\r\n contentWrapperElement.classList.add('post');\r\n contentWrapperElement.innerHTML = content;\r\n modalContentWrapperElement.appendChild(contentWrapperElement);\r\n\r\n if (callback && typeof callback === 'function') callback();\r\n\r\n const modalCloseCTAElements = _this.element.querySelectorAll('.modal__close-cta');\r\n for (let i = 0; i < modalCloseCTAElements.length; ++i) {\r\n modalCloseCTAElements[i].setAttribute('tabindex', '1');\r\n }\r\n\r\n _this.element.removeAttribute('style');\r\n _this.element.classList.add('modal--visible');\r\n\r\n window.setTimeout(function () {\r\n document.body.style.overflow = 'hidden';\r\n }, 500);\r\n }\r\n\r\n function hide() {\r\n const _this = this;\r\n\r\n _this.element.classList.remove('modal--visible');\r\n\r\n window.setTimeout(function () {\r\n _this.element.style.display = 'none';\r\n document.body.style.removeProperty('overflow');\r\n\r\n const modalCloseCTAElements = _this.element.querySelectorAll('.modal__close-cta');\r\n for (let i = 0; i < modalCloseCTAElements.length; ++i) {\r\n modalCloseCTAElements[i].setAttribute('tabindex', '0');\r\n }\r\n\r\n clearContent(_this.element.querySelector('.modal__content'));\r\n }, 500);\r\n }\r\n\r\n /* TODO: don't expose element and init */\r\n return {\r\n element: element,\r\n init: init,\r\n show: show,\r\n hide: hide,\r\n updateStyles: updateStyles\r\n }\r\n}\r\n"],"names":["isCallable","tryToString","$TypeError","TypeError","module","exports","argument","isPossiblePrototype","$String","String","wellKnownSymbol","create","defineProperty","UNSCOPABLES","ArrayPrototype","Array","prototype","undefined","configurable","value","key","charAt","S","index","unicode","length","isObject","$forEach","STRICT_METHOD","arrayMethodIsStrict","forEach","callbackfn","this","arguments","bind","call","toObject","callWithSafeIterationClosing","isArrayIteratorMethod","isConstructor","lengthOfArrayLike","createProperty","getIterator","getIteratorMethod","$Array","arrayLike","O","IS_CONSTRUCTOR","argumentsLength","mapfn","mapping","result","step","iterator","next","iteratorMethod","done","toIndexedObject","toAbsoluteIndex","createMethod","IS_INCLUDES","$this","el","fromIndex","includes","indexOf","uncurryThis","IndexedObject","arraySpeciesCreate","push","TYPE","IS_MAP","IS_FILTER","IS_SOME","IS_EVERY","IS_FIND_INDEX","IS_FILTER_REJECT","NO_HOLES","that","specificCreate","self","boundFunction","target","map","filter","some","every","find","findIndex","filterReject","fails","V8_VERSION","SPECIES","METHOD_NAME","array","constructor","foo","Boolean","method","slice","isArray","originalArray","C","arraySpeciesConstructor","anObject","iteratorClose","fn","ENTRIES","error","ITERATOR","SAFE_CLOSING","called","iteratorWithReturn","from","exec","SKIP_CLOSING","ITERATION_SUPPORT","object","toString","stringSlice","it","TO_STRING_TAG_SUPPORT","classofRaw","TO_STRING_TAG","$Object","Object","CORRECT_ARGUMENTS","tag","tryGet","callee","hasOwn","ownKeys","getOwnPropertyDescriptorModule","definePropertyModule","source","exceptions","keys","f","getOwnPropertyDescriptor","i","F","getPrototypeOf","DESCRIPTORS","createPropertyDescriptor","bitmap","enumerable","writable","makeBuiltIn","name","descriptor","get","getter","set","setter","defineGlobalProperty","options","simple","global","unsafe","nonConfigurable","nonWritable","globalThis","document","EXISTS","createElement","CSSRuleList","CSSStyleDeclaration","CSSValueList","ClientRectList","DOMRectList","DOMStringList","DOMTokenList","DataTransferItemList","FileList","HTMLAllCollection","HTMLCollection","HTMLFormElement","HTMLSelectElement","MediaList","MimeTypeArray","NamedNodeMap","NodeList","PaintRequestList","Plugin","PluginArray","SVGLengthList","SVGNumberList","SVGPathSegList","SVGPointList","SVGStringList","SVGTransformList","SourceBufferList","StyleSheetList","TextTrackCueList","TextTrackList","TouchList","classList","documentCreateElement","DOMTokenListPrototype","navigator","userAgent","match","version","process","Deno","versions","v8","split","createNonEnumerableProperty","defineBuiltIn","copyConstructorProperties","isForced","targetProperty","sourceProperty","TARGET","GLOBAL","STATIC","stat","dontCallGetSet","forced","sham","regexpExec","RegExpPrototype","RegExp","KEY","FORCED","SHAM","SYMBOL","DELEGATES_TO_SYMBOL","DELEGATES_TO_EXEC","execCalled","re","flags","nativeRegExpMethod","methods","nativeMethod","regexp","str","arg2","forceStringMethod","$exec","NATIVE_BIND","FunctionPrototype","Function","apply","Reflect","aCallable","test","hasOwnProperty","getDescriptor","PROPER","CONFIGURABLE","uncurryThisWithBind","namespace","classof","getMethod","isNullOrUndefined","Iterators","usingIterator","replacer","rawLength","element","keysLength","root","j","V","P","func","floor","Math","replace","SUBSTITUTION_SYMBOLS","SUBSTITUTION_SYMBOLS_NO_NAMED","matched","position","captures","namedCaptures","replacement","tailPos","m","symbols","ch","capture","n","check","window","g","getBuiltIn","a","propertyIsEnumerable","store","functionToString","inspectSource","has","NATIVE_WEAK_MAP","shared","sharedKey","hiddenKeys","OBJECT_ALREADY_INITIALIZED","WeakMap","state","metadata","facade","STATE","enforce","getterFor","type","documentAll","all","noop","construct","constructorRegExp","INCORRECT_TO_STRING","isConstructorModern","isConstructorLegacy","feature","detection","data","normalize","POLYFILL","NATIVE","string","toLowerCase","isPrototypeOf","USE_SYMBOL_AS_UID","$Symbol","kind","innerResult","innerError","IteratorPrototype","setToStringTag","returnThis","IteratorConstructor","NAME","ENUMERABLE_NEXT","$","IS_PURE","FunctionName","createIteratorConstructor","setPrototypeOf","IteratorsCore","PROPER_FUNCTION_NAME","CONFIGURABLE_FUNCTION_NAME","BUGGY_SAFARI_ITERATORS","KEYS","VALUES","Iterable","DEFAULT","IS_SET","CurrentIteratorPrototype","getIterationMethod","KIND","defaultIterator","IterablePrototype","INCORRECT_VALUES_NAME","nativeIterator","anyNativeIterator","entries","values","proto","PrototypeOfArrayIteratorPrototype","arrayIterator","toLength","obj","InternalStateModule","enforceInternalState","getInternalState","join","CONFIGURABLE_LENGTH","TEMPLATE","arity","ceil","trunc","x","activeXDocument","definePropertiesModule","enumBugKeys","html","PROTOTYPE","SCRIPT","IE_PROTO","EmptyConstructor","scriptTag","content","LT","NullProtoObjectViaActiveX","write","close","temp","parentWindow","NullProtoObject","ActiveXObject","iframeDocument","iframe","JS","domain","style","display","appendChild","src","contentWindow","open","Properties","V8_PROTOTYPE_DEFINE_BUG","objectKeys","defineProperties","props","IE8_DOM_DEFINE","toPropertyKey","$defineProperty","$getOwnPropertyDescriptor","ENUMERABLE","WRITABLE","Attributes","current","propertyIsEnumerableModule","$getOwnPropertyNames","arraySlice","windowNames","getOwnPropertyNames","getWindowNames","internalObjectKeys","concat","getOwnPropertySymbols","CORRECT_PROTOTYPE_GETTER","ObjectPrototype","names","$propertyIsEnumerable","NASHORN_BUG","uncurryThisAccessor","requireObjectCoercible","aPossiblePrototype","CORRECT_SETTER","__proto__","input","pref","val","valueOf","getOwnPropertyNamesModule","getOwnPropertySymbolsModule","R","re1","re2","regexpFlags","stickyHelpers","UNSUPPORTED_DOT_ALL","UNSUPPORTED_NCG","nativeReplace","nativeExec","patchedExec","UPDATES_LAST_INDEX_WRONG","lastIndex","UNSUPPORTED_Y","BROKEN_CARET","NPCG_INCLUDED","reCopy","group","raw","groups","sticky","charsAdded","strCopy","multiline","hasIndices","ignoreCase","dotAll","unicodeSets","regExpFlags","$RegExp","MISSED_STICKY","TAG","uid","SHARED","mode","copyright","license","toIntegerOrInfinity","charCodeAt","CONVERT_TO_STRING","pos","first","second","size","codeAt","symbol","Symbol","SymbolPrototype","TO_PRIMITIVE","hint","NATIVE_SYMBOL","keyFor","max","min","integer","number","len","isSymbol","ordinaryToPrimitive","exoticToPrim","toPrimitive","id","postfix","random","path","wrappedWellKnownSymbolModule","WellKnownSymbolsStore","createWellKnownSymbol","withoutSetter","doesNotExceedSafeInteger","arrayMethodHasSpeciesSupport","IS_CONCAT_SPREADABLE","IS_CONCAT_SPREADABLE_SUPPORT","isConcatSpreadable","spreadable","arg","k","E","A","checkCorrectnessOfIteration","iterable","$indexOf","nativeIndexOf","NEGATIVE_ZERO","searchElement","addToUnscopables","defineIterator","createIterResultObject","ARRAY_ITERATOR","setInternalState","iterated","Arguments","nativeJoin","separator","nativeSlice","HAS_SPECIES_SUPPORT","start","end","Constructor","fin","FUNCTION_NAME_EXISTS","defineBuiltInAccessor","nameRE","regExpExec","getReplacerFunction","$stringify","numberToString","tester","low","hi","WRONG_SYMBOLS_CONVERSION","ILL_FORMED_UNICODE","stringifyWithSymbolsFix","args","$replacer","fixIllFormed","offset","prev","stringify","space","$getOwnPropertySymbols","nativeKeys","$toString","getRegExpFlags","TO_STRING","nativeToString","NOT_GENERIC","INCORRECT_NAME","STRING_ITERATOR","point","fixRegExpWellKnownSymbolLogic","advanceStringIndex","getSubstitution","REPLACE","stringIndexOf","REPLACE_KEEPS_$0","REGEXP_REPLACE_SUBSTITUTES_UNDEFINED_CAPTURE","_","maybeCallNative","UNSAFE_SUBSTITUTE","searchValue","replaceValue","rx","res","functionalReplace","fullUnicode","results","accumulatedResult","nextSourcePosition","replacerArgs","nativeObjectCreate","getOwnPropertyNamesExternal","defineWellKnownSymbol","defineSymbolToPrimitive","HIDDEN","RangeError","QObject","nativeGetOwnPropertyDescriptor","nativeDefineProperty","nativeGetOwnPropertyNames","nativePropertyIsEnumerable","AllSymbols","ObjectPrototypeSymbols","USE_SETTER","findChild","fallbackDefineProperty","ObjectPrototypeDescriptor","setSymbolDescriptor","wrap","description","$defineProperties","properties","IS_OBJECT_PROTOTYPE","useSetter","useSimple","NativeSymbol","EmptyStringDescriptionStore","SymbolWrapper","thisSymbolValue","symbolDescriptiveString","desc","NATIVE_SYMBOL_REGISTRY","StringToSymbolRegistry","SymbolToStringRegistry","sym","DOMIterables","handlePrototype","CollectionPrototype","COLLECTION_NAME","ArrayIteratorMethods","ArrayValues","__webpack_module_cache__","__webpack_require__","moduleId","cachedModule","__webpack_modules__","_newArrowCheck","r","e","_typeof","o","_arrayLikeToArray","l","t","u","_createForOfIteratorHelper","_unsupportedIterableToArray","_n","s","return","httpRequestXmlJsonToEncoded","url","json","onSuccess","onFailed","xmlhttp","XMLHttpRequest","onreadystatechange","readyState","DONE","status","location","reload","responseText","response","JSON","parse","TagsCoVariable","tc_vars","tC","container","console","warn","handleTagCo","setRequestHeader","formData","FormData","buildFormData","_step2","urlEncodedDataPairs","_iterator2","_step2$value","_slicedToArray","encodeURIComponent","err","urlEncodedData","send","parentKey","_this","Date","File","append","isNaN","buildObj","attributes","text","valueAttribute","atts","attribute","parseInt","parseFloat","addEvent","selector","eventType","elements","querySelectorAll","addEventListener","generateRecaptcha","formElement","callBack","_formElement$querySel","loadingCtaModifier","hideSubmitCTASpinner","ctaSubmitElement","contains","remove","removeAttribute","loaderElement","querySelector","removeChild","_this2","preventDefault","reportValidity","add","setAttribute","showSubmitCTASpinner","grecaptcha","ready","execute","getAttribute","action","then","token","elt","hidden","insertBefore","getElementById","modal","params","getElementsByClassName","wrapper","isLarger","isAlignCenter","wrapperModifier","closeSymbol","CLOSEMODALSYMBOL","innerHTML","clearContent","wrapperElement","hasChildNodes","firstChild","init","body","modalCloseCTAElements","event","hide","show","callback","modalContentWrapperElement","contentWrapperElement","setTimeout","overflow","removeProperty","updateStyles","Modal","questionImmo","sendData","hideCtaSubmitSpinner","form","convertInputValues","nodeName","selectedOptions","disabled","checked","inputs","getElementsByTagName","selects","textAreas","convertedFormValuesToObjectWithData","model","buildModel","redirection","addScpiResult","alert","closeModal","increaseAmountCta","investMore","buttonElement","responses","item","_obj$optionid","resp","Id","OptionId","optionid","QuestionId","questionid","Text","Responses","checkNotice","questionId","dataset","noticeContent","noticecontent","notice","paragraph","notices","checkRadio","shouldWhateverBeHidden","questionCode","questioncode","optionCode","code","leadingOption","required","whatever","checkEsg","esgOption","esgOptionDisable","esgActive","esgOptions","parentElement","esgQuestions","esgQuestion","durability","cannotBeVisible","amount","investEsgRule","shouldCheckEsg","parsed","checkNumberInput","customInputNumberValidity","setCustomValidity","validity","valid","minErrorMessage","eelement","maxErrorMessage","emptyErrorMessage","customInputValidity","investmentAmountInput","incomeInput","familyNumberInput","elementsWithNotice","addEventRadio","API_ENDPOINT","amountElement","documentElement","scrollBehavior","scrollPaddingTop","oninvalid","oninput","setCustomInputsValidity"],"sourceRoot":""}