clientnode 3.0.1144 → 3.0.1146

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.
Files changed (68) hide show
  1. package/dist/Lock.d.ts +38 -0
  2. package/dist/Lock.js +1 -0
  3. package/dist/Semaphore.d.ts +29 -0
  4. package/dist/Semaphore.js +1 -0
  5. package/dist/Tools.d.ts +301 -0
  6. package/dist/Tools.js +1 -0
  7. package/dist/array.d.ts +150 -0
  8. package/dist/array.js +1 -0
  9. package/dist/constants.d.ts +63 -0
  10. package/dist/constants.js +1 -0
  11. package/dist/context.d.ts +11 -0
  12. package/dist/context.js +1 -0
  13. package/dist/cookie.d.ts +31 -0
  14. package/dist/cookie.js +1 -0
  15. package/dist/data-transfer.d.ts +64 -0
  16. package/dist/data-transfer.js +1 -0
  17. package/dist/datetime.d.ts +37 -0
  18. package/dist/datetime.js +1 -0
  19. package/dist/filesystem.d.ts +127 -0
  20. package/dist/filesystem.js +1 -0
  21. package/dist/function.d.ts +20 -0
  22. package/dist/function.js +1 -0
  23. package/dist/index.d.ts +21 -0
  24. package/dist/index.js +1 -0
  25. package/dist/indicators.d.ts +68 -0
  26. package/dist/indicators.js +1 -0
  27. package/dist/number.d.ts +35 -0
  28. package/dist/number.js +1 -0
  29. package/dist/object.d.ts +221 -0
  30. package/dist/object.js +1 -0
  31. package/dist/process.d.ts +22 -0
  32. package/dist/process.js +1 -0
  33. package/dist/property-types.js +1 -0
  34. package/dist/require.d.ts +4 -0
  35. package/dist/require.js +1 -0
  36. package/dist/scope.d.ts +42 -0
  37. package/dist/scope.js +1 -0
  38. package/dist/string.d.ts +289 -0
  39. package/dist/string.js +1 -0
  40. package/dist/test/Lock.d.ts +1 -0
  41. package/dist/test/Semaphore.d.ts +1 -0
  42. package/dist/test/Tools.d.ts +1 -0
  43. package/dist/test/array.d.ts +1 -0
  44. package/dist/test/cookie.d.ts +1 -0
  45. package/dist/test/data-transfer.d.ts +1 -0
  46. package/dist/test/datetime.d.ts +1 -0
  47. package/dist/test/filesystem.d.ts +1 -0
  48. package/dist/test/function.d.ts +1 -0
  49. package/dist/test/indicators.d.ts +1 -0
  50. package/dist/test/number.d.ts +1 -0
  51. package/dist/test/object.d.ts +1 -0
  52. package/dist/test/process.d.ts +1 -0
  53. package/dist/test/property-types.d.ts +1 -0
  54. package/dist/test/scope.d.ts +1 -0
  55. package/dist/test/string.d.ts +1 -0
  56. package/dist/test/utility.d.ts +1 -0
  57. package/{testHelper.d.ts → dist/test-helper.d.ts} +5 -24
  58. package/dist/test-helper.js +1 -0
  59. package/{type.d.ts → dist/type.d.ts} +3 -7
  60. package/dist/type.js +1 -0
  61. package/dist/utility.d.ts +30 -0
  62. package/dist/utility.js +1 -0
  63. package/package.json +36 -24
  64. package/index.d.ts +0 -1694
  65. package/index.js +0 -1
  66. package/property-types.js +0 -1
  67. package/testHelper.js +0 -1
  68. /package/{property-types.d.ts → dist/property-types.d.ts} +0 -0
@@ -0,0 +1,42 @@
1
+ import { Mapping } from './type';
2
+ import * as array from './array';
3
+ import * as datetime from './datetime';
4
+ import * as filesystem from './filesystem';
5
+ import * as functions from './function';
6
+ import * as indicators from './indicators';
7
+ import * as number from './number';
8
+ import * as object from './object';
9
+ import * as propertyTypes from './property-types';
10
+ import * as require from './require';
11
+ import * as string from './string';
12
+ import * as utility from './utility';
13
+ export declare const UTILITY_SCOPE: {
14
+ array: typeof array;
15
+ datetime: typeof datetime;
16
+ filesystem: typeof filesystem;
17
+ functions: typeof functions;
18
+ indicators: typeof indicators;
19
+ number: typeof number;
20
+ object: typeof object;
21
+ propertyTypes: typeof propertyTypes;
22
+ require: typeof require;
23
+ string: typeof string;
24
+ utility: typeof utility;
25
+ };
26
+ /**
27
+ * Overwrites all inherited variables from parent scope with "undefined".
28
+ * @param scope - A scope where inherited names will be removed.
29
+ * @param prefixesToIgnore - Name prefixes to ignore during deleting names in
30
+ * given scope.
31
+ * @returns The isolated scope.
32
+ */
33
+ export declare const isolateScope: <T extends Mapping<unknown>>(scope: T, prefixesToIgnore?: Array<string>) => T;
34
+ /**
35
+ * Generates a unique name in given scope (useful for jsonp requests).
36
+ * @param prefix - A prefix which will be prepended to unique name.
37
+ * @param suffix - A suffix which will be prepended to unique name.
38
+ * @param scope - A scope where the name should be unique.
39
+ * @param initialUniqueName - An initial scope name to use if not exists.
40
+ * @returns The function name.
41
+ */
42
+ export declare const determineUniqueScopeName: (prefix?: string, suffix?: string, scope?: Mapping<unknown>, initialUniqueName?: string) => string;
package/dist/scope.js ADDED
@@ -0,0 +1 @@
1
+ "use strict";if("undefined"!=typeof module&&null!==module&&"undefined"!==eval("typeof require")&&null!==eval("require")&&"main"in eval("require")&&"undefined"!==eval("typeof require.main")&&null!==eval("require.main")){var ORIGINAL_MAIN_MODULE=module;module!==eval("require.main")&&"paths"in module&&"paths"in eval("require.main")&&"undefined"!=typeof __dirname&&null!==__dirname&&(module.paths=eval("require.main.paths").concat(module.paths.filter((function(path){return eval("require.main.paths").includes(path)}))))}if(null==window)var window="undefined"==typeof global||null===global?{}:global;!function(e,r){if("object"==typeof exports&&"object"==typeof module)module.exports=r(require("@babel/runtime/helpers/extends"),require("@babel/runtime/helpers/construct"),require("@babel/runtime/helpers/asyncToGenerator"),require("@babel/runtime/regenerator"),require("@babel/runtime/helpers/inheritsLoose"),require("@babel/runtime/helpers/createClass"),function(){try{return require("jquery")}catch(e){}}(),require("@babel/runtime/helpers/wrapNativeSuper"),require("prop-types"));else if("function"==typeof define&&define.amd)define(["@babel/runtime/helpers/extends","@babel/runtime/helpers/construct","@babel/runtime/helpers/asyncToGenerator","@babel/runtime/regenerator","@babel/runtime/helpers/inheritsLoose","@babel/runtime/helpers/createClass","jquery","@babel/runtime/helpers/wrapNativeSuper","prop-types"],r);else{var t="object"==typeof exports?r(require("@babel/runtime/helpers/extends"),require("@babel/runtime/helpers/construct"),require("@babel/runtime/helpers/asyncToGenerator"),require("@babel/runtime/regenerator"),require("@babel/runtime/helpers/inheritsLoose"),require("@babel/runtime/helpers/createClass"),function(){try{return require("jquery")}catch(e){}}(),require("@babel/runtime/helpers/wrapNativeSuper"),require("prop-types")):r(e["@babel/runtime/helpers/extends"],e["@babel/runtime/helpers/construct"],e["@babel/runtime/helpers/asyncToGenerator"],e["@babel/runtime/regenerator"],e["@babel/runtime/helpers/inheritsLoose"],e["@babel/runtime/helpers/createClass"],e.jQuery,e["@babel/runtime/helpers/wrapNativeSuper"],e["prop-types"]);for(var n in t)("object"==typeof exports?exports:e)[n]=t[n]}}(this,(function(__WEBPACK_EXTERNAL_MODULE__3__,__WEBPACK_EXTERNAL_MODULE__9__,__WEBPACK_EXTERNAL_MODULE__18__,__WEBPACK_EXTERNAL_MODULE__19__,__WEBPACK_EXTERNAL_MODULE__8__,__WEBPACK_EXTERNAL_MODULE__11__,__WEBPACK_EXTERNAL_MODULE__12__,__WEBPACK_EXTERNAL_MODULE__23__,__WEBPACK_EXTERNAL_MODULE__24__){return function(){var __webpack_modules__=[function(e,r,t){t.d(r,{$:function(){return c},MAXIMAL_SUPPORTED_INTERNET_EXPLORER_VERSION:function(){return s},NOOP:function(){return f}});var n,o,i,a=t(2),u=t(6),l=t(10);e=t.hmd(e);var _="undefined"==typeof globalThis?void 0===window?void 0===t.g?e:t.g.window?t.g.window:t.g:window:globalThis;_.fetch=null!==(n=null!==(o=_.fetch)&&void 0!==o?o:null==(i=(0,u.optionalRequire)("node-fetch"))?void 0:i.default)&&void 0!==n?n:function(){for(var e=arguments.length,r=new Array(e),t=0;t<e;t++)r[t]=arguments[t];return(0,u.currentImport)("node-fetch").then((function(e){var t;return null==e?void 0:(t=e).default.apply(t,r)}))};var c=function(){var e=function(){};if(_.$&&null!==_.$)e=_.$;else{if(!_.$&&_.document)try{e=t(12)}catch(e){}if(null==e||"object"==typeof e&&0===Object.keys(e).length){var r,n=null!=(r=_.document)&&r.querySelectorAll?_.document.querySelectorAll.bind(_.document):function(){return null};(e=function(r){var t=null;if("string"==typeof r?t=n(r):Array.isArray(r)?t=r:("object"==typeof HTMLElement&&r instanceof HTMLElement||1===(null==r?void 0:r.nodeType)&&"string"==typeof(null==r?void 0:r.nodeName))&&(t=[r]),t){if(e.fn)for(var o=0,i=Object.entries(e.fn);o<i.length;o++){var u=i[o],l=u[0],c=u[1];t[l]=c.bind(t)}return t.jquery="clientnode",t}return(0,a.isFunction)(r)&&_.document&&_.document.addEventListener("DOMContentLoaded",r),r}).fn={}}}return e.global||(e.global=_),e.global.window&&(!e.document&&e.global.window.document&&(e.document=e.global.window.document),!e.location&&e.global.window.location&&(e.location=e.global.window.location)),e}(),s={value:function(){if(!c.document)return 0;var e,r=c.document.createElement("div");for(e=0;e<10&&(r.innerHTML="\x3c!--[if gt IE "+e+"]><i></i><![endif]--\x3e",0!==r.getElementsByTagName("i").length);e++);if(0===e&&c.global.window.navigator){if(-1!==c.global.window.navigator.appVersion.indexOf("MSIE 10"))return 10;if(![c.global.window.navigator.userAgent.indexOf("Trident"),c.global.window.navigator.userAgent.indexOf("rv:11")].includes(-1))return 11}return e}()},f=c.noop?c.noop:function(){};!function(e){if((c=e).global||(c.global=_),c.global.window&&(!c.document&&c.global.window.document&&(c.document=c.global.window.document),!c.location&&c.global.window.location&&(c.location=c.global.window.location)),c.fn&&(c.fn.Tools=function(){for(var e=arguments.length,r=new Array(e),t=0;t<e;t++)r[t]=arguments[t];return l.default.controller(l.default,r,this)}),c.Tools=function(){for(var e=arguments.length,r=new Array(e),t=0;t<e;t++)r[t]=arguments[t];return l.default.controller(l.default,r)},c.Tools.class=l.default,c.fn){var r=c.fn.prop;c.fn.prop=function(e){for(var t=arguments.length,n=new Array(t>1?t-1:0),o=1;o<t;o++)n[o-1]=arguments[o];if(n.length<2&&this.length&&["#text","#comment"].includes(this[0].nodeName.toLowerCase())&&e in this[0]){if(0===n.length)return this[0][e];if(1===n.length)return this[0][e]=n[0],this}return r.call.apply(r,[this,e].concat(n))}}}(c),c.readyException=function(e){if("string"!=typeof e||"canceled"!==e)throw e}},function(e,r,t){t.d(r,{ABBREVIATIONS:function(){return u},CLASS_TO_TYPE_MAPPING:function(){return l},CONSOLE_METHODS:function(){return o},DEFAULT_ENCODING:function(){return n},IGNORE_NULL_AND_UNDEFINED_SYMBOL:function(){return a},LOCALES:function(){return _},PLAIN_OBJECT_PROTOTYPES:function(){return c},SPECIAL_REGEX_SEQUENCES:function(){return s},VALUE_COPY_SYMBOL:function(){return i}});var n="utf8",o=["debug","error","info","log","warn"],i=Symbol.for("clientnodeValue"),a=Symbol.for("clientnodeIgnoreNullAndUndefined"),u=["html","id","url","us","de","api","href"],l={"[object Array]":"array","[object Boolean]":"boolean","[object Date]":"date","[object Error]":"error","[object Function]":"function","[object Map]":"map","[object Number]":"number","[object Object]":"object","[object RegExp]":"regexp","[object Set]":"set","[object String]":"string"},_=[],c=[Object.prototype],s=["-","[","]","(",")","^","$","*","+",".","{","}"]},function(e,r,t){t.r(r),t.d(r,{isAnyMatching:function(){return c},isArrayLike:function(){return _},isFunction:function(){return m},isMap:function(){return p},isNumeric:function(){return u},isObject:function(){return s},isPlainObject:function(){return f},isProxy:function(){return v},isSet:function(){return d},isWindow:function(){return l}});var n=t(1),o=t(4);function i(e,r){var t="undefined"!=typeof Symbol&&e[Symbol.iterator]||e["@@iterator"];if(t)return(t=t.call(e)).next.bind(t);if(Array.isArray(e)||(t=function(e,r){if(e){if("string"==typeof e)return a(e,r);var t={}.toString.call(e).slice(8,-1);return"Object"===t&&e.constructor&&(t=e.constructor.name),"Map"===t||"Set"===t?Array.from(e):"Arguments"===t||/^(?:Ui|I)nt(?:8|16|32)(?:Clamped)?Array$/.test(t)?a(e,r):void 0}}(e))||r&&e&&"number"==typeof e.length){t&&(e=t);var n=0;return function(){return n>=e.length?{done:!0}:{done:!1,value:e[n++]}}}throw new TypeError("Invalid attempt to iterate non-iterable instance.\nIn order to be iterable, non-array objects must have a [Symbol.iterator]() method.")}function a(e,r){(null==r||r>e.length)&&(r=e.length);for(var t=0,n=Array(r);t<r;t++)n[t]=e[t];return n}var u=function(e){var r=(0,o.determineType)(e);return["number","string"].includes(r)&&!isNaN(e-parseFloat(e))},l=function(e){return![null,void 0].includes(e)&&"object"==typeof e&&e===(null==e?void 0:e.window)},_=function(e){var r;try{r=Boolean(e)&&e.length}catch(e){return!1}var t=(0,o.determineType)(e);if("function"===t||l(e))return!1;if("array"===t||0===r)return!0;if("number"==typeof r&&r>0)try{return e[r-1],!0}catch(e){}return!1},c=function(e,r){for(var t,n=i(r);!(t=n()).done;){var o=t.value;if("string"==typeof o){if(o===e)return!0}else if(o.test(e))return!0}return!1},s=function(e){return null!==e&&"object"==typeof e},f=function(e){return null!==e&&"object"==typeof e&&n.PLAIN_OBJECT_PROTOTYPES.includes(Object.getPrototypeOf(e))},d=function(e){return"set"===(0,o.determineType)(e)},p=function(e){return"map"===(0,o.determineType)(e)},v=function(e){return Boolean(e.__target__)},m=function(e){return Boolean(e)&&["[object AsyncFunction]","[object Function]"].includes({}.toString.call(e))}},function(e){e.exports=__WEBPACK_EXTERNAL_MODULE__3__},function(__unused_webpack_module,__webpack_exports__,__webpack_require__){__webpack_require__.r(__webpack_exports__),__webpack_require__.d(__webpack_exports__,{addDynamicGetterAndSetter:function(){return addDynamicGetterAndSetter},convertCircularObjectToJSON:function(){return convertCircularObjectToJSON},convertMapToPlainObject:function(){return convertMapToPlainObject},convertPlainObjectToMap:function(){return convertPlainObjectToMap},convertSubstringInPlainObject:function(){return convertSubstringInPlainObject},copy:function(){return copy},determineType:function(){return determineType},equals:function(){return equals},evaluateDynamicData:function(){return evaluateDynamicData},extend:function(){return extend},getProxyHandler:function(){return getProxyHandler},getSubstructure:function(){return getSubstructure},mask:function(){return mask},modifyObject:function(){return modifyObject},removeKeyPrefixes:function(){return removeKeyPrefixes},removeKeysInEvaluation:function(){return removeKeysInEvaluation},represent:function(){return represent},sort:function(){return sort},unwrapProxy:function(){return unwrapProxy}});var _babel_runtime_helpers_extends__WEBPACK_IMPORTED_MODULE_0__=__webpack_require__(3),_babel_runtime_helpers_extends__WEBPACK_IMPORTED_MODULE_0___default=__webpack_require__.n(_babel_runtime_helpers_extends__WEBPACK_IMPORTED_MODULE_0__),_constants__WEBPACK_IMPORTED_MODULE_1__=__webpack_require__(1),_context__WEBPACK_IMPORTED_MODULE_5__=__webpack_require__(0),_function__WEBPACK_IMPORTED_MODULE_4__=__webpack_require__(13),_indicators__WEBPACK_IMPORTED_MODULE_2__=__webpack_require__(2),_number__WEBPACK_IMPORTED_MODULE_3__=__webpack_require__(14),_string__WEBPACK_IMPORTED_MODULE_6__=__webpack_require__(5);function _createForOfIteratorHelperLoose(e,r){var t="undefined"!=typeof Symbol&&e[Symbol.iterator]||e["@@iterator"];if(t)return(t=t.call(e)).next.bind(t);if(Array.isArray(e)||(t=_unsupportedIterableToArray(e))||r&&e&&"number"==typeof e.length){t&&(e=t);var n=0;return function(){return n>=e.length?{done:!0}:{done:!1,value:e[n++]}}}throw new TypeError("Invalid attempt to iterate non-iterable instance.\nIn order to be iterable, non-array objects must have a [Symbol.iterator]() method.")}function _unsupportedIterableToArray(e,r){if(e){if("string"==typeof e)return _arrayLikeToArray(e,r);var t={}.toString.call(e).slice(8,-1);return"Object"===t&&e.constructor&&(t=e.constructor.name),"Map"===t||"Set"===t?Array.from(e):"Arguments"===t||/^(?:Ui|I)nt(?:8|16|32)(?:Clamped)?Array$/.test(t)?_arrayLikeToArray(e,r):void 0}}function _arrayLikeToArray(e,r){(null==r||r>e.length)&&(r=e.length);for(var t=0,n=Array(r);t<r;t++)n[t]=e[t];return n}var addDynamicGetterAndSetter=function e(r,t,n,o,i,a){if(void 0===t&&(t=null),void 0===n&&(n=null),void 0===o&&(o={}),void 0===i&&(i=!0),void 0===a&&(a=[Object]),i&&"object"==typeof r)if(Array.isArray(r))for(var u,l=0,_=_createForOfIteratorHelperLoose(r);!(u=_()).done;){var c=u.value;r[l]=e(c,t,n,o,i),l+=1}else if((0,_indicators__WEBPACK_IMPORTED_MODULE_2__.isMap)(r))for(var s,f=_createForOfIteratorHelperLoose(r);!(s=f()).done;){var d=s.value,p=d[0],v=d[1];r.set(p,e(v,t,n,o,i))}else if((0,_indicators__WEBPACK_IMPORTED_MODULE_2__.isSet)(r)){for(var m,E=[],b=_createForOfIteratorHelperLoose(r);!(m=b()).done;){var y=m.value;r.delete(y),E.push(e(y,t,n,o,i))}for(var h=0,g=E;h<g.length;h++){var O=g[h];r.add(O)}}else if(null!==r)for(var P=0,D=Object.entries(r);P<D.length;P++){var A=D[P],M=A[0],T=A[1];r[M]=e(T,t,n,o,i)}if(t||n)for(var w,I,L=function(){var e=I.value;if(null!==r&&"object"==typeof r&&r instanceof e){var i=getProxyHandler(r,o),a=getProxyHandler(r,o);t&&(a.get=function(e,n){return"__target__"===n?r:"__revoke__"===n?function(){return _(),r}:"function"==typeof r[n]?r[n]:t(i.get(l,n),n,r)}),n&&(a.set=function(e,t,o){return i.set(l,t,n(t,o,r))});var u=Proxy.revocable({},a),l=u.proxy,_=u.revoke;return{v:l}}},x=_createForOfIteratorHelperLoose(a);!(I=x()).done;)if(w=L())return w.v;return r},convertCircularObjectToJSON=function(e,r,t){void 0===r&&(r=function(e){return null!=e?e:"__circularReference__"}),void 0===t&&(t=0);var n=new Map;return function(e){return JSON.stringify(e,(function e(t,o){if(null!==o&&"object"==typeof o){var i,a;if(n.has(o))return r(null!==(i=n.get(o))&&void 0!==i?i:null,t,o,n);if(n.set(o,null),Array.isArray(o)){a=[];for(var u,l=_createForOfIteratorHelperLoose(o);!(u=l()).done;){var _=u.value;a.push(e(null,_))}}else{a={};for(var c=0,s=Object.entries(o);c<s.length;c++){var f=s[c],d=f[0],p=f[1];a[d]=e(d,p)}}return n.set(o,a),a}return o}),t)}(e)},convertMapToPlainObject=function e(r,t){if(void 0===t&&(t=!0),"object"==typeof r){if((0,_indicators__WEBPACK_IMPORTED_MODULE_2__.isMap)(r)){for(var n,o={},i=_createForOfIteratorHelperLoose(r);!(n=i()).done;){var a=n.value,u=a[0],l=a[1];t&&(l=e(l,t)),["number","string"].includes(typeof u)&&(o[""+u]=l)}return o}if(t)if((0,_indicators__WEBPACK_IMPORTED_MODULE_2__.isPlainObject)(r))for(var _=0,c=Object.entries(r);_<c.length;_++){var s=c[_],f=s[0],d=s[1];r[f]=e(d,t)}else if(Array.isArray(r))for(var p=0,v=0,m=r;v<m.length;v++){var E=m[v];r[p]=e(E,t),p+=1}else if((0,_indicators__WEBPACK_IMPORTED_MODULE_2__.isSet)(r)){for(var b,y=[],h=_createForOfIteratorHelperLoose(r);!(b=h()).done;){var g=b.value;r.delete(g),y.push(e(g,t))}for(var O=0,P=y;O<P.length;O++){var D=P[O];r.add(D)}}}return r},convertPlainObjectToMap=function e(r,t){if(void 0===t&&(t=!0),"object"==typeof r){if((0,_indicators__WEBPACK_IMPORTED_MODULE_2__.isPlainObject)(r)){for(var n=new Map,o=0,i=Object.entries(r);o<i.length;o++){var a=i[o],u=a[0],l=a[1];t&&(r[u]=e(l,t)),n.set(u,r[u])}return n}if(t)if(Array.isArray(r))for(var _=0,c=0,s=r;c<s.length;c++){var f=s[c];r[_]=e(f,t),_+=1}else if((0,_indicators__WEBPACK_IMPORTED_MODULE_2__.isMap)(r))for(var d,p=_createForOfIteratorHelperLoose(r);!(d=p()).done;){var v=d.value,m=v[0],E=v[1];r.set(m,e(E,t))}else if((0,_indicators__WEBPACK_IMPORTED_MODULE_2__.isSet)(r)){for(var b,y=[],h=_createForOfIteratorHelperLoose(r);!(b=h()).done;){var g=b.value;r.delete(g),y.push(e(g,t))}for(var O=0,P=y;O<P.length;O++){var D=P[O];r.add(D)}}}return r},convertSubstringInPlainObject=function e(r,t,n){for(var o=0,i=Object.entries(r);o<i.length;o++){var a=i[o],u=a[0],l=a[1];(0,_indicators__WEBPACK_IMPORTED_MODULE_2__.isPlainObject)(l)?r[u]=e(l,t,n):"string"==typeof l&&(r[u]=l.replace(t,n))}return r},copy=function e(r,t,n,o,i,a,u){if(void 0===t&&(t=-1),void 0===n&&(n=_constants__WEBPACK_IMPORTED_MODULE_1__.VALUE_COPY_SYMBOL),void 0===o&&(o=null),void 0===i&&(i=!1),void 0===a&&(a=[]),void 0===u&&(u=0),null!==r&&"object"==typeof r)if(o){if(r===o)throw new Error("Can't copy because source and destination are identical.");if(!i&&![void 0,null].includes(r)){var l=a.indexOf(r);if(-1!==l)return a[l];a.push(r)}var _=function(r){if(-1!==t&&t<u+1)return n===_constants__WEBPACK_IMPORTED_MODULE_1__.VALUE_COPY_SYMBOL?r:n;var o=e(r,t,n,null,i,a,u+1);return i||[void 0,null].includes(r)||"object"!=typeof r||a.push(r),o};if(Array.isArray(r))for(var c,s=_createForOfIteratorHelperLoose(r);!(c=s()).done;){var f=c.value;o.push(_(f))}else if(r instanceof Map)for(var d,p=_createForOfIteratorHelperLoose(r);!(d=p()).done;){var v=d.value,m=v[0],E=v[1];o.set(m,_(E))}else if(r instanceof Set)for(var b,y=_createForOfIteratorHelperLoose(r);!(b=y()).done;){var h=b.value;o.add(_(h))}else for(var g=0,O=Object.entries(r);g<O.length;g++){var P=O[g],D=P[0],A=P[1];try{o[D]=_(A)}catch(e){throw new Error('Failed to copy property value object "'+D+'": '+represent(e))}}}else if(r){if(Array.isArray(r))return e(r,t,n,[],i,a,u);if(r instanceof Map)return e(r,t,n,new Map,i,a,u);if(r instanceof Set)return e(r,t,n,new Set,i,a,u);if(r instanceof Date)return new Date(r.getTime());if(r instanceof RegExp){var M=/[^/]*$/.exec(r.toString());return(o=new RegExp(r.source,M?M[0]:void 0)).lastIndex=r.lastIndex,o}return"undefined"!=typeof Blob&&r instanceof Blob?r.slice(0,r.size,r.type):e(r,t,n,{},i,a,u)}return o||r},determineType=function(e){if(void 0===e&&(e=void 0),[null,void 0].includes(e))return""+e;var r=typeof e;if(["function","object"].includes(r)&&e.toString){var t=_constants__WEBPACK_IMPORTED_MODULE_1__.CLASS_TO_TYPE_MAPPING.toString.call(e);if(Object.prototype.hasOwnProperty.call(_constants__WEBPACK_IMPORTED_MODULE_1__.CLASS_TO_TYPE_MAPPING,t))return _constants__WEBPACK_IMPORTED_MODULE_1__.CLASS_TO_TYPE_MAPPING[t]}return r},equals=function equals(firstValue,secondValue,givenOptions){void 0===givenOptions&&(givenOptions={});var options=_babel_runtime_helpers_extends__WEBPACK_IMPORTED_MODULE_0___default()({compareBlobs:!1,deep:-1,exceptionPrefixes:[],ignoreFunctions:!0,properties:null,returnReasonIfNotEqual:!1},givenOptions);if(options.ignoreFunctions&&(0,_indicators__WEBPACK_IMPORTED_MODULE_2__.isFunction)(firstValue)&&(0,_indicators__WEBPACK_IMPORTED_MODULE_2__.isFunction)(secondValue)||firstValue===secondValue||(0,_number__WEBPACK_IMPORTED_MODULE_3__.isNotANumber)(firstValue)&&(0,_number__WEBPACK_IMPORTED_MODULE_3__.isNotANumber)(secondValue)||firstValue instanceof RegExp&&secondValue instanceof RegExp&&firstValue.toString()===secondValue.toString()||firstValue instanceof Date&&secondValue instanceof Date&&(isNaN(firstValue.getTime())&&isNaN(secondValue.getTime())||!isNaN(firstValue.getTime())&&!isNaN(secondValue.getTime())&&firstValue.getTime()===secondValue.getTime())||options.compareBlobs&&"undefined"!==eval("typeof Buffer")&&eval("Buffer").isBuffer&&firstValue instanceof eval("Buffer")&&secondValue instanceof eval("Buffer")&&firstValue.toString("base64")===secondValue.toString("base64"))return!0;if(options.compareBlobs&&"undefined"!=typeof Blob&&firstValue instanceof Blob&&secondValue instanceof Blob)return new Promise((function(e){for(var r=[],t=0,n=[firstValue,secondValue];t<n.length;t++){var o=n[t],i=new FileReader;i.onload=function(t){null===t.target?r.push(null):r.push(t.target.result),2===r.length&&(r[0]===r[1]?e(!0):e(!!options.returnReasonIfNotEqual&&">>> Blob("+represent(r[0])+") !== Blob("+represent(r[1])+")"))},i.readAsDataURL(o)}}));if((0,_indicators__WEBPACK_IMPORTED_MODULE_2__.isPlainObject)(firstValue)&&(0,_indicators__WEBPACK_IMPORTED_MODULE_2__.isPlainObject)(secondValue)&&!(firstValue instanceof RegExp||secondValue instanceof RegExp)||Array.isArray(firstValue)&&Array.isArray(secondValue)&&firstValue.length===secondValue.length||determineType(firstValue)===determineType(secondValue)&&["map","set"].includes(determineType(firstValue))&&firstValue.size===secondValue.size){for(var promises=[],_i13=0,_arr4=[[firstValue,secondValue],[secondValue,firstValue]];_i13<_arr4.length;_i13++){var _arr4$_i=_arr4[_i13],first=_arr4$_i[0],second=_arr4$_i[1],firstIsArray=Array.isArray(first);if(firstIsArray&&(!Array.isArray(second)||first.length!==second.length))return!!options.returnReasonIfNotEqual&&".length";var firstIsMap=(0,_indicators__WEBPACK_IMPORTED_MODULE_2__.isMap)(first);if(firstIsMap&&(!(0,_indicators__WEBPACK_IMPORTED_MODULE_2__.isMap)(second)||first.size!==second.size))return!!options.returnReasonIfNotEqual&&".size";var firstIsSet=(0,_indicators__WEBPACK_IMPORTED_MODULE_2__.isSet)(first);if(firstIsSet&&(!(0,_indicators__WEBPACK_IMPORTED_MODULE_2__.isSet)(second)||first.size!==second.size))return!!options.returnReasonIfNotEqual&&".size";if(firstIsArray){for(var index=0,_loop2=function(){var e=_arr5[_i14];if(0!==options.deep){var r=equals(e,second[index],_babel_runtime_helpers_extends__WEBPACK_IMPORTED_MODULE_0___default()({},options,{deep:options.deep-1}));if(!r)return{v:!1};var t=index,n=function(e){var r;return"string"==typeof e?"["+t+"]"+(null!==(r={"[":"",">":" "}[e[0]])&&void 0!==r?r:".")+e:e};if(null!=r&&r.then&&promises.push(r.then(n)),"string"==typeof r)return{v:n(r)}}index+=1},_ret2,_i14=0,_arr5=first;_i14<_arr5.length;_i14++)if(_ret2=_loop2(),_ret2)return _ret2.v}else if(firstIsMap){for(var _loop3=function(){var e=_step13.value,r=e[0],t=e[1];if(0!==options.deep){var n=equals(t,second.get(r),_babel_runtime_helpers_extends__WEBPACK_IMPORTED_MODULE_0___default()({},options,{deep:options.deep-1}));if(!n)return{v:!1};var o=function(e){var t;return"string"==typeof e?"get("+represent(r)+")"+(null!==(t={"[":"",">":" "}[e[0]])&&void 0!==t?t:".")+e:e};if(null!=n&&n.then&&promises.push(n.then(o)),"string"==typeof n)return{v:o(n)}}},_ret3,_iterator13=_createForOfIteratorHelperLoose(first),_step13;!(_step13=_iterator13()).done;)if(_ret3=_loop3(),_ret3)return _ret3.v}else if(firstIsSet){for(var _loop4=function(){var e=_step14.value;if(0!==options.deep){for(var r,t=!1,n=[],o=_createForOfIteratorHelperLoose(second);!(r=o()).done;){var i=r.value,a=equals(e,i,_babel_runtime_helpers_extends__WEBPACK_IMPORTED_MODULE_0___default()({},options,{deep:options.deep-1}));if("boolean"==typeof a){if(a){t=!0;break}}else n.push(a)}var u=function(r){return!!r||!!options.returnReasonIfNotEqual&&">>> {-> "+represent(e)+" not found}"};return t?0:(n.length&&promises.push(new Promise((function(e){Promise.all(n).then((function(r){return e(u(r.some(_function__WEBPACK_IMPORTED_MODULE_4__.identity)))}),_context__WEBPACK_IMPORTED_MODULE_5__.NOOP)}))),{v:u(!1)})}},_ret4,_iterator14=_createForOfIteratorHelperLoose(first),_step14;!(_step14=_iterator14()).done;)if(_ret4=_loop4(),0!==_ret4&&_ret4)return _ret4.v}else for(var _loop5=function(){var e=_Object$entries7[_i15],r=e[0],t=e[1];if(options.properties&&!options.properties.includes(r))return 0;for(var n,o=!1,i=_createForOfIteratorHelperLoose(options.exceptionPrefixes);!(n=i()).done;){var a=n.value;if(r.toString().startsWith(a)){o=!0;break}}if(o)return 0;if(0!==options.deep){var u=equals(t,second[r],_babel_runtime_helpers_extends__WEBPACK_IMPORTED_MODULE_0___default()({},options,{deep:options.deep-1}));if(!u)return{v:!1};var l=function(e){var t;return"string"==typeof e?r+(null!==(t={"[":"",">":" "}[e[0]])&&void 0!==t?t:".")+e:e};if(null!=u&&u.then&&promises.push(u.then(l)),"string"==typeof u)return{v:l(u)}}},_ret5,_i15=0,_Object$entries7=Object.entries(first);_i15<_Object$entries7.length&&(_ret5=_loop5(),0!==_ret5);_i15++)if(_ret5)return _ret5.v}return!promises.length||new Promise((function(e){Promise.all(promises).then((function(r){for(var t,n=_createForOfIteratorHelperLoose(r);!(t=n()).done;){var o=t.value;if(!o||"string"==typeof o){e(o);break}}e(!0)}),_context__WEBPACK_IMPORTED_MODULE_5__.NOOP)}))}return!!options.returnReasonIfNotEqual&&">>> "+represent(firstValue)+" !== "+represent(secondValue)},evaluateDynamicData=function(e,r,t,n,o){if(void 0===r&&(r={}),void 0===t&&(t="self"),void 0===n&&(n="__evaluate__"),void 0===o&&(o="__execute__"),"object"!=typeof e||null===e)return e;t in r||(r[t]=e);var i=function(e,t){void 0===t&&(t=n);var i=(0,_string__WEBPACK_IMPORTED_MODULE_6__.evaluate)(e,r,t===o);if(i.error)throw new Error(i.error);return i.result},a=function e(r){if(null!==r&&"object"==typeof r){if((0,_indicators__WEBPACK_IMPORTED_MODULE_2__.isProxy)(r)){for(var t=0,a=[n,o];t<a.length;t++){var u=a[t];if(Object.prototype.hasOwnProperty.call(r,u))return r[u]}r=r.__target__}for(var l=0,_=Object.entries(r);l<_.length;l++){var c=_[l],s=c[0],f=c[1];if([n,o].includes(s))return"undefined"==typeof Proxy?e(i(f)):f;r[s]=e(f)}}return r};r.resolve=a;if(null!==e&&"object"==typeof e){if(Object.prototype.hasOwnProperty.call(e,n))return i(e[n]);if(Object.prototype.hasOwnProperty.call(e,o))return i(e[o],o)}return function e(r){if(null!==r&&"object"==typeof r)for(var t=0,n=Object.entries(r);t<n.length;t++){var o=n[t],i=o[0],a=o[1];if("__target__"!==i&&null!==a&&["function","undefined"].includes(typeof a)){var u=a.__target__;void 0!==u&&(r[i]=u),e(a)}}return r}(a(function e(r){if("object"!=typeof r||null===r||"undefined"==typeof Proxy)return r;for(var t=0,u=Object.entries(r);t<u.length;t++){var l=u[t],_=l[0],c=l[1];if("__target__"!==_&&null!==c&&"object"==typeof c){var s=c;if(e(s),Object.prototype.hasOwnProperty.call(s,n)||Object.prototype.hasOwnProperty.call(s,o)){var f=s;r[_]=new Proxy(s,{get:function(e,r){if("__target__"===r)return e;if("hasOwnProperty"===r)return e[r];for(var t=0,u=[n,o];t<u.length;t++){var l=u[t];if(r===l&&"string"==typeof e[r])return a(i(e[r],l))}var _=a(e);if("toString"===r){var c=i(_);return c[r].bind(c)}if("string"!=typeof r){var s,f=i(_);return null!=(s=f[r])&&s.bind?f[r].bind(f):f[r]}for(var d=0,p=[n,o];d<p.length;d++){var v=p[d];if(Object.prototype.hasOwnProperty.call(e,v))return i(_,v)[r]}return _[r]},ownKeys:function(e){for(var r=0,t=[n,o];r<t.length;r++){var u=t[r];if(Object.prototype.hasOwnProperty.call(e,u))return Object.getOwnPropertyNames(a(i(e[u],u)))}return Object.getOwnPropertyNames(e)}}),r[_].__target__||(r[_].__target__=f)}}}return r}(e)))},removeKeysInEvaluation=function e(r,t){void 0===t&&(t=["__evaluate__","__execute__"]);for(var n=0,o=Object.entries(r);n<o.length;n++){var i=o[n],a=i[0],u=i[1];!t.includes(a)&&t.some((function(e){return Object.prototype.hasOwnProperty.call(r,e)}))?delete r[a]:(0,_indicators__WEBPACK_IMPORTED_MODULE_2__.isPlainObject)(u)&&e(u,t)}return r},extend=function e(r,t){for(var n=!1,o=arguments.length,i=new Array(o>2?o-2:0),a=2;a<o;a++)i[a-2]=arguments[a];var u,l=i;r===_constants__WEBPACK_IMPORTED_MODULE_1__.IGNORE_NULL_AND_UNDEFINED_SYMBOL||"boolean"==typeof r?(n=r,u=t):(u=r,null!==t&&"object"==typeof t?l=[t].concat(l):void 0!==t&&(u=t));for(var _,c=function(r,t){return t===r?r:n&&t&&((0,_indicators__WEBPACK_IMPORTED_MODULE_2__.isPlainObject)(t)||(0,_indicators__WEBPACK_IMPORTED_MODULE_2__.isMap)(t))?(o=(0,_indicators__WEBPACK_IMPORTED_MODULE_2__.isMap)(t)?r&&(0,_indicators__WEBPACK_IMPORTED_MODULE_2__.isMap)(r)?r:new Map:r&&(0,_indicators__WEBPACK_IMPORTED_MODULE_2__.isPlainObject)(r)?r:{},e(n,o,t)):t;var o},s=_createForOfIteratorHelperLoose(l);!(_=s()).done;){var f=_.value,d=typeof u,p=typeof f;if((0,_indicators__WEBPACK_IMPORTED_MODULE_2__.isMap)(u)&&(d+=" Map"),(0,_indicators__WEBPACK_IMPORTED_MODULE_2__.isMap)(f)&&(p+=" Map"),d===p&&u!==f)if((0,_indicators__WEBPACK_IMPORTED_MODULE_2__.isMap)(u)&&(0,_indicators__WEBPACK_IMPORTED_MODULE_2__.isMap)(f))for(var v,m=_createForOfIteratorHelperLoose(f);!(v=m()).done;){var E=v.value,b=E[0],y=E[1];u.set(b,c(u.get(b),y))}else if(null===u||Array.isArray(u)||"object"!=typeof u||null===f||Array.isArray(f)||"object"!=typeof f)u=f;else for(var h=0,g=Object.entries(f);h<g.length;h++){var O=g[h],P=O[0],D=O[1];n===_constants__WEBPACK_IMPORTED_MODULE_1__.IGNORE_NULL_AND_UNDEFINED_SYMBOL&&[null,void 0].includes(D)||(u[P]=c(u[P],D))}else u=f}return u},getSubstructure=function(e,r,t,n){void 0===t&&(t=!0),void 0===n&&(n=".");for(var o,i=[],a=_createForOfIteratorHelperLoose([].concat(r));!(o=a()).done;){var u=o.value;if("string"==typeof u)for(var l,_=_createForOfIteratorHelperLoose(u.split(n));!(l=_()).done;){var c=l.value;if(c){var s=c.match(/(.*?)(\[[0-9]+\])/g);if(s)for(var f,d=_createForOfIteratorHelperLoose(s);!(f=d()).done;){var p=f.value,v=/(.*?)(\[[0-9]+\])/.exec(p),m=v[1],E=v[2];m&&i.push(m),i.push(E.substring(1,E.length-1))}else i.push(c)}}else i=i.concat(u)}for(var b,y=e,h=_createForOfIteratorHelperLoose(i);!(b=h()).done;){var g=b.value;if(null!==y&&"object"==typeof y){if("string"==typeof g&&Object.prototype.hasOwnProperty.call(y,g))y=y[g];else if((0,_indicators__WEBPACK_IMPORTED_MODULE_2__.isFunction)(g))y=g(y);else if(!t)return}else if(!t)return}return y},getProxyHandler=function(e,r){return void 0===r&&(r={}),r=_babel_runtime_helpers_extends__WEBPACK_IMPORTED_MODULE_0___default()({delete:"[]",get:"[]",has:"[]",set:"[]"},r),{deleteProperty:function(t,n){return"[]"!==r.delete||"string"!=typeof n?e[r.delete](n):(delete e[n],!0)},get:function(t,n){return"[]"===r.get&&"string"==typeof n?e[n]:e[r.get](n)},has:function(t,n){return"[]"===r.has?n in e:e[r.has](n)},set:function(t,n,o){return"[]"!==r.set||"string"!=typeof n?e[r.set](n,o):(e[n]=o,!0)}}},mask=function e(r,t){if(!0===(t=_babel_runtime_helpers_extends__WEBPACK_IMPORTED_MODULE_0___default()({exclude:!1,include:!0},t)).exclude||Array.isArray(t.exclude)&&0===t.exclude.length||!1===t.include||"object"!=typeof r)return{};var n=Array.isArray(t.exclude)?t.exclude.reduce((function(e,r){var t;return _babel_runtime_helpers_extends__WEBPACK_IMPORTED_MODULE_0___default()({},e,((t={})[r]=!0,t))}),{}):t.exclude,o=Array.isArray(t.include)?t.include.reduce((function(e,r){var t;return _babel_runtime_helpers_extends__WEBPACK_IMPORTED_MODULE_0___default()({},e,((t={})[r]=!0,t))}),{}):t.include,i={};if((0,_indicators__WEBPACK_IMPORTED_MODULE_2__.isPlainObject)(o))for(var a=0,u=Object.entries(o);a<u.length;a++){var l=u[a],_=l[0],c=l[1];Object.prototype.hasOwnProperty.call(r,_)&&(!0===c?i[_]=r[_]:((0,_indicators__WEBPACK_IMPORTED_MODULE_2__.isPlainObject)(c)||Array.isArray(c)&&c.length)&&"object"==typeof r[_]&&(i[_]=e(r[_],{include:c})))}else i=r;if((0,_indicators__WEBPACK_IMPORTED_MODULE_2__.isPlainObject)(n)){for(var s=!1,f=_babel_runtime_helpers_extends__WEBPACK_IMPORTED_MODULE_0___default()({},i),d=0,p=Object.entries(n);d<p.length;d++){var v=p[d],m=v[0],E=v[1];if(Object.prototype.hasOwnProperty.call(f,m))if(!0===E)s=!0,delete f[m];else if(((0,_indicators__WEBPACK_IMPORTED_MODULE_2__.isPlainObject)(E)||Array.isArray(E)&&E.length)&&"object"==typeof f[m]){var b=f[m];f[m]=e(f[m],{exclude:E}),f[m]!==b&&(s=!0)}}s&&(i=f)}return i},modifyObject=function e(r,t,n,o,i,a,u,l,_){if(void 0===n&&(n="__remove__"),void 0===o&&(o="__prepend__"),void 0===i&&(i="__append__"),void 0===a&&(a="__"),void 0===u&&(u="__"),void 0===l&&(l=null),void 0===_&&(_=null),(0,_indicators__WEBPACK_IMPORTED_MODULE_2__.isMap)(t)&&(0,_indicators__WEBPACK_IMPORTED_MODULE_2__.isMap)(r))for(var c,s=_createForOfIteratorHelperLoose(t);!(c=s()).done;){var f=c.value,d=f[0],p=f[1];r.has(d)&&e(r.get(d),p,n,o,i,a,u,t,d)}else if(null!==t&&"object"==typeof t&&null!==r&&"object"==typeof r)for(var v=0,m=Object.entries(t);v<m.length;v++){var E=m[v],b=E[0],y=E[1],h=NaN;if(Array.isArray(r)&&b.startsWith(a)&&b.endsWith(u)&&((h=parseInt(b.substring(a.length,b.length-u.length),10))<0||h>=r.length)&&(h=NaN),[n,o,i].includes(b)||!isNaN(h)){if(Array.isArray(r))if(b===n)for(var g,O=_createForOfIteratorHelperLoose([].concat(y));!(g=O()).done;){var P=g.value;"string"==typeof P&&P.startsWith(a)&&P.endsWith(u)?r.splice(parseInt(P.substring(a.length,P.length-u.length),10),1):r.includes(P)?r.splice(r.indexOf(P),1):"number"==typeof P&&P<r.length&&r.splice(P,1)}else b===i?r=r.concat(y):b===o?r=[].concat(y).concat(r):null!==r[h]&&"object"==typeof r[h]&&null!==y&&"object"==typeof y?extend(!0,e(r[h],y,n,o,i,a,u),r[h],y):r[h]=y;else if(b===n)for(var D,A=_createForOfIteratorHelperLoose([].concat(y));!(D=A()).done;){var M=D.value;"string"==typeof M&&Object.prototype.hasOwnProperty.call(r,M)&&delete r[M]}delete t[b],l&&"string"==typeof _&&delete l[_]}else null!==r&&Object.prototype.hasOwnProperty.call(r,b)&&(r[b]=e(r[b],y,n,o,i,a,u,t,b))}return r},removeKeyPrefixes=function e(r,t){void 0===t&&(t="#");var n=[].concat(t);if(Array.isArray(r))for(var o,i=0,a=_createForOfIteratorHelperLoose(r.slice());!(o=a()).done;){var u=o.value,l=!1;if("string"==typeof u){for(var _,c=_createForOfIteratorHelperLoose(n);!(_=c()).done;){var s=_.value;if(u.startsWith(s+":")){r.splice(i,1),l=!0;break}}if(l)continue}r[i]=e(u,n),i+=1}else if((0,_indicators__WEBPACK_IMPORTED_MODULE_2__.isSet)(r))for(var f,d=_createForOfIteratorHelperLoose(new Set(r));!(f=d()).done;){var p=f.value,v=!1;if("string"==typeof p){for(var m,E=_createForOfIteratorHelperLoose(n);!(m=E()).done;){var b=m.value;if(p.startsWith(b+":")){r.delete(p),v=!0;break}}if(v)continue}e(p,n)}else if((0,_indicators__WEBPACK_IMPORTED_MODULE_2__.isMap)(r))for(var y,h=_createForOfIteratorHelperLoose(new Map(r));!(y=h()).done;){var g=y.value,O=g[0],P=g[1],D=!1;if("string"==typeof O){for(var A,M=_createForOfIteratorHelperLoose(n);!(A=M()).done;){var T=A.value,w=(0,_string__WEBPACK_IMPORTED_MODULE_6__.escapeRegularExpressions)(T);if(new RegExp("^"+w+"[0-9]*$").test(O)){r.delete(O),D=!0;break}}if(D)continue}r.set(O,e(P,n))}else if(null!==r&&"object"==typeof r)for(var I=0,L=Object.entries(Object.assign({},r));I<L.length;I++){for(var x,C=L[I],R=C[0],N=C[1],U=!1,S=_createForOfIteratorHelperLoose(n);!(x=S()).done;){var j=x.value,B=(0,_string__WEBPACK_IMPORTED_MODULE_6__.escapeRegularExpressions)(j);if(new RegExp("^"+B+"[0-9]*$").test(R)){delete r[R],U=!0;break}}U||(r[R]=e(N,n))}return r},represent=function e(r,t,n,o,i){if(void 0===t&&(t=" "),void 0===n&&(n=""),void 0===o&&(o="__maximum_number_of_levels_reached__"),void 0===i&&(i=8),0===i)return""+o;if(null===r)return"null";if(void 0===r)return"undefined";if("string"==typeof r)return'"'+r.replace(/\n/g,"\n"+n)+'"';if((0,_indicators__WEBPACK_IMPORTED_MODULE_2__.isNumeric)(r)||"boolean"==typeof r)return""+r;if(Array.isArray(r)){for(var a,u="[",l=!1,_=_createForOfIteratorHelperLoose(r);!(a=_()).done;){l&&(u+=","),u+="\n"+n+t+e(a.value,t,""+n+t,o,i-1),l=!0}return l&&(u+="\n"+n),u+="]"}if((0,_indicators__WEBPACK_IMPORTED_MODULE_2__.isMap)(r)){for(var c,s="",f=!1,d=_createForOfIteratorHelperLoose(r);!(c=d()).done;){var p=c.value,v=p[0],m=p[1];f&&(s+=",\n"+n+t),s+=e(v,t,""+n+t,o,i-1)+" -> "+e(m,t,""+n+t,o,i-1),f=!0}return f||(s="EmptyMap"),s}if((0,_indicators__WEBPACK_IMPORTED_MODULE_2__.isSet)(r)){for(var E,b="{",y=!1,h=_createForOfIteratorHelperLoose(r);!(E=h()).done;){y&&(b+=","),b+="\n"+n+t+e(E.value,t,""+n+t,o,i-1),y=!0}return y?b+="\n"+n+"}":b="EmptySet",b}if((0,_indicators__WEBPACK_IMPORTED_MODULE_2__.isFunction)(r))return"__function__";for(var g,O="{",P=!1,D=_createForOfIteratorHelperLoose(Object.getOwnPropertyNames(r).sort());!(g=D()).done;){var A=g.value;P&&(O+=","),O+="\n"+n+t+A+": "+e(r[A],t,""+n+t,o,i-1),P=!0}return P&&(O+="\n"+n),O+="}"},sort=function(e){var r=[];if(Array.isArray(e))for(var t=0;t<e.length;t++)r.push(t);else if("object"==typeof e)if((0,_indicators__WEBPACK_IMPORTED_MODULE_2__.isMap)(e))for(var n,o=_createForOfIteratorHelperLoose(e);!(n=o()).done;){var i=n.value;r.push(i[0])}else if(null!==e)for(var a=0,u=Object.keys(e);a<u.length;a++){var l=u[a];r.push(l)}return r.sort()},unwrapProxy=function e(r,t){if(void 0===t&&(t=new Set),null!==r&&"object"==typeof r){if(t.has(r))return r;try{(0,_indicators__WEBPACK_IMPORTED_MODULE_2__.isFunction)(r.__revoke__)&&((0,_indicators__WEBPACK_IMPORTED_MODULE_2__.isProxy)(r)&&(r=r.__target__),r.__revoke__())}catch(e){return r}finally{t.add(r)}if(Array.isArray(r))for(var n,o=0,i=_createForOfIteratorHelperLoose(r);!(n=i()).done;){var a=n.value;r[o]=e(a,t),o+=1}else if((0,_indicators__WEBPACK_IMPORTED_MODULE_2__.isMap)(r))for(var u,l=_createForOfIteratorHelperLoose(r);!(u=l()).done;){var _=u.value,c=_[0],s=_[1];r.set(c,e(s,t))}else if((0,_indicators__WEBPACK_IMPORTED_MODULE_2__.isSet)(r)){for(var f,d=[],p=_createForOfIteratorHelperLoose(r);!(f=p()).done;){var v=f.value;r.delete(v),d.push(e(v,t))}for(var m=0,E=d;m<E.length;m++){var b=E[m];r.add(b)}}else for(var y=0,h=Object.entries(r);y<h.length;y++){var g=h[y],O=g[0],P=g[1];r[O]=e(P,t)}}return r}},function(__unused_webpack_module,__webpack_exports__,__webpack_require__){__webpack_require__.r(__webpack_exports__),__webpack_require__.d(__webpack_exports__,{addSeparatorToPath:function(){return addSeparatorToPath},camelCaseToDelimited:function(){return camelCaseToDelimited},capitalize:function(){return capitalize},compile:function(){return compile},compressStyleValue:function(){return compressStyleValue},convertToValidVariableName:function(){return convertToValidVariableName},decodeHTMLEntities:function(){return decodeHTMLEntities},delimitedToCamelCase:function(){return delimitedToCamelCase},encodeURIComponentExtended:function(){return encodeURIComponentExtended},escapeRegularExpressions:function(){return escapeRegularExpressions},evaluate:function(){return evaluate},findNormalizedMatchRange:function(){return findNormalizedMatchRange},fixKnownEncodingErrors:function(){return fixKnownEncodingErrors},format:function(){return format},getDomainName:function(){return getDomainName},getEditDistance:function(){return getEditDistance},getPortNumber:function(){return getPortNumber},getProtocolName:function(){return getProtocolName},getURLParameter:function(){return getURLParameter},hasPathPrefix:function(){return hasPathPrefix},lowerCase:function(){return lowerCase},mark:function(){return mark},maskForRegularExpression:function(){return maskForRegularExpression},normalizeDomNodeSelector:function(){return normalizeDomNodeSelector},normalizePhoneNumber:function(){return normalizePhoneNumber},normalizeURL:function(){return normalizeURL},normalizeZipCode:function(){return normalizeZipCode},parseEncodedObject:function(){return parseEncodedObject},representPhoneNumber:function(){return representPhoneNumber},representURL:function(){return representURL},serviceURLEquals:function(){return serviceURLEquals},sliceAllExceptNumberAndLastSeperator:function(){return sliceAllExceptNumberAndLastSeperator}});var _babel_runtime_helpers_extends__WEBPACK_IMPORTED_MODULE_0__=__webpack_require__(3),_babel_runtime_helpers_extends__WEBPACK_IMPORTED_MODULE_0___default=__webpack_require__.n(_babel_runtime_helpers_extends__WEBPACK_IMPORTED_MODULE_0__),_babel_runtime_helpers_construct__WEBPACK_IMPORTED_MODULE_1__=__webpack_require__(9),_babel_runtime_helpers_construct__WEBPACK_IMPORTED_MODULE_1___default=__webpack_require__.n(_babel_runtime_helpers_construct__WEBPACK_IMPORTED_MODULE_1__),_constants__WEBPACK_IMPORTED_MODULE_2__=__webpack_require__(1),_context__WEBPACK_IMPORTED_MODULE_3__=__webpack_require__(0),_filesystem__WEBPACK_IMPORTED_MODULE_5__=__webpack_require__(17),_object__WEBPACK_IMPORTED_MODULE_4__=__webpack_require__(4);function _createForOfIteratorHelperLoose(e,r){var t="undefined"!=typeof Symbol&&e[Symbol.iterator]||e["@@iterator"];if(t)return(t=t.call(e)).next.bind(t);if(Array.isArray(e)||(t=_unsupportedIterableToArray(e))||r&&e&&"number"==typeof e.length){t&&(e=t);var n=0;return function(){return n>=e.length?{done:!0}:{done:!1,value:e[n++]}}}throw new TypeError("Invalid attempt to iterate non-iterable instance.\nIn order to be iterable, non-array objects must have a [Symbol.iterator]() method.")}function _unsupportedIterableToArray(e,r){if(e){if("string"==typeof e)return _arrayLikeToArray(e,r);var t={}.toString.call(e).slice(8,-1);return"Object"===t&&e.constructor&&(t=e.constructor.name),"Map"===t||"Set"===t?Array.from(e):"Arguments"===t||/^(?:Ui|I)nt(?:8|16|32)(?:Clamped)?Array$/.test(t)?_arrayLikeToArray(e,r):void 0}}function _arrayLikeToArray(e,r){(null==r||r>e.length)&&(r=e.length);for(var t=0,n=Array(r);t<r;t++)n[t]=e[t];return n}var escapeRegularExpressions=function(e,r){if(void 0===r&&(r=[]),1===e.length&&!_constants__WEBPACK_IMPORTED_MODULE_2__.SPECIAL_REGEX_SEQUENCES.includes(e))return e;r.includes("\\")||e.replace(/\\/g,"\\\\");for(var t,n=_createForOfIteratorHelperLoose(_constants__WEBPACK_IMPORTED_MODULE_2__.SPECIAL_REGEX_SEQUENCES);!(t=n()).done;){var o=t.value;r.includes(o)||(e=e.replace(new RegExp("\\"+o,"g"),"\\"+o))}return e},convertToValidVariableName=function(e,r){return void 0===r&&(r="0-9a-zA-Z_$"),["class","default"].includes(e)?"_"+e:e.toString().replace(/^[^a-zA-Z_$]+/,"").replace(new RegExp("[^"+r+"]+([a-zA-Z0-9])","g"),(function(e,r){return r.toUpperCase()}))},encodeURIComponentExtended=function(e,r){return void 0===r&&(r=!1),encodeURIComponent(e).replace(/%40/gi,"@").replace(/%3A/gi,":").replace(/%24/g,"$").replace(/%2C/gi,",").replace(/%20/g,r?"%20":"+")},addSeparatorToPath=function(e,r){return void 0===r&&(r="/"),(e=e.trim()).substring(e.length-1)!==r&&e.length?e+r:e},hasPathPrefix=function(e,r,t){var n;(void 0===e&&(e="/admin"),void 0===r)&&(r=(null==(n=_context__WEBPACK_IMPORTED_MODULE_3__.$.location)?void 0:n.pathname)||"");return void 0===t&&(t="/"),"string"==typeof e&&(e.endsWith(t)||(e+=t),r===e.substring(0,e.length-t.length)||r.startsWith(e))},getDomainName=function(e,r){var t,n;void 0===e&&(e=(null==(t=_context__WEBPACK_IMPORTED_MODULE_3__.$.location)?void 0:t.href)||"");void 0===r&&(r=(null==(n=_context__WEBPACK_IMPORTED_MODULE_3__.$.location)?void 0:n.hostname)||"");var o=/^([a-z]*:?\/\/)?([^/]+?)(?::[0-9]+)?(?:\/.*|$)/i.exec(e);return o&&o.length>2&&o[1]&&o[2]?o[2]:r},getPortNumber=function(e,r){var t,n,o;void 0===e&&(e=(null==(n=_context__WEBPACK_IMPORTED_MODULE_3__.$.location)?void 0:n.href)||"");void 0===r&&(r=null!=(o=_context__WEBPACK_IMPORTED_MODULE_3__.$.location)&&o.port?parseInt(_context__WEBPACK_IMPORTED_MODULE_3__.$.location.port):null);var i=/^(?:[a-z]*:?\/\/[^/]+?)?(?:[^/]+?):([0-9]+)/i.exec(e);return i&&i.length>1?parseInt(i[1],10):null!==r?r:null!=(t=_context__WEBPACK_IMPORTED_MODULE_3__.$.location)&&t.port&&parseInt(_context__WEBPACK_IMPORTED_MODULE_3__.$.location.port,10)?parseInt(_context__WEBPACK_IMPORTED_MODULE_3__.$.location.port,10):"https"===getProtocolName(e)?443:80},getProtocolName=function(e,r){var t,n;void 0===e&&(e=(null==(t=_context__WEBPACK_IMPORTED_MODULE_3__.$.location)?void 0:t.href)||"");void 0===r&&(r=(null==(n=_context__WEBPACK_IMPORTED_MODULE_3__.$.location)?void 0:n.protocol)&&_context__WEBPACK_IMPORTED_MODULE_3__.$.location.protocol.substring(0,_context__WEBPACK_IMPORTED_MODULE_3__.$.location.protocol.length-1)||"");var o=/^([a-z]+):\/\//i.exec(e);return o&&o.length>1&&o[1]?o[1]:r},getURLParameter=function(e,r,t,n,o,i,a){var u,l,_;(void 0===e&&(e=null),void 0===r&&(r=!1),void 0===t&&(t=null),void 0===n&&(n="$"),void 0===o&&(o="!"),void 0===i&&(i=null),void 0===a)&&(a=null!==(l=null==(_=_context__WEBPACK_IMPORTED_MODULE_3__.$.location)?void 0:_.hash)&&void 0!==l?l:"");var c=null!==(u=a)&&void 0!==u?u:"#",s="";if(i)s=i;else if(o&&c.startsWith(o)){var f,d=c.indexOf("#");-1===d?(f=c.substring(o.length),c=""):(f=c.substring(o.length,d),c=c.substring(d));var p=f.indexOf("?");-1!==p&&(s=f.substring(p))}else _context__WEBPACK_IMPORTED_MODULE_3__.$.location&&(s=_context__WEBPACK_IMPORTED_MODULE_3__.$.location.search||"");var v=t||s,m="&"===v;if(m||"#"===v){var E="";try{E=decodeURIComponent(c)}catch(e){}var b=E.indexOf(n);-1===b?v="":(v=E.substring(b)).startsWith(n)&&(v=v.substring(n.length))}else v.startsWith("?")&&(v=v.substring(1));var y=v?v.split("&"):[];s=s.substring(1),m&&s&&(y=y.concat(s.split("&")));for(var h,g=[],O=_createForOfIteratorHelperLoose(y);!(h=O()).done;){var P=h.value,D=P.split("="),A=void 0;try{A=decodeURIComponent(D[0])}catch(e){A=""}try{P=decodeURIComponent(D[1])}catch(e){P=""}g.push(A),r?Object.prototype.hasOwnProperty.call(g,A)&&Array.isArray(g[A])?g[A].push(P):g[A]=[P]:g[A]=P}return e?Object.prototype.hasOwnProperty.call(g,e)?g[e]:null:g},serviceURLEquals=function(e,r){var t;void 0===r&&(r=(null==(t=_context__WEBPACK_IMPORTED_MODULE_3__.$.location)?void 0:t.href)||"");var n=getDomainName(e,""),o=getProtocolName(e,""),i=getPortNumber(e);return!(""!==n&&n!==getDomainName(r)||""!==o&&o!==getProtocolName(r)||null!==i&&i!==getPortNumber(r))},normalizeURL=function(e){return"string"==typeof e?(e=e.replace(/^:?\/+/,"").replace(/\/+$/,"").trim()).startsWith("http")?e:"http://"+e:""},representURL=function(e){return"string"==typeof e?e.replace(/^(https?)?:?\/+/,"").replace(/\/+$/,"").trim():""},camelCaseToDelimited=function(e,r,t){void 0===r&&(r="-"),void 0===t&&(t=null),t||(t=_constants__WEBPACK_IMPORTED_MODULE_2__.ABBREVIATIONS);var n=maskForRegularExpression(r);if(_constants__WEBPACK_IMPORTED_MODULE_2__.ABBREVIATIONS.length){for(var o,i="",a=_createForOfIteratorHelperLoose(_constants__WEBPACK_IMPORTED_MODULE_2__.ABBREVIATIONS);!(o=a()).done;){i&&(i+="|"),i+=o.value.toUpperCase()}e=e.replace(new RegExp("("+i+")("+i+")","g"),"$1"+r+"$2")}return(e=e.replace(new RegExp("([^"+n+"])([A-Z][a-z]+)","g"),"$1"+r+"$2")).replace(/([a-z0-9])([A-Z])/g,"$1"+r+"$2").toLowerCase()},capitalize=function(e){return e.charAt(0).toUpperCase()+e.substring(1)},compressStyleValue=function(e){return e.replace(/ *([:;]) */g,"$1").replace(/ +/g," ").replace(/^;+/,"").replace(/;+$/,"").trim()},decodeHTMLEntities=function(e){if(_context__WEBPACK_IMPORTED_MODULE_3__.$.document){var r=_context__WEBPACK_IMPORTED_MODULE_3__.$.document.createElement("textarea");return r.innerHTML=e,r.value}return null},delimitedToCamelCase=function(e,r,t,n,o){void 0===r&&(r="-"),void 0===t&&(t=null),void 0===n&&(n=!1),void 0===o&&(o=!1);var i,a=maskForRegularExpression(r);if(t||(t=_constants__WEBPACK_IMPORTED_MODULE_2__.ABBREVIATIONS),n)i=_constants__WEBPACK_IMPORTED_MODULE_2__.ABBREVIATIONS.join("|");else{i="";for(var u,l=_createForOfIteratorHelperLoose(t);!(u=l()).done;){var _=u.value;i&&(i+="|"),i+=capitalize(_)+"|"+_}}var c=e.startsWith(r);return c&&(e=e.substring(r.length)),e=e.replace(new RegExp("("+a+")("+i+")("+a+"|$)","g"),(function(e,r,t,n){return r+t.toUpperCase()+n})),o&&(a="(?:"+a+")+"),e=e.replace(new RegExp(a+"([a-zA-Z0-9])","g"),(function(e,r){return r.toUpperCase()})),c&&(e=r+e),e},compile=function(e,r,t,n){var o,i;void 0===r&&(r=[]),void 0===t&&(t=!1),void 0===n&&(n=!0);for(var a,u,l=Object.keys(globalThis),_={error:null,globalNames:l,globalNamesUndefinedList:l.map((function(){})),originalScopeNames:Array.isArray(r)?r:"string"==typeof r?[r]:Object.keys(r),scopeNameMapping:{},scopeNames:[],templateFunction:function(){return null}},c=_createForOfIteratorHelperLoose(_.originalScopeNames);!(a=c()).done;){var s=a.value,f=convertToValidVariableName(s);_.scopeNameMapping[s]=f,_.scopeNames.push(f)}if(0!==_context__WEBPACK_IMPORTED_MODULE_3__.MAXIMAL_SUPPORTED_INTERNET_EXPLORER_VERSION.value)if(null!=(o=_context__WEBPACK_IMPORTED_MODULE_3__.$.global.Babel)&&o.transform)e=null==(i=_context__WEBPACK_IMPORTED_MODULE_3__.$.global.Babel)?void 0:i.transform("("+e+")",{plugins:["transform-template-literals"]}).code;else if(e.startsWith("`")&&e.endsWith("`")){var d="####",p="`"===(e=e.replace(/\\\$/g,d).replace(/^`\$\{([\s\S]+)\}`$/,"String($1)").replace(/^`([^']+)`$/,"'$1'").replace(/^`([^"]+)`$/,'"$1"')).charAt(0)?"'":e.charAt(0);e=e.replace(/\$\{((([^{]*{[^}]*}[^}]*})|[^{}]+)+)\}/g,p+"+($1)+"+p).replace(/^`([\s\S]+)`$/,p+"$1"+p).replace(/\n+/g,"").replace(new RegExp(d,"g"),"\\$")}try{u=_babel_runtime_helpers_construct__WEBPACK_IMPORTED_MODULE_1___default()(Function,(n?_.globalNames:[]).concat(_.scopeNames,[(t?"":"return ")+e]))}catch(r){_.error='Given expression "'+e+'" could not be compiled width given scope names "'+_.scopeNames.join('", "')+'": '+(0,_object__WEBPACK_IMPORTED_MODULE_4__.represent)(r)}return u&&(_.templateFunction=n?function(){for(var e=arguments.length,r=new Array(e),t=0;t<e;t++)r[t]=arguments[t];return u.apply(void 0,_.globalNames.concat(r))}:u),_},evaluate=function(e,r,t,n,o){void 0===r&&(r={}),void 0===t&&(t=!1),void 0===n&&(n=!0);var i=compile(e,r,t,n),a=i.error,u=i.originalScopeNames,l=i.scopeNames,_=i.templateFunction,c={compileError:null,error:null,result:null,runtimeError:null};if(a)return c.compileError=c.error=a,c;try{c.result=(o?_.bind(o):_).apply(void 0,u.map((function(e){return r[e]})))}catch(a){c.error=c.runtimeError='Given expression "'+e+'" could not be evaluated with given scope names "'+l.join('", "')+'": '+(0,_object__WEBPACK_IMPORTED_MODULE_4__.represent)(a)}return c},findNormalizedMatchRange=function(e,r,t,n){void 0===t&&(t=function(e){return(""+e).toLowerCase()}),void 0===n&&(n=["<",">"]);var o=t(r),i=t(e),a="string"==typeof e?e:i;if(i&&o)for(var u=!1,l=0;l<a.length;l+=1)if(u)a.charAt(l)===n[1]&&(u=!1);else if(Array.isArray(n)&&a.charAt(l)===n[0])u=!0;else if(t(a.substring(l)).startsWith(o)){if(1===o.length)return[l,l+1];for(var _=a.length;_>l;_-=1)if(!t(a.substring(l,_)).startsWith(o))return[l,_+1]}return null},fixKnownEncodingErrors=function(e){for(var r=0,t=Object.entries({"Ã\\x84":"Ä","Ã\\x96":"Ö","Ã\\x9c":"Ü","ä":"ä","ö":"ö","ü":"ü","Ã\\x9f":"ß","\\x96":"-"});r<t.length;r++){var n=t[r],o=n[0],i=n[1];e=e.replace(new RegExp(o,"g"),i)}return e},format=function(e){for(var r=arguments.length,t=new Array(r>1?r-1:0),n=1;n<r;n++)t[n-1]=arguments[n];t.unshift(e);for(var o=0,i=0,a=t;i<a.length;i++){var u=a[i];e=e.replace(new RegExp("\\{"+o+"\\}","gm"),""+u),o+=1}return e},getEditDistance=function(e,r){for(var t=Array(r.length+1).fill(null).map((function(){return Array(e.length+1).fill(null)})),n=0;n<=e.length;n++)t[0][n]=n;for(var o=0;o<=r.length;o++)t[o][0]=o;for(var i=1;i<=r.length;i++)for(var a=1;a<=e.length;a++){var u=e[a-1]===r[i-1]?0:1;t[i][a]=Math.min(t[i][a-1]+1,t[i-1][a]+1,t[i-1][a-1]+u)}return t[r.length][e.length]},maskForRegularExpression=function(e){return e.replace(/([\\|.*$^+[\]()?\-{}])/g,"\\$1")},lowerCase=function(e){return e.charAt(0).toLowerCase()+e.substring(1)},mark=function(e,r,t){if(void 0===t&&(t={}),"string"==typeof e&&null!=r&&r.length){t=_babel_runtime_helpers_extends__WEBPACK_IMPORTED_MODULE_0___default()({marker:'<span class="tools-mark">{1}</span>',normalizer:function(e){return(""+e).toLowerCase()},skipTagDelimitedParts:["<",">"]},t),e=e.trim();for(var n,o=[],i=[].concat(r),a=0,u=_createForOfIteratorHelperLoose(i);!(n=u()).done;){var l=n.value;i[a]=t.normalizer(l).trim(),a+=1}for(var _=e,c=0;;){for(var s,f=null,d=null,p=_createForOfIteratorHelperLoose(i);!(s=p()).done;){var v=s.value;(d=findNormalizedMatchRange(_,v,t.normalizer,t.skipTagDelimitedParts))&&(!f||d[0]<f[0])&&(f=d)}if(!f){_.length&&o.push(_);break}f[0]>0&&o.push(e.substring(c,c+f[0])),o.push("string"==typeof t.marker?format(t.marker,e.substring(c+f[0],c+f[1])):t.marker(e.substring(c+f[0],c+f[1]),o)),c+=f[1],_=e.substring(c)}return"string"==typeof t.marker?o.join(""):o}return e},normalizePhoneNumber=function(e,r){if(void 0===r&&(r=!0),"string"==typeof e||"number"==typeof e){var t=(""+e).trim();if(t=t.replace(/^[^0-9]*\+/,"00"),r)return t.replace(/[^0-9]+/g,"");var n="(?:[ /\\-]+)";t=(t=t.replace(new RegExp("^(.+?)"+n+"?\\(0\\)"+n+"?(.+)$"),"$1-$2")).replace(new RegExp("^(.+?)"+n+"?\\((.+)\\)"+n+"?(.+)$"),"$1-$2-$3");var o=new RegExp("^(00[0-9]+)"+n+"([0-9]+)"+n+"(.+)$");if(o.test(t))t=t.replace(o,(function(e,r,t,n){return r+"-"+t+"-"+sliceAllExceptNumberAndLastSeperator(n)}));else{var i=function(e,r,t){return r.replace(/ +/,"")+"-"+sliceAllExceptNumberAndLastSeperator(t)};t=(o=/^([0-9 ]+)[/-](.+)$/).test(t)?t.replace(o,i):t.replace(new RegExp("^([0-9]+)"+n+"(.+)$"),i)}return t.replace(/[^0-9-]+/g,"").replace(/^-+$/,"")}return""},normalizeZipCode=function(e){return"string"==typeof e||"number"==typeof e?(""+e).trim().replace(/[^0-9]+/g,""):""},parseEncodedObject=function parseEncodedObject(serializedObject,scope,name){var _evaluate;void 0===scope&&(scope={}),void 0===name&&(name="scope"),serializedObject.endsWith(".json")&&(0,_filesystem__WEBPACK_IMPORTED_MODULE_5__.isFileSync)(serializedObject)&&(serializedObject=(0,_filesystem__WEBPACK_IMPORTED_MODULE_5__.readFileSync)(serializedObject,{encoding:_constants__WEBPACK_IMPORTED_MODULE_2__.DEFAULT_ENCODING})),serializedObject=serializedObject.trim(),serializedObject.startsWith("{")||(serializedObject=eval("Buffer").from(serializedObject,"base64").toString(_constants__WEBPACK_IMPORTED_MODULE_2__.DEFAULT_ENCODING));var result=evaluate(serializedObject,(_evaluate={},_evaluate[name]=scope,_evaluate));return"object"==typeof result.result?result.result:null},representPhoneNumber=function(e){if(["number","string"].includes((0,_object__WEBPACK_IMPORTED_MODULE_4__.determineType)(e))&&e){var r=(""+e).replace(/^(00|\+)([0-9]+)-([0-9-]+)$/,"+$2 (0) $3");return(r=(r=r.replace(/^0([1-9][0-9-]+)$/,"+49 (0) $1")).replace(/^([^-]+)-([0-9-]+)$/,"$1 / $2")).replace(/^(.*?)([0-9]+)(-?[0-9]*)$/,(function(e,r,t,n){return r+(t.length%2==0?t.replace(/([0-9]{2})/g,"$1 "):t.replace(/^([0-9]{3})([0-9]+)$/,(function(e,r,t){return r+" "+t.replace(/([0-9]{2})/g,"$1 ").trim()}))+n).trim()})).trim()}return""},sliceAllExceptNumberAndLastSeperator=function(e){var r=/^(.*[0-9].*)-([0-9]+)$/;return r.test(e)?e.replace(r,(function(e,r,t){return r.replace(/[^0-9]+/g,"")+"-"+t})):e.replace(/[^0-9]+/g,"")},normalizeDomNodeSelector=function(e,r){void 0===r&&(r="");var t="";return r&&(t=r+" "),e.startsWith(t)||e.trim().startsWith("<")||(e=t+e),e.trim()}},function(__unused_webpack_module,__webpack_exports__,__webpack_require__){__webpack_require__.r(__webpack_exports__),__webpack_require__.d(__webpack_exports__,{currentImport:function(){return currentImport},currentRequire:function(){return currentRequire},optionalRequire:function(){return optionalRequire}});var currentRequire=eval("typeof require === 'undefined' ? null : require"),currentOptionalImport=null;try{currentOptionalImport=eval("typeof import === 'undefined' ? null : import")}catch(e){}var currentImport=currentOptionalImport,optionalRequire=function(e){try{return currentRequire?currentRequire(e):null}catch(e){return null}}},function(e,r,t){t.r(r),t.d(r,{aggregatePropertyIfEqual:function(){return l},deleteEmptyItems:function(){return _},extract:function(){return c},extractIfMatches:function(){return s},extractIfPropertyExists:function(){return f},extractIfPropertyMatches:function(){return d},intersect:function(){return p},makeArray:function(){return v},makeRange:function(){return m},merge:function(){return E},paginate:function(){return b},permutate:function(){return y},permutateLength:function(){return h},removeArrayItem:function(){return O},sortTopological:function(){return P},sumUpProperty:function(){return g},unique:function(){return D}});var n=t(3),o=t.n(n),i=t(2);function a(e,r){var t="undefined"!=typeof Symbol&&e[Symbol.iterator]||e["@@iterator"];if(t)return(t=t.call(e)).next.bind(t);if(Array.isArray(e)||(t=function(e,r){if(e){if("string"==typeof e)return u(e,r);var t={}.toString.call(e).slice(8,-1);return"Object"===t&&e.constructor&&(t=e.constructor.name),"Map"===t||"Set"===t?Array.from(e):"Arguments"===t||/^(?:Ui|I)nt(?:8|16|32)(?:Clamped)?Array$/.test(t)?u(e,r):void 0}}(e))||r&&e&&"number"==typeof e.length){t&&(e=t);var n=0;return function(){return n>=e.length?{done:!0}:{done:!1,value:e[n++]}}}throw new TypeError("Invalid attempt to iterate non-iterable instance.\nIn order to be iterable, non-array objects must have a [Symbol.iterator]() method.")}function u(e,r){(null==r||r>e.length)&&(r=e.length);for(var t=0,n=Array(r);t<r;t++)n[t]=e[t];return n}var l=function(e,r,t){void 0===t&&(t="");var n=t;if(Array.isArray(e)&&e.length&&Object.prototype.hasOwnProperty.call(e[0],r)){n=e[0][r];for(var o=0,i=v(e);o<i.length;o++){if(i[o][r]!==n)return t}}return n},_=function(e,r){void 0===r&&(r=[]);for(var t=[],n=0,o=v(e);n<o.length;n++){for(var i=o[n],a=!0,u=0,l=Object.entries(i);u<l.length;u++){var _=l[u],c=_[0],s=_[1];if(!["",null,void 0].includes(s)&&(!r.length||v(r).includes(c))){a=!1;break}}a||t.push(i)}return t},c=function(e,r){for(var t=[],n=0,o=v(e);n<o.length;n++){for(var i=o[n],a={},u=0,l=v(r);u<l.length;u++){var _=l[u];Object.prototype.hasOwnProperty.call(i,_)&&(a[_]=i[_])}t.push(a)}return t},s=function(e,r){if(!r)return v(e);for(var t=[],n=0,o=v(e);n<o.length;n++){var i=o[n];("string"==typeof r?new RegExp(r):r).test(i)&&t.push(i)}return t},f=function(e,r){if(e&&r){for(var t=[],n=0,o=v(e);n<o.length;n++){for(var i=o[n],a=!1,u=0,l=Object.entries(i);u<l.length;u++){var _=l[u],c=_[0],s=_[1];if(c===r&&![null,void 0].includes(s)){a=!0;break}}a&&t.push(i)}return t}return e},d=function(e,r){if(e&&r){for(var t=[],n=0,o=v(e);n<o.length;n++){var i=o[n],a=!0;for(var u in r)if(!r[u]||!("string"==typeof r[u]?new RegExp(r[u]):r[u]).test(i[u])){a=!1;break}a&&t.push(i)}return t}return e},p=function(e,r,t,n){void 0===t&&(t=[]),void 0===n&&(n=!0);var o=[];r=v(r);for(var u=function(e,r,t,o,i,a){if(a?i&&(t=o):o=t,r[o]!==e[t]&&(n||![null,void 0].includes(r[o])||![null,void 0].includes(e[t])))return!1},l=0,_=v(e);l<_.length;l++){var c=_[l];if((0,i.isPlainObject)(c))for(var s=0,f=r;s<f.length;s++){var d=f[s],p=!0,m=void 0,E=Array.isArray(t);if((0,i.isPlainObject)(t)||E&&t.length?m=!0:(m=!1,t=c),Array.isArray(t))for(var b,y=0,h=a(t);!(b=h()).done;){if(!1===u(c,d,y,b.value,E,m)){p=!1;break}y+=1}else for(var g=0,O=Object.entries(t);g<O.length;g++){var P=O[g];if(!1===u(c,d,P[0],P[1],E,m)){p=!1;break}}if(p){o.push(c);break}}else r.includes(c)&&o.push(c)}return o},v=function(e){var r=[];return[null,void 0].includes(e)||((0,i.isArrayLike)(Object(e))?E(r,"string"==typeof e?[e]:e):r.push(e)),r},m=function(e,r,t){var n,o;if(void 0===r&&(r=1),void 0===t&&(t=!1),1===(e=[].concat(e)).length)n=0,o=parseInt(""+e[0],10);else{if(2!==e.length)return e;n=parseInt(""+e[0],10),o=parseInt(""+e[1],10)}if(o<n)return[];for(var i=[n];n<=o-r;)n+=r,(!t||n<=o-r)&&i.push(n);return i},E=function(e,r){Array.isArray(r)||(r=Array.prototype.slice.call(r));for(var t,n=a(r);!(t=n()).done;){var o=t.value;e.push(o)}return e},b=function(e){void 0===e&&(e={});var r=e,t=r.boundaryCount,n=void 0===t?1:t,i=r.disabled,a=void 0!==i&&i,u=r.hideNextButton,l=void 0!==u&&u,_=r.hidePrevButton,c=void 0!==_&&_,s=r.page,f=void 0===s?1:s,d=r.pageSize,p=void 0===d?5:d,v=r.showFirstButton,E=void 0!==v&&v,b=r.showLastButton,y=void 0!==b&&b,h=r.siblingCount,g=void 0===h?4:h,O=r.total,P=void 0===O?100:O,D="number"!=typeof p||isNaN(p)?P:Math.ceil(P/p),A=m([1,Math.min(n,D)]),M=m([Math.max(D-n+1,n+1),D]),T=Math.max(Math.min(f-g,D-n-2*g-1),n+2),w=Math.min(Math.max(f+g,n+2*g+2),M.length>0?M[0]-2:D-1);return[].concat(E?["first"]:[],c?[]:["previous"],A,T>n+2?["start-ellipsis"]:n+1<D-n?[n+1]:[],m([T,w]),w<D-n-1?["end-ellipsis"]:D-n>n?[D-n]:[],M,l?[]:["next"],y?["last"]:[]).map((function(e){var r;return"number"==typeof e?{disabled:a,page:e,selected:e===f,type:"page"}:o()({disabled:a||-1===e.indexOf("ellipsis")&&("next"===e||"last"===e?f>=D:f<=1),selected:!1,type:e},e.endsWith("-ellipsis")?{}:{page:(null!==(r={first:1,last:D}[e])&&void 0!==r?r:"next"===e)?Math.min(f+1,D):Math.max(f-1,1)})}))},y=function(e){var r=[];return function e(t,n){if(void 0===n&&(n=[]),0===t.length)r.push(n);else for(var o=0;o<t.length;o++){var i=t.slice();e(i,n.concat(i.splice(o,1)))}}(e),r},h=function(e,r){void 0===r&&(r=1);var t=[];if(0===e.length)return t;for(var n=function e(r,n,o){if(0!==r)for(var i=0;i<n.length;i++)e(r-1,n.slice(i+1),o.concat([n[i]]));else o.length>0&&(t[t.length]=o)},o=r;o<e.length;o++)n(o,e,[]);return t.push(e),t},g=function(e,r){var t=0;if(Array.isArray(e)&&e.length)for(var n,o=a(e);!(n=o()).done;){var i=n.value;Object.prototype.hasOwnProperty.call(i,r)&&(t+=parseFloat(i[r]||0))}return t},O=function(e,r,t){void 0===t&&(t=!1);var n=e.indexOf(r);if(-1===n){if(t)throw new Error("Given target doesn't exists in given list.")}else e.splice(n,1);return e},P=function(e){for(var r=[],t=0,n=Object.entries(e);t<n.length;t++){var o=n[t],i=o[0],u=o[1];if(e[i]=[].concat(u),u.length>0)for(var l,_=a(v(u));!(l=_()).done;){var c=l.value;r.push([i,c])}else r.push([i])}for(var s=[],f=0,d=r;f<d.length;f++)for(var p,m=a(d[f]);!(p=m()).done;){var E=p.value;s.includes(E)||s.push(E)}for(var b=[],y=function e(t,n){if(0!==n.length&&n.includes(t))throw new Error('Cyclic dependency found. "'+t+'" is dependent of itself.\nDependency chain: "'+n.join('" -> "')+'" => "'+t+'".');var o=s.indexOf(t);if(-1!==o){var i;s[o]=null;for(var a=0,u=r;a<u.length;a++){var l=u[a];l[0]===t&&(i=i||n.concat([t]),e(l[1],i))}b.push(t)}},h=0;h<s.length;h++){var g=s[h];if(g){s[h]=null;for(var O,P=a(r);!(O=P()).done;){var D=O.value;D[0]===g&&y(D[1],[g])}b.push(g)}}return b},D=function(e){for(var r,t=[],n=a(v(e));!(r=n()).done;){var o=r.value;t.includes(o)||t.push(o)}return t}},function(e){e.exports=__WEBPACK_EXTERNAL_MODULE__8__},function(e){e.exports=__WEBPACK_EXTERNAL_MODULE__9__},function(e,r,t){t(8);var n=t(11),o=t.n(n),i=t(7),a=t(1),u=t(0),l=t(2),_=t(4),c=t(5);function s(e,r){var t="undefined"!=typeof Symbol&&e[Symbol.iterator]||e["@@iterator"];if(t)return(t=t.call(e)).next.bind(t);if(Array.isArray(e)||(t=function(e,r){if(e){if("string"==typeof e)return f(e,r);var t={}.toString.call(e).slice(8,-1);return"Object"===t&&e.constructor&&(t=e.constructor.name),"Map"===t||"Set"===t?Array.from(e):"Arguments"===t||/^(?:Ui|I)nt(?:8|16|32)(?:Clamped)?Array$/.test(t)?f(e,r):void 0}}(e))||r&&e&&"number"==typeof e.length){t&&(e=t);var n=0;return function(){return n>=e.length?{done:!0}:{done:!1,value:e[n++]}}}throw new TypeError("Invalid attempt to iterate non-iterable instance.\nIn order to be iterable, non-array objects must have a [Symbol.iterator]() method.")}function f(e,r){(null==r||r>e.length)&&(r=e.length);for(var t=0,n=Array(r);t<r;t++)n[t]=e[t];return n}var d=!1,p=function(){function e(r){var t=this;this.$domNode=null,this._bindEventHelper=function(e,r,n){void 0===r&&(r=!1),n||(n=r?"off":"on");var o=(0,u.$)(e[0]);if("object"===(0,_.determineType)(e[1])&&!r){for(var a=0,l=Object.entries(e[1]);a<l.length;a++){var c=l[a],s=c[0],f=c[1];t[n](o,s,f)}return o}return 0===(e=(0,i.makeArray)(e).slice(1)).length&&e.push(""),e[0].includes(".")||(e[0]+="."+t.options.name),o[n].apply(o,e)},r&&(this.$domNode=r),this.options=e._defaultOptions,u.$.global.console||(u.$.global.console={});for(var n,o=s(a.CONSOLE_METHODS);!(n=o()).done;){var l=n.value;l in u.$.global.console||(u.$.global.console[l]=u.NOOP)}}var r=e.prototype;return r.destructor=function(){var e;return null!=(e=u.$.fn)&&e.off&&this.off("*"),this},r.initialize=function(r){return void 0===r&&(r={}),this.options=(0,_.extend)(!0,{},e._defaultOptions,r),this.options.domNodeSelectorPrefix=(0,c.format)(this.options.domNodeSelectorPrefix,(0,c.camelCaseToDelimited)(null===this.options.domNodeSelectorInfix?"":this.options.domNodeSelectorInfix||this.options.name)),this.renderJavaScriptDependentVisibility(),this},e.controller=function(r,t,n){void 0===n&&(n=null),"function"==typeof r&&((r=new r(n))instanceof e||(r=(0,_.extend)(!0,new e,r)));var o,a=(0,i.makeArray)(t);if(a.length&&"string"==typeof a[0]&&a[0]in r)return(0,l.isFunction)(r[a[0]])?(o=r)[a[0]].apply(o,a.slice(1)):r[a[0]];if(0===a.length||"object"==typeof a[0]){var u,c,s=(u=r).initialize.apply(u,a),f=r.options.name||r.constructor.name;return null!=(c=n)&&c.data&&!n.data(f)&&n.data(f,r),s}if(a.length&&"string"==typeof a[0])throw new Error('Method "'+a[0]+'" does not exist on $-extended dom node "'+r+'".')},r.log=function(e,r,t,n){if(void 0===r&&(r=!1),void 0===t&&(t=!1),void 0===n&&(n="info"),this.options.logging||r||["error","critical"].includes(n)){for(var o,i=arguments.length,a=new Array(i>4?i-4:0),_=4;_<i;_++)a[_-4]=arguments[_];if(t?o=e:"string"==typeof e?o=this.options.name+" ("+n+"): "+c.format.apply(void 0,[e].concat(a)):(0,l.isNumeric)(e)||"boolean"==typeof e?o=this.options.name+" ("+n+"): "+e.toString():(this.log(",--------------------------------------------,"),this.log(e,r,!0),this.log("'--------------------------------------------'")),o)if(u.$.global.console&&n in u.$.global.console&&u.$.global.console[n]!==u.NOOP)u.$.global.console[n](o);else{var s;null!=(s=u.$.global.window)&&s.alert&&u.$.global.window.alert(o)}}},r.info=function(e){for(var r=arguments.length,t=new Array(r>1?r-1:0),n=1;n<r;n++)t[n-1]=arguments[n];this.log.apply(this,[e,!1,!1,"info"].concat(t))},r.debug=function(e){for(var r=arguments.length,t=new Array(r>1?r-1:0),n=1;n<r;n++)t[n-1]=arguments[n];this.log.apply(this,[e,!1,!1,"debug"].concat(t))},r.error=function(e){for(var r=arguments.length,t=new Array(r>1?r-1:0),n=1;n<r;n++)t[n-1]=arguments[n];this.log.apply(this,[e,!0,!1,"error"].concat(t))},r.critical=function(e){for(var r=arguments.length,t=new Array(r>1?r-1:0),n=1;n<r;n++)t[n-1]=arguments[n];this.log.apply(this,[e,!0,!1,"warn"].concat(t))},r.warn=function(e){for(var r=arguments.length,t=new Array(r>1?r-1:0),n=1;n<r;n++)t[n-1]=arguments[n];this.log.apply(this,[e,!1,!1,"warn"].concat(t))},e.show=function(r,t,n){void 0===t&&(t=3),void 0===n&&(n=0);var o="";if("object"===(0,_.determineType)(r)){for(var i=0,a=Object.entries(r);i<a.length;i++){var u=a[i],l=u[0],c=u[1];o+=l.toString()+": ",o+=n<=t?e.show(c,t,n+1):""+c,o+="\n"}return o.trim()}return(o=(""+r).trim())+' (Type: "'+(0,_.determineType)(r)+'")'},e.isEquivalentDOM=function(e,r,t){if(void 0===t&&(t=!1),e===r)return!0;if(e&&r){for(var n=/^(?:\s*(<[\w\W]+>)[^>]*|#([\w-]+))$/,o={first:e,second:r},i={first:(0,u.$)("<dummy>"),second:(0,u.$)("<dummy>")},a=0,l=Object.entries(o);a<l.length;a++){var _=l[a],c=_[0],s=_[1];if("string"==typeof s&&(t||s.startsWith("<")&&s.endsWith(">")&&s.length>=3||n.test(s)))i[c]=(0,u.$)("<div>"+s+"</div>");else try{var f=(0,u.$)(s).clone();if(!f.length)return!1;i[c]=(0,u.$)("<div>").append(f)}catch(e){return!1}}if(i.first.length&&i.first.length===i.second.length){i.first=i.first.Tools("normalizedClassNames").$domNode.Tools("normalizedStyles").$domNode,i.second=i.second.Tools("normalizedClassNames").$domNode.Tools("normalizedStyles").$domNode;for(var d=0,p=0,v=i.first;p<v.length;p++){if(!v[p].isEqualNode(i.second[d]))return!1;d+=1}return!0}}return!1},r.getPositionRelativeToViewport=function(e){void 0===e&&(e={});var r=(0,_.extend)({bottom:0,left:0,right:0,top:0},e),t=this.$domNode;if(u.$.global.window&&null!=t&&t.length&&t[0]&&"getBoundingClientRect"in t[0]){var n=(0,u.$)(u.$.global.window),o=t[0].getBoundingClientRect();if(o){if(o.top&&o.top+r.top<0)return"above";if(o.left+r.left<0)return"left";var i=n.height();if("number"==typeof i&&i<o.bottom+r.bottom)return"below";var a=n.width();if("number"==typeof a&&a<o.right+r.right)return"right"}}return"in"},e.generateDirectiveSelector=function(e){var r=(0,c.camelCaseToDelimited)(e);return r+", ."+r+", ["+r+"], [data-"+r+"], [x-"+r+"]"+(r.includes("-")?", ["+r.replace(/-/g,"\\:")+"], ["+r.replace(/-/g,"_")+"]":"")},r.removeDirective=function(e){if(null===this.$domNode)return null;var r=(0,c.camelCaseToDelimited)(e);return this.$domNode.removeClass(r).removeAttr(r).removeAttr("data-"+r).removeAttr("x-"+r).removeAttr(r.replace("-",":")).removeAttr(r.replace("-","_"))},r.renderJavaScriptDependentVisibility=function(){!d&&u.$.document&&"filter"in u.$&&"hide"in u.$&&"show"in u.$&&((0,u.$)(this.options.domNodeSelectorPrefix+" "+this.options.domNodes.hideJavaScriptEnabled).filter((function(e,r){return!(0,u.$)(r).data("javaScriptDependentContentHide")})).data("javaScriptDependentContentHide",!0).hide(),(0,u.$)(this.options.domNodeSelectorPrefix+" "+this.options.domNodes.showJavaScriptEnabled).filter((function(e,r){return!(0,u.$)(r).data("javaScriptDependentContentShow")})).data("javaScriptDependentContentShow",!0).show(),d=!0)},e.getNormalizedDirectiveName=function(e){for(var r,t=s(["-",":","_"]);!(r=t()).done;){for(var n,o=r.value,i=!1,a=s(["data"+o,"x"+o]);!(n=a()).done;){var u=n.value;if(e.startsWith(u)){e=e.substring(u.length),i=!0;break}}if(i)break}for(var l,_=s(["-",":","_"]);!(l=_()).done;){var f=l.value;e=(0,c.delimitedToCamelCase)(e,f)}return e},r.getDirectiveValue=function(e){if(null===this.$domNode)return null;for(var r=(0,c.camelCaseToDelimited)(e),t=0,n=[r,"data-"+r,"x-"+r,r.replace("-","\\:")];t<n.length;t++){var o=n[t],i=this.$domNode.attr(o);if("string"==typeof i)return i}return null},r.sliceDomNodeSelectorPrefix=function(e){return this.options.domNodeSelectorPrefix&&e.startsWith(this.options.domNodeSelectorPrefix)?e.substring(this.options.domNodeSelectorPrefix.length).trim():e},e.getDomNodeName=function(e){var r=/^<?([a-zA-Z]+).*>?.*/.exec(e);return r?r[1]:null},r.grabDomNodes=function(e,r){var t=this,n={};if(e)if(r)for(var o=(0,u.$)(r),i=0,a=Object.entries(e);i<a.length;i++){var l=a[i],_=l[0],s=l[1];n[_]=o.find(s)}else for(var f=0,d=Object.entries(e);f<d.length;f++){var p=d[f],v=p[0],m=p[1],E=/, */.exec(m);E&&(e[v]+=m.split(E[0]).map((function(e){return", "+(0,c.normalizeDomNodeSelector)(e,t.options.domNodeSelectorPrefix)})).join("")),n[v]=(0,u.$)((0,c.normalizeDomNodeSelector)(e[v],this.options.domNodeSelectorPrefix))}return this.options.domNodeSelectorPrefix&&(n.parent=(0,u.$)(this.options.domNodeSelectorPrefix)),u.$.global.window&&(n.window=(0,u.$)(u.$.global.window),u.$.document&&(n.document=(0,u.$)(u.$.document))),n},r.fireEvent=function(e,r,t){var n;void 0===r&&(r=!1),void 0===t&&(t=this);for(var o="on"+(0,c.capitalize)(e),i=t,a=arguments.length,l=new Array(a>3?a-3:0),_=3;_<a;_++)l[_-3]=arguments[_];return r||(o in i?i[o].apply(i,l):"_"+o in i&&i["_"+o].apply(i,l)),!i.options||!(o in i.options)||i.options[o]===u.NOOP||(n=i.options[o]).call.apply(n,[this].concat(l))},r.on=function(){for(var e=arguments.length,r=new Array(e),t=0;t<e;t++)r[t]=arguments[t];return this._bindEventHelper(r,!1)},r.off=function(){for(var e=arguments.length,r=new Array(e),t=0;t<e;t++)r[t]=arguments[t];return this._bindEventHelper(r,!0)},o()(e,[{key:"normalizedClassNames",get:function(){if(this.$domNode){var e="class";this.$domNode.find("*").addBack().each((function(r,t){var n=(0,u.$)(t),o=n.attr(e);o?n.attr(e,(o.split(" ").sort()||[]).join(" ")):n.is("[class]")&&n.removeAttr(e)}))}return this}},{key:"normalizedStyles",get:function(){if(this.$domNode){var e="style";this.$domNode.find("*").addBack().each((function(r,t){var n=(0,u.$)(t),o=n.attr(e);o?n.attr(e,(0,c.compressStyleValue)(((0,c.compressStyleValue)(o).split(";").sort()||[]).map((function(e){return e.trim()})).join(";"))):n.is("[style]")&&n.removeAttr(e)}))}return this}},{key:"style",get:function(){var e={},r=this.$domNode;if(null!=r&&r.length){var t,n;if(null!=(t=u.$.global.window)&&t.getComputedStyle&&(n=u.$.global.window.getComputedStyle(r[0],null))){if("length"in n)for(var o=0;o<n.length;o+=1)e[(0,c.delimitedToCamelCase)(n[o])]=n.getPropertyValue(n[o]);else for(var i=0,a=Object.entries(n);i<a.length;i++){var l=a[i],_=l[0],s=l[1];e[(0,c.delimitedToCamelCase)(_)]=s||n.getPropertyValue(_)}return e}if(n=r[0].style)for(var f in n)"function"!=typeof n[f]&&(e[f]=n[f])}return e}},{key:"text",get:function(){return this.$domNode?this.$domNode.clone().children().remove().end().text():""}}])}();p._defaultOptions={domNodes:{hideJavaScriptEnabled:".tools-hidden-on-javascript-enabled",showJavaScriptEnabled:".tools-visible-on-javascript-enabled"},domNodeSelectorInfix:"",domNodeSelectorPrefix:"body",logging:!1,name:"Tools"};r.default=p},function(e){e.exports=__WEBPACK_EXTERNAL_MODULE__11__},function(e){if(void 0===__WEBPACK_EXTERNAL_MODULE__12__){var r=new Error("Cannot find module 'undefined'");throw r.code="MODULE_NOT_FOUND",r}e.exports=__WEBPACK_EXTERNAL_MODULE__12__},function(e,r,t){function n(e,r){var t="undefined"!=typeof Symbol&&e[Symbol.iterator]||e["@@iterator"];if(t)return(t=t.call(e)).next.bind(t);if(Array.isArray(e)||(t=function(e,r){if(e){if("string"==typeof e)return o(e,r);var t={}.toString.call(e).slice(8,-1);return"Object"===t&&e.constructor&&(t=e.constructor.name),"Map"===t||"Set"===t?Array.from(e):"Arguments"===t||/^(?:Ui|I)nt(?:8|16|32)(?:Clamped)?Array$/.test(t)?o(e,r):void 0}}(e))||r&&e&&"number"==typeof e.length){t&&(e=t);var n=0;return function(){return n>=e.length?{done:!0}:{done:!1,value:e[n++]}}}throw new TypeError("Invalid attempt to iterate non-iterable instance.\nIn order to be iterable, non-array objects must have a [Symbol.iterator]() method.")}function o(e,r){(null==r||r>e.length)&&(r=e.length);for(var t=0,n=Array(r);t<r;t++)n[t]=e[t];return n}t.r(r),t.d(r,{getParameterNames:function(){return i},identity:function(){return a},invertArrayFilter:function(){return u}});var i=function e(r){var t=("string"==typeof r?r:r.toString()).replace(/((\/\/.*$)|(\/\*[\s\S]*?\*\/))/gm,"");if(t.startsWith("class"))return e("function "+t.replace(/.*(constructor\([^)]+\))/m,"$1"));var o=/^function\s*[^(]*\(\s*([^)]*)\)/m.exec(t);null===o&&(o=/^[^(]*\(\s*([^)]*)\) *=>.*/m.exec(t)),null===o&&(o=/([^= ]+) *=>.*/m.exec(t));var i=[];if(o&&o.length>1&&o[1].trim().length){for(var a,u=n(o[1].split(","));!(a=u()).done;){var l=a.value;i.push(l.replace(/=.+$/g,"").trim())}return i}return i},a=function(e){return e},u=function(e){return function(r){if(r){for(var t=arguments.length,o=new Array(t>1?t-1:0),i=1;i<t;i++)o[i-1]=arguments[i];var a=e.apply(void 0,[r].concat(o)),u=[];if(a.length)for(var l,_=n(r);!(l=_()).done;){var c=l.value;a.includes(c)||u.push(c)}else u=r;return u}return r}}},function(e,r,t){t.r(r),t.d(r,{ceil:function(){return u},floor:function(){return l},getUTCTimestamp:function(){return o},isNotANumber:function(){return i},round:function(){return a}});var n=t(4),o=function(e,r){void 0===r&&(r=!1);var t=[null,void 0].includes(e)?new Date:new Date(e);return Date.UTC(t.getUTCFullYear(),t.getUTCMonth(),t.getUTCDate(),t.getUTCHours(),t.getUTCMinutes(),t.getUTCSeconds(),t.getUTCMilliseconds())/(r?1:1e3)},i=function(e){return"number"===(0,n.determineType)(e)&&isNaN(e)},a=function(e,r){return void 0===r&&(r=0),Math.round(e*Math.pow(10,r))/Math.pow(10,r)},u=function(e,r){return void 0===r&&(r=0),Math.ceil(e*Math.pow(10,r))/Math.pow(10,r)},l=function(e,r){return void 0===r&&(r=0),Math.floor(e*Math.pow(10,r))/Math.pow(10,r)}},,,function(e,r,t){t.r(r),t.d(r,{copyDirectoryRecursive:function(){return q},copyDirectoryRecursiveSync:function(){return F},copyFile:function(){return z},copyFileSync:function(){return V},isDirectory:function(){return H},isDirectorySync:function(){return G},isFile:function(){return X},isFileSync:function(){return Y},mkdirSync:function(){return m},readFileSync:function(){return h},readdirSync:function(){return b},statSync:function(){return O},walkDirectoryRecursively:function(){return J},walkDirectoryRecursivelySync:function(){return Z},writeFileSync:function(){return D}});var n=t(3),o=t.n(n),i=t(18),a=t.n(i),u=t(19),l=t.n(u),_=t(1),c=t(0),s=t(6);function f(e,r){var t="undefined"!=typeof Symbol&&e[Symbol.iterator]||e["@@iterator"];if(t)return(t=t.call(e)).next.bind(t);if(Array.isArray(e)||(t=function(e,r){if(e){if("string"==typeof e)return d(e,r);var t={}.toString.call(e).slice(8,-1);return"Object"===t&&e.constructor&&(t=e.constructor.name),"Map"===t||"Set"===t?Array.from(e):"Arguments"===t||/^(?:Ui|I)nt(?:8|16|32)(?:Clamped)?Array$/.test(t)?d(e,r):void 0}}(e))||r&&e&&"number"==typeof e.length){t&&(e=t);var n=0;return function(){return n>=e.length?{done:!0}:{done:!1,value:e[n++]}}}throw new TypeError("Invalid attempt to iterate non-iterable instance.\nIn order to be iterable, non-array objects must have a [Symbol.iterator]() method.")}function d(e,r){(null==r||r>e.length)&&(r=e.length);for(var t=0,n=Array(r);t<r;t++)n[t]=e[t];return n}var p=(0,s.optionalRequire)("fs")||{},v=p.mkdirSync,m=void 0===v?null:v,E=p.readdirSync,b=void 0===E?null:E,y=p.readFileSync,h=void 0===y?null:y,g=p.statSync,O=void 0===g?null:g,P=p.writeFileSync,D=void 0===P?null:P,A=(0,s.optionalRequire)("fs/promises")||{},M=A.mkdir,T=void 0===M?null:M,w=A.readdir,I=void 0===w?null:w,L=A.readFile,x=void 0===L?null:L,C=A.stat,R=void 0===C?null:C,N=A.writeFile,U=void 0===N?null:N,S=(0,s.optionalRequire)("path")||{},j=S.basename,B=void 0===j?null:j,$=S.join,W=void 0===$?null:$,K=S.resolve,k=void 0===K?null:K,q=function(){var e=a()(l().mark((function e(r,t,n,o,i){var a,u,s,d,p;return l().wrap((function(e){for(;;)switch(e.prev=e.next){case 0:return void 0===n&&(n=c.NOOP),void 0===o&&(o={encoding:null,flag:"r"}),void 0===i&&(i={encoding:_.DEFAULT_ENCODING,flag:"w",mode:438}),r=k(r),e.next=6,H(t);case 6:if(!e.sent){e.next=8;break}t=k(t,B(r));case 8:return e.prev=8,e.next=11,T(t);case 11:e.next=17;break;case 13:if(e.prev=13,e.t0=e.catch(8),"EEXIST"===e.t0.code){e.next=17;break}throw e.t0;case 17:return e.t1=f,e.next=20,J(r,n);case 20:e.t2=e.sent,a=(0,e.t1)(e.t2);case 22:if((u=a()).done){e.next=41;break}if(d=u.value,p=W(t,d.path.substring(r.length)),null==(s=d.stats)||!s.isDirectory()){e.next=37;break}return e.prev=26,e.next=29,T(p);case 29:e.next=35;break;case 31:if(e.prev=31,e.t3=e.catch(26),"EEXIST"===e.t3.code){e.next=35;break}throw e.t3;case 35:e.next=39;break;case 37:return e.next=39,z(d.path,p,o,i);case 39:e.next=22;break;case 41:return e.abrupt("return",t);case 42:case"end":return e.stop()}}),e,null,[[8,13],[26,31]])})));return function(r,t,n,o,i){return e.apply(this,arguments)}}(),F=function(e,r,t,n,o){void 0===t&&(t=c.NOOP),void 0===n&&(n={encoding:null,flag:"r"}),void 0===o&&(o={encoding:_.DEFAULT_ENCODING,flag:"w",mode:438}),e=k(e),G(r)&&(r=k(r,B(e)));try{m(r)}catch(e){if("EEXIST"!==e.code)throw e}for(var i=0,a=Z(e,t);i<a.length;i++){var u,l=a[i],s=W(r,l.path.substring(e.length));if(null!=(u=l.stats)&&u.isDirectory())try{m(s)}catch(e){if("EEXIST"!==e.code)throw e}else V(l.path,s,n,o)}return r},z=function(){var e=a()(l().mark((function e(r,t,n,o){return l().wrap((function(e){for(;;)switch(e.prev=e.next){case 0:return void 0===n&&(n={encoding:null,flag:"r"}),void 0===o&&(o={encoding:_.DEFAULT_ENCODING,flag:"w",mode:438}),e.next=4,H(t);case 4:if(!e.sent){e.next=6;break}t=k(t,B(r));case 6:return e.t0=U,e.t1=t,e.next=10,x(r,n);case 10:return e.t2=e.sent,e.t3=o,e.next=14,(0,e.t0)(e.t1,e.t2,e.t3);case 14:return e.abrupt("return",t);case 15:case"end":return e.stop()}}),e)})));return function(r,t,n,o){return e.apply(this,arguments)}}(),V=function(e,r,t,n){return void 0===t&&(t={encoding:null,flag:"r"}),void 0===n&&(n={encoding:_.DEFAULT_ENCODING,flag:"w",mode:438}),G(r)&&(r=k(r,B(e))),D(r,h(e,t),n),r},H=function(){var e=a()(l().mark((function e(r){return l().wrap((function(e){for(;;)switch(e.prev=e.next){case 0:return e.prev=0,e.next=3,R(r);case 3:return e.abrupt("return",e.sent.isDirectory());case 6:if(e.prev=6,e.t0=e.catch(0),!Object.prototype.hasOwnProperty.call(e.t0,"code")||!["ENOENT","ENOTDIR"].includes(e.t0.code)){e.next=10;break}return e.abrupt("return",!1);case 10:throw e.t0;case 11:case"end":return e.stop()}}),e,null,[[0,6]])})));return function(r){return e.apply(this,arguments)}}(),G=function(e){try{return O(e).isDirectory()}catch(e){if(Object.prototype.hasOwnProperty.call(e,"code")&&["ENOENT","ENOTDIR"].includes(e.code))return!1;throw e}},X=function(){var e=a()(l().mark((function e(r){return l().wrap((function(e){for(;;)switch(e.prev=e.next){case 0:return e.prev=0,e.next=3,R(r);case 3:return e.abrupt("return",e.sent.isFile());case 6:if(e.prev=6,e.t0=e.catch(0),!Object.prototype.hasOwnProperty.call(e.t0,"code")||!["ENOENT","ENOTDIR"].includes(e.t0.code)){e.next=10;break}return e.abrupt("return",!1);case 10:throw e.t0;case 11:case"end":return e.stop()}}),e,null,[[0,6]])})));return function(r){return e.apply(this,arguments)}}(),Y=function(e){try{return O(e).isFile()}catch(e){if(Object.prototype.hasOwnProperty.call(e,"code")&&["ENOENT","ENOTDIR"].includes(e.code))return!1;throw e}},J=function(){var e=a()(l().mark((function e(r,t,n){var i,a,u,c,s,d,p,v,m,E,b,y;return l().wrap((function(e){for(;;)switch(e.prev=e.next){case 0:return void 0===t&&(t=null),void 0===n&&(n=_.DEFAULT_ENCODING),i=[],e.t0=f,e.next=6,I(r,"string"==typeof n?{encoding:n,withFileTypes:!0}:o()({},n,{withFileTypes:!0}));case 6:e.t1=e.sent,a=(0,e.t0)(e.t1);case 8:if((u=a()).done){e.next=24;break}return c=u.value,s=k(r,c.name),d={directoryPath:r,directoryEntry:c,error:null,name:c.name,path:s,stats:null},e.prev=12,e.next=15,R(s);case 15:d.stats=e.sent,e.next=21;break;case 18:e.prev=18,e.t2=e.catch(12),d.error=e.t2;case 21:i.push(d);case 22:e.next=8;break;case 24:t&&i.sort((function(e,r){var t,n,o;return null!=(t=e.stats)&&t.isDirectory()?null!=(o=r.stats)&&o.isDirectory()?0:-1:null!=(n=r.stats)&&n.isDirectory()?1:0})),p=[],v=0,m=i;case 27:if(!(v<m.length)){e.next=48;break}if(b=m[v],p.push(b),null!==(y=t?t(b):void 0)){e.next=33;break}return e.abrupt("break",48);case 33:if("object"!=typeof y||!("then"in y)){e.next=37;break}return e.next=36,y;case 36:y=e.sent;case 37:if(null!==y){e.next=39;break}return e.abrupt("break",48);case 39:if(!1===y||null==(E=b.stats)||!E.isDirectory()){e.next=45;break}return e.t3=p,e.next=43,J(b.path,t,n);case 43:e.t4=e.sent,p=e.t3.concat.call(e.t3,e.t4);case 45:v++,e.next=27;break;case 48:return e.abrupt("return",p);case 49:case"end":return e.stop()}}),e,null,[[12,18]])})));return function(r,t,n){return e.apply(this,arguments)}}(),Z=function e(r,t,n){void 0===t&&(t=c.NOOP),void 0===n&&(n=_.DEFAULT_ENCODING);for(var i,a=[],u=f(b(r,"string"==typeof n?{encoding:n,withFileTypes:!0}:o()({},n,{withFileTypes:!0})));!(i=u()).done;){var l=i.value,s=k(r,l.name),d={directoryPath:r,directoryEntry:l,error:null,name:l.name,path:s,stats:null};try{d.stats=O(s)}catch(e){d.error=e}a.push(d)}var p=[];if(t){a.sort((function(e,r){var t,n,o;return null!=(t=e.stats)&&t.isDirectory()?null!=(o=r.stats)&&o.isDirectory()?0:-1:null!=(n=r.stats)&&n.isDirectory()?1:0}));for(var v,m=f(a);!(v=m()).done;){var E,y=v.value;p.push(y);var h=t(y);if(null===h)break;!1!==h&&null!=(E=y.stats)&&E.isDirectory()&&(p=p.concat(e(y.path,t,n)))}}return p}},function(e){e.exports=__WEBPACK_EXTERNAL_MODULE__18__},function(e){e.exports=__WEBPACK_EXTERNAL_MODULE__19__},function(e,r,t){t.r(r),t.d(r,{debounce:function(){return i},timeout:function(){return a}});var n=t(0),o=t(2),i=function(e,r){void 0===r&&(r=600);for(var t=arguments.length,n=new Array(t>2?t-2:0),o=2;o<t;o++)n[o-2]=arguments[o];var i,u,l=!1,_=null,c=new Promise((function(e,r){i=e,u=r}));return function(){for(var t=arguments.length,o=new Array(t),s=0;s<t;s++)o[s]=arguments[s];if(o=o.concat(n||[]),l)return _=o,c;l=!0;var f=c,d=i,p=u,v=e.apply(void 0,o);return null!=v&&v.then?v.then((function(e){return d(e)}),(function(e){return p(e)})):d(v),c=new Promise((function(t,n){i=t,u=n,a(r,(function(){if(l=!1,_){var r=e.apply(void 0,_);_=null,null!=r&&r.then?r.then((function(e){return t(e)}),(function(e){return n(e)})):t(r),c=new Promise((function(e,r){i=e,u=r}))}}))})),f}},a=function(){for(var e=arguments.length,r=new Array(e),t=0;t<e;t++)r[t]=arguments[t];for(var i,a,u=n.NOOP,l=0,_=!1,c=0,s=r;c<s.length;c++){var f=s[c];"number"!=typeof f||isNaN(f)?"boolean"==typeof f?_=f:(0,o.isFunction)(f)&&(u=f):l=f}var d=new Promise((function(e,r){i=r,a=e})),p=function(){var e;(e=u).call.apply(e,[d].concat(r)),a(!1)},v=2147483647;if(l<=v)d.timeoutID=setTimeout(p,l);else{var m=Math.floor(l/v),E=l%v;!function e(){m>0?(m-=1,d.timeoutID=setTimeout(e,v)):d.timeoutID=setTimeout(p,E)}()}return d.clear=function(){d.timeoutID&&(clearTimeout(d.timeoutID),(_?i:a)(!0))},d}},function(e,r,t){t.r(r),t.d(r,{DATE_TIME_PATTERN_CACHE:function(){return s},dateTimeFormat:function(){return f},interpretDateTime:function(){return d},normalizeDateTime:function(){return p},sliceWeekday:function(){return v}});var n=t(9),o=t.n(n),i=t(3),a=t.n(i),u=t(1),l=t(5);function _(e,r){var t="undefined"!=typeof Symbol&&e[Symbol.iterator]||e["@@iterator"];if(t)return(t=t.call(e)).next.bind(t);if(Array.isArray(e)||(t=function(e,r){if(e){if("string"==typeof e)return c(e,r);var t={}.toString.call(e).slice(8,-1);return"Object"===t&&e.constructor&&(t=e.constructor.name),"Map"===t||"Set"===t?Array.from(e):"Arguments"===t||/^(?:Ui|I)nt(?:8|16|32)(?:Clamped)?Array$/.test(t)?c(e,r):void 0}}(e))||r&&e&&"number"==typeof e.length){t&&(e=t);var n=0;return function(){return n>=e.length?{done:!0}:{done:!1,value:e[n++]}}}throw new TypeError("Invalid attempt to iterate non-iterable instance.\nIn order to be iterable, non-array objects must have a [Symbol.iterator]() method.")}function c(e,r){(null==r||r>e.length)&&(r=e.length);for(var t=0,n=Array(r);t<r;t++)n[t]=e[t];return n}var s=[],f=function(e,r,t,n){void 0===e&&(e="full"),void 0===r&&(r=new Date),void 0===t&&(t={}),void 0===n&&(n=u.LOCALES),"number"==typeof r&&(r*=1e3);var o=new Date(r);if(["full","long","medium","short"].includes(e))return new Intl.DateTimeFormat([].concat(n,"en-US"),a()({dateStyle:e,timeStyle:e},t)).format(o);for(var i,c={},s=_(["full","long","medium","short"]);!(i=s()).done;){var f=i.value;c[f+"Literals"]=[];var d=new Intl.DateTimeFormat([].concat(n,"en-US"),a()({dateStyle:f,timeStyle:f},t));c[f]=d.format(o);for(var p,v=_(d.formatToParts(o));!(p=v()).done;){var m=p.value;"literal"===m.type?c[f+"Literals"].push(m.value):c[""+f+(0,l.capitalize)(m.type)]=m.value}}var E=(0,l.evaluate)("`"+e+"`",c);if(E.error)throw new Error(E.error);return E.result.replace(/\s/g," ")},d=function e(r,t){var n=Boolean(t),i="[0-2][0-9]:[0-6][0-9]",a="^[0-9]{4}-[01][0-9]-[0-3][0-9](?<time>(?:T"+i+"(?::[0-6][0-9](?:\\.[0-9]+)?)?(?<dateTimeTimezone>Z|(?:[+-]"+i+"))?)|(?<dateTimezone>Z|(?:[+-]"+i+")))?$",u=r.match(new RegExp(a,"i"));if(u){var c,f,d,p,m,E=new Date(r);return isNaN(E.getDate())?null:(null!==(c=null==(f=u.groups)?void 0:f.dateTimeTimezone)&&void 0!==c?c:null==(d=u.groups)?void 0:d.dateTimezone)?E:([null,void 0].includes(t)&&(n=!1),n?null!=(m=u.groups)&&m.time?new Date(E.getTime()-60*E.getTimezoneOffset()*1e3):E:null!=(p=u.groups)&&p.time?E:new Date(E.getTime()+60*E.getTimezoneOffset()*1e3))}if(r=r.replace(/^(-?)-*0*([1-9][0-9]*)$/,"$1$2"),""+parseInt(r)===r){[null,void 0].includes(t)&&(n=!0);var b=new Date(1e3*parseInt(r));return new Date(1e3*(parseInt(r)+(n?0:60*b.getTimezoneOffset())))}if(!s.length)for(var y,h="(?:0?[0-9])|(?:[1-5][0-9])|(?:60)",g="(?<second>"+h+")",O="(?<minute>"+h+")",P="(?<hour>(?:0?[0-9])|(?:1[0-9])|(?:2[0-4]))",D="(?<day>(?:0?[1-9])|(?:[1-2][0-9])|(?:3[01]))",A="(?<month>(?:0?[1-9])|(?:1[0-2]))",M="(?<year>(?:0?[1-9])|(?:[1-9][0-9]+))",T={},w=_(["t"," "]);!(y=w()).done;)for(var I,L=y.value,x=_([":","/","-"," "]);!(I=x()).done;)for(var C=I.value,R=0,N=[P+(C+"+")+O,P+(C+"+")+O+C+"+"+g,P+(C+"+")+O+C+"+"+g+C+"+(?<millisecond>(?:0{0,3}[0-9])|(?:0{0,2}[1-9]{2})|(?:0?[1-9]{3})|(?:1[1-9]{3}))",P];R<N.length;R++)for(var U=N[R],S=0,j=[{delimiter:["/","-"," "],pattern:[A+"${delimiter}"+D+"${delimiter}"+M,A+"${delimiter}"+D+" +"+M,M+"${delimiter}"+A+"${delimiter}"+D,M+" +"+A+"${delimiter}"+D,A+"${delimiter}"+D+"${delimiter}"+M+L+"+"+U,A+"${delimiter}"+D+" +"+M+L+"+"+U,U+(L+"+")+A+"${delimiter}"+D+"${delimiter}"+M,U+(L+"+")+A+"${delimiter}"+D+" +"+M,M+"${delimiter}"+A+"${delimiter}"+D+L+"+"+U,M+" +"+A+"${delimiter}"+D+L+"+"+U,U+(L+"+")+M+"${delimiter}"+A+"${delimiter}"+D,U+(L+"+")+M+" +"+A+"${delimiter}"+D]},{delimiter:"\\.",pattern:[D+"${delimiter}"+A+"${delimiter}"+M,D+"${delimiter}"+A+" +"+M,M+"${delimiter}"+D+"${delimiter}"+A,M+" +"+D+"${delimiter}"+A,D+"${delimiter}"+A+"${delimiter}"+M+L+"+"+U,D+"${delimiter}"+A+" +"+M+L+"+"+U,U+(L+"+")+D+"${delimiter}"+A+"${delimiter}"+M,U+(L+"+")+D+"${delimiter}"+A+" +"+M,M+"${delimiter}"+D+"${delimiter}"+A+L+"+"+U,M+" +"+D+"${delimiter}"+A+L+"+"+U,U+(L+"+")+M+"${delimiter}"+D+"${delimiter}"+A,U+(L+"+")+M+" +"+D+"${delimiter}"+A]},{pattern:U}];S<j.length;S++)for(var B,$=j[S],W=_([].concat(Object.prototype.hasOwnProperty.call($,"delimiter")?$.delimiter:"-"));!(B=W()).done;)for(var K,k=B.value,q=_([].concat($.pattern));!(K=q()).done;){var F=K.value;(F=(0,l.evaluate)("`^"+F+"$`",{delimiter:k+"+"}).result)&&!Object.prototype.hasOwnProperty.call(T,F)&&(T[F]=!0,s.push(new RegExp(F)))}r=(r=r.toLowerCase()).replace(/([^0-9a-z])[^0-9a-z]+/g,"$1");for(var z=1,V=0,H=[["jan","january?","janvier"],["feb","february?","février"],["m(?:a|ae|ä)r","m(?:a|ae|ä)r(?:ch|s|z)"],["ap[rv]","a[pv]ril"],["ma[iy]"],["ju[ein]","jui?n[ei]?"],["jul","jul[iy]","juillet"],["aug","august","août"],["sep","septemb(?:er|re)"],["o[ck]t","o[ck]tob(?:er|re)"],["nov","novemb(?:er|re)"],["de[cz]","d[eé][cz]emb(?:er|re)"]];V<H.length;V++){for(var G,X=!1,Y=_(H[V]);!(G=Y()).done;){var J=G.value,Z=new RegExp("(^|[^a-z])"+J+"([^a-z]|$)");if(Z.test(r)){r=r.replace(Z,"$1"+z+"$2"),X=!0;break}}if(X)break;z+=1}r=v(r);var Q=/(.+)\+(.+)$/,ee=Q.exec(r);ee&&(r=r.replace(Q,"$1"));for(var re,te=_(["","Uhr","o'clock"]);!(re=te()).done;){var ne=re.value;r=r.replace(ne,"")}r=r.trim();for(var oe,ie=function(){var t=ue[ae],i=null;try{i=r.match(t)}catch(e){}if(i){var a=function(e,r){var t;return void 0===r&&(r=0),null!=(t=i)&&t.groups&&e in i.groups?parseInt(i.groups[e],10):r},u=[a("year",1970),a("month",1)-1,a("day",1),a("hour"),a("minute"),a("second"),a("millisecond")],l=null;if(ee){var _=e(ee[2],!0);_&&(l=new Date(Date.UTC.apply(Date,u)-_.getTime()))}return l||(l=n?new Date(Date.UTC.apply(Date,u)):o()(Date,u)),isNaN(l.getDate())?{v:null}:{v:l}}},ae=0,ue=s;ae<ue.length;ae++)if(oe=ie())return oe.v;return null},p=function(e,r){void 0===e&&(e=null);var t=Boolean(r);if(null===e)return new Date;if("string"==typeof e){if(/^.*(?:(?:[0-9]{1,4}[^0-9]){2}|[0-9]{1,4}[^0-9.]).*$/.test(e))return e=d(e,t);var n=parseFloat(e);""+n===e&&(e=n)}if("number"==typeof e){[null,void 0].includes(r)&&(t=!0);var o=new Date(1e3*e);return new Date(1e3*(e+(t?0:60*o.getTimezoneOffset())))}var i=new Date(e);return isNaN(i.getDate())?null:i},v=function(e){var r=/[a-z]{2}\.+ *([^ ].*)$/i;return r.exec(e)?e.replace(r,"$1"):e}},function(e,r,t){t.r(r),t.d(r,{DummyTypes:function(){return p},NullSymbol:function(){return _},PropertyTypes:function(){return v},RealTypes:function(){return s},UndefinedSymbol:function(){return c},ValidationError:function(){return d},any:function(){return m},array:function(){return E},arrayOf:function(){return b},bool:function(){return y},boolean:function(){return h},createDummy:function(){return f},element:function(){return g},elementType:function(){return O},exact:function(){return P},func:function(){return D},instanceOf:function(){return A},node:function(){return M},number:function(){return T},object:function(){return w},objectOf:function(){return I},oneOf:function(){return L},oneOfType:function(){return x},shape:function(){return C},string:function(){return R},symbol:function(){return N}});var n=t(8),o=t.n(n),i=t(23),a=t.n(i),u=t(24),l=t.n(u),_=Symbol("clientnodePropertyTypesNull"),c=Symbol("clientnodePropertyTypesUndefined"),s={any:l().any,array:l().array,arrayOf:l().arrayOf,bool:l().bool,boolean:l().bool,element:l().element,elementType:l().elementType,exact:l().exact,func:l().func,instanceOf:l().instanceOf,node:l().node,number:l().number,object:l().object,objectOf:l().objectOf,oneOf:l().oneOf,oneOfType:l().oneOfType,shape:l().shape,string:l().string,symbol:l().symbol},f=function(e){void 0===e&&(e=null);var r=function(){return e};return r.isRequired=function(){return null},r},d=function(e){function r(){var r;return(r=e.call(this,"return null")||this).message="DummyErrorMessage",r}return o()(r,e),r}(a()(Function)),p={any:f(),array:f(),arrayOf:f(new d),bool:f(),boolean:f(),element:f(),elementType:f(new d),exact:f(),func:f(),instanceOf:f(new d),node:f(),number:f(),object:f(),objectOf:f(new d),oneOf:f(new d),oneOfType:f(new d),shape:f(new d),string:f(),symbol:f()},v=["debug","dev","development"].includes((process.env.NODE_ENV||"").trim().toLowerCase())?s:p,m=v.any,E=v.array,b=v.arrayOf,y=v.bool,h=v.bool,g=v.element,O=v.elementType,P=v.exact,D=v.func,A=v.instanceOf,M=v.node,T=v.number,w=v.object,I=v.objectOf,L=v.oneOf,x=v.oneOfType,C=v.shape,R=v.string,N=v.symbol;r.default=v},function(e){e.exports=__WEBPACK_EXTERNAL_MODULE__23__},function(e){e.exports=__WEBPACK_EXTERNAL_MODULE__24__}],__webpack_module_cache__={};function __webpack_require__(e){var r=__webpack_module_cache__[e];if(void 0!==r)return r.exports;var t=__webpack_module_cache__[e]={id:e,loaded:!1,exports:{}};return __webpack_modules__[e](t,t.exports,__webpack_require__),t.loaded=!0,t.exports}__webpack_require__.n=function(e){var r=e&&e.__esModule?function(){return e.default}:function(){return e};return __webpack_require__.d(r,{a:r}),r},__webpack_require__.d=function(e,r){for(var t in r)__webpack_require__.o(r,t)&&!__webpack_require__.o(e,t)&&Object.defineProperty(e,t,{enumerable:!0,get:r[t]})},__webpack_require__.g=function(){if("object"==typeof globalThis)return globalThis;try{return this||new Function("return this")()}catch(e){if("object"==typeof window)return window}}(),__webpack_require__.hmd=function(e){return(e=Object.create(e)).children||(e.children=[]),Object.defineProperty(e,"exports",{enumerable:!0,set:function(){throw new Error("ES Modules may not assign module.exports or exports.*, Use ESM export syntax, instead: "+e.id)}}),e},__webpack_require__.o=function(e,r){return Object.prototype.hasOwnProperty.call(e,r)},__webpack_require__.r=function(e){"undefined"!=typeof Symbol&&Symbol.toStringTag&&Object.defineProperty(e,Symbol.toStringTag,{value:"Module"}),Object.defineProperty(e,"__esModule",{value:!0})};var __webpack_exports__={};__webpack_require__.r(__webpack_exports__),__webpack_require__.d(__webpack_exports__,{UTILITY_SCOPE:function(){return UTILITY_SCOPE},determineUniqueScopeName:function(){return determineUniqueScopeName},isolateScope:function(){return isolateScope}});var _context__WEBPACK_IMPORTED_MODULE_11__=__webpack_require__(0),_array__WEBPACK_IMPORTED_MODULE_0__=__webpack_require__(7),_datetime__WEBPACK_IMPORTED_MODULE_1__=__webpack_require__(21),_filesystem__WEBPACK_IMPORTED_MODULE_2__=__webpack_require__(17),_function__WEBPACK_IMPORTED_MODULE_3__=__webpack_require__(13),_indicators__WEBPACK_IMPORTED_MODULE_4__=__webpack_require__(2),_number__WEBPACK_IMPORTED_MODULE_5__=__webpack_require__(14),_object__WEBPACK_IMPORTED_MODULE_6__=__webpack_require__(4),_property_types__WEBPACK_IMPORTED_MODULE_7__=__webpack_require__(22),_require__WEBPACK_IMPORTED_MODULE_8__=__webpack_require__(6),_string__WEBPACK_IMPORTED_MODULE_9__=__webpack_require__(5),_utility__WEBPACK_IMPORTED_MODULE_10__=__webpack_require__(20),UTILITY_SCOPE={array:_array__WEBPACK_IMPORTED_MODULE_0__,datetime:_datetime__WEBPACK_IMPORTED_MODULE_1__,filesystem:_filesystem__WEBPACK_IMPORTED_MODULE_2__,functions:_function__WEBPACK_IMPORTED_MODULE_3__,indicators:_indicators__WEBPACK_IMPORTED_MODULE_4__,number:_number__WEBPACK_IMPORTED_MODULE_5__,object:_object__WEBPACK_IMPORTED_MODULE_6__,propertyTypes:_property_types__WEBPACK_IMPORTED_MODULE_7__,require:_require__WEBPACK_IMPORTED_MODULE_8__,string:_string__WEBPACK_IMPORTED_MODULE_9__,utility:_utility__WEBPACK_IMPORTED_MODULE_10__},isolateScope=function(e,r){for(var t in void 0===r&&(r=[]),e)r.includes(t.charAt(0))||["constructor","prototype","this"].includes(t)||Object.prototype.hasOwnProperty.call(e,t)||(e[t]=void 0);return e},determineUniqueScopeName=function(e,r,t,n){if(void 0===e&&(e="callback"),void 0===r&&(r=""),void 0===t&&(t=_context__WEBPACK_IMPORTED_MODULE_11__.$.global),void 0===n&&(n=""),n.length&&!(n in t))return n;for(var o=e+r;(o=e+""+Math.round(Math.random()*Math.pow(10,10))+r)in t;);return o};return __webpack_exports__}()}));
@@ -0,0 +1,289 @@
1
+ import { CompilationResult, EvaluationResult, Mapping, PlainObject, StringMarkOptions, QueryParameters } from './type';
2
+ /**
3
+ * Translates given string into the regular expression validated
4
+ * representation.
5
+ * @param value - String to convert.
6
+ * @param excludeSymbols - Symbols not to escape.
7
+ * @returns Converted string.
8
+ */
9
+ export declare const escapeRegularExpressions: (value: string, excludeSymbols?: Array<string>) => string;
10
+ /**
11
+ * Translates given name into a valid javaScript one.
12
+ * @param name - Name to convert.
13
+ * @param allowedSymbols - String of symbols which should be allowed within a
14
+ * variable name (not the first character).
15
+ * @returns Converted name is returned.
16
+ */
17
+ export declare const convertToValidVariableName: (name: string, allowedSymbols?: string) => string;
18
+ /**
19
+ * This method is intended for encoding *key* or *value* parts of query
20
+ * component. We need a custom method because "encodeURIComponent()" is too
21
+ * aggressive and encodes stuff that doesn't have to be encoded per
22
+ * "http://tools.ietf.org/html/rfc3986:".
23
+ * @param url - URL to encode.
24
+ * @param encodeSpaces - Indicates whether given url should encode
25
+ * whitespaces as "+" or "%20".
26
+ * @returns Encoded given url.
27
+ */
28
+ export declare const encodeURIComponentExtended: (url: string, encodeSpaces?: boolean) => string;
29
+ /**
30
+ * Appends a path selector to the given path if there isn't one yet.
31
+ * @param path - The path for appending a selector.
32
+ * @param pathSeparator - The selector for appending to path.
33
+ * @returns The appended path.
34
+ */
35
+ export declare const addSeparatorToPath: (path: string, pathSeparator?: string) => string;
36
+ /**
37
+ * Checks if given path has given path prefix.
38
+ * @param prefix - Path prefix to search for.
39
+ * @param path - Path to search in.
40
+ * @param separator - Delimiter to use in path (default is the posix
41
+ * conform slash).
42
+ * @returns Value "true" if given prefix occur and "false" otherwise.
43
+ */
44
+ export declare const hasPathPrefix: (prefix?: unknown, path?: string, separator?: string) => boolean;
45
+ /**
46
+ * Extracts domain name from given url. If no explicit domain name given
47
+ * current domain name will be assumed. If no parameter given current
48
+ * domain name will be determined.
49
+ * @param url - The url to extract domain from.
50
+ * @param fallback - The fallback host name if no one exits in given url
51
+ * (default is current hostname).
52
+ * @returns Extracted domain.
53
+ */
54
+ export declare const getDomainName: (url?: string, fallback?: string) => string;
55
+ /**
56
+ * Extracts port number from given url. If no explicit port number given
57
+ * and no fallback is defined current port number will be assumed for local
58
+ * links. For external links 80 will be assumed for http protocols and 443
59
+ * for https protocols.
60
+ * @param url - The url to extract port from.
61
+ * @param fallback - Fallback port number if no explicit one was found.
62
+ * Default is derived from current protocol name.
63
+ * @returns Extracted port number.
64
+ */
65
+ export declare const getPortNumber: (url?: string, fallback?: null | number) => null | number;
66
+ /**
67
+ * Extracts protocol name from given url. If no explicit url is given,
68
+ * current protocol will be assumed. If no parameter given current protocol
69
+ * number will be determined.
70
+ * @param url - The url to extract protocol from.
71
+ * @param fallback - Fallback port to use if no protocol exists in given
72
+ * url (default is current protocol).
73
+ * @returns Extracted protocol.
74
+ */
75
+ export declare const getProtocolName: (url?: string, fallback?: string) => string;
76
+ /**
77
+ * Read a page's GET URL variables and return them as an associative array
78
+ * and preserves ordering.
79
+ * @param keyToGet - If provided the corresponding value for given key is
80
+ * returned or full object otherwise.
81
+ * @param allowDuplicates - Indicates whether to return arrays of values or
82
+ * single values. If set to "false" (default) last values will overwrite
83
+ * preceding values.
84
+ * @param givenInput - An alternative input to the url search parameter. If
85
+ * "#" is given the complete current hash tag will be interpreted as url
86
+ * and search parameter will be extracted from there. If "&" is given
87
+ * classical search parameter and hash parameter will be taken in account.
88
+ * If a search string is given this will be analyzed. The default is to
89
+ * take given search part into account.
90
+ * @param subDelimiter - Defines which sequence indicates the start of
91
+ * parameter in a hash part of the url.
92
+ * @param hashedPathIndicator - If defined and given hash starts with this
93
+ * indicator given hash will be interpreted as path containing search and
94
+ * hash parts.
95
+ * @param givenSearch - Search part to take into account defaults to
96
+ * current url search part.
97
+ * @param givenHash - Hash part to take into account defaults to current
98
+ * url hash part.
99
+ * @returns Returns the current get array or requested value. If requested
100
+ * key doesn't exist "undefined" is returned.
101
+ */
102
+ export declare const getURLParameter: (keyToGet?: null | string, allowDuplicates?: boolean, givenInput?: null | string, subDelimiter?: string, hashedPathIndicator?: string, givenSearch?: null | string, givenHash?: string) => Array<string> | null | QueryParameters | string;
103
+ /**
104
+ * Checks if given url points to another "service" than second given url.
105
+ * If no second given url provided current url will be assumed.
106
+ * @param url - URL to check against second url.
107
+ * @param referenceURL - URL to check against first url.
108
+ * @returns Returns "true" if given first url has same domain as given
109
+ * second (or current).
110
+ */
111
+ export declare const serviceURLEquals: (url: string, referenceURL?: string) => boolean;
112
+ /**
113
+ * Normalized given website url.
114
+ * @param url - Uniform resource locator to normalize.
115
+ * @returns Normalized result.
116
+ */
117
+ export declare const normalizeURL: (url: string) => string;
118
+ /**
119
+ * Represents given website url.
120
+ * @param url - Uniform resource locator to represent.
121
+ * @returns Represented result.
122
+ */
123
+ export declare const representURL: (url: unknown) => string;
124
+ /**
125
+ * Converts a camel cased string to its delimited string version.
126
+ * @param value - The string to format.
127
+ * @param delimiter - Delimiter string
128
+ * @param abbreviations - Collection of shortcut words to represent upper
129
+ * cased.
130
+ * @returns The formatted string.
131
+ */
132
+ export declare const camelCaseToDelimited: (value: string, delimiter?: string, abbreviations?: Array<string> | null) => string;
133
+ /**
134
+ * Converts a string to its capitalize representation.
135
+ * @param string - The string to format.
136
+ * @returns The formatted string.
137
+ */
138
+ export declare const capitalize: (string: string) => string;
139
+ /**
140
+ * Compresses given style attribute value.
141
+ * @param styleValue - Style value to compress.
142
+ * @returns The compressed value.
143
+ */
144
+ export declare const compressStyleValue: (styleValue: string) => string;
145
+ /**
146
+ * Decodes all html symbols in text nodes in given html string.
147
+ * @param htmlString - HTML string to decode.
148
+ * @returns Decoded html string.
149
+ */
150
+ export declare const decodeHTMLEntities: (htmlString: string) => null | string;
151
+ /**
152
+ * Converts a delimited string to its camel case representation.
153
+ * @param value - The string to format.
154
+ * @param delimiter - Delimiter string to use.
155
+ * @param abbreviations - Collection of shortcut words to represent upper
156
+ * cased.
157
+ * @param preserveWrongFormattedAbbreviations - If set to "True" wrong
158
+ * formatted camel case abbreviations will be ignored.
159
+ * @param removeMultipleDelimiter - Indicates whether a series of delimiter
160
+ * should be consolidated.
161
+ * @returns The formatted string.
162
+ */
163
+ export declare const delimitedToCamelCase: (value: string, delimiter?: string, abbreviations?: Array<string> | null, preserveWrongFormattedAbbreviations?: boolean, removeMultipleDelimiter?: boolean) => string;
164
+ /**
165
+ * Compiles a given string as expression with given scope names.
166
+ * @param expression - The string to interpret.
167
+ * @param scope - Scope to extract names from.
168
+ * @param execute - Indicates whether to execute or evaluate.
169
+ * @param removeGlobalScope - Indicates whether to shadow global variables
170
+ * via "undefined".
171
+ * @returns Object of prepared scope name mappings and compiled function or
172
+ * error string message if given expression couldn't be compiled.
173
+ */
174
+ export declare const compile: <T = string, N extends Array<string> = string[]>(expression: string, scope?: N | Mapping<unknown, N[number]> | N[number], execute?: boolean, removeGlobalScope?: boolean) => CompilationResult<T, N>;
175
+ /**
176
+ * Evaluates a given string as expression against given scope.
177
+ * @param expression - The string to interpret.
178
+ * @param scope - Scope to render against.
179
+ * @param execute - Indicates whether to execute or evaluate.
180
+ * @param removeGlobalScope - Indicates whether to shadow global variables
181
+ * via "undefined".
182
+ * @param binding - Object to apply as "this" in evaluation scope.
183
+ * @returns Object with error message during parsing / running or result.
184
+ */
185
+ export declare const evaluate: <T = string, S extends object = object>(expression: string, scope?: S, execute?: boolean, removeGlobalScope?: boolean, binding?: unknown) => EvaluationResult<T>;
186
+ /**
187
+ * Finds the string match of given query in given target text by applying
188
+ * given normalisation function to target and query.
189
+ * @param target - Target to search in.
190
+ * @param query - Search string to search for.
191
+ * @param normalizer - Function to use as normalisation for queries and
192
+ * search targets.
193
+ * @param skipTagDelimitedParts - Indicates whether to for example ignore
194
+ * html tags via "['<', '>']" (the default).
195
+ * @returns Start and end index of matching range.
196
+ */
197
+ export declare const findNormalizedMatchRange: (target: unknown, query: unknown, normalizer?: (value: unknown) => string, skipTagDelimitedParts?: null | [string, string]) => Array<number> | null;
198
+ /**
199
+ * Fixes known encoding problems in given data.
200
+ * @param data - To process.
201
+ * @returns Processed data.
202
+ */
203
+ export declare const fixKnownEncodingErrors: (data: string) => string;
204
+ /**
205
+ * Performs a string formation. Replaces every placeholder "{i}" with the i'th
206
+ * argument.
207
+ * @param string - The string to format.
208
+ * @param additionalArguments - Additional arguments are interpreted as
209
+ * replacements for string formatting.
210
+ * @returns The formatted string.
211
+ */
212
+ export declare const format: (string: string, ...additionalArguments: Array<unknown>) => string;
213
+ /**
214
+ * Calculates the edit (levenstein) distance between two given strings.
215
+ * @param first - First string to compare.
216
+ * @param second - Second string to compare.
217
+ * @returns The distance as number.
218
+ */
219
+ export declare const getEditDistance: (first: string, second: string) => number;
220
+ /**
221
+ * Validates the current string for using in a regular expression pattern.
222
+ * Special regular expression chars will be escaped.
223
+ * @param value - The string to format.
224
+ * @returns The formatted string.
225
+ */
226
+ export declare const maskForRegularExpression: (value: string) => string;
227
+ /**
228
+ * Converts a string to its lower case representation.
229
+ * @param string - The string to format.
230
+ * @returns The formatted string.
231
+ */
232
+ export declare const lowerCase: (string: string) => string;
233
+ /**
234
+ * Wraps given mark strings in given target with given marker.
235
+ * @param target - String to search for marker.
236
+ * @param givenWords - String or array of strings to search in target for.
237
+ * @param options - Defines highlighting behavior.
238
+ * @param options.marker - HTML template string to mark.
239
+ * @param options.normalizer - Pure normalisation function to use before
240
+ * searching for matches.
241
+ * @param options.skipTagDelimitedParts - Indicates whether to for example
242
+ * ignore html tags via "['<', '>']" (the default).
243
+ * @returns Processed result.
244
+ */
245
+ export declare const mark: (target: unknown, givenWords?: Array<string> | string, options?: Partial<StringMarkOptions>) => unknown;
246
+ /**
247
+ * Normalizes given phone number for automatic dialing or comparison.
248
+ * @param value - Number to normalize.
249
+ * @param dialable - Indicates whether the result should be dialed or
250
+ * represented as lossless data.
251
+ * @returns Normalized number.
252
+ */
253
+ export declare const normalizePhoneNumber: (value: unknown, dialable?: boolean) => string;
254
+ /**
255
+ * Normalizes given zip code for automatic address processing.
256
+ * @param value - Number to normalize.
257
+ * @returns Normalized number.
258
+ */
259
+ export declare const normalizeZipCode: (value: unknown) => string;
260
+ /**
261
+ * Converts given serialized, base64 encoded or file path given object into a
262
+ * native javaScript one if possible.
263
+ * @param serializedObject - Object as string.
264
+ * @param scope - An optional scope which will be used to evaluate given object
265
+ * in.
266
+ * @param name - The name under given scope will be available.
267
+ * @returns The parsed object if possible and null otherwise.
268
+ */
269
+ export declare const parseEncodedObject: <T = PlainObject>(serializedObject: string, scope?: Mapping<unknown>, name?: string) => null | T;
270
+ /**
271
+ * Represents given phone number. NOTE: Currently only support german phone
272
+ * numbers.
273
+ * @param value - Number to format.
274
+ * @returns Formatted number.
275
+ */
276
+ export declare const representPhoneNumber: (value: unknown) => string;
277
+ /**
278
+ * Slices all none numbers but preserves last separator.
279
+ * @param value - String to process.
280
+ * @returns - Sliced given value.
281
+ */
282
+ export declare const sliceAllExceptNumberAndLastSeperator: (value: string) => string;
283
+ /**
284
+ * Converts a dom selector to a prefixed dom selector string.
285
+ * @param selector - A dom node selector.
286
+ * @param selectorPrefix - A dom node selector prefix to take into account.
287
+ * @returns Returns given selector prefixed.
288
+ */
289
+ export declare const normalizeDomNodeSelector: (selector: string, selectorPrefix?: string) => string;