toggle-components-library 1.25.1 → 1.25.3

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.
@@ -99,11 +99,11 @@ return /******/ (function(modules) { // webpackBootstrap
99
99
  /***/ "04f8":
100
100
  /***/ (function(module, exports, __webpack_require__) {
101
101
 
102
- /* eslint-disable es-x/no-symbol -- required for testing */
102
+ /* eslint-disable es/no-symbol -- required for testing */
103
103
  var V8_VERSION = __webpack_require__("2d00");
104
104
  var fails = __webpack_require__("d039");
105
105
 
106
- // eslint-disable-next-line es-x/no-object-getownpropertysymbols -- required for testing
106
+ // eslint-disable-next-line es/no-object-getownpropertysymbols -- required for testing
107
107
  module.exports = !!Object.getOwnPropertySymbols && !fails(function () {
108
108
  var symbol = Symbol();
109
109
  // Chrome 38 Symbol has incorrect toString conversion
@@ -128,7 +128,7 @@ var toPropertyKey = __webpack_require__("a04b");
128
128
  var hasOwn = __webpack_require__("1a2d");
129
129
  var IE8_DOM_DEFINE = __webpack_require__("0cfb");
130
130
 
131
- // eslint-disable-next-line es-x/no-object-getownpropertydescriptor -- safe
131
+ // eslint-disable-next-line es/no-object-getownpropertydescriptor -- safe
132
132
  var $getOwnPropertyDescriptor = Object.getOwnPropertyDescriptor;
133
133
 
134
134
  // `Object.getOwnPropertyDescriptor` method
@@ -200,7 +200,7 @@ var createElement = __webpack_require__("cc12");
200
200
 
201
201
  // Thanks to IE8 for its funny defineProperty
202
202
  module.exports = !DESCRIPTORS && !fails(function () {
203
- // eslint-disable-next-line es-x/no-object-defineproperty -- required for testing
203
+ // eslint-disable-next-line es/no-object-defineproperty -- required for testing
204
204
  return Object.defineProperty(createElement('div'), 'a', {
205
205
  get: function () { return 7; }
206
206
  }).a != 7;
@@ -569,7 +569,7 @@ var InternalStateModule = __webpack_require__("69f3");
569
569
 
570
570
  var enforceInternalState = InternalStateModule.enforce;
571
571
  var getInternalState = InternalStateModule.get;
572
- // eslint-disable-next-line es-x/no-object-defineproperty -- safe
572
+ // eslint-disable-next-line es/no-object-defineproperty -- safe
573
573
  var defineProperty = Object.defineProperty;
574
574
 
575
575
  var CONFIGURABLE_LENGTH = DESCRIPTORS && !fails(function () {
@@ -610,14 +610,68 @@ Function.prototype.toString = makeBuiltIn(function toString() {
610
610
  }, 'toString');
611
611
 
612
612
 
613
+ /***/ }),
614
+
615
+ /***/ "14d9":
616
+ /***/ (function(module, exports, __webpack_require__) {
617
+
618
+ "use strict";
619
+
620
+ var $ = __webpack_require__("23e7");
621
+ var toObject = __webpack_require__("7b0b");
622
+ var lengthOfArrayLike = __webpack_require__("07fa");
623
+ var setArrayLength = __webpack_require__("3a34");
624
+ var doesNotExceedSafeInteger = __webpack_require__("3511");
625
+ var fails = __webpack_require__("d039");
626
+
627
+ var INCORRECT_TO_LENGTH = fails(function () {
628
+ return [].push.call({ length: 0x100000000 }, 1) !== 4294967297;
629
+ });
630
+
631
+ // V8 and Safari <= 15.4, FF < 23 throws InternalError
632
+ // https://bugs.chromium.org/p/v8/issues/detail?id=12681
633
+ var SILENT_ON_NON_WRITABLE_LENGTH = !function () {
634
+ try {
635
+ // eslint-disable-next-line es/no-object-defineproperty -- safe
636
+ Object.defineProperty([], 'length', { writable: false }).push();
637
+ } catch (error) {
638
+ return error instanceof TypeError;
639
+ }
640
+ }();
641
+
642
+ // `Array.prototype.push` method
643
+ // https://tc39.es/ecma262/#sec-array.prototype.push
644
+ $({ target: 'Array', proto: true, arity: 1, forced: INCORRECT_TO_LENGTH || SILENT_ON_NON_WRITABLE_LENGTH }, {
645
+ // eslint-disable-next-line no-unused-vars -- required for `.length`
646
+ push: function push(item) {
647
+ var O = toObject(this);
648
+ var len = lengthOfArrayLike(O);
649
+ var argCount = arguments.length;
650
+ doesNotExceedSafeInteger(len + argCount);
651
+ for (var i = 0; i < argCount; i++) {
652
+ O[len] = arguments[i];
653
+ len++;
654
+ }
655
+ setArrayLength(O, len);
656
+ return len;
657
+ }
658
+ });
659
+
660
+
613
661
  /***/ }),
614
662
 
615
663
  /***/ "1626":
616
- /***/ (function(module, exports) {
664
+ /***/ (function(module, exports, __webpack_require__) {
665
+
666
+ var $documentAll = __webpack_require__("8ea1");
667
+
668
+ var documentAll = $documentAll.all;
617
669
 
618
670
  // `IsCallable` abstract operation
619
671
  // https://tc39.es/ecma262/#sec-iscallable
620
- module.exports = function (argument) {
672
+ module.exports = $documentAll.IS_HTMLDDA ? function (argument) {
673
+ return typeof argument == 'function' || argument === documentAll;
674
+ } : function (argument) {
621
675
  return typeof argument == 'function';
622
676
  };
623
677
 
@@ -634,22 +688,12 @@ var hasOwnProperty = uncurryThis({}.hasOwnProperty);
634
688
 
635
689
  // `HasOwnProperty` abstract operation
636
690
  // https://tc39.es/ecma262/#sec-hasownproperty
637
- // eslint-disable-next-line es-x/no-object-hasown -- safe
691
+ // eslint-disable-next-line es/no-object-hasown -- safe
638
692
  module.exports = Object.hasOwn || function hasOwn(it, key) {
639
693
  return hasOwnProperty(toObject(it), key);
640
694
  };
641
695
 
642
696
 
643
- /***/ }),
644
-
645
- /***/ "1be4":
646
- /***/ (function(module, exports, __webpack_require__) {
647
-
648
- var getBuiltIn = __webpack_require__("d066");
649
-
650
- module.exports = getBuiltIn('document', 'documentElement');
651
-
652
-
653
697
  /***/ }),
654
698
 
655
699
  /***/ "1d80":
@@ -782,7 +826,7 @@ var hiddenKeys = enumBugKeys.concat('length', 'prototype');
782
826
 
783
827
  // `Object.getOwnPropertyNames` method
784
828
  // https://tc39.es/ecma262/#sec-object.getownpropertynames
785
- // eslint-disable-next-line es-x/no-object-getownpropertynames -- safe
829
+ // eslint-disable-next-line es/no-object-getownpropertynames -- safe
786
830
  exports.f = Object.getOwnPropertyNames || function getOwnPropertyNames(O) {
787
831
  return internalObjectKeys(O, hiddenKeys);
788
832
  };
@@ -998,28 +1042,15 @@ module.exports = getBuiltIn('navigator', 'userAgent') || '';
998
1042
 
999
1043
  /***/ }),
1000
1044
 
1001
- /***/ "37e8":
1002
- /***/ (function(module, exports, __webpack_require__) {
1045
+ /***/ "3511":
1046
+ /***/ (function(module, exports) {
1003
1047
 
1004
- var DESCRIPTORS = __webpack_require__("83ab");
1005
- var V8_PROTOTYPE_DEFINE_BUG = __webpack_require__("aed9");
1006
- var definePropertyModule = __webpack_require__("9bf2");
1007
- var anObject = __webpack_require__("825a");
1008
- var toIndexedObject = __webpack_require__("fc6a");
1009
- var objectKeys = __webpack_require__("df75");
1048
+ var $TypeError = TypeError;
1049
+ var MAX_SAFE_INTEGER = 0x1FFFFFFFFFFFFF; // 2 ** 53 - 1 == 9007199254740991
1010
1050
 
1011
- // `Object.defineProperties` method
1012
- // https://tc39.es/ecma262/#sec-object.defineproperties
1013
- // eslint-disable-next-line es-x/no-object-defineproperties -- safe
1014
- exports.f = DESCRIPTORS && !V8_PROTOTYPE_DEFINE_BUG ? Object.defineProperties : function defineProperties(O, Properties) {
1015
- anObject(O);
1016
- var props = toIndexedObject(Properties);
1017
- var keys = objectKeys(Properties);
1018
- var length = keys.length;
1019
- var index = 0;
1020
- var key;
1021
- while (length > index) definePropertyModule.f(O, key = keys[index++], props[key]);
1022
- return O;
1051
+ module.exports = function (it) {
1052
+ if (it > MAX_SAFE_INTEGER) throw $TypeError('Maximum allowed index exceeded');
1053
+ return it;
1023
1054
  };
1024
1055
 
1025
1056
 
@@ -1066,6 +1097,41 @@ function setMonth (dirtyDate, dirtyMonth) {
1066
1097
  module.exports = setMonth
1067
1098
 
1068
1099
 
1100
+ /***/ }),
1101
+
1102
+ /***/ "3a34":
1103
+ /***/ (function(module, exports, __webpack_require__) {
1104
+
1105
+ "use strict";
1106
+
1107
+ var DESCRIPTORS = __webpack_require__("83ab");
1108
+ var isArray = __webpack_require__("e8b5");
1109
+
1110
+ var $TypeError = TypeError;
1111
+ // eslint-disable-next-line es/no-object-getownpropertydescriptor -- safe
1112
+ var getOwnPropertyDescriptor = Object.getOwnPropertyDescriptor;
1113
+
1114
+ // Safari < 13 does not throw an error in this case
1115
+ var SILENT_ON_NON_WRITABLE_LENGTH_SET = DESCRIPTORS && !function () {
1116
+ // makes no sense without proper strict mode support
1117
+ if (this !== undefined) return true;
1118
+ try {
1119
+ // eslint-disable-next-line es/no-object-defineproperty -- safe
1120
+ Object.defineProperty([], 'length', { writable: false }).length = 1;
1121
+ } catch (error) {
1122
+ return error instanceof TypeError;
1123
+ }
1124
+ }();
1125
+
1126
+ module.exports = SILENT_ON_NON_WRITABLE_LENGTH_SET ? function (O, length) {
1127
+ if (isArray(O) && !getOwnPropertyDescriptor(O, 'length').writable) {
1128
+ throw $TypeError('Cannot set read only .length');
1129
+ } return O.length = length;
1130
+ } : function (O, length) {
1131
+ return O.length = length;
1132
+ };
1133
+
1134
+
1069
1135
  /***/ }),
1070
1136
 
1071
1137
  /***/ "3a9b":
@@ -1106,7 +1172,7 @@ function(){function t(t){t.remember("_draggable",this),this.el=t}t.prototype.ini
1106
1172
  var fails = __webpack_require__("d039");
1107
1173
 
1108
1174
  module.exports = !fails(function () {
1109
- // eslint-disable-next-line es-x/no-function-prototype-bind -- safe
1175
+ // eslint-disable-next-line es/no-function-prototype-bind -- safe
1110
1176
  var test = (function () { /* empty */ }).bind();
1111
1177
  // eslint-disable-next-line no-prototype-builtins -- safe
1112
1178
  return typeof test != 'function' || test.hasOwnProperty('prototype');
@@ -1174,33 +1240,6 @@ module.exports = fails(function () {
1174
1240
  } : $Object;
1175
1241
 
1176
1242
 
1177
- /***/ }),
1178
-
1179
- /***/ "44d2":
1180
- /***/ (function(module, exports, __webpack_require__) {
1181
-
1182
- var wellKnownSymbol = __webpack_require__("b622");
1183
- var create = __webpack_require__("7c73");
1184
- var defineProperty = __webpack_require__("9bf2").f;
1185
-
1186
- var UNSCOPABLES = wellKnownSymbol('unscopables');
1187
- var ArrayPrototype = Array.prototype;
1188
-
1189
- // Array.prototype[@@unscopables]
1190
- // https://tc39.es/ecma262/#sec-array.prototype-@@unscopables
1191
- if (ArrayPrototype[UNSCOPABLES] == undefined) {
1192
- defineProperty(ArrayPrototype, UNSCOPABLES, {
1193
- configurable: true,
1194
- value: create(null)
1195
- });
1196
- }
1197
-
1198
- // add a key to Array.prototype[@@unscopables]
1199
- module.exports = function (key) {
1200
- ArrayPrototype[UNSCOPABLES][key] = true;
1201
- };
1202
-
1203
-
1204
1243
  /***/ }),
1205
1244
 
1206
1245
  /***/ "485a":
@@ -1370,10 +1409,10 @@ var store = __webpack_require__("c6cd");
1370
1409
  (module.exports = function (key, value) {
1371
1410
  return store[key] || (store[key] = value !== undefined ? value : {});
1372
1411
  })('versions', []).push({
1373
- version: '3.25.1',
1412
+ version: '3.25.5',
1374
1413
  mode: IS_PURE ? 'pure' : 'global',
1375
1414
  copyright: '© 2014-2022 Denis Pushkarev (zloirock.ru)',
1376
- license: 'https://github.com/zloirock/core-js/blob/v3.25.1/LICENSE',
1415
+ license: 'https://github.com/zloirock/core-js/blob/v3.25.5/LICENSE',
1377
1416
  source: 'https://github.com/zloirock/core-js'
1378
1417
  });
1379
1418
 
@@ -1526,7 +1565,7 @@ var DESCRIPTORS = __webpack_require__("83ab");
1526
1565
  var hasOwn = __webpack_require__("1a2d");
1527
1566
 
1528
1567
  var FunctionPrototype = Function.prototype;
1529
- // eslint-disable-next-line es-x/no-object-getownpropertydescriptor -- safe
1568
+ // eslint-disable-next-line es/no-object-getownpropertydescriptor -- safe
1530
1569
  var getDescriptor = DESCRIPTORS && Object.getOwnPropertyDescriptor;
1531
1570
 
1532
1571
  var EXISTS = hasOwn(FunctionPrototype, 'name');
@@ -1548,7 +1587,7 @@ module.exports = {
1548
1587
 
1549
1588
  var global = __webpack_require__("da84");
1550
1589
 
1551
- // eslint-disable-next-line es-x/no-object-defineproperty -- safe
1590
+ // eslint-disable-next-line es/no-object-defineproperty -- safe
1552
1591
  var defineProperty = Object.defineProperty;
1553
1592
 
1554
1593
  module.exports = function (key, value) {
@@ -1608,7 +1647,6 @@ module.exports = addMonths
1608
1647
 
1609
1648
  var NATIVE_WEAK_MAP = __webpack_require__("cdce");
1610
1649
  var global = __webpack_require__("da84");
1611
- var uncurryThis = __webpack_require__("e330");
1612
1650
  var isObject = __webpack_require__("861d");
1613
1651
  var createNonEnumerableProperty = __webpack_require__("9112");
1614
1652
  var hasOwn = __webpack_require__("1a2d");
@@ -1636,20 +1674,22 @@ var getterFor = function (TYPE) {
1636
1674
 
1637
1675
  if (NATIVE_WEAK_MAP || shared.state) {
1638
1676
  var store = shared.state || (shared.state = new WeakMap());
1639
- var wmget = uncurryThis(store.get);
1640
- var wmhas = uncurryThis(store.has);
1641
- var wmset = uncurryThis(store.set);
1677
+ /* eslint-disable no-self-assign -- prototype methods protection */
1678
+ store.get = store.get;
1679
+ store.has = store.has;
1680
+ store.set = store.set;
1681
+ /* eslint-enable no-self-assign -- prototype methods protection */
1642
1682
  set = function (it, metadata) {
1643
- if (wmhas(store, it)) throw TypeError(OBJECT_ALREADY_INITIALIZED);
1683
+ if (store.has(it)) throw TypeError(OBJECT_ALREADY_INITIALIZED);
1644
1684
  metadata.facade = it;
1645
- wmset(store, it, metadata);
1685
+ store.set(it, metadata);
1646
1686
  return metadata;
1647
1687
  };
1648
1688
  get = function (it) {
1649
- return wmget(store, it) || {};
1689
+ return store.get(it) || {};
1650
1690
  };
1651
1691
  has = function (it) {
1652
- return wmhas(store, it);
1692
+ return store.has(it);
1653
1693
  };
1654
1694
  } else {
1655
1695
  var STATE = sharedKey('state');
@@ -2092,7 +2132,7 @@ module.exports = getMonth
2092
2132
  /***/ "7418":
2093
2133
  /***/ (function(module, exports) {
2094
2134
 
2095
- // eslint-disable-next-line es-x/no-object-getownpropertysymbols -- safe
2135
+ // eslint-disable-next-line es/no-object-getownpropertysymbols -- safe
2096
2136
  exports.f = Object.getOwnPropertySymbols;
2097
2137
 
2098
2138
 
@@ -2208,91 +2248,19 @@ module.exports = function (argument) {
2208
2248
 
2209
2249
  /***/ }),
2210
2250
 
2211
- /***/ "7c73":
2251
+ /***/ "7d7e":
2212
2252
  /***/ (function(module, exports, __webpack_require__) {
2213
2253
 
2214
- /* global ActiveXObject -- old IE, WSH */
2215
- var anObject = __webpack_require__("825a");
2216
- var definePropertiesModule = __webpack_require__("37e8");
2217
- var enumBugKeys = __webpack_require__("7839");
2218
- var hiddenKeys = __webpack_require__("d012");
2219
- var html = __webpack_require__("1be4");
2220
- var documentCreateElement = __webpack_require__("cc12");
2221
- var sharedKey = __webpack_require__("f772");
2222
-
2223
- var GT = '>';
2224
- var LT = '<';
2225
- var PROTOTYPE = 'prototype';
2226
- var SCRIPT = 'script';
2227
- var IE_PROTO = sharedKey('IE_PROTO');
2228
-
2229
- var EmptyConstructor = function () { /* empty */ };
2230
-
2231
- var scriptTag = function (content) {
2232
- return LT + SCRIPT + GT + content + LT + '/' + SCRIPT + GT;
2233
- };
2234
-
2235
- // Create object with fake `null` prototype: use ActiveX Object with cleared prototype
2236
- var NullProtoObjectViaActiveX = function (activeXDocument) {
2237
- activeXDocument.write(scriptTag(''));
2238
- activeXDocument.close();
2239
- var temp = activeXDocument.parentWindow.Object;
2240
- activeXDocument = null; // avoid memory leak
2241
- return temp;
2242
- };
2243
-
2244
- // Create object with fake `null` prototype: use iframe Object with cleared prototype
2245
- var NullProtoObjectViaIFrame = function () {
2246
- // Thrash, waste and sodomy: IE GC bug
2247
- var iframe = documentCreateElement('iframe');
2248
- var JS = 'java' + SCRIPT + ':';
2249
- var iframeDocument;
2250
- iframe.style.display = 'none';
2251
- html.appendChild(iframe);
2252
- // https://github.com/zloirock/core-js/issues/475
2253
- iframe.src = String(JS);
2254
- iframeDocument = iframe.contentWindow.document;
2255
- iframeDocument.open();
2256
- iframeDocument.write(scriptTag('document.F=Object'));
2257
- iframeDocument.close();
2258
- return iframeDocument.F;
2259
- };
2260
-
2261
- // Check for document.domain and active x support
2262
- // No need to use active x approach when document.domain is not set
2263
- // see https://github.com/es-shims/es5-shim/issues/150
2264
- // variation of https://github.com/kitcambridge/es5-shim/commit/4f738ac066346
2265
- // avoid IE GC bug
2266
- var activeXDocument;
2267
- var NullProtoObject = function () {
2268
- try {
2269
- activeXDocument = new ActiveXObject('htmlfile');
2270
- } catch (error) { /* ignore */ }
2271
- NullProtoObject = typeof document != 'undefined'
2272
- ? document.domain && activeXDocument
2273
- ? NullProtoObjectViaActiveX(activeXDocument) // old IE
2274
- : NullProtoObjectViaIFrame()
2275
- : NullProtoObjectViaActiveX(activeXDocument); // WSH
2276
- var length = enumBugKeys.length;
2277
- while (length--) delete NullProtoObject[PROTOTYPE][enumBugKeys[length]];
2278
- return NullProtoObject();
2279
- };
2254
+ var NATIVE_BIND = __webpack_require__("40d5");
2280
2255
 
2281
- hiddenKeys[IE_PROTO] = true;
2256
+ var FunctionPrototype = Function.prototype;
2257
+ var call = FunctionPrototype.call;
2258
+ var uncurryThisWithBind = NATIVE_BIND && FunctionPrototype.bind.bind(call, call);
2282
2259
 
2283
- // `Object.create` method
2284
- // https://tc39.es/ecma262/#sec-object.create
2285
- // eslint-disable-next-line es-x/no-object-create -- safe
2286
- module.exports = Object.create || function create(O, Properties) {
2287
- var result;
2288
- if (O !== null) {
2289
- EmptyConstructor[PROTOTYPE] = anObject(O);
2290
- result = new EmptyConstructor();
2291
- EmptyConstructor[PROTOTYPE] = null;
2292
- // add "__proto__" for Object.getPrototypeOf polyfill
2293
- result[IE_PROTO] = O;
2294
- } else result = NullProtoObject();
2295
- return Properties === undefined ? result : definePropertiesModule.f(result, Properties);
2260
+ module.exports = function (fn) {
2261
+ return NATIVE_BIND ? uncurryThisWithBind(fn) : function () {
2262
+ return call.apply(fn, arguments);
2263
+ };
2296
2264
  };
2297
2265
 
2298
2266
 
@@ -2414,7 +2382,7 @@ var fails = __webpack_require__("d039");
2414
2382
 
2415
2383
  // Detect IE8's incomplete defineProperty implementation
2416
2384
  module.exports = !fails(function () {
2417
- // eslint-disable-next-line es-x/no-object-defineproperty -- required for testing
2385
+ // eslint-disable-next-line es/no-object-defineproperty -- required for testing
2418
2386
  return Object.defineProperty({}, 1, { get: function () { return 7; } })[1] != 7;
2419
2387
  });
2420
2388
 
@@ -2425,13 +2393,11 @@ module.exports = !fails(function () {
2425
2393
  /***/ (function(module, exports, __webpack_require__) {
2426
2394
 
2427
2395
  var isCallable = __webpack_require__("1626");
2396
+ var $documentAll = __webpack_require__("8ea1");
2428
2397
 
2429
- var documentAll = typeof document == 'object' && document.all;
2430
-
2431
- // https://tc39.es/ecma262/#sec-IsHTMLDDA-internal-slot
2432
- var SPECIAL_DOCUMENT_ALL = typeof documentAll == 'undefined' && documentAll !== undefined;
2398
+ var documentAll = $documentAll.all;
2433
2399
 
2434
- module.exports = SPECIAL_DOCUMENT_ALL ? function (it) {
2400
+ module.exports = $documentAll.IS_HTMLDDA ? function (it) {
2435
2401
  return typeof it == 'object' ? it !== null : isCallable(it) || it === documentAll;
2436
2402
  } : function (it) {
2437
2403
  return typeof it == 'object' ? it !== null : isCallable(it);
@@ -2558,6 +2524,22 @@ module.exports = __WEBPACK_EXTERNAL_MODULE__8bbf__;
2558
2524
 
2559
2525
  !function(t,e){ true?module.exports=e():undefined}(this,function(){return function(t){function e(i){if(n[i])return n[i].exports;var r=n[i]={i:i,l:!1,exports:{}};return t[i].call(r.exports,r,r.exports,e),r.l=!0,r.exports}var n={};return e.m=t,e.c=n,e.i=function(t){return t},e.d=function(t,n,i){e.o(t,n)||Object.defineProperty(t,n,{configurable:!1,enumerable:!0,get:i})},e.n=function(t){var n=t&&t.__esModule?function(){return t.default}:function(){return t};return e.d(n,"a",n),n},e.o=function(t,e){return Object.prototype.hasOwnProperty.call(t,e)},e.p="/",e(e.s=60)}([function(t,e){var n=t.exports="undefined"!=typeof window&&window.Math==Math?window:"undefined"!=typeof self&&self.Math==Math?self:Function("return this")();"number"==typeof __g&&(__g=n)},function(t,e,n){var i=n(49)("wks"),r=n(30),o=n(0).Symbol,s="function"==typeof o;(t.exports=function(t){return i[t]||(i[t]=s&&o[t]||(s?o:r)("Symbol."+t))}).store=i},function(t,e,n){var i=n(5);t.exports=function(t){if(!i(t))throw TypeError(t+" is not an object!");return t}},function(t,e,n){var i=n(0),r=n(10),o=n(8),s=n(6),u=n(11),a=function(t,e,n){var l,c,f,p,h=t&a.F,d=t&a.G,v=t&a.S,g=t&a.P,y=t&a.B,m=d?i:v?i[e]||(i[e]={}):(i[e]||{}).prototype,b=d?r:r[e]||(r[e]={}),_=b.prototype||(b.prototype={});d&&(n=e);for(l in n)c=!h&&m&&void 0!==m[l],f=(c?m:n)[l],p=y&&c?u(f,i):g&&"function"==typeof f?u(Function.call,f):f,m&&s(m,l,f,t&a.U),b[l]!=f&&o(b,l,p),g&&_[l]!=f&&(_[l]=f)};i.core=r,a.F=1,a.G=2,a.S=4,a.P=8,a.B=16,a.W=32,a.U=64,a.R=128,t.exports=a},function(t,e,n){t.exports=!n(7)(function(){return 7!=Object.defineProperty({},"a",{get:function(){return 7}}).a})},function(t,e){t.exports=function(t){return"object"==typeof t?null!==t:"function"==typeof t}},function(t,e,n){var i=n(0),r=n(8),o=n(12),s=n(30)("src"),u=Function.toString,a=(""+u).split("toString");n(10).inspectSource=function(t){return u.call(t)},(t.exports=function(t,e,n,u){var l="function"==typeof n;l&&(o(n,"name")||r(n,"name",e)),t[e]!==n&&(l&&(o(n,s)||r(n,s,t[e]?""+t[e]:a.join(String(e)))),t===i?t[e]=n:u?t[e]?t[e]=n:r(t,e,n):(delete t[e],r(t,e,n)))})(Function.prototype,"toString",function(){return"function"==typeof this&&this[s]||u.call(this)})},function(t,e){t.exports=function(t){try{return!!t()}catch(t){return!0}}},function(t,e,n){var i=n(13),r=n(25);t.exports=n(4)?function(t,e,n){return i.f(t,e,r(1,n))}:function(t,e,n){return t[e]=n,t}},function(t,e){var n={}.toString;t.exports=function(t){return n.call(t).slice(8,-1)}},function(t,e){var n=t.exports={version:"2.5.7"};"number"==typeof __e&&(__e=n)},function(t,e,n){var i=n(14);t.exports=function(t,e,n){if(i(t),void 0===e)return t;switch(n){case 1:return function(n){return t.call(e,n)};case 2:return function(n,i){return t.call(e,n,i)};case 3:return function(n,i,r){return t.call(e,n,i,r)}}return function(){return t.apply(e,arguments)}}},function(t,e){var n={}.hasOwnProperty;t.exports=function(t,e){return n.call(t,e)}},function(t,e,n){var i=n(2),r=n(41),o=n(29),s=Object.defineProperty;e.f=n(4)?Object.defineProperty:function(t,e,n){if(i(t),e=o(e,!0),i(n),r)try{return s(t,e,n)}catch(t){}if("get"in n||"set"in n)throw TypeError("Accessors not supported!");return"value"in n&&(t[e]=n.value),t}},function(t,e){t.exports=function(t){if("function"!=typeof t)throw TypeError(t+" is not a function!");return t}},function(t,e){t.exports={}},function(t,e){t.exports=function(t){if(void 0==t)throw TypeError("Can't call method on "+t);return t}},function(t,e,n){"use strict";var i=n(7);t.exports=function(t,e){return!!t&&i(function(){e?t.call(null,function(){},1):t.call(null)})}},function(t,e,n){var i=n(23),r=n(16);t.exports=function(t){return i(r(t))}},function(t,e,n){var i=n(53),r=Math.min;t.exports=function(t){return t>0?r(i(t),9007199254740991):0}},function(t,e,n){var i=n(11),r=n(23),o=n(28),s=n(19),u=n(64);t.exports=function(t,e){var n=1==t,a=2==t,l=3==t,c=4==t,f=6==t,p=5==t||f,h=e||u;return function(e,u,d){for(var v,g,y=o(e),m=r(y),b=i(u,d,3),_=s(m.length),x=0,w=n?h(e,_):a?h(e,0):void 0;_>x;x++)if((p||x in m)&&(v=m[x],g=b(v,x,y),t))if(n)w[x]=g;else if(g)switch(t){case 3:return!0;case 5:return v;case 6:return x;case 2:w.push(v)}else if(c)return!1;return f?-1:l||c?c:w}}},function(t,e,n){var i=n(5),r=n(0).document,o=i(r)&&i(r.createElement);t.exports=function(t){return o?r.createElement(t):{}}},function(t,e){t.exports="constructor,hasOwnProperty,isPrototypeOf,propertyIsEnumerable,toLocaleString,toString,valueOf".split(",")},function(t,e,n){var i=n(9);t.exports=Object("z").propertyIsEnumerable(0)?Object:function(t){return"String"==i(t)?t.split(""):Object(t)}},function(t,e){t.exports=!1},function(t,e){t.exports=function(t,e){return{enumerable:!(1&t),configurable:!(2&t),writable:!(4&t),value:e}}},function(t,e,n){var i=n(13).f,r=n(12),o=n(1)("toStringTag");t.exports=function(t,e,n){t&&!r(t=n?t:t.prototype,o)&&i(t,o,{configurable:!0,value:e})}},function(t,e,n){var i=n(49)("keys"),r=n(30);t.exports=function(t){return i[t]||(i[t]=r(t))}},function(t,e,n){var i=n(16);t.exports=function(t){return Object(i(t))}},function(t,e,n){var i=n(5);t.exports=function(t,e){if(!i(t))return t;var n,r;if(e&&"function"==typeof(n=t.toString)&&!i(r=n.call(t)))return r;if("function"==typeof(n=t.valueOf)&&!i(r=n.call(t)))return r;if(!e&&"function"==typeof(n=t.toString)&&!i(r=n.call(t)))return r;throw TypeError("Can't convert object to primitive value")}},function(t,e){var n=0,i=Math.random();t.exports=function(t){return"Symbol(".concat(void 0===t?"":t,")_",(++n+i).toString(36))}},function(t,e,n){"use strict";var i=n(0),r=n(12),o=n(9),s=n(67),u=n(29),a=n(7),l=n(77).f,c=n(45).f,f=n(13).f,p=n(51).trim,h=i.Number,d=h,v=h.prototype,g="Number"==o(n(44)(v)),y="trim"in String.prototype,m=function(t){var e=u(t,!1);if("string"==typeof e&&e.length>2){e=y?e.trim():p(e,3);var n,i,r,o=e.charCodeAt(0);if(43===o||45===o){if(88===(n=e.charCodeAt(2))||120===n)return NaN}else if(48===o){switch(e.charCodeAt(1)){case 66:case 98:i=2,r=49;break;case 79:case 111:i=8,r=55;break;default:return+e}for(var s,a=e.slice(2),l=0,c=a.length;l<c;l++)if((s=a.charCodeAt(l))<48||s>r)return NaN;return parseInt(a,i)}}return+e};if(!h(" 0o1")||!h("0b1")||h("+0x1")){h=function(t){var e=arguments.length<1?0:t,n=this;return n instanceof h&&(g?a(function(){v.valueOf.call(n)}):"Number"!=o(n))?s(new d(m(e)),n,h):m(e)};for(var b,_=n(4)?l(d):"MAX_VALUE,MIN_VALUE,NaN,NEGATIVE_INFINITY,POSITIVE_INFINITY,EPSILON,isFinite,isInteger,isNaN,isSafeInteger,MAX_SAFE_INTEGER,MIN_SAFE_INTEGER,parseFloat,parseInt,isInteger".split(","),x=0;_.length>x;x++)r(d,b=_[x])&&!r(h,b)&&f(h,b,c(d,b));h.prototype=v,v.constructor=h,n(6)(i,"Number",h)}},function(t,e,n){"use strict";function i(t){return 0!==t&&(!(!Array.isArray(t)||0!==t.length)||!t)}function r(t){return function(){return!t.apply(void 0,arguments)}}function o(t,e){return void 0===t&&(t="undefined"),null===t&&(t="null"),!1===t&&(t="false"),-1!==t.toString().toLowerCase().indexOf(e.trim())}function s(t,e,n,i){return t.filter(function(t){return o(i(t,n),e)})}function u(t){return t.filter(function(t){return!t.$isLabel})}function a(t,e){return function(n){return n.reduce(function(n,i){return i[t]&&i[t].length?(n.push({$groupLabel:i[e],$isLabel:!0}),n.concat(i[t])):n},[])}}function l(t,e,i,r,o){return function(u){return u.map(function(u){var a;if(!u[i])return console.warn("Options passed to vue-multiselect do not contain groups, despite the config."),[];var l=s(u[i],t,e,o);return l.length?(a={},n.i(d.a)(a,r,u[r]),n.i(d.a)(a,i,l),a):[]})}}var c=n(59),f=n(54),p=(n.n(f),n(95)),h=(n.n(p),n(31)),d=(n.n(h),n(58)),v=n(91),g=(n.n(v),n(98)),y=(n.n(g),n(92)),m=(n.n(y),n(88)),b=(n.n(m),n(97)),_=(n.n(b),n(89)),x=(n.n(_),n(96)),w=(n.n(x),n(93)),S=(n.n(w),n(90)),O=(n.n(S),function(){for(var t=arguments.length,e=new Array(t),n=0;n<t;n++)e[n]=arguments[n];return function(t){return e.reduce(function(t,e){return e(t)},t)}});e.a={data:function(){return{search:"",isOpen:!1,preferredOpenDirection:"below",optimizedHeight:this.maxHeight}},props:{internalSearch:{type:Boolean,default:!0},options:{type:Array,required:!0},multiple:{type:Boolean,default:!1},value:{type:null,default:function(){return[]}},trackBy:{type:String},label:{type:String},searchable:{type:Boolean,default:!0},clearOnSelect:{type:Boolean,default:!0},hideSelected:{type:Boolean,default:!1},placeholder:{type:String,default:"Select option"},allowEmpty:{type:Boolean,default:!0},resetAfter:{type:Boolean,default:!1},closeOnSelect:{type:Boolean,default:!0},customLabel:{type:Function,default:function(t,e){return i(t)?"":e?t[e]:t}},taggable:{type:Boolean,default:!1},tagPlaceholder:{type:String,default:"Press enter to create a tag"},tagPosition:{type:String,default:"top"},max:{type:[Number,Boolean],default:!1},id:{default:null},optionsLimit:{type:Number,default:1e3},groupValues:{type:String},groupLabel:{type:String},groupSelect:{type:Boolean,default:!1},blockKeys:{type:Array,default:function(){return[]}},preserveSearch:{type:Boolean,default:!1},preselectFirst:{type:Boolean,default:!1}},mounted:function(){!this.multiple&&this.max&&console.warn("[Vue-Multiselect warn]: Max prop should not be used when prop Multiple equals false."),this.preselectFirst&&!this.internalValue.length&&this.options.length&&this.select(this.filteredOptions[0])},computed:{internalValue:function(){return this.value||0===this.value?Array.isArray(this.value)?this.value:[this.value]:[]},filteredOptions:function(){var t=this.search||"",e=t.toLowerCase().trim(),n=this.options.concat();return n=this.internalSearch?this.groupValues?this.filterAndFlat(n,e,this.label):s(n,e,this.label,this.customLabel):this.groupValues?a(this.groupValues,this.groupLabel)(n):n,n=this.hideSelected?n.filter(r(this.isSelected)):n,this.taggable&&e.length&&!this.isExistingOption(e)&&("bottom"===this.tagPosition?n.push({isTag:!0,label:t}):n.unshift({isTag:!0,label:t})),n.slice(0,this.optionsLimit)},valueKeys:function(){var t=this;return this.trackBy?this.internalValue.map(function(e){return e[t.trackBy]}):this.internalValue},optionKeys:function(){var t=this;return(this.groupValues?this.flatAndStrip(this.options):this.options).map(function(e){return t.customLabel(e,t.label).toString().toLowerCase()})},currentOptionLabel:function(){return this.multiple?this.searchable?"":this.placeholder:this.internalValue.length?this.getOptionLabel(this.internalValue[0]):this.searchable?"":this.placeholder}},watch:{internalValue:function(){this.resetAfter&&this.internalValue.length&&(this.search="",this.$emit("input",this.multiple?[]:null))},search:function(){this.$emit("search-change",this.search,this.id)}},methods:{getValue:function(){return this.multiple?this.internalValue:0===this.internalValue.length?null:this.internalValue[0]},filterAndFlat:function(t,e,n){return O(l(e,n,this.groupValues,this.groupLabel,this.customLabel),a(this.groupValues,this.groupLabel))(t)},flatAndStrip:function(t){return O(a(this.groupValues,this.groupLabel),u)(t)},updateSearch:function(t){this.search=t},isExistingOption:function(t){return!!this.options&&this.optionKeys.indexOf(t)>-1},isSelected:function(t){var e=this.trackBy?t[this.trackBy]:t;return this.valueKeys.indexOf(e)>-1},isOptionDisabled:function(t){return!!t.$isDisabled},getOptionLabel:function(t){if(i(t))return"";if(t.isTag)return t.label;if(t.$isLabel)return t.$groupLabel;var e=this.customLabel(t,this.label);return i(e)?"":e},select:function(t,e){if(t.$isLabel&&this.groupSelect)return void this.selectGroup(t);if(!(-1!==this.blockKeys.indexOf(e)||this.disabled||t.$isDisabled||t.$isLabel)&&(!this.max||!this.multiple||this.internalValue.length!==this.max)&&("Tab"!==e||this.pointerDirty)){if(t.isTag)this.$emit("tag",t.label,this.id),this.search="",this.closeOnSelect&&!this.multiple&&this.deactivate();else{if(this.isSelected(t))return void("Tab"!==e&&this.removeElement(t));this.$emit("select",t,this.id),this.multiple?this.$emit("input",this.internalValue.concat([t]),this.id):this.$emit("input",t,this.id),this.clearOnSelect&&(this.search="")}this.closeOnSelect&&this.deactivate()}},selectGroup:function(t){var e=this,n=this.options.find(function(n){return n[e.groupLabel]===t.$groupLabel});if(n)if(this.wholeGroupSelected(n)){this.$emit("remove",n[this.groupValues],this.id);var i=this.internalValue.filter(function(t){return-1===n[e.groupValues].indexOf(t)});this.$emit("input",i,this.id)}else{var r=n[this.groupValues].filter(function(t){return!(e.isOptionDisabled(t)||e.isSelected(t))});this.$emit("select",r,this.id),this.$emit("input",this.internalValue.concat(r),this.id)}},wholeGroupSelected:function(t){var e=this;return t[this.groupValues].every(function(t){return e.isSelected(t)||e.isOptionDisabled(t)})},wholeGroupDisabled:function(t){return t[this.groupValues].every(this.isOptionDisabled)},removeElement:function(t){var e=!(arguments.length>1&&void 0!==arguments[1])||arguments[1];if(!this.disabled&&!t.$isDisabled){if(!this.allowEmpty&&this.internalValue.length<=1)return void this.deactivate();var i="object"===n.i(c.a)(t)?this.valueKeys.indexOf(t[this.trackBy]):this.valueKeys.indexOf(t);if(this.$emit("remove",t,this.id),this.multiple){var r=this.internalValue.slice(0,i).concat(this.internalValue.slice(i+1));this.$emit("input",r,this.id)}else this.$emit("input",null,this.id);this.closeOnSelect&&e&&this.deactivate()}},removeLastElement:function(){-1===this.blockKeys.indexOf("Delete")&&0===this.search.length&&Array.isArray(this.internalValue)&&this.internalValue.length&&this.removeElement(this.internalValue[this.internalValue.length-1],!1)},activate:function(){var t=this;this.isOpen||this.disabled||(this.adjustPosition(),this.groupValues&&0===this.pointer&&this.filteredOptions.length&&(this.pointer=1),this.isOpen=!0,this.searchable?(this.preserveSearch||(this.search=""),this.$nextTick(function(){return t.$refs.search.focus()})):this.$el.focus(),this.$emit("open",this.id))},deactivate:function(){this.isOpen&&(this.isOpen=!1,this.searchable?this.$refs.search.blur():this.$el.blur(),this.preserveSearch||(this.search=""),this.$emit("close",this.getValue(),this.id))},toggle:function(){this.isOpen?this.deactivate():this.activate()},adjustPosition:function(){if("undefined"!=typeof window){var t=this.$el.getBoundingClientRect().top,e=window.innerHeight-this.$el.getBoundingClientRect().bottom;e>this.maxHeight||e>t||"below"===this.openDirection||"bottom"===this.openDirection?(this.preferredOpenDirection="below",this.optimizedHeight=Math.min(e-40,this.maxHeight)):(this.preferredOpenDirection="above",this.optimizedHeight=Math.min(t-40,this.maxHeight))}}}}},function(t,e,n){"use strict";var i=n(54),r=(n.n(i),n(31));n.n(r);e.a={data:function(){return{pointer:0,pointerDirty:!1}},props:{showPointer:{type:Boolean,default:!0},optionHeight:{type:Number,default:40}},computed:{pointerPosition:function(){return this.pointer*this.optionHeight},visibleElements:function(){return this.optimizedHeight/this.optionHeight}},watch:{filteredOptions:function(){this.pointerAdjust()},isOpen:function(){this.pointerDirty=!1}},methods:{optionHighlight:function(t,e){return{"multiselect__option--highlight":t===this.pointer&&this.showPointer,"multiselect__option--selected":this.isSelected(e)}},groupHighlight:function(t,e){var n=this;if(!this.groupSelect)return["multiselect__option--group","multiselect__option--disabled"];var i=this.options.find(function(t){return t[n.groupLabel]===e.$groupLabel});return i&&!this.wholeGroupDisabled(i)?["multiselect__option--group",{"multiselect__option--highlight":t===this.pointer&&this.showPointer},{"multiselect__option--group-selected":this.wholeGroupSelected(i)}]:"multiselect__option--disabled"},addPointerElement:function(){var t=arguments.length>0&&void 0!==arguments[0]?arguments[0]:"Enter",e=t.key;this.filteredOptions.length>0&&this.select(this.filteredOptions[this.pointer],e),this.pointerReset()},pointerForward:function(){this.pointer<this.filteredOptions.length-1&&(this.pointer++,this.$refs.list.scrollTop<=this.pointerPosition-(this.visibleElements-1)*this.optionHeight&&(this.$refs.list.scrollTop=this.pointerPosition-(this.visibleElements-1)*this.optionHeight),this.filteredOptions[this.pointer]&&this.filteredOptions[this.pointer].$isLabel&&!this.groupSelect&&this.pointerForward()),this.pointerDirty=!0},pointerBackward:function(){this.pointer>0?(this.pointer--,this.$refs.list.scrollTop>=this.pointerPosition&&(this.$refs.list.scrollTop=this.pointerPosition),this.filteredOptions[this.pointer]&&this.filteredOptions[this.pointer].$isLabel&&!this.groupSelect&&this.pointerBackward()):this.filteredOptions[this.pointer]&&this.filteredOptions[0].$isLabel&&!this.groupSelect&&this.pointerForward(),this.pointerDirty=!0},pointerReset:function(){this.closeOnSelect&&(this.pointer=0,this.$refs.list&&(this.$refs.list.scrollTop=0))},pointerAdjust:function(){this.pointer>=this.filteredOptions.length-1&&(this.pointer=this.filteredOptions.length?this.filteredOptions.length-1:0),this.filteredOptions.length>0&&this.filteredOptions[this.pointer].$isLabel&&!this.groupSelect&&this.pointerForward()},pointerSet:function(t){this.pointer=t,this.pointerDirty=!0}}}},function(t,e,n){"use strict";var i=n(36),r=n(74),o=n(15),s=n(18);t.exports=n(72)(Array,"Array",function(t,e){this._t=s(t),this._i=0,this._k=e},function(){var t=this._t,e=this._k,n=this._i++;return!t||n>=t.length?(this._t=void 0,r(1)):"keys"==e?r(0,n):"values"==e?r(0,t[n]):r(0,[n,t[n]])},"values"),o.Arguments=o.Array,i("keys"),i("values"),i("entries")},function(t,e,n){"use strict";var i=n(31),r=(n.n(i),n(32)),o=n(33);e.a={name:"vue-multiselect",mixins:[r.a,o.a],props:{name:{type:String,default:""},selectLabel:{type:String,default:"Press enter to select"},selectGroupLabel:{type:String,default:"Press enter to select group"},selectedLabel:{type:String,default:"Selected"},deselectLabel:{type:String,default:"Press enter to remove"},deselectGroupLabel:{type:String,default:"Press enter to deselect group"},showLabels:{type:Boolean,default:!0},limit:{type:Number,default:99999},maxHeight:{type:Number,default:300},limitText:{type:Function,default:function(t){return"and ".concat(t," more")}},loading:{type:Boolean,default:!1},disabled:{type:Boolean,default:!1},openDirection:{type:String,default:""},showNoOptions:{type:Boolean,default:!0},showNoResults:{type:Boolean,default:!0},tabindex:{type:Number,default:0}},computed:{isSingleLabelVisible:function(){return(this.singleValue||0===this.singleValue)&&(!this.isOpen||!this.searchable)&&!this.visibleValues.length},isPlaceholderVisible:function(){return!(this.internalValue.length||this.searchable&&this.isOpen)},visibleValues:function(){return this.multiple?this.internalValue.slice(0,this.limit):[]},singleValue:function(){return this.internalValue[0]},deselectLabelText:function(){return this.showLabels?this.deselectLabel:""},deselectGroupLabelText:function(){return this.showLabels?this.deselectGroupLabel:""},selectLabelText:function(){return this.showLabels?this.selectLabel:""},selectGroupLabelText:function(){return this.showLabels?this.selectGroupLabel:""},selectedLabelText:function(){return this.showLabels?this.selectedLabel:""},inputStyle:function(){if(this.searchable||this.multiple&&this.value&&this.value.length)return this.isOpen?{width:"100%"}:{width:"0",position:"absolute",padding:"0"}},contentStyle:function(){return this.options.length?{display:"inline-block"}:{display:"block"}},isAbove:function(){return"above"===this.openDirection||"top"===this.openDirection||"below"!==this.openDirection&&"bottom"!==this.openDirection&&"above"===this.preferredOpenDirection},showSearchInput:function(){return this.searchable&&(!this.hasSingleSelectedSlot||!this.visibleSingleValue&&0!==this.visibleSingleValue||this.isOpen)}}}},function(t,e,n){var i=n(1)("unscopables"),r=Array.prototype;void 0==r[i]&&n(8)(r,i,{}),t.exports=function(t){r[i][t]=!0}},function(t,e,n){var i=n(18),r=n(19),o=n(85);t.exports=function(t){return function(e,n,s){var u,a=i(e),l=r(a.length),c=o(s,l);if(t&&n!=n){for(;l>c;)if((u=a[c++])!=u)return!0}else for(;l>c;c++)if((t||c in a)&&a[c]===n)return t||c||0;return!t&&-1}}},function(t,e,n){var i=n(9),r=n(1)("toStringTag"),o="Arguments"==i(function(){return arguments}()),s=function(t,e){try{return t[e]}catch(t){}};t.exports=function(t){var e,n,u;return void 0===t?"Undefined":null===t?"Null":"string"==typeof(n=s(e=Object(t),r))?n:o?i(e):"Object"==(u=i(e))&&"function"==typeof e.callee?"Arguments":u}},function(t,e,n){"use strict";var i=n(2);t.exports=function(){var t=i(this),e="";return t.global&&(e+="g"),t.ignoreCase&&(e+="i"),t.multiline&&(e+="m"),t.unicode&&(e+="u"),t.sticky&&(e+="y"),e}},function(t,e,n){var i=n(0).document;t.exports=i&&i.documentElement},function(t,e,n){t.exports=!n(4)&&!n(7)(function(){return 7!=Object.defineProperty(n(21)("div"),"a",{get:function(){return 7}}).a})},function(t,e,n){var i=n(9);t.exports=Array.isArray||function(t){return"Array"==i(t)}},function(t,e,n){"use strict";function i(t){var e,n;this.promise=new t(function(t,i){if(void 0!==e||void 0!==n)throw TypeError("Bad Promise constructor");e=t,n=i}),this.resolve=r(e),this.reject=r(n)}var r=n(14);t.exports.f=function(t){return new i(t)}},function(t,e,n){var i=n(2),r=n(76),o=n(22),s=n(27)("IE_PROTO"),u=function(){},a=function(){var t,e=n(21)("iframe"),i=o.length;for(e.style.display="none",n(40).appendChild(e),e.src="javascript:",t=e.contentWindow.document,t.open(),t.write("<script>document.F=Object<\/script>"),t.close(),a=t.F;i--;)delete a.prototype[o[i]];return a()};t.exports=Object.create||function(t,e){var n;return null!==t?(u.prototype=i(t),n=new u,u.prototype=null,n[s]=t):n=a(),void 0===e?n:r(n,e)}},function(t,e,n){var i=n(79),r=n(25),o=n(18),s=n(29),u=n(12),a=n(41),l=Object.getOwnPropertyDescriptor;e.f=n(4)?l:function(t,e){if(t=o(t),e=s(e,!0),a)try{return l(t,e)}catch(t){}if(u(t,e))return r(!i.f.call(t,e),t[e])}},function(t,e,n){var i=n(12),r=n(18),o=n(37)(!1),s=n(27)("IE_PROTO");t.exports=function(t,e){var n,u=r(t),a=0,l=[];for(n in u)n!=s&&i(u,n)&&l.push(n);for(;e.length>a;)i(u,n=e[a++])&&(~o(l,n)||l.push(n));return l}},function(t,e,n){var i=n(46),r=n(22);t.exports=Object.keys||function(t){return i(t,r)}},function(t,e,n){var i=n(2),r=n(5),o=n(43);t.exports=function(t,e){if(i(t),r(e)&&e.constructor===t)return e;var n=o.f(t);return(0,n.resolve)(e),n.promise}},function(t,e,n){var i=n(10),r=n(0),o=r["__core-js_shared__"]||(r["__core-js_shared__"]={});(t.exports=function(t,e){return o[t]||(o[t]=void 0!==e?e:{})})("versions",[]).push({version:i.version,mode:n(24)?"pure":"global",copyright:"© 2018 Denis Pushkarev (zloirock.ru)"})},function(t,e,n){var i=n(2),r=n(14),o=n(1)("species");t.exports=function(t,e){var n,s=i(t).constructor;return void 0===s||void 0==(n=i(s)[o])?e:r(n)}},function(t,e,n){var i=n(3),r=n(16),o=n(7),s=n(84),u="["+s+"]",a="​…",l=RegExp("^"+u+u+"*"),c=RegExp(u+u+"*$"),f=function(t,e,n){var r={},u=o(function(){return!!s[t]()||a[t]()!=a}),l=r[t]=u?e(p):s[t];n&&(r[n]=l),i(i.P+i.F*u,"String",r)},p=f.trim=function(t,e){return t=String(r(t)),1&e&&(t=t.replace(l,"")),2&e&&(t=t.replace(c,"")),t};t.exports=f},function(t,e,n){var i,r,o,s=n(11),u=n(68),a=n(40),l=n(21),c=n(0),f=c.process,p=c.setImmediate,h=c.clearImmediate,d=c.MessageChannel,v=c.Dispatch,g=0,y={},m=function(){var t=+this;if(y.hasOwnProperty(t)){var e=y[t];delete y[t],e()}},b=function(t){m.call(t.data)};p&&h||(p=function(t){for(var e=[],n=1;arguments.length>n;)e.push(arguments[n++]);return y[++g]=function(){u("function"==typeof t?t:Function(t),e)},i(g),g},h=function(t){delete y[t]},"process"==n(9)(f)?i=function(t){f.nextTick(s(m,t,1))}:v&&v.now?i=function(t){v.now(s(m,t,1))}:d?(r=new d,o=r.port2,r.port1.onmessage=b,i=s(o.postMessage,o,1)):c.addEventListener&&"function"==typeof postMessage&&!c.importScripts?(i=function(t){c.postMessage(t+"","*")},c.addEventListener("message",b,!1)):i="onreadystatechange"in l("script")?function(t){a.appendChild(l("script")).onreadystatechange=function(){a.removeChild(this),m.call(t)}}:function(t){setTimeout(s(m,t,1),0)}),t.exports={set:p,clear:h}},function(t,e){var n=Math.ceil,i=Math.floor;t.exports=function(t){return isNaN(t=+t)?0:(t>0?i:n)(t)}},function(t,e,n){"use strict";var i=n(3),r=n(20)(5),o=!0;"find"in[]&&Array(1).find(function(){o=!1}),i(i.P+i.F*o,"Array",{find:function(t){return r(this,t,arguments.length>1?arguments[1]:void 0)}}),n(36)("find")},function(t,e,n){"use strict";var i,r,o,s,u=n(24),a=n(0),l=n(11),c=n(38),f=n(3),p=n(5),h=n(14),d=n(61),v=n(66),g=n(50),y=n(52).set,m=n(75)(),b=n(43),_=n(80),x=n(86),w=n(48),S=a.TypeError,O=a.process,L=O&&O.versions,k=L&&L.v8||"",P=a.Promise,T="process"==c(O),V=function(){},E=r=b.f,A=!!function(){try{var t=P.resolve(1),e=(t.constructor={})[n(1)("species")]=function(t){t(V,V)};return(T||"function"==typeof PromiseRejectionEvent)&&t.then(V)instanceof e&&0!==k.indexOf("6.6")&&-1===x.indexOf("Chrome/66")}catch(t){}}(),C=function(t){var e;return!(!p(t)||"function"!=typeof(e=t.then))&&e},D=function(t,e){if(!t._n){t._n=!0;var n=t._c;m(function(){for(var i=t._v,r=1==t._s,o=0;n.length>o;)!function(e){var n,o,s,u=r?e.ok:e.fail,a=e.resolve,l=e.reject,c=e.domain;try{u?(r||(2==t._h&&$(t),t._h=1),!0===u?n=i:(c&&c.enter(),n=u(i),c&&(c.exit(),s=!0)),n===e.promise?l(S("Promise-chain cycle")):(o=C(n))?o.call(n,a,l):a(n)):l(i)}catch(t){c&&!s&&c.exit(),l(t)}}(n[o++]);t._c=[],t._n=!1,e&&!t._h&&j(t)})}},j=function(t){y.call(a,function(){var e,n,i,r=t._v,o=N(t);if(o&&(e=_(function(){T?O.emit("unhandledRejection",r,t):(n=a.onunhandledrejection)?n({promise:t,reason:r}):(i=a.console)&&i.error&&i.error("Unhandled promise rejection",r)}),t._h=T||N(t)?2:1),t._a=void 0,o&&e.e)throw e.v})},N=function(t){return 1!==t._h&&0===(t._a||t._c).length},$=function(t){y.call(a,function(){var e;T?O.emit("rejectionHandled",t):(e=a.onrejectionhandled)&&e({promise:t,reason:t._v})})},F=function(t){var e=this;e._d||(e._d=!0,e=e._w||e,e._v=t,e._s=2,e._a||(e._a=e._c.slice()),D(e,!0))},M=function(t){var e,n=this;if(!n._d){n._d=!0,n=n._w||n;try{if(n===t)throw S("Promise can't be resolved itself");(e=C(t))?m(function(){var i={_w:n,_d:!1};try{e.call(t,l(M,i,1),l(F,i,1))}catch(t){F.call(i,t)}}):(n._v=t,n._s=1,D(n,!1))}catch(t){F.call({_w:n,_d:!1},t)}}};A||(P=function(t){d(this,P,"Promise","_h"),h(t),i.call(this);try{t(l(M,this,1),l(F,this,1))}catch(t){F.call(this,t)}},i=function(t){this._c=[],this._a=void 0,this._s=0,this._d=!1,this._v=void 0,this._h=0,this._n=!1},i.prototype=n(81)(P.prototype,{then:function(t,e){var n=E(g(this,P));return n.ok="function"!=typeof t||t,n.fail="function"==typeof e&&e,n.domain=T?O.domain:void 0,this._c.push(n),this._a&&this._a.push(n),this._s&&D(this,!1),n.promise},catch:function(t){return this.then(void 0,t)}}),o=function(){var t=new i;this.promise=t,this.resolve=l(M,t,1),this.reject=l(F,t,1)},b.f=E=function(t){return t===P||t===s?new o(t):r(t)}),f(f.G+f.W+f.F*!A,{Promise:P}),n(26)(P,"Promise"),n(83)("Promise"),s=n(10).Promise,f(f.S+f.F*!A,"Promise",{reject:function(t){var e=E(this);return(0,e.reject)(t),e.promise}}),f(f.S+f.F*(u||!A),"Promise",{resolve:function(t){return w(u&&this===s?P:this,t)}}),f(f.S+f.F*!(A&&n(73)(function(t){P.all(t).catch(V)})),"Promise",{all:function(t){var e=this,n=E(e),i=n.resolve,r=n.reject,o=_(function(){var n=[],o=0,s=1;v(t,!1,function(t){var u=o++,a=!1;n.push(void 0),s++,e.resolve(t).then(function(t){a||(a=!0,n[u]=t,--s||i(n))},r)}),--s||i(n)});return o.e&&r(o.v),n.promise},race:function(t){var e=this,n=E(e),i=n.reject,r=_(function(){v(t,!1,function(t){e.resolve(t).then(n.resolve,i)})});return r.e&&i(r.v),n.promise}})},function(t,e,n){"use strict";var i=n(3),r=n(10),o=n(0),s=n(50),u=n(48);i(i.P+i.R,"Promise",{finally:function(t){var e=s(this,r.Promise||o.Promise),n="function"==typeof t;return this.then(n?function(n){return u(e,t()).then(function(){return n})}:t,n?function(n){return u(e,t()).then(function(){throw n})}:t)}})},function(t,e,n){"use strict";function i(t){n(99)}var r=n(35),o=n(101),s=n(100),u=i,a=s(r.a,o.a,!1,u,null,null);e.a=a.exports},function(t,e,n){"use strict";function i(t,e,n){return e in t?Object.defineProperty(t,e,{value:n,enumerable:!0,configurable:!0,writable:!0}):t[e]=n,t}e.a=i},function(t,e,n){"use strict";function i(t){return(i="function"==typeof Symbol&&"symbol"==typeof Symbol.iterator?function(t){return typeof t}:function(t){return t&&"function"==typeof Symbol&&t.constructor===Symbol&&t!==Symbol.prototype?"symbol":typeof t})(t)}function r(t){return(r="function"==typeof Symbol&&"symbol"===i(Symbol.iterator)?function(t){return i(t)}:function(t){return t&&"function"==typeof Symbol&&t.constructor===Symbol&&t!==Symbol.prototype?"symbol":i(t)})(t)}e.a=r},function(t,e,n){"use strict";Object.defineProperty(e,"__esModule",{value:!0});var i=n(34),r=(n.n(i),n(55)),o=(n.n(r),n(56)),s=(n.n(o),n(57)),u=n(32),a=n(33);n.d(e,"Multiselect",function(){return s.a}),n.d(e,"multiselectMixin",function(){return u.a}),n.d(e,"pointerMixin",function(){return a.a}),e.default=s.a},function(t,e){t.exports=function(t,e,n,i){if(!(t instanceof e)||void 0!==i&&i in t)throw TypeError(n+": incorrect invocation!");return t}},function(t,e,n){var i=n(14),r=n(28),o=n(23),s=n(19);t.exports=function(t,e,n,u,a){i(e);var l=r(t),c=o(l),f=s(l.length),p=a?f-1:0,h=a?-1:1;if(n<2)for(;;){if(p in c){u=c[p],p+=h;break}if(p+=h,a?p<0:f<=p)throw TypeError("Reduce of empty array with no initial value")}for(;a?p>=0:f>p;p+=h)p in c&&(u=e(u,c[p],p,l));return u}},function(t,e,n){var i=n(5),r=n(42),o=n(1)("species");t.exports=function(t){var e;return r(t)&&(e=t.constructor,"function"!=typeof e||e!==Array&&!r(e.prototype)||(e=void 0),i(e)&&null===(e=e[o])&&(e=void 0)),void 0===e?Array:e}},function(t,e,n){var i=n(63);t.exports=function(t,e){return new(i(t))(e)}},function(t,e,n){"use strict";var i=n(8),r=n(6),o=n(7),s=n(16),u=n(1);t.exports=function(t,e,n){var a=u(t),l=n(s,a,""[t]),c=l[0],f=l[1];o(function(){var e={};return e[a]=function(){return 7},7!=""[t](e)})&&(r(String.prototype,t,c),i(RegExp.prototype,a,2==e?function(t,e){return f.call(t,this,e)}:function(t){return f.call(t,this)}))}},function(t,e,n){var i=n(11),r=n(70),o=n(69),s=n(2),u=n(19),a=n(87),l={},c={},e=t.exports=function(t,e,n,f,p){var h,d,v,g,y=p?function(){return t}:a(t),m=i(n,f,e?2:1),b=0;if("function"!=typeof y)throw TypeError(t+" is not iterable!");if(o(y)){for(h=u(t.length);h>b;b++)if((g=e?m(s(d=t[b])[0],d[1]):m(t[b]))===l||g===c)return g}else for(v=y.call(t);!(d=v.next()).done;)if((g=r(v,m,d.value,e))===l||g===c)return g};e.BREAK=l,e.RETURN=c},function(t,e,n){var i=n(5),r=n(82).set;t.exports=function(t,e,n){var o,s=e.constructor;return s!==n&&"function"==typeof s&&(o=s.prototype)!==n.prototype&&i(o)&&r&&r(t,o),t}},function(t,e){t.exports=function(t,e,n){var i=void 0===n;switch(e.length){case 0:return i?t():t.call(n);case 1:return i?t(e[0]):t.call(n,e[0]);case 2:return i?t(e[0],e[1]):t.call(n,e[0],e[1]);case 3:return i?t(e[0],e[1],e[2]):t.call(n,e[0],e[1],e[2]);case 4:return i?t(e[0],e[1],e[2],e[3]):t.call(n,e[0],e[1],e[2],e[3])}return t.apply(n,e)}},function(t,e,n){var i=n(15),r=n(1)("iterator"),o=Array.prototype;t.exports=function(t){return void 0!==t&&(i.Array===t||o[r]===t)}},function(t,e,n){var i=n(2);t.exports=function(t,e,n,r){try{return r?e(i(n)[0],n[1]):e(n)}catch(e){var o=t.return;throw void 0!==o&&i(o.call(t)),e}}},function(t,e,n){"use strict";var i=n(44),r=n(25),o=n(26),s={};n(8)(s,n(1)("iterator"),function(){return this}),t.exports=function(t,e,n){t.prototype=i(s,{next:r(1,n)}),o(t,e+" Iterator")}},function(t,e,n){"use strict";var i=n(24),r=n(3),o=n(6),s=n(8),u=n(15),a=n(71),l=n(26),c=n(78),f=n(1)("iterator"),p=!([].keys&&"next"in[].keys()),h=function(){return this};t.exports=function(t,e,n,d,v,g,y){a(n,e,d);var m,b,_,x=function(t){if(!p&&t in L)return L[t];switch(t){case"keys":case"values":return function(){return new n(this,t)}}return function(){return new n(this,t)}},w=e+" Iterator",S="values"==v,O=!1,L=t.prototype,k=L[f]||L["@@iterator"]||v&&L[v],P=k||x(v),T=v?S?x("entries"):P:void 0,V="Array"==e?L.entries||k:k;if(V&&(_=c(V.call(new t)))!==Object.prototype&&_.next&&(l(_,w,!0),i||"function"==typeof _[f]||s(_,f,h)),S&&k&&"values"!==k.name&&(O=!0,P=function(){return k.call(this)}),i&&!y||!p&&!O&&L[f]||s(L,f,P),u[e]=P,u[w]=h,v)if(m={values:S?P:x("values"),keys:g?P:x("keys"),entries:T},y)for(b in m)b in L||o(L,b,m[b]);else r(r.P+r.F*(p||O),e,m);return m}},function(t,e,n){var i=n(1)("iterator"),r=!1;try{var o=[7][i]();o.return=function(){r=!0},Array.from(o,function(){throw 2})}catch(t){}t.exports=function(t,e){if(!e&&!r)return!1;var n=!1;try{var o=[7],s=o[i]();s.next=function(){return{done:n=!0}},o[i]=function(){return s},t(o)}catch(t){}return n}},function(t,e){t.exports=function(t,e){return{value:e,done:!!t}}},function(t,e,n){var i=n(0),r=n(52).set,o=i.MutationObserver||i.WebKitMutationObserver,s=i.process,u=i.Promise,a="process"==n(9)(s);t.exports=function(){var t,e,n,l=function(){var i,r;for(a&&(i=s.domain)&&i.exit();t;){r=t.fn,t=t.next;try{r()}catch(i){throw t?n():e=void 0,i}}e=void 0,i&&i.enter()};if(a)n=function(){s.nextTick(l)};else if(!o||i.navigator&&i.navigator.standalone)if(u&&u.resolve){var c=u.resolve(void 0);n=function(){c.then(l)}}else n=function(){r.call(i,l)};else{var f=!0,p=document.createTextNode("");new o(l).observe(p,{characterData:!0}),n=function(){p.data=f=!f}}return function(i){var r={fn:i,next:void 0};e&&(e.next=r),t||(t=r,n()),e=r}}},function(t,e,n){var i=n(13),r=n(2),o=n(47);t.exports=n(4)?Object.defineProperties:function(t,e){r(t);for(var n,s=o(e),u=s.length,a=0;u>a;)i.f(t,n=s[a++],e[n]);return t}},function(t,e,n){var i=n(46),r=n(22).concat("length","prototype");e.f=Object.getOwnPropertyNames||function(t){return i(t,r)}},function(t,e,n){var i=n(12),r=n(28),o=n(27)("IE_PROTO"),s=Object.prototype;t.exports=Object.getPrototypeOf||function(t){return t=r(t),i(t,o)?t[o]:"function"==typeof t.constructor&&t instanceof t.constructor?t.constructor.prototype:t instanceof Object?s:null}},function(t,e){e.f={}.propertyIsEnumerable},function(t,e){t.exports=function(t){try{return{e:!1,v:t()}}catch(t){return{e:!0,v:t}}}},function(t,e,n){var i=n(6);t.exports=function(t,e,n){for(var r in e)i(t,r,e[r],n);return t}},function(t,e,n){var i=n(5),r=n(2),o=function(t,e){if(r(t),!i(e)&&null!==e)throw TypeError(e+": can't set as prototype!")};t.exports={set:Object.setPrototypeOf||("__proto__"in{}?function(t,e,i){try{i=n(11)(Function.call,n(45).f(Object.prototype,"__proto__").set,2),i(t,[]),e=!(t instanceof Array)}catch(t){e=!0}return function(t,n){return o(t,n),e?t.__proto__=n:i(t,n),t}}({},!1):void 0),check:o}},function(t,e,n){"use strict";var i=n(0),r=n(13),o=n(4),s=n(1)("species");t.exports=function(t){var e=i[t];o&&e&&!e[s]&&r.f(e,s,{configurable:!0,get:function(){return this}})}},function(t,e){t.exports="\t\n\v\f\r   ᠎              \u2028\u2029\ufeff"},function(t,e,n){var i=n(53),r=Math.max,o=Math.min;t.exports=function(t,e){return t=i(t),t<0?r(t+e,0):o(t,e)}},function(t,e,n){var i=n(0),r=i.navigator;t.exports=r&&r.userAgent||""},function(t,e,n){var i=n(38),r=n(1)("iterator"),o=n(15);t.exports=n(10).getIteratorMethod=function(t){if(void 0!=t)return t[r]||t["@@iterator"]||o[i(t)]}},function(t,e,n){"use strict";var i=n(3),r=n(20)(2);i(i.P+i.F*!n(17)([].filter,!0),"Array",{filter:function(t){return r(this,t,arguments[1])}})},function(t,e,n){"use strict";var i=n(3),r=n(37)(!1),o=[].indexOf,s=!!o&&1/[1].indexOf(1,-0)<0;i(i.P+i.F*(s||!n(17)(o)),"Array",{indexOf:function(t){return s?o.apply(this,arguments)||0:r(this,t,arguments[1])}})},function(t,e,n){var i=n(3);i(i.S,"Array",{isArray:n(42)})},function(t,e,n){"use strict";var i=n(3),r=n(20)(1);i(i.P+i.F*!n(17)([].map,!0),"Array",{map:function(t){return r(this,t,arguments[1])}})},function(t,e,n){"use strict";var i=n(3),r=n(62);i(i.P+i.F*!n(17)([].reduce,!0),"Array",{reduce:function(t){return r(this,t,arguments.length,arguments[1],!1)}})},function(t,e,n){var i=Date.prototype,r=i.toString,o=i.getTime;new Date(NaN)+""!="Invalid Date"&&n(6)(i,"toString",function(){var t=o.call(this);return t===t?r.call(this):"Invalid Date"})},function(t,e,n){n(4)&&"g"!=/./g.flags&&n(13).f(RegExp.prototype,"flags",{configurable:!0,get:n(39)})},function(t,e,n){n(65)("search",1,function(t,e,n){return[function(n){"use strict";var i=t(this),r=void 0==n?void 0:n[e];return void 0!==r?r.call(n,i):new RegExp(n)[e](String(i))},n]})},function(t,e,n){"use strict";n(94);var i=n(2),r=n(39),o=n(4),s=/./.toString,u=function(t){n(6)(RegExp.prototype,"toString",t,!0)};n(7)(function(){return"/a/b"!=s.call({source:"a",flags:"b"})})?u(function(){var t=i(this);return"/".concat(t.source,"/","flags"in t?t.flags:!o&&t instanceof RegExp?r.call(t):void 0)}):"toString"!=s.name&&u(function(){return s.call(this)})},function(t,e,n){"use strict";n(51)("trim",function(t){return function(){return t(this,3)}})},function(t,e,n){for(var i=n(34),r=n(47),o=n(6),s=n(0),u=n(8),a=n(15),l=n(1),c=l("iterator"),f=l("toStringTag"),p=a.Array,h={CSSRuleList:!0,CSSStyleDeclaration:!1,CSSValueList:!1,ClientRectList:!1,DOMRectList:!1,DOMStringList:!1,DOMTokenList:!0,DataTransferItemList:!1,FileList:!1,HTMLAllCollection:!1,HTMLCollection:!1,HTMLFormElement:!1,HTMLSelectElement:!1,MediaList:!0,MimeTypeArray:!1,NamedNodeMap:!1,NodeList:!0,PaintRequestList:!1,Plugin:!1,PluginArray:!1,SVGLengthList:!1,SVGNumberList:!1,SVGPathSegList:!1,SVGPointList:!1,SVGStringList:!1,SVGTransformList:!1,SourceBufferList:!1,StyleSheetList:!0,TextTrackCueList:!1,TextTrackList:!1,TouchList:!1},d=r(h),v=0;v<d.length;v++){var g,y=d[v],m=h[y],b=s[y],_=b&&b.prototype;if(_&&(_[c]||u(_,c,p),_[f]||u(_,f,y),a[y]=p,m))for(g in i)_[g]||o(_,g,i[g],!0)}},function(t,e){},function(t,e){t.exports=function(t,e,n,i,r,o){var s,u=t=t||{},a=typeof t.default;"object"!==a&&"function"!==a||(s=t,u=t.default);var l="function"==typeof u?u.options:u;e&&(l.render=e.render,l.staticRenderFns=e.staticRenderFns,l._compiled=!0),n&&(l.functional=!0),r&&(l._scopeId=r);var c;if(o?(c=function(t){t=t||this.$vnode&&this.$vnode.ssrContext||this.parent&&this.parent.$vnode&&this.parent.$vnode.ssrContext,t||"undefined"==typeof __VUE_SSR_CONTEXT__||(t=__VUE_SSR_CONTEXT__),i&&i.call(this,t),t&&t._registeredComponents&&t._registeredComponents.add(o)},l._ssrRegister=c):i&&(c=i),c){var f=l.functional,p=f?l.render:l.beforeCreate;f?(l._injectStyles=c,l.render=function(t,e){return c.call(e),p(t,e)}):l.beforeCreate=p?[].concat(p,c):[c]}return{esModule:s,exports:u,options:l}}},function(t,e,n){"use strict";var i=function(){var t=this,e=t.$createElement,n=t._self._c||e;return n("div",{staticClass:"multiselect",class:{"multiselect--active":t.isOpen,"multiselect--disabled":t.disabled,"multiselect--above":t.isAbove},attrs:{tabindex:t.searchable?-1:t.tabindex},on:{focus:function(e){t.activate()},blur:function(e){!t.searchable&&t.deactivate()},keydown:[function(e){return"button"in e||!t._k(e.keyCode,"down",40,e.key,["Down","ArrowDown"])?e.target!==e.currentTarget?null:(e.preventDefault(),void t.pointerForward()):null},function(e){return"button"in e||!t._k(e.keyCode,"up",38,e.key,["Up","ArrowUp"])?e.target!==e.currentTarget?null:(e.preventDefault(),void t.pointerBackward()):null}],keypress:function(e){return"button"in e||!t._k(e.keyCode,"enter",13,e.key,"Enter")||!t._k(e.keyCode,"tab",9,e.key,"Tab")?(e.stopPropagation(),e.target!==e.currentTarget?null:void t.addPointerElement(e)):null},keyup:function(e){if(!("button"in e)&&t._k(e.keyCode,"esc",27,e.key,"Escape"))return null;t.deactivate()}}},[t._t("caret",[n("div",{staticClass:"multiselect__select",on:{mousedown:function(e){e.preventDefault(),e.stopPropagation(),t.toggle()}}})],{toggle:t.toggle}),t._v(" "),t._t("clear",null,{search:t.search}),t._v(" "),n("div",{ref:"tags",staticClass:"multiselect__tags"},[t._t("selection",[n("div",{directives:[{name:"show",rawName:"v-show",value:t.visibleValues.length>0,expression:"visibleValues.length > 0"}],staticClass:"multiselect__tags-wrap"},[t._l(t.visibleValues,function(e,i){return[t._t("tag",[n("span",{key:i,staticClass:"multiselect__tag"},[n("span",{domProps:{textContent:t._s(t.getOptionLabel(e))}}),t._v(" "),n("i",{staticClass:"multiselect__tag-icon",attrs:{"aria-hidden":"true",tabindex:"1"},on:{keypress:function(n){if(!("button"in n)&&t._k(n.keyCode,"enter",13,n.key,"Enter"))return null;n.preventDefault(),t.removeElement(e)},mousedown:function(n){n.preventDefault(),t.removeElement(e)}}})])],{option:e,search:t.search,remove:t.removeElement})]})],2),t._v(" "),t.internalValue&&t.internalValue.length>t.limit?[t._t("limit",[n("strong",{staticClass:"multiselect__strong",domProps:{textContent:t._s(t.limitText(t.internalValue.length-t.limit))}})])]:t._e()],{search:t.search,remove:t.removeElement,values:t.visibleValues,isOpen:t.isOpen}),t._v(" "),n("transition",{attrs:{name:"multiselect__loading"}},[t._t("loading",[n("div",{directives:[{name:"show",rawName:"v-show",value:t.loading,expression:"loading"}],staticClass:"multiselect__spinner"})])],2),t._v(" "),t.searchable?n("input",{ref:"search",staticClass:"multiselect__input",style:t.inputStyle,attrs:{name:t.name,id:t.id,type:"text",autocomplete:"nope",placeholder:t.placeholder,disabled:t.disabled,tabindex:t.tabindex},domProps:{value:t.search},on:{input:function(e){t.updateSearch(e.target.value)},focus:function(e){e.preventDefault(),t.activate()},blur:function(e){e.preventDefault(),t.deactivate()},keyup:function(e){if(!("button"in e)&&t._k(e.keyCode,"esc",27,e.key,"Escape"))return null;t.deactivate()},keydown:[function(e){if(!("button"in e)&&t._k(e.keyCode,"down",40,e.key,["Down","ArrowDown"]))return null;e.preventDefault(),t.pointerForward()},function(e){if(!("button"in e)&&t._k(e.keyCode,"up",38,e.key,["Up","ArrowUp"]))return null;e.preventDefault(),t.pointerBackward()},function(e){if(!("button"in e)&&t._k(e.keyCode,"delete",[8,46],e.key,["Backspace","Delete"]))return null;e.stopPropagation(),t.removeLastElement()}],keypress:function(e){return"button"in e||!t._k(e.keyCode,"enter",13,e.key,"Enter")?(e.preventDefault(),e.stopPropagation(),e.target!==e.currentTarget?null:void t.addPointerElement(e)):null}}}):t._e(),t._v(" "),t.isSingleLabelVisible?n("span",{staticClass:"multiselect__single",on:{mousedown:function(e){return e.preventDefault(),t.toggle(e)}}},[t._t("singleLabel",[[t._v(t._s(t.currentOptionLabel))]],{option:t.singleValue})],2):t._e(),t._v(" "),t.isPlaceholderVisible?n("span",{staticClass:"multiselect__placeholder",on:{mousedown:function(e){return e.preventDefault(),t.toggle(e)}}},[t._t("placeholder",[t._v("\n "+t._s(t.placeholder)+"\n ")])],2):t._e()],2),t._v(" "),n("transition",{attrs:{name:"multiselect"}},[n("div",{directives:[{name:"show",rawName:"v-show",value:t.isOpen,expression:"isOpen"}],ref:"list",staticClass:"multiselect__content-wrapper",style:{maxHeight:t.optimizedHeight+"px"},attrs:{tabindex:"-1"},on:{focus:t.activate,mousedown:function(t){t.preventDefault()}}},[n("ul",{staticClass:"multiselect__content",style:t.contentStyle},[t._t("beforeList"),t._v(" "),t.multiple&&t.max===t.internalValue.length?n("li",[n("span",{staticClass:"multiselect__option"},[t._t("maxElements",[t._v("Maximum of "+t._s(t.max)+" options selected. First remove a selected option to select another.")])],2)]):t._e(),t._v(" "),!t.max||t.internalValue.length<t.max?t._l(t.filteredOptions,function(e,i){return n("li",{key:i,staticClass:"multiselect__element"},[e&&(e.$isLabel||e.$isDisabled)?t._e():n("span",{staticClass:"multiselect__option",class:t.optionHighlight(i,e),attrs:{"data-select":e&&e.isTag?t.tagPlaceholder:t.selectLabelText,"data-selected":t.selectedLabelText,"data-deselect":t.deselectLabelText},on:{click:function(n){n.stopPropagation(),t.select(e)},mouseenter:function(e){if(e.target!==e.currentTarget)return null;t.pointerSet(i)}}},[t._t("option",[n("span",[t._v(t._s(t.getOptionLabel(e)))])],{option:e,search:t.search})],2),t._v(" "),e&&(e.$isLabel||e.$isDisabled)?n("span",{staticClass:"multiselect__option",class:t.groupHighlight(i,e),attrs:{"data-select":t.groupSelect&&t.selectGroupLabelText,"data-deselect":t.groupSelect&&t.deselectGroupLabelText},on:{mouseenter:function(e){if(e.target!==e.currentTarget)return null;t.groupSelect&&t.pointerSet(i)},mousedown:function(n){n.preventDefault(),t.selectGroup(e)}}},[t._t("option",[n("span",[t._v(t._s(t.getOptionLabel(e)))])],{option:e,search:t.search})],2):t._e()])}):t._e(),t._v(" "),n("li",{directives:[{name:"show",rawName:"v-show",value:t.showNoResults&&0===t.filteredOptions.length&&t.search&&!t.loading,expression:"showNoResults && (filteredOptions.length === 0 && search && !loading)"}]},[n("span",{staticClass:"multiselect__option"},[t._t("noResult",[t._v("No elements found. Consider changing the search query.")],{search:t.search})],2)]),t._v(" "),n("li",{directives:[{name:"show",rawName:"v-show",value:t.showNoOptions&&0===t.options.length&&!t.search&&!t.loading,expression:"showNoOptions && (options.length === 0 && !search && !loading)"}]},[n("span",{staticClass:"multiselect__option"},[t._t("noOptions",[t._v("List is empty.")])],2)]),t._v(" "),t._t("afterList")],2)])])],2)},r=[],o={render:i,staticRenderFns:r};e.a=o}])});
2560
2526
 
2527
+ /***/ }),
2528
+
2529
+ /***/ "8ea1":
2530
+ /***/ (function(module, exports) {
2531
+
2532
+ var documentAll = typeof document == 'object' && document.all;
2533
+
2534
+ // https://tc39.es/ecma262/#sec-IsHTMLDDA-internal-slot
2535
+ var IS_HTMLDDA = typeof documentAll == 'undefined' && documentAll !== undefined;
2536
+
2537
+ module.exports = {
2538
+ all: documentAll,
2539
+ IS_HTMLDDA: IS_HTMLDDA
2540
+ };
2541
+
2542
+
2561
2543
  /***/ }),
2562
2544
 
2563
2545
  /***/ "8ff2":
@@ -2720,9 +2702,9 @@ var anObject = __webpack_require__("825a");
2720
2702
  var toPropertyKey = __webpack_require__("a04b");
2721
2703
 
2722
2704
  var $TypeError = TypeError;
2723
- // eslint-disable-next-line es-x/no-object-defineproperty -- safe
2705
+ // eslint-disable-next-line es/no-object-defineproperty -- safe
2724
2706
  var $defineProperty = Object.defineProperty;
2725
- // eslint-disable-next-line es-x/no-object-getownpropertydescriptor -- safe
2707
+ // eslint-disable-next-line es/no-object-getownpropertydescriptor -- safe
2726
2708
  var $getOwnPropertyDescriptor = Object.getOwnPropertyDescriptor;
2727
2709
  var ENUMERABLE = 'enumerable';
2728
2710
  var CONFIGURABLE = 'configurable';
@@ -2758,6 +2740,13 @@ exports.f = DESCRIPTORS ? V8_PROTOTYPE_DEFINE_BUG ? function defineProperty(O, P
2758
2740
  };
2759
2741
 
2760
2742
 
2743
+ /***/ }),
2744
+
2745
+ /***/ "a01d":
2746
+ /***/ (function(module) {
2747
+
2748
+ module.exports = JSON.parse("{\"&AElig;\":{\"codepoints\":[198],\"characters\":\"Æ\"},\"&AElig\":{\"codepoints\":[198],\"characters\":\"Æ\"},\"&AMP;\":{\"codepoints\":[38],\"characters\":\"&\"},\"&AMP\":{\"codepoints\":[38],\"characters\":\"&\"},\"&Aacute;\":{\"codepoints\":[193],\"characters\":\"Á\"},\"&Aacute\":{\"codepoints\":[193],\"characters\":\"Á\"},\"&Abreve;\":{\"codepoints\":[258],\"characters\":\"Ă\"},\"&Acirc;\":{\"codepoints\":[194],\"characters\":\"Â\"},\"&Acirc\":{\"codepoints\":[194],\"characters\":\"Â\"},\"&Acy;\":{\"codepoints\":[1040],\"characters\":\"А\"},\"&Afr;\":{\"codepoints\":[120068],\"characters\":\"𝔄\"},\"&Agrave;\":{\"codepoints\":[192],\"characters\":\"À\"},\"&Agrave\":{\"codepoints\":[192],\"characters\":\"À\"},\"&Alpha;\":{\"codepoints\":[913],\"characters\":\"Α\"},\"&Amacr;\":{\"codepoints\":[256],\"characters\":\"Ā\"},\"&And;\":{\"codepoints\":[10835],\"characters\":\"⩓\"},\"&Aogon;\":{\"codepoints\":[260],\"characters\":\"Ą\"},\"&Aopf;\":{\"codepoints\":[120120],\"characters\":\"𝔸\"},\"&ApplyFunction;\":{\"codepoints\":[8289],\"characters\":\"⁡\"},\"&Aring;\":{\"codepoints\":[197],\"characters\":\"Å\"},\"&Aring\":{\"codepoints\":[197],\"characters\":\"Å\"},\"&Ascr;\":{\"codepoints\":[119964],\"characters\":\"𝒜\"},\"&Assign;\":{\"codepoints\":[8788],\"characters\":\"≔\"},\"&Atilde;\":{\"codepoints\":[195],\"characters\":\"Ã\"},\"&Atilde\":{\"codepoints\":[195],\"characters\":\"Ã\"},\"&Auml;\":{\"codepoints\":[196],\"characters\":\"Ä\"},\"&Auml\":{\"codepoints\":[196],\"characters\":\"Ä\"},\"&Backslash;\":{\"codepoints\":[8726],\"characters\":\"∖\"},\"&Barv;\":{\"codepoints\":[10983],\"characters\":\"⫧\"},\"&Barwed;\":{\"codepoints\":[8966],\"characters\":\"⌆\"},\"&Bcy;\":{\"codepoints\":[1041],\"characters\":\"Б\"},\"&Because;\":{\"codepoints\":[8757],\"characters\":\"∵\"},\"&Bernoullis;\":{\"codepoints\":[8492],\"characters\":\"ℬ\"},\"&Beta;\":{\"codepoints\":[914],\"characters\":\"Β\"},\"&Bfr;\":{\"codepoints\":[120069],\"characters\":\"𝔅\"},\"&Bopf;\":{\"codepoints\":[120121],\"characters\":\"𝔹\"},\"&Breve;\":{\"codepoints\":[728],\"characters\":\"˘\"},\"&Bscr;\":{\"codepoints\":[8492],\"characters\":\"ℬ\"},\"&Bumpeq;\":{\"codepoints\":[8782],\"characters\":\"≎\"},\"&CHcy;\":{\"codepoints\":[1063],\"characters\":\"Ч\"},\"&COPY;\":{\"codepoints\":[169],\"characters\":\"©\"},\"&COPY\":{\"codepoints\":[169],\"characters\":\"©\"},\"&Cacute;\":{\"codepoints\":[262],\"characters\":\"Ć\"},\"&Cap;\":{\"codepoints\":[8914],\"characters\":\"⋒\"},\"&CapitalDifferentialD;\":{\"codepoints\":[8517],\"characters\":\"ⅅ\"},\"&Cayleys;\":{\"codepoints\":[8493],\"characters\":\"ℭ\"},\"&Ccaron;\":{\"codepoints\":[268],\"characters\":\"Č\"},\"&Ccedil;\":{\"codepoints\":[199],\"characters\":\"Ç\"},\"&Ccedil\":{\"codepoints\":[199],\"characters\":\"Ç\"},\"&Ccirc;\":{\"codepoints\":[264],\"characters\":\"Ĉ\"},\"&Cconint;\":{\"codepoints\":[8752],\"characters\":\"∰\"},\"&Cdot;\":{\"codepoints\":[266],\"characters\":\"Ċ\"},\"&Cedilla;\":{\"codepoints\":[184],\"characters\":\"¸\"},\"&CenterDot;\":{\"codepoints\":[183],\"characters\":\"·\"},\"&Cfr;\":{\"codepoints\":[8493],\"characters\":\"ℭ\"},\"&Chi;\":{\"codepoints\":[935],\"characters\":\"Χ\"},\"&CircleDot;\":{\"codepoints\":[8857],\"characters\":\"⊙\"},\"&CircleMinus;\":{\"codepoints\":[8854],\"characters\":\"⊖\"},\"&CirclePlus;\":{\"codepoints\":[8853],\"characters\":\"⊕\"},\"&CircleTimes;\":{\"codepoints\":[8855],\"characters\":\"⊗\"},\"&ClockwiseContourIntegral;\":{\"codepoints\":[8754],\"characters\":\"∲\"},\"&CloseCurlyDoubleQuote;\":{\"codepoints\":[8221],\"characters\":\"”\"},\"&CloseCurlyQuote;\":{\"codepoints\":[8217],\"characters\":\"’\"},\"&Colon;\":{\"codepoints\":[8759],\"characters\":\"∷\"},\"&Colone;\":{\"codepoints\":[10868],\"characters\":\"⩴\"},\"&Congruent;\":{\"codepoints\":[8801],\"characters\":\"≡\"},\"&Conint;\":{\"codepoints\":[8751],\"characters\":\"∯\"},\"&ContourIntegral;\":{\"codepoints\":[8750],\"characters\":\"∮\"},\"&Copf;\":{\"codepoints\":[8450],\"characters\":\"ℂ\"},\"&Coproduct;\":{\"codepoints\":[8720],\"characters\":\"∐\"},\"&CounterClockwiseContourIntegral;\":{\"codepoints\":[8755],\"characters\":\"∳\"},\"&Cross;\":{\"codepoints\":[10799],\"characters\":\"⨯\"},\"&Cscr;\":{\"codepoints\":[119966],\"characters\":\"𝒞\"},\"&Cup;\":{\"codepoints\":[8915],\"characters\":\"⋓\"},\"&CupCap;\":{\"codepoints\":[8781],\"characters\":\"≍\"},\"&DD;\":{\"codepoints\":[8517],\"characters\":\"ⅅ\"},\"&DDotrahd;\":{\"codepoints\":[10513],\"characters\":\"⤑\"},\"&DJcy;\":{\"codepoints\":[1026],\"characters\":\"Ђ\"},\"&DScy;\":{\"codepoints\":[1029],\"characters\":\"Ѕ\"},\"&DZcy;\":{\"codepoints\":[1039],\"characters\":\"Џ\"},\"&Dagger;\":{\"codepoints\":[8225],\"characters\":\"‡\"},\"&Darr;\":{\"codepoints\":[8609],\"characters\":\"↡\"},\"&Dashv;\":{\"codepoints\":[10980],\"characters\":\"⫤\"},\"&Dcaron;\":{\"codepoints\":[270],\"characters\":\"Ď\"},\"&Dcy;\":{\"codepoints\":[1044],\"characters\":\"Д\"},\"&Del;\":{\"codepoints\":[8711],\"characters\":\"∇\"},\"&Delta;\":{\"codepoints\":[916],\"characters\":\"Δ\"},\"&Dfr;\":{\"codepoints\":[120071],\"characters\":\"𝔇\"},\"&DiacriticalAcute;\":{\"codepoints\":[180],\"characters\":\"´\"},\"&DiacriticalDot;\":{\"codepoints\":[729],\"characters\":\"˙\"},\"&DiacriticalDoubleAcute;\":{\"codepoints\":[733],\"characters\":\"˝\"},\"&DiacriticalGrave;\":{\"codepoints\":[96],\"characters\":\"`\"},\"&DiacriticalTilde;\":{\"codepoints\":[732],\"characters\":\"˜\"},\"&Diamond;\":{\"codepoints\":[8900],\"characters\":\"⋄\"},\"&DifferentialD;\":{\"codepoints\":[8518],\"characters\":\"ⅆ\"},\"&Dopf;\":{\"codepoints\":[120123],\"characters\":\"𝔻\"},\"&Dot;\":{\"codepoints\":[168],\"characters\":\"¨\"},\"&DotDot;\":{\"codepoints\":[8412],\"characters\":\"⃜\"},\"&DotEqual;\":{\"codepoints\":[8784],\"characters\":\"≐\"},\"&DoubleContourIntegral;\":{\"codepoints\":[8751],\"characters\":\"∯\"},\"&DoubleDot;\":{\"codepoints\":[168],\"characters\":\"¨\"},\"&DoubleDownArrow;\":{\"codepoints\":[8659],\"characters\":\"⇓\"},\"&DoubleLeftArrow;\":{\"codepoints\":[8656],\"characters\":\"⇐\"},\"&DoubleLeftRightArrow;\":{\"codepoints\":[8660],\"characters\":\"⇔\"},\"&DoubleLeftTee;\":{\"codepoints\":[10980],\"characters\":\"⫤\"},\"&DoubleLongLeftArrow;\":{\"codepoints\":[10232],\"characters\":\"⟸\"},\"&DoubleLongLeftRightArrow;\":{\"codepoints\":[10234],\"characters\":\"⟺\"},\"&DoubleLongRightArrow;\":{\"codepoints\":[10233],\"characters\":\"⟹\"},\"&DoubleRightArrow;\":{\"codepoints\":[8658],\"characters\":\"⇒\"},\"&DoubleRightTee;\":{\"codepoints\":[8872],\"characters\":\"⊨\"},\"&DoubleUpArrow;\":{\"codepoints\":[8657],\"characters\":\"⇑\"},\"&DoubleUpDownArrow;\":{\"codepoints\":[8661],\"characters\":\"⇕\"},\"&DoubleVerticalBar;\":{\"codepoints\":[8741],\"characters\":\"∥\"},\"&DownArrow;\":{\"codepoints\":[8595],\"characters\":\"↓\"},\"&DownArrowBar;\":{\"codepoints\":[10515],\"characters\":\"⤓\"},\"&DownArrowUpArrow;\":{\"codepoints\":[8693],\"characters\":\"⇵\"},\"&DownBreve;\":{\"codepoints\":[785],\"characters\":\"̑\"},\"&DownLeftRightVector;\":{\"codepoints\":[10576],\"characters\":\"⥐\"},\"&DownLeftTeeVector;\":{\"codepoints\":[10590],\"characters\":\"⥞\"},\"&DownLeftVector;\":{\"codepoints\":[8637],\"characters\":\"↽\"},\"&DownLeftVectorBar;\":{\"codepoints\":[10582],\"characters\":\"⥖\"},\"&DownRightTeeVector;\":{\"codepoints\":[10591],\"characters\":\"⥟\"},\"&DownRightVector;\":{\"codepoints\":[8641],\"characters\":\"⇁\"},\"&DownRightVectorBar;\":{\"codepoints\":[10583],\"characters\":\"⥗\"},\"&DownTee;\":{\"codepoints\":[8868],\"characters\":\"⊤\"},\"&DownTeeArrow;\":{\"codepoints\":[8615],\"characters\":\"↧\"},\"&Downarrow;\":{\"codepoints\":[8659],\"characters\":\"⇓\"},\"&Dscr;\":{\"codepoints\":[119967],\"characters\":\"𝒟\"},\"&Dstrok;\":{\"codepoints\":[272],\"characters\":\"Đ\"},\"&ENG;\":{\"codepoints\":[330],\"characters\":\"Ŋ\"},\"&ETH;\":{\"codepoints\":[208],\"characters\":\"Ð\"},\"&ETH\":{\"codepoints\":[208],\"characters\":\"Ð\"},\"&Eacute;\":{\"codepoints\":[201],\"characters\":\"É\"},\"&Eacute\":{\"codepoints\":[201],\"characters\":\"É\"},\"&Ecaron;\":{\"codepoints\":[282],\"characters\":\"Ě\"},\"&Ecirc;\":{\"codepoints\":[202],\"characters\":\"Ê\"},\"&Ecirc\":{\"codepoints\":[202],\"characters\":\"Ê\"},\"&Ecy;\":{\"codepoints\":[1069],\"characters\":\"Э\"},\"&Edot;\":{\"codepoints\":[278],\"characters\":\"Ė\"},\"&Efr;\":{\"codepoints\":[120072],\"characters\":\"𝔈\"},\"&Egrave;\":{\"codepoints\":[200],\"characters\":\"È\"},\"&Egrave\":{\"codepoints\":[200],\"characters\":\"È\"},\"&Element;\":{\"codepoints\":[8712],\"characters\":\"∈\"},\"&Emacr;\":{\"codepoints\":[274],\"characters\":\"Ē\"},\"&EmptySmallSquare;\":{\"codepoints\":[9723],\"characters\":\"◻\"},\"&EmptyVerySmallSquare;\":{\"codepoints\":[9643],\"characters\":\"▫\"},\"&Eogon;\":{\"codepoints\":[280],\"characters\":\"Ę\"},\"&Eopf;\":{\"codepoints\":[120124],\"characters\":\"𝔼\"},\"&Epsilon;\":{\"codepoints\":[917],\"characters\":\"Ε\"},\"&Equal;\":{\"codepoints\":[10869],\"characters\":\"⩵\"},\"&EqualTilde;\":{\"codepoints\":[8770],\"characters\":\"≂\"},\"&Equilibrium;\":{\"codepoints\":[8652],\"characters\":\"⇌\"},\"&Escr;\":{\"codepoints\":[8496],\"characters\":\"ℰ\"},\"&Esim;\":{\"codepoints\":[10867],\"characters\":\"⩳\"},\"&Eta;\":{\"codepoints\":[919],\"characters\":\"Η\"},\"&Euml;\":{\"codepoints\":[203],\"characters\":\"Ë\"},\"&Euml\":{\"codepoints\":[203],\"characters\":\"Ë\"},\"&Exists;\":{\"codepoints\":[8707],\"characters\":\"∃\"},\"&ExponentialE;\":{\"codepoints\":[8519],\"characters\":\"ⅇ\"},\"&Fcy;\":{\"codepoints\":[1060],\"characters\":\"Ф\"},\"&Ffr;\":{\"codepoints\":[120073],\"characters\":\"𝔉\"},\"&FilledSmallSquare;\":{\"codepoints\":[9724],\"characters\":\"◼\"},\"&FilledVerySmallSquare;\":{\"codepoints\":[9642],\"characters\":\"▪\"},\"&Fopf;\":{\"codepoints\":[120125],\"characters\":\"𝔽\"},\"&ForAll;\":{\"codepoints\":[8704],\"characters\":\"∀\"},\"&Fouriertrf;\":{\"codepoints\":[8497],\"characters\":\"ℱ\"},\"&Fscr;\":{\"codepoints\":[8497],\"characters\":\"ℱ\"},\"&GJcy;\":{\"codepoints\":[1027],\"characters\":\"Ѓ\"},\"&GT;\":{\"codepoints\":[62],\"characters\":\">\"},\"&GT\":{\"codepoints\":[62],\"characters\":\">\"},\"&Gamma;\":{\"codepoints\":[915],\"characters\":\"Γ\"},\"&Gammad;\":{\"codepoints\":[988],\"characters\":\"Ϝ\"},\"&Gbreve;\":{\"codepoints\":[286],\"characters\":\"Ğ\"},\"&Gcedil;\":{\"codepoints\":[290],\"characters\":\"Ģ\"},\"&Gcirc;\":{\"codepoints\":[284],\"characters\":\"Ĝ\"},\"&Gcy;\":{\"codepoints\":[1043],\"characters\":\"Г\"},\"&Gdot;\":{\"codepoints\":[288],\"characters\":\"Ġ\"},\"&Gfr;\":{\"codepoints\":[120074],\"characters\":\"𝔊\"},\"&Gg;\":{\"codepoints\":[8921],\"characters\":\"⋙\"},\"&Gopf;\":{\"codepoints\":[120126],\"characters\":\"𝔾\"},\"&GreaterEqual;\":{\"codepoints\":[8805],\"characters\":\"≥\"},\"&GreaterEqualLess;\":{\"codepoints\":[8923],\"characters\":\"⋛\"},\"&GreaterFullEqual;\":{\"codepoints\":[8807],\"characters\":\"≧\"},\"&GreaterGreater;\":{\"codepoints\":[10914],\"characters\":\"⪢\"},\"&GreaterLess;\":{\"codepoints\":[8823],\"characters\":\"≷\"},\"&GreaterSlantEqual;\":{\"codepoints\":[10878],\"characters\":\"⩾\"},\"&GreaterTilde;\":{\"codepoints\":[8819],\"characters\":\"≳\"},\"&Gscr;\":{\"codepoints\":[119970],\"characters\":\"𝒢\"},\"&Gt;\":{\"codepoints\":[8811],\"characters\":\"≫\"},\"&HARDcy;\":{\"codepoints\":[1066],\"characters\":\"Ъ\"},\"&Hacek;\":{\"codepoints\":[711],\"characters\":\"ˇ\"},\"&Hat;\":{\"codepoints\":[94],\"characters\":\"^\"},\"&Hcirc;\":{\"codepoints\":[292],\"characters\":\"Ĥ\"},\"&Hfr;\":{\"codepoints\":[8460],\"characters\":\"ℌ\"},\"&HilbertSpace;\":{\"codepoints\":[8459],\"characters\":\"ℋ\"},\"&Hopf;\":{\"codepoints\":[8461],\"characters\":\"ℍ\"},\"&HorizontalLine;\":{\"codepoints\":[9472],\"characters\":\"─\"},\"&Hscr;\":{\"codepoints\":[8459],\"characters\":\"ℋ\"},\"&Hstrok;\":{\"codepoints\":[294],\"characters\":\"Ħ\"},\"&HumpDownHump;\":{\"codepoints\":[8782],\"characters\":\"≎\"},\"&HumpEqual;\":{\"codepoints\":[8783],\"characters\":\"≏\"},\"&IEcy;\":{\"codepoints\":[1045],\"characters\":\"Е\"},\"&IJlig;\":{\"codepoints\":[306],\"characters\":\"IJ\"},\"&IOcy;\":{\"codepoints\":[1025],\"characters\":\"Ё\"},\"&Iacute;\":{\"codepoints\":[205],\"characters\":\"Í\"},\"&Iacute\":{\"codepoints\":[205],\"characters\":\"Í\"},\"&Icirc;\":{\"codepoints\":[206],\"characters\":\"Î\"},\"&Icirc\":{\"codepoints\":[206],\"characters\":\"Î\"},\"&Icy;\":{\"codepoints\":[1048],\"characters\":\"И\"},\"&Idot;\":{\"codepoints\":[304],\"characters\":\"İ\"},\"&Ifr;\":{\"codepoints\":[8465],\"characters\":\"ℑ\"},\"&Igrave;\":{\"codepoints\":[204],\"characters\":\"Ì\"},\"&Igrave\":{\"codepoints\":[204],\"characters\":\"Ì\"},\"&Im;\":{\"codepoints\":[8465],\"characters\":\"ℑ\"},\"&Imacr;\":{\"codepoints\":[298],\"characters\":\"Ī\"},\"&ImaginaryI;\":{\"codepoints\":[8520],\"characters\":\"ⅈ\"},\"&Implies;\":{\"codepoints\":[8658],\"characters\":\"⇒\"},\"&Int;\":{\"codepoints\":[8748],\"characters\":\"∬\"},\"&Integral;\":{\"codepoints\":[8747],\"characters\":\"∫\"},\"&Intersection;\":{\"codepoints\":[8898],\"characters\":\"⋂\"},\"&InvisibleComma;\":{\"codepoints\":[8291],\"characters\":\"⁣\"},\"&InvisibleTimes;\":{\"codepoints\":[8290],\"characters\":\"⁢\"},\"&Iogon;\":{\"codepoints\":[302],\"characters\":\"Į\"},\"&Iopf;\":{\"codepoints\":[120128],\"characters\":\"𝕀\"},\"&Iota;\":{\"codepoints\":[921],\"characters\":\"Ι\"},\"&Iscr;\":{\"codepoints\":[8464],\"characters\":\"ℐ\"},\"&Itilde;\":{\"codepoints\":[296],\"characters\":\"Ĩ\"},\"&Iukcy;\":{\"codepoints\":[1030],\"characters\":\"І\"},\"&Iuml;\":{\"codepoints\":[207],\"characters\":\"Ï\"},\"&Iuml\":{\"codepoints\":[207],\"characters\":\"Ï\"},\"&Jcirc;\":{\"codepoints\":[308],\"characters\":\"Ĵ\"},\"&Jcy;\":{\"codepoints\":[1049],\"characters\":\"Й\"},\"&Jfr;\":{\"codepoints\":[120077],\"characters\":\"𝔍\"},\"&Jopf;\":{\"codepoints\":[120129],\"characters\":\"𝕁\"},\"&Jscr;\":{\"codepoints\":[119973],\"characters\":\"𝒥\"},\"&Jsercy;\":{\"codepoints\":[1032],\"characters\":\"Ј\"},\"&Jukcy;\":{\"codepoints\":[1028],\"characters\":\"Є\"},\"&KHcy;\":{\"codepoints\":[1061],\"characters\":\"Х\"},\"&KJcy;\":{\"codepoints\":[1036],\"characters\":\"Ќ\"},\"&Kappa;\":{\"codepoints\":[922],\"characters\":\"Κ\"},\"&Kcedil;\":{\"codepoints\":[310],\"characters\":\"Ķ\"},\"&Kcy;\":{\"codepoints\":[1050],\"characters\":\"К\"},\"&Kfr;\":{\"codepoints\":[120078],\"characters\":\"𝔎\"},\"&Kopf;\":{\"codepoints\":[120130],\"characters\":\"𝕂\"},\"&Kscr;\":{\"codepoints\":[119974],\"characters\":\"𝒦\"},\"&LJcy;\":{\"codepoints\":[1033],\"characters\":\"Љ\"},\"&LT;\":{\"codepoints\":[60],\"characters\":\"<\"},\"&LT\":{\"codepoints\":[60],\"characters\":\"<\"},\"&Lacute;\":{\"codepoints\":[313],\"characters\":\"Ĺ\"},\"&Lambda;\":{\"codepoints\":[923],\"characters\":\"Λ\"},\"&Lang;\":{\"codepoints\":[10218],\"characters\":\"⟪\"},\"&Laplacetrf;\":{\"codepoints\":[8466],\"characters\":\"ℒ\"},\"&Larr;\":{\"codepoints\":[8606],\"characters\":\"↞\"},\"&Lcaron;\":{\"codepoints\":[317],\"characters\":\"Ľ\"},\"&Lcedil;\":{\"codepoints\":[315],\"characters\":\"Ļ\"},\"&Lcy;\":{\"codepoints\":[1051],\"characters\":\"Л\"},\"&LeftAngleBracket;\":{\"codepoints\":[10216],\"characters\":\"⟨\"},\"&LeftArrow;\":{\"codepoints\":[8592],\"characters\":\"←\"},\"&LeftArrowBar;\":{\"codepoints\":[8676],\"characters\":\"⇤\"},\"&LeftArrowRightArrow;\":{\"codepoints\":[8646],\"characters\":\"⇆\"},\"&LeftCeiling;\":{\"codepoints\":[8968],\"characters\":\"⌈\"},\"&LeftDoubleBracket;\":{\"codepoints\":[10214],\"characters\":\"⟦\"},\"&LeftDownTeeVector;\":{\"codepoints\":[10593],\"characters\":\"⥡\"},\"&LeftDownVector;\":{\"codepoints\":[8643],\"characters\":\"⇃\"},\"&LeftDownVectorBar;\":{\"codepoints\":[10585],\"characters\":\"⥙\"},\"&LeftFloor;\":{\"codepoints\":[8970],\"characters\":\"⌊\"},\"&LeftRightArrow;\":{\"codepoints\":[8596],\"characters\":\"↔\"},\"&LeftRightVector;\":{\"codepoints\":[10574],\"characters\":\"⥎\"},\"&LeftTee;\":{\"codepoints\":[8867],\"characters\":\"⊣\"},\"&LeftTeeArrow;\":{\"codepoints\":[8612],\"characters\":\"↤\"},\"&LeftTeeVector;\":{\"codepoints\":[10586],\"characters\":\"⥚\"},\"&LeftTriangle;\":{\"codepoints\":[8882],\"characters\":\"⊲\"},\"&LeftTriangleBar;\":{\"codepoints\":[10703],\"characters\":\"⧏\"},\"&LeftTriangleEqual;\":{\"codepoints\":[8884],\"characters\":\"⊴\"},\"&LeftUpDownVector;\":{\"codepoints\":[10577],\"characters\":\"⥑\"},\"&LeftUpTeeVector;\":{\"codepoints\":[10592],\"characters\":\"⥠\"},\"&LeftUpVector;\":{\"codepoints\":[8639],\"characters\":\"↿\"},\"&LeftUpVectorBar;\":{\"codepoints\":[10584],\"characters\":\"⥘\"},\"&LeftVector;\":{\"codepoints\":[8636],\"characters\":\"↼\"},\"&LeftVectorBar;\":{\"codepoints\":[10578],\"characters\":\"⥒\"},\"&Leftarrow;\":{\"codepoints\":[8656],\"characters\":\"⇐\"},\"&Leftrightarrow;\":{\"codepoints\":[8660],\"characters\":\"⇔\"},\"&LessEqualGreater;\":{\"codepoints\":[8922],\"characters\":\"⋚\"},\"&LessFullEqual;\":{\"codepoints\":[8806],\"characters\":\"≦\"},\"&LessGreater;\":{\"codepoints\":[8822],\"characters\":\"≶\"},\"&LessLess;\":{\"codepoints\":[10913],\"characters\":\"⪡\"},\"&LessSlantEqual;\":{\"codepoints\":[10877],\"characters\":\"⩽\"},\"&LessTilde;\":{\"codepoints\":[8818],\"characters\":\"≲\"},\"&Lfr;\":{\"codepoints\":[120079],\"characters\":\"𝔏\"},\"&Ll;\":{\"codepoints\":[8920],\"characters\":\"⋘\"},\"&Lleftarrow;\":{\"codepoints\":[8666],\"characters\":\"⇚\"},\"&Lmidot;\":{\"codepoints\":[319],\"characters\":\"Ŀ\"},\"&LongLeftArrow;\":{\"codepoints\":[10229],\"characters\":\"⟵\"},\"&LongLeftRightArrow;\":{\"codepoints\":[10231],\"characters\":\"⟷\"},\"&LongRightArrow;\":{\"codepoints\":[10230],\"characters\":\"⟶\"},\"&Longleftarrow;\":{\"codepoints\":[10232],\"characters\":\"⟸\"},\"&Longleftrightarrow;\":{\"codepoints\":[10234],\"characters\":\"⟺\"},\"&Longrightarrow;\":{\"codepoints\":[10233],\"characters\":\"⟹\"},\"&Lopf;\":{\"codepoints\":[120131],\"characters\":\"𝕃\"},\"&LowerLeftArrow;\":{\"codepoints\":[8601],\"characters\":\"↙\"},\"&LowerRightArrow;\":{\"codepoints\":[8600],\"characters\":\"↘\"},\"&Lscr;\":{\"codepoints\":[8466],\"characters\":\"ℒ\"},\"&Lsh;\":{\"codepoints\":[8624],\"characters\":\"↰\"},\"&Lstrok;\":{\"codepoints\":[321],\"characters\":\"Ł\"},\"&Lt;\":{\"codepoints\":[8810],\"characters\":\"≪\"},\"&Map;\":{\"codepoints\":[10501],\"characters\":\"⤅\"},\"&Mcy;\":{\"codepoints\":[1052],\"characters\":\"М\"},\"&MediumSpace;\":{\"codepoints\":[8287],\"characters\":\" \"},\"&Mellintrf;\":{\"codepoints\":[8499],\"characters\":\"ℳ\"},\"&Mfr;\":{\"codepoints\":[120080],\"characters\":\"𝔐\"},\"&MinusPlus;\":{\"codepoints\":[8723],\"characters\":\"∓\"},\"&Mopf;\":{\"codepoints\":[120132],\"characters\":\"𝕄\"},\"&Mscr;\":{\"codepoints\":[8499],\"characters\":\"ℳ\"},\"&Mu;\":{\"codepoints\":[924],\"characters\":\"Μ\"},\"&NJcy;\":{\"codepoints\":[1034],\"characters\":\"Њ\"},\"&Nacute;\":{\"codepoints\":[323],\"characters\":\"Ń\"},\"&Ncaron;\":{\"codepoints\":[327],\"characters\":\"Ň\"},\"&Ncedil;\":{\"codepoints\":[325],\"characters\":\"Ņ\"},\"&Ncy;\":{\"codepoints\":[1053],\"characters\":\"Н\"},\"&NegativeMediumSpace;\":{\"codepoints\":[8203],\"characters\":\"​\"},\"&NegativeThickSpace;\":{\"codepoints\":[8203],\"characters\":\"​\"},\"&NegativeThinSpace;\":{\"codepoints\":[8203],\"characters\":\"​\"},\"&NegativeVeryThinSpace;\":{\"codepoints\":[8203],\"characters\":\"​\"},\"&NestedGreaterGreater;\":{\"codepoints\":[8811],\"characters\":\"≫\"},\"&NestedLessLess;\":{\"codepoints\":[8810],\"characters\":\"≪\"},\"&NewLine;\":{\"codepoints\":[10],\"characters\":\"\\n\"},\"&Nfr;\":{\"codepoints\":[120081],\"characters\":\"𝔑\"},\"&NoBreak;\":{\"codepoints\":[8288],\"characters\":\"⁠\"},\"&NonBreakingSpace;\":{\"codepoints\":[160],\"characters\":\" \"},\"&Nopf;\":{\"codepoints\":[8469],\"characters\":\"ℕ\"},\"&Not;\":{\"codepoints\":[10988],\"characters\":\"⫬\"},\"&NotCongruent;\":{\"codepoints\":[8802],\"characters\":\"≢\"},\"&NotCupCap;\":{\"codepoints\":[8813],\"characters\":\"≭\"},\"&NotDoubleVerticalBar;\":{\"codepoints\":[8742],\"characters\":\"∦\"},\"&NotElement;\":{\"codepoints\":[8713],\"characters\":\"∉\"},\"&NotEqual;\":{\"codepoints\":[8800],\"characters\":\"≠\"},\"&NotEqualTilde;\":{\"codepoints\":[8770,824],\"characters\":\"≂̸\"},\"&NotExists;\":{\"codepoints\":[8708],\"characters\":\"∄\"},\"&NotGreater;\":{\"codepoints\":[8815],\"characters\":\"≯\"},\"&NotGreaterEqual;\":{\"codepoints\":[8817],\"characters\":\"≱\"},\"&NotGreaterFullEqual;\":{\"codepoints\":[8807,824],\"characters\":\"≧̸\"},\"&NotGreaterGreater;\":{\"codepoints\":[8811,824],\"characters\":\"≫̸\"},\"&NotGreaterLess;\":{\"codepoints\":[8825],\"characters\":\"≹\"},\"&NotGreaterSlantEqual;\":{\"codepoints\":[10878,824],\"characters\":\"⩾̸\"},\"&NotGreaterTilde;\":{\"codepoints\":[8821],\"characters\":\"≵\"},\"&NotHumpDownHump;\":{\"codepoints\":[8782,824],\"characters\":\"≎̸\"},\"&NotHumpEqual;\":{\"codepoints\":[8783,824],\"characters\":\"≏̸\"},\"&NotLeftTriangle;\":{\"codepoints\":[8938],\"characters\":\"⋪\"},\"&NotLeftTriangleBar;\":{\"codepoints\":[10703,824],\"characters\":\"⧏̸\"},\"&NotLeftTriangleEqual;\":{\"codepoints\":[8940],\"characters\":\"⋬\"},\"&NotLess;\":{\"codepoints\":[8814],\"characters\":\"≮\"},\"&NotLessEqual;\":{\"codepoints\":[8816],\"characters\":\"≰\"},\"&NotLessGreater;\":{\"codepoints\":[8824],\"characters\":\"≸\"},\"&NotLessLess;\":{\"codepoints\":[8810,824],\"characters\":\"≪̸\"},\"&NotLessSlantEqual;\":{\"codepoints\":[10877,824],\"characters\":\"⩽̸\"},\"&NotLessTilde;\":{\"codepoints\":[8820],\"characters\":\"≴\"},\"&NotNestedGreaterGreater;\":{\"codepoints\":[10914,824],\"characters\":\"⪢̸\"},\"&NotNestedLessLess;\":{\"codepoints\":[10913,824],\"characters\":\"⪡̸\"},\"&NotPrecedes;\":{\"codepoints\":[8832],\"characters\":\"⊀\"},\"&NotPrecedesEqual;\":{\"codepoints\":[10927,824],\"characters\":\"⪯̸\"},\"&NotPrecedesSlantEqual;\":{\"codepoints\":[8928],\"characters\":\"⋠\"},\"&NotReverseElement;\":{\"codepoints\":[8716],\"characters\":\"∌\"},\"&NotRightTriangle;\":{\"codepoints\":[8939],\"characters\":\"⋫\"},\"&NotRightTriangleBar;\":{\"codepoints\":[10704,824],\"characters\":\"⧐̸\"},\"&NotRightTriangleEqual;\":{\"codepoints\":[8941],\"characters\":\"⋭\"},\"&NotSquareSubset;\":{\"codepoints\":[8847,824],\"characters\":\"⊏̸\"},\"&NotSquareSubsetEqual;\":{\"codepoints\":[8930],\"characters\":\"⋢\"},\"&NotSquareSuperset;\":{\"codepoints\":[8848,824],\"characters\":\"⊐̸\"},\"&NotSquareSupersetEqual;\":{\"codepoints\":[8931],\"characters\":\"⋣\"},\"&NotSubset;\":{\"codepoints\":[8834,8402],\"characters\":\"⊂⃒\"},\"&NotSubsetEqual;\":{\"codepoints\":[8840],\"characters\":\"⊈\"},\"&NotSucceeds;\":{\"codepoints\":[8833],\"characters\":\"⊁\"},\"&NotSucceedsEqual;\":{\"codepoints\":[10928,824],\"characters\":\"⪰̸\"},\"&NotSucceedsSlantEqual;\":{\"codepoints\":[8929],\"characters\":\"⋡\"},\"&NotSucceedsTilde;\":{\"codepoints\":[8831,824],\"characters\":\"≿̸\"},\"&NotSuperset;\":{\"codepoints\":[8835,8402],\"characters\":\"⊃⃒\"},\"&NotSupersetEqual;\":{\"codepoints\":[8841],\"characters\":\"⊉\"},\"&NotTilde;\":{\"codepoints\":[8769],\"characters\":\"≁\"},\"&NotTildeEqual;\":{\"codepoints\":[8772],\"characters\":\"≄\"},\"&NotTildeFullEqual;\":{\"codepoints\":[8775],\"characters\":\"≇\"},\"&NotTildeTilde;\":{\"codepoints\":[8777],\"characters\":\"≉\"},\"&NotVerticalBar;\":{\"codepoints\":[8740],\"characters\":\"∤\"},\"&Nscr;\":{\"codepoints\":[119977],\"characters\":\"𝒩\"},\"&Ntilde;\":{\"codepoints\":[209],\"characters\":\"Ñ\"},\"&Ntilde\":{\"codepoints\":[209],\"characters\":\"Ñ\"},\"&Nu;\":{\"codepoints\":[925],\"characters\":\"Ν\"},\"&OElig;\":{\"codepoints\":[338],\"characters\":\"Œ\"},\"&Oacute;\":{\"codepoints\":[211],\"characters\":\"Ó\"},\"&Oacute\":{\"codepoints\":[211],\"characters\":\"Ó\"},\"&Ocirc;\":{\"codepoints\":[212],\"characters\":\"Ô\"},\"&Ocirc\":{\"codepoints\":[212],\"characters\":\"Ô\"},\"&Ocy;\":{\"codepoints\":[1054],\"characters\":\"О\"},\"&Odblac;\":{\"codepoints\":[336],\"characters\":\"Ő\"},\"&Ofr;\":{\"codepoints\":[120082],\"characters\":\"𝔒\"},\"&Ograve;\":{\"codepoints\":[210],\"characters\":\"Ò\"},\"&Ograve\":{\"codepoints\":[210],\"characters\":\"Ò\"},\"&Omacr;\":{\"codepoints\":[332],\"characters\":\"Ō\"},\"&Omega;\":{\"codepoints\":[937],\"characters\":\"Ω\"},\"&Omicron;\":{\"codepoints\":[927],\"characters\":\"Ο\"},\"&Oopf;\":{\"codepoints\":[120134],\"characters\":\"𝕆\"},\"&OpenCurlyDoubleQuote;\":{\"codepoints\":[8220],\"characters\":\"“\"},\"&OpenCurlyQuote;\":{\"codepoints\":[8216],\"characters\":\"‘\"},\"&Or;\":{\"codepoints\":[10836],\"characters\":\"⩔\"},\"&Oscr;\":{\"codepoints\":[119978],\"characters\":\"𝒪\"},\"&Oslash;\":{\"codepoints\":[216],\"characters\":\"Ø\"},\"&Oslash\":{\"codepoints\":[216],\"characters\":\"Ø\"},\"&Otilde;\":{\"codepoints\":[213],\"characters\":\"Õ\"},\"&Otilde\":{\"codepoints\":[213],\"characters\":\"Õ\"},\"&Otimes;\":{\"codepoints\":[10807],\"characters\":\"⨷\"},\"&Ouml;\":{\"codepoints\":[214],\"characters\":\"Ö\"},\"&Ouml\":{\"codepoints\":[214],\"characters\":\"Ö\"},\"&OverBar;\":{\"codepoints\":[8254],\"characters\":\"‾\"},\"&OverBrace;\":{\"codepoints\":[9182],\"characters\":\"⏞\"},\"&OverBracket;\":{\"codepoints\":[9140],\"characters\":\"⎴\"},\"&OverParenthesis;\":{\"codepoints\":[9180],\"characters\":\"⏜\"},\"&PartialD;\":{\"codepoints\":[8706],\"characters\":\"∂\"},\"&Pcy;\":{\"codepoints\":[1055],\"characters\":\"П\"},\"&Pfr;\":{\"codepoints\":[120083],\"characters\":\"𝔓\"},\"&Phi;\":{\"codepoints\":[934],\"characters\":\"Φ\"},\"&Pi;\":{\"codepoints\":[928],\"characters\":\"Π\"},\"&PlusMinus;\":{\"codepoints\":[177],\"characters\":\"±\"},\"&Poincareplane;\":{\"codepoints\":[8460],\"characters\":\"ℌ\"},\"&Popf;\":{\"codepoints\":[8473],\"characters\":\"ℙ\"},\"&Pr;\":{\"codepoints\":[10939],\"characters\":\"⪻\"},\"&Precedes;\":{\"codepoints\":[8826],\"characters\":\"≺\"},\"&PrecedesEqual;\":{\"codepoints\":[10927],\"characters\":\"⪯\"},\"&PrecedesSlantEqual;\":{\"codepoints\":[8828],\"characters\":\"≼\"},\"&PrecedesTilde;\":{\"codepoints\":[8830],\"characters\":\"≾\"},\"&Prime;\":{\"codepoints\":[8243],\"characters\":\"″\"},\"&Product;\":{\"codepoints\":[8719],\"characters\":\"∏\"},\"&Proportion;\":{\"codepoints\":[8759],\"characters\":\"∷\"},\"&Proportional;\":{\"codepoints\":[8733],\"characters\":\"∝\"},\"&Pscr;\":{\"codepoints\":[119979],\"characters\":\"𝒫\"},\"&Psi;\":{\"codepoints\":[936],\"characters\":\"Ψ\"},\"&QUOT;\":{\"codepoints\":[34],\"characters\":\"\\\"\"},\"&QUOT\":{\"codepoints\":[34],\"characters\":\"\\\"\"},\"&Qfr;\":{\"codepoints\":[120084],\"characters\":\"𝔔\"},\"&Qopf;\":{\"codepoints\":[8474],\"characters\":\"ℚ\"},\"&Qscr;\":{\"codepoints\":[119980],\"characters\":\"𝒬\"},\"&RBarr;\":{\"codepoints\":[10512],\"characters\":\"⤐\"},\"&REG;\":{\"codepoints\":[174],\"characters\":\"®\"},\"&REG\":{\"codepoints\":[174],\"characters\":\"®\"},\"&Racute;\":{\"codepoints\":[340],\"characters\":\"Ŕ\"},\"&Rang;\":{\"codepoints\":[10219],\"characters\":\"⟫\"},\"&Rarr;\":{\"codepoints\":[8608],\"characters\":\"↠\"},\"&Rarrtl;\":{\"codepoints\":[10518],\"characters\":\"⤖\"},\"&Rcaron;\":{\"codepoints\":[344],\"characters\":\"Ř\"},\"&Rcedil;\":{\"codepoints\":[342],\"characters\":\"Ŗ\"},\"&Rcy;\":{\"codepoints\":[1056],\"characters\":\"Р\"},\"&Re;\":{\"codepoints\":[8476],\"characters\":\"ℜ\"},\"&ReverseElement;\":{\"codepoints\":[8715],\"characters\":\"∋\"},\"&ReverseEquilibrium;\":{\"codepoints\":[8651],\"characters\":\"⇋\"},\"&ReverseUpEquilibrium;\":{\"codepoints\":[10607],\"characters\":\"⥯\"},\"&Rfr;\":{\"codepoints\":[8476],\"characters\":\"ℜ\"},\"&Rho;\":{\"codepoints\":[929],\"characters\":\"Ρ\"},\"&RightAngleBracket;\":{\"codepoints\":[10217],\"characters\":\"⟩\"},\"&RightArrow;\":{\"codepoints\":[8594],\"characters\":\"→\"},\"&RightArrowBar;\":{\"codepoints\":[8677],\"characters\":\"⇥\"},\"&RightArrowLeftArrow;\":{\"codepoints\":[8644],\"characters\":\"⇄\"},\"&RightCeiling;\":{\"codepoints\":[8969],\"characters\":\"⌉\"},\"&RightDoubleBracket;\":{\"codepoints\":[10215],\"characters\":\"⟧\"},\"&RightDownTeeVector;\":{\"codepoints\":[10589],\"characters\":\"⥝\"},\"&RightDownVector;\":{\"codepoints\":[8642],\"characters\":\"⇂\"},\"&RightDownVectorBar;\":{\"codepoints\":[10581],\"characters\":\"⥕\"},\"&RightFloor;\":{\"codepoints\":[8971],\"characters\":\"⌋\"},\"&RightTee;\":{\"codepoints\":[8866],\"characters\":\"⊢\"},\"&RightTeeArrow;\":{\"codepoints\":[8614],\"characters\":\"↦\"},\"&RightTeeVector;\":{\"codepoints\":[10587],\"characters\":\"⥛\"},\"&RightTriangle;\":{\"codepoints\":[8883],\"characters\":\"⊳\"},\"&RightTriangleBar;\":{\"codepoints\":[10704],\"characters\":\"⧐\"},\"&RightTriangleEqual;\":{\"codepoints\":[8885],\"characters\":\"⊵\"},\"&RightUpDownVector;\":{\"codepoints\":[10575],\"characters\":\"⥏\"},\"&RightUpTeeVector;\":{\"codepoints\":[10588],\"characters\":\"⥜\"},\"&RightUpVector;\":{\"codepoints\":[8638],\"characters\":\"↾\"},\"&RightUpVectorBar;\":{\"codepoints\":[10580],\"characters\":\"⥔\"},\"&RightVector;\":{\"codepoints\":[8640],\"characters\":\"⇀\"},\"&RightVectorBar;\":{\"codepoints\":[10579],\"characters\":\"⥓\"},\"&Rightarrow;\":{\"codepoints\":[8658],\"characters\":\"⇒\"},\"&Ropf;\":{\"codepoints\":[8477],\"characters\":\"ℝ\"},\"&RoundImplies;\":{\"codepoints\":[10608],\"characters\":\"⥰\"},\"&Rrightarrow;\":{\"codepoints\":[8667],\"characters\":\"⇛\"},\"&Rscr;\":{\"codepoints\":[8475],\"characters\":\"ℛ\"},\"&Rsh;\":{\"codepoints\":[8625],\"characters\":\"↱\"},\"&RuleDelayed;\":{\"codepoints\":[10740],\"characters\":\"⧴\"},\"&SHCHcy;\":{\"codepoints\":[1065],\"characters\":\"Щ\"},\"&SHcy;\":{\"codepoints\":[1064],\"characters\":\"Ш\"},\"&SOFTcy;\":{\"codepoints\":[1068],\"characters\":\"Ь\"},\"&Sacute;\":{\"codepoints\":[346],\"characters\":\"Ś\"},\"&Sc;\":{\"codepoints\":[10940],\"characters\":\"⪼\"},\"&Scaron;\":{\"codepoints\":[352],\"characters\":\"Š\"},\"&Scedil;\":{\"codepoints\":[350],\"characters\":\"Ş\"},\"&Scirc;\":{\"codepoints\":[348],\"characters\":\"Ŝ\"},\"&Scy;\":{\"codepoints\":[1057],\"characters\":\"С\"},\"&Sfr;\":{\"codepoints\":[120086],\"characters\":\"𝔖\"},\"&ShortDownArrow;\":{\"codepoints\":[8595],\"characters\":\"↓\"},\"&ShortLeftArrow;\":{\"codepoints\":[8592],\"characters\":\"←\"},\"&ShortRightArrow;\":{\"codepoints\":[8594],\"characters\":\"→\"},\"&ShortUpArrow;\":{\"codepoints\":[8593],\"characters\":\"↑\"},\"&Sigma;\":{\"codepoints\":[931],\"characters\":\"Σ\"},\"&SmallCircle;\":{\"codepoints\":[8728],\"characters\":\"∘\"},\"&Sopf;\":{\"codepoints\":[120138],\"characters\":\"𝕊\"},\"&Sqrt;\":{\"codepoints\":[8730],\"characters\":\"√\"},\"&Square;\":{\"codepoints\":[9633],\"characters\":\"□\"},\"&SquareIntersection;\":{\"codepoints\":[8851],\"characters\":\"⊓\"},\"&SquareSubset;\":{\"codepoints\":[8847],\"characters\":\"⊏\"},\"&SquareSubsetEqual;\":{\"codepoints\":[8849],\"characters\":\"⊑\"},\"&SquareSuperset;\":{\"codepoints\":[8848],\"characters\":\"⊐\"},\"&SquareSupersetEqual;\":{\"codepoints\":[8850],\"characters\":\"⊒\"},\"&SquareUnion;\":{\"codepoints\":[8852],\"characters\":\"⊔\"},\"&Sscr;\":{\"codepoints\":[119982],\"characters\":\"𝒮\"},\"&Star;\":{\"codepoints\":[8902],\"characters\":\"⋆\"},\"&Sub;\":{\"codepoints\":[8912],\"characters\":\"⋐\"},\"&Subset;\":{\"codepoints\":[8912],\"characters\":\"⋐\"},\"&SubsetEqual;\":{\"codepoints\":[8838],\"characters\":\"⊆\"},\"&Succeeds;\":{\"codepoints\":[8827],\"characters\":\"≻\"},\"&SucceedsEqual;\":{\"codepoints\":[10928],\"characters\":\"⪰\"},\"&SucceedsSlantEqual;\":{\"codepoints\":[8829],\"characters\":\"≽\"},\"&SucceedsTilde;\":{\"codepoints\":[8831],\"characters\":\"≿\"},\"&SuchThat;\":{\"codepoints\":[8715],\"characters\":\"∋\"},\"&Sum;\":{\"codepoints\":[8721],\"characters\":\"∑\"},\"&Sup;\":{\"codepoints\":[8913],\"characters\":\"⋑\"},\"&Superset;\":{\"codepoints\":[8835],\"characters\":\"⊃\"},\"&SupersetEqual;\":{\"codepoints\":[8839],\"characters\":\"⊇\"},\"&Supset;\":{\"codepoints\":[8913],\"characters\":\"⋑\"},\"&THORN\":{\"codepoints\":[222],\"characters\":\"Þ\"},\"&THORN;\":{\"codepoints\":[222],\"characters\":\"Þ\"},\"&TRADE;\":{\"codepoints\":[8482],\"characters\":\"™\"},\"&TSHcy;\":{\"codepoints\":[1035],\"characters\":\"Ћ\"},\"&TScy;\":{\"codepoints\":[1062],\"characters\":\"Ц\"},\"&Tab;\":{\"codepoints\":[9],\"characters\":\"\\t\"},\"&Tau;\":{\"codepoints\":[932],\"characters\":\"Τ\"},\"&Tcaron;\":{\"codepoints\":[356],\"characters\":\"Ť\"},\"&Tcedil;\":{\"codepoints\":[354],\"characters\":\"Ţ\"},\"&Tcy;\":{\"codepoints\":[1058],\"characters\":\"Т\"},\"&Tfr;\":{\"codepoints\":[120087],\"characters\":\"𝔗\"},\"&Therefore;\":{\"codepoints\":[8756],\"characters\":\"∴\"},\"&Theta;\":{\"codepoints\":[920],\"characters\":\"Θ\"},\"&ThickSpace;\":{\"codepoints\":[8287,8202],\"characters\":\"  \"},\"&ThinSpace;\":{\"codepoints\":[8201],\"characters\":\" \"},\"&Tilde;\":{\"codepoints\":[8764],\"characters\":\"∼\"},\"&TildeEqual;\":{\"codepoints\":[8771],\"characters\":\"≃\"},\"&TildeFullEqual;\":{\"codepoints\":[8773],\"characters\":\"≅\"},\"&TildeTilde;\":{\"codepoints\":[8776],\"characters\":\"≈\"},\"&Topf;\":{\"codepoints\":[120139],\"characters\":\"𝕋\"},\"&TripleDot;\":{\"codepoints\":[8411],\"characters\":\"⃛\"},\"&Tscr;\":{\"codepoints\":[119983],\"characters\":\"𝒯\"},\"&Tstrok;\":{\"codepoints\":[358],\"characters\":\"Ŧ\"},\"&Uacute;\":{\"codepoints\":[218],\"characters\":\"Ú\"},\"&Uacute\":{\"codepoints\":[218],\"characters\":\"Ú\"},\"&Uarr;\":{\"codepoints\":[8607],\"characters\":\"↟\"},\"&Uarrocir;\":{\"codepoints\":[10569],\"characters\":\"⥉\"},\"&Ubrcy;\":{\"codepoints\":[1038],\"characters\":\"Ў\"},\"&Ubreve;\":{\"codepoints\":[364],\"characters\":\"Ŭ\"},\"&Ucirc;\":{\"codepoints\":[219],\"characters\":\"Û\"},\"&Ucirc\":{\"codepoints\":[219],\"characters\":\"Û\"},\"&Ucy;\":{\"codepoints\":[1059],\"characters\":\"У\"},\"&Udblac;\":{\"codepoints\":[368],\"characters\":\"Ű\"},\"&Ufr;\":{\"codepoints\":[120088],\"characters\":\"𝔘\"},\"&Ugrave;\":{\"codepoints\":[217],\"characters\":\"Ù\"},\"&Ugrave\":{\"codepoints\":[217],\"characters\":\"Ù\"},\"&Umacr;\":{\"codepoints\":[362],\"characters\":\"Ū\"},\"&UnderBar;\":{\"codepoints\":[95],\"characters\":\"_\"},\"&UnderBrace;\":{\"codepoints\":[9183],\"characters\":\"⏟\"},\"&UnderBracket;\":{\"codepoints\":[9141],\"characters\":\"⎵\"},\"&UnderParenthesis;\":{\"codepoints\":[9181],\"characters\":\"⏝\"},\"&Union;\":{\"codepoints\":[8899],\"characters\":\"⋃\"},\"&UnionPlus;\":{\"codepoints\":[8846],\"characters\":\"⊎\"},\"&Uogon;\":{\"codepoints\":[370],\"characters\":\"Ų\"},\"&Uopf;\":{\"codepoints\":[120140],\"characters\":\"𝕌\"},\"&UpArrow;\":{\"codepoints\":[8593],\"characters\":\"↑\"},\"&UpArrowBar;\":{\"codepoints\":[10514],\"characters\":\"⤒\"},\"&UpArrowDownArrow;\":{\"codepoints\":[8645],\"characters\":\"⇅\"},\"&UpDownArrow;\":{\"codepoints\":[8597],\"characters\":\"↕\"},\"&UpEquilibrium;\":{\"codepoints\":[10606],\"characters\":\"⥮\"},\"&UpTee;\":{\"codepoints\":[8869],\"characters\":\"⊥\"},\"&UpTeeArrow;\":{\"codepoints\":[8613],\"characters\":\"↥\"},\"&Uparrow;\":{\"codepoints\":[8657],\"characters\":\"⇑\"},\"&Updownarrow;\":{\"codepoints\":[8661],\"characters\":\"⇕\"},\"&UpperLeftArrow;\":{\"codepoints\":[8598],\"characters\":\"↖\"},\"&UpperRightArrow;\":{\"codepoints\":[8599],\"characters\":\"↗\"},\"&Upsi;\":{\"codepoints\":[978],\"characters\":\"ϒ\"},\"&Upsilon;\":{\"codepoints\":[933],\"characters\":\"Υ\"},\"&Uring;\":{\"codepoints\":[366],\"characters\":\"Ů\"},\"&Uscr;\":{\"codepoints\":[119984],\"characters\":\"𝒰\"},\"&Utilde;\":{\"codepoints\":[360],\"characters\":\"Ũ\"},\"&Uuml;\":{\"codepoints\":[220],\"characters\":\"Ü\"},\"&Uuml\":{\"codepoints\":[220],\"characters\":\"Ü\"},\"&VDash;\":{\"codepoints\":[8875],\"characters\":\"⊫\"},\"&Vbar;\":{\"codepoints\":[10987],\"characters\":\"⫫\"},\"&Vcy;\":{\"codepoints\":[1042],\"characters\":\"В\"},\"&Vdash;\":{\"codepoints\":[8873],\"characters\":\"⊩\"},\"&Vdashl;\":{\"codepoints\":[10982],\"characters\":\"⫦\"},\"&Vee;\":{\"codepoints\":[8897],\"characters\":\"⋁\"},\"&Verbar;\":{\"codepoints\":[8214],\"characters\":\"‖\"},\"&Vert;\":{\"codepoints\":[8214],\"characters\":\"‖\"},\"&VerticalBar;\":{\"codepoints\":[8739],\"characters\":\"∣\"},\"&VerticalLine;\":{\"codepoints\":[124],\"characters\":\"|\"},\"&VerticalSeparator;\":{\"codepoints\":[10072],\"characters\":\"❘\"},\"&VerticalTilde;\":{\"codepoints\":[8768],\"characters\":\"≀\"},\"&VeryThinSpace;\":{\"codepoints\":[8202],\"characters\":\" \"},\"&Vfr;\":{\"codepoints\":[120089],\"characters\":\"𝔙\"},\"&Vopf;\":{\"codepoints\":[120141],\"characters\":\"𝕍\"},\"&Vscr;\":{\"codepoints\":[119985],\"characters\":\"𝒱\"},\"&Vvdash;\":{\"codepoints\":[8874],\"characters\":\"⊪\"},\"&Wcirc;\":{\"codepoints\":[372],\"characters\":\"Ŵ\"},\"&Wedge;\":{\"codepoints\":[8896],\"characters\":\"⋀\"},\"&Wfr;\":{\"codepoints\":[120090],\"characters\":\"𝔚\"},\"&Wopf;\":{\"codepoints\":[120142],\"characters\":\"𝕎\"},\"&Wscr;\":{\"codepoints\":[119986],\"characters\":\"𝒲\"},\"&Xfr;\":{\"codepoints\":[120091],\"characters\":\"𝔛\"},\"&Xi;\":{\"codepoints\":[926],\"characters\":\"Ξ\"},\"&Xopf;\":{\"codepoints\":[120143],\"characters\":\"𝕏\"},\"&Xscr;\":{\"codepoints\":[119987],\"characters\":\"𝒳\"},\"&YAcy;\":{\"codepoints\":[1071],\"characters\":\"Я\"},\"&YIcy;\":{\"codepoints\":[1031],\"characters\":\"Ї\"},\"&YUcy;\":{\"codepoints\":[1070],\"characters\":\"Ю\"},\"&Yacute;\":{\"codepoints\":[221],\"characters\":\"Ý\"},\"&Yacute\":{\"codepoints\":[221],\"characters\":\"Ý\"},\"&Ycirc;\":{\"codepoints\":[374],\"characters\":\"Ŷ\"},\"&Ycy;\":{\"codepoints\":[1067],\"characters\":\"Ы\"},\"&Yfr;\":{\"codepoints\":[120092],\"characters\":\"𝔜\"},\"&Yopf;\":{\"codepoints\":[120144],\"characters\":\"𝕐\"},\"&Yscr;\":{\"codepoints\":[119988],\"characters\":\"𝒴\"},\"&Yuml;\":{\"codepoints\":[376],\"characters\":\"Ÿ\"},\"&ZHcy;\":{\"codepoints\":[1046],\"characters\":\"Ж\"},\"&Zacute;\":{\"codepoints\":[377],\"characters\":\"Ź\"},\"&Zcaron;\":{\"codepoints\":[381],\"characters\":\"Ž\"},\"&Zcy;\":{\"codepoints\":[1047],\"characters\":\"З\"},\"&Zdot;\":{\"codepoints\":[379],\"characters\":\"Ż\"},\"&ZeroWidthSpace;\":{\"codepoints\":[8203],\"characters\":\"​\"},\"&Zeta;\":{\"codepoints\":[918],\"characters\":\"Ζ\"},\"&Zfr;\":{\"codepoints\":[8488],\"characters\":\"ℨ\"},\"&Zopf;\":{\"codepoints\":[8484],\"characters\":\"ℤ\"},\"&Zscr;\":{\"codepoints\":[119989],\"characters\":\"𝒵\"},\"&aacute;\":{\"codepoints\":[225],\"characters\":\"á\"},\"&aacute\":{\"codepoints\":[225],\"characters\":\"á\"},\"&abreve;\":{\"codepoints\":[259],\"characters\":\"ă\"},\"&ac;\":{\"codepoints\":[8766],\"characters\":\"∾\"},\"&acE;\":{\"codepoints\":[8766,819],\"characters\":\"∾̳\"},\"&acd;\":{\"codepoints\":[8767],\"characters\":\"∿\"},\"&acirc;\":{\"codepoints\":[226],\"characters\":\"â\"},\"&acirc\":{\"codepoints\":[226],\"characters\":\"â\"},\"&acute;\":{\"codepoints\":[180],\"characters\":\"´\"},\"&acute\":{\"codepoints\":[180],\"characters\":\"´\"},\"&acy;\":{\"codepoints\":[1072],\"characters\":\"а\"},\"&aelig;\":{\"codepoints\":[230],\"characters\":\"æ\"},\"&aelig\":{\"codepoints\":[230],\"characters\":\"æ\"},\"&af;\":{\"codepoints\":[8289],\"characters\":\"⁡\"},\"&afr;\":{\"codepoints\":[120094],\"characters\":\"𝔞\"},\"&agrave;\":{\"codepoints\":[224],\"characters\":\"à\"},\"&agrave\":{\"codepoints\":[224],\"characters\":\"à\"},\"&alefsym;\":{\"codepoints\":[8501],\"characters\":\"ℵ\"},\"&aleph;\":{\"codepoints\":[8501],\"characters\":\"ℵ\"},\"&alpha;\":{\"codepoints\":[945],\"characters\":\"α\"},\"&amacr;\":{\"codepoints\":[257],\"characters\":\"ā\"},\"&amalg;\":{\"codepoints\":[10815],\"characters\":\"⨿\"},\"&amp;\":{\"codepoints\":[38],\"characters\":\"&\"},\"&amp\":{\"codepoints\":[38],\"characters\":\"&\"},\"&and;\":{\"codepoints\":[8743],\"characters\":\"∧\"},\"&andand;\":{\"codepoints\":[10837],\"characters\":\"⩕\"},\"&andd;\":{\"codepoints\":[10844],\"characters\":\"⩜\"},\"&andslope;\":{\"codepoints\":[10840],\"characters\":\"⩘\"},\"&andv;\":{\"codepoints\":[10842],\"characters\":\"⩚\"},\"&ang;\":{\"codepoints\":[8736],\"characters\":\"∠\"},\"&ange;\":{\"codepoints\":[10660],\"characters\":\"⦤\"},\"&angle;\":{\"codepoints\":[8736],\"characters\":\"∠\"},\"&angmsd;\":{\"codepoints\":[8737],\"characters\":\"∡\"},\"&angmsdaa;\":{\"codepoints\":[10664],\"characters\":\"⦨\"},\"&angmsdab;\":{\"codepoints\":[10665],\"characters\":\"⦩\"},\"&angmsdac;\":{\"codepoints\":[10666],\"characters\":\"⦪\"},\"&angmsdad;\":{\"codepoints\":[10667],\"characters\":\"⦫\"},\"&angmsdae;\":{\"codepoints\":[10668],\"characters\":\"⦬\"},\"&angmsdaf;\":{\"codepoints\":[10669],\"characters\":\"⦭\"},\"&angmsdag;\":{\"codepoints\":[10670],\"characters\":\"⦮\"},\"&angmsdah;\":{\"codepoints\":[10671],\"characters\":\"⦯\"},\"&angrt;\":{\"codepoints\":[8735],\"characters\":\"∟\"},\"&angrtvb;\":{\"codepoints\":[8894],\"characters\":\"⊾\"},\"&angrtvbd;\":{\"codepoints\":[10653],\"characters\":\"⦝\"},\"&angsph;\":{\"codepoints\":[8738],\"characters\":\"∢\"},\"&angst;\":{\"codepoints\":[197],\"characters\":\"Å\"},\"&angzarr;\":{\"codepoints\":[9084],\"characters\":\"⍼\"},\"&aogon;\":{\"codepoints\":[261],\"characters\":\"ą\"},\"&aopf;\":{\"codepoints\":[120146],\"characters\":\"𝕒\"},\"&ap;\":{\"codepoints\":[8776],\"characters\":\"≈\"},\"&apE;\":{\"codepoints\":[10864],\"characters\":\"⩰\"},\"&apacir;\":{\"codepoints\":[10863],\"characters\":\"⩯\"},\"&ape;\":{\"codepoints\":[8778],\"characters\":\"≊\"},\"&apid;\":{\"codepoints\":[8779],\"characters\":\"≋\"},\"&apos;\":{\"codepoints\":[39],\"characters\":\"'\"},\"&approx;\":{\"codepoints\":[8776],\"characters\":\"≈\"},\"&approxeq;\":{\"codepoints\":[8778],\"characters\":\"≊\"},\"&aring;\":{\"codepoints\":[229],\"characters\":\"å\"},\"&aring\":{\"codepoints\":[229],\"characters\":\"å\"},\"&ascr;\":{\"codepoints\":[119990],\"characters\":\"𝒶\"},\"&ast;\":{\"codepoints\":[42],\"characters\":\"*\"},\"&asymp;\":{\"codepoints\":[8776],\"characters\":\"≈\"},\"&asympeq;\":{\"codepoints\":[8781],\"characters\":\"≍\"},\"&atilde;\":{\"codepoints\":[227],\"characters\":\"ã\"},\"&atilde\":{\"codepoints\":[227],\"characters\":\"ã\"},\"&auml;\":{\"codepoints\":[228],\"characters\":\"ä\"},\"&auml\":{\"codepoints\":[228],\"characters\":\"ä\"},\"&awconint;\":{\"codepoints\":[8755],\"characters\":\"∳\"},\"&awint;\":{\"codepoints\":[10769],\"characters\":\"⨑\"},\"&bNot;\":{\"codepoints\":[10989],\"characters\":\"⫭\"},\"&backcong;\":{\"codepoints\":[8780],\"characters\":\"≌\"},\"&backepsilon;\":{\"codepoints\":[1014],\"characters\":\"϶\"},\"&backprime;\":{\"codepoints\":[8245],\"characters\":\"‵\"},\"&backsim;\":{\"codepoints\":[8765],\"characters\":\"∽\"},\"&backsimeq;\":{\"codepoints\":[8909],\"characters\":\"⋍\"},\"&barvee;\":{\"codepoints\":[8893],\"characters\":\"⊽\"},\"&barwed;\":{\"codepoints\":[8965],\"characters\":\"⌅\"},\"&barwedge;\":{\"codepoints\":[8965],\"characters\":\"⌅\"},\"&bbrk;\":{\"codepoints\":[9141],\"characters\":\"⎵\"},\"&bbrktbrk;\":{\"codepoints\":[9142],\"characters\":\"⎶\"},\"&bcong;\":{\"codepoints\":[8780],\"characters\":\"≌\"},\"&bcy;\":{\"codepoints\":[1073],\"characters\":\"б\"},\"&bdquo;\":{\"codepoints\":[8222],\"characters\":\"„\"},\"&becaus;\":{\"codepoints\":[8757],\"characters\":\"∵\"},\"&because;\":{\"codepoints\":[8757],\"characters\":\"∵\"},\"&bemptyv;\":{\"codepoints\":[10672],\"characters\":\"⦰\"},\"&bepsi;\":{\"codepoints\":[1014],\"characters\":\"϶\"},\"&bernou;\":{\"codepoints\":[8492],\"characters\":\"ℬ\"},\"&beta;\":{\"codepoints\":[946],\"characters\":\"β\"},\"&beth;\":{\"codepoints\":[8502],\"characters\":\"ℶ\"},\"&between;\":{\"codepoints\":[8812],\"characters\":\"≬\"},\"&bfr;\":{\"codepoints\":[120095],\"characters\":\"𝔟\"},\"&bigcap;\":{\"codepoints\":[8898],\"characters\":\"⋂\"},\"&bigcirc;\":{\"codepoints\":[9711],\"characters\":\"◯\"},\"&bigcup;\":{\"codepoints\":[8899],\"characters\":\"⋃\"},\"&bigodot;\":{\"codepoints\":[10752],\"characters\":\"⨀\"},\"&bigoplus;\":{\"codepoints\":[10753],\"characters\":\"⨁\"},\"&bigotimes;\":{\"codepoints\":[10754],\"characters\":\"⨂\"},\"&bigsqcup;\":{\"codepoints\":[10758],\"characters\":\"⨆\"},\"&bigstar;\":{\"codepoints\":[9733],\"characters\":\"★\"},\"&bigtriangledown;\":{\"codepoints\":[9661],\"characters\":\"▽\"},\"&bigtriangleup;\":{\"codepoints\":[9651],\"characters\":\"△\"},\"&biguplus;\":{\"codepoints\":[10756],\"characters\":\"⨄\"},\"&bigvee;\":{\"codepoints\":[8897],\"characters\":\"⋁\"},\"&bigwedge;\":{\"codepoints\":[8896],\"characters\":\"⋀\"},\"&bkarow;\":{\"codepoints\":[10509],\"characters\":\"⤍\"},\"&blacklozenge;\":{\"codepoints\":[10731],\"characters\":\"⧫\"},\"&blacksquare;\":{\"codepoints\":[9642],\"characters\":\"▪\"},\"&blacktriangle;\":{\"codepoints\":[9652],\"characters\":\"▴\"},\"&blacktriangledown;\":{\"codepoints\":[9662],\"characters\":\"▾\"},\"&blacktriangleleft;\":{\"codepoints\":[9666],\"characters\":\"◂\"},\"&blacktriangleright;\":{\"codepoints\":[9656],\"characters\":\"▸\"},\"&blank;\":{\"codepoints\":[9251],\"characters\":\"␣\"},\"&blk12;\":{\"codepoints\":[9618],\"characters\":\"▒\"},\"&blk14;\":{\"codepoints\":[9617],\"characters\":\"░\"},\"&blk34;\":{\"codepoints\":[9619],\"characters\":\"▓\"},\"&block;\":{\"codepoints\":[9608],\"characters\":\"█\"},\"&bne;\":{\"codepoints\":[61,8421],\"characters\":\"=⃥\"},\"&bnequiv;\":{\"codepoints\":[8801,8421],\"characters\":\"≡⃥\"},\"&bnot;\":{\"codepoints\":[8976],\"characters\":\"⌐\"},\"&bopf;\":{\"codepoints\":[120147],\"characters\":\"𝕓\"},\"&bot;\":{\"codepoints\":[8869],\"characters\":\"⊥\"},\"&bottom;\":{\"codepoints\":[8869],\"characters\":\"⊥\"},\"&bowtie;\":{\"codepoints\":[8904],\"characters\":\"⋈\"},\"&boxDL;\":{\"codepoints\":[9559],\"characters\":\"╗\"},\"&boxDR;\":{\"codepoints\":[9556],\"characters\":\"╔\"},\"&boxDl;\":{\"codepoints\":[9558],\"characters\":\"╖\"},\"&boxDr;\":{\"codepoints\":[9555],\"characters\":\"╓\"},\"&boxH;\":{\"codepoints\":[9552],\"characters\":\"═\"},\"&boxHD;\":{\"codepoints\":[9574],\"characters\":\"╦\"},\"&boxHU;\":{\"codepoints\":[9577],\"characters\":\"╩\"},\"&boxHd;\":{\"codepoints\":[9572],\"characters\":\"╤\"},\"&boxHu;\":{\"codepoints\":[9575],\"characters\":\"╧\"},\"&boxUL;\":{\"codepoints\":[9565],\"characters\":\"╝\"},\"&boxUR;\":{\"codepoints\":[9562],\"characters\":\"╚\"},\"&boxUl;\":{\"codepoints\":[9564],\"characters\":\"╜\"},\"&boxUr;\":{\"codepoints\":[9561],\"characters\":\"╙\"},\"&boxV;\":{\"codepoints\":[9553],\"characters\":\"║\"},\"&boxVH;\":{\"codepoints\":[9580],\"characters\":\"╬\"},\"&boxVL;\":{\"codepoints\":[9571],\"characters\":\"╣\"},\"&boxVR;\":{\"codepoints\":[9568],\"characters\":\"╠\"},\"&boxVh;\":{\"codepoints\":[9579],\"characters\":\"╫\"},\"&boxVl;\":{\"codepoints\":[9570],\"characters\":\"╢\"},\"&boxVr;\":{\"codepoints\":[9567],\"characters\":\"╟\"},\"&boxbox;\":{\"codepoints\":[10697],\"characters\":\"⧉\"},\"&boxdL;\":{\"codepoints\":[9557],\"characters\":\"╕\"},\"&boxdR;\":{\"codepoints\":[9554],\"characters\":\"╒\"},\"&boxdl;\":{\"codepoints\":[9488],\"characters\":\"┐\"},\"&boxdr;\":{\"codepoints\":[9484],\"characters\":\"┌\"},\"&boxh;\":{\"codepoints\":[9472],\"characters\":\"─\"},\"&boxhD;\":{\"codepoints\":[9573],\"characters\":\"╥\"},\"&boxhU;\":{\"codepoints\":[9576],\"characters\":\"╨\"},\"&boxhd;\":{\"codepoints\":[9516],\"characters\":\"┬\"},\"&boxhu;\":{\"codepoints\":[9524],\"characters\":\"┴\"},\"&boxminus;\":{\"codepoints\":[8863],\"characters\":\"⊟\"},\"&boxplus;\":{\"codepoints\":[8862],\"characters\":\"⊞\"},\"&boxtimes;\":{\"codepoints\":[8864],\"characters\":\"⊠\"},\"&boxuL;\":{\"codepoints\":[9563],\"characters\":\"╛\"},\"&boxuR;\":{\"codepoints\":[9560],\"characters\":\"╘\"},\"&boxul;\":{\"codepoints\":[9496],\"characters\":\"┘\"},\"&boxur;\":{\"codepoints\":[9492],\"characters\":\"└\"},\"&boxv;\":{\"codepoints\":[9474],\"characters\":\"│\"},\"&boxvH;\":{\"codepoints\":[9578],\"characters\":\"╪\"},\"&boxvL;\":{\"codepoints\":[9569],\"characters\":\"╡\"},\"&boxvR;\":{\"codepoints\":[9566],\"characters\":\"╞\"},\"&boxvh;\":{\"codepoints\":[9532],\"characters\":\"┼\"},\"&boxvl;\":{\"codepoints\":[9508],\"characters\":\"┤\"},\"&boxvr;\":{\"codepoints\":[9500],\"characters\":\"├\"},\"&bprime;\":{\"codepoints\":[8245],\"characters\":\"‵\"},\"&breve;\":{\"codepoints\":[728],\"characters\":\"˘\"},\"&brvbar;\":{\"codepoints\":[166],\"characters\":\"¦\"},\"&brvbar\":{\"codepoints\":[166],\"characters\":\"¦\"},\"&bscr;\":{\"codepoints\":[119991],\"characters\":\"𝒷\"},\"&bsemi;\":{\"codepoints\":[8271],\"characters\":\"⁏\"},\"&bsim;\":{\"codepoints\":[8765],\"characters\":\"∽\"},\"&bsime;\":{\"codepoints\":[8909],\"characters\":\"⋍\"},\"&bsol;\":{\"codepoints\":[92],\"characters\":\"\\\\\"},\"&bsolb;\":{\"codepoints\":[10693],\"characters\":\"⧅\"},\"&bsolhsub;\":{\"codepoints\":[10184],\"characters\":\"⟈\"},\"&bull;\":{\"codepoints\":[8226],\"characters\":\"•\"},\"&bullet;\":{\"codepoints\":[8226],\"characters\":\"•\"},\"&bump;\":{\"codepoints\":[8782],\"characters\":\"≎\"},\"&bumpE;\":{\"codepoints\":[10926],\"characters\":\"⪮\"},\"&bumpe;\":{\"codepoints\":[8783],\"characters\":\"≏\"},\"&bumpeq;\":{\"codepoints\":[8783],\"characters\":\"≏\"},\"&cacute;\":{\"codepoints\":[263],\"characters\":\"ć\"},\"&cap;\":{\"codepoints\":[8745],\"characters\":\"∩\"},\"&capand;\":{\"codepoints\":[10820],\"characters\":\"⩄\"},\"&capbrcup;\":{\"codepoints\":[10825],\"characters\":\"⩉\"},\"&capcap;\":{\"codepoints\":[10827],\"characters\":\"⩋\"},\"&capcup;\":{\"codepoints\":[10823],\"characters\":\"⩇\"},\"&capdot;\":{\"codepoints\":[10816],\"characters\":\"⩀\"},\"&caps;\":{\"codepoints\":[8745,65024],\"characters\":\"∩︀\"},\"&caret;\":{\"codepoints\":[8257],\"characters\":\"⁁\"},\"&caron;\":{\"codepoints\":[711],\"characters\":\"ˇ\"},\"&ccaps;\":{\"codepoints\":[10829],\"characters\":\"⩍\"},\"&ccaron;\":{\"codepoints\":[269],\"characters\":\"č\"},\"&ccedil;\":{\"codepoints\":[231],\"characters\":\"ç\"},\"&ccedil\":{\"codepoints\":[231],\"characters\":\"ç\"},\"&ccirc;\":{\"codepoints\":[265],\"characters\":\"ĉ\"},\"&ccups;\":{\"codepoints\":[10828],\"characters\":\"⩌\"},\"&ccupssm;\":{\"codepoints\":[10832],\"characters\":\"⩐\"},\"&cdot;\":{\"codepoints\":[267],\"characters\":\"ċ\"},\"&cedil;\":{\"codepoints\":[184],\"characters\":\"¸\"},\"&cedil\":{\"codepoints\":[184],\"characters\":\"¸\"},\"&cemptyv;\":{\"codepoints\":[10674],\"characters\":\"⦲\"},\"&cent;\":{\"codepoints\":[162],\"characters\":\"¢\"},\"&cent\":{\"codepoints\":[162],\"characters\":\"¢\"},\"&centerdot;\":{\"codepoints\":[183],\"characters\":\"·\"},\"&cfr;\":{\"codepoints\":[120096],\"characters\":\"𝔠\"},\"&chcy;\":{\"codepoints\":[1095],\"characters\":\"ч\"},\"&check;\":{\"codepoints\":[10003],\"characters\":\"✓\"},\"&checkmark;\":{\"codepoints\":[10003],\"characters\":\"✓\"},\"&chi;\":{\"codepoints\":[967],\"characters\":\"χ\"},\"&cir;\":{\"codepoints\":[9675],\"characters\":\"○\"},\"&cirE;\":{\"codepoints\":[10691],\"characters\":\"⧃\"},\"&circ;\":{\"codepoints\":[710],\"characters\":\"ˆ\"},\"&circeq;\":{\"codepoints\":[8791],\"characters\":\"≗\"},\"&circlearrowleft;\":{\"codepoints\":[8634],\"characters\":\"↺\"},\"&circlearrowright;\":{\"codepoints\":[8635],\"characters\":\"↻\"},\"&circledR;\":{\"codepoints\":[174],\"characters\":\"®\"},\"&circledS;\":{\"codepoints\":[9416],\"characters\":\"Ⓢ\"},\"&circledast;\":{\"codepoints\":[8859],\"characters\":\"⊛\"},\"&circledcirc;\":{\"codepoints\":[8858],\"characters\":\"⊚\"},\"&circleddash;\":{\"codepoints\":[8861],\"characters\":\"⊝\"},\"&cire;\":{\"codepoints\":[8791],\"characters\":\"≗\"},\"&cirfnint;\":{\"codepoints\":[10768],\"characters\":\"⨐\"},\"&cirmid;\":{\"codepoints\":[10991],\"characters\":\"⫯\"},\"&cirscir;\":{\"codepoints\":[10690],\"characters\":\"⧂\"},\"&clubs;\":{\"codepoints\":[9827],\"characters\":\"♣\"},\"&clubsuit;\":{\"codepoints\":[9827],\"characters\":\"♣\"},\"&colon;\":{\"codepoints\":[58],\"characters\":\":\"},\"&colone;\":{\"codepoints\":[8788],\"characters\":\"≔\"},\"&coloneq;\":{\"codepoints\":[8788],\"characters\":\"≔\"},\"&comma;\":{\"codepoints\":[44],\"characters\":\",\"},\"&commat;\":{\"codepoints\":[64],\"characters\":\"@\"},\"&comp;\":{\"codepoints\":[8705],\"characters\":\"∁\"},\"&compfn;\":{\"codepoints\":[8728],\"characters\":\"∘\"},\"&complement;\":{\"codepoints\":[8705],\"characters\":\"∁\"},\"&complexes;\":{\"codepoints\":[8450],\"characters\":\"ℂ\"},\"&cong;\":{\"codepoints\":[8773],\"characters\":\"≅\"},\"&congdot;\":{\"codepoints\":[10861],\"characters\":\"⩭\"},\"&conint;\":{\"codepoints\":[8750],\"characters\":\"∮\"},\"&copf;\":{\"codepoints\":[120148],\"characters\":\"𝕔\"},\"&coprod;\":{\"codepoints\":[8720],\"characters\":\"∐\"},\"&copy\":{\"codepoints\":[169],\"characters\":\"©\"},\"&copy;\":{\"codepoints\":[169],\"characters\":\"©\"},\"&copysr;\":{\"codepoints\":[8471],\"characters\":\"℗\"},\"&crarr;\":{\"codepoints\":[8629],\"characters\":\"↵\"},\"&cross;\":{\"codepoints\":[10007],\"characters\":\"✗\"},\"&cscr;\":{\"codepoints\":[119992],\"characters\":\"𝒸\"},\"&csub;\":{\"codepoints\":[10959],\"characters\":\"⫏\"},\"&csube;\":{\"codepoints\":[10961],\"characters\":\"⫑\"},\"&csup;\":{\"codepoints\":[10960],\"characters\":\"⫐\"},\"&csupe;\":{\"codepoints\":[10962],\"characters\":\"⫒\"},\"&ctdot;\":{\"codepoints\":[8943],\"characters\":\"⋯\"},\"&cudarrl;\":{\"codepoints\":[10552],\"characters\":\"⤸\"},\"&cudarrr;\":{\"codepoints\":[10549],\"characters\":\"⤵\"},\"&cuepr;\":{\"codepoints\":[8926],\"characters\":\"⋞\"},\"&cuesc;\":{\"codepoints\":[8927],\"characters\":\"⋟\"},\"&cularr;\":{\"codepoints\":[8630],\"characters\":\"↶\"},\"&cularrp;\":{\"codepoints\":[10557],\"characters\":\"⤽\"},\"&cup;\":{\"codepoints\":[8746],\"characters\":\"∪\"},\"&cupbrcap;\":{\"codepoints\":[10824],\"characters\":\"⩈\"},\"&cupcap;\":{\"codepoints\":[10822],\"characters\":\"⩆\"},\"&cupcup;\":{\"codepoints\":[10826],\"characters\":\"⩊\"},\"&cupdot;\":{\"codepoints\":[8845],\"characters\":\"⊍\"},\"&cupor;\":{\"codepoints\":[10821],\"characters\":\"⩅\"},\"&cups;\":{\"codepoints\":[8746,65024],\"characters\":\"∪︀\"},\"&curarr;\":{\"codepoints\":[8631],\"characters\":\"↷\"},\"&curarrm;\":{\"codepoints\":[10556],\"characters\":\"⤼\"},\"&curlyeqprec;\":{\"codepoints\":[8926],\"characters\":\"⋞\"},\"&curlyeqsucc;\":{\"codepoints\":[8927],\"characters\":\"⋟\"},\"&curlyvee;\":{\"codepoints\":[8910],\"characters\":\"⋎\"},\"&curlywedge;\":{\"codepoints\":[8911],\"characters\":\"⋏\"},\"&curren;\":{\"codepoints\":[164],\"characters\":\"¤\"},\"&curren\":{\"codepoints\":[164],\"characters\":\"¤\"},\"&curvearrowleft;\":{\"codepoints\":[8630],\"characters\":\"↶\"},\"&curvearrowright;\":{\"codepoints\":[8631],\"characters\":\"↷\"},\"&cuvee;\":{\"codepoints\":[8910],\"characters\":\"⋎\"},\"&cuwed;\":{\"codepoints\":[8911],\"characters\":\"⋏\"},\"&cwconint;\":{\"codepoints\":[8754],\"characters\":\"∲\"},\"&cwint;\":{\"codepoints\":[8753],\"characters\":\"∱\"},\"&cylcty;\":{\"codepoints\":[9005],\"characters\":\"⌭\"},\"&dArr;\":{\"codepoints\":[8659],\"characters\":\"⇓\"},\"&dHar;\":{\"codepoints\":[10597],\"characters\":\"⥥\"},\"&dagger;\":{\"codepoints\":[8224],\"characters\":\"†\"},\"&daleth;\":{\"codepoints\":[8504],\"characters\":\"ℸ\"},\"&darr;\":{\"codepoints\":[8595],\"characters\":\"↓\"},\"&dash;\":{\"codepoints\":[8208],\"characters\":\"‐\"},\"&dashv;\":{\"codepoints\":[8867],\"characters\":\"⊣\"},\"&dbkarow;\":{\"codepoints\":[10511],\"characters\":\"⤏\"},\"&dblac;\":{\"codepoints\":[733],\"characters\":\"˝\"},\"&dcaron;\":{\"codepoints\":[271],\"characters\":\"ď\"},\"&dcy;\":{\"codepoints\":[1076],\"characters\":\"д\"},\"&dd;\":{\"codepoints\":[8518],\"characters\":\"ⅆ\"},\"&ddagger;\":{\"codepoints\":[8225],\"characters\":\"‡\"},\"&ddarr;\":{\"codepoints\":[8650],\"characters\":\"⇊\"},\"&ddotseq;\":{\"codepoints\":[10871],\"characters\":\"⩷\"},\"&deg;\":{\"codepoints\":[176],\"characters\":\"°\"},\"&deg\":{\"codepoints\":[176],\"characters\":\"°\"},\"&delta;\":{\"codepoints\":[948],\"characters\":\"δ\"},\"&demptyv;\":{\"codepoints\":[10673],\"characters\":\"⦱\"},\"&dfisht;\":{\"codepoints\":[10623],\"characters\":\"⥿\"},\"&dfr;\":{\"codepoints\":[120097],\"characters\":\"𝔡\"},\"&dharl;\":{\"codepoints\":[8643],\"characters\":\"⇃\"},\"&dharr;\":{\"codepoints\":[8642],\"characters\":\"⇂\"},\"&diam;\":{\"codepoints\":[8900],\"characters\":\"⋄\"},\"&diamond;\":{\"codepoints\":[8900],\"characters\":\"⋄\"},\"&diamondsuit;\":{\"codepoints\":[9830],\"characters\":\"♦\"},\"&diams;\":{\"codepoints\":[9830],\"characters\":\"♦\"},\"&die;\":{\"codepoints\":[168],\"characters\":\"¨\"},\"&digamma;\":{\"codepoints\":[989],\"characters\":\"ϝ\"},\"&disin;\":{\"codepoints\":[8946],\"characters\":\"⋲\"},\"&div;\":{\"codepoints\":[247],\"characters\":\"÷\"},\"&divide;\":{\"codepoints\":[247],\"characters\":\"÷\"},\"&divide\":{\"codepoints\":[247],\"characters\":\"÷\"},\"&divideontimes;\":{\"codepoints\":[8903],\"characters\":\"⋇\"},\"&divonx;\":{\"codepoints\":[8903],\"characters\":\"⋇\"},\"&djcy;\":{\"codepoints\":[1106],\"characters\":\"ђ\"},\"&dlcorn;\":{\"codepoints\":[8990],\"characters\":\"⌞\"},\"&dlcrop;\":{\"codepoints\":[8973],\"characters\":\"⌍\"},\"&dollar;\":{\"codepoints\":[36],\"characters\":\"$\"},\"&dopf;\":{\"codepoints\":[120149],\"characters\":\"𝕕\"},\"&dot;\":{\"codepoints\":[729],\"characters\":\"˙\"},\"&doteq;\":{\"codepoints\":[8784],\"characters\":\"≐\"},\"&doteqdot;\":{\"codepoints\":[8785],\"characters\":\"≑\"},\"&dotminus;\":{\"codepoints\":[8760],\"characters\":\"∸\"},\"&dotplus;\":{\"codepoints\":[8724],\"characters\":\"∔\"},\"&dotsquare;\":{\"codepoints\":[8865],\"characters\":\"⊡\"},\"&doublebarwedge;\":{\"codepoints\":[8966],\"characters\":\"⌆\"},\"&downarrow;\":{\"codepoints\":[8595],\"characters\":\"↓\"},\"&downdownarrows;\":{\"codepoints\":[8650],\"characters\":\"⇊\"},\"&downharpoonleft;\":{\"codepoints\":[8643],\"characters\":\"⇃\"},\"&downharpoonright;\":{\"codepoints\":[8642],\"characters\":\"⇂\"},\"&drbkarow;\":{\"codepoints\":[10512],\"characters\":\"⤐\"},\"&drcorn;\":{\"codepoints\":[8991],\"characters\":\"⌟\"},\"&drcrop;\":{\"codepoints\":[8972],\"characters\":\"⌌\"},\"&dscr;\":{\"codepoints\":[119993],\"characters\":\"𝒹\"},\"&dscy;\":{\"codepoints\":[1109],\"characters\":\"ѕ\"},\"&dsol;\":{\"codepoints\":[10742],\"characters\":\"⧶\"},\"&dstrok;\":{\"codepoints\":[273],\"characters\":\"đ\"},\"&dtdot;\":{\"codepoints\":[8945],\"characters\":\"⋱\"},\"&dtri;\":{\"codepoints\":[9663],\"characters\":\"▿\"},\"&dtrif;\":{\"codepoints\":[9662],\"characters\":\"▾\"},\"&duarr;\":{\"codepoints\":[8693],\"characters\":\"⇵\"},\"&duhar;\":{\"codepoints\":[10607],\"characters\":\"⥯\"},\"&dwangle;\":{\"codepoints\":[10662],\"characters\":\"⦦\"},\"&dzcy;\":{\"codepoints\":[1119],\"characters\":\"џ\"},\"&dzigrarr;\":{\"codepoints\":[10239],\"characters\":\"⟿\"},\"&eDDot;\":{\"codepoints\":[10871],\"characters\":\"⩷\"},\"&eDot;\":{\"codepoints\":[8785],\"characters\":\"≑\"},\"&eacute;\":{\"codepoints\":[233],\"characters\":\"é\"},\"&eacute\":{\"codepoints\":[233],\"characters\":\"é\"},\"&easter;\":{\"codepoints\":[10862],\"characters\":\"⩮\"},\"&ecaron;\":{\"codepoints\":[283],\"characters\":\"ě\"},\"&ecir;\":{\"codepoints\":[8790],\"characters\":\"≖\"},\"&ecirc;\":{\"codepoints\":[234],\"characters\":\"ê\"},\"&ecirc\":{\"codepoints\":[234],\"characters\":\"ê\"},\"&ecolon;\":{\"codepoints\":[8789],\"characters\":\"≕\"},\"&ecy;\":{\"codepoints\":[1101],\"characters\":\"э\"},\"&edot;\":{\"codepoints\":[279],\"characters\":\"ė\"},\"&ee;\":{\"codepoints\":[8519],\"characters\":\"ⅇ\"},\"&efDot;\":{\"codepoints\":[8786],\"characters\":\"≒\"},\"&efr;\":{\"codepoints\":[120098],\"characters\":\"𝔢\"},\"&eg;\":{\"codepoints\":[10906],\"characters\":\"⪚\"},\"&egrave;\":{\"codepoints\":[232],\"characters\":\"è\"},\"&egrave\":{\"codepoints\":[232],\"characters\":\"è\"},\"&egs;\":{\"codepoints\":[10902],\"characters\":\"⪖\"},\"&egsdot;\":{\"codepoints\":[10904],\"characters\":\"⪘\"},\"&el;\":{\"codepoints\":[10905],\"characters\":\"⪙\"},\"&elinters;\":{\"codepoints\":[9191],\"characters\":\"⏧\"},\"&ell;\":{\"codepoints\":[8467],\"characters\":\"ℓ\"},\"&els;\":{\"codepoints\":[10901],\"characters\":\"⪕\"},\"&elsdot;\":{\"codepoints\":[10903],\"characters\":\"⪗\"},\"&emacr;\":{\"codepoints\":[275],\"characters\":\"ē\"},\"&empty;\":{\"codepoints\":[8709],\"characters\":\"∅\"},\"&emptyset;\":{\"codepoints\":[8709],\"characters\":\"∅\"},\"&emptyv;\":{\"codepoints\":[8709],\"characters\":\"∅\"},\"&emsp13;\":{\"codepoints\":[8196],\"characters\":\" \"},\"&emsp14;\":{\"codepoints\":[8197],\"characters\":\" \"},\"&emsp;\":{\"codepoints\":[8195],\"characters\":\" \"},\"&eng;\":{\"codepoints\":[331],\"characters\":\"ŋ\"},\"&ensp;\":{\"codepoints\":[8194],\"characters\":\" \"},\"&eogon;\":{\"codepoints\":[281],\"characters\":\"ę\"},\"&eopf;\":{\"codepoints\":[120150],\"characters\":\"𝕖\"},\"&epar;\":{\"codepoints\":[8917],\"characters\":\"⋕\"},\"&eparsl;\":{\"codepoints\":[10723],\"characters\":\"⧣\"},\"&eplus;\":{\"codepoints\":[10865],\"characters\":\"⩱\"},\"&epsi;\":{\"codepoints\":[949],\"characters\":\"ε\"},\"&epsilon;\":{\"codepoints\":[949],\"characters\":\"ε\"},\"&epsiv;\":{\"codepoints\":[1013],\"characters\":\"ϵ\"},\"&eqcirc;\":{\"codepoints\":[8790],\"characters\":\"≖\"},\"&eqcolon;\":{\"codepoints\":[8789],\"characters\":\"≕\"},\"&eqsim;\":{\"codepoints\":[8770],\"characters\":\"≂\"},\"&eqslantgtr;\":{\"codepoints\":[10902],\"characters\":\"⪖\"},\"&eqslantless;\":{\"codepoints\":[10901],\"characters\":\"⪕\"},\"&equals;\":{\"codepoints\":[61],\"characters\":\"=\"},\"&equest;\":{\"codepoints\":[8799],\"characters\":\"≟\"},\"&equiv;\":{\"codepoints\":[8801],\"characters\":\"≡\"},\"&equivDD;\":{\"codepoints\":[10872],\"characters\":\"⩸\"},\"&eqvparsl;\":{\"codepoints\":[10725],\"characters\":\"⧥\"},\"&erDot;\":{\"codepoints\":[8787],\"characters\":\"≓\"},\"&erarr;\":{\"codepoints\":[10609],\"characters\":\"⥱\"},\"&escr;\":{\"codepoints\":[8495],\"characters\":\"ℯ\"},\"&esdot;\":{\"codepoints\":[8784],\"characters\":\"≐\"},\"&esim;\":{\"codepoints\":[8770],\"characters\":\"≂\"},\"&eta;\":{\"codepoints\":[951],\"characters\":\"η\"},\"&eth\":{\"codepoints\":[240],\"characters\":\"ð\"},\"&eth;\":{\"codepoints\":[240],\"characters\":\"ð\"},\"&euml\":{\"codepoints\":[235],\"characters\":\"ë\"},\"&euml;\":{\"codepoints\":[235],\"characters\":\"ë\"},\"&euro;\":{\"codepoints\":[8364],\"characters\":\"€\"},\"&excl;\":{\"codepoints\":[33],\"characters\":\"!\"},\"&exist;\":{\"codepoints\":[8707],\"characters\":\"∃\"},\"&expectation;\":{\"codepoints\":[8496],\"characters\":\"ℰ\"},\"&exponentiale;\":{\"codepoints\":[8519],\"characters\":\"ⅇ\"},\"&fallingdotseq;\":{\"codepoints\":[8786],\"characters\":\"≒\"},\"&fcy;\":{\"codepoints\":[1092],\"characters\":\"ф\"},\"&female;\":{\"codepoints\":[9792],\"characters\":\"♀\"},\"&ffilig;\":{\"codepoints\":[64259],\"characters\":\"ffi\"},\"&fflig;\":{\"codepoints\":[64256],\"characters\":\"ff\"},\"&ffllig;\":{\"codepoints\":[64260],\"characters\":\"ffl\"},\"&ffr;\":{\"codepoints\":[120099],\"characters\":\"𝔣\"},\"&filig;\":{\"codepoints\":[64257],\"characters\":\"fi\"},\"&fjlig;\":{\"codepoints\":[102,106],\"characters\":\"fj\"},\"&flat;\":{\"codepoints\":[9837],\"characters\":\"♭\"},\"&fllig;\":{\"codepoints\":[64258],\"characters\":\"fl\"},\"&fltns;\":{\"codepoints\":[9649],\"characters\":\"▱\"},\"&fnof;\":{\"codepoints\":[402],\"characters\":\"ƒ\"},\"&fopf;\":{\"codepoints\":[120151],\"characters\":\"𝕗\"},\"&forall;\":{\"codepoints\":[8704],\"characters\":\"∀\"},\"&fork;\":{\"codepoints\":[8916],\"characters\":\"⋔\"},\"&forkv;\":{\"codepoints\":[10969],\"characters\":\"⫙\"},\"&fpartint;\":{\"codepoints\":[10765],\"characters\":\"⨍\"},\"&frac12;\":{\"codepoints\":[189],\"characters\":\"½\"},\"&frac12\":{\"codepoints\":[189],\"characters\":\"½\"},\"&frac13;\":{\"codepoints\":[8531],\"characters\":\"⅓\"},\"&frac14;\":{\"codepoints\":[188],\"characters\":\"¼\"},\"&frac14\":{\"codepoints\":[188],\"characters\":\"¼\"},\"&frac15;\":{\"codepoints\":[8533],\"characters\":\"⅕\"},\"&frac16;\":{\"codepoints\":[8537],\"characters\":\"⅙\"},\"&frac18;\":{\"codepoints\":[8539],\"characters\":\"⅛\"},\"&frac23;\":{\"codepoints\":[8532],\"characters\":\"⅔\"},\"&frac25;\":{\"codepoints\":[8534],\"characters\":\"⅖\"},\"&frac34;\":{\"codepoints\":[190],\"characters\":\"¾\"},\"&frac34\":{\"codepoints\":[190],\"characters\":\"¾\"},\"&frac35;\":{\"codepoints\":[8535],\"characters\":\"⅗\"},\"&frac38;\":{\"codepoints\":[8540],\"characters\":\"⅜\"},\"&frac45;\":{\"codepoints\":[8536],\"characters\":\"⅘\"},\"&frac56;\":{\"codepoints\":[8538],\"characters\":\"⅚\"},\"&frac58;\":{\"codepoints\":[8541],\"characters\":\"⅝\"},\"&frac78;\":{\"codepoints\":[8542],\"characters\":\"⅞\"},\"&frasl;\":{\"codepoints\":[8260],\"characters\":\"⁄\"},\"&frown;\":{\"codepoints\":[8994],\"characters\":\"⌢\"},\"&fscr;\":{\"codepoints\":[119995],\"characters\":\"𝒻\"},\"&gE;\":{\"codepoints\":[8807],\"characters\":\"≧\"},\"&gEl;\":{\"codepoints\":[10892],\"characters\":\"⪌\"},\"&gacute;\":{\"codepoints\":[501],\"characters\":\"ǵ\"},\"&gamma;\":{\"codepoints\":[947],\"characters\":\"γ\"},\"&gammad;\":{\"codepoints\":[989],\"characters\":\"ϝ\"},\"&gap;\":{\"codepoints\":[10886],\"characters\":\"⪆\"},\"&gbreve;\":{\"codepoints\":[287],\"characters\":\"ğ\"},\"&gcirc;\":{\"codepoints\":[285],\"characters\":\"ĝ\"},\"&gcy;\":{\"codepoints\":[1075],\"characters\":\"г\"},\"&gdot;\":{\"codepoints\":[289],\"characters\":\"ġ\"},\"&ge;\":{\"codepoints\":[8805],\"characters\":\"≥\"},\"&gel;\":{\"codepoints\":[8923],\"characters\":\"⋛\"},\"&geq;\":{\"codepoints\":[8805],\"characters\":\"≥\"},\"&geqq;\":{\"codepoints\":[8807],\"characters\":\"≧\"},\"&geqslant;\":{\"codepoints\":[10878],\"characters\":\"⩾\"},\"&ges;\":{\"codepoints\":[10878],\"characters\":\"⩾\"},\"&gescc;\":{\"codepoints\":[10921],\"characters\":\"⪩\"},\"&gesdot;\":{\"codepoints\":[10880],\"characters\":\"⪀\"},\"&gesdoto;\":{\"codepoints\":[10882],\"characters\":\"⪂\"},\"&gesdotol;\":{\"codepoints\":[10884],\"characters\":\"⪄\"},\"&gesl;\":{\"codepoints\":[8923,65024],\"characters\":\"⋛︀\"},\"&gesles;\":{\"codepoints\":[10900],\"characters\":\"⪔\"},\"&gfr;\":{\"codepoints\":[120100],\"characters\":\"𝔤\"},\"&gg;\":{\"codepoints\":[8811],\"characters\":\"≫\"},\"&ggg;\":{\"codepoints\":[8921],\"characters\":\"⋙\"},\"&gimel;\":{\"codepoints\":[8503],\"characters\":\"ℷ\"},\"&gjcy;\":{\"codepoints\":[1107],\"characters\":\"ѓ\"},\"&gl;\":{\"codepoints\":[8823],\"characters\":\"≷\"},\"&glE;\":{\"codepoints\":[10898],\"characters\":\"⪒\"},\"&gla;\":{\"codepoints\":[10917],\"characters\":\"⪥\"},\"&glj;\":{\"codepoints\":[10916],\"characters\":\"⪤\"},\"&gnE;\":{\"codepoints\":[8809],\"characters\":\"≩\"},\"&gnap;\":{\"codepoints\":[10890],\"characters\":\"⪊\"},\"&gnapprox;\":{\"codepoints\":[10890],\"characters\":\"⪊\"},\"&gne;\":{\"codepoints\":[10888],\"characters\":\"⪈\"},\"&gneq;\":{\"codepoints\":[10888],\"characters\":\"⪈\"},\"&gneqq;\":{\"codepoints\":[8809],\"characters\":\"≩\"},\"&gnsim;\":{\"codepoints\":[8935],\"characters\":\"⋧\"},\"&gopf;\":{\"codepoints\":[120152],\"characters\":\"𝕘\"},\"&grave;\":{\"codepoints\":[96],\"characters\":\"`\"},\"&gscr;\":{\"codepoints\":[8458],\"characters\":\"ℊ\"},\"&gsim;\":{\"codepoints\":[8819],\"characters\":\"≳\"},\"&gsime;\":{\"codepoints\":[10894],\"characters\":\"⪎\"},\"&gsiml;\":{\"codepoints\":[10896],\"characters\":\"⪐\"},\"&gt;\":{\"codepoints\":[62],\"characters\":\">\"},\"&gt\":{\"codepoints\":[62],\"characters\":\">\"},\"&gtcc;\":{\"codepoints\":[10919],\"characters\":\"⪧\"},\"&gtcir;\":{\"codepoints\":[10874],\"characters\":\"⩺\"},\"&gtdot;\":{\"codepoints\":[8919],\"characters\":\"⋗\"},\"&gtlPar;\":{\"codepoints\":[10645],\"characters\":\"⦕\"},\"&gtquest;\":{\"codepoints\":[10876],\"characters\":\"⩼\"},\"&gtrapprox;\":{\"codepoints\":[10886],\"characters\":\"⪆\"},\"&gtrarr;\":{\"codepoints\":[10616],\"characters\":\"⥸\"},\"&gtrdot;\":{\"codepoints\":[8919],\"characters\":\"⋗\"},\"&gtreqless;\":{\"codepoints\":[8923],\"characters\":\"⋛\"},\"&gtreqqless;\":{\"codepoints\":[10892],\"characters\":\"⪌\"},\"&gtrless;\":{\"codepoints\":[8823],\"characters\":\"≷\"},\"&gtrsim;\":{\"codepoints\":[8819],\"characters\":\"≳\"},\"&gvertneqq;\":{\"codepoints\":[8809,65024],\"characters\":\"≩︀\"},\"&gvnE;\":{\"codepoints\":[8809,65024],\"characters\":\"≩︀\"},\"&hArr;\":{\"codepoints\":[8660],\"characters\":\"⇔\"},\"&hairsp;\":{\"codepoints\":[8202],\"characters\":\" \"},\"&half;\":{\"codepoints\":[189],\"characters\":\"½\"},\"&hamilt;\":{\"codepoints\":[8459],\"characters\":\"ℋ\"},\"&hardcy;\":{\"codepoints\":[1098],\"characters\":\"ъ\"},\"&harr;\":{\"codepoints\":[8596],\"characters\":\"↔\"},\"&harrcir;\":{\"codepoints\":[10568],\"characters\":\"⥈\"},\"&harrw;\":{\"codepoints\":[8621],\"characters\":\"↭\"},\"&hbar;\":{\"codepoints\":[8463],\"characters\":\"ℏ\"},\"&hcirc;\":{\"codepoints\":[293],\"characters\":\"ĥ\"},\"&hearts;\":{\"codepoints\":[9829],\"characters\":\"♥\"},\"&heartsuit;\":{\"codepoints\":[9829],\"characters\":\"♥\"},\"&hellip;\":{\"codepoints\":[8230],\"characters\":\"…\"},\"&hercon;\":{\"codepoints\":[8889],\"characters\":\"⊹\"},\"&hfr;\":{\"codepoints\":[120101],\"characters\":\"𝔥\"},\"&hksearow;\":{\"codepoints\":[10533],\"characters\":\"⤥\"},\"&hkswarow;\":{\"codepoints\":[10534],\"characters\":\"⤦\"},\"&hoarr;\":{\"codepoints\":[8703],\"characters\":\"⇿\"},\"&homtht;\":{\"codepoints\":[8763],\"characters\":\"∻\"},\"&hookleftarrow;\":{\"codepoints\":[8617],\"characters\":\"↩\"},\"&hookrightarrow;\":{\"codepoints\":[8618],\"characters\":\"↪\"},\"&hopf;\":{\"codepoints\":[120153],\"characters\":\"𝕙\"},\"&horbar;\":{\"codepoints\":[8213],\"characters\":\"―\"},\"&hscr;\":{\"codepoints\":[119997],\"characters\":\"𝒽\"},\"&hslash;\":{\"codepoints\":[8463],\"characters\":\"ℏ\"},\"&hstrok;\":{\"codepoints\":[295],\"characters\":\"ħ\"},\"&hybull;\":{\"codepoints\":[8259],\"characters\":\"⁃\"},\"&hyphen;\":{\"codepoints\":[8208],\"characters\":\"‐\"},\"&iacute;\":{\"codepoints\":[237],\"characters\":\"í\"},\"&iacute\":{\"codepoints\":[237],\"characters\":\"í\"},\"&ic;\":{\"codepoints\":[8291],\"characters\":\"⁣\"},\"&icirc;\":{\"codepoints\":[238],\"characters\":\"î\"},\"&icirc\":{\"codepoints\":[238],\"characters\":\"î\"},\"&icy;\":{\"codepoints\":[1080],\"characters\":\"и\"},\"&iecy;\":{\"codepoints\":[1077],\"characters\":\"е\"},\"&iexcl;\":{\"codepoints\":[161],\"characters\":\"¡\"},\"&iexcl\":{\"codepoints\":[161],\"characters\":\"¡\"},\"&iff;\":{\"codepoints\":[8660],\"characters\":\"⇔\"},\"&ifr;\":{\"codepoints\":[120102],\"characters\":\"𝔦\"},\"&igrave;\":{\"codepoints\":[236],\"characters\":\"ì\"},\"&igrave\":{\"codepoints\":[236],\"characters\":\"ì\"},\"&ii;\":{\"codepoints\":[8520],\"characters\":\"ⅈ\"},\"&iiiint;\":{\"codepoints\":[10764],\"characters\":\"⨌\"},\"&iiint;\":{\"codepoints\":[8749],\"characters\":\"∭\"},\"&iinfin;\":{\"codepoints\":[10716],\"characters\":\"⧜\"},\"&iiota;\":{\"codepoints\":[8489],\"characters\":\"℩\"},\"&ijlig;\":{\"codepoints\":[307],\"characters\":\"ij\"},\"&imacr;\":{\"codepoints\":[299],\"characters\":\"ī\"},\"&image;\":{\"codepoints\":[8465],\"characters\":\"ℑ\"},\"&imagline;\":{\"codepoints\":[8464],\"characters\":\"ℐ\"},\"&imagpart;\":{\"codepoints\":[8465],\"characters\":\"ℑ\"},\"&imath;\":{\"codepoints\":[305],\"characters\":\"ı\"},\"&imof;\":{\"codepoints\":[8887],\"characters\":\"⊷\"},\"&imped;\":{\"codepoints\":[437],\"characters\":\"Ƶ\"},\"&in;\":{\"codepoints\":[8712],\"characters\":\"∈\"},\"&incare;\":{\"codepoints\":[8453],\"characters\":\"℅\"},\"&infin;\":{\"codepoints\":[8734],\"characters\":\"∞\"},\"&infintie;\":{\"codepoints\":[10717],\"characters\":\"⧝\"},\"&inodot;\":{\"codepoints\":[305],\"characters\":\"ı\"},\"&int;\":{\"codepoints\":[8747],\"characters\":\"∫\"},\"&intcal;\":{\"codepoints\":[8890],\"characters\":\"⊺\"},\"&integers;\":{\"codepoints\":[8484],\"characters\":\"ℤ\"},\"&intercal;\":{\"codepoints\":[8890],\"characters\":\"⊺\"},\"&intlarhk;\":{\"codepoints\":[10775],\"characters\":\"⨗\"},\"&intprod;\":{\"codepoints\":[10812],\"characters\":\"⨼\"},\"&iocy;\":{\"codepoints\":[1105],\"characters\":\"ё\"},\"&iogon;\":{\"codepoints\":[303],\"characters\":\"į\"},\"&iopf;\":{\"codepoints\":[120154],\"characters\":\"𝕚\"},\"&iota;\":{\"codepoints\":[953],\"characters\":\"ι\"},\"&iprod;\":{\"codepoints\":[10812],\"characters\":\"⨼\"},\"&iquest;\":{\"codepoints\":[191],\"characters\":\"¿\"},\"&iquest\":{\"codepoints\":[191],\"characters\":\"¿\"},\"&iscr;\":{\"codepoints\":[119998],\"characters\":\"𝒾\"},\"&isin;\":{\"codepoints\":[8712],\"characters\":\"∈\"},\"&isinE;\":{\"codepoints\":[8953],\"characters\":\"⋹\"},\"&isindot;\":{\"codepoints\":[8949],\"characters\":\"⋵\"},\"&isins;\":{\"codepoints\":[8948],\"characters\":\"⋴\"},\"&isinsv;\":{\"codepoints\":[8947],\"characters\":\"⋳\"},\"&isinv;\":{\"codepoints\":[8712],\"characters\":\"∈\"},\"&it;\":{\"codepoints\":[8290],\"characters\":\"⁢\"},\"&itilde;\":{\"codepoints\":[297],\"characters\":\"ĩ\"},\"&iukcy;\":{\"codepoints\":[1110],\"characters\":\"і\"},\"&iuml;\":{\"codepoints\":[239],\"characters\":\"ï\"},\"&iuml\":{\"codepoints\":[239],\"characters\":\"ï\"},\"&jcirc;\":{\"codepoints\":[309],\"characters\":\"ĵ\"},\"&jcy;\":{\"codepoints\":[1081],\"characters\":\"й\"},\"&jfr;\":{\"codepoints\":[120103],\"characters\":\"𝔧\"},\"&jmath;\":{\"codepoints\":[567],\"characters\":\"ȷ\"},\"&jopf;\":{\"codepoints\":[120155],\"characters\":\"𝕛\"},\"&jscr;\":{\"codepoints\":[119999],\"characters\":\"𝒿\"},\"&jsercy;\":{\"codepoints\":[1112],\"characters\":\"ј\"},\"&jukcy;\":{\"codepoints\":[1108],\"characters\":\"є\"},\"&kappa;\":{\"codepoints\":[954],\"characters\":\"κ\"},\"&kappav;\":{\"codepoints\":[1008],\"characters\":\"ϰ\"},\"&kcedil;\":{\"codepoints\":[311],\"characters\":\"ķ\"},\"&kcy;\":{\"codepoints\":[1082],\"characters\":\"к\"},\"&kfr;\":{\"codepoints\":[120104],\"characters\":\"𝔨\"},\"&kgreen;\":{\"codepoints\":[312],\"characters\":\"ĸ\"},\"&khcy;\":{\"codepoints\":[1093],\"characters\":\"х\"},\"&kjcy;\":{\"codepoints\":[1116],\"characters\":\"ќ\"},\"&kopf;\":{\"codepoints\":[120156],\"characters\":\"𝕜\"},\"&kscr;\":{\"codepoints\":[120000],\"characters\":\"𝓀\"},\"&lAarr;\":{\"codepoints\":[8666],\"characters\":\"⇚\"},\"&lArr;\":{\"codepoints\":[8656],\"characters\":\"⇐\"},\"&lAtail;\":{\"codepoints\":[10523],\"characters\":\"⤛\"},\"&lBarr;\":{\"codepoints\":[10510],\"characters\":\"⤎\"},\"&lE;\":{\"codepoints\":[8806],\"characters\":\"≦\"},\"&lEg;\":{\"codepoints\":[10891],\"characters\":\"⪋\"},\"&lHar;\":{\"codepoints\":[10594],\"characters\":\"⥢\"},\"&lacute;\":{\"codepoints\":[314],\"characters\":\"ĺ\"},\"&laemptyv;\":{\"codepoints\":[10676],\"characters\":\"⦴\"},\"&lagran;\":{\"codepoints\":[8466],\"characters\":\"ℒ\"},\"&lambda;\":{\"codepoints\":[955],\"characters\":\"λ\"},\"&lang;\":{\"codepoints\":[10216],\"characters\":\"⟨\"},\"&langd;\":{\"codepoints\":[10641],\"characters\":\"⦑\"},\"&langle;\":{\"codepoints\":[10216],\"characters\":\"⟨\"},\"&lap;\":{\"codepoints\":[10885],\"characters\":\"⪅\"},\"&laquo\":{\"codepoints\":[171],\"characters\":\"«\"},\"&laquo;\":{\"codepoints\":[171],\"characters\":\"«\"},\"&larr;\":{\"codepoints\":[8592],\"characters\":\"←\"},\"&larrb;\":{\"codepoints\":[8676],\"characters\":\"⇤\"},\"&larrbfs;\":{\"codepoints\":[10527],\"characters\":\"⤟\"},\"&larrfs;\":{\"codepoints\":[10525],\"characters\":\"⤝\"},\"&larrhk;\":{\"codepoints\":[8617],\"characters\":\"↩\"},\"&larrlp;\":{\"codepoints\":[8619],\"characters\":\"↫\"},\"&larrpl;\":{\"codepoints\":[10553],\"characters\":\"⤹\"},\"&larrsim;\":{\"codepoints\":[10611],\"characters\":\"⥳\"},\"&larrtl;\":{\"codepoints\":[8610],\"characters\":\"↢\"},\"&lat;\":{\"codepoints\":[10923],\"characters\":\"⪫\"},\"&latail;\":{\"codepoints\":[10521],\"characters\":\"⤙\"},\"&late;\":{\"codepoints\":[10925],\"characters\":\"⪭\"},\"&lates;\":{\"codepoints\":[10925,65024],\"characters\":\"⪭︀\"},\"&lbarr;\":{\"codepoints\":[10508],\"characters\":\"⤌\"},\"&lbbrk;\":{\"codepoints\":[10098],\"characters\":\"❲\"},\"&lbrace;\":{\"codepoints\":[123],\"characters\":\"{\"},\"&lbrack;\":{\"codepoints\":[91],\"characters\":\"[\"},\"&lbrke;\":{\"codepoints\":[10635],\"characters\":\"⦋\"},\"&lbrksld;\":{\"codepoints\":[10639],\"characters\":\"⦏\"},\"&lbrkslu;\":{\"codepoints\":[10637],\"characters\":\"⦍\"},\"&lcaron;\":{\"codepoints\":[318],\"characters\":\"ľ\"},\"&lcedil;\":{\"codepoints\":[316],\"characters\":\"ļ\"},\"&lceil;\":{\"codepoints\":[8968],\"characters\":\"⌈\"},\"&lcub;\":{\"codepoints\":[123],\"characters\":\"{\"},\"&lcy;\":{\"codepoints\":[1083],\"characters\":\"л\"},\"&ldca;\":{\"codepoints\":[10550],\"characters\":\"⤶\"},\"&ldquo;\":{\"codepoints\":[8220],\"characters\":\"“\"},\"&ldquor;\":{\"codepoints\":[8222],\"characters\":\"„\"},\"&ldrdhar;\":{\"codepoints\":[10599],\"characters\":\"⥧\"},\"&ldrushar;\":{\"codepoints\":[10571],\"characters\":\"⥋\"},\"&ldsh;\":{\"codepoints\":[8626],\"characters\":\"↲\"},\"&le;\":{\"codepoints\":[8804],\"characters\":\"≤\"},\"&leftarrow;\":{\"codepoints\":[8592],\"characters\":\"←\"},\"&leftarrowtail;\":{\"codepoints\":[8610],\"characters\":\"↢\"},\"&leftharpoondown;\":{\"codepoints\":[8637],\"characters\":\"↽\"},\"&leftharpoonup;\":{\"codepoints\":[8636],\"characters\":\"↼\"},\"&leftleftarrows;\":{\"codepoints\":[8647],\"characters\":\"⇇\"},\"&leftrightarrow;\":{\"codepoints\":[8596],\"characters\":\"↔\"},\"&leftrightarrows;\":{\"codepoints\":[8646],\"characters\":\"⇆\"},\"&leftrightharpoons;\":{\"codepoints\":[8651],\"characters\":\"⇋\"},\"&leftrightsquigarrow;\":{\"codepoints\":[8621],\"characters\":\"↭\"},\"&leftthreetimes;\":{\"codepoints\":[8907],\"characters\":\"⋋\"},\"&leg;\":{\"codepoints\":[8922],\"characters\":\"⋚\"},\"&leq;\":{\"codepoints\":[8804],\"characters\":\"≤\"},\"&leqq;\":{\"codepoints\":[8806],\"characters\":\"≦\"},\"&leqslant;\":{\"codepoints\":[10877],\"characters\":\"⩽\"},\"&les;\":{\"codepoints\":[10877],\"characters\":\"⩽\"},\"&lescc;\":{\"codepoints\":[10920],\"characters\":\"⪨\"},\"&lesdot;\":{\"codepoints\":[10879],\"characters\":\"⩿\"},\"&lesdoto;\":{\"codepoints\":[10881],\"characters\":\"⪁\"},\"&lesdotor;\":{\"codepoints\":[10883],\"characters\":\"⪃\"},\"&lesg;\":{\"codepoints\":[8922,65024],\"characters\":\"⋚︀\"},\"&lesges;\":{\"codepoints\":[10899],\"characters\":\"⪓\"},\"&lessapprox;\":{\"codepoints\":[10885],\"characters\":\"⪅\"},\"&lessdot;\":{\"codepoints\":[8918],\"characters\":\"⋖\"},\"&lesseqgtr;\":{\"codepoints\":[8922],\"characters\":\"⋚\"},\"&lesseqqgtr;\":{\"codepoints\":[10891],\"characters\":\"⪋\"},\"&lessgtr;\":{\"codepoints\":[8822],\"characters\":\"≶\"},\"&lesssim;\":{\"codepoints\":[8818],\"characters\":\"≲\"},\"&lfisht;\":{\"codepoints\":[10620],\"characters\":\"⥼\"},\"&lfloor;\":{\"codepoints\":[8970],\"characters\":\"⌊\"},\"&lfr;\":{\"codepoints\":[120105],\"characters\":\"𝔩\"},\"&lg;\":{\"codepoints\":[8822],\"characters\":\"≶\"},\"&lgE;\":{\"codepoints\":[10897],\"characters\":\"⪑\"},\"&lhard;\":{\"codepoints\":[8637],\"characters\":\"↽\"},\"&lharu;\":{\"codepoints\":[8636],\"characters\":\"↼\"},\"&lharul;\":{\"codepoints\":[10602],\"characters\":\"⥪\"},\"&lhblk;\":{\"codepoints\":[9604],\"characters\":\"▄\"},\"&ljcy;\":{\"codepoints\":[1113],\"characters\":\"љ\"},\"&ll;\":{\"codepoints\":[8810],\"characters\":\"≪\"},\"&llarr;\":{\"codepoints\":[8647],\"characters\":\"⇇\"},\"&llcorner;\":{\"codepoints\":[8990],\"characters\":\"⌞\"},\"&llhard;\":{\"codepoints\":[10603],\"characters\":\"⥫\"},\"&lltri;\":{\"codepoints\":[9722],\"characters\":\"◺\"},\"&lmidot;\":{\"codepoints\":[320],\"characters\":\"ŀ\"},\"&lmoust;\":{\"codepoints\":[9136],\"characters\":\"⎰\"},\"&lmoustache;\":{\"codepoints\":[9136],\"characters\":\"⎰\"},\"&lnE;\":{\"codepoints\":[8808],\"characters\":\"≨\"},\"&lnap;\":{\"codepoints\":[10889],\"characters\":\"⪉\"},\"&lnapprox;\":{\"codepoints\":[10889],\"characters\":\"⪉\"},\"&lne;\":{\"codepoints\":[10887],\"characters\":\"⪇\"},\"&lneq;\":{\"codepoints\":[10887],\"characters\":\"⪇\"},\"&lneqq;\":{\"codepoints\":[8808],\"characters\":\"≨\"},\"&lnsim;\":{\"codepoints\":[8934],\"characters\":\"⋦\"},\"&loang;\":{\"codepoints\":[10220],\"characters\":\"⟬\"},\"&loarr;\":{\"codepoints\":[8701],\"characters\":\"⇽\"},\"&lobrk;\":{\"codepoints\":[10214],\"characters\":\"⟦\"},\"&longleftarrow;\":{\"codepoints\":[10229],\"characters\":\"⟵\"},\"&longleftrightarrow;\":{\"codepoints\":[10231],\"characters\":\"⟷\"},\"&longmapsto;\":{\"codepoints\":[10236],\"characters\":\"⟼\"},\"&longrightarrow;\":{\"codepoints\":[10230],\"characters\":\"⟶\"},\"&looparrowleft;\":{\"codepoints\":[8619],\"characters\":\"↫\"},\"&looparrowright;\":{\"codepoints\":[8620],\"characters\":\"↬\"},\"&lopar;\":{\"codepoints\":[10629],\"characters\":\"⦅\"},\"&lopf;\":{\"codepoints\":[120157],\"characters\":\"𝕝\"},\"&loplus;\":{\"codepoints\":[10797],\"characters\":\"⨭\"},\"&lotimes;\":{\"codepoints\":[10804],\"characters\":\"⨴\"},\"&lowast;\":{\"codepoints\":[8727],\"characters\":\"∗\"},\"&lowbar;\":{\"codepoints\":[95],\"characters\":\"_\"},\"&loz;\":{\"codepoints\":[9674],\"characters\":\"◊\"},\"&lozenge;\":{\"codepoints\":[9674],\"characters\":\"◊\"},\"&lozf;\":{\"codepoints\":[10731],\"characters\":\"⧫\"},\"&lpar;\":{\"codepoints\":[40],\"characters\":\"(\"},\"&lparlt;\":{\"codepoints\":[10643],\"characters\":\"⦓\"},\"&lrarr;\":{\"codepoints\":[8646],\"characters\":\"⇆\"},\"&lrcorner;\":{\"codepoints\":[8991],\"characters\":\"⌟\"},\"&lrhar;\":{\"codepoints\":[8651],\"characters\":\"⇋\"},\"&lrhard;\":{\"codepoints\":[10605],\"characters\":\"⥭\"},\"&lrm;\":{\"codepoints\":[8206],\"characters\":\"‎\"},\"&lrtri;\":{\"codepoints\":[8895],\"characters\":\"⊿\"},\"&lsaquo;\":{\"codepoints\":[8249],\"characters\":\"‹\"},\"&lscr;\":{\"codepoints\":[120001],\"characters\":\"𝓁\"},\"&lsh;\":{\"codepoints\":[8624],\"characters\":\"↰\"},\"&lsim;\":{\"codepoints\":[8818],\"characters\":\"≲\"},\"&lsime;\":{\"codepoints\":[10893],\"characters\":\"⪍\"},\"&lsimg;\":{\"codepoints\":[10895],\"characters\":\"⪏\"},\"&lsqb;\":{\"codepoints\":[91],\"characters\":\"[\"},\"&lsquo;\":{\"codepoints\":[8216],\"characters\":\"‘\"},\"&lsquor;\":{\"codepoints\":[8218],\"characters\":\"‚\"},\"&lstrok;\":{\"codepoints\":[322],\"characters\":\"ł\"},\"&lt;\":{\"codepoints\":[60],\"characters\":\"<\"},\"&lt\":{\"codepoints\":[60],\"characters\":\"<\"},\"&ltcc;\":{\"codepoints\":[10918],\"characters\":\"⪦\"},\"&ltcir;\":{\"codepoints\":[10873],\"characters\":\"⩹\"},\"&ltdot;\":{\"codepoints\":[8918],\"characters\":\"⋖\"},\"&lthree;\":{\"codepoints\":[8907],\"characters\":\"⋋\"},\"&ltimes;\":{\"codepoints\":[8905],\"characters\":\"⋉\"},\"&ltlarr;\":{\"codepoints\":[10614],\"characters\":\"⥶\"},\"&ltquest;\":{\"codepoints\":[10875],\"characters\":\"⩻\"},\"&ltrPar;\":{\"codepoints\":[10646],\"characters\":\"⦖\"},\"&ltri;\":{\"codepoints\":[9667],\"characters\":\"◃\"},\"&ltrie;\":{\"codepoints\":[8884],\"characters\":\"⊴\"},\"&ltrif;\":{\"codepoints\":[9666],\"characters\":\"◂\"},\"&lurdshar;\":{\"codepoints\":[10570],\"characters\":\"⥊\"},\"&luruhar;\":{\"codepoints\":[10598],\"characters\":\"⥦\"},\"&lvertneqq;\":{\"codepoints\":[8808,65024],\"characters\":\"≨︀\"},\"&lvnE;\":{\"codepoints\":[8808,65024],\"characters\":\"≨︀\"},\"&mDDot;\":{\"codepoints\":[8762],\"characters\":\"∺\"},\"&macr;\":{\"codepoints\":[175],\"characters\":\"¯\"},\"&macr\":{\"codepoints\":[175],\"characters\":\"¯\"},\"&male;\":{\"codepoints\":[9794],\"characters\":\"♂\"},\"&malt;\":{\"codepoints\":[10016],\"characters\":\"✠\"},\"&maltese;\":{\"codepoints\":[10016],\"characters\":\"✠\"},\"&map;\":{\"codepoints\":[8614],\"characters\":\"↦\"},\"&mapsto;\":{\"codepoints\":[8614],\"characters\":\"↦\"},\"&mapstodown;\":{\"codepoints\":[8615],\"characters\":\"↧\"},\"&mapstoleft;\":{\"codepoints\":[8612],\"characters\":\"↤\"},\"&mapstoup;\":{\"codepoints\":[8613],\"characters\":\"↥\"},\"&marker;\":{\"codepoints\":[9646],\"characters\":\"▮\"},\"&mcomma;\":{\"codepoints\":[10793],\"characters\":\"⨩\"},\"&mcy;\":{\"codepoints\":[1084],\"characters\":\"м\"},\"&mdash;\":{\"codepoints\":[8212],\"characters\":\"—\"},\"&measuredangle;\":{\"codepoints\":[8737],\"characters\":\"∡\"},\"&mfr;\":{\"codepoints\":[120106],\"characters\":\"𝔪\"},\"&mho;\":{\"codepoints\":[8487],\"characters\":\"℧\"},\"&micro;\":{\"codepoints\":[181],\"characters\":\"µ\"},\"&micro\":{\"codepoints\":[181],\"characters\":\"µ\"},\"&mid;\":{\"codepoints\":[8739],\"characters\":\"∣\"},\"&midast;\":{\"codepoints\":[42],\"characters\":\"*\"},\"&midcir;\":{\"codepoints\":[10992],\"characters\":\"⫰\"},\"&middot;\":{\"codepoints\":[183],\"characters\":\"·\"},\"&middot\":{\"codepoints\":[183],\"characters\":\"·\"},\"&minus;\":{\"codepoints\":[8722],\"characters\":\"−\"},\"&minusb;\":{\"codepoints\":[8863],\"characters\":\"⊟\"},\"&minusd;\":{\"codepoints\":[8760],\"characters\":\"∸\"},\"&minusdu;\":{\"codepoints\":[10794],\"characters\":\"⨪\"},\"&mlcp;\":{\"codepoints\":[10971],\"characters\":\"⫛\"},\"&mldr;\":{\"codepoints\":[8230],\"characters\":\"…\"},\"&mnplus;\":{\"codepoints\":[8723],\"characters\":\"∓\"},\"&models;\":{\"codepoints\":[8871],\"characters\":\"⊧\"},\"&mopf;\":{\"codepoints\":[120158],\"characters\":\"𝕞\"},\"&mp;\":{\"codepoints\":[8723],\"characters\":\"∓\"},\"&mscr;\":{\"codepoints\":[120002],\"characters\":\"𝓂\"},\"&mstpos;\":{\"codepoints\":[8766],\"characters\":\"∾\"},\"&mu;\":{\"codepoints\":[956],\"characters\":\"μ\"},\"&multimap;\":{\"codepoints\":[8888],\"characters\":\"⊸\"},\"&mumap;\":{\"codepoints\":[8888],\"characters\":\"⊸\"},\"&nGg;\":{\"codepoints\":[8921,824],\"characters\":\"⋙̸\"},\"&nGt;\":{\"codepoints\":[8811,8402],\"characters\":\"≫⃒\"},\"&nGtv;\":{\"codepoints\":[8811,824],\"characters\":\"≫̸\"},\"&nLeftarrow;\":{\"codepoints\":[8653],\"characters\":\"⇍\"},\"&nLeftrightarrow;\":{\"codepoints\":[8654],\"characters\":\"⇎\"},\"&nLl;\":{\"codepoints\":[8920,824],\"characters\":\"⋘̸\"},\"&nLt;\":{\"codepoints\":[8810,8402],\"characters\":\"≪⃒\"},\"&nLtv;\":{\"codepoints\":[8810,824],\"characters\":\"≪̸\"},\"&nRightarrow;\":{\"codepoints\":[8655],\"characters\":\"⇏\"},\"&nVDash;\":{\"codepoints\":[8879],\"characters\":\"⊯\"},\"&nVdash;\":{\"codepoints\":[8878],\"characters\":\"⊮\"},\"&nabla;\":{\"codepoints\":[8711],\"characters\":\"∇\"},\"&nacute;\":{\"codepoints\":[324],\"characters\":\"ń\"},\"&nang;\":{\"codepoints\":[8736,8402],\"characters\":\"∠⃒\"},\"&nap;\":{\"codepoints\":[8777],\"characters\":\"≉\"},\"&napE;\":{\"codepoints\":[10864,824],\"characters\":\"⩰̸\"},\"&napid;\":{\"codepoints\":[8779,824],\"characters\":\"≋̸\"},\"&napos;\":{\"codepoints\":[329],\"characters\":\"ʼn\"},\"&napprox;\":{\"codepoints\":[8777],\"characters\":\"≉\"},\"&natur;\":{\"codepoints\":[9838],\"characters\":\"♮\"},\"&natural;\":{\"codepoints\":[9838],\"characters\":\"♮\"},\"&naturals;\":{\"codepoints\":[8469],\"characters\":\"ℕ\"},\"&nbsp\":{\"codepoints\":[160],\"characters\":\" \"},\"&nbsp;\":{\"codepoints\":[160],\"characters\":\" \"},\"&nbump;\":{\"codepoints\":[8782,824],\"characters\":\"≎̸\"},\"&nbumpe;\":{\"codepoints\":[8783,824],\"characters\":\"≏̸\"},\"&ncap;\":{\"codepoints\":[10819],\"characters\":\"⩃\"},\"&ncaron;\":{\"codepoints\":[328],\"characters\":\"ň\"},\"&ncedil;\":{\"codepoints\":[326],\"characters\":\"ņ\"},\"&ncong;\":{\"codepoints\":[8775],\"characters\":\"≇\"},\"&ncongdot;\":{\"codepoints\":[10861,824],\"characters\":\"⩭̸\"},\"&ncup;\":{\"codepoints\":[10818],\"characters\":\"⩂\"},\"&ncy;\":{\"codepoints\":[1085],\"characters\":\"н\"},\"&ndash;\":{\"codepoints\":[8211],\"characters\":\"–\"},\"&ne;\":{\"codepoints\":[8800],\"characters\":\"≠\"},\"&neArr;\":{\"codepoints\":[8663],\"characters\":\"⇗\"},\"&nearhk;\":{\"codepoints\":[10532],\"characters\":\"⤤\"},\"&nearr;\":{\"codepoints\":[8599],\"characters\":\"↗\"},\"&nearrow;\":{\"codepoints\":[8599],\"characters\":\"↗\"},\"&nedot;\":{\"codepoints\":[8784,824],\"characters\":\"≐̸\"},\"&nequiv;\":{\"codepoints\":[8802],\"characters\":\"≢\"},\"&nesear;\":{\"codepoints\":[10536],\"characters\":\"⤨\"},\"&nesim;\":{\"codepoints\":[8770,824],\"characters\":\"≂̸\"},\"&nexist;\":{\"codepoints\":[8708],\"characters\":\"∄\"},\"&nexists;\":{\"codepoints\":[8708],\"characters\":\"∄\"},\"&nfr;\":{\"codepoints\":[120107],\"characters\":\"𝔫\"},\"&ngE;\":{\"codepoints\":[8807,824],\"characters\":\"≧̸\"},\"&nge;\":{\"codepoints\":[8817],\"characters\":\"≱\"},\"&ngeq;\":{\"codepoints\":[8817],\"characters\":\"≱\"},\"&ngeqq;\":{\"codepoints\":[8807,824],\"characters\":\"≧̸\"},\"&ngeqslant;\":{\"codepoints\":[10878,824],\"characters\":\"⩾̸\"},\"&nges;\":{\"codepoints\":[10878,824],\"characters\":\"⩾̸\"},\"&ngsim;\":{\"codepoints\":[8821],\"characters\":\"≵\"},\"&ngt;\":{\"codepoints\":[8815],\"characters\":\"≯\"},\"&ngtr;\":{\"codepoints\":[8815],\"characters\":\"≯\"},\"&nhArr;\":{\"codepoints\":[8654],\"characters\":\"⇎\"},\"&nharr;\":{\"codepoints\":[8622],\"characters\":\"↮\"},\"&nhpar;\":{\"codepoints\":[10994],\"characters\":\"⫲\"},\"&ni;\":{\"codepoints\":[8715],\"characters\":\"∋\"},\"&nis;\":{\"codepoints\":[8956],\"characters\":\"⋼\"},\"&nisd;\":{\"codepoints\":[8954],\"characters\":\"⋺\"},\"&niv;\":{\"codepoints\":[8715],\"characters\":\"∋\"},\"&njcy;\":{\"codepoints\":[1114],\"characters\":\"њ\"},\"&nlArr;\":{\"codepoints\":[8653],\"characters\":\"⇍\"},\"&nlE;\":{\"codepoints\":[8806,824],\"characters\":\"≦̸\"},\"&nlarr;\":{\"codepoints\":[8602],\"characters\":\"↚\"},\"&nldr;\":{\"codepoints\":[8229],\"characters\":\"‥\"},\"&nle;\":{\"codepoints\":[8816],\"characters\":\"≰\"},\"&nleftarrow;\":{\"codepoints\":[8602],\"characters\":\"↚\"},\"&nleftrightarrow;\":{\"codepoints\":[8622],\"characters\":\"↮\"},\"&nleq;\":{\"codepoints\":[8816],\"characters\":\"≰\"},\"&nleqq;\":{\"codepoints\":[8806,824],\"characters\":\"≦̸\"},\"&nleqslant;\":{\"codepoints\":[10877,824],\"characters\":\"⩽̸\"},\"&nles;\":{\"codepoints\":[10877,824],\"characters\":\"⩽̸\"},\"&nless;\":{\"codepoints\":[8814],\"characters\":\"≮\"},\"&nlsim;\":{\"codepoints\":[8820],\"characters\":\"≴\"},\"&nlt;\":{\"codepoints\":[8814],\"characters\":\"≮\"},\"&nltri;\":{\"codepoints\":[8938],\"characters\":\"⋪\"},\"&nltrie;\":{\"codepoints\":[8940],\"characters\":\"⋬\"},\"&nmid;\":{\"codepoints\":[8740],\"characters\":\"∤\"},\"&nopf;\":{\"codepoints\":[120159],\"characters\":\"𝕟\"},\"&not\":{\"codepoints\":[172],\"characters\":\"¬\"},\"&not;\":{\"codepoints\":[172],\"characters\":\"¬\"},\"&notin;\":{\"codepoints\":[8713],\"characters\":\"∉\"},\"&notinE;\":{\"codepoints\":[8953,824],\"characters\":\"⋹̸\"},\"&notindot;\":{\"codepoints\":[8949,824],\"characters\":\"⋵̸\"},\"&notinva;\":{\"codepoints\":[8713],\"characters\":\"∉\"},\"&notinvb;\":{\"codepoints\":[8951],\"characters\":\"⋷\"},\"&notinvc;\":{\"codepoints\":[8950],\"characters\":\"⋶\"},\"&notni;\":{\"codepoints\":[8716],\"characters\":\"∌\"},\"&notniva;\":{\"codepoints\":[8716],\"characters\":\"∌\"},\"&notnivb;\":{\"codepoints\":[8958],\"characters\":\"⋾\"},\"&notnivc;\":{\"codepoints\":[8957],\"characters\":\"⋽\"},\"&npar;\":{\"codepoints\":[8742],\"characters\":\"∦\"},\"&nparallel;\":{\"codepoints\":[8742],\"characters\":\"∦\"},\"&nparsl;\":{\"codepoints\":[11005,8421],\"characters\":\"⫽⃥\"},\"&npart;\":{\"codepoints\":[8706,824],\"characters\":\"∂̸\"},\"&npolint;\":{\"codepoints\":[10772],\"characters\":\"⨔\"},\"&npr;\":{\"codepoints\":[8832],\"characters\":\"⊀\"},\"&nprcue;\":{\"codepoints\":[8928],\"characters\":\"⋠\"},\"&npre;\":{\"codepoints\":[10927,824],\"characters\":\"⪯̸\"},\"&nprec;\":{\"codepoints\":[8832],\"characters\":\"⊀\"},\"&npreceq;\":{\"codepoints\":[10927,824],\"characters\":\"⪯̸\"},\"&nrArr;\":{\"codepoints\":[8655],\"characters\":\"⇏\"},\"&nrarr;\":{\"codepoints\":[8603],\"characters\":\"↛\"},\"&nrarrc;\":{\"codepoints\":[10547,824],\"characters\":\"⤳̸\"},\"&nrarrw;\":{\"codepoints\":[8605,824],\"characters\":\"↝̸\"},\"&nrightarrow;\":{\"codepoints\":[8603],\"characters\":\"↛\"},\"&nrtri;\":{\"codepoints\":[8939],\"characters\":\"⋫\"},\"&nrtrie;\":{\"codepoints\":[8941],\"characters\":\"⋭\"},\"&nsc;\":{\"codepoints\":[8833],\"characters\":\"⊁\"},\"&nsccue;\":{\"codepoints\":[8929],\"characters\":\"⋡\"},\"&nsce;\":{\"codepoints\":[10928,824],\"characters\":\"⪰̸\"},\"&nscr;\":{\"codepoints\":[120003],\"characters\":\"𝓃\"},\"&nshortmid;\":{\"codepoints\":[8740],\"characters\":\"∤\"},\"&nshortparallel;\":{\"codepoints\":[8742],\"characters\":\"∦\"},\"&nsim;\":{\"codepoints\":[8769],\"characters\":\"≁\"},\"&nsime;\":{\"codepoints\":[8772],\"characters\":\"≄\"},\"&nsimeq;\":{\"codepoints\":[8772],\"characters\":\"≄\"},\"&nsmid;\":{\"codepoints\":[8740],\"characters\":\"∤\"},\"&nspar;\":{\"codepoints\":[8742],\"characters\":\"∦\"},\"&nsqsube;\":{\"codepoints\":[8930],\"characters\":\"⋢\"},\"&nsqsupe;\":{\"codepoints\":[8931],\"characters\":\"⋣\"},\"&nsub;\":{\"codepoints\":[8836],\"characters\":\"⊄\"},\"&nsubE;\":{\"codepoints\":[10949,824],\"characters\":\"⫅̸\"},\"&nsube;\":{\"codepoints\":[8840],\"characters\":\"⊈\"},\"&nsubset;\":{\"codepoints\":[8834,8402],\"characters\":\"⊂⃒\"},\"&nsubseteq;\":{\"codepoints\":[8840],\"characters\":\"⊈\"},\"&nsubseteqq;\":{\"codepoints\":[10949,824],\"characters\":\"⫅̸\"},\"&nsucc;\":{\"codepoints\":[8833],\"characters\":\"⊁\"},\"&nsucceq;\":{\"codepoints\":[10928,824],\"characters\":\"⪰̸\"},\"&nsup;\":{\"codepoints\":[8837],\"characters\":\"⊅\"},\"&nsupE;\":{\"codepoints\":[10950,824],\"characters\":\"⫆̸\"},\"&nsupe;\":{\"codepoints\":[8841],\"characters\":\"⊉\"},\"&nsupset;\":{\"codepoints\":[8835,8402],\"characters\":\"⊃⃒\"},\"&nsupseteq;\":{\"codepoints\":[8841],\"characters\":\"⊉\"},\"&nsupseteqq;\":{\"codepoints\":[10950,824],\"characters\":\"⫆̸\"},\"&ntgl;\":{\"codepoints\":[8825],\"characters\":\"≹\"},\"&ntilde;\":{\"codepoints\":[241],\"characters\":\"ñ\"},\"&ntilde\":{\"codepoints\":[241],\"characters\":\"ñ\"},\"&ntlg;\":{\"codepoints\":[8824],\"characters\":\"≸\"},\"&ntriangleleft;\":{\"codepoints\":[8938],\"characters\":\"⋪\"},\"&ntrianglelefteq;\":{\"codepoints\":[8940],\"characters\":\"⋬\"},\"&ntriangleright;\":{\"codepoints\":[8939],\"characters\":\"⋫\"},\"&ntrianglerighteq;\":{\"codepoints\":[8941],\"characters\":\"⋭\"},\"&nu;\":{\"codepoints\":[957],\"characters\":\"ν\"},\"&num;\":{\"codepoints\":[35],\"characters\":\"#\"},\"&numero;\":{\"codepoints\":[8470],\"characters\":\"№\"},\"&numsp;\":{\"codepoints\":[8199],\"characters\":\" \"},\"&nvDash;\":{\"codepoints\":[8877],\"characters\":\"⊭\"},\"&nvHarr;\":{\"codepoints\":[10500],\"characters\":\"⤄\"},\"&nvap;\":{\"codepoints\":[8781,8402],\"characters\":\"≍⃒\"},\"&nvdash;\":{\"codepoints\":[8876],\"characters\":\"⊬\"},\"&nvge;\":{\"codepoints\":[8805,8402],\"characters\":\"≥⃒\"},\"&nvgt;\":{\"codepoints\":[62,8402],\"characters\":\">⃒\"},\"&nvinfin;\":{\"codepoints\":[10718],\"characters\":\"⧞\"},\"&nvlArr;\":{\"codepoints\":[10498],\"characters\":\"⤂\"},\"&nvle;\":{\"codepoints\":[8804,8402],\"characters\":\"≤⃒\"},\"&nvlt;\":{\"codepoints\":[60,8402],\"characters\":\"<⃒\"},\"&nvltrie;\":{\"codepoints\":[8884,8402],\"characters\":\"⊴⃒\"},\"&nvrArr;\":{\"codepoints\":[10499],\"characters\":\"⤃\"},\"&nvrtrie;\":{\"codepoints\":[8885,8402],\"characters\":\"⊵⃒\"},\"&nvsim;\":{\"codepoints\":[8764,8402],\"characters\":\"∼⃒\"},\"&nwArr;\":{\"codepoints\":[8662],\"characters\":\"⇖\"},\"&nwarhk;\":{\"codepoints\":[10531],\"characters\":\"⤣\"},\"&nwarr;\":{\"codepoints\":[8598],\"characters\":\"↖\"},\"&nwarrow;\":{\"codepoints\":[8598],\"characters\":\"↖\"},\"&nwnear;\":{\"codepoints\":[10535],\"characters\":\"⤧\"},\"&oS;\":{\"codepoints\":[9416],\"characters\":\"Ⓢ\"},\"&oacute;\":{\"codepoints\":[243],\"characters\":\"ó\"},\"&oacute\":{\"codepoints\":[243],\"characters\":\"ó\"},\"&oast;\":{\"codepoints\":[8859],\"characters\":\"⊛\"},\"&ocir;\":{\"codepoints\":[8858],\"characters\":\"⊚\"},\"&ocirc;\":{\"codepoints\":[244],\"characters\":\"ô\"},\"&ocirc\":{\"codepoints\":[244],\"characters\":\"ô\"},\"&ocy;\":{\"codepoints\":[1086],\"characters\":\"о\"},\"&odash;\":{\"codepoints\":[8861],\"characters\":\"⊝\"},\"&odblac;\":{\"codepoints\":[337],\"characters\":\"ő\"},\"&odiv;\":{\"codepoints\":[10808],\"characters\":\"⨸\"},\"&odot;\":{\"codepoints\":[8857],\"characters\":\"⊙\"},\"&odsold;\":{\"codepoints\":[10684],\"characters\":\"⦼\"},\"&oelig;\":{\"codepoints\":[339],\"characters\":\"œ\"},\"&ofcir;\":{\"codepoints\":[10687],\"characters\":\"⦿\"},\"&ofr;\":{\"codepoints\":[120108],\"characters\":\"𝔬\"},\"&ogon;\":{\"codepoints\":[731],\"characters\":\"˛\"},\"&ograve;\":{\"codepoints\":[242],\"characters\":\"ò\"},\"&ograve\":{\"codepoints\":[242],\"characters\":\"ò\"},\"&ogt;\":{\"codepoints\":[10689],\"characters\":\"⧁\"},\"&ohbar;\":{\"codepoints\":[10677],\"characters\":\"⦵\"},\"&ohm;\":{\"codepoints\":[937],\"characters\":\"Ω\"},\"&oint;\":{\"codepoints\":[8750],\"characters\":\"∮\"},\"&olarr;\":{\"codepoints\":[8634],\"characters\":\"↺\"},\"&olcir;\":{\"codepoints\":[10686],\"characters\":\"⦾\"},\"&olcross;\":{\"codepoints\":[10683],\"characters\":\"⦻\"},\"&oline;\":{\"codepoints\":[8254],\"characters\":\"‾\"},\"&olt;\":{\"codepoints\":[10688],\"characters\":\"⧀\"},\"&omacr;\":{\"codepoints\":[333],\"characters\":\"ō\"},\"&omega;\":{\"codepoints\":[969],\"characters\":\"ω\"},\"&omicron;\":{\"codepoints\":[959],\"characters\":\"ο\"},\"&omid;\":{\"codepoints\":[10678],\"characters\":\"⦶\"},\"&ominus;\":{\"codepoints\":[8854],\"characters\":\"⊖\"},\"&oopf;\":{\"codepoints\":[120160],\"characters\":\"𝕠\"},\"&opar;\":{\"codepoints\":[10679],\"characters\":\"⦷\"},\"&operp;\":{\"codepoints\":[10681],\"characters\":\"⦹\"},\"&oplus;\":{\"codepoints\":[8853],\"characters\":\"⊕\"},\"&or;\":{\"codepoints\":[8744],\"characters\":\"∨\"},\"&orarr;\":{\"codepoints\":[8635],\"characters\":\"↻\"},\"&ord;\":{\"codepoints\":[10845],\"characters\":\"⩝\"},\"&order;\":{\"codepoints\":[8500],\"characters\":\"ℴ\"},\"&orderof;\":{\"codepoints\":[8500],\"characters\":\"ℴ\"},\"&ordf;\":{\"codepoints\":[170],\"characters\":\"ª\"},\"&ordf\":{\"codepoints\":[170],\"characters\":\"ª\"},\"&ordm;\":{\"codepoints\":[186],\"characters\":\"º\"},\"&ordm\":{\"codepoints\":[186],\"characters\":\"º\"},\"&origof;\":{\"codepoints\":[8886],\"characters\":\"⊶\"},\"&oror;\":{\"codepoints\":[10838],\"characters\":\"⩖\"},\"&orslope;\":{\"codepoints\":[10839],\"characters\":\"⩗\"},\"&orv;\":{\"codepoints\":[10843],\"characters\":\"⩛\"},\"&oscr;\":{\"codepoints\":[8500],\"characters\":\"ℴ\"},\"&oslash;\":{\"codepoints\":[248],\"characters\":\"ø\"},\"&oslash\":{\"codepoints\":[248],\"characters\":\"ø\"},\"&osol;\":{\"codepoints\":[8856],\"characters\":\"⊘\"},\"&otilde;\":{\"codepoints\":[245],\"characters\":\"õ\"},\"&otilde\":{\"codepoints\":[245],\"characters\":\"õ\"},\"&otimes;\":{\"codepoints\":[8855],\"characters\":\"⊗\"},\"&otimesas;\":{\"codepoints\":[10806],\"characters\":\"⨶\"},\"&ouml\":{\"codepoints\":[246],\"characters\":\"ö\"},\"&ouml;\":{\"codepoints\":[246],\"characters\":\"ö\"},\"&ovbar;\":{\"codepoints\":[9021],\"characters\":\"⌽\"},\"&par;\":{\"codepoints\":[8741],\"characters\":\"∥\"},\"&para;\":{\"codepoints\":[182],\"characters\":\"¶\"},\"&para\":{\"codepoints\":[182],\"characters\":\"¶\"},\"&parallel;\":{\"codepoints\":[8741],\"characters\":\"∥\"},\"&parsim;\":{\"codepoints\":[10995],\"characters\":\"⫳\"},\"&parsl;\":{\"codepoints\":[11005],\"characters\":\"⫽\"},\"&part;\":{\"codepoints\":[8706],\"characters\":\"∂\"},\"&pcy;\":{\"codepoints\":[1087],\"characters\":\"п\"},\"&percnt;\":{\"codepoints\":[37],\"characters\":\"%\"},\"&period;\":{\"codepoints\":[46],\"characters\":\".\"},\"&permil;\":{\"codepoints\":[8240],\"characters\":\"‰\"},\"&perp;\":{\"codepoints\":[8869],\"characters\":\"⊥\"},\"&pertenk;\":{\"codepoints\":[8241],\"characters\":\"‱\"},\"&pfr;\":{\"codepoints\":[120109],\"characters\":\"𝔭\"},\"&phi;\":{\"codepoints\":[966],\"characters\":\"φ\"},\"&phiv;\":{\"codepoints\":[981],\"characters\":\"ϕ\"},\"&phmmat;\":{\"codepoints\":[8499],\"characters\":\"ℳ\"},\"&phone;\":{\"codepoints\":[9742],\"characters\":\"☎\"},\"&pi;\":{\"codepoints\":[960],\"characters\":\"π\"},\"&pitchfork;\":{\"codepoints\":[8916],\"characters\":\"⋔\"},\"&piv;\":{\"codepoints\":[982],\"characters\":\"ϖ\"},\"&planck;\":{\"codepoints\":[8463],\"characters\":\"ℏ\"},\"&planckh;\":{\"codepoints\":[8462],\"characters\":\"ℎ\"},\"&plankv;\":{\"codepoints\":[8463],\"characters\":\"ℏ\"},\"&plus;\":{\"codepoints\":[43],\"characters\":\"+\"},\"&plusacir;\":{\"codepoints\":[10787],\"characters\":\"⨣\"},\"&plusb;\":{\"codepoints\":[8862],\"characters\":\"⊞\"},\"&pluscir;\":{\"codepoints\":[10786],\"characters\":\"⨢\"},\"&plusdo;\":{\"codepoints\":[8724],\"characters\":\"∔\"},\"&plusdu;\":{\"codepoints\":[10789],\"characters\":\"⨥\"},\"&pluse;\":{\"codepoints\":[10866],\"characters\":\"⩲\"},\"&plusmn;\":{\"codepoints\":[177],\"characters\":\"±\"},\"&plusmn\":{\"codepoints\":[177],\"characters\":\"±\"},\"&plussim;\":{\"codepoints\":[10790],\"characters\":\"⨦\"},\"&plustwo;\":{\"codepoints\":[10791],\"characters\":\"⨧\"},\"&pm;\":{\"codepoints\":[177],\"characters\":\"±\"},\"&pointint;\":{\"codepoints\":[10773],\"characters\":\"⨕\"},\"&popf;\":{\"codepoints\":[120161],\"characters\":\"𝕡\"},\"&pound;\":{\"codepoints\":[163],\"characters\":\"£\"},\"&pound\":{\"codepoints\":[163],\"characters\":\"£\"},\"&pr;\":{\"codepoints\":[8826],\"characters\":\"≺\"},\"&prE;\":{\"codepoints\":[10931],\"characters\":\"⪳\"},\"&prap;\":{\"codepoints\":[10935],\"characters\":\"⪷\"},\"&prcue;\":{\"codepoints\":[8828],\"characters\":\"≼\"},\"&pre;\":{\"codepoints\":[10927],\"characters\":\"⪯\"},\"&prec;\":{\"codepoints\":[8826],\"characters\":\"≺\"},\"&precapprox;\":{\"codepoints\":[10935],\"characters\":\"⪷\"},\"&preccurlyeq;\":{\"codepoints\":[8828],\"characters\":\"≼\"},\"&preceq;\":{\"codepoints\":[10927],\"characters\":\"⪯\"},\"&precnapprox;\":{\"codepoints\":[10937],\"characters\":\"⪹\"},\"&precneqq;\":{\"codepoints\":[10933],\"characters\":\"⪵\"},\"&precnsim;\":{\"codepoints\":[8936],\"characters\":\"⋨\"},\"&precsim;\":{\"codepoints\":[8830],\"characters\":\"≾\"},\"&prime;\":{\"codepoints\":[8242],\"characters\":\"′\"},\"&primes;\":{\"codepoints\":[8473],\"characters\":\"ℙ\"},\"&prnE;\":{\"codepoints\":[10933],\"characters\":\"⪵\"},\"&prnap;\":{\"codepoints\":[10937],\"characters\":\"⪹\"},\"&prnsim;\":{\"codepoints\":[8936],\"characters\":\"⋨\"},\"&prod;\":{\"codepoints\":[8719],\"characters\":\"∏\"},\"&profalar;\":{\"codepoints\":[9006],\"characters\":\"⌮\"},\"&profline;\":{\"codepoints\":[8978],\"characters\":\"⌒\"},\"&profsurf;\":{\"codepoints\":[8979],\"characters\":\"⌓\"},\"&prop;\":{\"codepoints\":[8733],\"characters\":\"∝\"},\"&propto;\":{\"codepoints\":[8733],\"characters\":\"∝\"},\"&prsim;\":{\"codepoints\":[8830],\"characters\":\"≾\"},\"&prurel;\":{\"codepoints\":[8880],\"characters\":\"⊰\"},\"&pscr;\":{\"codepoints\":[120005],\"characters\":\"𝓅\"},\"&psi;\":{\"codepoints\":[968],\"characters\":\"ψ\"},\"&puncsp;\":{\"codepoints\":[8200],\"characters\":\" \"},\"&qfr;\":{\"codepoints\":[120110],\"characters\":\"𝔮\"},\"&qint;\":{\"codepoints\":[10764],\"characters\":\"⨌\"},\"&qopf;\":{\"codepoints\":[120162],\"characters\":\"𝕢\"},\"&qprime;\":{\"codepoints\":[8279],\"characters\":\"⁗\"},\"&qscr;\":{\"codepoints\":[120006],\"characters\":\"𝓆\"},\"&quaternions;\":{\"codepoints\":[8461],\"characters\":\"ℍ\"},\"&quatint;\":{\"codepoints\":[10774],\"characters\":\"⨖\"},\"&quest;\":{\"codepoints\":[63],\"characters\":\"?\"},\"&questeq;\":{\"codepoints\":[8799],\"characters\":\"≟\"},\"&quot;\":{\"codepoints\":[34],\"characters\":\"\\\"\"},\"&quot\":{\"codepoints\":[34],\"characters\":\"\\\"\"},\"&rAarr;\":{\"codepoints\":[8667],\"characters\":\"⇛\"},\"&rArr;\":{\"codepoints\":[8658],\"characters\":\"⇒\"},\"&rAtail;\":{\"codepoints\":[10524],\"characters\":\"⤜\"},\"&rBarr;\":{\"codepoints\":[10511],\"characters\":\"⤏\"},\"&rHar;\":{\"codepoints\":[10596],\"characters\":\"⥤\"},\"&race;\":{\"codepoints\":[8765,817],\"characters\":\"∽̱\"},\"&racute;\":{\"codepoints\":[341],\"characters\":\"ŕ\"},\"&radic;\":{\"codepoints\":[8730],\"characters\":\"√\"},\"&raemptyv;\":{\"codepoints\":[10675],\"characters\":\"⦳\"},\"&rang;\":{\"codepoints\":[10217],\"characters\":\"⟩\"},\"&rangd;\":{\"codepoints\":[10642],\"characters\":\"⦒\"},\"&range;\":{\"codepoints\":[10661],\"characters\":\"⦥\"},\"&rangle;\":{\"codepoints\":[10217],\"characters\":\"⟩\"},\"&raquo\":{\"codepoints\":[187],\"characters\":\"»\"},\"&raquo;\":{\"codepoints\":[187],\"characters\":\"»\"},\"&rarr;\":{\"codepoints\":[8594],\"characters\":\"→\"},\"&rarrap;\":{\"codepoints\":[10613],\"characters\":\"⥵\"},\"&rarrb;\":{\"codepoints\":[8677],\"characters\":\"⇥\"},\"&rarrbfs;\":{\"codepoints\":[10528],\"characters\":\"⤠\"},\"&rarrc;\":{\"codepoints\":[10547],\"characters\":\"⤳\"},\"&rarrfs;\":{\"codepoints\":[10526],\"characters\":\"⤞\"},\"&rarrhk;\":{\"codepoints\":[8618],\"characters\":\"↪\"},\"&rarrlp;\":{\"codepoints\":[8620],\"characters\":\"↬\"},\"&rarrpl;\":{\"codepoints\":[10565],\"characters\":\"⥅\"},\"&rarrsim;\":{\"codepoints\":[10612],\"characters\":\"⥴\"},\"&rarrtl;\":{\"codepoints\":[8611],\"characters\":\"↣\"},\"&rarrw;\":{\"codepoints\":[8605],\"characters\":\"↝\"},\"&ratail;\":{\"codepoints\":[10522],\"characters\":\"⤚\"},\"&ratio;\":{\"codepoints\":[8758],\"characters\":\"∶\"},\"&rationals;\":{\"codepoints\":[8474],\"characters\":\"ℚ\"},\"&rbarr;\":{\"codepoints\":[10509],\"characters\":\"⤍\"},\"&rbbrk;\":{\"codepoints\":[10099],\"characters\":\"❳\"},\"&rbrace;\":{\"codepoints\":[125],\"characters\":\"}\"},\"&rbrack;\":{\"codepoints\":[93],\"characters\":\"]\"},\"&rbrke;\":{\"codepoints\":[10636],\"characters\":\"⦌\"},\"&rbrksld;\":{\"codepoints\":[10638],\"characters\":\"⦎\"},\"&rbrkslu;\":{\"codepoints\":[10640],\"characters\":\"⦐\"},\"&rcaron;\":{\"codepoints\":[345],\"characters\":\"ř\"},\"&rcedil;\":{\"codepoints\":[343],\"characters\":\"ŗ\"},\"&rceil;\":{\"codepoints\":[8969],\"characters\":\"⌉\"},\"&rcub;\":{\"codepoints\":[125],\"characters\":\"}\"},\"&rcy;\":{\"codepoints\":[1088],\"characters\":\"р\"},\"&rdca;\":{\"codepoints\":[10551],\"characters\":\"⤷\"},\"&rdldhar;\":{\"codepoints\":[10601],\"characters\":\"⥩\"},\"&rdquo;\":{\"codepoints\":[8221],\"characters\":\"”\"},\"&rdquor;\":{\"codepoints\":[8221],\"characters\":\"”\"},\"&rdsh;\":{\"codepoints\":[8627],\"characters\":\"↳\"},\"&real;\":{\"codepoints\":[8476],\"characters\":\"ℜ\"},\"&realine;\":{\"codepoints\":[8475],\"characters\":\"ℛ\"},\"&realpart;\":{\"codepoints\":[8476],\"characters\":\"ℜ\"},\"&reals;\":{\"codepoints\":[8477],\"characters\":\"ℝ\"},\"&rect;\":{\"codepoints\":[9645],\"characters\":\"▭\"},\"&reg\":{\"codepoints\":[174],\"characters\":\"®\"},\"&reg;\":{\"codepoints\":[174],\"characters\":\"®\"},\"&rfisht;\":{\"codepoints\":[10621],\"characters\":\"⥽\"},\"&rfloor;\":{\"codepoints\":[8971],\"characters\":\"⌋\"},\"&rfr;\":{\"codepoints\":[120111],\"characters\":\"𝔯\"},\"&rhard;\":{\"codepoints\":[8641],\"characters\":\"⇁\"},\"&rharu;\":{\"codepoints\":[8640],\"characters\":\"⇀\"},\"&rharul;\":{\"codepoints\":[10604],\"characters\":\"⥬\"},\"&rho;\":{\"codepoints\":[961],\"characters\":\"ρ\"},\"&rhov;\":{\"codepoints\":[1009],\"characters\":\"ϱ\"},\"&rightarrow;\":{\"codepoints\":[8594],\"characters\":\"→\"},\"&rightarrowtail;\":{\"codepoints\":[8611],\"characters\":\"↣\"},\"&rightharpoondown;\":{\"codepoints\":[8641],\"characters\":\"⇁\"},\"&rightharpoonup;\":{\"codepoints\":[8640],\"characters\":\"⇀\"},\"&rightleftarrows;\":{\"codepoints\":[8644],\"characters\":\"⇄\"},\"&rightleftharpoons;\":{\"codepoints\":[8652],\"characters\":\"⇌\"},\"&rightrightarrows;\":{\"codepoints\":[8649],\"characters\":\"⇉\"},\"&rightsquigarrow;\":{\"codepoints\":[8605],\"characters\":\"↝\"},\"&rightthreetimes;\":{\"codepoints\":[8908],\"characters\":\"⋌\"},\"&ring;\":{\"codepoints\":[730],\"characters\":\"˚\"},\"&risingdotseq;\":{\"codepoints\":[8787],\"characters\":\"≓\"},\"&rlarr;\":{\"codepoints\":[8644],\"characters\":\"⇄\"},\"&rlhar;\":{\"codepoints\":[8652],\"characters\":\"⇌\"},\"&rlm;\":{\"codepoints\":[8207],\"characters\":\"‏\"},\"&rmoust;\":{\"codepoints\":[9137],\"characters\":\"⎱\"},\"&rmoustache;\":{\"codepoints\":[9137],\"characters\":\"⎱\"},\"&rnmid;\":{\"codepoints\":[10990],\"characters\":\"⫮\"},\"&roang;\":{\"codepoints\":[10221],\"characters\":\"⟭\"},\"&roarr;\":{\"codepoints\":[8702],\"characters\":\"⇾\"},\"&robrk;\":{\"codepoints\":[10215],\"characters\":\"⟧\"},\"&ropar;\":{\"codepoints\":[10630],\"characters\":\"⦆\"},\"&ropf;\":{\"codepoints\":[120163],\"characters\":\"𝕣\"},\"&roplus;\":{\"codepoints\":[10798],\"characters\":\"⨮\"},\"&rotimes;\":{\"codepoints\":[10805],\"characters\":\"⨵\"},\"&rpar;\":{\"codepoints\":[41],\"characters\":\")\"},\"&rpargt;\":{\"codepoints\":[10644],\"characters\":\"⦔\"},\"&rppolint;\":{\"codepoints\":[10770],\"characters\":\"⨒\"},\"&rrarr;\":{\"codepoints\":[8649],\"characters\":\"⇉\"},\"&rsaquo;\":{\"codepoints\":[8250],\"characters\":\"›\"},\"&rscr;\":{\"codepoints\":[120007],\"characters\":\"𝓇\"},\"&rsh;\":{\"codepoints\":[8625],\"characters\":\"↱\"},\"&rsqb;\":{\"codepoints\":[93],\"characters\":\"]\"},\"&rsquo;\":{\"codepoints\":[8217],\"characters\":\"’\"},\"&rsquor;\":{\"codepoints\":[8217],\"characters\":\"’\"},\"&rthree;\":{\"codepoints\":[8908],\"characters\":\"⋌\"},\"&rtimes;\":{\"codepoints\":[8906],\"characters\":\"⋊\"},\"&rtri;\":{\"codepoints\":[9657],\"characters\":\"▹\"},\"&rtrie;\":{\"codepoints\":[8885],\"characters\":\"⊵\"},\"&rtrif;\":{\"codepoints\":[9656],\"characters\":\"▸\"},\"&rtriltri;\":{\"codepoints\":[10702],\"characters\":\"⧎\"},\"&ruluhar;\":{\"codepoints\":[10600],\"characters\":\"⥨\"},\"&rx;\":{\"codepoints\":[8478],\"characters\":\"℞\"},\"&sacute;\":{\"codepoints\":[347],\"characters\":\"ś\"},\"&sbquo;\":{\"codepoints\":[8218],\"characters\":\"‚\"},\"&sc;\":{\"codepoints\":[8827],\"characters\":\"≻\"},\"&scE;\":{\"codepoints\":[10932],\"characters\":\"⪴\"},\"&scap;\":{\"codepoints\":[10936],\"characters\":\"⪸\"},\"&scaron;\":{\"codepoints\":[353],\"characters\":\"š\"},\"&sccue;\":{\"codepoints\":[8829],\"characters\":\"≽\"},\"&sce;\":{\"codepoints\":[10928],\"characters\":\"⪰\"},\"&scedil;\":{\"codepoints\":[351],\"characters\":\"ş\"},\"&scirc;\":{\"codepoints\":[349],\"characters\":\"ŝ\"},\"&scnE;\":{\"codepoints\":[10934],\"characters\":\"⪶\"},\"&scnap;\":{\"codepoints\":[10938],\"characters\":\"⪺\"},\"&scnsim;\":{\"codepoints\":[8937],\"characters\":\"⋩\"},\"&scpolint;\":{\"codepoints\":[10771],\"characters\":\"⨓\"},\"&scsim;\":{\"codepoints\":[8831],\"characters\":\"≿\"},\"&scy;\":{\"codepoints\":[1089],\"characters\":\"с\"},\"&sdot;\":{\"codepoints\":[8901],\"characters\":\"⋅\"},\"&sdotb;\":{\"codepoints\":[8865],\"characters\":\"⊡\"},\"&sdote;\":{\"codepoints\":[10854],\"characters\":\"⩦\"},\"&seArr;\":{\"codepoints\":[8664],\"characters\":\"⇘\"},\"&searhk;\":{\"codepoints\":[10533],\"characters\":\"⤥\"},\"&searr;\":{\"codepoints\":[8600],\"characters\":\"↘\"},\"&searrow;\":{\"codepoints\":[8600],\"characters\":\"↘\"},\"&sect;\":{\"codepoints\":[167],\"characters\":\"§\"},\"&sect\":{\"codepoints\":[167],\"characters\":\"§\"},\"&semi;\":{\"codepoints\":[59],\"characters\":\";\"},\"&seswar;\":{\"codepoints\":[10537],\"characters\":\"⤩\"},\"&setminus;\":{\"codepoints\":[8726],\"characters\":\"∖\"},\"&setmn;\":{\"codepoints\":[8726],\"characters\":\"∖\"},\"&sext;\":{\"codepoints\":[10038],\"characters\":\"✶\"},\"&sfr;\":{\"codepoints\":[120112],\"characters\":\"𝔰\"},\"&sfrown;\":{\"codepoints\":[8994],\"characters\":\"⌢\"},\"&sharp;\":{\"codepoints\":[9839],\"characters\":\"♯\"},\"&shchcy;\":{\"codepoints\":[1097],\"characters\":\"щ\"},\"&shcy;\":{\"codepoints\":[1096],\"characters\":\"ш\"},\"&shortmid;\":{\"codepoints\":[8739],\"characters\":\"∣\"},\"&shortparallel;\":{\"codepoints\":[8741],\"characters\":\"∥\"},\"&shy;\":{\"codepoints\":[173],\"characters\":\"­\"},\"&shy\":{\"codepoints\":[173],\"characters\":\"­\"},\"&sigma;\":{\"codepoints\":[963],\"characters\":\"σ\"},\"&sigmaf;\":{\"codepoints\":[962],\"characters\":\"ς\"},\"&sigmav;\":{\"codepoints\":[962],\"characters\":\"ς\"},\"&sim;\":{\"codepoints\":[8764],\"characters\":\"∼\"},\"&simdot;\":{\"codepoints\":[10858],\"characters\":\"⩪\"},\"&sime;\":{\"codepoints\":[8771],\"characters\":\"≃\"},\"&simeq;\":{\"codepoints\":[8771],\"characters\":\"≃\"},\"&simg;\":{\"codepoints\":[10910],\"characters\":\"⪞\"},\"&simgE;\":{\"codepoints\":[10912],\"characters\":\"⪠\"},\"&siml;\":{\"codepoints\":[10909],\"characters\":\"⪝\"},\"&simlE;\":{\"codepoints\":[10911],\"characters\":\"⪟\"},\"&simne;\":{\"codepoints\":[8774],\"characters\":\"≆\"},\"&simplus;\":{\"codepoints\":[10788],\"characters\":\"⨤\"},\"&simrarr;\":{\"codepoints\":[10610],\"characters\":\"⥲\"},\"&slarr;\":{\"codepoints\":[8592],\"characters\":\"←\"},\"&smallsetminus;\":{\"codepoints\":[8726],\"characters\":\"∖\"},\"&smashp;\":{\"codepoints\":[10803],\"characters\":\"⨳\"},\"&smeparsl;\":{\"codepoints\":[10724],\"characters\":\"⧤\"},\"&smid;\":{\"codepoints\":[8739],\"characters\":\"∣\"},\"&smile;\":{\"codepoints\":[8995],\"characters\":\"⌣\"},\"&smt;\":{\"codepoints\":[10922],\"characters\":\"⪪\"},\"&smte;\":{\"codepoints\":[10924],\"characters\":\"⪬\"},\"&smtes;\":{\"codepoints\":[10924,65024],\"characters\":\"⪬︀\"},\"&softcy;\":{\"codepoints\":[1100],\"characters\":\"ь\"},\"&sol;\":{\"codepoints\":[47],\"characters\":\"/\"},\"&solb;\":{\"codepoints\":[10692],\"characters\":\"⧄\"},\"&solbar;\":{\"codepoints\":[9023],\"characters\":\"⌿\"},\"&sopf;\":{\"codepoints\":[120164],\"characters\":\"𝕤\"},\"&spades;\":{\"codepoints\":[9824],\"characters\":\"♠\"},\"&spadesuit;\":{\"codepoints\":[9824],\"characters\":\"♠\"},\"&spar;\":{\"codepoints\":[8741],\"characters\":\"∥\"},\"&sqcap;\":{\"codepoints\":[8851],\"characters\":\"⊓\"},\"&sqcaps;\":{\"codepoints\":[8851,65024],\"characters\":\"⊓︀\"},\"&sqcup;\":{\"codepoints\":[8852],\"characters\":\"⊔\"},\"&sqcups;\":{\"codepoints\":[8852,65024],\"characters\":\"⊔︀\"},\"&sqsub;\":{\"codepoints\":[8847],\"characters\":\"⊏\"},\"&sqsube;\":{\"codepoints\":[8849],\"characters\":\"⊑\"},\"&sqsubset;\":{\"codepoints\":[8847],\"characters\":\"⊏\"},\"&sqsubseteq;\":{\"codepoints\":[8849],\"characters\":\"⊑\"},\"&sqsup;\":{\"codepoints\":[8848],\"characters\":\"⊐\"},\"&sqsupe;\":{\"codepoints\":[8850],\"characters\":\"⊒\"},\"&sqsupset;\":{\"codepoints\":[8848],\"characters\":\"⊐\"},\"&sqsupseteq;\":{\"codepoints\":[8850],\"characters\":\"⊒\"},\"&squ;\":{\"codepoints\":[9633],\"characters\":\"□\"},\"&square;\":{\"codepoints\":[9633],\"characters\":\"□\"},\"&squarf;\":{\"codepoints\":[9642],\"characters\":\"▪\"},\"&squf;\":{\"codepoints\":[9642],\"characters\":\"▪\"},\"&srarr;\":{\"codepoints\":[8594],\"characters\":\"→\"},\"&sscr;\":{\"codepoints\":[120008],\"characters\":\"𝓈\"},\"&ssetmn;\":{\"codepoints\":[8726],\"characters\":\"∖\"},\"&ssmile;\":{\"codepoints\":[8995],\"characters\":\"⌣\"},\"&sstarf;\":{\"codepoints\":[8902],\"characters\":\"⋆\"},\"&star;\":{\"codepoints\":[9734],\"characters\":\"☆\"},\"&starf;\":{\"codepoints\":[9733],\"characters\":\"★\"},\"&straightepsilon;\":{\"codepoints\":[1013],\"characters\":\"ϵ\"},\"&straightphi;\":{\"codepoints\":[981],\"characters\":\"ϕ\"},\"&strns;\":{\"codepoints\":[175],\"characters\":\"¯\"},\"&sub;\":{\"codepoints\":[8834],\"characters\":\"⊂\"},\"&subE;\":{\"codepoints\":[10949],\"characters\":\"⫅\"},\"&subdot;\":{\"codepoints\":[10941],\"characters\":\"⪽\"},\"&sube;\":{\"codepoints\":[8838],\"characters\":\"⊆\"},\"&subedot;\":{\"codepoints\":[10947],\"characters\":\"⫃\"},\"&submult;\":{\"codepoints\":[10945],\"characters\":\"⫁\"},\"&subnE;\":{\"codepoints\":[10955],\"characters\":\"⫋\"},\"&subne;\":{\"codepoints\":[8842],\"characters\":\"⊊\"},\"&subplus;\":{\"codepoints\":[10943],\"characters\":\"⪿\"},\"&subrarr;\":{\"codepoints\":[10617],\"characters\":\"⥹\"},\"&subset;\":{\"codepoints\":[8834],\"characters\":\"⊂\"},\"&subseteq;\":{\"codepoints\":[8838],\"characters\":\"⊆\"},\"&subseteqq;\":{\"codepoints\":[10949],\"characters\":\"⫅\"},\"&subsetneq;\":{\"codepoints\":[8842],\"characters\":\"⊊\"},\"&subsetneqq;\":{\"codepoints\":[10955],\"characters\":\"⫋\"},\"&subsim;\":{\"codepoints\":[10951],\"characters\":\"⫇\"},\"&subsub;\":{\"codepoints\":[10965],\"characters\":\"⫕\"},\"&subsup;\":{\"codepoints\":[10963],\"characters\":\"⫓\"},\"&succ;\":{\"codepoints\":[8827],\"characters\":\"≻\"},\"&succapprox;\":{\"codepoints\":[10936],\"characters\":\"⪸\"},\"&succcurlyeq;\":{\"codepoints\":[8829],\"characters\":\"≽\"},\"&succeq;\":{\"codepoints\":[10928],\"characters\":\"⪰\"},\"&succnapprox;\":{\"codepoints\":[10938],\"characters\":\"⪺\"},\"&succneqq;\":{\"codepoints\":[10934],\"characters\":\"⪶\"},\"&succnsim;\":{\"codepoints\":[8937],\"characters\":\"⋩\"},\"&succsim;\":{\"codepoints\":[8831],\"characters\":\"≿\"},\"&sum;\":{\"codepoints\":[8721],\"characters\":\"∑\"},\"&sung;\":{\"codepoints\":[9834],\"characters\":\"♪\"},\"&sup1;\":{\"codepoints\":[185],\"characters\":\"¹\"},\"&sup1\":{\"codepoints\":[185],\"characters\":\"¹\"},\"&sup2;\":{\"codepoints\":[178],\"characters\":\"²\"},\"&sup2\":{\"codepoints\":[178],\"characters\":\"²\"},\"&sup3;\":{\"codepoints\":[179],\"characters\":\"³\"},\"&sup3\":{\"codepoints\":[179],\"characters\":\"³\"},\"&sup;\":{\"codepoints\":[8835],\"characters\":\"⊃\"},\"&supE;\":{\"codepoints\":[10950],\"characters\":\"⫆\"},\"&supdot;\":{\"codepoints\":[10942],\"characters\":\"⪾\"},\"&supdsub;\":{\"codepoints\":[10968],\"characters\":\"⫘\"},\"&supe;\":{\"codepoints\":[8839],\"characters\":\"⊇\"},\"&supedot;\":{\"codepoints\":[10948],\"characters\":\"⫄\"},\"&suphsol;\":{\"codepoints\":[10185],\"characters\":\"⟉\"},\"&suphsub;\":{\"codepoints\":[10967],\"characters\":\"⫗\"},\"&suplarr;\":{\"codepoints\":[10619],\"characters\":\"⥻\"},\"&supmult;\":{\"codepoints\":[10946],\"characters\":\"⫂\"},\"&supnE;\":{\"codepoints\":[10956],\"characters\":\"⫌\"},\"&supne;\":{\"codepoints\":[8843],\"characters\":\"⊋\"},\"&supplus;\":{\"codepoints\":[10944],\"characters\":\"⫀\"},\"&supset;\":{\"codepoints\":[8835],\"characters\":\"⊃\"},\"&supseteq;\":{\"codepoints\":[8839],\"characters\":\"⊇\"},\"&supseteqq;\":{\"codepoints\":[10950],\"characters\":\"⫆\"},\"&supsetneq;\":{\"codepoints\":[8843],\"characters\":\"⊋\"},\"&supsetneqq;\":{\"codepoints\":[10956],\"characters\":\"⫌\"},\"&supsim;\":{\"codepoints\":[10952],\"characters\":\"⫈\"},\"&supsub;\":{\"codepoints\":[10964],\"characters\":\"⫔\"},\"&supsup;\":{\"codepoints\":[10966],\"characters\":\"⫖\"},\"&swArr;\":{\"codepoints\":[8665],\"characters\":\"⇙\"},\"&swarhk;\":{\"codepoints\":[10534],\"characters\":\"⤦\"},\"&swarr;\":{\"codepoints\":[8601],\"characters\":\"↙\"},\"&swarrow;\":{\"codepoints\":[8601],\"characters\":\"↙\"},\"&swnwar;\":{\"codepoints\":[10538],\"characters\":\"⤪\"},\"&szlig;\":{\"codepoints\":[223],\"characters\":\"ß\"},\"&szlig\":{\"codepoints\":[223],\"characters\":\"ß\"},\"&target;\":{\"codepoints\":[8982],\"characters\":\"⌖\"},\"&tau;\":{\"codepoints\":[964],\"characters\":\"τ\"},\"&tbrk;\":{\"codepoints\":[9140],\"characters\":\"⎴\"},\"&tcaron;\":{\"codepoints\":[357],\"characters\":\"ť\"},\"&tcedil;\":{\"codepoints\":[355],\"characters\":\"ţ\"},\"&tcy;\":{\"codepoints\":[1090],\"characters\":\"т\"},\"&tdot;\":{\"codepoints\":[8411],\"characters\":\"⃛\"},\"&telrec;\":{\"codepoints\":[8981],\"characters\":\"⌕\"},\"&tfr;\":{\"codepoints\":[120113],\"characters\":\"𝔱\"},\"&there4;\":{\"codepoints\":[8756],\"characters\":\"∴\"},\"&therefore;\":{\"codepoints\":[8756],\"characters\":\"∴\"},\"&theta;\":{\"codepoints\":[952],\"characters\":\"θ\"},\"&thetasym;\":{\"codepoints\":[977],\"characters\":\"ϑ\"},\"&thetav;\":{\"codepoints\":[977],\"characters\":\"ϑ\"},\"&thickapprox;\":{\"codepoints\":[8776],\"characters\":\"≈\"},\"&thicksim;\":{\"codepoints\":[8764],\"characters\":\"∼\"},\"&thinsp;\":{\"codepoints\":[8201],\"characters\":\" \"},\"&thkap;\":{\"codepoints\":[8776],\"characters\":\"≈\"},\"&thksim;\":{\"codepoints\":[8764],\"characters\":\"∼\"},\"&thorn;\":{\"codepoints\":[254],\"characters\":\"þ\"},\"&thorn\":{\"codepoints\":[254],\"characters\":\"þ\"},\"&tilde;\":{\"codepoints\":[732],\"characters\":\"˜\"},\"&times;\":{\"codepoints\":[215],\"characters\":\"×\"},\"&times\":{\"codepoints\":[215],\"characters\":\"×\"},\"&timesb;\":{\"codepoints\":[8864],\"characters\":\"⊠\"},\"&timesbar;\":{\"codepoints\":[10801],\"characters\":\"⨱\"},\"&timesd;\":{\"codepoints\":[10800],\"characters\":\"⨰\"},\"&tint;\":{\"codepoints\":[8749],\"characters\":\"∭\"},\"&toea;\":{\"codepoints\":[10536],\"characters\":\"⤨\"},\"&top;\":{\"codepoints\":[8868],\"characters\":\"⊤\"},\"&topbot;\":{\"codepoints\":[9014],\"characters\":\"⌶\"},\"&topcir;\":{\"codepoints\":[10993],\"characters\":\"⫱\"},\"&topf;\":{\"codepoints\":[120165],\"characters\":\"𝕥\"},\"&topfork;\":{\"codepoints\":[10970],\"characters\":\"⫚\"},\"&tosa;\":{\"codepoints\":[10537],\"characters\":\"⤩\"},\"&tprime;\":{\"codepoints\":[8244],\"characters\":\"‴\"},\"&trade;\":{\"codepoints\":[8482],\"characters\":\"™\"},\"&triangle;\":{\"codepoints\":[9653],\"characters\":\"▵\"},\"&triangledown;\":{\"codepoints\":[9663],\"characters\":\"▿\"},\"&triangleleft;\":{\"codepoints\":[9667],\"characters\":\"◃\"},\"&trianglelefteq;\":{\"codepoints\":[8884],\"characters\":\"⊴\"},\"&triangleq;\":{\"codepoints\":[8796],\"characters\":\"≜\"},\"&triangleright;\":{\"codepoints\":[9657],\"characters\":\"▹\"},\"&trianglerighteq;\":{\"codepoints\":[8885],\"characters\":\"⊵\"},\"&tridot;\":{\"codepoints\":[9708],\"characters\":\"◬\"},\"&trie;\":{\"codepoints\":[8796],\"characters\":\"≜\"},\"&triminus;\":{\"codepoints\":[10810],\"characters\":\"⨺\"},\"&triplus;\":{\"codepoints\":[10809],\"characters\":\"⨹\"},\"&trisb;\":{\"codepoints\":[10701],\"characters\":\"⧍\"},\"&tritime;\":{\"codepoints\":[10811],\"characters\":\"⨻\"},\"&trpezium;\":{\"codepoints\":[9186],\"characters\":\"⏢\"},\"&tscr;\":{\"codepoints\":[120009],\"characters\":\"𝓉\"},\"&tscy;\":{\"codepoints\":[1094],\"characters\":\"ц\"},\"&tshcy;\":{\"codepoints\":[1115],\"characters\":\"ћ\"},\"&tstrok;\":{\"codepoints\":[359],\"characters\":\"ŧ\"},\"&twixt;\":{\"codepoints\":[8812],\"characters\":\"≬\"},\"&twoheadleftarrow;\":{\"codepoints\":[8606],\"characters\":\"↞\"},\"&twoheadrightarrow;\":{\"codepoints\":[8608],\"characters\":\"↠\"},\"&uArr;\":{\"codepoints\":[8657],\"characters\":\"⇑\"},\"&uHar;\":{\"codepoints\":[10595],\"characters\":\"⥣\"},\"&uacute;\":{\"codepoints\":[250],\"characters\":\"ú\"},\"&uacute\":{\"codepoints\":[250],\"characters\":\"ú\"},\"&uarr;\":{\"codepoints\":[8593],\"characters\":\"↑\"},\"&ubrcy;\":{\"codepoints\":[1118],\"characters\":\"ў\"},\"&ubreve;\":{\"codepoints\":[365],\"characters\":\"ŭ\"},\"&ucirc;\":{\"codepoints\":[251],\"characters\":\"û\"},\"&ucirc\":{\"codepoints\":[251],\"characters\":\"û\"},\"&ucy;\":{\"codepoints\":[1091],\"characters\":\"у\"},\"&udarr;\":{\"codepoints\":[8645],\"characters\":\"⇅\"},\"&udblac;\":{\"codepoints\":[369],\"characters\":\"ű\"},\"&udhar;\":{\"codepoints\":[10606],\"characters\":\"⥮\"},\"&ufisht;\":{\"codepoints\":[10622],\"characters\":\"⥾\"},\"&ufr;\":{\"codepoints\":[120114],\"characters\":\"𝔲\"},\"&ugrave;\":{\"codepoints\":[249],\"characters\":\"ù\"},\"&ugrave\":{\"codepoints\":[249],\"characters\":\"ù\"},\"&uharl;\":{\"codepoints\":[8639],\"characters\":\"↿\"},\"&uharr;\":{\"codepoints\":[8638],\"characters\":\"↾\"},\"&uhblk;\":{\"codepoints\":[9600],\"characters\":\"▀\"},\"&ulcorn;\":{\"codepoints\":[8988],\"characters\":\"⌜\"},\"&ulcorner;\":{\"codepoints\":[8988],\"characters\":\"⌜\"},\"&ulcrop;\":{\"codepoints\":[8975],\"characters\":\"⌏\"},\"&ultri;\":{\"codepoints\":[9720],\"characters\":\"◸\"},\"&umacr;\":{\"codepoints\":[363],\"characters\":\"ū\"},\"&uml;\":{\"codepoints\":[168],\"characters\":\"¨\"},\"&uml\":{\"codepoints\":[168],\"characters\":\"¨\"},\"&uogon;\":{\"codepoints\":[371],\"characters\":\"ų\"},\"&uopf;\":{\"codepoints\":[120166],\"characters\":\"𝕦\"},\"&uparrow;\":{\"codepoints\":[8593],\"characters\":\"↑\"},\"&updownarrow;\":{\"codepoints\":[8597],\"characters\":\"↕\"},\"&upharpoonleft;\":{\"codepoints\":[8639],\"characters\":\"↿\"},\"&upharpoonright;\":{\"codepoints\":[8638],\"characters\":\"↾\"},\"&uplus;\":{\"codepoints\":[8846],\"characters\":\"⊎\"},\"&upsi;\":{\"codepoints\":[965],\"characters\":\"υ\"},\"&upsih;\":{\"codepoints\":[978],\"characters\":\"ϒ\"},\"&upsilon;\":{\"codepoints\":[965],\"characters\":\"υ\"},\"&upuparrows;\":{\"codepoints\":[8648],\"characters\":\"⇈\"},\"&urcorn;\":{\"codepoints\":[8989],\"characters\":\"⌝\"},\"&urcorner;\":{\"codepoints\":[8989],\"characters\":\"⌝\"},\"&urcrop;\":{\"codepoints\":[8974],\"characters\":\"⌎\"},\"&uring;\":{\"codepoints\":[367],\"characters\":\"ů\"},\"&urtri;\":{\"codepoints\":[9721],\"characters\":\"◹\"},\"&uscr;\":{\"codepoints\":[120010],\"characters\":\"𝓊\"},\"&utdot;\":{\"codepoints\":[8944],\"characters\":\"⋰\"},\"&utilde;\":{\"codepoints\":[361],\"characters\":\"ũ\"},\"&utri;\":{\"codepoints\":[9653],\"characters\":\"▵\"},\"&utrif;\":{\"codepoints\":[9652],\"characters\":\"▴\"},\"&uuarr;\":{\"codepoints\":[8648],\"characters\":\"⇈\"},\"&uuml\":{\"codepoints\":[252],\"characters\":\"ü\"},\"&uuml;\":{\"codepoints\":[252],\"characters\":\"ü\"},\"&uwangle;\":{\"codepoints\":[10663],\"characters\":\"⦧\"},\"&vArr;\":{\"codepoints\":[8661],\"characters\":\"⇕\"},\"&vBar;\":{\"codepoints\":[10984],\"characters\":\"⫨\"},\"&vBarv;\":{\"codepoints\":[10985],\"characters\":\"⫩\"},\"&vDash;\":{\"codepoints\":[8872],\"characters\":\"⊨\"},\"&vangrt;\":{\"codepoints\":[10652],\"characters\":\"⦜\"},\"&varepsilon;\":{\"codepoints\":[1013],\"characters\":\"ϵ\"},\"&varkappa;\":{\"codepoints\":[1008],\"characters\":\"ϰ\"},\"&varnothing;\":{\"codepoints\":[8709],\"characters\":\"∅\"},\"&varphi;\":{\"codepoints\":[981],\"characters\":\"ϕ\"},\"&varpi;\":{\"codepoints\":[982],\"characters\":\"ϖ\"},\"&varpropto;\":{\"codepoints\":[8733],\"characters\":\"∝\"},\"&varr;\":{\"codepoints\":[8597],\"characters\":\"↕\"},\"&varrho;\":{\"codepoints\":[1009],\"characters\":\"ϱ\"},\"&varsigma;\":{\"codepoints\":[962],\"characters\":\"ς\"},\"&varsubsetneq;\":{\"codepoints\":[8842,65024],\"characters\":\"⊊︀\"},\"&varsubsetneqq;\":{\"codepoints\":[10955,65024],\"characters\":\"⫋︀\"},\"&varsupsetneq;\":{\"codepoints\":[8843,65024],\"characters\":\"⊋︀\"},\"&varsupsetneqq;\":{\"codepoints\":[10956,65024],\"characters\":\"⫌︀\"},\"&vartheta;\":{\"codepoints\":[977],\"characters\":\"ϑ\"},\"&vartriangleleft;\":{\"codepoints\":[8882],\"characters\":\"⊲\"},\"&vartriangleright;\":{\"codepoints\":[8883],\"characters\":\"⊳\"},\"&vcy;\":{\"codepoints\":[1074],\"characters\":\"в\"},\"&vdash;\":{\"codepoints\":[8866],\"characters\":\"⊢\"},\"&vee;\":{\"codepoints\":[8744],\"characters\":\"∨\"},\"&veebar;\":{\"codepoints\":[8891],\"characters\":\"⊻\"},\"&veeeq;\":{\"codepoints\":[8794],\"characters\":\"≚\"},\"&vellip;\":{\"codepoints\":[8942],\"characters\":\"⋮\"},\"&verbar;\":{\"codepoints\":[124],\"characters\":\"|\"},\"&vert;\":{\"codepoints\":[124],\"characters\":\"|\"},\"&vfr;\":{\"codepoints\":[120115],\"characters\":\"𝔳\"},\"&vltri;\":{\"codepoints\":[8882],\"characters\":\"⊲\"},\"&vnsub;\":{\"codepoints\":[8834,8402],\"characters\":\"⊂⃒\"},\"&vnsup;\":{\"codepoints\":[8835,8402],\"characters\":\"⊃⃒\"},\"&vopf;\":{\"codepoints\":[120167],\"characters\":\"𝕧\"},\"&vprop;\":{\"codepoints\":[8733],\"characters\":\"∝\"},\"&vrtri;\":{\"codepoints\":[8883],\"characters\":\"⊳\"},\"&vscr;\":{\"codepoints\":[120011],\"characters\":\"𝓋\"},\"&vsubnE;\":{\"codepoints\":[10955,65024],\"characters\":\"⫋︀\"},\"&vsubne;\":{\"codepoints\":[8842,65024],\"characters\":\"⊊︀\"},\"&vsupnE;\":{\"codepoints\":[10956,65024],\"characters\":\"⫌︀\"},\"&vsupne;\":{\"codepoints\":[8843,65024],\"characters\":\"⊋︀\"},\"&vzigzag;\":{\"codepoints\":[10650],\"characters\":\"⦚\"},\"&wcirc;\":{\"codepoints\":[373],\"characters\":\"ŵ\"},\"&wedbar;\":{\"codepoints\":[10847],\"characters\":\"⩟\"},\"&wedge;\":{\"codepoints\":[8743],\"characters\":\"∧\"},\"&wedgeq;\":{\"codepoints\":[8793],\"characters\":\"≙\"},\"&weierp;\":{\"codepoints\":[8472],\"characters\":\"℘\"},\"&wfr;\":{\"codepoints\":[120116],\"characters\":\"𝔴\"},\"&wopf;\":{\"codepoints\":[120168],\"characters\":\"𝕨\"},\"&wp;\":{\"codepoints\":[8472],\"characters\":\"℘\"},\"&wr;\":{\"codepoints\":[8768],\"characters\":\"≀\"},\"&wreath;\":{\"codepoints\":[8768],\"characters\":\"≀\"},\"&wscr;\":{\"codepoints\":[120012],\"characters\":\"𝓌\"},\"&xcap;\":{\"codepoints\":[8898],\"characters\":\"⋂\"},\"&xcirc;\":{\"codepoints\":[9711],\"characters\":\"◯\"},\"&xcup;\":{\"codepoints\":[8899],\"characters\":\"⋃\"},\"&xdtri;\":{\"codepoints\":[9661],\"characters\":\"▽\"},\"&xfr;\":{\"codepoints\":[120117],\"characters\":\"𝔵\"},\"&xhArr;\":{\"codepoints\":[10234],\"characters\":\"⟺\"},\"&xharr;\":{\"codepoints\":[10231],\"characters\":\"⟷\"},\"&xi;\":{\"codepoints\":[958],\"characters\":\"ξ\"},\"&xlArr;\":{\"codepoints\":[10232],\"characters\":\"⟸\"},\"&xlarr;\":{\"codepoints\":[10229],\"characters\":\"⟵\"},\"&xmap;\":{\"codepoints\":[10236],\"characters\":\"⟼\"},\"&xnis;\":{\"codepoints\":[8955],\"characters\":\"⋻\"},\"&xodot;\":{\"codepoints\":[10752],\"characters\":\"⨀\"},\"&xopf;\":{\"codepoints\":[120169],\"characters\":\"𝕩\"},\"&xoplus;\":{\"codepoints\":[10753],\"characters\":\"⨁\"},\"&xotime;\":{\"codepoints\":[10754],\"characters\":\"⨂\"},\"&xrArr;\":{\"codepoints\":[10233],\"characters\":\"⟹\"},\"&xrarr;\":{\"codepoints\":[10230],\"characters\":\"⟶\"},\"&xscr;\":{\"codepoints\":[120013],\"characters\":\"𝓍\"},\"&xsqcup;\":{\"codepoints\":[10758],\"characters\":\"⨆\"},\"&xuplus;\":{\"codepoints\":[10756],\"characters\":\"⨄\"},\"&xutri;\":{\"codepoints\":[9651],\"characters\":\"△\"},\"&xvee;\":{\"codepoints\":[8897],\"characters\":\"⋁\"},\"&xwedge;\":{\"codepoints\":[8896],\"characters\":\"⋀\"},\"&yacute;\":{\"codepoints\":[253],\"characters\":\"ý\"},\"&yacute\":{\"codepoints\":[253],\"characters\":\"ý\"},\"&yacy;\":{\"codepoints\":[1103],\"characters\":\"я\"},\"&ycirc;\":{\"codepoints\":[375],\"characters\":\"ŷ\"},\"&ycy;\":{\"codepoints\":[1099],\"characters\":\"ы\"},\"&yen;\":{\"codepoints\":[165],\"characters\":\"¥\"},\"&yen\":{\"codepoints\":[165],\"characters\":\"¥\"},\"&yfr;\":{\"codepoints\":[120118],\"characters\":\"𝔶\"},\"&yicy;\":{\"codepoints\":[1111],\"characters\":\"ї\"},\"&yopf;\":{\"codepoints\":[120170],\"characters\":\"𝕪\"},\"&yscr;\":{\"codepoints\":[120014],\"characters\":\"𝓎\"},\"&yucy;\":{\"codepoints\":[1102],\"characters\":\"ю\"},\"&yuml;\":{\"codepoints\":[255],\"characters\":\"ÿ\"},\"&yuml\":{\"codepoints\":[255],\"characters\":\"ÿ\"},\"&zacute;\":{\"codepoints\":[378],\"characters\":\"ź\"},\"&zcaron;\":{\"codepoints\":[382],\"characters\":\"ž\"},\"&zcy;\":{\"codepoints\":[1079],\"characters\":\"з\"},\"&zdot;\":{\"codepoints\":[380],\"characters\":\"ż\"},\"&zeetrf;\":{\"codepoints\":[8488],\"characters\":\"ℨ\"},\"&zeta;\":{\"codepoints\":[950],\"characters\":\"ζ\"},\"&zfr;\":{\"codepoints\":[120119],\"characters\":\"𝔷\"},\"&zhcy;\":{\"codepoints\":[1078],\"characters\":\"ж\"},\"&zigrarr;\":{\"codepoints\":[8669],\"characters\":\"⇝\"},\"&zopf;\":{\"codepoints\":[120171],\"characters\":\"𝕫\"},\"&zscr;\":{\"codepoints\":[120015],\"characters\":\"𝓏\"},\"&zwj;\":{\"codepoints\":[8205],\"characters\":\"‍\"},\"&zwnj;\":{\"codepoints\":[8204],\"characters\":\"‌\"}}");
2749
+
2761
2750
  /***/ }),
2762
2751
 
2763
2752
  /***/ "a04b":
@@ -6589,7 +6578,7 @@ var fails = __webpack_require__("d039");
6589
6578
  // V8 ~ Chrome 36-
6590
6579
  // https://bugs.chromium.org/p/v8/issues/detail?id=3334
6591
6580
  module.exports = DESCRIPTORS && fails(function () {
6592
- // eslint-disable-next-line es-x/no-object-defineproperty -- required for testing
6581
+ // eslint-disable-next-line es/no-object-defineproperty -- required for testing
6593
6582
  return Object.defineProperty(function () { /* empty */ }, 'prototype', {
6594
6583
  value: 42,
6595
6584
  writable: false
@@ -6607,7 +6596,7 @@ var floor = Math.floor;
6607
6596
 
6608
6597
  // `Math.trunc` method
6609
6598
  // https://tc39.es/ecma262/#sec-math.trunc
6610
- // eslint-disable-next-line es-x/no-math-trunc -- safe
6599
+ // eslint-disable-next-line es/no-math-trunc -- safe
6611
6600
  module.exports = Math.trunc || function trunc(x) {
6612
6601
  var n = +x;
6613
6602
  return (n > 0 ? floor : ceil)(n);
@@ -9213,10 +9202,10 @@ module.exports = NATIVE_BIND ? call.bind(call) : function () {
9213
9202
  /***/ "c6b6":
9214
9203
  /***/ (function(module, exports, __webpack_require__) {
9215
9204
 
9216
- var uncurryThis = __webpack_require__("e330");
9205
+ var uncurryThisRaw = __webpack_require__("7d7e");
9217
9206
 
9218
- var toString = uncurryThis({}.toString);
9219
- var stringSlice = uncurryThis(''.slice);
9207
+ var toString = uncurryThisRaw({}.toString);
9208
+ var stringSlice = uncurryThisRaw(''.slice);
9220
9209
 
9221
9210
  module.exports = function (it) {
9222
9211
  return stringSlice(toString(it), 8, -1);
@@ -9675,35 +9664,6 @@ module.exports = function (object, names) {
9675
9664
  };
9676
9665
 
9677
9666
 
9678
- /***/ }),
9679
-
9680
- /***/ "caad":
9681
- /***/ (function(module, exports, __webpack_require__) {
9682
-
9683
- "use strict";
9684
-
9685
- var $ = __webpack_require__("23e7");
9686
- var $includes = __webpack_require__("4d64").includes;
9687
- var fails = __webpack_require__("d039");
9688
- var addToUnscopables = __webpack_require__("44d2");
9689
-
9690
- // FF99+ bug
9691
- var BROKEN_ON_SPARSE = fails(function () {
9692
- return !Array(1).includes();
9693
- });
9694
-
9695
- // `Array.prototype.includes` method
9696
- // https://tc39.es/ecma262/#sec-array.prototype.includes
9697
- $({ target: 'Array', proto: true, forced: BROKEN_ON_SPARSE }, {
9698
- includes: function includes(el /* , fromIndex = 0 */) {
9699
- return $includes(this, el, arguments.length > 1 ? arguments[1] : undefined);
9700
- }
9701
- });
9702
-
9703
- // https://tc39.es/ecma262/#sec-array.prototype-@@unscopables
9704
- addToUnscopables('includes');
9705
-
9706
-
9707
9667
  /***/ }),
9708
9668
 
9709
9669
  /***/ "cb2d":
@@ -9822,7 +9782,7 @@ module.exports = function (namespace, method) {
9822
9782
  "use strict";
9823
9783
 
9824
9784
  var $propertyIsEnumerable = {}.propertyIsEnumerable;
9825
- // eslint-disable-next-line es-x/no-object-getownpropertydescriptor -- safe
9785
+ // eslint-disable-next-line es/no-object-getownpropertydescriptor -- safe
9826
9786
  var getOwnPropertyDescriptor = Object.getOwnPropertyDescriptor;
9827
9787
 
9828
9788
  // Nashorn ~ JDK8 bug
@@ -9915,7 +9875,7 @@ module.exports = USE_SYMBOL_AS_UID ? function (it) {
9915
9875
 
9916
9876
  // https://github.com/zloirock/core-js/issues/86#issuecomment-115759028
9917
9877
  module.exports =
9918
- // eslint-disable-next-line es-x/no-global-this -- safe
9878
+ // eslint-disable-next-line es/no-global-this -- safe
9919
9879
  check(typeof globalThis == 'object' && globalThis) ||
9920
9880
  check(typeof window == 'object' && window) ||
9921
9881
  // eslint-disable-next-line no-restricted-globals -- safe
@@ -9950,22 +9910,6 @@ module.exports = function (V, P) {
9950
9910
  };
9951
9911
 
9952
9912
 
9953
- /***/ }),
9954
-
9955
- /***/ "df75":
9956
- /***/ (function(module, exports, __webpack_require__) {
9957
-
9958
- var internalObjectKeys = __webpack_require__("ca84");
9959
- var enumBugKeys = __webpack_require__("7839");
9960
-
9961
- // `Object.keys` method
9962
- // https://tc39.es/ecma262/#sec-object.keys
9963
- // eslint-disable-next-line es-x/no-object-keys -- safe
9964
- module.exports = Object.keys || function keys(O) {
9965
- return internalObjectKeys(O, enumBugKeys);
9966
- };
9967
-
9968
-
9969
9913
  /***/ }),
9970
9914
 
9971
9915
  /***/ "e1ca":
@@ -10033,19 +9977,14 @@ module.exports = subDays
10033
9977
  /***/ "e330":
10034
9978
  /***/ (function(module, exports, __webpack_require__) {
10035
9979
 
10036
- var NATIVE_BIND = __webpack_require__("40d5");
10037
-
10038
- var FunctionPrototype = Function.prototype;
10039
- var bind = FunctionPrototype.bind;
10040
- var call = FunctionPrototype.call;
10041
- var uncurryThis = NATIVE_BIND && bind.bind(call, call);
9980
+ var classofRaw = __webpack_require__("c6b6");
9981
+ var uncurryThisRaw = __webpack_require__("7d7e");
10042
9982
 
10043
- module.exports = NATIVE_BIND ? function (fn) {
10044
- return fn && uncurryThis(fn);
10045
- } : function (fn) {
10046
- return fn && function () {
10047
- return call.apply(fn, arguments);
10048
- };
9983
+ module.exports = function (fn) {
9984
+ // Nashorn bug:
9985
+ // https://github.com/zloirock/core-js/issues/1128
9986
+ // https://github.com/zloirock/core-js/issues/1130
9987
+ if (classofRaw(fn) === 'Function') return uncurryThisRaw(fn);
10049
9988
  };
10050
9989
 
10051
9990
 
@@ -10174,6 +10113,21 @@ module.exports = function (target, source, exceptions) {
10174
10113
  };
10175
10114
 
10176
10115
 
10116
+ /***/ }),
10117
+
10118
+ /***/ "e8b5":
10119
+ /***/ (function(module, exports, __webpack_require__) {
10120
+
10121
+ var classof = __webpack_require__("c6b6");
10122
+
10123
+ // `IsArray` abstract operation
10124
+ // https://tc39.es/ecma262/#sec-isarray
10125
+ // eslint-disable-next-line es/no-array-isarray -- safe
10126
+ module.exports = Array.isArray || function isArray(argument) {
10127
+ return classof(argument) == 'Array';
10128
+ };
10129
+
10130
+
10177
10131
  /***/ }),
10178
10132
 
10179
10133
  /***/ "eca2":
@@ -10252,11 +10206,10 @@ if (typeof window !== 'undefined') {
10252
10206
  var external_commonjs_vue_commonjs2_vue_root_Vue_ = __webpack_require__("8bbf");
10253
10207
  var external_commonjs_vue_commonjs2_vue_root_Vue_default = /*#__PURE__*/__webpack_require__.n(external_commonjs_vue_commonjs2_vue_root_Vue_);
10254
10208
 
10255
- // CONCATENATED MODULE: ./node_modules/cache-loader/dist/cjs.js?{"cacheDirectory":"node_modules/.cache/vue-loader","cacheIdentifier":"7b4cc503-vue-loader-template"}!./node_modules/cache-loader/dist/cjs.js??ref--13-0!./node_modules/thread-loader/dist/cjs.js!./node_modules/babel-loader/lib!./node_modules/vue-loader/lib/loaders/templateLoader.js??ref--6!./node_modules/cache-loader/dist/cjs.js??ref--1-0!./node_modules/vue-loader/lib??vue-loader-options!./src/components/forms/ToggleInputText.vue?vue&type=template&id=0268a55b&
10209
+ // CONCATENATED MODULE: ./node_modules/cache-loader/dist/cjs.js?{"cacheDirectory":"node_modules/.cache/vue-loader","cacheIdentifier":"041c37bc-vue-loader-template"}!./node_modules/cache-loader/dist/cjs.js??ref--13-0!./node_modules/thread-loader/dist/cjs.js!./node_modules/babel-loader/lib!./node_modules/vue-loader/lib/loaders/templateLoader.js??ref--6!./node_modules/cache-loader/dist/cjs.js??ref--1-0!./node_modules/vue-loader/lib??vue-loader-options!./src/components/forms/ToggleInputText.vue?vue&type=template&id=4d4c2c24&
10256
10210
  var render = function render() {
10257
10211
  var _vm = this,
10258
- _c = _vm._self._c;
10259
-
10212
+ _c = _vm._self._c;
10260
10213
  return _c('div', {
10261
10214
  staticClass: "toggle-input-container",
10262
10215
  class: {
@@ -10297,13 +10250,11 @@ var render = function render() {
10297
10250
  on: {
10298
10251
  "change": function ($event) {
10299
10252
  var $$a = _vm.inputVal,
10300
- $$el = $event.target,
10301
- $$c = $$el.checked ? true : false;
10302
-
10253
+ $$el = $event.target,
10254
+ $$c = $$el.checked ? true : false;
10303
10255
  if (Array.isArray($$a)) {
10304
10256
  var $$v = null,
10305
- $$i = _vm._i($$a, $$v);
10306
-
10257
+ $$i = _vm._i($$a, $$v);
10307
10258
  if ($$el.checked) {
10308
10259
  $$i < 0 && (_vm.inputVal = $$a.concat([$$v]));
10309
10260
  } else {
@@ -10374,99 +10325,111 @@ var render = function render() {
10374
10325
  }
10375
10326
  }, [_vm._v(" " + _vm._s(_vm.errorMessage) + " ")]) : _vm._e()]);
10376
10327
  };
10377
-
10378
10328
  var staticRenderFns = [];
10379
10329
 
10380
- // CONCATENATED MODULE: ./src/components/forms/ToggleInputText.vue?vue&type=template&id=0268a55b&
10330
+ // CONCATENATED MODULE: ./src/components/forms/ToggleInputText.vue?vue&type=template&id=4d4c2c24&
10381
10331
 
10382
10332
  // EXTERNAL MODULE: ./src/sass/includes/_as_variables.scss
10383
10333
  var _as_variables = __webpack_require__("b659");
10384
10334
  var _as_variables_default = /*#__PURE__*/__webpack_require__.n(_as_variables);
10385
10335
 
10336
+ // EXTERNAL MODULE: ./src/components/json/char_list.json
10337
+ var char_list = __webpack_require__("a01d");
10338
+
10386
10339
  // CONCATENATED MODULE: ./src/components/mixins/mixins.js
10387
10340
 
10341
+
10388
10342
  const mixins = {
10389
10343
  data() {
10390
- return {};
10344
+ return {
10345
+ jsonCharCodes: char_list
10346
+ };
10391
10347
  },
10392
-
10393
10348
  methods: {
10394
10349
  // When a container is clicked, the cosest internal input is focused.
10395
10350
  focusClosestInput(event) {
10396
10351
  if (event.target.querySelector('input, textarea') !== null) event.target.querySelector('input, textarea').focus();
10397
10352
  },
10398
-
10399
10353
  // Pass in a string date YYYY-MM-DD and returned as DD/MM/YYYY
10400
10354
  dateRangeView(date) {
10401
10355
  let formattedDate = '';
10402
-
10403
10356
  if (date) {
10404
10357
  let splitdate = date.split("-");
10405
10358
  formattedDate = splitdate[2] + '/' + splitdate[1] + '/' + splitdate[0];
10406
10359
  }
10407
-
10408
10360
  return formattedDate;
10409
10361
  },
10410
-
10411
10362
  // Pass in a Javascript Date object and return as a string YYYY-MM-DD
10412
10363
  formatDate(date) {
10413
10364
  if (!date) return '';
10414
10365
  let dd = date.getDate();
10415
10366
  let mm = date.getMonth() + 1;
10416
- let yyyy = date.getFullYear(); // add zeros to single figures
10367
+ let yyyy = date.getFullYear();
10417
10368
 
10369
+ // add zeros to single figures
10418
10370
  if (dd < 10) dd = '0' + dd;
10419
10371
  if (mm < 10) mm = '0' + mm;
10420
10372
  return yyyy + '-' + mm + '-' + dd;
10421
10373
  },
10422
-
10423
10374
  /*
10424
10375
  * Converts emojis to html entity
10425
10376
  * @param str (the entire message)
10426
10377
  * @return string of entire message including decoded emojis
10427
10378
  */
10428
10379
  convertEmojis(str) {
10429
- let result = ''; //converts unicode decimal value into an HTML entity
10430
-
10431
- let decimal2Html = num => `&#${num};`; //converts a character into an HTML entity
10380
+ let result = '';
10432
10381
 
10382
+ //converts unicode decimal value into an HTML entity
10383
+ let decimal2Html = num => `&#${num};`;
10433
10384
 
10385
+ //converts a character into an HTML entity
10434
10386
  const char2Html = char => {
10435
- let item = `${char}`; //spread operator can detect emoji surrogate pairs
10387
+ // Check for special characters first
10388
+ let codepointVals = Object.values(this.jsonCharCodes).map(value => value.codepoints[0]);
10389
+ let codesArray = Object.entries(this.jsonCharCodes);
10390
+ if (codepointVals.includes(char.codePointAt())) {
10391
+ let namedChar = codesArray.filter(nestedArr => {
10392
+ return nestedArr[1].codepoints[0] == char.codePointAt();
10393
+ });
10394
+ // If it's a special character return now
10395
+ return `${namedChar[0][0]}`;
10396
+ }
10397
+ let item = `${char}`;
10436
10398
 
10399
+ //spread operator can detect emoji surrogate pairs
10437
10400
  if ([...item].length > 1) {
10438
10401
  //handle and convert utf surrogate pairs
10439
10402
  let concat = '';
10440
- let unicode = ''; //for each part of the pair
10403
+ let unicode = '';
10441
10404
 
10405
+ //for each part of the pair
10442
10406
  for (let i = 0; i < 2; i++) {
10443
10407
  //get the character code value
10444
- let dec = char[i].codePointAt(); //convert to binary
10445
-
10446
- let bin = dec.toString(2); //take the last 10 bits
10447
-
10448
- let last10 = bin.slice(-10); //concatenate into 20 bit binary
10449
-
10450
- concat = concat + last10; //add 0x10000 to get unicode value
10451
-
10408
+ let dec = char[i].codePointAt();
10409
+ //convert to binary
10410
+ let bin = dec.toString(2);
10411
+ //take the last 10 bits
10412
+ let last10 = bin.slice(-10);
10413
+ //concatenate into 20 bit binary
10414
+ concat = concat + last10;
10415
+ //add 0x10000 to get unicode value
10452
10416
  unicode = parseInt(concat, 2) + 0x10000;
10453
- } //html entity from unicode value
10454
-
10417
+ }
10455
10418
 
10419
+ //html entity from unicode value
10456
10420
  return decimal2Html(unicode);
10457
- } //ASCII character or html entity from character code
10458
-
10421
+ }
10459
10422
 
10423
+ //ASCII character or html entity from character code
10460
10424
  return char.codePointAt() > 127 ? decimal2Html(char.codePointAt()) : char;
10461
- }; //check each character
10462
-
10425
+ };
10463
10426
 
10427
+ //check each character
10464
10428
  [...str].forEach(char => {
10465
10429
  result += char2Html(char);
10466
10430
  });
10467
10431
  return result;
10468
10432
  }
10469
-
10470
10433
  }
10471
10434
  };
10472
10435
  const charts = {
@@ -10489,9 +10452,7 @@ const charts = {
10489
10452
  if (values.every(val => val === 0)) {
10490
10453
  return false;
10491
10454
  }
10492
-
10493
10455
  let regressionCalc = this.calculateLinearRegression(values);
10494
-
10495
10456
  if (regressionCalc >= trend_impact_base) {
10496
10457
  return 1;
10497
10458
  } else if (regressionCalc < -trend_impact_base) {
@@ -10500,7 +10461,6 @@ const charts = {
10500
10461
  return 0;
10501
10462
  }
10502
10463
  },
10503
-
10504
10464
  /*
10505
10465
  * Calculates the linear regression for the trend impact
10506
10466
  *
@@ -10525,38 +10485,29 @@ const charts = {
10525
10485
  let denominator = nums.length * squared_index - summed_index ** 2;
10526
10486
  if (denominator != 0) return numerator / denominator;else return 0;
10527
10487
  },
10528
-
10529
10488
  //return an array of default colors
10530
10489
  getDefaultColors() {
10531
10490
  return this.$data.defcolors;
10532
10491
  },
10533
-
10534
10492
  //return a specific color
10535
10493
  getColor(color) {
10536
10494
  switch (color) {
10537
10495
  case 'black':
10538
10496
  return _as_variables_default.a.toggleMetricLabelBlack;
10539
-
10540
10497
  case 'gray':
10541
10498
  return _as_variables_default.a.toggleMetricLabelGray;
10542
-
10543
10499
  case 'green':
10544
10500
  return _as_variables_default.a.toggleMetricChartGreen;
10545
-
10546
10501
  case 'amber':
10547
10502
  return _as_variables_default.a.toggleMetricChartAmber;
10548
-
10549
10503
  case 'red':
10550
10504
  return _as_variables_default.a.toggleMetricChartRed;
10551
-
10552
10505
  case 'blue':
10553
10506
  return _as_variables_default.a.toggleMetricChartBlue;
10554
-
10555
10507
  case 'additional':
10556
10508
  return _as_variables_default.a.toggleMetricChartAdditional;
10557
10509
  }
10558
10510
  }
10559
-
10560
10511
  }
10561
10512
  };
10562
10513
  // CONCATENATED MODULE: ./node_modules/cache-loader/dist/cjs.js??ref--13-0!./node_modules/thread-loader/dist/cjs.js!./node_modules/babel-loader/lib!./node_modules/cache-loader/dist/cjs.js??ref--1-0!./node_modules/vue-loader/lib??vue-loader-options!./src/components/forms/ToggleInputText.vue?vue&type=script&lang=js&
@@ -10645,28 +10596,25 @@ const charts = {
10645
10596
  * Concat message for count characters
10646
10597
  * @return string
10647
10598
  */
10648
- messageLength(count, maxLenght) {
10649
- let message = count;
10650
- let mcount = 0; // If the emoji flag is set, make sure the character count takes account of the decoded emoji characters (this will include £ signs)
10599
+ messageLength(msg, maxLength) {
10600
+ let message = msg;
10601
+ let mcount = 0;
10651
10602
 
10652
- if (this.includeEmojiEntitiesInCharCount && count) {
10653
- let message = this.convertEmojis(count);
10654
- mcount = message ? this.convertEmojis(message).length : 0;
10603
+ // If the emoji flag is set, make sure the character count takes account of the decoded emoji characters (this will include £ signs)
10604
+ if (this.includeEmojiEntitiesInCharCount && msg) {
10605
+ message = this.convertEmojis(msg);
10606
+ mcount = message ? message.length : 0;
10655
10607
  } else {
10656
10608
  mcount = message ? message.length : 0;
10657
10609
  }
10658
-
10659
- return mcount + ' / ' + maxLenght;
10610
+ return mcount + ' / ' + maxLength;
10660
10611
  },
10661
-
10662
10612
  onFocus() {
10663
10613
  this.$emit('onFocus');
10664
10614
  },
10665
-
10666
10615
  onBlur() {
10667
10616
  this.$emit('onBlur');
10668
10617
  }
10669
-
10670
10618
  }
10671
10619
  });
10672
10620
  // CONCATENATED MODULE: ./src/components/forms/ToggleInputText.vue?vue&type=script&lang=js&
@@ -10789,11 +10737,10 @@ var component = normalizeComponent(
10789
10737
  )
10790
10738
 
10791
10739
  /* harmony default export */ var ToggleInputText = (component.exports);
10792
- // CONCATENATED MODULE: ./node_modules/cache-loader/dist/cjs.js?{"cacheDirectory":"node_modules/.cache/vue-loader","cacheIdentifier":"7b4cc503-vue-loader-template"}!./node_modules/cache-loader/dist/cjs.js??ref--13-0!./node_modules/thread-loader/dist/cjs.js!./node_modules/babel-loader/lib!./node_modules/vue-loader/lib/loaders/templateLoader.js??ref--6!./node_modules/cache-loader/dist/cjs.js??ref--1-0!./node_modules/vue-loader/lib??vue-loader-options!./src/components/forms/ToggleInputWebsite.vue?vue&type=template&id=7b07579a&
10740
+ // CONCATENATED MODULE: ./node_modules/cache-loader/dist/cjs.js?{"cacheDirectory":"node_modules/.cache/vue-loader","cacheIdentifier":"041c37bc-vue-loader-template"}!./node_modules/cache-loader/dist/cjs.js??ref--13-0!./node_modules/thread-loader/dist/cjs.js!./node_modules/babel-loader/lib!./node_modules/vue-loader/lib/loaders/templateLoader.js??ref--6!./node_modules/cache-loader/dist/cjs.js??ref--1-0!./node_modules/vue-loader/lib??vue-loader-options!./src/components/forms/ToggleInputWebsite.vue?vue&type=template&id=7b07579a&
10793
10741
  var ToggleInputWebsitevue_type_template_id_7b07579a_render = function render() {
10794
10742
  var _vm = this,
10795
- _c = _vm._self._c;
10796
-
10743
+ _c = _vm._self._c;
10797
10744
  return _c('div', {
10798
10745
  staticClass: "toggle-input-container",
10799
10746
  class: {
@@ -10861,13 +10808,11 @@ var ToggleInputWebsitevue_type_template_id_7b07579a_render = function render() {
10861
10808
  "blur": _vm.setWebsite,
10862
10809
  "change": function ($event) {
10863
10810
  var $$a = _vm.website,
10864
- $$el = $event.target,
10865
- $$c = $$el.checked ? true : false;
10866
-
10811
+ $$el = $event.target,
10812
+ $$c = $$el.checked ? true : false;
10867
10813
  if (Array.isArray($$a)) {
10868
10814
  var $$v = null,
10869
- $$i = _vm._i($$a, $$v);
10870
-
10815
+ $$i = _vm._i($$a, $$v);
10871
10816
  if ($$el.checked) {
10872
10817
  $$i < 0 && (_vm.website = $$a.concat([$$v]));
10873
10818
  } else {
@@ -10936,7 +10881,6 @@ var ToggleInputWebsitevue_type_template_id_7b07579a_render = function render() {
10936
10881
  }
10937
10882
  }, [_vm._v(" " + _vm._s(_vm.errorMessage) + " ")]) : _vm._e()]);
10938
10883
  };
10939
-
10940
10884
  var ToggleInputWebsitevue_type_template_id_7b07579a_staticRenderFns = [];
10941
10885
 
10942
10886
  // CONCATENATED MODULE: ./src/components/forms/ToggleInputWebsite.vue?vue&type=template&id=7b07579a&
@@ -11029,20 +10973,16 @@ var ToggleInputWebsitevue_type_template_id_7b07579a_staticRenderFns = [];
11029
10973
  let mcount = count ? count.length : 0;
11030
10974
  return mcount + ' / ' + maxLenght;
11031
10975
  },
11032
-
11033
10976
  onFocus() {
11034
10977
  this.$emit('onFocus');
11035
10978
  },
11036
-
11037
10979
  onBlur() {
11038
10980
  this.$emit('onBlur');
11039
10981
  },
11040
-
11041
10982
  setWebsite() {
11042
10983
  if (this.inputVal) {
11043
10984
  this.website = this.website.replace(/(^\w+:|^)\/\//, '');
11044
10985
  var arr = this.inputVal.split("/");
11045
-
11046
10986
  if (arr[2] === 'http:' || arr[2] === 'https:') {
11047
10987
  this.protocol = arr[2] + "//";
11048
10988
  } else {
@@ -11053,7 +10993,6 @@ var ToggleInputWebsitevue_type_template_id_7b07579a_staticRenderFns = [];
11053
10993
  this.website = '';
11054
10994
  }
11055
10995
  }
11056
-
11057
10996
  }
11058
10997
  });
11059
10998
  // CONCATENATED MODULE: ./src/components/forms/ToggleInputWebsite.vue?vue&type=script&lang=js&
@@ -11078,11 +11017,10 @@ var ToggleInputWebsite_component = normalizeComponent(
11078
11017
  )
11079
11018
 
11080
11019
  /* harmony default export */ var ToggleInputWebsite = (ToggleInputWebsite_component.exports);
11081
- // CONCATENATED MODULE: ./node_modules/cache-loader/dist/cjs.js?{"cacheDirectory":"node_modules/.cache/vue-loader","cacheIdentifier":"7b4cc503-vue-loader-template"}!./node_modules/cache-loader/dist/cjs.js??ref--13-0!./node_modules/thread-loader/dist/cjs.js!./node_modules/babel-loader/lib!./node_modules/vue-loader/lib/loaders/templateLoader.js??ref--6!./node_modules/cache-loader/dist/cjs.js??ref--1-0!./node_modules/vue-loader/lib??vue-loader-options!./src/components/forms/ToggleDatePicker.vue?vue&type=template&id=44ffdc7f&
11020
+ // CONCATENATED MODULE: ./node_modules/cache-loader/dist/cjs.js?{"cacheDirectory":"node_modules/.cache/vue-loader","cacheIdentifier":"041c37bc-vue-loader-template"}!./node_modules/cache-loader/dist/cjs.js??ref--13-0!./node_modules/thread-loader/dist/cjs.js!./node_modules/babel-loader/lib!./node_modules/vue-loader/lib/loaders/templateLoader.js??ref--6!./node_modules/cache-loader/dist/cjs.js??ref--1-0!./node_modules/vue-loader/lib??vue-loader-options!./src/components/forms/ToggleDatePicker.vue?vue&type=template&id=44ffdc7f&
11082
11021
  var ToggleDatePickervue_type_template_id_44ffdc7f_render = function render() {
11083
11022
  var _vm = this,
11084
- _c = _vm._self._c;
11085
-
11023
+ _c = _vm._self._c;
11086
11024
  return _c('div', {
11087
11025
  staticClass: "toggle-date-container",
11088
11026
  class: ['datepicker-trigger', {
@@ -11145,7 +11083,6 @@ var ToggleDatePickervue_type_template_id_44ffdc7f_render = function render() {
11145
11083
  }
11146
11084
  }, [_vm._v(" " + _vm._s(_vm.errorMessage) + " ")]) : _vm._e()], 1);
11147
11085
  };
11148
-
11149
11086
  var ToggleDatePickervue_type_template_id_44ffdc7f_staticRenderFns = [];
11150
11087
 
11151
11088
  // CONCATENATED MODULE: ./src/components/forms/ToggleDatePicker.vue?vue&type=template&id=44ffdc7f&
@@ -12408,13 +12345,11 @@ external_commonjs_vue_commonjs2_vue_root_Vue_default.a.use(vue_airbnb_style_date
12408
12345
  let state = newVal ? 'open' : 'closed';
12409
12346
  this.$emit('state', state);
12410
12347
  }
12411
-
12412
12348
  },
12413
12349
  computed: {
12414
12350
  date() {
12415
12351
  return this.dateRangeView(this.displayValue);
12416
12352
  },
12417
-
12418
12353
  // plugin only accepts MM/DD/YYYY, so change this so that it excepts and outputs JS dates
12419
12354
  displayValue: {
12420
12355
  get: function () {
@@ -12424,7 +12359,6 @@ external_commonjs_vue_commonjs2_vue_root_Vue_default.a.use(vue_airbnb_style_date
12424
12359
  if (modifiedValue) {
12425
12360
  modifiedValue = new Date(new Date(modifiedValue + ' 00:00:00').toISOString());
12426
12361
  } else modifiedValue = false;
12427
-
12428
12362
  this.$emit('input', modifiedValue);
12429
12363
  }
12430
12364
  }
@@ -12433,13 +12367,11 @@ external_commonjs_vue_commonjs2_vue_root_Vue_default.a.use(vue_airbnb_style_date
12433
12367
  clearDate() {
12434
12368
  this.displayValue = '';
12435
12369
  },
12436
-
12437
12370
  toggleDatePickerState(state) {
12438
12371
  this.$nextTick(() => {
12439
12372
  if (typeof state === 'boolean') this.datePickerOpen = state;else this.datePickerOpen = !this.datePickerOpen;
12440
12373
  });
12441
12374
  }
12442
-
12443
12375
  }
12444
12376
  });
12445
12377
  // CONCATENATED MODULE: ./src/components/forms/ToggleDatePicker.vue?vue&type=script&lang=js&
@@ -12464,11 +12396,10 @@ var ToggleDatePicker_component = normalizeComponent(
12464
12396
  )
12465
12397
 
12466
12398
  /* harmony default export */ var ToggleDatePicker = (ToggleDatePicker_component.exports);
12467
- // CONCATENATED MODULE: ./node_modules/cache-loader/dist/cjs.js?{"cacheDirectory":"node_modules/.cache/vue-loader","cacheIdentifier":"7b4cc503-vue-loader-template"}!./node_modules/cache-loader/dist/cjs.js??ref--13-0!./node_modules/thread-loader/dist/cjs.js!./node_modules/babel-loader/lib!./node_modules/vue-loader/lib/loaders/templateLoader.js??ref--6!./node_modules/cache-loader/dist/cjs.js??ref--1-0!./node_modules/vue-loader/lib??vue-loader-options!./src/components/forms/ToggleDateRangePicker.vue?vue&type=template&id=5605f472&
12399
+ // CONCATENATED MODULE: ./node_modules/cache-loader/dist/cjs.js?{"cacheDirectory":"node_modules/.cache/vue-loader","cacheIdentifier":"041c37bc-vue-loader-template"}!./node_modules/cache-loader/dist/cjs.js??ref--13-0!./node_modules/thread-loader/dist/cjs.js!./node_modules/babel-loader/lib!./node_modules/vue-loader/lib/loaders/templateLoader.js??ref--6!./node_modules/cache-loader/dist/cjs.js??ref--1-0!./node_modules/vue-loader/lib??vue-loader-options!./src/components/forms/ToggleDateRangePicker.vue?vue&type=template&id=5605f472&
12468
12400
  var ToggleDateRangePickervue_type_template_id_5605f472_render = function render() {
12469
12401
  var _vm = this,
12470
- _c = _vm._self._c;
12471
-
12402
+ _c = _vm._self._c;
12472
12403
  return _c('div', {
12473
12404
  staticClass: "toggle-date-container",
12474
12405
  class: ['datepicker-trigger', {
@@ -12540,7 +12471,6 @@ var ToggleDateRangePickervue_type_template_id_5605f472_render = function render(
12540
12471
  }
12541
12472
  }, [_vm._v(" " + _vm._s(_vm.errorMessage) + " ")]) : _vm._e()], 1);
12542
12473
  };
12543
-
12544
12474
  var ToggleDateRangePickervue_type_template_id_5605f472_staticRenderFns = [];
12545
12475
 
12546
12476
  // CONCATENATED MODULE: ./src/components/forms/ToggleDateRangePicker.vue?vue&type=template&id=5605f472&
@@ -12622,23 +12552,18 @@ external_commonjs_vue_commonjs2_vue_root_Vue_default.a.use(vue_airbnb_style_date
12622
12552
  let state = newVal ? 'open' : 'closed';
12623
12553
  this.$emit('state', state);
12624
12554
  }
12625
-
12626
12555
  },
12627
12556
  computed: {
12628
12557
  dateRange() {
12629
12558
  let formattedDates = '';
12630
-
12631
12559
  if (this.displayValue.start) {
12632
12560
  formattedDates = this.dateRangeView(this.displayValue.start);
12633
12561
  }
12634
-
12635
12562
  if (this.displayValue.end) {
12636
12563
  formattedDates += ' - ' + this.dateRangeView(this.displayValue.end);
12637
12564
  }
12638
-
12639
12565
  return formattedDates;
12640
12566
  },
12641
-
12642
12567
  displayValue: {
12643
12568
  get: function () {
12644
12569
  return {
@@ -12656,7 +12581,6 @@ external_commonjs_vue_commonjs2_vue_root_Vue_default.a.use(vue_airbnb_style_date
12656
12581
  end: this.selectedDateToEmit.end ? this.selectedDateToEmit.end : isoDate
12657
12582
  };
12658
12583
  }
12659
-
12660
12584
  if (modifiedValue.end) {
12661
12585
  //if modifiedValue.end is present, set selectedDateToEmit.end to it. If there is already a start date stored,
12662
12586
  // set selectedDateToEmit.start to it, otherwise use the end date.
@@ -12665,9 +12589,8 @@ external_commonjs_vue_commonjs2_vue_root_Vue_default.a.use(vue_airbnb_style_date
12665
12589
  start: this.selectedDateToEmit.start ? this.selectedDateToEmit.start : isoDate,
12666
12590
  end: isoDate
12667
12591
  };
12668
- } // If the start date is more recent than the end date, set the end date to the start date.
12669
-
12670
-
12592
+ }
12593
+ // If the start date is more recent than the end date, set the end date to the start date.
12671
12594
  if (new Date(this.selectedDateToEmit.start).getTime() > new Date(this.selectedDateToEmit.end).getTime()) this.selectedDateToEmit.end = this.selectedDateToEmit.start;
12672
12595
  }
12673
12596
  }
@@ -12679,14 +12602,12 @@ external_commonjs_vue_commonjs2_vue_root_Vue_default.a.use(vue_airbnb_style_date
12679
12602
  end: ''
12680
12603
  };
12681
12604
  },
12682
-
12683
12605
  toggleDatePickerState(state, emit) {
12684
12606
  this.$nextTick(() => {
12685
12607
  this.displayValue = {
12686
12608
  start: '',
12687
12609
  end: ''
12688
12610
  };
12689
-
12690
12611
  if (typeof state === 'boolean') {
12691
12612
  //if done is clicked, emit
12692
12613
  if (emit) this.$emit('input', this.selectedDateToEmit);
@@ -12694,7 +12615,6 @@ external_commonjs_vue_commonjs2_vue_root_Vue_default.a.use(vue_airbnb_style_date
12694
12615
  } else this.datePickerOpen = !this.datePickerOpen;
12695
12616
  });
12696
12617
  }
12697
-
12698
12618
  }
12699
12619
  });
12700
12620
  // CONCATENATED MODULE: ./src/components/forms/ToggleDateRangePicker.vue?vue&type=script&lang=js&
@@ -12719,11 +12639,10 @@ var ToggleDateRangePicker_component = normalizeComponent(
12719
12639
  )
12720
12640
 
12721
12641
  /* harmony default export */ var ToggleDateRangePicker = (ToggleDateRangePicker_component.exports);
12722
- // CONCATENATED MODULE: ./node_modules/cache-loader/dist/cjs.js?{"cacheDirectory":"node_modules/.cache/vue-loader","cacheIdentifier":"7b4cc503-vue-loader-template"}!./node_modules/cache-loader/dist/cjs.js??ref--13-0!./node_modules/thread-loader/dist/cjs.js!./node_modules/babel-loader/lib!./node_modules/vue-loader/lib/loaders/templateLoader.js??ref--6!./node_modules/cache-loader/dist/cjs.js??ref--1-0!./node_modules/vue-loader/lib??vue-loader-options!./src/components/forms/ToggleInputSelect.vue?vue&type=template&id=1fed8e17&
12642
+ // CONCATENATED MODULE: ./node_modules/cache-loader/dist/cjs.js?{"cacheDirectory":"node_modules/.cache/vue-loader","cacheIdentifier":"041c37bc-vue-loader-template"}!./node_modules/cache-loader/dist/cjs.js??ref--13-0!./node_modules/thread-loader/dist/cjs.js!./node_modules/babel-loader/lib!./node_modules/vue-loader/lib/loaders/templateLoader.js??ref--6!./node_modules/cache-loader/dist/cjs.js??ref--1-0!./node_modules/vue-loader/lib??vue-loader-options!./src/components/forms/ToggleInputSelect.vue?vue&type=template&id=1fed8e17&
12723
12643
  var ToggleInputSelectvue_type_template_id_1fed8e17_render = function render() {
12724
12644
  var _vm = this,
12725
- _c = _vm._self._c;
12726
-
12645
+ _c = _vm._self._c;
12727
12646
  return _c('div', {
12728
12647
  staticClass: "toggle-input-container",
12729
12648
  class: {
@@ -12782,7 +12701,6 @@ var ToggleInputSelectvue_type_template_id_1fed8e17_render = function render() {
12782
12701
  }
12783
12702
  }, [_vm._v(" " + _vm._s(_vm.errorMessage) + " ")]) : _vm._e()]);
12784
12703
  };
12785
-
12786
12704
  var ToggleInputSelectvue_type_template_id_1fed8e17_staticRenderFns = [];
12787
12705
 
12788
12706
  // CONCATENATED MODULE: ./src/components/forms/ToggleInputSelect.vue?vue&type=template&id=1fed8e17&
@@ -12847,17 +12765,14 @@ var ToggleInputSelectvue_type_template_id_1fed8e17_staticRenderFns = [];
12847
12765
  onFocus() {
12848
12766
  this.$emit('onFocus');
12849
12767
  },
12850
-
12851
12768
  onBlur() {
12852
12769
  this.$emit('onBlur');
12853
12770
  }
12854
-
12855
12771
  },
12856
12772
  watch: {
12857
12773
  options(options) {
12858
12774
  if (options.filter(option => option.value == this.inputVal).length == 0) this.inputVal = "";
12859
12775
  }
12860
-
12861
12776
  }
12862
12777
  });
12863
12778
  // CONCATENATED MODULE: ./src/components/forms/ToggleInputSelect.vue?vue&type=script&lang=js&
@@ -12882,11 +12797,10 @@ var ToggleInputSelect_component = normalizeComponent(
12882
12797
  )
12883
12798
 
12884
12799
  /* harmony default export */ var ToggleInputSelect = (ToggleInputSelect_component.exports);
12885
- // CONCATENATED MODULE: ./node_modules/cache-loader/dist/cjs.js?{"cacheDirectory":"node_modules/.cache/vue-loader","cacheIdentifier":"7b4cc503-vue-loader-template"}!./node_modules/cache-loader/dist/cjs.js??ref--13-0!./node_modules/thread-loader/dist/cjs.js!./node_modules/babel-loader/lib!./node_modules/vue-loader/lib/loaders/templateLoader.js??ref--6!./node_modules/cache-loader/dist/cjs.js??ref--1-0!./node_modules/vue-loader/lib??vue-loader-options!./src/components/forms/ToggleInputPercentage.vue?vue&type=template&id=1c55c28c&
12800
+ // CONCATENATED MODULE: ./node_modules/cache-loader/dist/cjs.js?{"cacheDirectory":"node_modules/.cache/vue-loader","cacheIdentifier":"041c37bc-vue-loader-template"}!./node_modules/cache-loader/dist/cjs.js??ref--13-0!./node_modules/thread-loader/dist/cjs.js!./node_modules/babel-loader/lib!./node_modules/vue-loader/lib/loaders/templateLoader.js??ref--6!./node_modules/cache-loader/dist/cjs.js??ref--1-0!./node_modules/vue-loader/lib??vue-loader-options!./src/components/forms/ToggleInputPercentage.vue?vue&type=template&id=1c55c28c&
12886
12801
  var ToggleInputPercentagevue_type_template_id_1c55c28c_render = function render() {
12887
12802
  var _vm = this,
12888
- _c = _vm._self._c;
12889
-
12803
+ _c = _vm._self._c;
12890
12804
  return _c('div', {
12891
12805
  staticClass: "toggle-input-container",
12892
12806
  class: {
@@ -12936,7 +12850,6 @@ var ToggleInputPercentagevue_type_template_id_1c55c28c_render = function render(
12936
12850
  }
12937
12851
  }, [_vm._v(" " + _vm._s(_vm.errorMessage) + " ")]) : _vm._e()]);
12938
12852
  };
12939
-
12940
12853
  var ToggleInputPercentagevue_type_template_id_1c55c28c_staticRenderFns = [];
12941
12854
 
12942
12855
  // CONCATENATED MODULE: ./src/components/forms/ToggleInputPercentage.vue?vue&type=template&id=1c55c28c&
@@ -12996,7 +12909,6 @@ var ToggleInputPercentagevue_type_template_id_1c55c28c_staticRenderFns = [];
12996
12909
  this.inputVal = '100';
12997
12910
  }
12998
12911
  }
12999
-
13000
12912
  },
13001
12913
  computed: {
13002
12914
  inputVal: {
@@ -13026,15 +12938,12 @@ var ToggleInputPercentagevue_type_template_id_1c55c28c_staticRenderFns = [];
13026
12938
  let mcount = count ? count.length : 0;
13027
12939
  return mcount + ' / ' + maxLenght;
13028
12940
  },
13029
-
13030
12941
  onFocus() {
13031
12942
  this.$emit('onFocus');
13032
12943
  },
13033
-
13034
12944
  onBlur() {
13035
12945
  this.$emit('onBlur');
13036
12946
  }
13037
-
13038
12947
  }
13039
12948
  });
13040
12949
  // CONCATENATED MODULE: ./src/components/forms/ToggleInputPercentage.vue?vue&type=script&lang=js&
@@ -13059,11 +12968,10 @@ var ToggleInputPercentage_component = normalizeComponent(
13059
12968
  )
13060
12969
 
13061
12970
  /* harmony default export */ var ToggleInputPercentage = (ToggleInputPercentage_component.exports);
13062
- // CONCATENATED MODULE: ./node_modules/cache-loader/dist/cjs.js?{"cacheDirectory":"node_modules/.cache/vue-loader","cacheIdentifier":"7b4cc503-vue-loader-template"}!./node_modules/cache-loader/dist/cjs.js??ref--13-0!./node_modules/thread-loader/dist/cjs.js!./node_modules/babel-loader/lib!./node_modules/vue-loader/lib/loaders/templateLoader.js??ref--6!./node_modules/cache-loader/dist/cjs.js??ref--1-0!./node_modules/vue-loader/lib??vue-loader-options!./src/components/forms/ToggleInputCurrency.vue?vue&type=template&id=26af574e&
12971
+ // CONCATENATED MODULE: ./node_modules/cache-loader/dist/cjs.js?{"cacheDirectory":"node_modules/.cache/vue-loader","cacheIdentifier":"041c37bc-vue-loader-template"}!./node_modules/cache-loader/dist/cjs.js??ref--13-0!./node_modules/thread-loader/dist/cjs.js!./node_modules/babel-loader/lib!./node_modules/vue-loader/lib/loaders/templateLoader.js??ref--6!./node_modules/cache-loader/dist/cjs.js??ref--1-0!./node_modules/vue-loader/lib??vue-loader-options!./src/components/forms/ToggleInputCurrency.vue?vue&type=template&id=26af574e&
13063
12972
  var ToggleInputCurrencyvue_type_template_id_26af574e_render = function render() {
13064
12973
  var _vm = this,
13065
- _c = _vm._self._c;
13066
-
12974
+ _c = _vm._self._c;
13067
12975
  return _c('div', {
13068
12976
  staticClass: "toggle-input-container",
13069
12977
  class: {
@@ -13113,7 +13021,6 @@ var ToggleInputCurrencyvue_type_template_id_26af574e_render = function render()
13113
13021
  }
13114
13022
  }, [_vm._v(" " + _vm._s(_vm.errorMessage) + " ")]) : _vm._e()]);
13115
13023
  };
13116
-
13117
13024
  var ToggleInputCurrencyvue_type_template_id_26af574e_staticRenderFns = [];
13118
13025
 
13119
13026
  // CONCATENATED MODULE: ./src/components/forms/ToggleInputCurrency.vue?vue&type=template&id=26af574e&
@@ -13189,11 +13096,12 @@ var ToggleInputCurrencyvue_type_template_id_26af574e_staticRenderFns = [];
13189
13096
  inputVal: {
13190
13097
  get: function () {
13191
13098
  if (this.isInputActive) {
13192
- if ((this.value === '' || this.value === null) && this.allowBlank) return ''; // Cursor is inside the input field. unformat display value for user
13193
-
13099
+ if ((this.value === '' || this.value === null) && this.allowBlank) return '';
13100
+ // Cursor is inside the input field. unformat display value for user
13194
13101
  return (this.value / this.currencyDenomination).toLocaleString(this.currencyLocale);
13195
13102
  } else {
13196
- if (this.value === '' || this.value == null) return ''; // User is not modifying now. Format display value for user interface
13103
+ if (this.value === '' || this.value == null) return '';
13104
+ // User is not modifying now. Format display value for user interface
13197
13105
 
13198
13106
  return (this.value / this.currencyDenomination).toLocaleString(this.currencyLocale, {
13199
13107
  style: 'currency',
@@ -13203,16 +13111,16 @@ var ToggleInputCurrencyvue_type_template_id_26af574e_staticRenderFns = [];
13203
13111
  },
13204
13112
  set: function (modifiedValue) {
13205
13113
  // if the decimal seperator is a comma replace any inputted commas to periods
13206
- let newValue = this.unformatString(modifiedValue); // Recalculate value after ignoring "$" and "," in user input
13114
+ let newValue = this.unformatString(modifiedValue);
13115
+
13116
+ // Recalculate value after ignoring "$" and "," in user input
13207
13117
  // let newValue = parseFloat(modifiedValue.replace(/[^\d.]/g, ""));
13208
13118
  // Ensure that it is not NaN
13209
-
13210
13119
  if (isNaN(newValue)) {
13211
13120
  if (this.allowBlank) newValue = '';else newValue = 0;
13212
- } // Note: we cannot set this.value as it is a "prop". It needs to be passed to parent component
13121
+ }
13122
+ // Note: we cannot set this.value as it is a "prop". It needs to be passed to parent component
13213
13123
  // $emit the event so that parent component gets it
13214
-
13215
-
13216
13124
  if (newValue !== '') newValue = Math.round(newValue * this.currencyDenomination);
13217
13125
  this.$emit('input', newValue);
13218
13126
  }
@@ -13222,6 +13130,7 @@ var ToggleInputCurrencyvue_type_template_id_26af574e_staticRenderFns = [];
13222
13130
  /**
13223
13131
  * Unformats from locale currency to float
13224
13132
  */
13133
+
13225
13134
  unformatString(string) {
13226
13135
  var parts = 1234.5.toLocaleString(this.currencyLocale).match(/(\D+)/g);
13227
13136
  var unformatted = string;
@@ -13229,7 +13138,6 @@ var ToggleInputCurrencyvue_type_template_id_26af574e_staticRenderFns = [];
13229
13138
  unformatted = unformatted.split(parts[1]).join(".");
13230
13139
  return parseFloat(unformatted);
13231
13140
  },
13232
-
13233
13141
  /*
13234
13142
  * Concat message for count characters
13235
13143
  * @return string
@@ -13238,15 +13146,12 @@ var ToggleInputCurrencyvue_type_template_id_26af574e_staticRenderFns = [];
13238
13146
  let mcount = count ? count.length : 0;
13239
13147
  return mcount + ' / ' + maxLenght;
13240
13148
  },
13241
-
13242
13149
  onFocus() {
13243
13150
  this.$emit('onFocus');
13244
13151
  },
13245
-
13246
13152
  onBlur() {
13247
13153
  this.$emit('onBlur');
13248
13154
  }
13249
-
13250
13155
  }
13251
13156
  });
13252
13157
  // CONCATENATED MODULE: ./src/components/forms/ToggleInputCurrency.vue?vue&type=script&lang=js&
@@ -13271,11 +13176,10 @@ var ToggleInputCurrency_component = normalizeComponent(
13271
13176
  )
13272
13177
 
13273
13178
  /* harmony default export */ var ToggleInputCurrency = (ToggleInputCurrency_component.exports);
13274
- // CONCATENATED MODULE: ./node_modules/cache-loader/dist/cjs.js?{"cacheDirectory":"node_modules/.cache/vue-loader","cacheIdentifier":"7b4cc503-vue-loader-template"}!./node_modules/cache-loader/dist/cjs.js??ref--13-0!./node_modules/thread-loader/dist/cjs.js!./node_modules/babel-loader/lib!./node_modules/vue-loader/lib/loaders/templateLoader.js??ref--6!./node_modules/cache-loader/dist/cjs.js??ref--1-0!./node_modules/vue-loader/lib??vue-loader-options!./src/components/forms/ToggleInputRadioButtons.vue?vue&type=template&id=2bb47213&
13179
+ // CONCATENATED MODULE: ./node_modules/cache-loader/dist/cjs.js?{"cacheDirectory":"node_modules/.cache/vue-loader","cacheIdentifier":"041c37bc-vue-loader-template"}!./node_modules/cache-loader/dist/cjs.js??ref--13-0!./node_modules/thread-loader/dist/cjs.js!./node_modules/babel-loader/lib!./node_modules/vue-loader/lib/loaders/templateLoader.js??ref--6!./node_modules/cache-loader/dist/cjs.js??ref--1-0!./node_modules/vue-loader/lib??vue-loader-options!./src/components/forms/ToggleInputRadioButtons.vue?vue&type=template&id=2bb47213&
13275
13180
  var ToggleInputRadioButtonsvue_type_template_id_2bb47213_render = function render() {
13276
13181
  var _vm = this,
13277
- _c = _vm._self._c;
13278
-
13182
+ _c = _vm._self._c;
13279
13183
  return _c('div', {
13280
13184
  ref: "toggle-input-container",
13281
13185
  staticClass: "toggle-input-container margin-bottom-0",
@@ -13351,16 +13255,14 @@ var ToggleInputRadioButtonsvue_type_template_id_2bb47213_render = function rende
13351
13255
  }
13352
13256
  }, [_vm._v(" " + _vm._s(_vm.errorMessage) + " ")]) : _vm._e()], 1);
13353
13257
  };
13354
-
13355
13258
  var ToggleInputRadioButtonsvue_type_template_id_2bb47213_staticRenderFns = [];
13356
13259
 
13357
13260
  // CONCATENATED MODULE: ./src/components/forms/ToggleInputRadioButtons.vue?vue&type=template&id=2bb47213&
13358
13261
 
13359
- // CONCATENATED MODULE: ./node_modules/cache-loader/dist/cjs.js?{"cacheDirectory":"node_modules/.cache/vue-loader","cacheIdentifier":"7b4cc503-vue-loader-template"}!./node_modules/cache-loader/dist/cjs.js??ref--13-0!./node_modules/thread-loader/dist/cjs.js!./node_modules/babel-loader/lib!./node_modules/vue-loader/lib/loaders/templateLoader.js??ref--6!./node_modules/cache-loader/dist/cjs.js??ref--1-0!./node_modules/vue-loader/lib??vue-loader-options!./src/components/forms/ToggleInputCheckbox.vue?vue&type=template&id=e8a79348&
13262
+ // CONCATENATED MODULE: ./node_modules/cache-loader/dist/cjs.js?{"cacheDirectory":"node_modules/.cache/vue-loader","cacheIdentifier":"041c37bc-vue-loader-template"}!./node_modules/cache-loader/dist/cjs.js??ref--13-0!./node_modules/thread-loader/dist/cjs.js!./node_modules/babel-loader/lib!./node_modules/vue-loader/lib/loaders/templateLoader.js??ref--6!./node_modules/cache-loader/dist/cjs.js??ref--1-0!./node_modules/vue-loader/lib??vue-loader-options!./src/components/forms/ToggleInputCheckbox.vue?vue&type=template&id=e8a79348&
13360
13263
  var ToggleInputCheckboxvue_type_template_id_e8a79348_render = function render() {
13361
13264
  var _vm = this,
13362
- _c = _vm._self._c;
13363
-
13265
+ _c = _vm._self._c;
13364
13266
  return _c('label', {
13365
13267
  staticClass: "toggle-input-checkbox"
13366
13268
  }, [_c('input', {
@@ -13382,13 +13284,11 @@ var ToggleInputCheckboxvue_type_template_id_e8a79348_render = function render()
13382
13284
  on: {
13383
13285
  "change": function ($event) {
13384
13286
  var $$a = _vm.inputVal,
13385
- $$el = $event.target,
13386
- $$c = $$el.checked ? true : false;
13387
-
13287
+ $$el = $event.target,
13288
+ $$c = $$el.checked ? true : false;
13388
13289
  if (Array.isArray($$a)) {
13389
13290
  var $$v = _vm.option,
13390
- $$i = _vm._i($$a, $$v);
13391
-
13291
+ $$i = _vm._i($$a, $$v);
13392
13292
  if ($$el.checked) {
13393
13293
  $$i < 0 && (_vm.inputVal = $$a.concat([$$v]));
13394
13294
  } else {
@@ -13405,7 +13305,6 @@ var ToggleInputCheckboxvue_type_template_id_e8a79348_render = function render()
13405
13305
  class: ['toggle-input-checkbox-label', _vm.label_style]
13406
13306
  }, [_vm._v(_vm._s(_vm.label))])])]);
13407
13307
  };
13408
-
13409
13308
  var ToggleInputCheckboxvue_type_template_id_e8a79348_staticRenderFns = [];
13410
13309
 
13411
13310
  // CONCATENATED MODULE: ./src/components/forms/ToggleInputCheckbox.vue?vue&type=template&id=e8a79348&
@@ -13460,11 +13359,9 @@ var ToggleInputCheckboxvue_type_template_id_e8a79348_staticRenderFns = [];
13460
13359
  onFocus() {
13461
13360
  this.$emit('onFocus');
13462
13361
  },
13463
-
13464
13362
  onBlur() {
13465
13363
  this.$emit('onBlur');
13466
13364
  }
13467
-
13468
13365
  }
13469
13366
  });
13470
13367
  // CONCATENATED MODULE: ./src/components/forms/ToggleInputCheckbox.vue?vue&type=script&lang=js&
@@ -13551,7 +13448,6 @@ var ToggleInputCheckbox_component = normalizeComponent(
13551
13448
  if (newVal != '') this.checkboxModel = true;
13552
13449
  this.previousValue = newVal;
13553
13450
  },
13554
-
13555
13451
  checkboxModel(newVal) {
13556
13452
  if (!newVal) this.inputVal = '';
13557
13453
  /*else if(this.inputVal == ''){
@@ -13560,17 +13456,15 @@ var ToggleInputCheckbox_component = normalizeComponent(
13560
13456
  });
13561
13457
  }*/
13562
13458
  }
13563
-
13564
13459
  },
13460
+
13565
13461
  methods: {
13566
13462
  onFocus() {
13567
13463
  this.$emit('onFocus');
13568
13464
  },
13569
-
13570
13465
  onBlur() {
13571
13466
  this.$emit('onBlur');
13572
13467
  }
13573
-
13574
13468
  }
13575
13469
  });
13576
13470
  // CONCATENATED MODULE: ./src/components/forms/ToggleInputRadioButtons.vue?vue&type=script&lang=js&
@@ -13595,11 +13489,10 @@ var ToggleInputRadioButtons_component = normalizeComponent(
13595
13489
  )
13596
13490
 
13597
13491
  /* harmony default export */ var ToggleInputRadioButtons = (ToggleInputRadioButtons_component.exports);
13598
- // CONCATENATED MODULE: ./node_modules/cache-loader/dist/cjs.js?{"cacheDirectory":"node_modules/.cache/vue-loader","cacheIdentifier":"7b4cc503-vue-loader-template"}!./node_modules/cache-loader/dist/cjs.js??ref--13-0!./node_modules/thread-loader/dist/cjs.js!./node_modules/babel-loader/lib!./node_modules/vue-loader/lib/loaders/templateLoader.js??ref--6!./node_modules/cache-loader/dist/cjs.js??ref--1-0!./node_modules/vue-loader/lib??vue-loader-options!./src/components/forms/ToggleInputTextArea.vue?vue&type=template&id=60540840&
13492
+ // CONCATENATED MODULE: ./node_modules/cache-loader/dist/cjs.js?{"cacheDirectory":"node_modules/.cache/vue-loader","cacheIdentifier":"041c37bc-vue-loader-template"}!./node_modules/cache-loader/dist/cjs.js??ref--13-0!./node_modules/thread-loader/dist/cjs.js!./node_modules/babel-loader/lib!./node_modules/vue-loader/lib/loaders/templateLoader.js??ref--6!./node_modules/cache-loader/dist/cjs.js??ref--1-0!./node_modules/vue-loader/lib??vue-loader-options!./src/components/forms/ToggleInputTextArea.vue?vue&type=template&id=60540840&
13599
13493
  var ToggleInputTextAreavue_type_template_id_60540840_render = function render() {
13600
13494
  var _vm = this,
13601
- _c = _vm._self._c;
13602
-
13495
+ _c = _vm._self._c;
13603
13496
  return _c('div', {
13604
13497
  staticClass: "toggle-input-container",
13605
13498
  class: {
@@ -13648,7 +13541,6 @@ var ToggleInputTextAreavue_type_template_id_60540840_render = function render()
13648
13541
  }
13649
13542
  }, [_vm._v(" " + _vm._s(_vm.errorMessage) + " ")]) : _vm._e()]);
13650
13543
  };
13651
-
13652
13544
  var ToggleInputTextAreavue_type_template_id_60540840_staticRenderFns = [];
13653
13545
 
13654
13546
  // CONCATENATED MODULE: ./src/components/forms/ToggleInputTextArea.vue?vue&type=template&id=60540840&
@@ -13731,15 +13623,12 @@ var ToggleInputTextAreavue_type_template_id_60540840_staticRenderFns = [];
13731
13623
  let mcount = count ? count.length : 0;
13732
13624
  return mcount + ' / ' + maxLenght;
13733
13625
  },
13734
-
13735
13626
  onFocus() {
13736
13627
  this.$emit('onFocus');
13737
13628
  },
13738
-
13739
13629
  onBlur() {
13740
13630
  this.$emit('onBlur');
13741
13631
  }
13742
-
13743
13632
  }
13744
13633
  });
13745
13634
  // CONCATENATED MODULE: ./src/components/forms/ToggleInputTextArea.vue?vue&type=script&lang=js&
@@ -13764,11 +13653,10 @@ var ToggleInputTextArea_component = normalizeComponent(
13764
13653
  )
13765
13654
 
13766
13655
  /* harmony default export */ var ToggleInputTextArea = (ToggleInputTextArea_component.exports);
13767
- // CONCATENATED MODULE: ./node_modules/cache-loader/dist/cjs.js?{"cacheDirectory":"node_modules/.cache/vue-loader","cacheIdentifier":"7b4cc503-vue-loader-template"}!./node_modules/cache-loader/dist/cjs.js??ref--13-0!./node_modules/thread-loader/dist/cjs.js!./node_modules/babel-loader/lib!./node_modules/vue-loader/lib/loaders/templateLoader.js??ref--6!./node_modules/cache-loader/dist/cjs.js??ref--1-0!./node_modules/vue-loader/lib??vue-loader-options!./src/components/forms/ToggleInputCheckboxContainer.vue?vue&type=template&id=37cf23ee&
13656
+ // CONCATENATED MODULE: ./node_modules/cache-loader/dist/cjs.js?{"cacheDirectory":"node_modules/.cache/vue-loader","cacheIdentifier":"041c37bc-vue-loader-template"}!./node_modules/cache-loader/dist/cjs.js??ref--13-0!./node_modules/thread-loader/dist/cjs.js!./node_modules/babel-loader/lib!./node_modules/vue-loader/lib/loaders/templateLoader.js??ref--6!./node_modules/cache-loader/dist/cjs.js??ref--1-0!./node_modules/vue-loader/lib??vue-loader-options!./src/components/forms/ToggleInputCheckboxContainer.vue?vue&type=template&id=37cf23ee&
13768
13657
  var ToggleInputCheckboxContainervue_type_template_id_37cf23ee_render = function render() {
13769
13658
  var _vm = this,
13770
- _c = _vm._self._c;
13771
-
13659
+ _c = _vm._self._c;
13772
13660
  return _c('div', {
13773
13661
  staticClass: "toggle-input-container margin-bottom-0",
13774
13662
  class: {
@@ -13785,7 +13673,6 @@ var ToggleInputCheckboxContainervue_type_template_id_37cf23ee_render = function
13785
13673
  staticClass: "toggle-input-label-error"
13786
13674
  }, [_vm._v(" " + _vm._s(_vm.errorMessage) + " ")]) : _vm._e()]);
13787
13675
  };
13788
-
13789
13676
  var ToggleInputCheckboxContainervue_type_template_id_37cf23ee_staticRenderFns = [];
13790
13677
 
13791
13678
  // CONCATENATED MODULE: ./src/components/forms/ToggleInputCheckboxContainer.vue?vue&type=template&id=37cf23ee&
@@ -13814,11 +13701,9 @@ var ToggleInputCheckboxContainervue_type_template_id_37cf23ee_staticRenderFns =
13814
13701
  onFocus() {
13815
13702
  this.$emit('onFocus');
13816
13703
  },
13817
-
13818
13704
  onBlur() {
13819
13705
  this.$emit('onBlur');
13820
13706
  }
13821
-
13822
13707
  }
13823
13708
  });
13824
13709
  // CONCATENATED MODULE: ./src/components/forms/ToggleInputCheckboxContainer.vue?vue&type=script&lang=js&
@@ -13843,11 +13728,10 @@ var ToggleInputCheckboxContainer_component = normalizeComponent(
13843
13728
  )
13844
13729
 
13845
13730
  /* harmony default export */ var ToggleInputCheckboxContainer = (ToggleInputCheckboxContainer_component.exports);
13846
- // CONCATENATED MODULE: ./node_modules/cache-loader/dist/cjs.js?{"cacheDirectory":"node_modules/.cache/vue-loader","cacheIdentifier":"7b4cc503-vue-loader-template"}!./node_modules/cache-loader/dist/cjs.js??ref--13-0!./node_modules/thread-loader/dist/cjs.js!./node_modules/babel-loader/lib!./node_modules/vue-loader/lib/loaders/templateLoader.js??ref--6!./node_modules/cache-loader/dist/cjs.js??ref--1-0!./node_modules/vue-loader/lib??vue-loader-options!./src/components/forms/ToggleInternationalPhoneInputSelect.vue?vue&type=template&id=61f0b5fb&
13731
+ // CONCATENATED MODULE: ./node_modules/cache-loader/dist/cjs.js?{"cacheDirectory":"node_modules/.cache/vue-loader","cacheIdentifier":"041c37bc-vue-loader-template"}!./node_modules/cache-loader/dist/cjs.js??ref--13-0!./node_modules/thread-loader/dist/cjs.js!./node_modules/babel-loader/lib!./node_modules/vue-loader/lib/loaders/templateLoader.js??ref--6!./node_modules/cache-loader/dist/cjs.js??ref--1-0!./node_modules/vue-loader/lib??vue-loader-options!./src/components/forms/ToggleInternationalPhoneInputSelect.vue?vue&type=template&id=61f0b5fb&
13847
13732
  var ToggleInternationalPhoneInputSelectvue_type_template_id_61f0b5fb_render = function render() {
13848
13733
  var _vm = this,
13849
- _c = _vm._self._c;
13850
-
13734
+ _c = _vm._self._c;
13851
13735
  return _c('div', {
13852
13736
  staticClass: "toggle-country-wrapper"
13853
13737
  }, [_c('div', {
@@ -13922,7 +13806,6 @@ var ToggleInternationalPhoneInputSelectvue_type_template_id_61f0b5fb_render = fu
13922
13806
  on: {
13923
13807
  "input": function ($event) {
13924
13808
  if ($event.target.composing) return;
13925
-
13926
13809
  _vm.$set(_vm.inputVal, "lineNumber", $event.target.value);
13927
13810
  }
13928
13811
  }
@@ -13933,7 +13816,6 @@ var ToggleInternationalPhoneInputSelectvue_type_template_id_61f0b5fb_render = fu
13933
13816
  }
13934
13817
  }, [_vm._v(" " + _vm._s(_vm.componentError) + " ")]) : _vm._e()]);
13935
13818
  };
13936
-
13937
13819
  var ToggleInternationalPhoneInputSelectvue_type_template_id_61f0b5fb_staticRenderFns = [];
13938
13820
 
13939
13821
  // CONCATENATED MODULE: ./src/components/forms/ToggleInternationalPhoneInputSelect.vue?vue&type=template&id=61f0b5fb&
@@ -13951,7 +13833,6 @@ var index_es5_min = __webpack_require__("839e");
13951
13833
  countrySelectormodel: ''
13952
13834
  };
13953
13835
  },
13954
-
13955
13836
  props: {
13956
13837
  value: {
13957
13838
  type: Object,
@@ -14001,17 +13882,13 @@ var index_es5_min = __webpack_require__("839e");
14001
13882
  countrySelectormodel(newVal) {
14002
13883
  this.inputVal.areaCode = newVal.phone;
14003
13884
  }
14004
-
14005
13885
  },
14006
-
14007
13886
  mounted() {
14008
13887
  const {
14009
13888
  countries
14010
13889
  } = __webpack_require__("839e");
14011
-
14012
13890
  this.setDefaultContry(countries);
14013
13891
  },
14014
-
14015
13892
  methods: {
14016
13893
  // Sets the selected country on page load
14017
13894
  setDefaultContry(countries) {
@@ -14019,33 +13896,32 @@ var index_es5_min = __webpack_require__("839e");
14019
13896
  let co = Object.keys(countries).map(function (key) {
14020
13897
  countries[key].code = key;
14021
13898
  return countries[key];
14022
- }); // sort the countires by name, alphabetically
13899
+ });
14023
13900
 
13901
+ // sort the countires by name, alphabetically
14024
13902
  this.countries = co.sort(function (a, b) {
14025
13903
  if (a.name < b.name) return -1;
14026
13904
  if (a.name > b.name) return 1;
14027
13905
  return 0;
14028
- }); // if a value hasn't been set, lets select UK as default
13906
+ });
14029
13907
 
13908
+ // if a value hasn't been set, lets select UK as default
14030
13909
  if (!this.value.areaCode) {
14031
13910
  this.value.areaCode = '44';
14032
- } // some provinces share phone country codes, including the UK, if it's a 44 number, let's select United Kingdom by default
14033
- // otherwise just select the first country found that's a match.
14034
-
13911
+ }
14035
13912
 
13913
+ // some provinces share phone country codes, including the UK, if it's a 44 number, let's select United Kingdom by default
13914
+ // otherwise just select the first country found that's a match.
14036
13915
  let possibleCountries = this.countries.filter(country => country.phone == this.value.areaCode);
14037
13916
  let gb = possibleCountries.filter(country => country.code == 'GB');
14038
13917
  this.countrySelectormodel = gb.length ? gb[0] : possibleCountries.length ? possibleCountries[0] : '';
14039
13918
  },
14040
-
14041
13919
  onFocus() {
14042
13920
  this.$emit('onFocus');
14043
13921
  },
14044
-
14045
13922
  onBlur() {
14046
13923
  this.$emit('onBlur');
14047
13924
  }
14048
-
14049
13925
  }
14050
13926
  });
14051
13927
  // CONCATENATED MODULE: ./src/components/forms/ToggleInternationalPhoneInputSelect.vue?vue&type=script&lang=js&
@@ -14070,11 +13946,10 @@ var ToggleInternationalPhoneInputSelect_component = normalizeComponent(
14070
13946
  )
14071
13947
 
14072
13948
  /* harmony default export */ var ToggleInternationalPhoneInputSelect = (ToggleInternationalPhoneInputSelect_component.exports);
14073
- // CONCATENATED MODULE: ./node_modules/cache-loader/dist/cjs.js?{"cacheDirectory":"node_modules/.cache/vue-loader","cacheIdentifier":"7b4cc503-vue-loader-template"}!./node_modules/cache-loader/dist/cjs.js??ref--13-0!./node_modules/thread-loader/dist/cjs.js!./node_modules/babel-loader/lib!./node_modules/vue-loader/lib/loaders/templateLoader.js??ref--6!./node_modules/cache-loader/dist/cjs.js??ref--1-0!./node_modules/vue-loader/lib??vue-loader-options!./src/components/forms/ToggleInputCrudField.vue?vue&type=template&id=5e1accbb&
13949
+ // CONCATENATED MODULE: ./node_modules/cache-loader/dist/cjs.js?{"cacheDirectory":"node_modules/.cache/vue-loader","cacheIdentifier":"041c37bc-vue-loader-template"}!./node_modules/cache-loader/dist/cjs.js??ref--13-0!./node_modules/thread-loader/dist/cjs.js!./node_modules/babel-loader/lib!./node_modules/vue-loader/lib/loaders/templateLoader.js??ref--6!./node_modules/cache-loader/dist/cjs.js??ref--1-0!./node_modules/vue-loader/lib??vue-loader-options!./src/components/forms/ToggleInputCrudField.vue?vue&type=template&id=5e1accbb&
14074
13950
  var ToggleInputCrudFieldvue_type_template_id_5e1accbb_render = function render() {
14075
13951
  var _vm = this,
14076
- _c = _vm._self._c;
14077
-
13952
+ _c = _vm._self._c;
14078
13953
  return _c('div', {
14079
13954
  staticClass: "toggle-input-crud-container",
14080
13955
  class: {
@@ -14112,16 +13987,14 @@ var ToggleInputCrudFieldvue_type_template_id_5e1accbb_render = function render()
14112
13987
  staticClass: "toggle-input-label-error"
14113
13988
  }, [_vm._v(" " + _vm._s(_vm.errorMessage) + " ")]) : _vm._e()]);
14114
13989
  };
14115
-
14116
13990
  var ToggleInputCrudFieldvue_type_template_id_5e1accbb_staticRenderFns = [];
14117
13991
 
14118
13992
  // CONCATENATED MODULE: ./src/components/forms/ToggleInputCrudField.vue?vue&type=template&id=5e1accbb&
14119
13993
 
14120
- // CONCATENATED MODULE: ./node_modules/cache-loader/dist/cjs.js?{"cacheDirectory":"node_modules/.cache/vue-loader","cacheIdentifier":"7b4cc503-vue-loader-template"}!./node_modules/cache-loader/dist/cjs.js??ref--13-0!./node_modules/thread-loader/dist/cjs.js!./node_modules/babel-loader/lib!./node_modules/vue-loader/lib/loaders/templateLoader.js??ref--6!./node_modules/cache-loader/dist/cjs.js??ref--1-0!./node_modules/vue-loader/lib??vue-loader-options!./src/components/buttons/ToggleButton.vue?vue&type=template&id=66f2c9bb&
13994
+ // CONCATENATED MODULE: ./node_modules/cache-loader/dist/cjs.js?{"cacheDirectory":"node_modules/.cache/vue-loader","cacheIdentifier":"041c37bc-vue-loader-template"}!./node_modules/cache-loader/dist/cjs.js??ref--13-0!./node_modules/thread-loader/dist/cjs.js!./node_modules/babel-loader/lib!./node_modules/vue-loader/lib/loaders/templateLoader.js??ref--6!./node_modules/cache-loader/dist/cjs.js??ref--1-0!./node_modules/vue-loader/lib??vue-loader-options!./src/components/buttons/ToggleButton.vue?vue&type=template&id=66f2c9bb&
14121
13995
  var ToggleButtonvue_type_template_id_66f2c9bb_render = function render() {
14122
13996
  var _vm = this,
14123
- _c = _vm._self._c;
14124
-
13997
+ _c = _vm._self._c;
14125
13998
  return _c('div', {
14126
13999
  class: ['toggle-button-container', {
14127
14000
  'toggle-button-container-mini': _vm.isMini
@@ -14156,16 +14029,11 @@ var ToggleButtonvue_type_template_id_66f2c9bb_render = function render() {
14156
14029
  return [_vm._v(_vm._s(_vm.buttonText))];
14157
14030
  })], 2)]);
14158
14031
  };
14159
-
14160
14032
  var ToggleButtonvue_type_template_id_66f2c9bb_staticRenderFns = [];
14161
14033
 
14162
14034
  // CONCATENATED MODULE: ./src/components/buttons/ToggleButton.vue?vue&type=template&id=66f2c9bb&
14163
14035
 
14164
- // EXTERNAL MODULE: ./node_modules/core-js/modules/es.array.includes.js
14165
- var es_array_includes = __webpack_require__("caad");
14166
-
14167
14036
  // CONCATENATED MODULE: ./node_modules/cache-loader/dist/cjs.js??ref--13-0!./node_modules/thread-loader/dist/cjs.js!./node_modules/babel-loader/lib!./node_modules/cache-loader/dist/cjs.js??ref--1-0!./node_modules/vue-loader/lib??vue-loader-options!./src/components/buttons/ToggleButton.vue?vue&type=script&lang=js&
14168
-
14169
14037
  /* harmony default export */ var ToggleButtonvue_type_script_lang_js_ = ({
14170
14038
  name: 'ButtonPrimary',
14171
14039
  props: {
@@ -14176,7 +14044,6 @@ var es_array_includes = __webpack_require__("caad");
14176
14044
  type: String,
14177
14045
  default: "button"
14178
14046
  },
14179
-
14180
14047
  /**
14181
14048
  * The HTML button type i.e. `submit` or `button`
14182
14049
  */
@@ -14184,7 +14051,6 @@ var es_array_includes = __webpack_require__("caad");
14184
14051
  type: String,
14185
14052
  default: "text"
14186
14053
  },
14187
-
14188
14054
  /**
14189
14055
  * If it's a link, then the URL of the link
14190
14056
  */
@@ -14192,14 +14058,12 @@ var es_array_includes = __webpack_require__("caad");
14192
14058
  type: String,
14193
14059
  default: ""
14194
14060
  },
14195
-
14196
14061
  /**
14197
14062
  * Should the button be disabled?
14198
14063
  */
14199
14064
  disabled: {
14200
14065
  default: false
14201
14066
  },
14202
-
14203
14067
  /**
14204
14068
  * Is the button in a loading state?
14205
14069
  */
@@ -14207,7 +14071,6 @@ var es_array_includes = __webpack_require__("caad");
14207
14071
  type: Boolean,
14208
14072
  default: false
14209
14073
  },
14210
-
14211
14074
  /**
14212
14075
  * The button visual style out of: `neutral`, `confirm`, `abort`
14213
14076
  */
@@ -14220,7 +14083,6 @@ var es_array_includes = __webpack_require__("caad");
14220
14083
  isMini() {
14221
14084
  return this.buttonStyle.includes('mini');
14222
14085
  }
14223
-
14224
14086
  },
14225
14087
  watch: {
14226
14088
  disabled() {
@@ -14228,13 +14090,11 @@ var es_array_includes = __webpack_require__("caad");
14228
14090
  this.disableLinks();
14229
14091
  }
14230
14092
  },
14231
-
14232
14093
  loading() {
14233
14094
  if (this.$slots.default !== undefined) {
14234
14095
  this.disableLinks();
14235
14096
  }
14236
14097
  }
14237
-
14238
14098
  },
14239
14099
  methods: {
14240
14100
  /**
@@ -14245,7 +14105,6 @@ var es_array_includes = __webpack_require__("caad");
14245
14105
  slot.data.attrs.href = this.disabled ? null : slot.data.attrs.href;
14246
14106
  });
14247
14107
  },
14248
-
14249
14108
  click() {
14250
14109
  /**
14251
14110
  * Emitted when the button is clicked.
@@ -14254,15 +14113,12 @@ var es_array_includes = __webpack_require__("caad");
14254
14113
  */
14255
14114
  this.$emit('click');
14256
14115
  }
14257
-
14258
14116
  },
14259
-
14260
14117
  created() {
14261
14118
  if (this.$slots.default !== undefined) {
14262
14119
  this.disableLinks();
14263
14120
  }
14264
14121
  }
14265
-
14266
14122
  });
14267
14123
  // CONCATENATED MODULE: ./src/components/buttons/ToggleButton.vue?vue&type=script&lang=js&
14268
14124
  /* harmony default export */ var buttons_ToggleButtonvue_type_script_lang_js_ = (ToggleButtonvue_type_script_lang_js_);
@@ -14325,7 +14181,6 @@ var ToggleButton_component = normalizeComponent(
14325
14181
  let labelLength = this.label.split('').length;
14326
14182
  return labelLength <= 15 ? this.label : this.label.slice(0, 15) + '...';
14327
14183
  }
14328
-
14329
14184
  },
14330
14185
  methods: {
14331
14186
  clickEmpty(e) {
@@ -14333,7 +14188,6 @@ var ToggleButton_component = normalizeComponent(
14333
14188
  this.$emit('add');
14334
14189
  }
14335
14190
  }
14336
-
14337
14191
  }
14338
14192
  });
14339
14193
  // CONCATENATED MODULE: ./src/components/forms/ToggleInputCrudField.vue?vue&type=script&lang=js&
@@ -14358,11 +14212,10 @@ var ToggleInputCrudField_component = normalizeComponent(
14358
14212
  )
14359
14213
 
14360
14214
  /* harmony default export */ var ToggleInputCrudField = (ToggleInputCrudField_component.exports);
14361
- // CONCATENATED MODULE: ./node_modules/cache-loader/dist/cjs.js?{"cacheDirectory":"node_modules/.cache/vue-loader","cacheIdentifier":"7b4cc503-vue-loader-template"}!./node_modules/cache-loader/dist/cjs.js??ref--13-0!./node_modules/thread-loader/dist/cjs.js!./node_modules/babel-loader/lib!./node_modules/vue-loader/lib/loaders/templateLoader.js??ref--6!./node_modules/cache-loader/dist/cjs.js??ref--1-0!./node_modules/vue-loader/lib??vue-loader-options!./src/components/forms/ToggleInputGrid.vue?vue&type=template&id=0cb87c32&
14215
+ // CONCATENATED MODULE: ./node_modules/cache-loader/dist/cjs.js?{"cacheDirectory":"node_modules/.cache/vue-loader","cacheIdentifier":"041c37bc-vue-loader-template"}!./node_modules/cache-loader/dist/cjs.js??ref--13-0!./node_modules/thread-loader/dist/cjs.js!./node_modules/babel-loader/lib!./node_modules/vue-loader/lib/loaders/templateLoader.js??ref--6!./node_modules/cache-loader/dist/cjs.js??ref--1-0!./node_modules/vue-loader/lib??vue-loader-options!./src/components/forms/ToggleInputGrid.vue?vue&type=template&id=0cb87c32&
14362
14216
  var ToggleInputGridvue_type_template_id_0cb87c32_render = function render() {
14363
14217
  var _vm = this,
14364
- _c = _vm._self._c;
14365
-
14218
+ _c = _vm._self._c;
14366
14219
  return _c('div', {
14367
14220
  staticClass: "toggle-grid-input-container"
14368
14221
  }, [_vm._l(_vm.inputVal, function (row, rowindex) {
@@ -14489,16 +14342,17 @@ var ToggleInputGridvue_type_template_id_0cb87c32_render = function render() {
14489
14342
  }
14490
14343
  })], 1)], 1)], 2);
14491
14344
  };
14492
-
14493
14345
  var ToggleInputGridvue_type_template_id_0cb87c32_staticRenderFns = [];
14494
14346
 
14495
14347
  // CONCATENATED MODULE: ./src/components/forms/ToggleInputGrid.vue?vue&type=template&id=0cb87c32&
14496
14348
 
14497
- // CONCATENATED MODULE: ./node_modules/cache-loader/dist/cjs.js?{"cacheDirectory":"node_modules/.cache/vue-loader","cacheIdentifier":"7b4cc503-vue-loader-template"}!./node_modules/cache-loader/dist/cjs.js??ref--13-0!./node_modules/thread-loader/dist/cjs.js!./node_modules/babel-loader/lib!./node_modules/vue-loader/lib/loaders/templateLoader.js??ref--6!./node_modules/cache-loader/dist/cjs.js??ref--1-0!./node_modules/vue-loader/lib??vue-loader-options!./src/components/modals/ToggleModal.vue?vue&type=template&id=35748012&
14349
+ // EXTERNAL MODULE: ./node_modules/core-js/modules/es.array.push.js
14350
+ var es_array_push = __webpack_require__("14d9");
14351
+
14352
+ // CONCATENATED MODULE: ./node_modules/cache-loader/dist/cjs.js?{"cacheDirectory":"node_modules/.cache/vue-loader","cacheIdentifier":"041c37bc-vue-loader-template"}!./node_modules/cache-loader/dist/cjs.js??ref--13-0!./node_modules/thread-loader/dist/cjs.js!./node_modules/babel-loader/lib!./node_modules/vue-loader/lib/loaders/templateLoader.js??ref--6!./node_modules/cache-loader/dist/cjs.js??ref--1-0!./node_modules/vue-loader/lib??vue-loader-options!./src/components/modals/ToggleModal.vue?vue&type=template&id=35748012&
14498
14353
  var ToggleModalvue_type_template_id_35748012_render = function render() {
14499
14354
  var _vm = this,
14500
- _c = _vm._self._c;
14501
-
14355
+ _c = _vm._self._c;
14502
14356
  return _c('transition', {
14503
14357
  attrs: {
14504
14358
  "name": "toggle-modal"
@@ -14524,7 +14378,6 @@ var ToggleModalvue_type_template_id_35748012_render = function render() {
14524
14378
  }
14525
14379
  }), _vm._t("default")], 2)])]) : _vm._e()]);
14526
14380
  };
14527
-
14528
14381
  var ToggleModalvue_type_template_id_35748012_staticRenderFns = [];
14529
14382
 
14530
14383
  // CONCATENATED MODULE: ./src/components/modals/ToggleModal.vue?vue&type=template&id=35748012&
@@ -14552,26 +14405,21 @@ var ToggleModalvue_type_template_id_35748012_staticRenderFns = [];
14552
14405
  this.$toggle_event.$on('modal_show', this.show);
14553
14406
  this.$toggle_event.$on('modal_hide', this.hide);
14554
14407
  },
14555
-
14556
14408
  beforeDestroy() {
14557
14409
  this.$toggle_event.$off('modal_show', this.show);
14558
14410
  this.$toggle_event.$off('modal_hide', this.hide);
14559
14411
  },
14560
-
14561
14412
  computed: {},
14562
14413
  methods: {
14563
14414
  show(payload) {
14564
14415
  if (payload == this.name) this.showModal = true;
14565
14416
  },
14566
-
14567
14417
  hide(payload) {
14568
14418
  if (payload == this.name) this.showModal = false;
14569
14419
  },
14570
-
14571
14420
  backgroundClick(e) {
14572
14421
  if (e.target.classList.contains('toggle-modal-close')) this.showModal = false;
14573
14422
  }
14574
-
14575
14423
  }
14576
14424
  });
14577
14425
  // CONCATENATED MODULE: ./src/components/modals/ToggleModal.vue?vue&type=script&lang=js&
@@ -14596,16 +14444,14 @@ var ToggleModal_component = normalizeComponent(
14596
14444
  )
14597
14445
 
14598
14446
  /* harmony default export */ var ToggleModal = (ToggleModal_component.exports);
14599
- // CONCATENATED MODULE: ./node_modules/cache-loader/dist/cjs.js?{"cacheDirectory":"node_modules/.cache/vue-loader","cacheIdentifier":"7b4cc503-vue-loader-template"}!./node_modules/cache-loader/dist/cjs.js??ref--13-0!./node_modules/thread-loader/dist/cjs.js!./node_modules/babel-loader/lib!./node_modules/vue-loader/lib/loaders/templateLoader.js??ref--6!./node_modules/cache-loader/dist/cjs.js??ref--1-0!./node_modules/vue-loader/lib??vue-loader-options!./src/components/text/ToggleHeaderTextLarge.vue?vue&type=template&id=47a1f9bc&
14447
+ // CONCATENATED MODULE: ./node_modules/cache-loader/dist/cjs.js?{"cacheDirectory":"node_modules/.cache/vue-loader","cacheIdentifier":"041c37bc-vue-loader-template"}!./node_modules/cache-loader/dist/cjs.js??ref--13-0!./node_modules/thread-loader/dist/cjs.js!./node_modules/babel-loader/lib!./node_modules/vue-loader/lib/loaders/templateLoader.js??ref--6!./node_modules/cache-loader/dist/cjs.js??ref--1-0!./node_modules/vue-loader/lib??vue-loader-options!./src/components/text/ToggleHeaderTextLarge.vue?vue&type=template&id=47a1f9bc&
14600
14448
  var ToggleHeaderTextLargevue_type_template_id_47a1f9bc_render = function render() {
14601
14449
  var _vm = this,
14602
- _c = _vm._self._c;
14603
-
14450
+ _c = _vm._self._c;
14604
14451
  return _c('h3', {
14605
14452
  staticClass: "toggle-h2-header"
14606
14453
  }, [_vm._t("default")], 2);
14607
14454
  };
14608
-
14609
14455
  var ToggleHeaderTextLargevue_type_template_id_47a1f9bc_staticRenderFns = [];
14610
14456
 
14611
14457
  // CONCATENATED MODULE: ./src/components/text/ToggleHeaderTextLarge.vue?vue&type=template&id=47a1f9bc&
@@ -14634,6 +14480,7 @@ var ToggleHeaderTextLarge_component = normalizeComponent(
14634
14480
 
14635
14481
 
14636
14482
 
14483
+
14637
14484
  /* harmony default export */ var ToggleInputGridvue_type_script_lang_js_ = ({
14638
14485
  mixins: [mixins],
14639
14486
  components: {
@@ -14694,7 +14541,6 @@ var ToggleHeaderTextLarge_component = normalizeComponent(
14694
14541
  data: function () {
14695
14542
  return {
14696
14543
  draggingIndex: null,
14697
-
14698
14544
  /*rowModel:[
14699
14545
  {
14700
14546
  layout:[12]
@@ -14740,24 +14586,23 @@ var ToggleHeaderTextLarge_component = normalizeComponent(
14740
14586
  }
14741
14587
  },
14742
14588
  deep: true // watches changes within an array of objects
14743
-
14744
14589
  }
14745
14590
  },
14591
+
14746
14592
  methods: {
14747
14593
  allowDrop(ev) {
14748
14594
  ev.preventDefault();
14749
14595
  },
14750
-
14751
14596
  /**
14752
14597
  * Drag handler
14753
14598
  * @param {Number} [row] [row dropped into]
14754
14599
  * @param {Number} [column] [column dropped into]
14755
14600
  * @return Void
14756
14601
  */
14602
+
14757
14603
  drag(row, column) {
14758
14604
  this.draggingIndex = [row, column];
14759
14605
  },
14760
-
14761
14606
  /**
14762
14607
  * Updates the layout of the grid and content automatically to the most logical position
14763
14608
  * Can be called without params, if no content is being added to the grid
@@ -14769,7 +14614,8 @@ var ToggleHeaderTextLarge_component = normalizeComponent(
14769
14614
  updateGridLayout(row, column, dropped_content) {
14770
14615
  // if row is undefined, we're not adding a new column
14771
14616
  let built_content = this.buildContentArray(row, column, dropped_content);
14772
- this.setGridContent(built_content.column_array); // this.removeEmptyRows();
14617
+ this.setGridContent(built_content.column_array);
14618
+ // this.removeEmptyRows();
14773
14619
  },
14774
14620
 
14775
14621
  /*
@@ -14781,7 +14627,6 @@ var ToggleHeaderTextLarge_component = normalizeComponent(
14781
14627
  */
14782
14628
  getGridReferenceOfColumn(column_number) {
14783
14629
  let column_count = 0;
14784
-
14785
14630
  for (let rowindex = 0; rowindex < this.inputVal.length; rowindex++) {
14786
14631
  for (let columnindex = 0; columnindex < this.inputVal[rowindex].content.length; columnindex++) {
14787
14632
  if (column_number == column_count) return [rowindex, columnindex];
@@ -14789,7 +14634,6 @@ var ToggleHeaderTextLarge_component = normalizeComponent(
14789
14634
  }
14790
14635
  }
14791
14636
  },
14792
-
14793
14637
  /*
14794
14638
  * Remove a row from the grid
14795
14639
  *
@@ -14801,12 +14645,10 @@ var ToggleHeaderTextLarge_component = normalizeComponent(
14801
14645
  this.$delete(this.inputVal, row_index);
14802
14646
  this.$toggle_event.$emit('modal_hide', 'confirm_delete_row');
14803
14647
  },
14804
-
14805
14648
  deleteCurrentRow(rowindex) {
14806
14649
  this.editingGridRow = rowindex;
14807
14650
  this.$toggle_event.$emit('modal_show', 'confirm_delete_row');
14808
14651
  },
14809
-
14810
14652
  /*
14811
14653
  * Adds the array of content to the grid layout
14812
14654
  *
@@ -14814,38 +14656,35 @@ var ToggleHeaderTextLarge_component = normalizeComponent(
14814
14656
  *
14815
14657
  * @return Void
14816
14658
  */
14659
+
14817
14660
  setGridContent(content) {
14818
14661
  // set the new content to the grid layout
14819
14662
  for (let rowindex = 0; rowindex < this.inputVal.length; rowindex++) {
14820
14663
  let old_number_of_columns = this.inputVal[rowindex].content.length;
14821
14664
  this.inputVal[rowindex].content.length = this.inputVal[rowindex].layout.length;
14822
-
14823
14665
  for (let columnindex = 0; columnindex < this.inputVal[rowindex].content.length; columnindex++) {
14824
14666
  old_number_of_columns--;
14825
14667
  this.$set(this.inputVal[rowindex].content, columnindex, content.shift());
14826
- } // If we're reducing the number of columns in a row, remove any of the extra blank columns that were in that row
14827
-
14668
+ }
14828
14669
 
14670
+ // If we're reducing the number of columns in a row, remove any of the extra blank columns that were in that row
14829
14671
  while (old_number_of_columns > 0) {
14830
14672
  old_number_of_columns--;
14831
-
14832
14673
  if (!content[0]) {
14833
14674
  content.shift();
14834
14675
  }
14835
14676
  }
14836
- } // Add new rows for any fields that no longer fit in the grid
14837
-
14677
+ }
14838
14678
 
14679
+ // Add new rows for any fields that no longer fit in the grid
14839
14680
  while (content.length) {
14840
14681
  let value = content.shift();
14841
-
14842
14682
  if (value) {
14843
14683
  this.addRow();
14844
14684
  this.$set(this.inputVal[this.inputVal.length - 1].content, 0, value);
14845
14685
  }
14846
14686
  }
14847
14687
  },
14848
-
14849
14688
  /*
14850
14689
  * Build a row agnostic array of content
14851
14690
  * Can be called without params, if no content is being added to the grid
@@ -14856,11 +14695,10 @@ var ToggleHeaderTextLarge_component = normalizeComponent(
14856
14695
  *
14857
14696
  * @return { {Array} [column_array] [Array of columns],{Number} [content_inserted_at] [Index of inserted content] }
14858
14697
  */
14698
+
14859
14699
  buildContentArray(row, column, dropped_content) {
14860
14700
  let column_array = []; // the array to return
14861
-
14862
14701
  let content_inserted_at = false; // have we reached the index that the new content has been added to?
14863
-
14864
14702
  let spaceMadeUp = false; // have we managed to make up space for the extra content?
14865
14703
 
14866
14704
  for (let rowindex = 0; rowindex < this.inputVal.length; rowindex++) {
@@ -14868,11 +14706,10 @@ var ToggleHeaderTextLarge_component = normalizeComponent(
14868
14706
  // if we're adding a new column at this grid co-ordinate, add it in here
14869
14707
  if (rowindex == row && columnindex == column) {
14870
14708
  column_array.push(dropped_content); // add in our extra index
14871
-
14872
14709
  content_inserted_at = column_array.length - 1;
14873
- } // if there's a free space after inserting a new grid content, we remove this to compensate for adding one higher up in the grid
14874
-
14710
+ }
14875
14711
 
14712
+ // if there's a free space after inserting a new grid content, we remove this to compensate for adding one higher up in the grid
14876
14713
  if (content_inserted_at !== false && !this.inputVal[rowindex].content[columnindex] && !spaceMadeUp) {
14877
14714
  spaceMadeUp = true;
14878
14715
  } else {
@@ -14881,13 +14718,11 @@ var ToggleHeaderTextLarge_component = normalizeComponent(
14881
14718
  }
14882
14719
  }
14883
14720
  }
14884
-
14885
14721
  return {
14886
14722
  column_array: column_array,
14887
14723
  content_inserted_at: content_inserted_at
14888
14724
  };
14889
14725
  },
14890
-
14891
14726
  /**
14892
14727
  * Checks if a given row index has content set
14893
14728
  *
@@ -14896,12 +14731,9 @@ var ToggleHeaderTextLarge_component = normalizeComponent(
14896
14731
  */
14897
14732
  rowHasContent(row_index) {
14898
14733
  let row_content_found = false;
14899
-
14900
14734
  for (let columnindex = 0; columnindex < this.inputVal[row_index].content.length; columnindex++) if (this.inputVal[row_index].content[columnindex]) row_content_found = true;
14901
-
14902
14735
  return row_content_found;
14903
14736
  },
14904
-
14905
14737
  /**
14906
14738
  * Removes excess row content. For example if a layout is [3,3,3] and content is
14907
14739
  * [true,false,true,true] then it sets the content to [true, false, true]
@@ -14911,7 +14743,6 @@ var ToggleHeaderTextLarge_component = normalizeComponent(
14911
14743
  removeExcessContent() {
14912
14744
  for (let row_index = 0; row_index < this.inputVal.length; row_index++) this.inputVal[row_index].content.length = this.inputVal[row_index].layout.length;
14913
14745
  },
14914
-
14915
14746
  /**
14916
14747
  * Removes empty rows from the grid
14917
14748
  *
@@ -14919,22 +14750,20 @@ var ToggleHeaderTextLarge_component = normalizeComponent(
14919
14750
  */
14920
14751
  removeEmptyRows() {
14921
14752
  this.removeExcessContent();
14922
-
14923
14753
  for (let rowindex = 0; rowindex < this.inputVal.length; rowindex++) if (!this.rowHasContent(rowindex)) this.inputVal.splice(rowindex, 1);
14924
14754
  },
14925
-
14926
14755
  /**
14927
14756
  * Drop content handler
14928
14757
  * @param {Number} [row] [row dropped into]
14929
14758
  * @param {Number} [column] [column dropped into]
14930
14759
  * @return Void
14931
14760
  */
14761
+
14932
14762
  drop(row, column) {
14933
14763
  let dropped_content = this.inputVal[this.draggingIndex[0]].content[this.draggingIndex[1]];
14934
14764
  this.$set(this.inputVal[this.draggingIndex[0]].content, this.draggingIndex[1], null);
14935
14765
  this.updateGridLayout(row, column, dropped_content);
14936
14766
  },
14937
-
14938
14767
  /**
14939
14768
  * Add a blank row to the grid
14940
14769
  */
@@ -14944,7 +14773,6 @@ var ToggleHeaderTextLarge_component = normalizeComponent(
14944
14773
  content: [null]
14945
14774
  });
14946
14775
  },
14947
-
14948
14776
  /**
14949
14777
  * Get a column percentage width
14950
14778
  * @param {Nunber} [columns] [number of columns (out of 12) the column takes up]
@@ -14953,7 +14781,6 @@ var ToggleHeaderTextLarge_component = normalizeComponent(
14953
14781
  getColumnWidth(columns) {
14954
14782
  return 100 / (12 / columns);
14955
14783
  }
14956
-
14957
14784
  }
14958
14785
  });
14959
14786
  // CONCATENATED MODULE: ./src/components/forms/ToggleInputGrid.vue?vue&type=script&lang=js&
@@ -14978,11 +14805,10 @@ var ToggleInputGrid_component = normalizeComponent(
14978
14805
  )
14979
14806
 
14980
14807
  /* harmony default export */ var ToggleInputGrid = (ToggleInputGrid_component.exports);
14981
- // CONCATENATED MODULE: ./node_modules/cache-loader/dist/cjs.js?{"cacheDirectory":"node_modules/.cache/vue-loader","cacheIdentifier":"7b4cc503-vue-loader-template"}!./node_modules/cache-loader/dist/cjs.js??ref--13-0!./node_modules/thread-loader/dist/cjs.js!./node_modules/babel-loader/lib!./node_modules/vue-loader/lib/loaders/templateLoader.js??ref--6!./node_modules/cache-loader/dist/cjs.js??ref--1-0!./node_modules/vue-loader/lib??vue-loader-options!./src/components/forms/ToggleInputCheckboxInline.vue?vue&type=template&id=65994c14&
14808
+ // CONCATENATED MODULE: ./node_modules/cache-loader/dist/cjs.js?{"cacheDirectory":"node_modules/.cache/vue-loader","cacheIdentifier":"041c37bc-vue-loader-template"}!./node_modules/cache-loader/dist/cjs.js??ref--13-0!./node_modules/thread-loader/dist/cjs.js!./node_modules/babel-loader/lib!./node_modules/vue-loader/lib/loaders/templateLoader.js??ref--6!./node_modules/cache-loader/dist/cjs.js??ref--1-0!./node_modules/vue-loader/lib??vue-loader-options!./src/components/forms/ToggleInputCheckboxInline.vue?vue&type=template&id=65994c14&
14982
14809
  var ToggleInputCheckboxInlinevue_type_template_id_65994c14_render = function render() {
14983
14810
  var _vm = this,
14984
- _c = _vm._self._c;
14985
-
14811
+ _c = _vm._self._c;
14986
14812
  return _c('label', {
14987
14813
  staticClass: "toggle-input-checkbox-inline"
14988
14814
  }, [_c('input', {
@@ -15003,13 +14829,11 @@ var ToggleInputCheckboxInlinevue_type_template_id_65994c14_render = function ren
15003
14829
  on: {
15004
14830
  "change": function ($event) {
15005
14831
  var $$a = _vm.inputVal,
15006
- $$el = $event.target,
15007
- $$c = $$el.checked ? true : false;
15008
-
14832
+ $$el = $event.target,
14833
+ $$c = $$el.checked ? true : false;
15009
14834
  if (Array.isArray($$a)) {
15010
14835
  var $$v = null,
15011
- $$i = _vm._i($$a, $$v);
15012
-
14836
+ $$i = _vm._i($$a, $$v);
15013
14837
  if ($$el.checked) {
15014
14838
  $$i < 0 && (_vm.inputVal = $$a.concat([$$v]));
15015
14839
  } else {
@@ -15026,7 +14850,6 @@ var ToggleInputCheckboxInlinevue_type_template_id_65994c14_render = function ren
15026
14850
  class: ['toggle-input-checkbox-label', _vm.label_style]
15027
14851
  }, [_vm._v(_vm._s(_vm.label))])])]);
15028
14852
  };
15029
-
15030
14853
  var ToggleInputCheckboxInlinevue_type_template_id_65994c14_staticRenderFns = [];
15031
14854
 
15032
14855
  // CONCATENATED MODULE: ./src/components/forms/ToggleInputCheckboxInline.vue?vue&type=template&id=65994c14&
@@ -15078,11 +14901,9 @@ var ToggleInputCheckboxInlinevue_type_template_id_65994c14_staticRenderFns = [];
15078
14901
  onFocus() {
15079
14902
  this.$emit('onFocus');
15080
14903
  },
15081
-
15082
14904
  onBlur() {
15083
14905
  this.$emit('onBlur');
15084
14906
  }
15085
-
15086
14907
  }
15087
14908
  });
15088
14909
  // CONCATENATED MODULE: ./src/components/forms/ToggleInputCheckboxInline.vue?vue&type=script&lang=js&
@@ -15107,11 +14928,10 @@ var ToggleInputCheckboxInline_component = normalizeComponent(
15107
14928
  )
15108
14929
 
15109
14930
  /* harmony default export */ var ToggleInputCheckboxInline = (ToggleInputCheckboxInline_component.exports);
15110
- // CONCATENATED MODULE: ./node_modules/cache-loader/dist/cjs.js?{"cacheDirectory":"node_modules/.cache/vue-loader","cacheIdentifier":"7b4cc503-vue-loader-template"}!./node_modules/cache-loader/dist/cjs.js??ref--13-0!./node_modules/thread-loader/dist/cjs.js!./node_modules/babel-loader/lib!./node_modules/vue-loader/lib/loaders/templateLoader.js??ref--6!./node_modules/cache-loader/dist/cjs.js??ref--1-0!./node_modules/vue-loader/lib??vue-loader-options!./src/components/forms/ToggleInputImage.vue?vue&type=template&id=6dd50c98&
15111
- var ToggleInputImagevue_type_template_id_6dd50c98_render = function render() {
14931
+ // CONCATENATED MODULE: ./node_modules/cache-loader/dist/cjs.js?{"cacheDirectory":"node_modules/.cache/vue-loader","cacheIdentifier":"041c37bc-vue-loader-template"}!./node_modules/cache-loader/dist/cjs.js??ref--13-0!./node_modules/thread-loader/dist/cjs.js!./node_modules/babel-loader/lib!./node_modules/vue-loader/lib/loaders/templateLoader.js??ref--6!./node_modules/cache-loader/dist/cjs.js??ref--1-0!./node_modules/vue-loader/lib??vue-loader-options!./src/components/forms/ToggleInputImage.vue?vue&type=template&id=610897a3&
14932
+ var ToggleInputImagevue_type_template_id_610897a3_render = function render() {
15112
14933
  var _vm = this,
15113
- _c = _vm._self._c;
15114
-
14934
+ _c = _vm._self._c;
15115
14935
  return _c('div', {
15116
14936
  staticClass: "toggle-input-container",
15117
14937
  class: {
@@ -15149,6 +14969,7 @@ var ToggleInputImagevue_type_template_id_6dd50c98_render = function render() {
15149
14969
  }
15150
14970
  }, [_c('div', {
15151
14971
  staticClass: "toggle-item-img toggle-dark-grey toggle-center",
14972
+ class: _vm.moveIconClass,
15152
14973
  style: {
15153
14974
  background: `rgb(243, 237, 237) url(${image.url}) no-repeat center top`,
15154
14975
  height: _vm.previewRatio == 'letterbox' ? _vm.thumbnailWidth / 2 + 'px' : _vm.thumbnailWidth + 'px',
@@ -15188,21 +15009,18 @@ var ToggleInputImagevue_type_template_id_6dd50c98_render = function render() {
15188
15009
  staticClass: "toggle-input-label-error"
15189
15010
  }, [_vm._v(" " + _vm._s(_vm.errorMessage) + " ")]) : _vm._e()], 1);
15190
15011
  };
15012
+ var ToggleInputImagevue_type_template_id_610897a3_staticRenderFns = [];
15191
15013
 
15192
- var ToggleInputImagevue_type_template_id_6dd50c98_staticRenderFns = [];
15193
-
15194
- // CONCATENATED MODULE: ./src/components/forms/ToggleInputImage.vue?vue&type=template&id=6dd50c98&
15014
+ // CONCATENATED MODULE: ./src/components/forms/ToggleInputImage.vue?vue&type=template&id=610897a3&
15195
15015
 
15196
- // CONCATENATED MODULE: ./node_modules/cache-loader/dist/cjs.js?{"cacheDirectory":"node_modules/.cache/vue-loader","cacheIdentifier":"7b4cc503-vue-loader-template"}!./node_modules/cache-loader/dist/cjs.js??ref--13-0!./node_modules/thread-loader/dist/cjs.js!./node_modules/babel-loader/lib!./node_modules/vue-loader/lib/loaders/templateLoader.js??ref--6!./node_modules/cache-loader/dist/cjs.js??ref--1-0!./node_modules/vue-loader/lib??vue-loader-options!./src/components/text/ToggleHelperTextSmall.vue?vue&type=template&id=d8210f4e&
15016
+ // CONCATENATED MODULE: ./node_modules/cache-loader/dist/cjs.js?{"cacheDirectory":"node_modules/.cache/vue-loader","cacheIdentifier":"041c37bc-vue-loader-template"}!./node_modules/cache-loader/dist/cjs.js??ref--13-0!./node_modules/thread-loader/dist/cjs.js!./node_modules/babel-loader/lib!./node_modules/vue-loader/lib/loaders/templateLoader.js??ref--6!./node_modules/cache-loader/dist/cjs.js??ref--1-0!./node_modules/vue-loader/lib??vue-loader-options!./src/components/text/ToggleHelperTextSmall.vue?vue&type=template&id=d8210f4e&
15197
15017
  var ToggleHelperTextSmallvue_type_template_id_d8210f4e_render = function render() {
15198
15018
  var _vm = this,
15199
- _c = _vm._self._c;
15200
-
15019
+ _c = _vm._self._c;
15201
15020
  return _c('p', {
15202
15021
  staticClass: "toggle-helper-text-small"
15203
15022
  }, [_vm._t("default")], 2);
15204
15023
  };
15205
-
15206
15024
  var ToggleHelperTextSmallvue_type_template_id_d8210f4e_staticRenderFns = [];
15207
15025
 
15208
15026
  // CONCATENATED MODULE: ./src/components/text/ToggleHelperTextSmall.vue?vue&type=template&id=d8210f4e&
@@ -15226,11 +15044,10 @@ var ToggleHelperTextSmall_component = normalizeComponent(
15226
15044
  )
15227
15045
 
15228
15046
  /* harmony default export */ var ToggleHelperTextSmall = (ToggleHelperTextSmall_component.exports);
15229
- // CONCATENATED MODULE: ./node_modules/cache-loader/dist/cjs.js?{"cacheDirectory":"node_modules/.cache/vue-loader","cacheIdentifier":"7b4cc503-vue-loader-template"}!./node_modules/cache-loader/dist/cjs.js??ref--13-0!./node_modules/thread-loader/dist/cjs.js!./node_modules/babel-loader/lib!./node_modules/vue-loader/lib/loaders/templateLoader.js??ref--6!./node_modules/cache-loader/dist/cjs.js??ref--1-0!./node_modules/vue-loader/lib??vue-loader-options!./src/components/loaders/ToggleFillLoader.vue?vue&type=template&id=2fbb049c&
15047
+ // CONCATENATED MODULE: ./node_modules/cache-loader/dist/cjs.js?{"cacheDirectory":"node_modules/.cache/vue-loader","cacheIdentifier":"041c37bc-vue-loader-template"}!./node_modules/cache-loader/dist/cjs.js??ref--13-0!./node_modules/thread-loader/dist/cjs.js!./node_modules/babel-loader/lib!./node_modules/vue-loader/lib/loaders/templateLoader.js??ref--6!./node_modules/cache-loader/dist/cjs.js??ref--1-0!./node_modules/vue-loader/lib??vue-loader-options!./src/components/loaders/ToggleFillLoader.vue?vue&type=template&id=2fbb049c&
15230
15048
  var ToggleFillLoadervue_type_template_id_2fbb049c_render = function render() {
15231
15049
  var _vm = this,
15232
- _c = _vm._self._c;
15233
-
15050
+ _c = _vm._self._c;
15234
15051
  return _c('div', {
15235
15052
  staticClass: "toggle-fill-loader-container",
15236
15053
  class: {
@@ -15238,11 +15055,9 @@ var ToggleFillLoadervue_type_template_id_2fbb049c_render = function render() {
15238
15055
  }
15239
15056
  }, [_vm._m(0)]);
15240
15057
  };
15241
-
15242
15058
  var ToggleFillLoadervue_type_template_id_2fbb049c_staticRenderFns = [function () {
15243
15059
  var _vm = this,
15244
- _c = _vm._self._c;
15245
-
15060
+ _c = _vm._self._c;
15246
15061
  return _c('div', {
15247
15062
  staticClass: "toggle-fill-loader-container-background"
15248
15063
  }, [_c('div', {
@@ -15384,7 +15199,11 @@ var vue2Dropzone_min = __webpack_require__("1e3f");
15384
15199
  group: "images"
15385
15200
  };
15386
15201
  },
15387
-
15202
+ moveIconClass() {
15203
+ return {
15204
+ 'toggle-move-icon': this.images.length > 1
15205
+ };
15206
+ },
15388
15207
  inputVal: {
15389
15208
  get: function () {
15390
15209
  return this.images;
@@ -15408,8 +15227,8 @@ var vue2Dropzone_min = __webpack_require__("1e3f");
15408
15227
 
15409
15228
  var ToggleInputImage_component = normalizeComponent(
15410
15229
  forms_ToggleInputImagevue_type_script_lang_js_,
15411
- ToggleInputImagevue_type_template_id_6dd50c98_render,
15412
- ToggleInputImagevue_type_template_id_6dd50c98_staticRenderFns,
15230
+ ToggleInputImagevue_type_template_id_610897a3_render,
15231
+ ToggleInputImagevue_type_template_id_610897a3_staticRenderFns,
15413
15232
  false,
15414
15233
  null,
15415
15234
  null,
@@ -15418,11 +15237,10 @@ var ToggleInputImage_component = normalizeComponent(
15418
15237
  )
15419
15238
 
15420
15239
  /* harmony default export */ var ToggleInputImage = (ToggleInputImage_component.exports);
15421
- // CONCATENATED MODULE: ./node_modules/cache-loader/dist/cjs.js?{"cacheDirectory":"node_modules/.cache/vue-loader","cacheIdentifier":"7b4cc503-vue-loader-template"}!./node_modules/cache-loader/dist/cjs.js??ref--13-0!./node_modules/thread-loader/dist/cjs.js!./node_modules/babel-loader/lib!./node_modules/vue-loader/lib/loaders/templateLoader.js??ref--6!./node_modules/cache-loader/dist/cjs.js??ref--1-0!./node_modules/vue-loader/lib??vue-loader-options!./src/components/forms/ToggleInputFile.vue?vue&type=template&id=564702b5&
15240
+ // CONCATENATED MODULE: ./node_modules/cache-loader/dist/cjs.js?{"cacheDirectory":"node_modules/.cache/vue-loader","cacheIdentifier":"041c37bc-vue-loader-template"}!./node_modules/cache-loader/dist/cjs.js??ref--13-0!./node_modules/thread-loader/dist/cjs.js!./node_modules/babel-loader/lib!./node_modules/vue-loader/lib/loaders/templateLoader.js??ref--6!./node_modules/cache-loader/dist/cjs.js??ref--1-0!./node_modules/vue-loader/lib??vue-loader-options!./src/components/forms/ToggleInputFile.vue?vue&type=template&id=564702b5&
15422
15241
  var ToggleInputFilevue_type_template_id_564702b5_render = function render() {
15423
15242
  var _vm = this,
15424
- _c = _vm._self._c;
15425
-
15243
+ _c = _vm._self._c;
15426
15244
  return _c('div', {
15427
15245
  staticClass: "toggle-input-container",
15428
15246
  class: {
@@ -15467,7 +15285,6 @@ var ToggleInputFilevue_type_template_id_564702b5_render = function render() {
15467
15285
  staticClass: "toggle-input-label-error"
15468
15286
  }, [_vm._v(" " + _vm._s(_vm.errorMessage) + " ")]) : _vm._e()], 1);
15469
15287
  };
15470
-
15471
15288
  var ToggleInputFilevue_type_template_id_564702b5_staticRenderFns = [];
15472
15289
 
15473
15290
  // CONCATENATED MODULE: ./src/components/forms/ToggleInputFile.vue?vue&type=template&id=564702b5&
@@ -15546,16 +15363,14 @@ var ToggleInputFile_component = normalizeComponent(
15546
15363
  )
15547
15364
 
15548
15365
  /* harmony default export */ var ToggleInputFile = (ToggleInputFile_component.exports);
15549
- // CONCATENATED MODULE: ./node_modules/cache-loader/dist/cjs.js?{"cacheDirectory":"node_modules/.cache/vue-loader","cacheIdentifier":"7b4cc503-vue-loader-template"}!./node_modules/cache-loader/dist/cjs.js??ref--13-0!./node_modules/thread-loader/dist/cjs.js!./node_modules/babel-loader/lib!./node_modules/vue-loader/lib/loaders/templateLoader.js??ref--6!./node_modules/cache-loader/dist/cjs.js??ref--1-0!./node_modules/vue-loader/lib??vue-loader-options!./src/components/forms/ToggleInputGroup.vue?vue&type=template&id=a6b9978e&
15366
+ // CONCATENATED MODULE: ./node_modules/cache-loader/dist/cjs.js?{"cacheDirectory":"node_modules/.cache/vue-loader","cacheIdentifier":"041c37bc-vue-loader-template"}!./node_modules/cache-loader/dist/cjs.js??ref--13-0!./node_modules/thread-loader/dist/cjs.js!./node_modules/babel-loader/lib!./node_modules/vue-loader/lib/loaders/templateLoader.js??ref--6!./node_modules/cache-loader/dist/cjs.js??ref--1-0!./node_modules/vue-loader/lib??vue-loader-options!./src/components/forms/ToggleInputGroup.vue?vue&type=template&id=a6b9978e&
15550
15367
  var ToggleInputGroupvue_type_template_id_a6b9978e_render = function render() {
15551
15368
  var _vm = this,
15552
- _c = _vm._self._c;
15553
-
15369
+ _c = _vm._self._c;
15554
15370
  return _c('div', [_vm.label ? _c('ToggleHeaderTextLarge', [_vm._v(_vm._s(_vm.label))]) : _vm._e(), _c('div', {
15555
15371
  staticClass: "toggle-input-group"
15556
15372
  }, [_vm._t("default")], 2)], 1);
15557
15373
  };
15558
-
15559
15374
  var ToggleInputGroupvue_type_template_id_a6b9978e_staticRenderFns = [];
15560
15375
 
15561
15376
  // CONCATENATED MODULE: ./src/components/forms/ToggleInputGroup.vue?vue&type=template&id=a6b9978e&
@@ -15603,11 +15418,10 @@ var ToggleInputGroup_component = normalizeComponent(
15603
15418
  )
15604
15419
 
15605
15420
  /* harmony default export */ var ToggleInputGroup = (ToggleInputGroup_component.exports);
15606
- // CONCATENATED MODULE: ./node_modules/cache-loader/dist/cjs.js?{"cacheDirectory":"node_modules/.cache/vue-loader","cacheIdentifier":"7b4cc503-vue-loader-template"}!./node_modules/cache-loader/dist/cjs.js??ref--13-0!./node_modules/thread-loader/dist/cjs.js!./node_modules/babel-loader/lib!./node_modules/vue-loader/lib/loaders/templateLoader.js??ref--6!./node_modules/cache-loader/dist/cjs.js??ref--1-0!./node_modules/vue-loader/lib??vue-loader-options!./src/components/forms/ToggleInputNumber.vue?vue&type=template&id=ef0b99dc&
15421
+ // CONCATENATED MODULE: ./node_modules/cache-loader/dist/cjs.js?{"cacheDirectory":"node_modules/.cache/vue-loader","cacheIdentifier":"041c37bc-vue-loader-template"}!./node_modules/cache-loader/dist/cjs.js??ref--13-0!./node_modules/thread-loader/dist/cjs.js!./node_modules/babel-loader/lib!./node_modules/vue-loader/lib/loaders/templateLoader.js??ref--6!./node_modules/cache-loader/dist/cjs.js??ref--1-0!./node_modules/vue-loader/lib??vue-loader-options!./src/components/forms/ToggleInputNumber.vue?vue&type=template&id=ef0b99dc&
15607
15422
  var ToggleInputNumbervue_type_template_id_ef0b99dc_render = function render() {
15608
15423
  var _vm = this,
15609
- _c = _vm._self._c;
15610
-
15424
+ _c = _vm._self._c;
15611
15425
  return _c('div', {
15612
15426
  staticClass: "toggle-input-container",
15613
15427
  class: {
@@ -15658,7 +15472,6 @@ var ToggleInputNumbervue_type_template_id_ef0b99dc_render = function render() {
15658
15472
  }
15659
15473
  }, [_vm._v(" " + _vm._s(_vm.errorMessage) + " ")]) : _vm._e()]);
15660
15474
  };
15661
-
15662
15475
  var ToggleInputNumbervue_type_template_id_ef0b99dc_staticRenderFns = [];
15663
15476
 
15664
15477
  // CONCATENATED MODULE: ./src/components/forms/ToggleInputNumber.vue?vue&type=template&id=ef0b99dc&
@@ -15744,7 +15557,8 @@ var ToggleInputNumbervue_type_template_id_ef0b99dc_staticRenderFns = [];
15744
15557
  if (modifiedValue === '') {
15745
15558
  this.$emit('input', modifiedValue);
15746
15559
  } else {
15747
- let newValue = parseFloat(modifiedValue); // Ensure that it is not NaN
15560
+ let newValue = parseFloat(modifiedValue);
15561
+ // Ensure that it is not NaN
15748
15562
 
15749
15563
  if (isNaN(newValue)) newValue = 0;
15750
15564
  this.$emit('input', newValue);
@@ -15761,15 +15575,12 @@ var ToggleInputNumbervue_type_template_id_ef0b99dc_staticRenderFns = [];
15761
15575
  let mcount = count ? count.length : 0;
15762
15576
  return mcount + ' / ' + maxLenght;
15763
15577
  },
15764
-
15765
15578
  onFocus() {
15766
15579
  this.$emit('onFocus');
15767
15580
  },
15768
-
15769
15581
  onBlur() {
15770
15582
  this.$emit('onBlur');
15771
15583
  }
15772
-
15773
15584
  }
15774
15585
  });
15775
15586
  // CONCATENATED MODULE: ./src/components/forms/ToggleInputNumber.vue?vue&type=script&lang=js&
@@ -15794,11 +15605,10 @@ var ToggleInputNumber_component = normalizeComponent(
15794
15605
  )
15795
15606
 
15796
15607
  /* harmony default export */ var ToggleInputNumber = (ToggleInputNumber_component.exports);
15797
- // CONCATENATED MODULE: ./node_modules/cache-loader/dist/cjs.js?{"cacheDirectory":"node_modules/.cache/vue-loader","cacheIdentifier":"7b4cc503-vue-loader-template"}!./node_modules/cache-loader/dist/cjs.js??ref--13-0!./node_modules/thread-loader/dist/cjs.js!./node_modules/babel-loader/lib!./node_modules/vue-loader/lib/loaders/templateLoader.js??ref--6!./node_modules/cache-loader/dist/cjs.js??ref--1-0!./node_modules/vue-loader/lib??vue-loader-options!./src/components/forms/ToggleColourPicker.vue?vue&type=template&id=ce1c3b3a&
15608
+ // CONCATENATED MODULE: ./node_modules/cache-loader/dist/cjs.js?{"cacheDirectory":"node_modules/.cache/vue-loader","cacheIdentifier":"041c37bc-vue-loader-template"}!./node_modules/cache-loader/dist/cjs.js??ref--13-0!./node_modules/thread-loader/dist/cjs.js!./node_modules/babel-loader/lib!./node_modules/vue-loader/lib/loaders/templateLoader.js??ref--6!./node_modules/cache-loader/dist/cjs.js??ref--1-0!./node_modules/vue-loader/lib??vue-loader-options!./src/components/forms/ToggleColourPicker.vue?vue&type=template&id=ce1c3b3a&
15798
15609
  var ToggleColourPickervue_type_template_id_ce1c3b3a_render = function render() {
15799
15610
  var _vm = this,
15800
- _c = _vm._self._c;
15801
-
15611
+ _c = _vm._self._c;
15802
15612
  return _c('div', {
15803
15613
  staticClass: "toggle-input-container",
15804
15614
  class: {
@@ -15854,7 +15664,6 @@ var ToggleColourPickervue_type_template_id_ce1c3b3a_render = function render() {
15854
15664
  }
15855
15665
  }, [_vm._v(" " + _vm._s(_vm.errorMessage) + " ")]) : _vm._e()], 1)]);
15856
15666
  };
15857
-
15858
15667
  var ToggleColourPickervue_type_template_id_ce1c3b3a_staticRenderFns = [];
15859
15668
 
15860
15669
  // CONCATENATED MODULE: ./src/components/forms/ToggleColourPicker.vue?vue&type=template&id=ce1c3b3a&
@@ -15937,7 +15746,6 @@ external_commonjs_vue_commonjs2_vue_root_Vue_default.a.component('chrome-picker'
15937
15746
  this.$emit('input', val);
15938
15747
  }
15939
15748
  }
15940
-
15941
15749
  },
15942
15750
  mounted: function () {
15943
15751
  this.setColor(this.value || '#000000');
@@ -15947,19 +15755,19 @@ external_commonjs_vue_commonjs2_vue_root_Vue_default.a.component('chrome-picker'
15947
15755
  this.updateColors(color);
15948
15756
  this.colorValue = color;
15949
15757
  },
15950
-
15951
15758
  setBorderColour(color, colorsRgba = '') {
15952
- if (colorsRgba === '') //if has only hex
15759
+ if (colorsRgba === '')
15760
+ //if has only hex
15953
15761
  {
15954
15762
  let isWhite = color.charAt(1) === 'F' && color.charAt(2) != 'F' ? true : false;
15955
15763
  this.borderColour = isWhite ? '#EAE8E8' : color;
15956
- } else if (colorsRgba != '') //if has rgba
15764
+ } else if (colorsRgba != '')
15765
+ //if has rgba
15957
15766
  {
15958
15767
  let hasTransparency = parseFloat(colorsRgba.a) < 0.2 ? true : false;
15959
15768
  this.borderColour = hasTransparency ? colorsRgba.hex : color;
15960
15769
  }
15961
15770
  },
15962
-
15963
15771
  updateColors(color) {
15964
15772
  if (color.slice(0, 1) == '#') {
15965
15773
  this.colors = {
@@ -15968,7 +15776,7 @@ external_commonjs_vue_commonjs2_vue_root_Vue_default.a.component('chrome-picker'
15968
15776
  this.setBorderColour(color);
15969
15777
  } else if (color.slice(0, 4) == 'rgba') {
15970
15778
  var rgba = color.replace(/^rgba?\(|\s+|\)$/g, '').split(','),
15971
- hex = '#' + ((1 << 24) + (parseInt(rgba[0]) << 16) + (parseInt(rgba[1]) << 8) + parseInt(rgba[2])).toString(16).slice(1);
15779
+ hex = '#' + ((1 << 24) + (parseInt(rgba[0]) << 16) + (parseInt(rgba[1]) << 8) + parseInt(rgba[2])).toString(16).slice(1);
15972
15780
  this.colors = {
15973
15781
  hex: hex,
15974
15782
  a: rgba[3]
@@ -15976,44 +15784,35 @@ external_commonjs_vue_commonjs2_vue_root_Vue_default.a.component('chrome-picker'
15976
15784
  this.setBorderColour(color, this.colors);
15977
15785
  }
15978
15786
  },
15979
-
15980
15787
  updateFromInput() {
15981
15788
  this.updateColors(this.colorValue);
15982
15789
  },
15983
-
15984
15790
  showPicker() {
15985
15791
  this.displayPicker = true;
15986
15792
  document.addEventListener('click', this.documentClick);
15987
15793
  },
15988
-
15989
15794
  hidePicker() {
15990
15795
  this.displayPicker = false;
15991
15796
  document.removeEventListener('click', this.documentClick);
15992
15797
  },
15993
-
15994
15798
  togglePicker() {
15995
15799
  this.displayPicker ? this.hidePicker() : this.showPicker();
15996
15800
  },
15997
-
15998
15801
  documentClick(e) {
15999
15802
  var el = this.$refs.colorpicker,
16000
- target = e.target;
16001
-
15803
+ target = e.target;
16002
15804
  if (el !== target && !el.contains(target)) {
16003
15805
  this.hidePicker();
16004
15806
  }
16005
15807
  },
16006
-
16007
15808
  updateFromPicker(color) {
16008
15809
  this.colors = color;
16009
-
16010
15810
  if (color.rgba.a == 1) {
16011
15811
  this.colorValue = color.hex;
16012
15812
  } else {
16013
15813
  this.colorValue = 'rgba(' + color.rgba.r + ', ' + color.rgba.g + ', ' + color.rgba.b + ', ' + color.rgba.a + ')';
16014
15814
  }
16015
15815
  }
16016
-
16017
15816
  }
16018
15817
  });
16019
15818
  // CONCATENATED MODULE: ./src/components/forms/ToggleColourPicker.vue?vue&type=script&lang=js&
@@ -16038,11 +15837,10 @@ var ToggleColourPicker_component = normalizeComponent(
16038
15837
  )
16039
15838
 
16040
15839
  /* harmony default export */ var ToggleColourPicker = (ToggleColourPicker_component.exports);
16041
- // CONCATENATED MODULE: ./node_modules/cache-loader/dist/cjs.js?{"cacheDirectory":"node_modules/.cache/vue-loader","cacheIdentifier":"7b4cc503-vue-loader-template"}!./node_modules/cache-loader/dist/cjs.js??ref--13-0!./node_modules/thread-loader/dist/cjs.js!./node_modules/babel-loader/lib!./node_modules/vue-loader/lib/loaders/templateLoader.js??ref--6!./node_modules/cache-loader/dist/cjs.js??ref--1-0!./node_modules/vue-loader/lib??vue-loader-options!./src/components/forms/ToggleInputSearch.vue?vue&type=template&id=76f40c51&
15840
+ // CONCATENATED MODULE: ./node_modules/cache-loader/dist/cjs.js?{"cacheDirectory":"node_modules/.cache/vue-loader","cacheIdentifier":"041c37bc-vue-loader-template"}!./node_modules/cache-loader/dist/cjs.js??ref--13-0!./node_modules/thread-loader/dist/cjs.js!./node_modules/babel-loader/lib!./node_modules/vue-loader/lib/loaders/templateLoader.js??ref--6!./node_modules/cache-loader/dist/cjs.js??ref--1-0!./node_modules/vue-loader/lib??vue-loader-options!./src/components/forms/ToggleInputSearch.vue?vue&type=template&id=76f40c51&
16042
15841
  var ToggleInputSearchvue_type_template_id_76f40c51_render = function render() {
16043
15842
  var _vm = this,
16044
- _c = _vm._self._c;
16045
-
15843
+ _c = _vm._self._c;
16046
15844
  return _c('div', {
16047
15845
  ref: "toggle-input-search",
16048
15846
  staticClass: "toggle-input-container",
@@ -16083,13 +15881,11 @@ var ToggleInputSearchvue_type_template_id_76f40c51_render = function render() {
16083
15881
  on: {
16084
15882
  "change": function ($event) {
16085
15883
  var $$a = _vm.searchModel,
16086
- $$el = $event.target,
16087
- $$c = $$el.checked ? true : false;
16088
-
15884
+ $$el = $event.target,
15885
+ $$c = $$el.checked ? true : false;
16089
15886
  if (Array.isArray($$a)) {
16090
15887
  var $$v = null,
16091
- $$i = _vm._i($$a, $$v);
16092
-
15888
+ $$i = _vm._i($$a, $$v);
16093
15889
  if ($$el.checked) {
16094
15890
  $$i < 0 && (_vm.searchModel = $$a.concat([$$v]));
16095
15891
  } else {
@@ -16182,7 +15978,6 @@ var ToggleInputSearchvue_type_template_id_76f40c51_render = function render() {
16182
15978
  }
16183
15979
  }, [_vm._v(" " + _vm._s(_vm.errorMessage) + " ")]) : _vm._e()]);
16184
15980
  };
16185
-
16186
15981
  var ToggleInputSearchvue_type_template_id_76f40c51_staticRenderFns = [];
16187
15982
 
16188
15983
  // CONCATENATED MODULE: ./src/components/forms/ToggleInputSearch.vue?vue&type=template&id=76f40c51&
@@ -16190,7 +15985,6 @@ var ToggleInputSearchvue_type_template_id_76f40c51_staticRenderFns = [];
16190
15985
  // CONCATENATED MODULE: ./node_modules/cache-loader/dist/cjs.js??ref--13-0!./node_modules/thread-loader/dist/cjs.js!./node_modules/babel-loader/lib!./node_modules/cache-loader/dist/cjs.js??ref--1-0!./node_modules/vue-loader/lib??vue-loader-options!./src/components/forms/ToggleInputSearch.vue?vue&type=script&lang=js&
16191
15986
 
16192
15987
 
16193
-
16194
15988
  /* harmony default export */ var ToggleInputSearchvue_type_script_lang_js_ = ({
16195
15989
  mixins: [mixins],
16196
15990
  props: {
@@ -16252,11 +16046,9 @@ var ToggleInputSearchvue_type_template_id_76f40c51_staticRenderFns = [];
16252
16046
  created: function () {
16253
16047
  window.addEventListener('click', this.windowClick, true);
16254
16048
  },
16255
-
16256
16049
  beforeDestroy() {
16257
16050
  window.removeEventListener('click', this.windowClick, true);
16258
16051
  },
16259
-
16260
16052
  components: {
16261
16053
  ToggleButton: ToggleButton
16262
16054
  },
@@ -16275,17 +16067,14 @@ var ToggleInputSearchvue_type_template_id_76f40c51_staticRenderFns = [];
16275
16067
  return this.savedSearchModel = value;
16276
16068
  }
16277
16069
  },
16278
-
16279
16070
  // should the add option show?
16280
16071
  showAddButton() {
16281
16072
  return (!this.filteredOptions.length || !this.exactMatch) && this.allowAddValue && this.searchModel;
16282
16073
  },
16283
-
16284
16074
  // should options dropdown show?
16285
16075
  showOptions() {
16286
16076
  return !this.disabled && this.inputFocussed && (this.searchModel && (this.value == null || this.searchModel != this.value.label) || !this.searchModel);
16287
16077
  },
16288
-
16289
16078
  /*
16290
16079
  * does the search query exactly match an option?
16291
16080
  * returns bool
@@ -16293,7 +16082,6 @@ var ToggleInputSearchvue_type_template_id_76f40c51_staticRenderFns = [];
16293
16082
  exactMatch() {
16294
16083
  return this.options.filter(option => option.label.toLowerCase() == this.searchModel.toLowerCase()).length != 0;
16295
16084
  },
16296
-
16297
16085
  /*
16298
16086
  * Returns options that contain the search query
16299
16087
  * returns array
@@ -16301,7 +16089,6 @@ var ToggleInputSearchvue_type_template_id_76f40c51_staticRenderFns = [];
16301
16089
  filteredOptions() {
16302
16090
  return this.options.filter(option => option.label.toLowerCase().includes(this.searchModel.toLowerCase()));
16303
16091
  },
16304
-
16305
16092
  // the input model
16306
16093
  inputVal: {
16307
16094
  get: function () {
@@ -16318,7 +16105,6 @@ var ToggleInputSearchvue_type_template_id_76f40c51_staticRenderFns = [];
16318
16105
  this.searchModel = option.label;
16319
16106
  this.inputVal = option;
16320
16107
  },
16321
-
16322
16108
  // add option to options list
16323
16109
  addOption(option) {
16324
16110
  this.searchModel = option;
@@ -16327,7 +16113,6 @@ var ToggleInputSearchvue_type_template_id_76f40c51_staticRenderFns = [];
16327
16113
  label: option
16328
16114
  };
16329
16115
  },
16330
-
16331
16116
  /*
16332
16117
  * Concat message for count characters
16333
16118
  * @return string
@@ -16336,17 +16121,14 @@ var ToggleInputSearchvue_type_template_id_76f40c51_staticRenderFns = [];
16336
16121
  let mcount = count ? count.length : 0;
16337
16122
  return mcount + ' / ' + maxLenght;
16338
16123
  },
16339
-
16340
16124
  windowClick(e) {
16341
16125
  var element = this.$refs["toggle-input-search"];
16342
-
16343
16126
  if (e.target !== element && !element.contains(e.target)) {
16344
16127
  this.inputFocussed = false;
16345
16128
  } else {
16346
16129
  this.inputFocussed = true;
16347
16130
  }
16348
16131
  }
16349
-
16350
16132
  }
16351
16133
  });
16352
16134
  // CONCATENATED MODULE: ./src/components/forms/ToggleInputSearch.vue?vue&type=script&lang=js&
@@ -16371,11 +16153,10 @@ var ToggleInputSearch_component = normalizeComponent(
16371
16153
  )
16372
16154
 
16373
16155
  /* harmony default export */ var ToggleInputSearch = (ToggleInputSearch_component.exports);
16374
- // CONCATENATED MODULE: ./node_modules/cache-loader/dist/cjs.js?{"cacheDirectory":"node_modules/.cache/vue-loader","cacheIdentifier":"7b4cc503-vue-loader-template"}!./node_modules/cache-loader/dist/cjs.js??ref--13-0!./node_modules/thread-loader/dist/cjs.js!./node_modules/babel-loader/lib!./node_modules/vue-loader/lib/loaders/templateLoader.js??ref--6!./node_modules/cache-loader/dist/cjs.js??ref--1-0!./node_modules/vue-loader/lib??vue-loader-options!./src/components/forms/ToggleInputRadioButtonGroup.vue?vue&type=template&id=35e8cd10&
16156
+ // CONCATENATED MODULE: ./node_modules/cache-loader/dist/cjs.js?{"cacheDirectory":"node_modules/.cache/vue-loader","cacheIdentifier":"041c37bc-vue-loader-template"}!./node_modules/cache-loader/dist/cjs.js??ref--13-0!./node_modules/thread-loader/dist/cjs.js!./node_modules/babel-loader/lib!./node_modules/vue-loader/lib/loaders/templateLoader.js??ref--6!./node_modules/cache-loader/dist/cjs.js??ref--1-0!./node_modules/vue-loader/lib??vue-loader-options!./src/components/forms/ToggleInputRadioButtonGroup.vue?vue&type=template&id=35e8cd10&
16375
16157
  var ToggleInputRadioButtonGroupvue_type_template_id_35e8cd10_render = function render() {
16376
16158
  var _vm = this,
16377
- _c = _vm._self._c;
16378
-
16159
+ _c = _vm._self._c;
16379
16160
  return _c('div', {
16380
16161
  staticClass: "toggle-input-container margin-bottom-0",
16381
16162
  class: {
@@ -16399,7 +16180,6 @@ var ToggleInputRadioButtonGroupvue_type_template_id_35e8cd10_render = function r
16399
16180
  }
16400
16181
  }, [_vm._v(" " + _vm._s(_vm.errorMessage) + " ")]) : _vm._e()], 2)]);
16401
16182
  };
16402
-
16403
16183
  var ToggleInputRadioButtonGroupvue_type_template_id_35e8cd10_staticRenderFns = [];
16404
16184
 
16405
16185
  // CONCATENATED MODULE: ./src/components/forms/ToggleInputRadioButtonGroup.vue?vue&type=template&id=35e8cd10&
@@ -16436,11 +16216,9 @@ var ToggleInputRadioButtonGroupvue_type_template_id_35e8cd10_staticRenderFns = [
16436
16216
  onFocus() {
16437
16217
  this.$emit('onFocus');
16438
16218
  },
16439
-
16440
16219
  onBlur() {
16441
16220
  this.$emit('onBlur');
16442
16221
  }
16443
-
16444
16222
  }
16445
16223
  });
16446
16224
  // CONCATENATED MODULE: ./src/components/forms/ToggleInputRadioButtonGroup.vue?vue&type=script&lang=js&
@@ -16465,11 +16243,10 @@ var ToggleInputRadioButtonGroup_component = normalizeComponent(
16465
16243
  )
16466
16244
 
16467
16245
  /* harmony default export */ var ToggleInputRadioButtonGroup = (ToggleInputRadioButtonGroup_component.exports);
16468
- // CONCATENATED MODULE: ./node_modules/cache-loader/dist/cjs.js?{"cacheDirectory":"node_modules/.cache/vue-loader","cacheIdentifier":"7b4cc503-vue-loader-template"}!./node_modules/cache-loader/dist/cjs.js??ref--13-0!./node_modules/thread-loader/dist/cjs.js!./node_modules/babel-loader/lib!./node_modules/vue-loader/lib/loaders/templateLoader.js??ref--6!./node_modules/cache-loader/dist/cjs.js??ref--1-0!./node_modules/vue-loader/lib??vue-loader-options!./src/components/tables/ToggleTable.vue?vue&type=template&id=841ba81c&
16246
+ // CONCATENATED MODULE: ./node_modules/cache-loader/dist/cjs.js?{"cacheDirectory":"node_modules/.cache/vue-loader","cacheIdentifier":"041c37bc-vue-loader-template"}!./node_modules/cache-loader/dist/cjs.js??ref--13-0!./node_modules/thread-loader/dist/cjs.js!./node_modules/babel-loader/lib!./node_modules/vue-loader/lib/loaders/templateLoader.js??ref--6!./node_modules/cache-loader/dist/cjs.js??ref--1-0!./node_modules/vue-loader/lib??vue-loader-options!./src/components/tables/ToggleTable.vue?vue&type=template&id=841ba81c&
16469
16247
  var ToggleTablevue_type_template_id_841ba81c_render = function render() {
16470
16248
  var _vm = this,
16471
- _c = _vm._self._c;
16472
-
16249
+ _c = _vm._self._c;
16473
16250
  return _c('div', [_c('table', {
16474
16251
  staticClass: "toggle-table"
16475
16252
  }, [_c('thead', {
@@ -16580,16 +16357,14 @@ var ToggleTablevue_type_template_id_841ba81c_render = function render() {
16580
16357
  }
16581
16358
  }) : _vm._e()], 1);
16582
16359
  };
16583
-
16584
16360
  var ToggleTablevue_type_template_id_841ba81c_staticRenderFns = [];
16585
16361
 
16586
16362
  // CONCATENATED MODULE: ./src/components/tables/ToggleTable.vue?vue&type=template&id=841ba81c&
16587
16363
 
16588
- // CONCATENATED MODULE: ./node_modules/cache-loader/dist/cjs.js?{"cacheDirectory":"node_modules/.cache/vue-loader","cacheIdentifier":"7b4cc503-vue-loader-template"}!./node_modules/cache-loader/dist/cjs.js??ref--13-0!./node_modules/thread-loader/dist/cjs.js!./node_modules/babel-loader/lib!./node_modules/vue-loader/lib/loaders/templateLoader.js??ref--6!./node_modules/cache-loader/dist/cjs.js??ref--1-0!./node_modules/vue-loader/lib??vue-loader-options!./src/components/tables/ToggleTableRow.vue?vue&type=template&id=bab4fd8c&
16364
+ // CONCATENATED MODULE: ./node_modules/cache-loader/dist/cjs.js?{"cacheDirectory":"node_modules/.cache/vue-loader","cacheIdentifier":"041c37bc-vue-loader-template"}!./node_modules/cache-loader/dist/cjs.js??ref--13-0!./node_modules/thread-loader/dist/cjs.js!./node_modules/babel-loader/lib!./node_modules/vue-loader/lib/loaders/templateLoader.js??ref--6!./node_modules/cache-loader/dist/cjs.js??ref--1-0!./node_modules/vue-loader/lib??vue-loader-options!./src/components/tables/ToggleTableRow.vue?vue&type=template&id=bab4fd8c&
16589
16365
  var ToggleTableRowvue_type_template_id_bab4fd8c_render = function render() {
16590
16366
  var _vm = this,
16591
- _c = _vm._self._c;
16592
-
16367
+ _c = _vm._self._c;
16593
16368
  return _c('tr', {
16594
16369
  staticClass: "toggle-tablee-tr",
16595
16370
  on: {
@@ -16599,7 +16374,6 @@ var ToggleTableRowvue_type_template_id_bab4fd8c_render = function render() {
16599
16374
  }
16600
16375
  }, [_vm._t("default")], 2);
16601
16376
  };
16602
-
16603
16377
  var ToggleTableRowvue_type_template_id_bab4fd8c_staticRenderFns = [];
16604
16378
 
16605
16379
  // CONCATENATED MODULE: ./src/components/tables/ToggleTableRow.vue?vue&type=template&id=bab4fd8c&
@@ -16623,16 +16397,14 @@ var ToggleTableRow_component = normalizeComponent(
16623
16397
  )
16624
16398
 
16625
16399
  /* harmony default export */ var ToggleTableRow = (ToggleTableRow_component.exports);
16626
- // CONCATENATED MODULE: ./node_modules/cache-loader/dist/cjs.js?{"cacheDirectory":"node_modules/.cache/vue-loader","cacheIdentifier":"7b4cc503-vue-loader-template"}!./node_modules/cache-loader/dist/cjs.js??ref--13-0!./node_modules/thread-loader/dist/cjs.js!./node_modules/babel-loader/lib!./node_modules/vue-loader/lib/loaders/templateLoader.js??ref--6!./node_modules/cache-loader/dist/cjs.js??ref--1-0!./node_modules/vue-loader/lib??vue-loader-options!./src/components/tables/ToggleTableColumn.vue?vue&type=template&id=6de6ba9d&
16400
+ // CONCATENATED MODULE: ./node_modules/cache-loader/dist/cjs.js?{"cacheDirectory":"node_modules/.cache/vue-loader","cacheIdentifier":"041c37bc-vue-loader-template"}!./node_modules/cache-loader/dist/cjs.js??ref--13-0!./node_modules/thread-loader/dist/cjs.js!./node_modules/babel-loader/lib!./node_modules/vue-loader/lib/loaders/templateLoader.js??ref--6!./node_modules/cache-loader/dist/cjs.js??ref--1-0!./node_modules/vue-loader/lib??vue-loader-options!./src/components/tables/ToggleTableColumn.vue?vue&type=template&id=6de6ba9d&
16627
16401
  var ToggleTableColumnvue_type_template_id_6de6ba9d_render = function render() {
16628
16402
  var _vm = this,
16629
- _c = _vm._self._c;
16630
-
16403
+ _c = _vm._self._c;
16631
16404
  return _c('td', {
16632
16405
  staticClass: "toggle-tablee-td"
16633
16406
  }, [_vm._t("default")], 2);
16634
16407
  };
16635
-
16636
16408
  var ToggleTableColumnvue_type_template_id_6de6ba9d_staticRenderFns = [];
16637
16409
 
16638
16410
  // CONCATENATED MODULE: ./src/components/tables/ToggleTableColumn.vue?vue&type=template&id=6de6ba9d&
@@ -16656,11 +16428,10 @@ var ToggleTableColumn_component = normalizeComponent(
16656
16428
  )
16657
16429
 
16658
16430
  /* harmony default export */ var ToggleTableColumn = (ToggleTableColumn_component.exports);
16659
- // CONCATENATED MODULE: ./node_modules/cache-loader/dist/cjs.js?{"cacheDirectory":"node_modules/.cache/vue-loader","cacheIdentifier":"7b4cc503-vue-loader-template"}!./node_modules/cache-loader/dist/cjs.js??ref--13-0!./node_modules/thread-loader/dist/cjs.js!./node_modules/babel-loader/lib!./node_modules/vue-loader/lib/loaders/templateLoader.js??ref--6!./node_modules/cache-loader/dist/cjs.js??ref--1-0!./node_modules/vue-loader/lib??vue-loader-options!./src/components/tables/TogglePagination.vue?vue&type=template&id=36fed3cc&
16431
+ // CONCATENATED MODULE: ./node_modules/cache-loader/dist/cjs.js?{"cacheDirectory":"node_modules/.cache/vue-loader","cacheIdentifier":"041c37bc-vue-loader-template"}!./node_modules/cache-loader/dist/cjs.js??ref--13-0!./node_modules/thread-loader/dist/cjs.js!./node_modules/babel-loader/lib!./node_modules/vue-loader/lib/loaders/templateLoader.js??ref--6!./node_modules/cache-loader/dist/cjs.js??ref--1-0!./node_modules/vue-loader/lib??vue-loader-options!./src/components/tables/TogglePagination.vue?vue&type=template&id=36fed3cc&
16660
16432
  var TogglePaginationvue_type_template_id_36fed3cc_render = function render() {
16661
16433
  var _vm = this,
16662
- _c = _vm._self._c;
16663
-
16434
+ _c = _vm._self._c;
16664
16435
  return _c('div', {
16665
16436
  staticClass: "toggle-pagination"
16666
16437
  }, [_c('ul', [_c('li', [_c('button', {
@@ -16698,7 +16469,6 @@ var TogglePaginationvue_type_template_id_36fed3cc_render = function render() {
16698
16469
  }
16699
16470
  }, [_vm._v(" Next ")])])], 2)]);
16700
16471
  };
16701
-
16702
16472
  var TogglePaginationvue_type_template_id_36fed3cc_staticRenderFns = [];
16703
16473
 
16704
16474
  // CONCATENATED MODULE: ./src/components/tables/TogglePagination.vue?vue&type=template&id=36fed3cc&
@@ -16711,9 +16481,9 @@ var TogglePaginationvue_type_template_id_36fed3cc_staticRenderFns = [];
16711
16481
  data: function () {
16712
16482
  return {
16713
16483
  maxPaginationPages: 6 // number of pagination numbers on a page
16714
-
16715
16484
  };
16716
16485
  },
16486
+
16717
16487
  computed: {
16718
16488
  pageNumber: {
16719
16489
  get: function () {
@@ -16723,41 +16493,40 @@ var TogglePaginationvue_type_template_id_36fed3cc_staticRenderFns = [];
16723
16493
  this.$emit('input', newVal);
16724
16494
  }
16725
16495
  },
16726
-
16727
16496
  /* Page Count
16728
16497
  * Calculate how many pages the orders object have.
16729
16498
  * @return number of pages
16730
16499
  */
16731
16500
  pageCount() {
16732
16501
  let l = this.total,
16733
- s = this.per_page;
16502
+ s = this.per_page;
16734
16503
  return Math.ceil(l / s) ? Math.ceil(l / s) : 0;
16735
16504
  },
16736
-
16737
16505
  /* returns the numbers shown in the validation
16738
16506
  */
16507
+
16739
16508
  pagiPages() {
16740
16509
  var startarray = [];
16741
- var endarray = []; // show all pages
16510
+ var endarray = [];
16742
16511
 
16512
+ // show all pages
16743
16513
  if (this.pageCount <= this.maxPaginationPages) {
16744
16514
  while (startarray.length < this.maxPaginationPages && startarray.length < this.pageCount) startarray.push(startarray.length + 1);
16745
16515
  } else {
16746
16516
  // if there are too many pages, we need to remove some options
16747
16517
  // create the first pages
16748
- while (startarray.length < this.maxPaginationPages / 2 - 1) startarray.push(startarray.length + 1); // create the last pages
16749
-
16750
-
16751
- while (startarray.length + endarray.length + 1 <= this.maxPaginationPages) endarray.push(this.pageCount - this.maxPaginationPages + 1 + (startarray.length + endarray.length)); // add the current page to the array, if it doesn't exist
16518
+ while (startarray.length < this.maxPaginationPages / 2 - 1) startarray.push(startarray.length + 1);
16752
16519
 
16520
+ // create the last pages
16521
+ while (startarray.length + endarray.length + 1 <= this.maxPaginationPages) endarray.push(this.pageCount - this.maxPaginationPages + 1 + (startarray.length + endarray.length));
16753
16522
 
16523
+ // add the current page to the array, if it doesn't exist
16754
16524
  if (!(startarray.includes(this.pageNumber) || endarray.includes(this.pageNumber))) startarray.push(this.pageNumber);
16755
- } // merge the two arrays into one
16756
-
16525
+ }
16757
16526
 
16527
+ // merge the two arrays into one
16758
16528
  return startarray.concat(endarray);
16759
16529
  }
16760
-
16761
16530
  }
16762
16531
  });
16763
16532
  // CONCATENATED MODULE: ./src/components/tables/TogglePagination.vue?vue&type=script&lang=js&
@@ -16830,7 +16599,6 @@ var TogglePagination_component = normalizeComponent(
16830
16599
  search_value: this.searchModels[field.key]
16831
16600
  }));
16832
16601
  },
16833
-
16834
16602
  pagenumber: {
16835
16603
  get: function () {
16836
16604
  return this.page;
@@ -16839,31 +16607,24 @@ var TogglePagination_component = normalizeComponent(
16839
16607
  this.$emit('page_change', newVal);
16840
16608
  }
16841
16609
  },
16842
-
16843
16610
  headers() {
16844
16611
  if (!this.fields) {
16845
16612
  return Object.keys(this.items[0]);
16846
16613
  }
16847
-
16848
16614
  return this.fields;
16849
16615
  },
16850
-
16851
16616
  searchActive() {
16852
16617
  if (this.editingInput) {
16853
16618
  return true;
16854
16619
  }
16855
-
16856
16620
  for (let col in this.searchModels) {
16857
16621
  if (!this.searchModels[col]) return false;
16858
-
16859
16622
  if (this.searchModels[col].start !== undefined) {
16860
16623
  return true;
16861
16624
  } else if (this.searchModels[col]) return true;
16862
16625
  }
16863
-
16864
16626
  return false;
16865
16627
  }
16866
-
16867
16628
  },
16868
16629
  created: function () {
16869
16630
  if (this.fields) {
@@ -16871,15 +16632,14 @@ var TogglePagination_component = normalizeComponent(
16871
16632
  let value = this.fields[i].type == 'date' ? this.setInitialDate(i) : this.fields[i].value;
16872
16633
  let field_name = this.fields[i].key;
16873
16634
  this.$set(this.searchModels, field_name, value);
16874
-
16875
16635
  if (value) {
16876
16636
  // if date has an initial value set, show it.
16877
16637
  if (typeof value.start !== 'undefined') {
16878
16638
  if (value.start.length) this.activateSearch(this.fields[i]);
16879
- } // show the other fields with initial values set.
16639
+ }
16640
+ // show the other fields with initial values set.
16880
16641
  else this.activateSearch(this.fields[i]);
16881
16642
  }
16882
-
16883
16643
  this.searchChange();
16884
16644
  }
16885
16645
  }
@@ -16900,15 +16660,12 @@ var TogglePagination_component = normalizeComponent(
16900
16660
  end: false
16901
16661
  };
16902
16662
  },
16903
-
16904
16663
  tableSearchActive(field) {
16905
16664
  if (field.type == 'date') {
16906
16665
  return this.searchModels[field.key].start || this.searchModels[field.key].end || this.editingInput == field.key;
16907
16666
  }
16908
-
16909
16667
  return this.searchModels[field.key] || this.editingInput == field.key;
16910
16668
  },
16911
-
16912
16669
  closeSearch(field) {
16913
16670
  this.editingInput = false;
16914
16671
  this.searchModels[field.key] = field.type == 'date' ? {
@@ -16917,24 +16674,20 @@ var TogglePagination_component = normalizeComponent(
16917
16674
  } : '';
16918
16675
  this.searchChange();
16919
16676
  },
16920
-
16921
16677
  searchChange() {
16922
16678
  this.$emit('search', this.fieldsWithSearch);
16923
16679
  },
16924
-
16925
16680
  /* activateSearch
16926
16681
  * When a user clicks a searchable column name, show it as active, and focus the child input field (unless it's already active)
16927
16682
  */
16928
16683
  activateSearch(field) {
16929
16684
  if (!field.filterable) return;
16930
-
16931
16685
  if (field.type === 'date') {
16932
16686
  this.datePickerOpen = true;
16933
16687
  }
16934
-
16935
- this.editingInput = field.key; //this.$nextTick(() => this.$refs[this.editingInput + '-input'].focus())
16688
+ this.editingInput = field.key;
16689
+ //this.$nextTick(() => this.$refs[this.editingInput + '-input'].focus())
16936
16690
  }
16937
-
16938
16691
  }
16939
16692
  });
16940
16693
  // CONCATENATED MODULE: ./src/components/tables/ToggleTable.vue?vue&type=script&lang=js&
@@ -16959,16 +16712,14 @@ var ToggleTable_component = normalizeComponent(
16959
16712
  )
16960
16713
 
16961
16714
  /* harmony default export */ var ToggleTable = (ToggleTable_component.exports);
16962
- // CONCATENATED MODULE: ./node_modules/cache-loader/dist/cjs.js?{"cacheDirectory":"node_modules/.cache/vue-loader","cacheIdentifier":"7b4cc503-vue-loader-template"}!./node_modules/cache-loader/dist/cjs.js??ref--13-0!./node_modules/thread-loader/dist/cjs.js!./node_modules/babel-loader/lib!./node_modules/vue-loader/lib/loaders/templateLoader.js??ref--6!./node_modules/cache-loader/dist/cjs.js??ref--1-0!./node_modules/vue-loader/lib??vue-loader-options!./src/components/badges/ToggleBadge.vue?vue&type=template&id=7aacd399&
16715
+ // CONCATENATED MODULE: ./node_modules/cache-loader/dist/cjs.js?{"cacheDirectory":"node_modules/.cache/vue-loader","cacheIdentifier":"041c37bc-vue-loader-template"}!./node_modules/cache-loader/dist/cjs.js??ref--13-0!./node_modules/thread-loader/dist/cjs.js!./node_modules/babel-loader/lib!./node_modules/vue-loader/lib/loaders/templateLoader.js??ref--6!./node_modules/cache-loader/dist/cjs.js??ref--1-0!./node_modules/vue-loader/lib??vue-loader-options!./src/components/badges/ToggleBadge.vue?vue&type=template&id=7aacd399&
16963
16716
  var ToggleBadgevue_type_template_id_7aacd399_render = function render() {
16964
16717
  var _vm = this,
16965
- _c = _vm._self._c;
16966
-
16718
+ _c = _vm._self._c;
16967
16719
  return _c('span', {
16968
16720
  class: ['toggle-badge', _vm.badgeStyle]
16969
16721
  }, [_vm._t("default")], 2);
16970
16722
  };
16971
-
16972
16723
  var ToggleBadgevue_type_template_id_7aacd399_staticRenderFns = [];
16973
16724
 
16974
16725
  // CONCATENATED MODULE: ./src/components/badges/ToggleBadge.vue?vue&type=template&id=7aacd399&
@@ -17010,11 +16761,10 @@ var ToggleBadge_component = normalizeComponent(
17010
16761
  )
17011
16762
 
17012
16763
  /* harmony default export */ var ToggleBadge = (ToggleBadge_component.exports);
17013
- // CONCATENATED MODULE: ./node_modules/cache-loader/dist/cjs.js?{"cacheDirectory":"node_modules/.cache/vue-loader","cacheIdentifier":"7b4cc503-vue-loader-template"}!./node_modules/cache-loader/dist/cjs.js??ref--13-0!./node_modules/thread-loader/dist/cjs.js!./node_modules/babel-loader/lib!./node_modules/vue-loader/lib/loaders/templateLoader.js??ref--6!./node_modules/cache-loader/dist/cjs.js??ref--1-0!./node_modules/vue-loader/lib??vue-loader-options!./src/components/breadcrumb/ToggleBreadCrumb.vue?vue&type=template&id=b829739a&
16764
+ // CONCATENATED MODULE: ./node_modules/cache-loader/dist/cjs.js?{"cacheDirectory":"node_modules/.cache/vue-loader","cacheIdentifier":"041c37bc-vue-loader-template"}!./node_modules/cache-loader/dist/cjs.js??ref--13-0!./node_modules/thread-loader/dist/cjs.js!./node_modules/babel-loader/lib!./node_modules/vue-loader/lib/loaders/templateLoader.js??ref--6!./node_modules/cache-loader/dist/cjs.js??ref--1-0!./node_modules/vue-loader/lib??vue-loader-options!./src/components/breadcrumb/ToggleBreadCrumb.vue?vue&type=template&id=b829739a&
17014
16765
  var ToggleBreadCrumbvue_type_template_id_b829739a_render = function render() {
17015
16766
  var _vm = this,
17016
- _c = _vm._self._c;
17017
-
16767
+ _c = _vm._self._c;
17018
16768
  return _vm.breadcrumb_computed ? _c('div', {
17019
16769
  staticClass: "toggle-breadcrumb"
17020
16770
  }, _vm._l(_vm.breadcrumb_computed, function (crumb, index) {
@@ -17041,7 +16791,6 @@ var ToggleBreadCrumbvue_type_template_id_b829739a_render = function render() {
17041
16791
  }, [_vm._v(_vm._s(crumb.name))]) : _vm._e()], 1);
17042
16792
  }), 0) : _vm._e();
17043
16793
  };
17044
-
17045
16794
  var ToggleBreadCrumbvue_type_template_id_b829739a_staticRenderFns = [];
17046
16795
 
17047
16796
  // CONCATENATED MODULE: ./src/components/breadcrumb/ToggleBreadCrumb.vue?vue&type=template&id=b829739a&
@@ -17066,7 +16815,6 @@ var ToggleBreadCrumbvue_type_template_id_b829739a_staticRenderFns = [];
17066
16815
  breadcrumb_computed() {
17067
16816
  return this.isNuxt ? this.breadcrumb : this.$route.meta.breadcrumb;
17068
16817
  }
17069
-
17070
16818
  }
17071
16819
  });
17072
16820
  // CONCATENATED MODULE: ./src/components/breadcrumb/ToggleBreadCrumb.vue?vue&type=script&lang=js&
@@ -17091,11 +16839,10 @@ var ToggleBreadCrumb_component = normalizeComponent(
17091
16839
  )
17092
16840
 
17093
16841
  /* harmony default export */ var ToggleBreadCrumb = (ToggleBreadCrumb_component.exports);
17094
- // CONCATENATED MODULE: ./node_modules/cache-loader/dist/cjs.js?{"cacheDirectory":"node_modules/.cache/vue-loader","cacheIdentifier":"7b4cc503-vue-loader-template"}!./node_modules/cache-loader/dist/cjs.js??ref--13-0!./node_modules/thread-loader/dist/cjs.js!./node_modules/babel-loader/lib!./node_modules/vue-loader/lib/loaders/templateLoader.js??ref--6!./node_modules/cache-loader/dist/cjs.js??ref--1-0!./node_modules/vue-loader/lib??vue-loader-options!./src/components/navs/sidenav/ToggleSideNavItem.vue?vue&type=template&id=35f39f46&
16842
+ // CONCATENATED MODULE: ./node_modules/cache-loader/dist/cjs.js?{"cacheDirectory":"node_modules/.cache/vue-loader","cacheIdentifier":"041c37bc-vue-loader-template"}!./node_modules/cache-loader/dist/cjs.js??ref--13-0!./node_modules/thread-loader/dist/cjs.js!./node_modules/babel-loader/lib!./node_modules/vue-loader/lib/loaders/templateLoader.js??ref--6!./node_modules/cache-loader/dist/cjs.js??ref--1-0!./node_modules/vue-loader/lib??vue-loader-options!./src/components/navs/sidenav/ToggleSideNavItem.vue?vue&type=template&id=35f39f46&
17095
16843
  var ToggleSideNavItemvue_type_template_id_35f39f46_render = function render() {
17096
16844
  var _vm = this,
17097
- _c = _vm._self._c;
17098
-
16845
+ _c = _vm._self._c;
17099
16846
  return _c('li', {
17100
16847
  class: ['toggle-sidenav-item', _vm.icon, {
17101
16848
  'active': _vm.active,
@@ -17103,7 +16850,6 @@ var ToggleSideNavItemvue_type_template_id_35f39f46_render = function render() {
17103
16850
  }]
17104
16851
  }, [_vm._t("item"), _vm._t("sub-nav")], 2);
17105
16852
  };
17106
-
17107
16853
  var ToggleSideNavItemvue_type_template_id_35f39f46_staticRenderFns = [];
17108
16854
 
17109
16855
  // CONCATENATED MODULE: ./src/components/navs/sidenav/ToggleSideNavItem.vue?vue&type=template&id=35f39f46&
@@ -17119,7 +16865,6 @@ var ToggleSideNavItemvue_type_template_id_35f39f46_staticRenderFns = [];
17119
16865
  type: Boolean,
17120
16866
  default: false
17121
16867
  },
17122
-
17123
16868
  /**
17124
16869
  * Icon to use `toggle-graph-icon`, `toggle-orders-icon`, `toggle-card-icon`, `toggle-megaphone-icon`, `toggle-form-icon`
17125
16870
  */
@@ -17150,11 +16895,10 @@ var ToggleSideNavItem_component = normalizeComponent(
17150
16895
  )
17151
16896
 
17152
16897
  /* harmony default export */ var ToggleSideNavItem = (ToggleSideNavItem_component.exports);
17153
- // CONCATENATED MODULE: ./node_modules/cache-loader/dist/cjs.js?{"cacheDirectory":"node_modules/.cache/vue-loader","cacheIdentifier":"7b4cc503-vue-loader-template"}!./node_modules/cache-loader/dist/cjs.js??ref--13-0!./node_modules/thread-loader/dist/cjs.js!./node_modules/babel-loader/lib!./node_modules/vue-loader/lib/loaders/templateLoader.js??ref--6!./node_modules/cache-loader/dist/cjs.js??ref--1-0!./node_modules/vue-loader/lib??vue-loader-options!./src/components/navs/sidenav/ToggleSideNav.vue?vue&type=template&id=63256d5d&
16898
+ // CONCATENATED MODULE: ./node_modules/cache-loader/dist/cjs.js?{"cacheDirectory":"node_modules/.cache/vue-loader","cacheIdentifier":"041c37bc-vue-loader-template"}!./node_modules/cache-loader/dist/cjs.js??ref--13-0!./node_modules/thread-loader/dist/cjs.js!./node_modules/babel-loader/lib!./node_modules/vue-loader/lib/loaders/templateLoader.js??ref--6!./node_modules/cache-loader/dist/cjs.js??ref--1-0!./node_modules/vue-loader/lib??vue-loader-options!./src/components/navs/sidenav/ToggleSideNav.vue?vue&type=template&id=63256d5d&
17154
16899
  var ToggleSideNavvue_type_template_id_63256d5d_render = function render() {
17155
16900
  var _vm = this,
17156
- _c = _vm._self._c;
17157
-
16901
+ _c = _vm._self._c;
17158
16902
  return _c('nav', {
17159
16903
  staticClass: "toggle-sidenav-container"
17160
16904
  }, [_c('img', {
@@ -17169,7 +16913,6 @@ var ToggleSideNavvue_type_template_id_63256d5d_render = function render() {
17169
16913
  staticClass: "toggle-sidenav-ul"
17170
16914
  }, [_vm._t("default")], 2)], 1);
17171
16915
  };
17172
-
17173
16916
  var ToggleSideNavvue_type_template_id_63256d5d_staticRenderFns = [];
17174
16917
 
17175
16918
  // CONCATENATED MODULE: ./src/components/navs/sidenav/ToggleSideNav.vue?vue&type=template&id=63256d5d&
@@ -17186,7 +16929,6 @@ var ToggleSideNavvue_type_template_id_63256d5d_staticRenderFns = [];
17186
16929
  type: Object,
17187
16930
  required: true
17188
16931
  },
17189
-
17190
16932
  /**
17191
16933
  * The main title, displayed below logo
17192
16934
  */
@@ -17221,16 +16963,14 @@ var ToggleSideNav_component = normalizeComponent(
17221
16963
  )
17222
16964
 
17223
16965
  /* harmony default export */ var ToggleSideNav = (ToggleSideNav_component.exports);
17224
- // CONCATENATED MODULE: ./node_modules/cache-loader/dist/cjs.js?{"cacheDirectory":"node_modules/.cache/vue-loader","cacheIdentifier":"7b4cc503-vue-loader-template"}!./node_modules/cache-loader/dist/cjs.js??ref--13-0!./node_modules/thread-loader/dist/cjs.js!./node_modules/babel-loader/lib!./node_modules/vue-loader/lib/loaders/templateLoader.js??ref--6!./node_modules/cache-loader/dist/cjs.js??ref--1-0!./node_modules/vue-loader/lib??vue-loader-options!./src/components/navs/sidenav/ToggleSideSubNav.vue?vue&type=template&id=78a7c4f0&
16966
+ // CONCATENATED MODULE: ./node_modules/cache-loader/dist/cjs.js?{"cacheDirectory":"node_modules/.cache/vue-loader","cacheIdentifier":"041c37bc-vue-loader-template"}!./node_modules/cache-loader/dist/cjs.js??ref--13-0!./node_modules/thread-loader/dist/cjs.js!./node_modules/babel-loader/lib!./node_modules/vue-loader/lib/loaders/templateLoader.js??ref--6!./node_modules/cache-loader/dist/cjs.js??ref--1-0!./node_modules/vue-loader/lib??vue-loader-options!./src/components/navs/sidenav/ToggleSideSubNav.vue?vue&type=template&id=78a7c4f0&
17225
16967
  var ToggleSideSubNavvue_type_template_id_78a7c4f0_render = function render() {
17226
16968
  var _vm = this,
17227
- _c = _vm._self._c;
17228
-
16969
+ _c = _vm._self._c;
17229
16970
  return _vm.expanded ? _c('ul', {
17230
16971
  staticClass: "toggle-sidenav-sub-ul"
17231
16972
  }, [_vm._t("default")], 2) : _vm._e();
17232
16973
  };
17233
-
17234
16974
  var ToggleSideSubNavvue_type_template_id_78a7c4f0_staticRenderFns = [];
17235
16975
 
17236
16976
  // CONCATENATED MODULE: ./src/components/navs/sidenav/ToggleSideSubNav.vue?vue&type=template&id=78a7c4f0&
@@ -17270,11 +17010,10 @@ var ToggleSideSubNav_component = normalizeComponent(
17270
17010
  )
17271
17011
 
17272
17012
  /* harmony default export */ var ToggleSideSubNav = (ToggleSideSubNav_component.exports);
17273
- // CONCATENATED MODULE: ./node_modules/cache-loader/dist/cjs.js?{"cacheDirectory":"node_modules/.cache/vue-loader","cacheIdentifier":"7b4cc503-vue-loader-template"}!./node_modules/cache-loader/dist/cjs.js??ref--13-0!./node_modules/thread-loader/dist/cjs.js!./node_modules/babel-loader/lib!./node_modules/vue-loader/lib/loaders/templateLoader.js??ref--6!./node_modules/cache-loader/dist/cjs.js??ref--1-0!./node_modules/vue-loader/lib??vue-loader-options!./src/components/navs/multitiersidenav/ToggleMultiTierSideNav.vue?vue&type=template&id=4850f9eb&
17013
+ // CONCATENATED MODULE: ./node_modules/cache-loader/dist/cjs.js?{"cacheDirectory":"node_modules/.cache/vue-loader","cacheIdentifier":"041c37bc-vue-loader-template"}!./node_modules/cache-loader/dist/cjs.js??ref--13-0!./node_modules/thread-loader/dist/cjs.js!./node_modules/babel-loader/lib!./node_modules/vue-loader/lib/loaders/templateLoader.js??ref--6!./node_modules/cache-loader/dist/cjs.js??ref--1-0!./node_modules/vue-loader/lib??vue-loader-options!./src/components/navs/multitiersidenav/ToggleMultiTierSideNav.vue?vue&type=template&id=4850f9eb&
17274
17014
  var ToggleMultiTierSideNavvue_type_template_id_4850f9eb_render = function render() {
17275
17015
  var _vm = this,
17276
- _c = _vm._self._c;
17277
-
17016
+ _c = _vm._self._c;
17278
17017
  return _c('nav', {
17279
17018
  staticClass: "toggle-multi-tier-sidenav-container"
17280
17019
  }, [_c('img', {
@@ -17324,7 +17063,6 @@ var ToggleMultiTierSideNavvue_type_template_id_4850f9eb_render = function render
17324
17063
  }
17325
17064
  })], 1);
17326
17065
  };
17327
-
17328
17066
  var ToggleMultiTierSideNavvue_type_template_id_4850f9eb_staticRenderFns = [];
17329
17067
 
17330
17068
  // CONCATENATED MODULE: ./src/components/navs/multitiersidenav/ToggleMultiTierSideNav.vue?vue&type=template&id=4850f9eb&
@@ -17334,16 +17072,13 @@ var ToggleMultiTierSideNavvue_type_template_id_4850f9eb_staticRenderFns = [];
17334
17072
 
17335
17073
  /* harmony default export */ var ToggleMultiTierSideNavvue_type_script_lang_js_ = ({
17336
17074
  name: 'ToggleMultiTierSideNav',
17337
-
17338
17075
  data() {
17339
17076
  return {
17340
17077
  userMenuOpen: false
17341
17078
  };
17342
17079
  },
17343
-
17344
17080
  props: {
17345
17081
  value: {},
17346
-
17347
17082
  /**
17348
17083
  * For the logo that is displayed at the top of the nav
17349
17084
  */
@@ -17351,7 +17086,6 @@ var ToggleMultiTierSideNavvue_type_template_id_4850f9eb_staticRenderFns = [];
17351
17086
  type: Object,
17352
17087
  required: true
17353
17088
  },
17354
-
17355
17089
  /**
17356
17090
  * The main title, displayed below logo
17357
17091
  */
@@ -17359,7 +17093,6 @@ var ToggleMultiTierSideNavvue_type_template_id_4850f9eb_staticRenderFns = [];
17359
17093
  type: String,
17360
17094
  default: 'Airship'
17361
17095
  },
17362
-
17363
17096
  /**
17364
17097
  * Name of the user, displayed in the user menu
17365
17098
  */
@@ -17409,11 +17142,10 @@ var ToggleMultiTierSideNav_component = normalizeComponent(
17409
17142
  )
17410
17143
 
17411
17144
  /* harmony default export */ var ToggleMultiTierSideNav = (ToggleMultiTierSideNav_component.exports);
17412
- // CONCATENATED MODULE: ./node_modules/cache-loader/dist/cjs.js?{"cacheDirectory":"node_modules/.cache/vue-loader","cacheIdentifier":"7b4cc503-vue-loader-template"}!./node_modules/cache-loader/dist/cjs.js??ref--13-0!./node_modules/thread-loader/dist/cjs.js!./node_modules/babel-loader/lib!./node_modules/vue-loader/lib/loaders/templateLoader.js??ref--6!./node_modules/cache-loader/dist/cjs.js??ref--1-0!./node_modules/vue-loader/lib??vue-loader-options!./src/components/navs/multitiersidenav/ToggleMultiTierSideNavItem.vue?vue&type=template&id=30f86f6f&
17145
+ // CONCATENATED MODULE: ./node_modules/cache-loader/dist/cjs.js?{"cacheDirectory":"node_modules/.cache/vue-loader","cacheIdentifier":"041c37bc-vue-loader-template"}!./node_modules/cache-loader/dist/cjs.js??ref--13-0!./node_modules/thread-loader/dist/cjs.js!./node_modules/babel-loader/lib!./node_modules/vue-loader/lib/loaders/templateLoader.js??ref--6!./node_modules/cache-loader/dist/cjs.js??ref--1-0!./node_modules/vue-loader/lib??vue-loader-options!./src/components/navs/multitiersidenav/ToggleMultiTierSideNavItem.vue?vue&type=template&id=30f86f6f&
17413
17146
  var ToggleMultiTierSideNavItemvue_type_template_id_30f86f6f_render = function render() {
17414
17147
  var _vm = this,
17415
- _c = _vm._self._c;
17416
-
17148
+ _c = _vm._self._c;
17417
17149
  return _c('li', {
17418
17150
  class: ['toggle-multi-tier-sidenav-item', _vm.icon, {
17419
17151
  'active': _vm.active,
@@ -17422,7 +17154,6 @@ var ToggleMultiTierSideNavItemvue_type_template_id_30f86f6f_render = function re
17422
17154
  }]
17423
17155
  }, [_vm._t("item"), _vm._t("sub-nav")], 2);
17424
17156
  };
17425
-
17426
17157
  var ToggleMultiTierSideNavItemvue_type_template_id_30f86f6f_staticRenderFns = [];
17427
17158
 
17428
17159
  // CONCATENATED MODULE: ./src/components/navs/multitiersidenav/ToggleMultiTierSideNavItem.vue?vue&type=template&id=30f86f6f&
@@ -17438,14 +17169,12 @@ var ToggleMultiTierSideNavItemvue_type_template_id_30f86f6f_staticRenderFns = []
17438
17169
  type: Boolean,
17439
17170
  default: false
17440
17171
  },
17441
-
17442
17172
  /**
17443
17173
  * Icon to use `toggle-graph-icon`, `toggle-orders-icon`, `toggle-card-icon`, `toggle-megaphone-icon`, `toggle-form-icon`
17444
17174
  */
17445
17175
  icon: {
17446
17176
  type: String
17447
17177
  },
17448
-
17449
17178
  /**
17450
17179
  * Set whether the arrow displays, e.g only for items with sub navs
17451
17180
  */
@@ -17477,11 +17206,10 @@ var ToggleMultiTierSideNavItem_component = normalizeComponent(
17477
17206
  )
17478
17207
 
17479
17208
  /* harmony default export */ var ToggleMultiTierSideNavItem = (ToggleMultiTierSideNavItem_component.exports);
17480
- // CONCATENATED MODULE: ./node_modules/cache-loader/dist/cjs.js?{"cacheDirectory":"node_modules/.cache/vue-loader","cacheIdentifier":"7b4cc503-vue-loader-template"}!./node_modules/cache-loader/dist/cjs.js??ref--13-0!./node_modules/thread-loader/dist/cjs.js!./node_modules/babel-loader/lib!./node_modules/vue-loader/lib/loaders/templateLoader.js??ref--6!./node_modules/cache-loader/dist/cjs.js??ref--1-0!./node_modules/vue-loader/lib??vue-loader-options!./src/components/navs/multitiersidenav/ToggleMultiTierSideSubNav.vue?vue&type=template&id=1dfe3f51&
17209
+ // CONCATENATED MODULE: ./node_modules/cache-loader/dist/cjs.js?{"cacheDirectory":"node_modules/.cache/vue-loader","cacheIdentifier":"041c37bc-vue-loader-template"}!./node_modules/cache-loader/dist/cjs.js??ref--13-0!./node_modules/thread-loader/dist/cjs.js!./node_modules/babel-loader/lib!./node_modules/vue-loader/lib/loaders/templateLoader.js??ref--6!./node_modules/cache-loader/dist/cjs.js??ref--1-0!./node_modules/vue-loader/lib??vue-loader-options!./src/components/navs/multitiersidenav/ToggleMultiTierSideSubNav.vue?vue&type=template&id=1dfe3f51&
17481
17210
  var ToggleMultiTierSideSubNavvue_type_template_id_1dfe3f51_render = function render() {
17482
17211
  var _vm = this,
17483
- _c = _vm._self._c;
17484
-
17212
+ _c = _vm._self._c;
17485
17213
  return _c('Transition', {
17486
17214
  attrs: {
17487
17215
  "name": "drop-down"
@@ -17490,7 +17218,6 @@ var ToggleMultiTierSideSubNavvue_type_template_id_1dfe3f51_render = function ren
17490
17218
  staticClass: "toggle-multi-tier-sidenav-sub-ul"
17491
17219
  }, [_vm._t("default")], 2) : _vm._e()]);
17492
17220
  };
17493
-
17494
17221
  var ToggleMultiTierSideSubNavvue_type_template_id_1dfe3f51_staticRenderFns = [];
17495
17222
 
17496
17223
  // CONCATENATED MODULE: ./src/components/navs/multitiersidenav/ToggleMultiTierSideSubNav.vue?vue&type=template&id=1dfe3f51&
@@ -17530,11 +17257,10 @@ var ToggleMultiTierSideSubNav_component = normalizeComponent(
17530
17257
  )
17531
17258
 
17532
17259
  /* harmony default export */ var ToggleMultiTierSideSubNav = (ToggleMultiTierSideSubNav_component.exports);
17533
- // CONCATENATED MODULE: ./node_modules/cache-loader/dist/cjs.js?{"cacheDirectory":"node_modules/.cache/vue-loader","cacheIdentifier":"7b4cc503-vue-loader-template"}!./node_modules/cache-loader/dist/cjs.js??ref--13-0!./node_modules/thread-loader/dist/cjs.js!./node_modules/babel-loader/lib!./node_modules/vue-loader/lib/loaders/templateLoader.js??ref--6!./node_modules/cache-loader/dist/cjs.js??ref--1-0!./node_modules/vue-loader/lib??vue-loader-options!./src/components/text/ToggleTextClipboardCopy.vue?vue&type=template&id=478c65bc&
17534
- var ToggleTextClipboardCopyvue_type_template_id_478c65bc_render = function render() {
17260
+ // CONCATENATED MODULE: ./node_modules/cache-loader/dist/cjs.js?{"cacheDirectory":"node_modules/.cache/vue-loader","cacheIdentifier":"041c37bc-vue-loader-template"}!./node_modules/cache-loader/dist/cjs.js??ref--13-0!./node_modules/thread-loader/dist/cjs.js!./node_modules/babel-loader/lib!./node_modules/vue-loader/lib/loaders/templateLoader.js??ref--6!./node_modules/cache-loader/dist/cjs.js??ref--1-0!./node_modules/vue-loader/lib??vue-loader-options!./src/components/text/ToggleTextClipboardCopy.vue?vue&type=template&id=3854b888&
17261
+ var ToggleTextClipboardCopyvue_type_template_id_3854b888_render = function render() {
17535
17262
  var _vm = this,
17536
- _c = _vm._self._c;
17537
-
17263
+ _c = _vm._self._c;
17538
17264
  return _c('div', {
17539
17265
  staticClass: "toggle-copy-text"
17540
17266
  }, [_c('p', {
@@ -17552,10 +17278,9 @@ var ToggleTextClipboardCopyvue_type_template_id_478c65bc_render = function rende
17552
17278
  staticClass: "product-link-icon"
17553
17279
  })])]);
17554
17280
  };
17281
+ var ToggleTextClipboardCopyvue_type_template_id_3854b888_staticRenderFns = [];
17555
17282
 
17556
- var ToggleTextClipboardCopyvue_type_template_id_478c65bc_staticRenderFns = [];
17557
-
17558
- // CONCATENATED MODULE: ./src/components/text/ToggleTextClipboardCopy.vue?vue&type=template&id=478c65bc&
17283
+ // CONCATENATED MODULE: ./src/components/text/ToggleTextClipboardCopy.vue?vue&type=template&id=3854b888&
17559
17284
 
17560
17285
  // CONCATENATED MODULE: ./node_modules/cache-loader/dist/cjs.js??ref--13-0!./node_modules/thread-loader/dist/cjs.js!./node_modules/babel-loader/lib!./node_modules/cache-loader/dist/cjs.js??ref--1-0!./node_modules/vue-loader/lib??vue-loader-options!./src/components/text/ToggleTextClipboardCopy.vue?vue&type=script&lang=js&
17561
17286
  /* harmony default export */ var ToggleTextClipboardCopyvue_type_script_lang_js_ = ({
@@ -17565,14 +17290,12 @@ var ToggleTextClipboardCopyvue_type_template_id_478c65bc_staticRenderFns = [];
17565
17290
  type: String,
17566
17291
  default: '15px'
17567
17292
  },
17568
-
17569
17293
  /**
17570
17294
  * For the text you would like to display
17571
17295
  */
17572
17296
  copy: {
17573
17297
  type: String
17574
17298
  },
17575
-
17576
17299
  /**
17577
17300
  * The string used in link
17578
17301
  */
@@ -17580,7 +17303,6 @@ var ToggleTextClipboardCopyvue_type_template_id_478c65bc_staticRenderFns = [];
17580
17303
  type: String,
17581
17304
  required: true
17582
17305
  },
17583
-
17584
17306
  /**
17585
17307
  * The url for the link
17586
17308
  */
@@ -17596,8 +17318,16 @@ var ToggleTextClipboardCopyvue_type_template_id_478c65bc_staticRenderFns = [];
17596
17318
  window.getSelection().removeAllRanges();
17597
17319
  window.getSelection().addRange(range);
17598
17320
  document.execCommand("copy");
17321
+ this.click();
17322
+ },
17323
+ click() {
17324
+ /**
17325
+ * Emitted when the button is clicked.
17326
+ * @event click
17327
+ * @type {Event}
17328
+ */
17329
+ this.$emit('click');
17599
17330
  }
17600
-
17601
17331
  }
17602
17332
  });
17603
17333
  // CONCATENATED MODULE: ./src/components/text/ToggleTextClipboardCopy.vue?vue&type=script&lang=js&
@@ -17612,8 +17342,8 @@ var ToggleTextClipboardCopyvue_type_template_id_478c65bc_staticRenderFns = [];
17612
17342
 
17613
17343
  var ToggleTextClipboardCopy_component = normalizeComponent(
17614
17344
  text_ToggleTextClipboardCopyvue_type_script_lang_js_,
17615
- ToggleTextClipboardCopyvue_type_template_id_478c65bc_render,
17616
- ToggleTextClipboardCopyvue_type_template_id_478c65bc_staticRenderFns,
17345
+ ToggleTextClipboardCopyvue_type_template_id_3854b888_render,
17346
+ ToggleTextClipboardCopyvue_type_template_id_3854b888_staticRenderFns,
17617
17347
  false,
17618
17348
  null,
17619
17349
  null,
@@ -17622,22 +17352,19 @@ var ToggleTextClipboardCopy_component = normalizeComponent(
17622
17352
  )
17623
17353
 
17624
17354
  /* harmony default export */ var ToggleTextClipboardCopy = (ToggleTextClipboardCopy_component.exports);
17625
- // CONCATENATED MODULE: ./node_modules/cache-loader/dist/cjs.js?{"cacheDirectory":"node_modules/.cache/vue-loader","cacheIdentifier":"7b4cc503-vue-loader-template"}!./node_modules/cache-loader/dist/cjs.js??ref--13-0!./node_modules/thread-loader/dist/cjs.js!./node_modules/babel-loader/lib!./node_modules/vue-loader/lib/loaders/templateLoader.js??ref--6!./node_modules/cache-loader/dist/cjs.js??ref--1-0!./node_modules/vue-loader/lib??vue-loader-options!./src/components/elements/ToggleLineBreak.vue?vue&type=template&id=5db9229a&
17355
+ // CONCATENATED MODULE: ./node_modules/cache-loader/dist/cjs.js?{"cacheDirectory":"node_modules/.cache/vue-loader","cacheIdentifier":"041c37bc-vue-loader-template"}!./node_modules/cache-loader/dist/cjs.js??ref--13-0!./node_modules/thread-loader/dist/cjs.js!./node_modules/babel-loader/lib!./node_modules/vue-loader/lib/loaders/templateLoader.js??ref--6!./node_modules/cache-loader/dist/cjs.js??ref--1-0!./node_modules/vue-loader/lib??vue-loader-options!./src/components/elements/ToggleLineBreak.vue?vue&type=template&id=5db9229a&
17626
17356
  var ToggleLineBreakvue_type_template_id_5db9229a_render = function render() {
17627
17357
  var _vm = this,
17628
- _c = _vm._self._c;
17629
-
17358
+ _c = _vm._self._c;
17630
17359
  return _c('hr', {
17631
17360
  class: _vm.classes
17632
17361
  });
17633
17362
  };
17634
-
17635
17363
  var ToggleLineBreakvue_type_template_id_5db9229a_staticRenderFns = [];
17636
17364
 
17637
17365
  // CONCATENATED MODULE: ./src/components/elements/ToggleLineBreak.vue?vue&type=template&id=5db9229a&
17638
17366
 
17639
17367
  // CONCATENATED MODULE: ./node_modules/cache-loader/dist/cjs.js??ref--13-0!./node_modules/thread-loader/dist/cjs.js!./node_modules/babel-loader/lib!./node_modules/cache-loader/dist/cjs.js??ref--1-0!./node_modules/vue-loader/lib??vue-loader-options!./src/components/elements/ToggleLineBreak.vue?vue&type=script&lang=js&
17640
-
17641
17368
  /* harmony default export */ var ToggleLineBreakvue_type_script_lang_js_ = ({
17642
17369
  name: "LineBreak",
17643
17370
  props: {
@@ -17654,7 +17381,6 @@ var ToggleLineBreakvue_type_template_id_5db9229a_staticRenderFns = [];
17654
17381
  'toggle-line-break-grey': this.colour == 'grey'
17655
17382
  };
17656
17383
  }
17657
-
17658
17384
  }
17659
17385
  });
17660
17386
  // CONCATENATED MODULE: ./src/components/elements/ToggleLineBreak.vue?vue&type=script&lang=js&
@@ -17679,11 +17405,10 @@ var ToggleLineBreak_component = normalizeComponent(
17679
17405
  )
17680
17406
 
17681
17407
  /* harmony default export */ var ToggleLineBreak = (ToggleLineBreak_component.exports);
17682
- // CONCATENATED MODULE: ./node_modules/cache-loader/dist/cjs.js?{"cacheDirectory":"node_modules/.cache/vue-loader","cacheIdentifier":"7b4cc503-vue-loader-template"}!./node_modules/cache-loader/dist/cjs.js??ref--13-0!./node_modules/thread-loader/dist/cjs.js!./node_modules/babel-loader/lib!./node_modules/vue-loader/lib/loaders/templateLoader.js??ref--6!./node_modules/cache-loader/dist/cjs.js??ref--1-0!./node_modules/vue-loader/lib??vue-loader-options!./src/components/elements/ToggleSectionCollapse.vue?vue&type=template&id=28fe93af&
17408
+ // CONCATENATED MODULE: ./node_modules/cache-loader/dist/cjs.js?{"cacheDirectory":"node_modules/.cache/vue-loader","cacheIdentifier":"041c37bc-vue-loader-template"}!./node_modules/cache-loader/dist/cjs.js??ref--13-0!./node_modules/thread-loader/dist/cjs.js!./node_modules/babel-loader/lib!./node_modules/vue-loader/lib/loaders/templateLoader.js??ref--6!./node_modules/cache-loader/dist/cjs.js??ref--1-0!./node_modules/vue-loader/lib??vue-loader-options!./src/components/elements/ToggleSectionCollapse.vue?vue&type=template&id=28fe93af&
17683
17409
  var ToggleSectionCollapsevue_type_template_id_28fe93af_render = function render() {
17684
17410
  var _vm = this,
17685
- _c = _vm._self._c;
17686
-
17411
+ _c = _vm._self._c;
17687
17412
  return _c('div', {
17688
17413
  staticClass: "toggle-section-collapse"
17689
17414
  }, [_c('div', {
@@ -17717,7 +17442,6 @@ var ToggleSectionCollapsevue_type_template_id_28fe93af_render = function render(
17717
17442
  staticClass: "toggle-section-collapse-linebreak"
17718
17443
  })], 1);
17719
17444
  };
17720
-
17721
17445
  var ToggleSectionCollapsevue_type_template_id_28fe93af_staticRenderFns = [];
17722
17446
 
17723
17447
  // CONCATENATED MODULE: ./src/components/elements/ToggleSectionCollapse.vue?vue&type=template&id=28fe93af&
@@ -17741,13 +17465,11 @@ var ToggleSectionCollapsevue_type_template_id_28fe93af_staticRenderFns = [];
17741
17465
  updated: false
17742
17466
  };
17743
17467
  },
17744
-
17745
17468
  mounted() {
17746
17469
  if (this.startOpen) {
17747
17470
  this.visible = true;
17748
17471
  }
17749
17472
  },
17750
-
17751
17473
  beforeUpdate: function () {
17752
17474
  this.updated = true;
17753
17475
  }
@@ -17774,11 +17496,10 @@ var ToggleSectionCollapse_component = normalizeComponent(
17774
17496
  )
17775
17497
 
17776
17498
  /* harmony default export */ var ToggleSectionCollapse = (ToggleSectionCollapse_component.exports);
17777
- // CONCATENATED MODULE: ./node_modules/cache-loader/dist/cjs.js?{"cacheDirectory":"node_modules/.cache/vue-loader","cacheIdentifier":"7b4cc503-vue-loader-template"}!./node_modules/cache-loader/dist/cjs.js??ref--13-0!./node_modules/thread-loader/dist/cjs.js!./node_modules/babel-loader/lib!./node_modules/vue-loader/lib/loaders/templateLoader.js??ref--6!./node_modules/cache-loader/dist/cjs.js??ref--1-0!./node_modules/vue-loader/lib??vue-loader-options!./src/components/notifications/ToggleNotifications.vue?vue&type=template&id=5bd4c8f9&
17499
+ // CONCATENATED MODULE: ./node_modules/cache-loader/dist/cjs.js?{"cacheDirectory":"node_modules/.cache/vue-loader","cacheIdentifier":"041c37bc-vue-loader-template"}!./node_modules/cache-loader/dist/cjs.js??ref--13-0!./node_modules/thread-loader/dist/cjs.js!./node_modules/babel-loader/lib!./node_modules/vue-loader/lib/loaders/templateLoader.js??ref--6!./node_modules/cache-loader/dist/cjs.js??ref--1-0!./node_modules/vue-loader/lib??vue-loader-options!./src/components/notifications/ToggleNotifications.vue?vue&type=template&id=5bd4c8f9&
17778
17500
  var ToggleNotificationsvue_type_template_id_5bd4c8f9_render = function render() {
17779
17501
  var _vm = this,
17780
- _c = _vm._self._c;
17781
-
17502
+ _c = _vm._self._c;
17782
17503
  return _c('div', [_c('div', {
17783
17504
  staticClass: "toggle-notifications-messagebox",
17784
17505
  class: {
@@ -17789,7 +17510,6 @@ var ToggleNotificationsvue_type_template_id_5bd4c8f9_render = function render()
17789
17510
  staticClass: "message"
17790
17511
  }, [_vm._v(_vm._s(_vm.message))])])]);
17791
17512
  };
17792
-
17793
17513
  var ToggleNotificationsvue_type_template_id_5bd4c8f9_staticRenderFns = [];
17794
17514
 
17795
17515
  // CONCATENATED MODULE: ./src/components/notifications/ToggleNotifications.vue?vue&type=template&id=5bd4c8f9&
@@ -17808,36 +17528,32 @@ var ToggleNotificationsvue_type_template_id_5bd4c8f9_staticRenderFns = [];
17808
17528
  showAlertsFor: 3000,
17809
17529
  // how long should each error display for?
17810
17530
  isError: false // is it an error? true for yes, false for now
17811
-
17812
17531
  };
17813
17532
  },
17533
+
17814
17534
  computed: {
17815
- active() // is the message showing?
17535
+ active()
17536
+ // is the message showing?
17816
17537
  {
17817
17538
  return this.queuedMessages > 0;
17818
17539
  },
17819
-
17820
- timeout() // timeouts ensure that when there are multiple errors, they are shown in order rather than all at once.
17540
+ timeout()
17541
+ // timeouts ensure that when there are multiple errors, they are shown in order rather than all at once.
17821
17542
  {
17822
17543
  return this.queuedMessages * this.showAlertsFor;
17823
17544
  }
17824
-
17825
17545
  },
17826
17546
  watch: {},
17827
17547
  created: function () {
17828
17548
  this.$toggle_event.$on('success_message', this.showBox);
17829
17549
  this.$toggle_event.$on('error_message', this.showErrorBox);
17830
17550
  },
17831
-
17832
17551
  beforeDestroy() {
17833
17552
  this.$toggle_event.$off('success_message', this.showBox);
17834
17553
  this.$toggle_event.$off('error_message', this.showErrorBox);
17835
17554
  },
17836
-
17837
17555
  mounted: function () {},
17838
-
17839
17556
  destroyed() {},
17840
-
17841
17557
  methods: {
17842
17558
  // trigger an error alert
17843
17559
  showErrorBox(message) {
@@ -17851,7 +17567,6 @@ var ToggleNotificationsvue_type_template_id_5bd4c8f9_staticRenderFns = [];
17851
17567
  this.hideBox();
17852
17568
  }, this.timeout);
17853
17569
  },
17854
-
17855
17570
  // trigger a success alert
17856
17571
  showBox(message) {
17857
17572
  setTimeout(() => {
@@ -17864,11 +17579,9 @@ var ToggleNotificationsvue_type_template_id_5bd4c8f9_staticRenderFns = [];
17864
17579
  this.hideBox();
17865
17580
  }, this.timeout);
17866
17581
  },
17867
-
17868
17582
  // remove a queued message and remove the box if none remaining
17869
17583
  hideBox() {
17870
17584
  this.queuedMessages--;
17871
-
17872
17585
  if (this.queuedMessages == 0) {
17873
17586
  setTimeout(() => {
17874
17587
  this.message = '';
@@ -17876,7 +17589,6 @@ var ToggleNotificationsvue_type_template_id_5bd4c8f9_staticRenderFns = [];
17876
17589
  }, 1000); // wait for the box to transition out of the page before resetting the message
17877
17590
  }
17878
17591
  }
17879
-
17880
17592
  }
17881
17593
  });
17882
17594
  // CONCATENATED MODULE: ./src/components/notifications/ToggleNotifications.vue?vue&type=script&lang=js&
@@ -17901,11 +17613,10 @@ var ToggleNotifications_component = normalizeComponent(
17901
17613
  )
17902
17614
 
17903
17615
  /* harmony default export */ var ToggleNotifications = (ToggleNotifications_component.exports);
17904
- // CONCATENATED MODULE: ./node_modules/cache-loader/dist/cjs.js?{"cacheDirectory":"node_modules/.cache/vue-loader","cacheIdentifier":"7b4cc503-vue-loader-template"}!./node_modules/cache-loader/dist/cjs.js??ref--13-0!./node_modules/thread-loader/dist/cjs.js!./node_modules/babel-loader/lib!./node_modules/vue-loader/lib/loaders/templateLoader.js??ref--6!./node_modules/cache-loader/dist/cjs.js??ref--1-0!./node_modules/vue-loader/lib??vue-loader-options!./src/components/buttons/ToggleFeatureButton.vue?vue&type=template&id=a49bdc38&scoped=true&
17616
+ // CONCATENATED MODULE: ./node_modules/cache-loader/dist/cjs.js?{"cacheDirectory":"node_modules/.cache/vue-loader","cacheIdentifier":"041c37bc-vue-loader-template"}!./node_modules/cache-loader/dist/cjs.js??ref--13-0!./node_modules/thread-loader/dist/cjs.js!./node_modules/babel-loader/lib!./node_modules/vue-loader/lib/loaders/templateLoader.js??ref--6!./node_modules/cache-loader/dist/cjs.js??ref--1-0!./node_modules/vue-loader/lib??vue-loader-options!./src/components/buttons/ToggleFeatureButton.vue?vue&type=template&id=a49bdc38&scoped=true&
17905
17617
  var ToggleFeatureButtonvue_type_template_id_a49bdc38_scoped_true_render = function render() {
17906
17618
  var _vm = this,
17907
- _c = _vm._self._c;
17908
-
17619
+ _c = _vm._self._c;
17909
17620
  return _c('button', {
17910
17621
  staticClass: "toggle-feature-button",
17911
17622
  on: {
@@ -17928,7 +17639,6 @@ var ToggleFeatureButtonvue_type_template_id_a49bdc38_scoped_true_render = functi
17928
17639
  }
17929
17640
  })], 1)]);
17930
17641
  };
17931
-
17932
17642
  var ToggleFeatureButtonvue_type_template_id_a49bdc38_scoped_true_staticRenderFns = [];
17933
17643
 
17934
17644
  // CONCATENATED MODULE: ./src/components/buttons/ToggleFeatureButton.vue?vue&type=template&id=a49bdc38&scoped=true&
@@ -17948,7 +17658,6 @@ var ToggleFeatureButtonvue_type_template_id_a49bdc38_scoped_true_staticRenderFns
17948
17658
  type: String,
17949
17659
  required: true
17950
17660
  },
17951
-
17952
17661
  /**
17953
17662
  * Logo alt
17954
17663
  */
@@ -17956,7 +17665,6 @@ var ToggleFeatureButtonvue_type_template_id_a49bdc38_scoped_true_staticRenderFns
17956
17665
  type: String,
17957
17666
  required: true
17958
17667
  },
17959
-
17960
17668
  /**
17961
17669
  * The label for the button
17962
17670
  */
@@ -17964,7 +17672,6 @@ var ToggleFeatureButtonvue_type_template_id_a49bdc38_scoped_true_staticRenderFns
17964
17672
  type: String,
17965
17673
  required: true
17966
17674
  },
17967
-
17968
17675
  /**
17969
17676
  * Icon style (mini_delete etc)
17970
17677
  */
@@ -17982,7 +17689,6 @@ var ToggleFeatureButtonvue_type_template_id_a49bdc38_scoped_true_staticRenderFns
17982
17689
  */
17983
17690
  this.$emit('click');
17984
17691
  }
17985
-
17986
17692
  }
17987
17693
  });
17988
17694
  // CONCATENATED MODULE: ./src/components/buttons/ToggleFeatureButton.vue?vue&type=script&lang=js&
@@ -18007,16 +17713,14 @@ var ToggleFeatureButton_component = normalizeComponent(
18007
17713
  )
18008
17714
 
18009
17715
  /* harmony default export */ var ToggleFeatureButton = (ToggleFeatureButton_component.exports);
18010
- // CONCATENATED MODULE: ./node_modules/cache-loader/dist/cjs.js?{"cacheDirectory":"node_modules/.cache/vue-loader","cacheIdentifier":"7b4cc503-vue-loader-template"}!./node_modules/cache-loader/dist/cjs.js??ref--13-0!./node_modules/thread-loader/dist/cjs.js!./node_modules/babel-loader/lib!./node_modules/vue-loader/lib/loaders/templateLoader.js??ref--6!./node_modules/cache-loader/dist/cjs.js??ref--1-0!./node_modules/vue-loader/lib??vue-loader-options!./src/components/text/ToggleInfoText.vue?vue&type=template&id=2abee308&
17716
+ // CONCATENATED MODULE: ./node_modules/cache-loader/dist/cjs.js?{"cacheDirectory":"node_modules/.cache/vue-loader","cacheIdentifier":"041c37bc-vue-loader-template"}!./node_modules/cache-loader/dist/cjs.js??ref--13-0!./node_modules/thread-loader/dist/cjs.js!./node_modules/babel-loader/lib!./node_modules/vue-loader/lib/loaders/templateLoader.js??ref--6!./node_modules/cache-loader/dist/cjs.js??ref--1-0!./node_modules/vue-loader/lib??vue-loader-options!./src/components/text/ToggleInfoText.vue?vue&type=template&id=2abee308&
18011
17717
  var ToggleInfoTextvue_type_template_id_2abee308_render = function render() {
18012
17718
  var _vm = this,
18013
- _c = _vm._self._c;
18014
-
17719
+ _c = _vm._self._c;
18015
17720
  return _c('p', {
18016
17721
  staticClass: "toggle-info-text"
18017
17722
  }, [_vm._t("default")], 2);
18018
17723
  };
18019
-
18020
17724
  var ToggleInfoTextvue_type_template_id_2abee308_staticRenderFns = [];
18021
17725
 
18022
17726
  // CONCATENATED MODULE: ./src/components/text/ToggleInfoText.vue?vue&type=template&id=2abee308&
@@ -18040,11 +17744,10 @@ var ToggleInfoText_component = normalizeComponent(
18040
17744
  )
18041
17745
 
18042
17746
  /* harmony default export */ var ToggleInfoText = (ToggleInfoText_component.exports);
18043
- // CONCATENATED MODULE: ./node_modules/cache-loader/dist/cjs.js?{"cacheDirectory":"node_modules/.cache/vue-loader","cacheIdentifier":"7b4cc503-vue-loader-template"}!./node_modules/cache-loader/dist/cjs.js??ref--13-0!./node_modules/thread-loader/dist/cjs.js!./node_modules/babel-loader/lib!./node_modules/vue-loader/lib/loaders/templateLoader.js??ref--6!./node_modules/cache-loader/dist/cjs.js??ref--1-0!./node_modules/vue-loader/lib??vue-loader-options!./src/components/forms/ToggleFontPicker.vue?vue&type=template&id=b38afddc&
17747
+ // CONCATENATED MODULE: ./node_modules/cache-loader/dist/cjs.js?{"cacheDirectory":"node_modules/.cache/vue-loader","cacheIdentifier":"041c37bc-vue-loader-template"}!./node_modules/cache-loader/dist/cjs.js??ref--13-0!./node_modules/thread-loader/dist/cjs.js!./node_modules/babel-loader/lib!./node_modules/vue-loader/lib/loaders/templateLoader.js??ref--6!./node_modules/cache-loader/dist/cjs.js??ref--1-0!./node_modules/vue-loader/lib??vue-loader-options!./src/components/forms/ToggleFontPicker.vue?vue&type=template&id=b38afddc&
18044
17748
  var ToggleFontPickervue_type_template_id_b38afddc_render = function render() {
18045
17749
  var _vm = this,
18046
- _c = _vm._self._c;
18047
-
17750
+ _c = _vm._self._c;
18048
17751
  return _c('ToggleInputSelect', {
18049
17752
  style: `font-family: ${_vm.inputVal};`,
18050
17753
  attrs: {
@@ -18063,7 +17766,6 @@ var ToggleFontPickervue_type_template_id_b38afddc_render = function render() {
18063
17766
  }
18064
17767
  });
18065
17768
  };
18066
-
18067
17769
  var ToggleFontPickervue_type_template_id_b38afddc_staticRenderFns = [];
18068
17770
 
18069
17771
  // CONCATENATED MODULE: ./src/components/forms/ToggleFontPicker.vue?vue&type=template&id=b38afddc&
@@ -18071,9 +17773,7 @@ var ToggleFontPickervue_type_template_id_b38afddc_staticRenderFns = [];
18071
17773
  // CONCATENATED MODULE: ./node_modules/cache-loader/dist/cjs.js??ref--13-0!./node_modules/thread-loader/dist/cjs.js!./node_modules/babel-loader/lib!./node_modules/cache-loader/dist/cjs.js??ref--1-0!./node_modules/vue-loader/lib??vue-loader-options!./src/components/forms/ToggleFontPicker.vue?vue&type=script&lang=js&
18072
17774
 
18073
17775
 
18074
-
18075
17776
  var WebFont = __webpack_require__("27d6");
18076
-
18077
17777
  /* harmony default export */ var ToggleFontPickervue_type_script_lang_js_ = ({
18078
17778
  mixins: [mixins],
18079
17779
  components: {
@@ -18084,7 +17784,6 @@ var WebFont = __webpack_require__("27d6");
18084
17784
  value: {
18085
17785
  type: String
18086
17786
  },
18087
-
18088
17787
  /**
18089
17788
  * The name of the fontpicker component
18090
17789
  */
@@ -18092,7 +17791,6 @@ var WebFont = __webpack_require__("27d6");
18092
17791
  type: String,
18093
17792
  default: "ToggleFontPicker"
18094
17793
  },
18095
-
18096
17794
  /**
18097
17795
  * The label that will be displayed
18098
17796
  */
@@ -18101,7 +17799,6 @@ var WebFont = __webpack_require__("27d6");
18101
17799
  required: false,
18102
17800
  default: "Font picker"
18103
17801
  },
18104
-
18105
17802
  /**
18106
17803
  * Whether this is a required field or not
18107
17804
  */
@@ -18110,17 +17807,14 @@ var WebFont = __webpack_require__("27d6");
18110
17807
  default: false
18111
17808
  }
18112
17809
  },
18113
-
18114
17810
  data() {
18115
17811
  return {
18116
17812
  fonts: ['Abril Fatface', 'Alpha Slab One', 'Anton', 'Arvo', 'Bodoni Moda', 'Courier Prime', 'EB Garamond', 'Fredoka One', 'Helvetica', 'IBM Plex Mono', 'Lato', 'Libre Baskerville', 'Lora', 'Merriweather', 'Montserrat', 'Nunito', 'Open Sans', 'Open Sans Condensed', 'Oswald', 'Poppins', 'Prata', 'PT Serif', 'Quicksand', 'Roboto', 'Roboto Mono', 'Roboto Slab', 'Rubik', 'Sacramento', 'Source Sans Pro', 'Source Serif Pro', 'Volkhov', 'Work Sans Pro', 'Space Mono']
18117
17813
  };
18118
17814
  },
18119
-
18120
17815
  created() {
18121
17816
  this.getFonts();
18122
17817
  },
18123
-
18124
17818
  computed: {
18125
17819
  fontOptions() {
18126
17820
  // Format font list into value/label object for select input
@@ -18131,16 +17825,13 @@ var WebFont = __webpack_require__("27d6");
18131
17825
  };
18132
17826
  });
18133
17827
  },
18134
-
18135
17828
  inputVal: {
18136
17829
  get() {
18137
17830
  return this.value;
18138
17831
  },
18139
-
18140
17832
  set(value) {
18141
17833
  this.$emit('input', value);
18142
17834
  }
18143
-
18144
17835
  }
18145
17836
  },
18146
17837
  methods: {
@@ -18151,7 +17842,6 @@ var WebFont = __webpack_require__("27d6");
18151
17842
  }
18152
17843
  });
18153
17844
  }
18154
-
18155
17845
  }
18156
17846
  });
18157
17847
  // CONCATENATED MODULE: ./src/components/forms/ToggleFontPicker.vue?vue&type=script&lang=js&
@@ -18176,11 +17866,10 @@ var ToggleFontPicker_component = normalizeComponent(
18176
17866
  )
18177
17867
 
18178
17868
  /* harmony default export */ var ToggleFontPicker = (ToggleFontPicker_component.exports);
18179
- // CONCATENATED MODULE: ./node_modules/cache-loader/dist/cjs.js?{"cacheDirectory":"node_modules/.cache/vue-loader","cacheIdentifier":"7b4cc503-vue-loader-template"}!./node_modules/cache-loader/dist/cjs.js??ref--13-0!./node_modules/thread-loader/dist/cjs.js!./node_modules/babel-loader/lib!./node_modules/vue-loader/lib/loaders/templateLoader.js??ref--6!./node_modules/cache-loader/dist/cjs.js??ref--1-0!./node_modules/vue-loader/lib??vue-loader-options!./src/components/forms/ToggleInputNumberUnit.vue?vue&type=template&id=2553a8be&
17869
+ // CONCATENATED MODULE: ./node_modules/cache-loader/dist/cjs.js?{"cacheDirectory":"node_modules/.cache/vue-loader","cacheIdentifier":"041c37bc-vue-loader-template"}!./node_modules/cache-loader/dist/cjs.js??ref--13-0!./node_modules/thread-loader/dist/cjs.js!./node_modules/babel-loader/lib!./node_modules/vue-loader/lib/loaders/templateLoader.js??ref--6!./node_modules/cache-loader/dist/cjs.js??ref--1-0!./node_modules/vue-loader/lib??vue-loader-options!./src/components/forms/ToggleInputNumberUnit.vue?vue&type=template&id=2553a8be&
18180
17870
  var ToggleInputNumberUnitvue_type_template_id_2553a8be_render = function render() {
18181
17871
  var _vm = this,
18182
- _c = _vm._self._c;
18183
-
17872
+ _c = _vm._self._c;
18184
17873
  return _c('div', {
18185
17874
  staticClass: "toggle-input-container",
18186
17875
  class: {
@@ -18227,7 +17916,6 @@ var ToggleInputNumberUnitvue_type_template_id_2553a8be_render = function render(
18227
17916
  }
18228
17917
  }, [_vm._v(" " + _vm._s(_vm.errorMessage) + " ")]) : _vm._e()]);
18229
17918
  };
18230
-
18231
17919
  var ToggleInputNumberUnitvue_type_template_id_2553a8be_staticRenderFns = [];
18232
17920
 
18233
17921
  // CONCATENATED MODULE: ./src/components/forms/ToggleInputNumberUnit.vue?vue&type=template&id=2553a8be&
@@ -18287,13 +17975,11 @@ var ToggleInputNumberUnitvue_type_template_id_2553a8be_staticRenderFns = [];
18287
17975
  required: false
18288
17976
  }
18289
17977
  },
18290
-
18291
17978
  data() {
18292
17979
  return {
18293
17980
  inputActive: false
18294
17981
  };
18295
17982
  },
18296
-
18297
17983
  computed: {
18298
17984
  inputVal: {
18299
17985
  get() {
@@ -18305,73 +17991,58 @@ var ToggleInputNumberUnitvue_type_template_id_2553a8be_staticRenderFns = [];
18305
17991
  return this.value;
18306
17992
  }
18307
17993
  },
18308
-
18309
17994
  set(modifiedValue) {
18310
17995
  this.$emit('input', modifiedValue);
18311
17996
  }
18312
-
18313
17997
  },
18314
-
18315
17998
  appendStringLength() {
18316
17999
  var _this$appendString$le;
18317
-
18318
18000
  return (_this$appendString$le = this.appendString.length) !== null && _this$appendString$le !== void 0 ? _this$appendString$le : 0;
18319
18001
  },
18320
-
18321
18002
  prependStringLength() {
18322
18003
  var _this$prependString$l;
18323
-
18324
18004
  return (_this$prependString$l = this.prependString.length) !== null && _this$prependString$l !== void 0 ? _this$prependString$l : 0;
18325
18005
  }
18326
-
18327
18006
  },
18328
18007
  methods: {
18329
18008
  onKeyup() {
18330
18009
  // Remove any non-numbers from the input value
18331
18010
  this.$emit('input', this.value.replace(/[^0-9]/g, ''));
18332
18011
  },
18333
-
18334
18012
  onFocus() {
18335
- this.inputActive = true; // When the user clicks in the box, remove the append and/or prepend values
18336
-
18013
+ this.inputActive = true;
18014
+ // When the user clicks in the box, remove the append and/or prepend values
18337
18015
  if (this.value != 0 && this.value != '') {
18338
18016
  let tempValue = this.value;
18339
-
18340
18017
  if (this.appendString) {
18341
18018
  // First take off the appended string
18342
18019
  tempValue = this.value.slice(0, -this.appendStringLength);
18343
18020
  }
18344
-
18345
18021
  if (this.prependString) {
18346
18022
  // Then take off the prepended string
18347
18023
  tempValue = tempValue.slice(this.prependStringLength, this.value.length);
18348
18024
  }
18349
-
18350
18025
  this.$emit('input', tempValue);
18351
18026
  }
18352
18027
  },
18353
-
18354
18028
  onBlur() {
18355
- this.inputActive = false; // Don't add the unit if the value is left empty
18029
+ this.inputActive = false;
18356
18030
 
18031
+ // Don't add the unit if the value is left empty
18357
18032
  if (this.value != '') {
18358
18033
  // When the user clicks out of the box, add the prepend and/or append values
18359
18034
  let tempValue = this.value;
18360
-
18361
18035
  if (this.appendString) {
18362
18036
  // First add the append string
18363
18037
  tempValue += this.appendString;
18364
18038
  }
18365
-
18366
18039
  if (this.prependString) {
18367
18040
  // Then add the prepend string
18368
18041
  tempValue = this.prependString + tempValue;
18369
18042
  }
18370
-
18371
18043
  this.$emit('input', tempValue);
18372
18044
  }
18373
18045
  }
18374
-
18375
18046
  }
18376
18047
  });
18377
18048
  // CONCATENATED MODULE: ./src/components/forms/ToggleInputNumberUnit.vue?vue&type=script&lang=js&
@@ -18396,11 +18067,10 @@ var ToggleInputNumberUnit_component = normalizeComponent(
18396
18067
  )
18397
18068
 
18398
18069
  /* harmony default export */ var ToggleInputNumberUnit = (ToggleInputNumberUnit_component.exports);
18399
- // CONCATENATED MODULE: ./node_modules/cache-loader/dist/cjs.js?{"cacheDirectory":"node_modules/.cache/vue-loader","cacheIdentifier":"7b4cc503-vue-loader-template"}!./node_modules/cache-loader/dist/cjs.js??ref--13-0!./node_modules/thread-loader/dist/cjs.js!./node_modules/babel-loader/lib!./node_modules/vue-loader/lib/loaders/templateLoader.js??ref--6!./node_modules/cache-loader/dist/cjs.js??ref--1-0!./node_modules/vue-loader/lib??vue-loader-options!./src/components/forms/ToggleInputLabelLeft.vue?vue&type=template&id=3d8b699e&
18070
+ // CONCATENATED MODULE: ./node_modules/cache-loader/dist/cjs.js?{"cacheDirectory":"node_modules/.cache/vue-loader","cacheIdentifier":"041c37bc-vue-loader-template"}!./node_modules/cache-loader/dist/cjs.js??ref--13-0!./node_modules/thread-loader/dist/cjs.js!./node_modules/babel-loader/lib!./node_modules/vue-loader/lib/loaders/templateLoader.js??ref--6!./node_modules/cache-loader/dist/cjs.js??ref--1-0!./node_modules/vue-loader/lib??vue-loader-options!./src/components/forms/ToggleInputLabelLeft.vue?vue&type=template&id=3d8b699e&
18400
18071
  var ToggleInputLabelLeftvue_type_template_id_3d8b699e_render = function render() {
18401
18072
  var _vm = this,
18402
- _c = _vm._self._c;
18403
-
18073
+ _c = _vm._self._c;
18404
18074
  return _c('div', {
18405
18075
  staticClass: "toggle-formbuilder-input-outer-container"
18406
18076
  }, [_c('div', {
@@ -18421,7 +18091,6 @@ var ToggleInputLabelLeftvue_type_template_id_3d8b699e_render = function render()
18421
18091
  staticClass: "info"
18422
18092
  }, [_vm._v(_vm._s(_vm.infoText))]) : _vm._e()], 1)])]);
18423
18093
  };
18424
-
18425
18094
  var ToggleInputLabelLeftvue_type_template_id_3d8b699e_staticRenderFns = [];
18426
18095
 
18427
18096
  // CONCATENATED MODULE: ./src/components/forms/ToggleInputLabelLeft.vue?vue&type=template&id=3d8b699e&
@@ -18477,11 +18146,10 @@ var ToggleInputLabelLeft_component = normalizeComponent(
18477
18146
  )
18478
18147
 
18479
18148
  /* harmony default export */ var ToggleInputLabelLeft = (ToggleInputLabelLeft_component.exports);
18480
- // CONCATENATED MODULE: ./node_modules/cache-loader/dist/cjs.js?{"cacheDirectory":"node_modules/.cache/vue-loader","cacheIdentifier":"7b4cc503-vue-loader-template"}!./node_modules/cache-loader/dist/cjs.js??ref--13-0!./node_modules/thread-loader/dist/cjs.js!./node_modules/babel-loader/lib!./node_modules/vue-loader/lib/loaders/templateLoader.js??ref--6!./node_modules/cache-loader/dist/cjs.js??ref--1-0!./node_modules/vue-loader/lib??vue-loader-options!./src/components/forms/ToggleInputMultiSelect.vue?vue&type=template&id=2266e218&
18149
+ // CONCATENATED MODULE: ./node_modules/cache-loader/dist/cjs.js?{"cacheDirectory":"node_modules/.cache/vue-loader","cacheIdentifier":"041c37bc-vue-loader-template"}!./node_modules/cache-loader/dist/cjs.js??ref--13-0!./node_modules/thread-loader/dist/cjs.js!./node_modules/babel-loader/lib!./node_modules/vue-loader/lib/loaders/templateLoader.js??ref--6!./node_modules/cache-loader/dist/cjs.js??ref--1-0!./node_modules/vue-loader/lib??vue-loader-options!./src/components/forms/ToggleInputMultiSelect.vue?vue&type=template&id=2266e218&
18481
18150
  var ToggleInputMultiSelectvue_type_template_id_2266e218_render = function render() {
18482
18151
  var _vm = this,
18483
- _c = _vm._self._c;
18484
-
18152
+ _c = _vm._self._c;
18485
18153
  return _c('div', {
18486
18154
  staticClass: "toggle-input-container",
18487
18155
  class: {
@@ -18520,7 +18188,6 @@ var ToggleInputMultiSelectvue_type_template_id_2266e218_render = function render
18520
18188
  }
18521
18189
  }, [_vm._v(" " + _vm._s(_vm.errorMessage) + " ")]) : _vm._e()]);
18522
18190
  };
18523
-
18524
18191
  var ToggleInputMultiSelectvue_type_template_id_2266e218_staticRenderFns = [];
18525
18192
 
18526
18193
  // CONCATENATED MODULE: ./src/components/forms/ToggleInputMultiSelect.vue?vue&type=template&id=2266e218&
@@ -18574,11 +18241,9 @@ external_commonjs_vue_commonjs2_vue_root_Vue_default.a.component('multi-select',
18574
18241
  get() {
18575
18242
  return this.value;
18576
18243
  },
18577
-
18578
18244
  set(value) {
18579
18245
  this.$emit('input', value);
18580
18246
  }
18581
-
18582
18247
  }
18583
18248
  }
18584
18249
  });
@@ -18604,18 +18269,16 @@ var ToggleInputMultiSelect_component = normalizeComponent(
18604
18269
  )
18605
18270
 
18606
18271
  /* harmony default export */ var ToggleInputMultiSelect = (ToggleInputMultiSelect_component.exports);
18607
- // CONCATENATED MODULE: ./node_modules/cache-loader/dist/cjs.js?{"cacheDirectory":"node_modules/.cache/vue-loader","cacheIdentifier":"7b4cc503-vue-loader-template"}!./node_modules/cache-loader/dist/cjs.js??ref--13-0!./node_modules/thread-loader/dist/cjs.js!./node_modules/babel-loader/lib!./node_modules/vue-loader/lib/loaders/templateLoader.js??ref--6!./node_modules/cache-loader/dist/cjs.js??ref--1-0!./node_modules/vue-loader/lib??vue-loader-options!./src/components/metrics/ToggleMetricSingleMetric.vue?vue&type=template&id=327815ad&
18272
+ // CONCATENATED MODULE: ./node_modules/cache-loader/dist/cjs.js?{"cacheDirectory":"node_modules/.cache/vue-loader","cacheIdentifier":"041c37bc-vue-loader-template"}!./node_modules/cache-loader/dist/cjs.js??ref--13-0!./node_modules/thread-loader/dist/cjs.js!./node_modules/babel-loader/lib!./node_modules/vue-loader/lib/loaders/templateLoader.js??ref--6!./node_modules/cache-loader/dist/cjs.js??ref--1-0!./node_modules/vue-loader/lib??vue-loader-options!./src/components/metrics/ToggleMetricSingleMetric.vue?vue&type=template&id=327815ad&
18608
18273
  var ToggleMetricSingleMetricvue_type_template_id_327815ad_render = function render() {
18609
18274
  var _vm = this,
18610
- _c = _vm._self._c;
18611
-
18275
+ _c = _vm._self._c;
18612
18276
  return _c('div', [_c('h3', {
18613
18277
  staticClass: "toggle-metric metric-label"
18614
18278
  }, [_vm._v(_vm._s(_vm.label))]), _c('h1', {
18615
18279
  staticClass: "toggle-metric metric-value"
18616
18280
  }, [_vm._v(_vm._s(_vm.metricValue))])]);
18617
18281
  };
18618
-
18619
18282
  var ToggleMetricSingleMetricvue_type_template_id_327815ad_staticRenderFns = [];
18620
18283
 
18621
18284
  // CONCATENATED MODULE: ./src/components/metrics/ToggleMetricSingleMetric.vue?vue&type=template&id=327815ad&
@@ -18632,7 +18295,6 @@ var ToggleMetricSingleMetricvue_type_template_id_327815ad_staticRenderFns = [];
18632
18295
  type: String,
18633
18296
  default: "ToggleMetricSingleMetric"
18634
18297
  },
18635
-
18636
18298
  /**
18637
18299
  * Type of the value, this will affect on the format shown
18638
18300
  */
@@ -18642,7 +18304,6 @@ var ToggleMetricSingleMetricvue_type_template_id_327815ad_staticRenderFns = [];
18642
18304
  return ['text', 'number', 'percentage', 'currency'].indexOf(value) !== -1;
18643
18305
  }
18644
18306
  },
18645
-
18646
18307
  /**
18647
18308
  * Component's value
18648
18309
  */
@@ -18650,7 +18311,6 @@ var ToggleMetricSingleMetricvue_type_template_id_327815ad_staticRenderFns = [];
18650
18311
  type: [String, Number],
18651
18312
  required: true
18652
18313
  },
18653
-
18654
18314
  /**
18655
18315
  * Component's label
18656
18316
  */
@@ -18658,7 +18318,6 @@ var ToggleMetricSingleMetricvue_type_template_id_327815ad_staticRenderFns = [];
18658
18318
  type: String,
18659
18319
  default: ""
18660
18320
  },
18661
-
18662
18321
  /**
18663
18322
  * Currency Code
18664
18323
  */
@@ -18666,7 +18325,6 @@ var ToggleMetricSingleMetricvue_type_template_id_327815ad_staticRenderFns = [];
18666
18325
  type: String,
18667
18326
  default: 'GBP'
18668
18327
  },
18669
-
18670
18328
  /**
18671
18329
  * Currency locale
18672
18330
  */
@@ -18674,7 +18332,6 @@ var ToggleMetricSingleMetricvue_type_template_id_327815ad_staticRenderFns = [];
18674
18332
  type: String,
18675
18333
  default: 'en-GB'
18676
18334
  },
18677
-
18678
18335
  /**
18679
18336
  * Currency denomination
18680
18337
  */
@@ -18692,22 +18349,18 @@ var ToggleMetricSingleMetricvue_type_template_id_327815ad_staticRenderFns = [];
18692
18349
  if (this.value === null) {
18693
18350
  return "-";
18694
18351
  }
18695
-
18696
18352
  switch (this.type) {
18697
18353
  case 'currency':
18698
18354
  return (this.value / this.currencyDenomination).toLocaleString(this.currencyLocale, {
18699
18355
  style: 'currency',
18700
18356
  currency: this.currencyCode
18701
18357
  });
18702
-
18703
18358
  case 'percentage':
18704
18359
  return `${this.value} %`;
18705
-
18706
18360
  default:
18707
18361
  return this.value.toLocaleString();
18708
18362
  }
18709
18363
  }
18710
-
18711
18364
  }
18712
18365
  });
18713
18366
  // CONCATENATED MODULE: ./src/components/metrics/ToggleMetricSingleMetric.vue?vue&type=script&lang=js&
@@ -18732,11 +18385,10 @@ var ToggleMetricSingleMetric_component = normalizeComponent(
18732
18385
  )
18733
18386
 
18734
18387
  /* harmony default export */ var ToggleMetricSingleMetric = (ToggleMetricSingleMetric_component.exports);
18735
- // CONCATENATED MODULE: ./node_modules/cache-loader/dist/cjs.js?{"cacheDirectory":"node_modules/.cache/vue-loader","cacheIdentifier":"7b4cc503-vue-loader-template"}!./node_modules/cache-loader/dist/cjs.js??ref--13-0!./node_modules/thread-loader/dist/cjs.js!./node_modules/babel-loader/lib!./node_modules/vue-loader/lib/loaders/templateLoader.js??ref--6!./node_modules/cache-loader/dist/cjs.js??ref--1-0!./node_modules/vue-loader/lib??vue-loader-options!./src/components/metrics/ToggleMetricSparkLine.vue?vue&type=template&id=3daa6edc&
18388
+ // CONCATENATED MODULE: ./node_modules/cache-loader/dist/cjs.js?{"cacheDirectory":"node_modules/.cache/vue-loader","cacheIdentifier":"041c37bc-vue-loader-template"}!./node_modules/cache-loader/dist/cjs.js??ref--13-0!./node_modules/thread-loader/dist/cjs.js!./node_modules/babel-loader/lib!./node_modules/vue-loader/lib/loaders/templateLoader.js??ref--6!./node_modules/cache-loader/dist/cjs.js??ref--1-0!./node_modules/vue-loader/lib??vue-loader-options!./src/components/metrics/ToggleMetricSparkLine.vue?vue&type=template&id=3daa6edc&
18736
18389
  var ToggleMetricSparkLinevue_type_template_id_3daa6edc_render = function render() {
18737
18390
  var _vm = this,
18738
- _c = _vm._self._c;
18739
-
18391
+ _c = _vm._self._c;
18740
18392
  return _c('div', [_c('ToggleBadge', {
18741
18393
  staticStyle: {
18742
18394
  "margin-bottom": "10px"
@@ -18764,7 +18416,6 @@ var ToggleMetricSparkLinevue_type_template_id_3daa6edc_render = function render(
18764
18416
  }
18765
18417
  })], 1);
18766
18418
  };
18767
-
18768
18419
  var ToggleMetricSparkLinevue_type_template_id_3daa6edc_staticRenderFns = [];
18769
18420
 
18770
18421
  // CONCATENATED MODULE: ./src/components/metrics/ToggleMetricSparkLine.vue?vue&type=template&id=3daa6edc&
@@ -18791,7 +18442,6 @@ external_commonjs_vue_commonjs2_vue_root_Vue_default.a.component('apexchart', vu
18791
18442
  type: String,
18792
18443
  default: "ToggleMetricSingleMetric"
18793
18444
  },
18794
-
18795
18445
  /**
18796
18446
  * The line chart height
18797
18447
  */
@@ -18799,7 +18449,6 @@ external_commonjs_vue_commonjs2_vue_root_Vue_default.a.component('apexchart', vu
18799
18449
  type: String,
18800
18450
  default: "25%"
18801
18451
  },
18802
-
18803
18452
  /**
18804
18453
  * The line chart width
18805
18454
  */
@@ -18807,7 +18456,6 @@ external_commonjs_vue_commonjs2_vue_root_Vue_default.a.component('apexchart', vu
18807
18456
  type: String,
18808
18457
  default: "25%"
18809
18458
  },
18810
-
18811
18459
  /**
18812
18460
  * Type of the value, this will affect on the format shown for the single value
18813
18461
  */
@@ -18817,7 +18465,6 @@ external_commonjs_vue_commonjs2_vue_root_Vue_default.a.component('apexchart', vu
18817
18465
  return ['text', 'number', 'percentage', 'currency'].indexOf(value) !== -1;
18818
18466
  }
18819
18467
  },
18820
-
18821
18468
  /**
18822
18469
  * single metric component value
18823
18470
  */
@@ -18825,7 +18472,6 @@ external_commonjs_vue_commonjs2_vue_root_Vue_default.a.component('apexchart', vu
18825
18472
  type: [String, Number],
18826
18473
  required: true
18827
18474
  },
18828
-
18829
18475
  /**
18830
18476
  * spark line component value
18831
18477
  */
@@ -18833,7 +18479,6 @@ external_commonjs_vue_commonjs2_vue_root_Vue_default.a.component('apexchart', vu
18833
18479
  type: Array,
18834
18480
  required: true
18835
18481
  },
18836
-
18837
18482
  /**
18838
18483
  * Component's label
18839
18484
  */
@@ -18841,7 +18486,6 @@ external_commonjs_vue_commonjs2_vue_root_Vue_default.a.component('apexchart', vu
18841
18486
  type: String,
18842
18487
  required: true
18843
18488
  },
18844
-
18845
18489
  /**
18846
18490
  * Currency Code
18847
18491
  */
@@ -18849,7 +18493,6 @@ external_commonjs_vue_commonjs2_vue_root_Vue_default.a.component('apexchart', vu
18849
18493
  type: String,
18850
18494
  default: 'GBP'
18851
18495
  },
18852
-
18853
18496
  /**
18854
18497
  * Currency locale
18855
18498
  */
@@ -18857,7 +18500,6 @@ external_commonjs_vue_commonjs2_vue_root_Vue_default.a.component('apexchart', vu
18857
18500
  type: String,
18858
18501
  default: 'en-GB'
18859
18502
  },
18860
-
18861
18503
  /**
18862
18504
  * Currency denomination
18863
18505
  */
@@ -18865,7 +18507,6 @@ external_commonjs_vue_commonjs2_vue_root_Vue_default.a.component('apexchart', vu
18865
18507
  type: Number,
18866
18508
  default: 1
18867
18509
  },
18868
-
18869
18510
  /**
18870
18511
  * Percentage base used to calculate the trend impact
18871
18512
  */
@@ -18873,7 +18514,6 @@ external_commonjs_vue_commonjs2_vue_root_Vue_default.a.component('apexchart', vu
18873
18514
  type: Number,
18874
18515
  default: 0.5
18875
18516
  },
18876
-
18877
18517
  /**
18878
18518
  * This prop will inverse the trend impact
18879
18519
  */
@@ -18919,15 +18559,12 @@ external_commonjs_vue_commonjs2_vue_root_Vue_default.a.component('apexchart', vu
18919
18559
  }
18920
18560
  };
18921
18561
  },
18922
-
18923
18562
  mounted() {
18924
18563
  this.updateTrend();
18925
18564
  },
18926
-
18927
18565
  updated() {
18928
18566
  this.updateTrend();
18929
18567
  },
18930
-
18931
18568
  computed: {
18932
18569
  /**
18933
18570
  * Defines the badge class from the trending impact
@@ -18936,7 +18573,6 @@ external_commonjs_vue_commonjs2_vue_root_Vue_default.a.component('apexchart', vu
18936
18573
  trendImpactClass() {
18937
18574
  return this.getTrendImpact() === 1 ? 'confirm' : this.getTrendImpact() === -1 ? 'abort' : this.getTrendImpact() === 0 ? 'warning' : 'empty';
18938
18575
  },
18939
-
18940
18576
  /**
18941
18577
  * Defines the badge title from the trending impact
18942
18578
  * @return String
@@ -18944,7 +18580,6 @@ external_commonjs_vue_commonjs2_vue_root_Vue_default.a.component('apexchart', vu
18944
18580
  trendImpactLabel() {
18945
18581
  return this.getTrendImpact() === 1 ? 'Trending up' : this.getTrendImpact() === -1 ? 'Going down' : this.getTrendImpact() === 0 ? 'Keeping steady' : 'No data';
18946
18582
  }
18947
-
18948
18583
  },
18949
18584
  methods: {
18950
18585
  /**
@@ -18954,6 +18589,7 @@ external_commonjs_vue_commonjs2_vue_root_Vue_default.a.component('apexchart', vu
18954
18589
  getTrendImpact() {
18955
18590
  if (this.sparkLineVal[0].data.length > 0) {
18956
18591
  // if the value is an object, map to array
18592
+
18957
18593
  const trendImpactVals = this.sparkLineVal[0].data[0].y || this.sparkLineVal[0].data[0].y === 0 ? this.sparkLineVal[0].data.map(data => data.y) : this.sparkLineVal[0].data;
18958
18594
  let result = this.calcTrendImpact(trendImpactVals, this.trend_impact_base);
18959
18595
  if (this.inverse_trend_impact === true && result != false) return result * -1;else return result;
@@ -18961,33 +18597,27 @@ external_commonjs_vue_commonjs2_vue_root_Vue_default.a.component('apexchart', vu
18961
18597
  return false;
18962
18598
  }
18963
18599
  },
18964
-
18965
18600
  /**
18966
18601
  * Gets trend impact and udpates the chart with respective color
18967
18602
  * @return Void
18968
18603
  */
18969
18604
  updateTrend() {
18970
18605
  this.trendImpact = this.getTrendImpact();
18971
-
18972
18606
  switch (this.trendImpact) {
18973
18607
  case 1:
18974
18608
  this.updateChart([this.getColor('green')]);
18975
18609
  break;
18976
-
18977
18610
  case 0:
18978
18611
  this.updateChart([this.getColor('amber')]);
18979
18612
  break;
18980
-
18981
18613
  case -1:
18982
18614
  this.updateChart([this.getColor('red')]);
18983
18615
  break;
18984
-
18985
18616
  case false:
18986
18617
  this.updateChart([this.getColor('gray')]);
18987
18618
  break;
18988
18619
  }
18989
18620
  },
18990
-
18991
18621
  /**
18992
18622
  * Updates the spark line chart component colors
18993
18623
  * @return Void
@@ -18997,7 +18627,6 @@ external_commonjs_vue_commonjs2_vue_root_Vue_default.a.component('apexchart', vu
18997
18627
  colors: colors
18998
18628
  });
18999
18629
  }
19000
-
19001
18630
  }
19002
18631
  });
19003
18632
  // CONCATENATED MODULE: ./src/components/metrics/ToggleMetricSparkLine.vue?vue&type=script&lang=js&
@@ -19022,11 +18651,10 @@ var ToggleMetricSparkLine_component = normalizeComponent(
19022
18651
  )
19023
18652
 
19024
18653
  /* harmony default export */ var ToggleMetricSparkLine = (ToggleMetricSparkLine_component.exports);
19025
- // CONCATENATED MODULE: ./node_modules/cache-loader/dist/cjs.js?{"cacheDirectory":"node_modules/.cache/vue-loader","cacheIdentifier":"7b4cc503-vue-loader-template"}!./node_modules/cache-loader/dist/cjs.js??ref--13-0!./node_modules/thread-loader/dist/cjs.js!./node_modules/babel-loader/lib!./node_modules/vue-loader/lib/loaders/templateLoader.js??ref--6!./node_modules/cache-loader/dist/cjs.js??ref--1-0!./node_modules/vue-loader/lib??vue-loader-options!./src/components/metrics/ToggleMetricBarChart.vue?vue&type=template&id=0137f388&
18654
+ // CONCATENATED MODULE: ./node_modules/cache-loader/dist/cjs.js?{"cacheDirectory":"node_modules/.cache/vue-loader","cacheIdentifier":"041c37bc-vue-loader-template"}!./node_modules/cache-loader/dist/cjs.js??ref--13-0!./node_modules/thread-loader/dist/cjs.js!./node_modules/babel-loader/lib!./node_modules/vue-loader/lib/loaders/templateLoader.js??ref--6!./node_modules/cache-loader/dist/cjs.js??ref--1-0!./node_modules/vue-loader/lib??vue-loader-options!./src/components/metrics/ToggleMetricBarChart.vue?vue&type=template&id=0137f388&
19026
18655
  var ToggleMetricBarChartvue_type_template_id_0137f388_render = function render() {
19027
18656
  var _vm = this,
19028
- _c = _vm._self._c;
19029
-
18657
+ _c = _vm._self._c;
19030
18658
  return _c('div', [_c('h3', {
19031
18659
  staticClass: "toggle-metric metric-label"
19032
18660
  }, [_vm._v(_vm._s(_vm.label))]), _vm._v(" " + _vm._s(_vm.checkWindowSize) + " "), _c('apexchart', {
@@ -19038,7 +18666,6 @@ var ToggleMetricBarChartvue_type_template_id_0137f388_render = function render()
19038
18666
  }
19039
18667
  })], 1);
19040
18668
  };
19041
-
19042
18669
  var ToggleMetricBarChartvue_type_template_id_0137f388_staticRenderFns = [];
19043
18670
 
19044
18671
  // CONCATENATED MODULE: ./src/components/metrics/ToggleMetricBarChart.vue?vue&type=template&id=0137f388&
@@ -19054,7 +18681,6 @@ var ToggleMetricBarChartvue_type_template_id_0137f388_staticRenderFns = [];
19054
18681
  colors: {
19055
18682
  type: [Array]
19056
18683
  },
19057
-
19058
18684
  /*
19059
18685
  * Component's height
19060
18686
  */
@@ -19062,7 +18688,6 @@ var ToggleMetricBarChartvue_type_template_id_0137f388_staticRenderFns = [];
19062
18688
  type: String,
19063
18689
  default: "100%"
19064
18690
  },
19065
-
19066
18691
  /*
19067
18692
  * Component's values
19068
18693
  */
@@ -19070,7 +18695,6 @@ var ToggleMetricBarChartvue_type_template_id_0137f388_staticRenderFns = [];
19070
18695
  type: [Array],
19071
18696
  required: true
19072
18697
  },
19073
-
19074
18698
  /*
19075
18699
  * Component's labels
19076
18700
  */
@@ -19078,7 +18702,6 @@ var ToggleMetricBarChartvue_type_template_id_0137f388_staticRenderFns = [];
19078
18702
  type: String,
19079
18703
  required: true
19080
18704
  },
19081
-
19082
18705
  /*
19083
18706
  * Component's categories
19084
18707
  */
@@ -19160,7 +18783,6 @@ var ToggleMetricBarChartvue_type_template_id_0137f388_staticRenderFns = [];
19160
18783
  }
19161
18784
  };
19162
18785
  }
19163
-
19164
18786
  }
19165
18787
  });
19166
18788
  // CONCATENATED MODULE: ./src/components/metrics/ToggleMetricBarChart.vue?vue&type=script&lang=js&
@@ -19185,11 +18807,10 @@ var ToggleMetricBarChart_component = normalizeComponent(
19185
18807
  )
19186
18808
 
19187
18809
  /* harmony default export */ var ToggleMetricBarChart = (ToggleMetricBarChart_component.exports);
19188
- // CONCATENATED MODULE: ./node_modules/cache-loader/dist/cjs.js?{"cacheDirectory":"node_modules/.cache/vue-loader","cacheIdentifier":"7b4cc503-vue-loader-template"}!./node_modules/cache-loader/dist/cjs.js??ref--13-0!./node_modules/thread-loader/dist/cjs.js!./node_modules/babel-loader/lib!./node_modules/vue-loader/lib/loaders/templateLoader.js??ref--6!./node_modules/cache-loader/dist/cjs.js??ref--1-0!./node_modules/vue-loader/lib??vue-loader-options!./src/components/metrics/ToggleMetricPieChart.vue?vue&type=template&id=5a723d6a&
18810
+ // CONCATENATED MODULE: ./node_modules/cache-loader/dist/cjs.js?{"cacheDirectory":"node_modules/.cache/vue-loader","cacheIdentifier":"041c37bc-vue-loader-template"}!./node_modules/cache-loader/dist/cjs.js??ref--13-0!./node_modules/thread-loader/dist/cjs.js!./node_modules/babel-loader/lib!./node_modules/vue-loader/lib/loaders/templateLoader.js??ref--6!./node_modules/cache-loader/dist/cjs.js??ref--1-0!./node_modules/vue-loader/lib??vue-loader-options!./src/components/metrics/ToggleMetricPieChart.vue?vue&type=template&id=5a723d6a&
19189
18811
  var ToggleMetricPieChartvue_type_template_id_5a723d6a_render = function render() {
19190
18812
  var _vm = this,
19191
- _c = _vm._self._c;
19192
-
18813
+ _c = _vm._self._c;
19193
18814
  return _c('div', [_c('h3', {
19194
18815
  staticClass: "toggle-metric metric-label"
19195
18816
  }, [_vm._v(_vm._s(_vm.label))]), _c('apexchart', {
@@ -19201,7 +18822,6 @@ var ToggleMetricPieChartvue_type_template_id_5a723d6a_render = function render()
19201
18822
  }
19202
18823
  })], 1);
19203
18824
  };
19204
-
19205
18825
  var ToggleMetricPieChartvue_type_template_id_5a723d6a_staticRenderFns = [];
19206
18826
 
19207
18827
  // CONCATENATED MODULE: ./src/components/metrics/ToggleMetricPieChart.vue?vue&type=template&id=5a723d6a&
@@ -19217,7 +18837,6 @@ var ToggleMetricPieChartvue_type_template_id_5a723d6a_staticRenderFns = [];
19217
18837
  colors: {
19218
18838
  type: [String]
19219
18839
  },
19220
-
19221
18840
  /**
19222
18841
  * Component's values
19223
18842
  */
@@ -19225,7 +18844,6 @@ var ToggleMetricPieChartvue_type_template_id_5a723d6a_staticRenderFns = [];
19225
18844
  type: Array,
19226
18845
  required: true
19227
18846
  },
19228
-
19229
18847
  /*
19230
18848
  * Component's height
19231
18849
  */
@@ -19233,7 +18851,6 @@ var ToggleMetricPieChartvue_type_template_id_5a723d6a_staticRenderFns = [];
19233
18851
  type: String,
19234
18852
  default: ""
19235
18853
  },
19236
-
19237
18854
  /**
19238
18855
  * Component's main label
19239
18856
  */
@@ -19241,7 +18858,6 @@ var ToggleMetricPieChartvue_type_template_id_5a723d6a_staticRenderFns = [];
19241
18858
  type: String,
19242
18859
  required: true
19243
18860
  },
19244
-
19245
18861
  /**
19246
18862
  * Component's label for each value
19247
18863
  */
@@ -19296,7 +18912,6 @@ var ToggleMetricPieChartvue_type_template_id_5a723d6a_staticRenderFns = [];
19296
18912
  }
19297
18913
  };
19298
18914
  }
19299
-
19300
18915
  }
19301
18916
  });
19302
18917
  // CONCATENATED MODULE: ./src/components/metrics/ToggleMetricPieChart.vue?vue&type=script&lang=js&
@@ -19321,11 +18936,10 @@ var ToggleMetricPieChart_component = normalizeComponent(
19321
18936
  )
19322
18937
 
19323
18938
  /* harmony default export */ var ToggleMetricPieChart = (ToggleMetricPieChart_component.exports);
19324
- // CONCATENATED MODULE: ./node_modules/cache-loader/dist/cjs.js?{"cacheDirectory":"node_modules/.cache/vue-loader","cacheIdentifier":"7b4cc503-vue-loader-template"}!./node_modules/cache-loader/dist/cjs.js??ref--13-0!./node_modules/thread-loader/dist/cjs.js!./node_modules/babel-loader/lib!./node_modules/vue-loader/lib/loaders/templateLoader.js??ref--6!./node_modules/cache-loader/dist/cjs.js??ref--1-0!./node_modules/vue-loader/lib??vue-loader-options!./src/components/metrics/ToggleMetricFunnelChart.vue?vue&type=template&id=f3f5710a&
18939
+ // CONCATENATED MODULE: ./node_modules/cache-loader/dist/cjs.js?{"cacheDirectory":"node_modules/.cache/vue-loader","cacheIdentifier":"041c37bc-vue-loader-template"}!./node_modules/cache-loader/dist/cjs.js??ref--13-0!./node_modules/thread-loader/dist/cjs.js!./node_modules/babel-loader/lib!./node_modules/vue-loader/lib/loaders/templateLoader.js??ref--6!./node_modules/cache-loader/dist/cjs.js??ref--1-0!./node_modules/vue-loader/lib??vue-loader-options!./src/components/metrics/ToggleMetricFunnelChart.vue?vue&type=template&id=f3f5710a&
19325
18940
  var ToggleMetricFunnelChartvue_type_template_id_f3f5710a_render = function render() {
19326
18941
  var _vm = this,
19327
- _c = _vm._self._c;
19328
-
18942
+ _c = _vm._self._c;
19329
18943
  return _c('div', {
19330
18944
  staticClass: "toggle-metric-funnel-container"
19331
18945
  }, [_c('div', {
@@ -19356,7 +18970,6 @@ var ToggleMetricFunnelChartvue_type_template_id_f3f5710a_render = function rende
19356
18970
  staticClass: "funnel-single-metric-container"
19357
18971
  }, [_vm._t("funnel4")], 2)])]);
19358
18972
  };
19359
-
19360
18973
  var ToggleMetricFunnelChartvue_type_template_id_f3f5710a_staticRenderFns = [];
19361
18974
 
19362
18975
  // CONCATENATED MODULE: ./src/components/metrics/ToggleMetricFunnelChart.vue?vue&type=template&id=f3f5710a&
@@ -19519,7 +19132,6 @@ Object.defineProperty(external_commonjs_vue_commonjs2_vue_root_Vue_default.a.pro
19519
19132
  get() {
19520
19133
  return toggle_event_bus;
19521
19134
  }
19522
-
19523
19135
  });
19524
19136
  /* harmony default export */ var src_0 = (Components);
19525
19137
  // CONCATENATED MODULE: ./node_modules/@vue/cli-service/lib/commands/build/entry-lib.js
@@ -19584,7 +19196,7 @@ module.exports = isSameDay
19584
19196
  /***/ "fdbf":
19585
19197
  /***/ (function(module, exports, __webpack_require__) {
19586
19198
 
19587
- /* eslint-disable es-x/no-symbol -- required for testing */
19199
+ /* eslint-disable es/no-symbol -- required for testing */
19588
19200
  var NATIVE_SYMBOL = __webpack_require__("04f8");
19589
19201
 
19590
19202
  module.exports = NATIVE_SYMBOL