jodit 3.9.3 → 3.9.4

This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
Files changed (85) hide show
  1. package/.idea/workspace.xml +129 -121
  2. package/CHANGELOG.MD +21 -5
  3. package/build/jodit.css +92 -33
  4. package/build/jodit.es2018.css +65 -29
  5. package/build/jodit.es2018.en.css +65 -29
  6. package/build/jodit.es2018.en.js +854 -466
  7. package/build/jodit.es2018.en.min.css +1 -1
  8. package/build/jodit.es2018.en.min.js +1 -1
  9. package/build/jodit.es2018.js +854 -466
  10. package/build/jodit.es2018.min.css +1 -1
  11. package/build/jodit.es2018.min.js +1 -1
  12. package/build/jodit.js +1804 -1360
  13. package/build/jodit.min.css +2 -2
  14. package/build/jodit.min.js +1 -1
  15. package/index.d.ts +10 -0
  16. package/package.json +1 -1
  17. package/src/config.ts +1 -1
  18. package/src/core/dom.ts +10 -3
  19. package/src/core/helpers/size/index.ts +1 -0
  20. package/src/core/helpers/size/object-size.ts +22 -0
  21. package/src/core/selection/select.ts +1 -0
  22. package/src/core/selection/style/api/{get-closest-wrapper.ts → extract.ts} +26 -43
  23. package/src/core/selection/style/api/finite-state-machine.ts +66 -0
  24. package/src/core/selection/style/api/index.ts +12 -5
  25. package/src/core/selection/style/api/{check-special-elements.ts → is-inside-invisible-element.ts} +1 -1
  26. package/src/core/selection/style/api/is-suit-element.ts +12 -1
  27. package/src/core/selection/style/api/toggle/toggle-css.ts +134 -0
  28. package/src/core/selection/style/api/toggle/toggle-ordered-list.ts +49 -0
  29. package/src/core/selection/style/api/toggle-commit-styles.ts +27 -0
  30. package/src/core/selection/style/api/wrap-and-commit-style.ts +68 -0
  31. package/src/core/selection/style/api/wrap-ordered-list.ts +37 -0
  32. package/src/core/selection/style/api/wrap-unwrapped-text.ts +1 -4
  33. package/src/core/selection/style/apply-style.ts +161 -97
  34. package/src/core/selection/style/commit-style.ts +13 -0
  35. package/src/core/ui/button/button/button.less +2 -0
  36. package/src/core/ui/helpers/buttons.ts +14 -6
  37. package/src/core/ui/list/list.less +1 -0
  38. package/src/core/ui/popup/popup.less +5 -3
  39. package/src/core/view/view-with-toolbar.ts +4 -0
  40. package/src/modules/status-bar/status-bar.less +27 -1
  41. package/src/modules/status-bar/status-bar.ts +15 -1
  42. package/src/modules/widget/tabs/tabs.less +1 -0
  43. package/src/plugins/bold.ts +2 -2
  44. package/src/plugins/font.ts +11 -1
  45. package/src/plugins/index.ts +1 -0
  46. package/src/plugins/mobile.ts +10 -14
  47. package/src/plugins/ordered-list.ts +40 -1
  48. package/src/plugins/powered-by-jodit.ts +39 -0
  49. package/src/plugins/print/preview.ts +9 -2
  50. package/src/plugins/resizer/resizer.less +10 -7
  51. package/src/plugins/resizer/resizer.ts +12 -14
  52. package/src/plugins/size/assests/resize-handler.svg +4 -0
  53. package/src/plugins/size/resize-handler.ts +4 -4
  54. package/src/plugins/size/size.less +6 -8
  55. package/src/plugins/source/source.ts +15 -1
  56. package/src/styles/themes/dark.less +11 -1
  57. package/src/types/style.d.ts +2 -0
  58. package/src/types/toolbar.d.ts +2 -1
  59. package/src/types/view.d.ts +1 -0
  60. package/types/core/dom.d.ts +2 -1
  61. package/types/core/helpers/size/index.d.ts +1 -0
  62. package/types/core/helpers/size/object-size.d.ts +7 -0
  63. package/types/core/selection/style/api/{get-closest-wrapper.d.ts → extract.d.ts} +6 -5
  64. package/types/core/selection/style/api/finite-state-machine.d.ts +21 -0
  65. package/types/core/selection/style/api/index.d.ts +12 -5
  66. package/types/core/selection/style/api/{check-special-elements.d.ts → is-inside-invisible-element.d.ts} +1 -1
  67. package/types/core/selection/style/api/is-suit-element.d.ts +9 -0
  68. package/types/core/selection/style/api/toggle/toggle-css.d.ts +11 -0
  69. package/types/core/selection/style/api/toggle/toggle-ordered-list.d.ts +11 -0
  70. package/types/core/selection/style/api/{toggle-styles.d.ts → toggle-commit-styles.d.ts} +1 -3
  71. package/types/core/selection/style/api/{post-process-list-element.d.ts → wrap-and-commit-style.d.ts} +3 -3
  72. package/types/core/selection/style/api/wrap-ordered-list.d.ts +12 -0
  73. package/types/core/selection/style/apply-style.d.ts +1 -4
  74. package/types/core/selection/style/commit-style.d.ts +7 -0
  75. package/types/core/ui/helpers/buttons.d.ts +2 -2
  76. package/types/core/view/view-with-toolbar.d.ts +2 -1
  77. package/types/modules/status-bar/status-bar.d.ts +6 -1
  78. package/types/plugins/index.d.ts +1 -0
  79. package/types/plugins/ordered-list.d.ts +8 -1
  80. package/types/plugins/powered-by-jodit.d.ts +12 -0
  81. package/types/types/style.d.ts +2 -0
  82. package/types/types/toolbar.d.ts +2 -1
  83. package/types/types/view.d.ts +1 -0
  84. package/src/core/selection/style/api/post-process-list-element.ts +0 -33
  85. package/src/core/selection/style/api/toggle-styles.ts +0 -74
@@ -1,7 +1,7 @@
1
1
  /*!
2
2
  * jodit - Jodit is awesome and usefully wysiwyg editor with filebrowser
3
3
  * Author: Chupurnov <chupurnov@gmail.com> (https://xdsoft.net/)
4
- * Version: v3.9.3
4
+ * Version: v3.9.4
5
5
  * Url: https://xdsoft.net/jodit/
6
6
  * License(s): MIT
7
7
  */
@@ -203,7 +203,7 @@ class Config {
203
203
  },
204
204
  {
205
205
  group: 'list',
206
- buttons: ['ul', 'ol']
206
+ buttons: []
207
207
  },
208
208
  {
209
209
  group: 'indent',
@@ -980,7 +980,7 @@ class EventsNative extends EventEmitter {
980
980
 
981
981
  // EXTERNAL MODULE: ./node_modules/tslib/tslib.es6.js
982
982
  var tslib_es6 = __webpack_require__(18);
983
- // EXTERNAL MODULE: ./src/core/helpers/index.ts + 32 modules
983
+ // EXTERNAL MODULE: ./src/core/helpers/index.ts + 33 modules
984
984
  var helpers = __webpack_require__(8);
985
985
  // EXTERNAL MODULE: ./src/core/decorators/index.ts + 10 modules
986
986
  var decorators = __webpack_require__(17);
@@ -1279,6 +1279,7 @@ __webpack_require__.d(__webpack_exports__, {
1279
1279
  "scrollIntoViewIfNeeded": function() { return /* reexport */ scrollIntoViewIfNeeded; },
1280
1280
  "set": function() { return /* reexport */ utils/* set */.t8; },
1281
1281
  "setTimeout": function() { return /* reexport */ set_timeout_setTimeout; },
1282
+ "size": function() { return /* reexport */ size; },
1282
1283
  "splitArray": function() { return /* reexport */ splitArray; },
1283
1284
  "sprintf": function() { return /* reexport */ string/* sprintf */.gB; },
1284
1285
  "stringify": function() { return /* reexport */ string/* stringify */.Pz; },
@@ -1920,6 +1921,23 @@ function position(elm, jodit, recurse = false) {
1920
1921
  };
1921
1922
  }
1922
1923
 
1924
+ ;// CONCATENATED MODULE: ./src/core/helpers/size/object-size.ts
1925
+ /*!
1926
+ * Jodit Editor (https://xdsoft.net/jodit/)
1927
+ * Released under MIT see LICENSE.txt in the project root for license information.
1928
+ * Copyright (c) 2013-2021 Valeriy Chupurnov. All rights reserved. https://xdsoft.net
1929
+ */
1930
+
1931
+ function size(subject) {
1932
+ if ((0,checker/* isString */.HD)(subject) || (0,checker/* isArray */.kJ)(subject)) {
1933
+ return subject.length;
1934
+ }
1935
+ if ((0,checker/* isPlainObject */.PO)(subject)) {
1936
+ return Object.keys(subject).length;
1937
+ }
1938
+ return 0;
1939
+ }
1940
+
1923
1941
  ;// CONCATENATED MODULE: ./src/core/helpers/size/index.ts
1924
1942
  /*!
1925
1943
  * Jodit Editor (https://xdsoft.net/jodit/)
@@ -1932,6 +1950,7 @@ function position(elm, jodit, recurse = false) {
1932
1950
 
1933
1951
 
1934
1952
 
1953
+
1935
1954
  ;// CONCATENATED MODULE: ./src/core/helpers/complete-url.ts
1936
1955
  /*!
1937
1956
  * Jodit Editor (https://xdsoft.net/jodit/)
@@ -2653,7 +2672,7 @@ var STATUSES;
2653
2672
  STATUSES["destructed"] = "destructed";
2654
2673
  })(STATUSES || (STATUSES = {}));
2655
2674
 
2656
- // EXTERNAL MODULE: ./src/core/helpers/index.ts + 32 modules
2675
+ // EXTERNAL MODULE: ./src/core/helpers/index.ts + 33 modules
2657
2676
  var helpers = __webpack_require__(8);
2658
2677
  // EXTERNAL MODULE: ./src/core/global.ts
2659
2678
  var global = __webpack_require__(13);
@@ -3168,8 +3187,12 @@ class Dom {
3168
3187
  static isEmptyTextNode(node) {
3169
3188
  return (Dom.isText(node) &&
3170
3189
  (!node.nodeValue ||
3171
- node.nodeValue.replace(_constants__WEBPACK_IMPORTED_MODULE_0__.INVISIBLE_SPACE_REG_EXP(), '')
3172
- .length === 0));
3190
+ node.nodeValue
3191
+ .replace(_constants__WEBPACK_IMPORTED_MODULE_0__.INVISIBLE_SPACE_REG_EXP(), '')
3192
+ .trim().length === 0));
3193
+ }
3194
+ static isEmptyContent(node) {
3195
+ return Dom.each(node, (elm) => Dom.isEmptyTextNode(elm));
3173
3196
  }
3174
3197
  static isEmpty(node, condNoEmptyElement = /^(img|svg|canvas|input|textarea|form)$/) {
3175
3198
  if (!node) {
@@ -3527,7 +3550,7 @@ class Dom {
3527
3550
  if (!Dom.isElement(element)) {
3528
3551
  return false;
3529
3552
  }
3530
- return _selection__WEBPACK_IMPORTED_MODULE_2__/* .Select.isMarker */ .P.isMarker(element) || (0,_helpers__WEBPACK_IMPORTED_MODULE_1__.attr)(element, _constants__WEBPACK_IMPORTED_MODULE_0__.TEMP_ATTR) === 'true';
3553
+ return _selection__WEBPACK_IMPORTED_MODULE_2__/* .Select.isMarker */ .Ph.isMarker(element) || (0,_helpers__WEBPACK_IMPORTED_MODULE_1__.attr)(element, _constants__WEBPACK_IMPORTED_MODULE_0__.TEMP_ATTR) === 'true';
3531
3554
  }
3532
3555
  static replaceTemporaryFromString(value) {
3533
3556
  return value.replace(/<([a-z]+)[^>]+data-jodit-temp[^>]+>(.+?)<\/\1>/gi, '$2');
@@ -3546,137 +3569,99 @@ class Dom {
3546
3569
 
3547
3570
  // EXPORTS
3548
3571
  __webpack_require__.d(__webpack_exports__, {
3549
- "R": function() { return /* reexport */ CommitStyle; },
3550
- "P": function() { return /* reexport */ Select; }
3572
+ "RP": function() { return /* reexport */ CommitStyle; },
3573
+ "Ph": function() { return /* reexport */ Select; }
3551
3574
  });
3552
3575
 
3576
+ // UNUSED EXPORTS: CHANGE, INITIAL, REPLACE, UNSET, UNWRAP, WRAP
3577
+
3553
3578
  // EXTERNAL MODULE: ./src/core/constants.ts
3554
3579
  var constants = __webpack_require__(2);
3580
+ // EXTERNAL MODULE: ./src/core/helpers/index.ts + 33 modules
3581
+ var helpers = __webpack_require__(8);
3555
3582
  // EXTERNAL MODULE: ./src/core/dom.ts
3556
3583
  var dom = __webpack_require__(15);
3557
- // EXTERNAL MODULE: ./src/core/helpers/index.ts + 32 modules
3558
- var helpers = __webpack_require__(8);
3559
- ;// CONCATENATED MODULE: ./src/core/selection/style/api/is-normal-node.ts
3584
+ // EXTERNAL MODULE: ./src/core/global.ts
3585
+ var global = __webpack_require__(13);
3586
+ ;// CONCATENATED MODULE: ./src/core/selection/style/api/toggle/toggle-css.ts
3560
3587
  /*!
3561
3588
  * Jodit Editor (https://xdsoft.net/jodit/)
3562
3589
  * Released under MIT see LICENSE.txt in the project root for license information.
3563
3590
  * Copyright (c) 2013-2021 Valeriy Chupurnov. All rights reserved. https://xdsoft.net
3564
3591
  */
3565
3592
 
3566
- function isNormalNode(elm) {
3567
- return Boolean(elm && !dom/* Dom.isEmptyTextNode */.i.isEmptyTextNode(elm) && !dom/* Dom.isTemporary */.i.isTemporary(elm));
3568
- }
3569
-
3570
- ;// CONCATENATED MODULE: ./src/core/selection/style/api/element-has-same-style.ts
3571
- /*!
3572
- * Jodit Editor (https://xdsoft.net/jodit/)
3573
- * Released under MIT see LICENSE.txt in the project root for license information.
3574
- * Copyright (c) 2013-2021 Valeriy Chupurnov. All rights reserved. https://xdsoft.net
3575
- */
3576
3593
 
3577
3594
 
3578
- function elementHasSameStyle(elm, rules) {
3579
- return Boolean(!dom/* Dom.isTag */.i.isTag(elm, 'font') &&
3580
- dom/* Dom.isHTMLElement */.i.isHTMLElement(elm) &&
3581
- Object.keys(rules).every(property => {
3582
- const value = (0,helpers.css)(elm, property, true);
3583
- return (!(0,helpers.isVoid)(value) &&
3584
- value !== '' &&
3585
- !(0,helpers.isVoid)(rules[property]) &&
3586
- (0,helpers.normalizeCssValue)(property, rules[property])
3587
- .toString()
3588
- .toLowerCase() === value.toString().toLowerCase());
3589
- }));
3590
- }
3591
- function elementHasSameStyleKeys(elm, rules) {
3592
- return Boolean(!dom/* Dom.isTag */.i.isTag(elm, 'font') &&
3593
- dom/* Dom.isHTMLElement */.i.isHTMLElement(elm) &&
3594
- Object.keys(rules).every(property => !(0,helpers.isVoid)((0,helpers.css)(elm, property, true))));
3595
- }
3596
3595
 
3597
- ;// CONCATENATED MODULE: ./src/core/selection/style/api/is-suit-element.ts
3598
-
3599
-
3600
-
3601
- function isSuitElement(commitStyle, elm, strict) {
3602
- if (!elm) {
3603
- return false;
3604
- }
3605
- const { element, elementIsDefault, options } = commitStyle;
3606
- const elmHasSameStyle = Boolean(options.style && elementHasSameStyle(elm, options.style));
3607
- const elmIsSame = elm.nodeName.toLowerCase() === element;
3608
- if (((!elementIsDefault || !strict) && elmIsSame) ||
3609
- (elmHasSameStyle && isNormalNode(elm))) {
3610
- return true;
3611
- }
3612
- return Boolean(!elmIsSame && !strict && elementIsDefault && dom/* Dom.isInlineBlock */.i.isInlineBlock(elm));
3613
- }
3614
- function isSameStyleChild(commitStyle, elm) {
3615
- const { element, options } = commitStyle;
3616
- if (!elm || !isNormalNode(elm)) {
3617
- return false;
3596
+ function toggleCSS(commitStyle, elm, jodit, mode, dry = false) {
3597
+ const { style, className } = commitStyle.options;
3598
+ if (style && (0,helpers.size)(style) > 0) {
3599
+ Object.keys(style).forEach((rule) => {
3600
+ const inlineValue = elm.style.getPropertyValue((0,helpers.kebabCase)(rule));
3601
+ if (inlineValue === '' && style[rule] == null) {
3602
+ return;
3603
+ }
3604
+ if (getNativeCSSValue(jodit, elm, rule) ===
3605
+ (0,helpers.normalizeCssValue)(rule, style[rule])) {
3606
+ !dry && (0,helpers.css)(elm, rule, null);
3607
+ mode = UNSET;
3608
+ mode = removeExtraCSS(commitStyle, elm, mode);
3609
+ return;
3610
+ }
3611
+ mode = CHANGE;
3612
+ !dry && (0,helpers.css)(elm, rule, style[rule]);
3613
+ });
3618
3614
  }
3619
- const elmIsSame = elm.nodeName.toLowerCase() === element;
3620
- const elmHasSameStyle = Boolean(options.style && elementHasSameStyleKeys(elm, options.style));
3621
- return elmIsSame && elmHasSameStyle;
3622
- }
3623
-
3624
- ;// CONCATENATED MODULE: ./src/core/selection/style/api/get-suit-parent.ts
3625
- /*!
3626
- * Jodit Editor (https://xdsoft.net/jodit/)
3627
- * Released under MIT see LICENSE.txt in the project root for license information.
3628
- * Copyright (c) 2013-2021 Valeriy Chupurnov. All rights reserved. https://xdsoft.net
3629
- */
3630
-
3631
-
3632
-
3633
- function getSuitParent(style, node, root) {
3634
- const { parentNode } = node;
3635
- if (dom/* Dom.isHTMLElement */.i.isHTMLElement(parentNode) &&
3636
- !dom/* Dom.next */.i.next(node, isNormalNode, parentNode) &&
3637
- !dom/* Dom.prev */.i.prev(node, isNormalNode, parentNode) &&
3638
- isSuitElement(style, parentNode, false) &&
3639
- parentNode !== root &&
3640
- (!dom/* Dom.isBlock */.i.isBlock(parentNode) || style.elementIsBlock)) {
3641
- return parentNode;
3615
+ if (className) {
3616
+ if (elm.classList.contains(className)) {
3617
+ elm.classList.remove(className);
3618
+ mode = UNSET;
3619
+ }
3620
+ else {
3621
+ elm.classList.add(className);
3622
+ mode = CHANGE;
3623
+ }
3642
3624
  }
3643
- return null;
3625
+ return mode;
3644
3626
  }
3645
-
3646
- ;// CONCATENATED MODULE: ./src/core/selection/style/api/get-suit-child.ts
3647
- /*!
3648
- * Jodit Editor (https://xdsoft.net/jodit/)
3649
- * Released under MIT see LICENSE.txt in the project root for license information.
3650
- * Copyright (c) 2013-2021 Valeriy Chupurnov. All rights reserved. https://xdsoft.net
3651
- */
3652
-
3653
-
3654
-
3655
- function getSuitChild(style, font) {
3656
- let { firstChild: child } = font;
3657
- while (child && !isNormalNode(child)) {
3658
- child = child.nextSibling;
3659
- if (!child) {
3660
- return null;
3627
+ function removeExtraCSS(commitStyle, elm, mode) {
3628
+ if (!(0,helpers.attr)(elm, 'style')) {
3629
+ (0,helpers.attr)(elm, 'style', null);
3630
+ if (elm.tagName.toLowerCase() === commitStyle.defaultTag) {
3631
+ dom/* Dom.unwrap */.i.unwrap(elm);
3632
+ mode = UNWRAP;
3661
3633
  }
3662
3634
  }
3663
- if (child &&
3664
- !dom/* Dom.next */.i.next(child, isNormalNode, font) &&
3665
- isSuitElement(style, child, false)) {
3666
- return child;
3635
+ return mode;
3636
+ }
3637
+ function getShadowRoot(jodit) {
3638
+ var _a;
3639
+ if ((0,helpers.dataBind)(jodit, 'shadowRoot') !== undefined) {
3640
+ return (0,helpers.dataBind)(jodit, 'shadowRoot');
3667
3641
  }
3668
- return null;
3642
+ const container = (0,global/* getContainer */.ZO)(jodit, function Utils() { });
3643
+ const iframe = document.createElement('iframe');
3644
+ (0,helpers.css)(iframe, {
3645
+ width: 0,
3646
+ height: 0,
3647
+ position: 'absolute',
3648
+ border: 0
3649
+ });
3650
+ iframe.src = 'about:blank';
3651
+ container.appendChild(iframe);
3652
+ const doc = (_a = iframe.contentWindow) === null || _a === void 0 ? void 0 : _a.document;
3653
+ const shadowRoot = !doc ? jodit.od.body : doc.body;
3654
+ (0,helpers.dataBind)(jodit, 'shadowRoot', shadowRoot);
3655
+ return shadowRoot;
3669
3656
  }
3670
-
3671
- ;// CONCATENATED MODULE: ./src/core/selection/style/api/check-special-elements.ts
3672
- /*!
3673
- * Jodit Editor (https://xdsoft.net/jodit/)
3674
- * Released under MIT see LICENSE.txt in the project root for license information.
3675
- * Copyright (c) 2013-2021 Valeriy Chupurnov. All rights reserved. https://xdsoft.net
3676
- */
3677
-
3678
- function checkSpecialElements(font, root) {
3679
- return Boolean(dom/* Dom.closest */.i.closest(font, ['style', 'script'], root));
3657
+ function getNativeCSSValue(jodit, elm, key) {
3658
+ const newElm = jodit.create.element(elm.tagName.toLowerCase());
3659
+ newElm.style.cssText = elm.style.cssText;
3660
+ const root = getShadowRoot(jodit);
3661
+ root.appendChild(newElm);
3662
+ const result = (0,helpers.css)(newElm, key);
3663
+ dom/* Dom.safeRemove */.i.safeRemove(newElm);
3664
+ return result;
3680
3665
  }
3681
3666
 
3682
3667
  // EXTERNAL MODULE: ./node_modules/tslib/tslib.es6.js
@@ -4489,6 +4474,9 @@ class Select {
4489
4474
  return currentBox.previousElementSibling;
4490
4475
  }
4491
4476
  }
4477
+ (0,tslib_es6/* __decorate */.gn)([
4478
+ decorators.autobind
4479
+ ], Select.prototype, "createRange", null);
4492
4480
  (0,tslib_es6/* __decorate */.gn)([
4493
4481
  decorators.autobind
4494
4482
  ], Select.prototype, "focus", null);
@@ -4502,7 +4490,7 @@ class Select {
4502
4490
  decorators.autobind
4503
4491
  ], Select.prototype, "setCursorIn", null);
4504
4492
 
4505
- ;// CONCATENATED MODULE: ./src/core/selection/style/api/get-closest-wrapper.ts
4493
+ ;// CONCATENATED MODULE: ./src/core/selection/style/api/extract.ts
4506
4494
  /*!
4507
4495
  * Jodit Editor (https://xdsoft.net/jodit/)
4508
4496
  * Released under MIT see LICENSE.txt in the project root for license information.
@@ -4511,29 +4499,20 @@ class Select {
4511
4499
 
4512
4500
 
4513
4501
 
4514
-
4515
- function getClosestWrapper(style, font, root, getRange) {
4516
- const wrapper = dom/* Dom.closest */.i.closest(font, node => isSuitElement(style, node, true), root);
4517
- if (wrapper) {
4518
- if (style.elementIsBlock) {
4519
- return wrapper;
4520
- }
4521
- const range = getRange();
4522
- const leftEdge = Select.isMarker(font.previousSibling)
4523
- ? font.previousSibling
4524
- : font;
4525
- range.setStartBefore(wrapper);
4526
- range.setEndBefore(leftEdge);
4527
- extractAndMove(wrapper, range, true);
4528
- const rightEdge = Select.isMarker(font.nextSibling)
4529
- ? font.nextSibling
4530
- : font;
4531
- range.setStartAfter(rightEdge);
4532
- range.setEndAfter(wrapper);
4533
- extractAndMove(wrapper, range, false);
4534
- return wrapper;
4535
- }
4536
- return null;
4502
+ function extractSelectedPart(wrapper, font, jodit) {
4503
+ const range = jodit.s.createRange();
4504
+ const leftEdge = Select.isMarker(font.previousSibling)
4505
+ ? font.previousSibling
4506
+ : font;
4507
+ range.setStartBefore(wrapper);
4508
+ range.setEndBefore(leftEdge);
4509
+ extractAndMove(wrapper, range, true);
4510
+ const rightEdge = Select.isMarker(font.nextSibling)
4511
+ ? font.nextSibling
4512
+ : font;
4513
+ range.setStartAfter(rightEdge);
4514
+ range.setEndAfter(wrapper);
4515
+ extractAndMove(wrapper, range, false);
4537
4516
  }
4538
4517
  function extractAndMove(wrapper, range, left) {
4539
4518
  const fragment = range.extractContents();
@@ -4546,6 +4525,225 @@ function extractAndMove(wrapper, range, left) {
4546
4525
  }
4547
4526
  }
4548
4527
 
4528
+ ;// CONCATENATED MODULE: ./src/core/selection/style/api/toggle/toggle-ordered-list.ts
4529
+ /*!
4530
+ * Jodit Editor (https://xdsoft.net/jodit/)
4531
+ * Released under MIT see LICENSE.txt in the project root for license information.
4532
+ * Copyright (c) 2013-2021 Valeriy Chupurnov. All rights reserved. https://xdsoft.net
4533
+ */
4534
+
4535
+
4536
+
4537
+
4538
+ function toggleOrderedList(style, li, jodit, mode) {
4539
+ if (!li) {
4540
+ return mode;
4541
+ }
4542
+ const list = li.parentElement;
4543
+ if (!list) {
4544
+ return mode;
4545
+ }
4546
+ if (list.tagName.toLowerCase() !== style.element) {
4547
+ const newList = dom/* Dom.replace */.i.replace(list, style.element, jodit.createInside);
4548
+ toggleCSS(style, newList, jodit, mode);
4549
+ return REPLACE;
4550
+ }
4551
+ if (toggleCSS(style, li.parentElement, jodit, INITIAL, true) === CHANGE) {
4552
+ return toggleCSS(style, li.parentElement, jodit, mode);
4553
+ }
4554
+ extractSelectedPart(list, li, jodit);
4555
+ dom/* Dom.unwrap */.i.unwrap(li.parentElement);
4556
+ dom/* Dom.replace */.i.replace(li, jodit.o.enter, jodit.createInside);
4557
+ return mode;
4558
+ }
4559
+
4560
+ ;// CONCATENATED MODULE: ./src/core/selection/style/api/element-has-same-style.ts
4561
+ /*!
4562
+ * Jodit Editor (https://xdsoft.net/jodit/)
4563
+ * Released under MIT see LICENSE.txt in the project root for license information.
4564
+ * Copyright (c) 2013-2021 Valeriy Chupurnov. All rights reserved. https://xdsoft.net
4565
+ */
4566
+
4567
+
4568
+ function elementHasSameStyle(elm, rules) {
4569
+ return Boolean(!dom/* Dom.isTag */.i.isTag(elm, 'font') &&
4570
+ dom/* Dom.isHTMLElement */.i.isHTMLElement(elm) &&
4571
+ Object.keys(rules).every(property => {
4572
+ const value = (0,helpers.css)(elm, property, true);
4573
+ return (!(0,helpers.isVoid)(value) &&
4574
+ value !== '' &&
4575
+ !(0,helpers.isVoid)(rules[property]) &&
4576
+ (0,helpers.normalizeCssValue)(property, rules[property])
4577
+ .toString()
4578
+ .toLowerCase() === value.toString().toLowerCase());
4579
+ }));
4580
+ }
4581
+ function elementHasSameStyleKeys(elm, rules) {
4582
+ return Boolean(!dom/* Dom.isTag */.i.isTag(elm, 'font') &&
4583
+ dom/* Dom.isHTMLElement */.i.isHTMLElement(elm) &&
4584
+ Object.keys(rules).every(property => !(0,helpers.isVoid)((0,helpers.css)(elm, property, true))));
4585
+ }
4586
+
4587
+ ;// CONCATENATED MODULE: ./src/core/selection/style/api/finite-state-machine.ts
4588
+ /*!
4589
+ * Jodit Editor (https://xdsoft.net/jodit/)
4590
+ * Released under MIT see LICENSE.txt in the project root for license information.
4591
+ * Copyright (c) 2013-2021 Valeriy Chupurnov. All rights reserved. https://xdsoft.net
4592
+ */
4593
+ class FiniteStateMachine {
4594
+ constructor(state, transitions) {
4595
+ this.state = state;
4596
+ this.transitions = transitions;
4597
+ this.subState = '';
4598
+ this.silent = true;
4599
+ }
4600
+ setState(state, subState) {
4601
+ this.state = state;
4602
+ if (subState != null) {
4603
+ this.subState = subState;
4604
+ }
4605
+ }
4606
+ getState() {
4607
+ return this.state;
4608
+ }
4609
+ getSubState() {
4610
+ return this.subState;
4611
+ }
4612
+ disableSilent() {
4613
+ this.silent = false;
4614
+ }
4615
+ dispatch(actionName, ...attrs) {
4616
+ const action = this.transitions[this.state][actionName];
4617
+ if (action) {
4618
+ if (!this.silent) {
4619
+ console.log('State: ' + this.state, 'Action: ' + actionName);
4620
+ }
4621
+ const res = action.call(this, ...attrs);
4622
+ if (!this.silent) {
4623
+ console.log('State: ' + this.state);
4624
+ }
4625
+ return res;
4626
+ }
4627
+ if (!this.silent) {
4628
+ throw new Error('invalid action: ' + this.state + '.' + actionName);
4629
+ }
4630
+ return;
4631
+ }
4632
+ }
4633
+
4634
+ ;// CONCATENATED MODULE: ./src/core/selection/style/api/is-normal-node.ts
4635
+ /*!
4636
+ * Jodit Editor (https://xdsoft.net/jodit/)
4637
+ * Released under MIT see LICENSE.txt in the project root for license information.
4638
+ * Copyright (c) 2013-2021 Valeriy Chupurnov. All rights reserved. https://xdsoft.net
4639
+ */
4640
+
4641
+ function isNormalNode(elm) {
4642
+ return Boolean(elm && !dom/* Dom.isEmptyTextNode */.i.isEmptyTextNode(elm) && !dom/* Dom.isTemporary */.i.isTemporary(elm));
4643
+ }
4644
+
4645
+ ;// CONCATENATED MODULE: ./src/core/selection/style/api/is-suit-element.ts
4646
+
4647
+
4648
+
4649
+ function isSuitElement(commitStyle, elm, strict) {
4650
+ if (!elm) {
4651
+ return false;
4652
+ }
4653
+ const { element, elementIsDefault, options } = commitStyle;
4654
+ const elmHasSameStyle = Boolean(options.style && elementHasSameStyle(elm, options.style));
4655
+ const elmIsSame = elm.nodeName.toLowerCase() === element ||
4656
+ (dom/* Dom.isTag */.i.isTag(elm, ['ul', 'ol']) && commitStyle.elementIsList);
4657
+ if (((!elementIsDefault || !strict) && elmIsSame) ||
4658
+ (elmHasSameStyle && isNormalNode(elm))) {
4659
+ return true;
4660
+ }
4661
+ return Boolean(!elmIsSame && !strict && elementIsDefault && dom/* Dom.isInlineBlock */.i.isInlineBlock(elm));
4662
+ }
4663
+ function isSameStyleChild(commitStyle, elm) {
4664
+ const { element, options } = commitStyle;
4665
+ if (!elm || !isNormalNode(elm)) {
4666
+ return false;
4667
+ }
4668
+ const elmIsSame = elm.nodeName.toLowerCase() === element;
4669
+ const elmHasSameStyle = Boolean(options.style && elementHasSameStyleKeys(elm, options.style));
4670
+ return elmIsSame && elmHasSameStyle;
4671
+ }
4672
+
4673
+ ;// CONCATENATED MODULE: ./src/core/selection/style/api/get-suit-child.ts
4674
+ /*!
4675
+ * Jodit Editor (https://xdsoft.net/jodit/)
4676
+ * Released under MIT see LICENSE.txt in the project root for license information.
4677
+ * Copyright (c) 2013-2021 Valeriy Chupurnov. All rights reserved. https://xdsoft.net
4678
+ */
4679
+
4680
+
4681
+
4682
+ function getSuitChild(style, font) {
4683
+ let { firstChild: child } = font;
4684
+ while (child && !isNormalNode(child)) {
4685
+ child = child.nextSibling;
4686
+ if (!child) {
4687
+ return null;
4688
+ }
4689
+ }
4690
+ if (child &&
4691
+ !dom/* Dom.next */.i.next(child, isNormalNode, font) &&
4692
+ isSuitElement(style, child, false)) {
4693
+ return child;
4694
+ }
4695
+ return null;
4696
+ }
4697
+
4698
+ ;// CONCATENATED MODULE: ./src/core/selection/style/api/get-suit-parent.ts
4699
+ /*!
4700
+ * Jodit Editor (https://xdsoft.net/jodit/)
4701
+ * Released under MIT see LICENSE.txt in the project root for license information.
4702
+ * Copyright (c) 2013-2021 Valeriy Chupurnov. All rights reserved. https://xdsoft.net
4703
+ */
4704
+
4705
+
4706
+
4707
+ function getSuitParent(style, node, root) {
4708
+ const { parentNode } = node;
4709
+ if (dom/* Dom.isHTMLElement */.i.isHTMLElement(parentNode) &&
4710
+ !dom/* Dom.next */.i.next(node, isNormalNode, parentNode) &&
4711
+ !dom/* Dom.prev */.i.prev(node, isNormalNode, parentNode) &&
4712
+ isSuitElement(style, parentNode, false) &&
4713
+ parentNode !== root &&
4714
+ (!dom/* Dom.isBlock */.i.isBlock(parentNode) || style.elementIsBlock)) {
4715
+ return parentNode;
4716
+ }
4717
+ return null;
4718
+ }
4719
+
4720
+ ;// CONCATENATED MODULE: ./src/core/selection/style/api/is-inside-invisible-element.ts
4721
+ /*!
4722
+ * Jodit Editor (https://xdsoft.net/jodit/)
4723
+ * Released under MIT see LICENSE.txt in the project root for license information.
4724
+ * Copyright (c) 2013-2021 Valeriy Chupurnov. All rights reserved. https://xdsoft.net
4725
+ */
4726
+
4727
+ function isInsideInvisibleElement(font, root) {
4728
+ return Boolean(dom/* Dom.closest */.i.closest(font, ['style', 'script'], root));
4729
+ }
4730
+
4731
+ ;// CONCATENATED MODULE: ./src/core/selection/style/api/toggle-commit-styles.ts
4732
+ /*!
4733
+ * Jodit Editor (https://xdsoft.net/jodit/)
4734
+ * Released under MIT see LICENSE.txt in the project root for license information.
4735
+ * Copyright (c) 2013-2021 Valeriy Chupurnov. All rights reserved. https://xdsoft.net
4736
+ */
4737
+
4738
+ function toggleCommitStyles(commitStyle, elm) {
4739
+ if (commitStyle.elementIsBlock ||
4740
+ (dom/* Dom.isTag */.i.isTag(elm, commitStyle.element) && !commitStyle.elementIsDefault)) {
4741
+ dom/* Dom.unwrap */.i.unwrap(elm);
4742
+ return true;
4743
+ }
4744
+ return false;
4745
+ }
4746
+
4549
4747
  ;// CONCATENATED MODULE: ./src/core/selection/style/api/unwrap-children.ts
4550
4748
  /*!
4551
4749
  * Jodit Editor (https://xdsoft.net/jodit/)
@@ -4601,24 +4799,6 @@ function unwrapChildren(style, font) {
4601
4799
  return Boolean(firstElementSuit);
4602
4800
  }
4603
4801
 
4604
- ;// CONCATENATED MODULE: ./src/core/selection/style/api/post-process-list-element.ts
4605
- /*!
4606
- * Jodit Editor (https://xdsoft.net/jodit/)
4607
- * Released under MIT see LICENSE.txt in the project root for license information.
4608
- * Copyright (c) 2013-2021 Valeriy Chupurnov. All rights reserved. https://xdsoft.net
4609
- */
4610
-
4611
- function postProcessListElement(style, wrapper, ci) {
4612
- if (/^(OL|UL)$/i.test(style.element) &&
4613
- !dom/* Dom.isTag */.i.isTag(wrapper.firstElementChild, 'li')) {
4614
- const li = dom/* Dom.replace */.i.replace(wrapper, 'li', ci), ul = dom/* Dom.wrap */.i.wrap(li, style.element, ci);
4615
- if (ul) {
4616
- return ul;
4617
- }
4618
- }
4619
- return wrapper;
4620
- }
4621
-
4622
4802
  ;// CONCATENATED MODULE: ./src/core/selection/style/api/wrap-unwrapped-text.ts
4623
4803
  /*!
4624
4804
  * Jodit Editor (https://xdsoft.net/jodit/)
@@ -4626,7 +4806,6 @@ function postProcessListElement(style, wrapper, ci) {
4626
4806
  * Copyright (c) 2013-2021 Valeriy Chupurnov. All rights reserved. https://xdsoft.net
4627
4807
  */
4628
4808
 
4629
-
4630
4809
  function wrapUnwrappedText(style, elm, jodit, getRange) {
4631
4810
  const root = jodit.editor, ci = jodit.createInside, edge = (n, key = 'previousSibling') => {
4632
4811
  let edgeNode = n, node = n;
@@ -4657,11 +4836,10 @@ function wrapUnwrappedText(style, elm, jodit, getRange) {
4657
4836
  range.setStartBefore(start);
4658
4837
  range.setEndAfter(end);
4659
4838
  const fragment = range.extractContents();
4660
- let wrapper = ci.element(style.element);
4839
+ const wrapper = ci.element(style.element);
4661
4840
  wrapper.appendChild(fragment);
4662
4841
  range.insertNode(wrapper);
4663
4842
  if (style.elementIsBlock) {
4664
- wrapper = postProcessListElement(style, wrapper, ci);
4665
4843
  if (dom/* Dom.isEmpty */.i.isEmpty(wrapper) &&
4666
4844
  !dom/* Dom.isTag */.i.isTag(wrapper.firstElementChild, 'br')) {
4667
4845
  wrapper.appendChild(ci.element('br'));
@@ -4670,46 +4848,67 @@ function wrapUnwrappedText(style, elm, jodit, getRange) {
4670
4848
  return wrapper;
4671
4849
  }
4672
4850
 
4673
- ;// CONCATENATED MODULE: ./src/core/selection/style/api/toggle-styles.ts
4851
+ ;// CONCATENATED MODULE: ./src/core/selection/style/api/wrap-ordered-list.ts
4674
4852
  /*!
4675
4853
  * Jodit Editor (https://xdsoft.net/jodit/)
4676
4854
  * Released under MIT see LICENSE.txt in the project root for license information.
4677
4855
  * Copyright (c) 2013-2021 Valeriy Chupurnov. All rights reserved. https://xdsoft.net
4678
4856
  */
4679
4857
 
4680
-
4681
- function toggleStyles(style, elm, wrap) {
4682
- const { options: { style: styles }, defaultTag, element } = style;
4683
- const tag = elm.nodeName.toLowerCase(), isStyleCommit = style.elementIsDefault && dom/* Dom.isInlineBlock */.i.isInlineBlock(elm);
4684
- if (styles && (tag === defaultTag || isStyleCommit)) {
4685
- Object.keys(styles).forEach(rule => {
4686
- if (wrap === false ||
4687
- (0,helpers.css)(elm, rule) ===
4688
- (0,helpers.normalizeCssValue)(rule, styles[rule])) {
4689
- (0,helpers.css)(elm, rule, '');
4690
- if (wrap == null) {
4691
- wrap = false;
4692
- }
4693
- }
4694
- else {
4695
- (0,helpers.css)(elm, rule, styles[rule]);
4696
- if (wrap == null) {
4697
- wrap = true;
4698
- }
4699
- }
4700
- });
4858
+ function wrapOrderedList(commitStyle, wrapper, jodit) {
4859
+ const newWrapper = dom/* Dom.replace */.i.replace(wrapper, 'li', jodit.createInside);
4860
+ let list = newWrapper.previousElementSibling || newWrapper.nextElementSibling;
4861
+ if (!dom/* Dom.isTag */.i.isTag(list, ['ul', 'ol'])) {
4862
+ list = jodit.createInside.element(commitStyle.element);
4863
+ dom/* Dom.before */.i.before(newWrapper, list);
4701
4864
  }
4702
- const isBlock = dom/* Dom.isBlock */.i.isBlock(elm);
4703
- const isSuitableInline = !isBlock &&
4704
- (!(0,helpers.attr)(elm, 'style') || (tag !== defaultTag && tag === element));
4705
- const isSameBlockElement = !isSuitableInline && isBlock && tag === element;
4706
- if (isSuitableInline || isSameBlockElement) {
4707
- dom/* Dom.unwrap */.i.unwrap(elm);
4708
- if (wrap == null) {
4709
- wrap = false;
4865
+ if (newWrapper.previousElementSibling === list) {
4866
+ dom/* Dom.append */.i.append(list, newWrapper);
4867
+ }
4868
+ else {
4869
+ dom/* Dom.prepend */.i.prepend(list, newWrapper);
4870
+ }
4871
+ return list;
4872
+ }
4873
+
4874
+ ;// CONCATENATED MODULE: ./src/core/selection/style/api/wrap-and-commit-style.ts
4875
+ /*!
4876
+ * Jodit Editor (https://xdsoft.net/jodit/)
4877
+ * Released under MIT see LICENSE.txt in the project root for license information.
4878
+ * Copyright (c) 2013-2021 Valeriy Chupurnov. All rights reserved. https://xdsoft.net
4879
+ */
4880
+
4881
+
4882
+
4883
+
4884
+ function wrapAndCommitStyle(commitStyle, font, jodit) {
4885
+ const wrapper = findOrCreateWrapper(commitStyle, font, jodit);
4886
+ return commitStyle.elementIsList
4887
+ ? wrapOrderedList(commitStyle, wrapper, jodit)
4888
+ : dom/* Dom.replace */.i.replace(wrapper, commitStyle.element, jodit.createInside, true);
4889
+ }
4890
+ function findOrCreateWrapper(commitStyle, font, jodit) {
4891
+ if (commitStyle.elementIsBlock) {
4892
+ const box = dom/* Dom.up */.i.up(font, node => dom/* Dom.isBlock */.i.isBlock(node) &&
4893
+ !dom/* Dom.isTag */.i.isTag(node, [
4894
+ 'td',
4895
+ 'th',
4896
+ 'tr',
4897
+ 'tbody',
4898
+ 'table',
4899
+ 'li',
4900
+ 'ul',
4901
+ 'ol'
4902
+ ]), jodit.editor);
4903
+ if (box) {
4904
+ return box;
4710
4905
  }
4711
4906
  }
4712
- return wrap;
4907
+ if (commitStyle.elementIsBlock) {
4908
+ return wrapUnwrappedText(commitStyle, font, jodit, jodit.s.createRange);
4909
+ }
4910
+ (0,helpers.attr)(font, 'size', null);
4911
+ return font;
4713
4912
  }
4714
4913
 
4715
4914
  ;// CONCATENATED MODULE: ./src/core/selection/style/api/index.ts
@@ -4727,6 +4926,13 @@ function toggleStyles(style, elm, wrap) {
4727
4926
 
4728
4927
 
4729
4928
 
4929
+
4930
+
4931
+
4932
+
4933
+
4934
+
4935
+
4730
4936
  ;// CONCATENATED MODULE: ./src/core/selection/style/apply-style.ts
4731
4937
  /*!
4732
4938
  * Jodit Editor (https://xdsoft.net/jodit/)
@@ -4736,70 +4942,137 @@ function toggleStyles(style, elm, wrap) {
4736
4942
 
4737
4943
 
4738
4944
 
4739
- function ApplyStyle(jodit, style) {
4740
- const { s: sel } = jodit, rng = () => sel.createRange();
4741
- let wrap = null;
4742
- sel.save();
4743
- (0,helpers.normalizeNode)(sel.area.firstChild);
4744
- const gen = jodit.s.wrapInTagGen();
4745
- let font = gen.next();
4746
- while (!font.done) {
4747
- wrap = applyToElement(style, font.value, rng, jodit, wrap);
4748
- font = gen.next();
4749
- }
4750
- sel.restore();
4751
- }
4752
- function applyToElement(style, font, range, jodit, wrap) {
4753
- const root = jodit.editor;
4754
- if (checkSpecialElements(font, root)) {
4755
- return wrap;
4756
- }
4757
- const toggleNode = getSuitParent(style, font, root) ||
4758
- getSuitChild(style, font) ||
4759
- getClosestWrapper(style, font, root, range);
4760
- if (toggleNode) {
4761
- return toggleStyles(style, toggleNode, wrap);
4762
- }
4763
- if (unwrapChildren(style, font)) {
4764
- return wrap;
4765
- }
4766
- if (wrap == null) {
4767
- wrap = true;
4768
- }
4769
- if (!wrap) {
4770
- return wrap;
4771
- }
4772
- let wrapper = font;
4773
- if (style.elementIsBlock) {
4774
- const ulReg = /^(ul|ol|li|td|th|tr|tbody|table)$/i;
4775
- const box = dom/* Dom.up */.i.up(font, node => {
4776
- if (dom/* Dom.isBlock */.i.isBlock(node)) {
4777
- if (ulReg.test(style.element) ||
4778
- !ulReg.test(node.nodeName)) {
4779
- return true;
4945
+
4946
+
4947
+ function ApplyStyle(jodit, cs) {
4948
+ const { s: sel, editor } = jodit;
4949
+ const fsm = new FiniteStateMachine('start', {
4950
+ start: {
4951
+ start() {
4952
+ sel.save();
4953
+ (0,helpers.normalizeNode)(editor.firstChild);
4954
+ this.setState('generator');
4955
+ }
4956
+ },
4957
+ generator: {
4958
+ initGenerator() {
4959
+ return jodit.s.wrapInTagGen();
4960
+ },
4961
+ nextFont(gen) {
4962
+ const font = gen.next();
4963
+ if (font.done) {
4964
+ this.setState('end');
4965
+ return;
4966
+ }
4967
+ if (isInsideInvisibleElement(font.value, editor) ||
4968
+ dom/* Dom.isEmptyContent */.i.isEmptyContent(font.value)) {
4969
+ return;
4970
+ }
4971
+ this.setState('check');
4972
+ return font.value;
4973
+ }
4974
+ },
4975
+ check: {
4976
+ work(font) {
4977
+ let elm = getSuitParent(cs, font, jodit.editor) ||
4978
+ getSuitChild(cs, font);
4979
+ if (elm) {
4980
+ this.setState('wholeElement');
4981
+ return elm;
4982
+ }
4983
+ elm = dom/* Dom.closest */.i.closest(font, node => isSuitElement(cs, node, true), jodit.editor);
4984
+ if (elm) {
4985
+ if (!cs.elementIsBlock) {
4986
+ extractSelectedPart(elm, font, jodit);
4987
+ }
4988
+ }
4989
+ if (cs.elementIsList && dom/* Dom.isTag */.i.isTag(elm, ['ul', 'ol'])) {
4990
+ this.setState('orderList');
4991
+ return font;
4992
+ }
4993
+ if (elm) {
4994
+ this.setState('wholeElement');
4995
+ return elm;
4996
+ }
4997
+ if (unwrapChildren(cs, font)) {
4998
+ this.setState('endProcess');
4999
+ return null;
5000
+ }
5001
+ this.setState('wrap');
5002
+ return font;
5003
+ }
5004
+ },
5005
+ wholeElement: {
5006
+ toggleStyles(toggleElm) {
5007
+ let mode = INITIAL;
5008
+ if (toggleCommitStyles(cs, toggleElm)) {
5009
+ mode = UNWRAP;
4780
5010
  }
5011
+ else {
5012
+ mode = toggleCSS(cs, toggleElm, jodit, mode);
5013
+ }
5014
+ this.setState('generator', mode);
5015
+ }
5016
+ },
5017
+ orderList: {
5018
+ toggleStyles(font) {
5019
+ let mode = INITIAL;
5020
+ const li = dom/* Dom.closest */.i.closest(font, 'li', jodit.editor);
5021
+ if (!li) {
5022
+ this.setState('generator');
5023
+ return;
5024
+ }
5025
+ const ul = dom/* Dom.closest */.i.closest(font, ['ul', 'ol'], jodit.editor);
5026
+ if (!ul) {
5027
+ this.setState('generator');
5028
+ return;
5029
+ }
5030
+ mode = toggleOrderedList(cs, li, jodit, mode);
5031
+ if (mode === REPLACE || mode === UNWRAP || mode === CHANGE) {
5032
+ this.setState('endWhile');
5033
+ return;
5034
+ }
5035
+ this.setState('generator');
5036
+ }
5037
+ },
5038
+ wrap: {
5039
+ toggleStyles(font) {
5040
+ if (this.getSubState() !== 'unwrap') {
5041
+ const toggleElm = wrapAndCommitStyle(cs, font, jodit);
5042
+ toggleCSS(cs, toggleElm, jodit, WRAP);
5043
+ }
5044
+ this.setState('generator');
5045
+ }
5046
+ },
5047
+ endWhile: {
5048
+ nextFont(gen) {
5049
+ const font = gen.next();
5050
+ if (font.done) {
5051
+ this.setState('end');
5052
+ }
5053
+ }
5054
+ },
5055
+ endProcess: {
5056
+ toggleStyles() {
5057
+ this.setState('generator');
5058
+ }
5059
+ },
5060
+ end: {
5061
+ finalize() {
5062
+ sel.restore();
4781
5063
  }
4782
- return false;
4783
- }, root);
4784
- if (box) {
4785
- wrapper = box;
4786
5064
  }
4787
- else {
4788
- wrapper = wrapUnwrappedText(style, font, jodit, range);
5065
+ });
5066
+ fsm.dispatch('start');
5067
+ const gen = fsm.dispatch('initGenerator');
5068
+ while (fsm.getState() !== 'end') {
5069
+ const font = fsm.dispatch('nextFont', gen);
5070
+ if (font) {
5071
+ const wrapper = fsm.dispatch('work', font);
5072
+ fsm.dispatch('toggleStyles', wrapper);
4789
5073
  }
4790
5074
  }
4791
- const newWrapper = dom/* Dom.replace */.i.replace(wrapper, style.element, jodit.createInside, true);
4792
- (0,helpers.attr)(newWrapper, 'size', null);
4793
- if (style.elementIsBlock) {
4794
- postProcessListElement(style, newWrapper, jodit.createInside);
4795
- }
4796
- if (style.options.style && style.elementIsDefault) {
4797
- (0,helpers.css)(newWrapper, style.options.style);
4798
- }
4799
- if (style.options.className) {
4800
- newWrapper.classList.toggle(style.options.className);
4801
- }
4802
- return wrap;
5075
+ fsm.dispatch('finalize', gen);
4803
5076
  }
4804
5077
 
4805
5078
  ;// CONCATENATED MODULE: ./src/core/selection/style/commit-style.ts
@@ -4810,10 +5083,19 @@ function applyToElement(style, font, range, jodit, wrap) {
4810
5083
  */
4811
5084
 
4812
5085
 
5086
+ const WRAP = 'wrap';
5087
+ const UNWRAP = 'unwrap';
5088
+ const CHANGE = 'change';
5089
+ const UNSET = 'unset';
5090
+ const INITIAL = 'initial';
5091
+ const REPLACE = 'replace';
4813
5092
  class CommitStyle {
4814
5093
  constructor(options) {
4815
5094
  this.options = options;
4816
5095
  }
5096
+ get elementIsList() {
5097
+ return Boolean(this.options.element && ['ul', 'ol'].includes(this.options.element));
5098
+ }
4817
5099
  get element() {
4818
5100
  return this.options.element || this.defaultTag;
4819
5101
  }
@@ -4868,7 +5150,7 @@ __webpack_require__.d(__webpack_exports__, {
4868
5150
  "watch": function() { return /* reexport */ watch; }
4869
5151
  });
4870
5152
 
4871
- // EXTERNAL MODULE: ./src/core/helpers/index.ts + 32 modules
5153
+ // EXTERNAL MODULE: ./src/core/helpers/index.ts + 33 modules
4872
5154
  var helpers = __webpack_require__(8);
4873
5155
  ;// CONCATENATED MODULE: ./src/core/decorators/cache.ts
4874
5156
  /*!
@@ -6408,7 +6690,7 @@ function ucfirst(value) {
6408
6690
  var config = __webpack_require__(1);
6409
6691
  // EXTERNAL MODULE: ./src/core/helpers/default-language.ts
6410
6692
  var default_language = __webpack_require__(28);
6411
- // EXTERNAL MODULE: ./src/core/helpers/index.ts + 32 modules
6693
+ // EXTERNAL MODULE: ./src/core/helpers/index.ts + 33 modules
6412
6694
  var helpers = __webpack_require__(8);
6413
6695
  // EXTERNAL MODULE: ./src/core/global.ts
6414
6696
  var global = __webpack_require__(13);
@@ -7024,7 +7306,7 @@ var tslib_es6 = __webpack_require__(18);
7024
7306
  var ui_element = __webpack_require__(33);
7025
7307
  // EXTERNAL MODULE: ./src/core/dom.ts
7026
7308
  var dom = __webpack_require__(15);
7027
- // EXTERNAL MODULE: ./src/core/helpers/index.ts + 32 modules
7309
+ // EXTERNAL MODULE: ./src/core/helpers/index.ts + 33 modules
7028
7310
  var helpers = __webpack_require__(8);
7029
7311
  // EXTERNAL MODULE: ./src/core/ui/icon.ts
7030
7312
  var icon = __webpack_require__(35);
@@ -7340,7 +7622,7 @@ var get_control_type = __webpack_require__(38);
7340
7622
  var config = __webpack_require__(1);
7341
7623
  // EXTERNAL MODULE: ./src/core/helpers/checker/index.ts + 14 modules
7342
7624
  var checker = __webpack_require__(19);
7343
- // EXTERNAL MODULE: ./src/core/helpers/index.ts + 32 modules
7625
+ // EXTERNAL MODULE: ./src/core/helpers/index.ts + 33 modules
7344
7626
  var helpers = __webpack_require__(8);
7345
7627
  ;// CONCATENATED MODULE: ./src/core/ui/helpers/get-strong-control-types.ts
7346
7628
  /*!
@@ -7710,15 +7992,22 @@ UISeparator = (0,tslib__WEBPACK_IMPORTED_MODULE_2__/* .__decorate */ .gn)([
7710
7992
  const isButtonGroup = (item) => {
7711
7993
  return (0,_helpers_checker__WEBPACK_IMPORTED_MODULE_0__/* .isArray */ .kJ)(item.buttons);
7712
7994
  };
7713
- const flatButtonsSet = (buttons) => new Set(buttons.reduce((acc, item) => {
7714
- if (isButtonGroup(item)) {
7715
- acc.push(...item.buttons);
7716
- }
7717
- else {
7718
- acc.push(item);
7719
- }
7720
- return acc;
7721
- }, []));
7995
+ function flatButtonsSet(buttons, jodit) {
7996
+ const groups = jodit.getRegisteredButtonGroups();
7997
+ return new Set(buttons.reduce((acc, item) => {
7998
+ var _a;
7999
+ if (isButtonGroup(item)) {
8000
+ acc = acc.concat([
8001
+ ...item.buttons,
8002
+ ...((_a = groups[item.group]) !== null && _a !== void 0 ? _a : [])
8003
+ ]);
8004
+ }
8005
+ else {
8006
+ acc.push(item);
8007
+ }
8008
+ return acc;
8009
+ }, []));
8010
+ }
7722
8011
 
7723
8012
 
7724
8013
  /***/ }),
@@ -7736,7 +8025,7 @@ __webpack_require__.d(__webpack_exports__, {
7736
8025
  var tslib_es6 = __webpack_require__(18);
7737
8026
  // EXTERNAL MODULE: ./src/core/dom.ts
7738
8027
  var dom = __webpack_require__(15);
7739
- // EXTERNAL MODULE: ./src/core/helpers/index.ts + 32 modules
8028
+ // EXTERNAL MODULE: ./src/core/helpers/index.ts + 33 modules
7740
8029
  var helpers = __webpack_require__(8);
7741
8030
  // EXTERNAL MODULE: ./src/core/global.ts
7742
8031
  var global = __webpack_require__(13);
@@ -8034,7 +8323,7 @@ var tslib_es6 = __webpack_require__(18);
8034
8323
  var group = __webpack_require__(39);
8035
8324
  // EXTERNAL MODULE: ./src/core/ui/element.ts
8036
8325
  var ui_element = __webpack_require__(33);
8037
- // EXTERNAL MODULE: ./src/core/helpers/index.ts + 32 modules
8326
+ // EXTERNAL MODULE: ./src/core/helpers/index.ts + 33 modules
8038
8327
  var helpers = __webpack_require__(8);
8039
8328
  // EXTERNAL MODULE: ./src/core/dom.ts
8040
8329
  var dom = __webpack_require__(15);
@@ -8621,7 +8910,7 @@ __webpack_require__.d(__webpack_exports__, {
8621
8910
  "IL": function() { return /* reexport */ TabsWidget; }
8622
8911
  });
8623
8912
 
8624
- // EXTERNAL MODULE: ./src/core/helpers/index.ts + 32 modules
8913
+ // EXTERNAL MODULE: ./src/core/helpers/index.ts + 33 modules
8625
8914
  var helpers = __webpack_require__(8);
8626
8915
  // EXTERNAL MODULE: ./src/core/ui/index.ts + 1 modules
8627
8916
  var ui = __webpack_require__(32);
@@ -9199,486 +9488,492 @@ const cmd = (control) => control.args && (0,_core_helpers_checker__WEBPACK_IMPOR
9199
9488
  /* 52 */
9200
9489
  /***/ (function(module) {
9201
9490
 
9202
- module.exports = "<svg viewBox=\"0 0 1792 1792\" xmlns=\"http://www.w3.org/2000/svg\"> <path d=\"M1088 1256v240q0 16-12 28t-28 12h-240q-16 0-28-12t-12-28v-240q0-16 12-28t28-12h240q16 0 28 12t12 28zm316-600q0 54-15.5 101t-35 76.5-55 59.5-57.5 43.5-61 35.5q-41 23-68.5 65t-27.5 67q0 17-12 32.5t-28 15.5h-240q-15 0-25.5-18.5t-10.5-37.5v-45q0-83 65-156.5t143-108.5q59-27 84-56t25-76q0-42-46.5-74t-107.5-32q-65 0-108 29-35 25-107 115-13 16-31 16-12 0-25-8l-164-125q-13-10-15.5-25t5.5-28q160-266 464-266 80 0 161 31t146 83 106 127.5 41 158.5z\"/> </svg>"
9491
+ module.exports = "<svg viewBox=\"0 0 13 13\" xmlns=\"http://www.w3.org/2000/svg\"> <path d=\"M5.9814 11.8049C5.59087 11.4144 5.59087 10.7812 5.9814 10.3907L10.224 6.14806C10.6146 5.75754 11.2477 5.75754 11.6383 6.14806C12.0288 6.53859 12.0288 7.17175 11.6383 7.56228L7.39561 11.8049C7.00509 12.1954 6.37192 12.1954 5.9814 11.8049Z\"/> <path d=\"M0.707107 12.0208C0.316582 11.6303 0.316582 10.9971 0.707107 10.6066L10.6066 0.707121C10.9971 0.316597 11.6303 0.316596 12.0208 0.707121C12.4113 1.09764 12.4113 1.73081 12.0208 2.12133L2.12132 12.0208C1.7308 12.4114 1.09763 12.4114 0.707107 12.0208Z\"/> </svg>"
9203
9492
 
9204
9493
  /***/ }),
9205
9494
  /* 53 */
9206
9495
  /***/ (function(module) {
9207
9496
 
9208
- module.exports = "<svg viewBox=\"0 0 18.151 18.151\" xmlns=\"http://www.w3.org/2000/svg\"> <g> <path stroke-width=\"0\" d=\"M6.237,16.546H3.649V1.604h5.916v5.728c0.474-0.122,0.968-0.194,1.479-0.194 c0.042,0,0.083,0.006,0.125,0.006V0H2.044v18.15h5.934C7.295,17.736,6.704,17.19,6.237,16.546z\"/> <path stroke-width=\"0\" d=\"M11.169,8.275c-2.723,0-4.938,2.215-4.938,4.938s2.215,4.938,4.938,4.938s4.938-2.215,4.938-4.938 S13.892,8.275,11.169,8.275z M11.169,16.81c-1.983,0-3.598-1.612-3.598-3.598c0-1.983,1.614-3.597,3.598-3.597 s3.597,1.613,3.597,3.597C14.766,15.198,13.153,16.81,11.169,16.81z\"/> <polygon stroke-width=\"0\" points=\"11.792,11.073 10.502,11.073 10.502,12.578 9.03,12.578 9.03,13.868 10.502,13.868 10.502,15.352 11.792,15.352 11.792,13.868 13.309,13.868 13.309,12.578 11.792,12.578 \"/> </g> </svg>"
9497
+ module.exports = "<svg viewBox=\"0 0 1792 1792\" xmlns=\"http://www.w3.org/2000/svg\"> <path d=\"M1088 1256v240q0 16-12 28t-28 12h-240q-16 0-28-12t-12-28v-240q0-16 12-28t28-12h240q16 0 28 12t12 28zm316-600q0 54-15.5 101t-35 76.5-55 59.5-57.5 43.5-61 35.5q-41 23-68.5 65t-27.5 67q0 17-12 32.5t-28 15.5h-240q-15 0-25.5-18.5t-10.5-37.5v-45q0-83 65-156.5t143-108.5q59-27 84-56t25-76q0-42-46.5-74t-107.5-32q-65 0-108 29-35 25-107 115-13 16-31 16-12 0-25-8l-164-125q-13-10-15.5-25t5.5-28q160-266 464-266 80 0 161 31t146 83 106 127.5 41 158.5z\"/> </svg>"
9209
9498
 
9210
9499
  /***/ }),
9211
9500
  /* 54 */
9212
9501
  /***/ (function(module) {
9213
9502
 
9214
- module.exports = "<svg xmlns='http://www.w3.org/2000/svg' viewBox=\"0 0 432 432\"> <g> <polygon points=\"203.688,96 0,96 0,144 155.688,144 \"/> <polygon points=\"155.719,288 0,288 0,336 203.719,336 \"/> <path d=\"M97.844,230.125c-3.701-3.703-5.856-8.906-5.856-14.141s2.154-10.438,5.856-14.141l9.844-9.844H0v48h107.719 L97.844,230.125z\"/> <polygon points=\"232,176 232,96 112,216 232,336 232,256 432,256 432,176\"/> </g> </svg>"
9503
+ module.exports = "<svg viewBox=\"0 0 18.151 18.151\" xmlns=\"http://www.w3.org/2000/svg\"> <g> <path stroke-width=\"0\" d=\"M6.237,16.546H3.649V1.604h5.916v5.728c0.474-0.122,0.968-0.194,1.479-0.194 c0.042,0,0.083,0.006,0.125,0.006V0H2.044v18.15h5.934C7.295,17.736,6.704,17.19,6.237,16.546z\"/> <path stroke-width=\"0\" d=\"M11.169,8.275c-2.723,0-4.938,2.215-4.938,4.938s2.215,4.938,4.938,4.938s4.938-2.215,4.938-4.938 S13.892,8.275,11.169,8.275z M11.169,16.81c-1.983,0-3.598-1.612-3.598-3.598c0-1.983,1.614-3.597,3.598-3.597 s3.597,1.613,3.597,3.597C14.766,15.198,13.153,16.81,11.169,16.81z\"/> <polygon stroke-width=\"0\" points=\"11.792,11.073 10.502,11.073 10.502,12.578 9.03,12.578 9.03,13.868 10.502,13.868 10.502,15.352 11.792,15.352 11.792,13.868 13.309,13.868 13.309,12.578 11.792,12.578 \"/> </g> </svg>"
9215
9504
 
9216
9505
  /***/ }),
9217
9506
  /* 55 */
9218
9507
  /***/ (function(module) {
9219
9508
 
9220
- module.exports = "<svg xmlns='http://www.w3.org/2000/svg' viewBox=\"0 0 1792 1792\"> <path d=\"M1395 736q0 13-10 23l-466 466q-10 10-23 10t-23-10l-466-466q-10-10-10-23t10-23l50-50q10-10 23-10t23 10l393 393 393-393q10-10 23-10t23 10l50 50q10 10 10 23z\"/> </svg>"
9509
+ module.exports = "<svg xmlns='http://www.w3.org/2000/svg' viewBox=\"0 0 432 432\"> <g> <polygon points=\"203.688,96 0,96 0,144 155.688,144 \"/> <polygon points=\"155.719,288 0,288 0,336 203.719,336 \"/> <path d=\"M97.844,230.125c-3.701-3.703-5.856-8.906-5.856-14.141s2.154-10.438,5.856-14.141l9.844-9.844H0v48h107.719 L97.844,230.125z\"/> <polygon points=\"232,176 232,96 112,216 232,336 232,256 432,256 432,176\"/> </g> </svg>"
9221
9510
 
9222
9511
  /***/ }),
9223
9512
  /* 56 */
9224
9513
  /***/ (function(module) {
9225
9514
 
9226
- module.exports = "<svg xmlns='http://www.w3.org/2000/svg' viewBox=\"0 0 1792 1792\"> <path d=\"M1203 544q0 13-10 23l-393 393 393 393q10 10 10 23t-10 23l-50 50q-10 10-23 10t-23-10l-466-466q-10-10-10-23t10-23l466-466q10-10 23-10t23 10l50 50q10 10 10 23z\"/> </svg>"
9515
+ module.exports = "<svg xmlns='http://www.w3.org/2000/svg' viewBox=\"0 0 1792 1792\"> <path d=\"M1395 736q0 13-10 23l-466 466q-10 10-23 10t-23-10l-466-466q-10-10-10-23t10-23l50-50q10-10 23-10t23 10l393 393 393-393q10-10 23-10t23 10l50 50q10 10 10 23z\"/> </svg>"
9227
9516
 
9228
9517
  /***/ }),
9229
9518
  /* 57 */
9230
9519
  /***/ (function(module) {
9231
9520
 
9232
- module.exports = "<svg xmlns='http://www.w3.org/2000/svg' viewBox=\"0 0 1792 1792\"> <path d=\"M1171 960q0 13-10 23l-466 466q-10 10-23 10t-23-10l-50-50q-10-10-10-23t10-23l393-393-393-393q-10-10-10-23t10-23l50-50q10-10 23-10t23 10l466 466q10 10 10 23z\"/> </svg>"
9521
+ module.exports = "<svg xmlns='http://www.w3.org/2000/svg' viewBox=\"0 0 1792 1792\"> <path d=\"M1203 544q0 13-10 23l-393 393 393 393q10 10 10 23t-10 23l-50 50q-10 10-23 10t-23-10l-466-466q-10-10-10-23t10-23l466-466q10-10 23-10t23 10l50 50q10 10 10 23z\"/> </svg>"
9233
9522
 
9234
9523
  /***/ }),
9235
9524
  /* 58 */
9236
9525
  /***/ (function(module) {
9237
9526
 
9238
- module.exports = "<svg xmlns='http://www.w3.org/2000/svg' viewBox=\"0 0 1792 1792\"> <path d=\"M1395 1184q0 13-10 23l-50 50q-10 10-23 10t-23-10l-393-393-393 393q-10 10-23 10t-23-10l-50-50q-10-10-10-23t10-23l466-466q10-10 23-10t23 10l466 466q10 10 10 23z\"/> </svg>"
9527
+ module.exports = "<svg xmlns='http://www.w3.org/2000/svg' viewBox=\"0 0 1792 1792\"> <path d=\"M1171 960q0 13-10 23l-466 466q-10 10-23 10t-23-10l-50-50q-10-10-10-23t10-23l393-393-393-393q-10-10-10-23t10-23l50-50q10-10 23-10t23 10l466 466q10 10 10 23z\"/> </svg>"
9239
9528
 
9240
9529
  /***/ }),
9241
9530
  /* 59 */
9242
9531
  /***/ (function(module) {
9243
9532
 
9244
- module.exports = "<svg xmlns='http://www.w3.org/2000/svg' viewBox=\"0 0 1792 1792\"> <path d=\"M1411 541l-355 355 355 355 144-144q29-31 70-14 39 17 39 59v448q0 26-19 45t-45 19h-448q-42 0-59-40-17-39 14-69l144-144-355-355-355 355 144 144q31 30 14 69-17 40-59 40h-448q-26 0-45-19t-19-45v-448q0-42 40-59 39-17 69 14l144 144 355-355-355-355-144 144q-19 19-45 19-12 0-24-5-40-17-40-59v-448q0-26 19-45t45-19h448q42 0 59 40 17 39-14 69l-144 144 355 355 355-355-144-144q-31-30-14-69 17-40 59-40h448q26 0 45 19t19 45v448q0 42-39 59-13 5-25 5-26 0-45-19z\"/> </svg>"
9533
+ module.exports = "<svg xmlns='http://www.w3.org/2000/svg' viewBox=\"0 0 1792 1792\"> <path d=\"M1395 1184q0 13-10 23l-50 50q-10 10-23 10t-23-10l-393-393-393 393q-10 10-23 10t-23-10l-50-50q-10-10-10-23t10-23l466-466q10-10 23-10t23 10l466 466q10 10 10 23z\"/> </svg>"
9245
9534
 
9246
9535
  /***/ }),
9247
9536
  /* 60 */
9248
9537
  /***/ (function(module) {
9249
9538
 
9250
- module.exports = "<svg xmlns='http://www.w3.org/2000/svg' viewBox=\"0 0 1792 1792\"> <path d=\"M1792 896q0 26-19 45l-256 256q-19 19-45 19t-45-19-19-45v-128h-1024v128q0 26-19 45t-45 19-45-19l-256-256q-19-19-19-45t19-45l256-256q19-19 45-19t45 19 19 45v128h1024v-128q0-26 19-45t45-19 45 19l256 256q19 19 19 45z\"/> </svg>"
9539
+ module.exports = "<svg xmlns='http://www.w3.org/2000/svg' viewBox=\"0 0 1792 1792\"> <path d=\"M1411 541l-355 355 355 355 144-144q29-31 70-14 39 17 39 59v448q0 26-19 45t-45 19h-448q-42 0-59-40-17-39 14-69l144-144-355-355-355 355 144 144q31 30 14 69-17 40-59 40h-448q-26 0-45-19t-19-45v-448q0-42 40-59 39-17 69 14l144 144 355-355-355-355-144 144q-19 19-45 19-12 0-24-5-40-17-40-59v-448q0-26 19-45t45-19h448q42 0 59 40 17 39-14 69l-144 144 355 355 355-355-144-144q-31-30-14-69 17-40 59-40h448q26 0 45 19t19 45v448q0 42-39 59-13 5-25 5-26 0-45-19z\"/> </svg>"
9251
9540
 
9252
9541
  /***/ }),
9253
9542
  /* 61 */
9254
9543
  /***/ (function(module) {
9255
9544
 
9256
- module.exports = "<svg xmlns='http://www.w3.org/2000/svg' viewBox=\"0 0 1792 1792\"> <path d=\"M1596 1385q0 117-79 196t-196 79q-135 0-235-100l-777-776q-113-115-113-271 0-159 110-270t269-111q158 0 273 113l605 606q10 10 10 22 0 16-30.5 46.5t-46.5 30.5q-13 0-23-10l-606-607q-79-77-181-77-106 0-179 75t-73 181q0 105 76 181l776 777q63 63 145 63 64 0 106-42t42-106q0-82-63-145l-581-581q-26-24-60-24-29 0-48 19t-19 48q0 32 25 59l410 410q10 10 10 22 0 16-31 47t-47 31q-12 0-22-10l-410-410q-63-61-63-149 0-82 57-139t139-57q88 0 149 63l581 581q100 98 100 235z\"/> </svg>"
9545
+ module.exports = "<svg xmlns='http://www.w3.org/2000/svg' viewBox=\"0 0 1792 1792\"> <path d=\"M1792 896q0 26-19 45l-256 256q-19 19-45 19t-45-19-19-45v-128h-1024v128q0 26-19 45t-45 19-45-19l-256-256q-19-19-19-45t19-45l256-256q19-19 45-19t45 19 19 45v128h1024v-128q0-26 19-45t45-19 45 19l256 256q19 19 19 45z\"/> </svg>"
9257
9546
 
9258
9547
  /***/ }),
9259
9548
  /* 62 */
9260
9549
  /***/ (function(module) {
9261
9550
 
9262
- module.exports = "<svg xmlns='http://www.w3.org/2000/svg' viewBox=\"0 0 1792 1792\"> <path d=\"M704 1376v-704q0-14-9-23t-23-9h-64q-14 0-23 9t-9 23v704q0 14 9 23t23 9h64q14 0 23-9t9-23zm256 0v-704q0-14-9-23t-23-9h-64q-14 0-23 9t-9 23v704q0 14 9 23t23 9h64q14 0 23-9t9-23zm256 0v-704q0-14-9-23t-23-9h-64q-14 0-23 9t-9 23v704q0 14 9 23t23 9h64q14 0 23-9t9-23zm-544-992h448l-48-117q-7-9-17-11h-317q-10 2-17 11zm928 32v64q0 14-9 23t-23 9h-96v948q0 83-47 143.5t-113 60.5h-832q-66 0-113-58.5t-47-141.5v-952h-96q-14 0-23-9t-9-23v-64q0-14 9-23t23-9h309l70-167q15-37 54-63t79-26h320q40 0 79 26t54 63l70 167h309q14 0 23 9t9 23z\"/> </svg>"
9551
+ module.exports = "<svg xmlns='http://www.w3.org/2000/svg' viewBox=\"0 0 1792 1792\"> <path d=\"M1596 1385q0 117-79 196t-196 79q-135 0-235-100l-777-776q-113-115-113-271 0-159 110-270t269-111q158 0 273 113l605 606q10 10 10 22 0 16-30.5 46.5t-46.5 30.5q-13 0-23-10l-606-607q-79-77-181-77-106 0-179 75t-73 181q0 105 76 181l776 777q63 63 145 63 64 0 106-42t42-106q0-82-63-145l-581-581q-26-24-60-24-29 0-48 19t-19 48q0 32 25 59l410 410q10 10 10 22 0 16-31 47t-47 31q-12 0-22-10l-410-410q-63-61-63-149 0-82 57-139t139-57q88 0 149 63l581 581q100 98 100 235z\"/> </svg>"
9263
9552
 
9264
9553
  /***/ }),
9265
9554
  /* 63 */
9266
9555
  /***/ (function(module) {
9267
9556
 
9268
- module.exports = "<svg xmlns='http://www.w3.org/2000/svg' viewBox=\"0 0 1792 1792\"> <path d=\"M747 1521q74 32 140 32 376 0 376-335 0-114-41-180-27-44-61.5-74t-67.5-46.5-80.5-25-84-10.5-94.5-2q-73 0-101 10 0 53-.5 159t-.5 158q0 8-1 67.5t-.5 96.5 4.5 83.5 12 66.5zm-14-746q42 7 109 7 82 0 143-13t110-44.5 74.5-89.5 25.5-142q0-70-29-122.5t-79-82-108-43.5-124-14q-50 0-130 13 0 50 4 151t4 152q0 27-.5 80t-.5 79q0 46 1 69zm-541 889l2-94q15-4 85-16t106-27q7-12 12.5-27t8.5-33.5 5.5-32.5 3-37.5.5-34v-65.5q0-982-22-1025-4-8-22-14.5t-44.5-11-49.5-7-48.5-4.5-30.5-3l-4-83q98-2 340-11.5t373-9.5q23 0 68.5.5t67.5.5q70 0 136.5 13t128.5 42 108 71 74 104.5 28 137.5q0 52-16.5 95.5t-39 72-64.5 57.5-73 45-84 40q154 35 256.5 134t102.5 248q0 100-35 179.5t-93.5 130.5-138 85.5-163.5 48.5-176 14q-44 0-132-3t-132-3q-106 0-307 11t-231 12z\"/> </svg>"
9557
+ module.exports = "<svg xmlns='http://www.w3.org/2000/svg' viewBox=\"0 0 1792 1792\"> <path d=\"M704 1376v-704q0-14-9-23t-23-9h-64q-14 0-23 9t-9 23v704q0 14 9 23t23 9h64q14 0 23-9t9-23zm256 0v-704q0-14-9-23t-23-9h-64q-14 0-23 9t-9 23v704q0 14 9 23t23 9h64q14 0 23-9t9-23zm256 0v-704q0-14-9-23t-23-9h-64q-14 0-23 9t-9 23v704q0 14 9 23t23 9h64q14 0 23-9t9-23zm-544-992h448l-48-117q-7-9-17-11h-317q-10 2-17 11zm928 32v64q0 14-9 23t-23 9h-96v948q0 83-47 143.5t-113 60.5h-832q-66 0-113-58.5t-47-141.5v-952h-96q-14 0-23-9t-9-23v-64q0-14 9-23t23-9h309l70-167q15-37 54-63t79-26h320q40 0 79 26t54 63l70 167h309q14 0 23 9t9 23z\"/> </svg>"
9269
9558
 
9270
9559
  /***/ }),
9271
9560
  /* 64 */
9272
9561
  /***/ (function(module) {
9273
9562
 
9274
- module.exports = "<svg xmlns='http://www.w3.org/2000/svg' viewBox=\"0 0 1792 1792\"> <path d=\"M896 1152q0-36-20-69-1-1-15.5-22.5t-25.5-38-25-44-21-50.5q-4-16-21-16t-21 16q-7 23-21 50.5t-25 44-25.5 38-15.5 22.5q-20 33-20 69 0 53 37.5 90.5t90.5 37.5 90.5-37.5 37.5-90.5zm512-128q0 212-150 362t-362 150-362-150-150-362q0-145 81-275 6-9 62.5-90.5t101-151 99.5-178 83-201.5q9-30 34-47t51-17 51.5 17 33.5 47q28 93 83 201.5t99.5 178 101 151 62.5 90.5q81 127 81 275z\"/> </svg>"
9563
+ module.exports = "<svg xmlns='http://www.w3.org/2000/svg' viewBox=\"0 0 1792 1792\"> <path d=\"M747 1521q74 32 140 32 376 0 376-335 0-114-41-180-27-44-61.5-74t-67.5-46.5-80.5-25-84-10.5-94.5-2q-73 0-101 10 0 53-.5 159t-.5 158q0 8-1 67.5t-.5 96.5 4.5 83.5 12 66.5zm-14-746q42 7 109 7 82 0 143-13t110-44.5 74.5-89.5 25.5-142q0-70-29-122.5t-79-82-108-43.5-124-14q-50 0-130 13 0 50 4 151t4 152q0 27-.5 80t-.5 79q0 46 1 69zm-541 889l2-94q15-4 85-16t106-27q7-12 12.5-27t8.5-33.5 5.5-32.5 3-37.5.5-34v-65.5q0-982-22-1025-4-8-22-14.5t-44.5-11-49.5-7-48.5-4.5-30.5-3l-4-83q98-2 340-11.5t373-9.5q23 0 68.5.5t67.5.5q70 0 136.5 13t128.5 42 108 71 74 104.5 28 137.5q0 52-16.5 95.5t-39 72-64.5 57.5-73 45-84 40q154 35 256.5 134t102.5 248q0 100-35 179.5t-93.5 130.5-138 85.5-163.5 48.5-176 14q-44 0-132-3t-132-3q-106 0-307 11t-231 12z\"/> </svg>"
9275
9564
 
9276
9565
  /***/ }),
9277
9566
  /* 65 */
9278
9567
  /***/ (function(module) {
9279
9568
 
9280
- module.exports = "<svg viewBox=\"0 0 14 14\" xmlns=\"http://www.w3.org/2000/svg\"> <g stroke=\"none\" stroke-width=\"1\"> <path d=\"M14,1.4 L12.6,0 L7,5.6 L1.4,0 L0,1.4 L5.6,7 L0,12.6 L1.4,14 L7,8.4 L12.6,14 L14,12.6 L8.4,7 L14,1.4 Z\"/> </g> </svg>"
9569
+ module.exports = "<svg xmlns='http://www.w3.org/2000/svg' viewBox=\"0 0 1792 1792\"> <path d=\"M896 1152q0-36-20-69-1-1-15.5-22.5t-25.5-38-25-44-21-50.5q-4-16-21-16t-21 16q-7 23-21 50.5t-25 44-25.5 38-15.5 22.5q-20 33-20 69 0 53 37.5 90.5t90.5 37.5 90.5-37.5 37.5-90.5zm512-128q0 212-150 362t-362 150-362-150-150-362q0-145 81-275 6-9 62.5-90.5t101-151 99.5-178 83-201.5q9-30 34-47t51-17 51.5 17 33.5 47q28 93 83 201.5t99.5 178 101 151 62.5 90.5q81 127 81 275z\"/> </svg>"
9281
9570
 
9282
9571
  /***/ }),
9283
9572
  /* 66 */
9284
9573
  /***/ (function(module) {
9285
9574
 
9286
- module.exports = "<svg xmlns='http://www.w3.org/2000/svg' viewBox=\"0 0 1792 1792\"> <path d=\"M1792 1344v128q0 26-19 45t-45 19h-1664q-26 0-45-19t-19-45v-128q0-26 19-45t45-19h1664q26 0 45 19t19 45zm-384-384v128q0 26-19 45t-45 19h-896q-26 0-45-19t-19-45v-128q0-26 19-45t45-19h896q26 0 45 19t19 45zm256-384v128q0 26-19 45t-45 19h-1408q-26 0-45-19t-19-45v-128q0-26 19-45t45-19h1408q26 0 45 19t19 45zm-384-384v128q0 26-19 45t-45 19h-640q-26 0-45-19t-19-45v-128q0-26 19-45t45-19h640q26 0 45 19t19 45z\"/> </svg>"
9575
+ module.exports = "<svg viewBox=\"0 0 14 14\" xmlns=\"http://www.w3.org/2000/svg\"> <g stroke=\"none\" stroke-width=\"1\"> <path d=\"M14,1.4 L12.6,0 L7,5.6 L1.4,0 L0,1.4 L5.6,7 L0,12.6 L1.4,14 L7,8.4 L12.6,14 L14,12.6 L8.4,7 L14,1.4 Z\"/> </g> </svg>"
9287
9576
 
9288
9577
  /***/ }),
9289
9578
  /* 67 */
9290
9579
  /***/ (function(module) {
9291
9580
 
9292
- module.exports = "<svg xmlns='http://www.w3.org/2000/svg' viewBox=\"0 0 1792 1792\"> <path d=\"M503 1271l-256 256q-10 9-23 9-12 0-23-9-9-10-9-23t9-23l256-256q10-9 23-9t23 9q9 10 9 23t-9 23zm169 41v320q0 14-9 23t-23 9-23-9-9-23v-320q0-14 9-23t23-9 23 9 9 23zm-224-224q0 14-9 23t-23 9h-320q-14 0-23-9t-9-23 9-23 23-9h320q14 0 23 9t9 23zm1264 128q0 120-85 203l-147 146q-83 83-203 83-121 0-204-85l-334-335q-21-21-42-56l239-18 273 274q27 27 68 27.5t68-26.5l147-146q28-28 28-67 0-40-28-68l-274-275 18-239q35 21 56 42l336 336q84 86 84 204zm-617-724l-239 18-273-274q-28-28-68-28-39 0-68 27l-147 146q-28 28-28 67 0 40 28 68l274 274-18 240q-35-21-56-42l-336-336q-84-86-84-204 0-120 85-203l147-146q83-83 203-83 121 0 204 85l334 335q21 21 42 56zm633 84q0 14-9 23t-23 9h-320q-14 0-23-9t-9-23 9-23 23-9h320q14 0 23 9t9 23zm-544-544v320q0 14-9 23t-23 9-23-9-9-23v-320q0-14 9-23t23-9 23 9 9 23zm407 151l-256 256q-11 9-23 9t-23-9q-9-10-9-23t9-23l256-256q10-9 23-9t23 9q9 10 9 23t-9 23z\"/> </svg>"
9581
+ module.exports = "<svg xmlns='http://www.w3.org/2000/svg' viewBox=\"0 0 1792 1792\"> <path d=\"M1792 1344v128q0 26-19 45t-45 19h-1664q-26 0-45-19t-19-45v-128q0-26 19-45t45-19h1664q26 0 45 19t19 45zm-384-384v128q0 26-19 45t-45 19h-896q-26 0-45-19t-19-45v-128q0-26 19-45t45-19h896q26 0 45 19t19 45zm256-384v128q0 26-19 45t-45 19h-1408q-26 0-45-19t-19-45v-128q0-26 19-45t45-19h1408q26 0 45 19t19 45zm-384-384v128q0 26-19 45t-45 19h-640q-26 0-45-19t-19-45v-128q0-26 19-45t45-19h640q26 0 45 19t19 45z\"/> </svg>"
9293
9582
 
9294
9583
  /***/ }),
9295
9584
  /* 68 */
9296
9585
  /***/ (function(module) {
9297
9586
 
9298
- module.exports = "<svg xmlns='http://www.w3.org/2000/svg' viewBox=\"0 0 1792 1792\"> <path d=\"M1472 930v318q0 119-84.5 203.5t-203.5 84.5h-832q-119 0-203.5-84.5t-84.5-203.5v-832q0-119 84.5-203.5t203.5-84.5h832q63 0 117 25 15 7 18 23 3 17-9 29l-49 49q-10 10-23 10-3 0-9-2-23-6-45-6h-832q-66 0-113 47t-47 113v832q0 66 47 113t113 47h832q66 0 113-47t47-113v-254q0-13 9-22l64-64q10-10 23-10 6 0 12 3 20 8 20 29zm231-489l-814 814q-24 24-57 24t-57-24l-430-430q-24-24-24-57t24-57l110-110q24-24 57-24t57 24l263 263 647-647q24-24 57-24t57 24l110 110q24 24 24 57t-24 57z\"/> </svg>"
9587
+ module.exports = "<svg xmlns='http://www.w3.org/2000/svg' viewBox=\"0 0 1792 1792\"> <path d=\"M503 1271l-256 256q-10 9-23 9-12 0-23-9-9-10-9-23t9-23l256-256q10-9 23-9t23 9q9 10 9 23t-9 23zm169 41v320q0 14-9 23t-23 9-23-9-9-23v-320q0-14 9-23t23-9 23 9 9 23zm-224-224q0 14-9 23t-23 9h-320q-14 0-23-9t-9-23 9-23 23-9h320q14 0 23 9t9 23zm1264 128q0 120-85 203l-147 146q-83 83-203 83-121 0-204-85l-334-335q-21-21-42-56l239-18 273 274q27 27 68 27.5t68-26.5l147-146q28-28 28-67 0-40-28-68l-274-275 18-239q35 21 56 42l336 336q84 86 84 204zm-617-724l-239 18-273-274q-28-28-68-28-39 0-68 27l-147 146q-28 28-28 67 0 40 28 68l274 274-18 240q-35-21-56-42l-336-336q-84-86-84-204 0-120 85-203l147-146q83-83 203-83 121 0 204 85l334 335q21 21 42 56zm633 84q0 14-9 23t-23 9h-320q-14 0-23-9t-9-23 9-23 23-9h320q14 0 23 9t9 23zm-544-544v320q0 14-9 23t-23 9-23-9-9-23v-320q0-14 9-23t23-9 23 9 9 23zm407 151l-256 256q-11 9-23 9t-23-9q-9-10-9-23t9-23l256-256q10-9 23-9t23 9q9 10 9 23t-9 23z\"/> </svg>"
9299
9588
 
9300
9589
  /***/ }),
9301
9590
  /* 69 */
9302
9591
  /***/ (function(module) {
9303
9592
 
9304
- module.exports = "<svg xmlns='http://www.w3.org/2000/svg' viewBox=\"0 0 1792 1792\"><path d=\"M813 1299l614-614q19-19 19-45t-19-45l-102-102q-19-19-45-19t-45 19l-467 467-211-211q-19-19-45-19t-45 19l-102 102q-19 19-19 45t19 45l358 358q19 19 45 19t45-19zm851-883v960q0 119-84.5 203.5t-203.5 84.5h-960q-119 0-203.5-84.5t-84.5-203.5v-960q0-119 84.5-203.5t203.5-84.5h960q119 0 203.5 84.5t84.5 203.5z\"/></svg>"
9593
+ module.exports = "<svg xmlns='http://www.w3.org/2000/svg' viewBox=\"0 0 1792 1792\"> <path d=\"M1472 930v318q0 119-84.5 203.5t-203.5 84.5h-832q-119 0-203.5-84.5t-84.5-203.5v-832q0-119 84.5-203.5t203.5-84.5h832q63 0 117 25 15 7 18 23 3 17-9 29l-49 49q-10 10-23 10-3 0-9-2-23-6-45-6h-832q-66 0-113 47t-47 113v832q0 66 47 113t113 47h832q66 0 113-47t47-113v-254q0-13 9-22l64-64q10-10 23-10 6 0 12 3 20 8 20 29zm231-489l-814 814q-24 24-57 24t-57-24l-430-430q-24-24-24-57t24-57l110-110q24-24 57-24t57 24l263 263 647-647q24-24 57-24t57 24l110 110q24 24 24 57t-24 57z\"/> </svg>"
9305
9594
 
9306
9595
  /***/ }),
9307
9596
  /* 70 */
9308
9597
  /***/ (function(module) {
9309
9598
 
9310
- module.exports = "<svg xmlns='http://www.w3.org/2000/svg' viewBox=\"0 0 10 10\"> <path d=\"M.941 4.523a.75.75 0 1 1 1.06-1.06l3.006 3.005 3.005-3.005a.75.75 0 1 1 1.06 1.06l-3.549 3.55a.75.75 0 0 1-1.168-.136L.941 4.523z\"/> </svg>"
9599
+ module.exports = "<svg xmlns='http://www.w3.org/2000/svg' viewBox=\"0 0 1792 1792\"><path d=\"M813 1299l614-614q19-19 19-45t-19-45l-102-102q-19-19-45-19t-45 19l-467 467-211-211q-19-19-45-19t-45 19l-102 102q-19 19-19 45t19 45l358 358q19 19 45 19t45-19zm851-883v960q0 119-84.5 203.5t-203.5 84.5h-960q-119 0-203.5-84.5t-84.5-203.5v-960q0-119 84.5-203.5t203.5-84.5h960q119 0 203.5 84.5t84.5 203.5z\"/></svg>"
9311
9600
 
9312
9601
  /***/ }),
9313
9602
  /* 71 */
9314
9603
  /***/ (function(module) {
9315
9604
 
9316
- module.exports = "<svg xmlns='http://www.w3.org/2000/svg' viewBox=\"0 0 16 16\"> <path stroke-width=\"0\" d=\"M16 9v-6h-3v-1c0-0.55-0.45-1-1-1h-11c-0.55 0-1 0.45-1 1v3c0 0.55 0.45 1 1 1h11c0.55 0 1-0.45 1-1v-1h2v4h-9v2h-0.5c-0.276 0-0.5 0.224-0.5 0.5v5c0 0.276 0.224 0.5 0.5 0.5h2c0.276 0 0.5-0.224 0.5-0.5v-5c0-0.276-0.224-0.5-0.5-0.5h-0.5v-1h9zM12 3h-11v-1h11v1z\"/> </svg>"
9605
+ module.exports = "<svg xmlns='http://www.w3.org/2000/svg' viewBox=\"0 0 10 10\"> <path d=\"M.941 4.523a.75.75 0 1 1 1.06-1.06l3.006 3.005 3.005-3.005a.75.75 0 1 1 1.06 1.06l-3.549 3.55a.75.75 0 0 1-1.168-.136L.941 4.523z\"/> </svg>"
9317
9606
 
9318
9607
  /***/ }),
9319
9608
  /* 72 */
9320
9609
  /***/ (function(module) {
9321
9610
 
9322
- module.exports = "<svg xmlns='http://www.w3.org/2000/svg' viewBox=\"0 0 1792 1792\"> <path d=\"M621 1280h595v-595zm-45-45l595-595h-595v595zm1152 77v192q0 14-9 23t-23 9h-224v224q0 14-9 23t-23 9h-192q-14 0-23-9t-9-23v-224h-864q-14 0-23-9t-9-23v-864h-224q-14 0-23-9t-9-23v-192q0-14 9-23t23-9h224v-224q0-14 9-23t23-9h192q14 0 23 9t9 23v224h851l246-247q10-9 23-9t23 9q9 10 9 23t-9 23l-247 246v851h224q14 0 23 9t9 23z\"/> </svg>"
9611
+ module.exports = "<svg xmlns='http://www.w3.org/2000/svg' viewBox=\"0 0 16 16\"> <path stroke-width=\"0\" d=\"M16 9v-6h-3v-1c0-0.55-0.45-1-1-1h-11c-0.55 0-1 0.45-1 1v3c0 0.55 0.45 1 1 1h11c0.55 0 1-0.45 1-1v-1h2v4h-9v2h-0.5c-0.276 0-0.5 0.224-0.5 0.5v5c0 0.276 0.224 0.5 0.5 0.5h2c0.276 0 0.5-0.224 0.5-0.5v-5c0-0.276-0.224-0.5-0.5-0.5h-0.5v-1h9zM12 3h-11v-1h11v1z\"/> </svg>"
9323
9612
 
9324
9613
  /***/ }),
9325
9614
  /* 73 */
9326
9615
  /***/ (function(module) {
9327
9616
 
9328
- module.exports = "<svg viewBox=\"0 0 32 32\" xmlns=\"http://www.w3.org/2000/svg\"> <path d=\"M24.89,6.61H22.31V4.47A2.47,2.47,0,0,0,19.84,2H6.78A2.47,2.47,0,0,0,4.31,4.47V22.92a2.47,2.47,0,0,0,2.47,2.47H9.69V27.2a2.8,2.8,0,0,0,2.8,2.8h12.4a2.8,2.8,0,0,0,2.8-2.8V9.41A2.8,2.8,0,0,0,24.89,6.61ZM6.78,23.52a.61.61,0,0,1-.61-.6V4.47a.61.61,0,0,1,.61-.6H19.84a.61.61,0,0,1,.61.6V6.61h-8a2.8,2.8,0,0,0-2.8,2.8V23.52Zm19,3.68a.94.94,0,0,1-.94.93H12.49a.94.94,0,0,1-.94-.93V9.41a.94.94,0,0,1,.94-.93h12.4a.94.94,0,0,1,.94.93Z\"/> <path d=\"M23.49,13.53h-9.6a.94.94,0,1,0,0,1.87h9.6a.94.94,0,1,0,0-1.87Z\"/> <path d=\"M23.49,17.37h-9.6a.94.94,0,1,0,0,1.87h9.6a.94.94,0,1,0,0-1.87Z\"/> <path d=\"M23.49,21.22h-9.6a.93.93,0,1,0,0,1.86h9.6a.93.93,0,1,0,0-1.86Z\"/> </svg>"
9617
+ module.exports = "<svg xmlns='http://www.w3.org/2000/svg' viewBox=\"0 0 1792 1792\"> <path d=\"M621 1280h595v-595zm-45-45l595-595h-595v595zm1152 77v192q0 14-9 23t-23 9h-224v224q0 14-9 23t-23 9h-192q-14 0-23-9t-9-23v-224h-864q-14 0-23-9t-9-23v-864h-224q-14 0-23-9t-9-23v-192q0-14 9-23t23-9h224v-224q0-14 9-23t23-9h192q14 0 23 9t9 23v224h851l246-247q10-9 23-9t23 9q9 10 9 23t-9 23l-247 246v851h224q14 0 23 9t9 23z\"/> </svg>"
9329
9618
 
9330
9619
  /***/ }),
9331
9620
  /* 74 */
9332
9621
  /***/ (function(module) {
9333
9622
 
9334
- module.exports = "<svg xmlns='http://www.w3.org/2000/svg' viewBox=\"0 0 1792 1792\"> <path d=\"M960 896q26 0 45 19t19 45-19 45-45 19-45-19-19-45 19-45 45-19zm300 64l507 398q28 20 25 56-5 35-35 51l-128 64q-13 7-29 7-17 0-31-8l-690-387-110 66q-8 4-12 5 14 49 10 97-7 77-56 147.5t-132 123.5q-132 84-277 84-136 0-222-78-90-84-79-207 7-76 56-147t131-124q132-84 278-84 83 0 151 31 9-13 22-22l122-73-122-73q-13-9-22-22-68 31-151 31-146 0-278-84-82-53-131-124t-56-147q-5-59 15.5-113t63.5-93q85-79 222-79 145 0 277 84 83 52 132 123t56 148q4 48-10 97 4 1 12 5l110 66 690-387q14-8 31-8 16 0 29 7l128 64q30 16 35 51 3 36-25 56zm-681-260q46-42 21-108t-106-117q-92-59-192-59-74 0-113 36-46 42-21 108t106 117q92 59 192 59 74 0 113-36zm-85 745q81-51 106-117t-21-108q-39-36-113-36-100 0-192 59-81 51-106 117t21 108q39 36 113 36 100 0 192-59zm178-613l96 58v-11q0-36 33-56l14-8-79-47-26 26q-3 3-10 11t-12 12q-2 2-4 3.5t-3 2.5zm224 224l96 32 736-576-128-64-768 431v113l-160 96 9 8q2 2 7 6 4 4 11 12t11 12l26 26zm704 416l128-64-520-408-177 138q-2 3-13 7z\"/> </svg>"
9623
+ module.exports = "<svg viewBox=\"0 0 32 32\" xmlns=\"http://www.w3.org/2000/svg\"> <path d=\"M24.89,6.61H22.31V4.47A2.47,2.47,0,0,0,19.84,2H6.78A2.47,2.47,0,0,0,4.31,4.47V22.92a2.47,2.47,0,0,0,2.47,2.47H9.69V27.2a2.8,2.8,0,0,0,2.8,2.8h12.4a2.8,2.8,0,0,0,2.8-2.8V9.41A2.8,2.8,0,0,0,24.89,6.61ZM6.78,23.52a.61.61,0,0,1-.61-.6V4.47a.61.61,0,0,1,.61-.6H19.84a.61.61,0,0,1,.61.6V6.61h-8a2.8,2.8,0,0,0-2.8,2.8V23.52Zm19,3.68a.94.94,0,0,1-.94.93H12.49a.94.94,0,0,1-.94-.93V9.41a.94.94,0,0,1,.94-.93h12.4a.94.94,0,0,1,.94.93Z\"/> <path d=\"M23.49,13.53h-9.6a.94.94,0,1,0,0,1.87h9.6a.94.94,0,1,0,0-1.87Z\"/> <path d=\"M23.49,17.37h-9.6a.94.94,0,1,0,0,1.87h9.6a.94.94,0,1,0,0-1.87Z\"/> <path d=\"M23.49,21.22h-9.6a.93.93,0,1,0,0,1.86h9.6a.93.93,0,1,0,0-1.86Z\"/> </svg>"
9335
9624
 
9336
9625
  /***/ }),
9337
9626
  /* 75 */
9338
9627
  /***/ (function(module) {
9339
9628
 
9340
- module.exports = "<svg xmlns='http://www.w3.org/2000/svg' viewBox=\"0 0 1792 1792\"> <path d=\"M384 544v576q0 13-9.5 22.5t-22.5 9.5q-14 0-23-9l-288-288q-9-9-9-23t9-23l288-288q9-9 23-9 13 0 22.5 9.5t9.5 22.5zm1408 768v192q0 13-9.5 22.5t-22.5 9.5h-1728q-13 0-22.5-9.5t-9.5-22.5v-192q0-13 9.5-22.5t22.5-9.5h1728q13 0 22.5 9.5t9.5 22.5zm0-384v192q0 13-9.5 22.5t-22.5 9.5h-1088q-13 0-22.5-9.5t-9.5-22.5v-192q0-13 9.5-22.5t22.5-9.5h1088q13 0 22.5 9.5t9.5 22.5zm0-384v192q0 13-9.5 22.5t-22.5 9.5h-1088q-13 0-22.5-9.5t-9.5-22.5v-192q0-13 9.5-22.5t22.5-9.5h1088q13 0 22.5 9.5t9.5 22.5zm0-384v192q0 13-9.5 22.5t-22.5 9.5h-1728q-13 0-22.5-9.5t-9.5-22.5v-192q0-13 9.5-22.5t22.5-9.5h1728q13 0 22.5 9.5t9.5 22.5z\"/> </svg>"
9629
+ module.exports = "<svg xmlns='http://www.w3.org/2000/svg' viewBox=\"0 0 1792 1792\"> <path d=\"M960 896q26 0 45 19t19 45-19 45-45 19-45-19-19-45 19-45 45-19zm300 64l507 398q28 20 25 56-5 35-35 51l-128 64q-13 7-29 7-17 0-31-8l-690-387-110 66q-8 4-12 5 14 49 10 97-7 77-56 147.5t-132 123.5q-132 84-277 84-136 0-222-78-90-84-79-207 7-76 56-147t131-124q132-84 278-84 83 0 151 31 9-13 22-22l122-73-122-73q-13-9-22-22-68 31-151 31-146 0-278-84-82-53-131-124t-56-147q-5-59 15.5-113t63.5-93q85-79 222-79 145 0 277 84 83 52 132 123t56 148q4 48-10 97 4 1 12 5l110 66 690-387q14-8 31-8 16 0 29 7l128 64q30 16 35 51 3 36-25 56zm-681-260q46-42 21-108t-106-117q-92-59-192-59-74 0-113 36-46 42-21 108t106 117q92 59 192 59 74 0 113-36zm-85 745q81-51 106-117t-21-108q-39-36-113-36-100 0-192 59-81 51-106 117t21 108q39 36 113 36 100 0 192-59zm178-613l96 58v-11q0-36 33-56l14-8-79-47-26 26q-3 3-10 11t-12 12q-2 2-4 3.5t-3 2.5zm224 224l96 32 736-576-128-64-768 431v113l-160 96 9 8q2 2 7 6 4 4 11 12t11 12l26 26zm704 416l128-64-520-408-177 138q-2 3-13 7z\"/> </svg>"
9341
9630
 
9342
9631
  /***/ }),
9343
9632
  /* 76 */
9344
9633
  /***/ (function(module) {
9345
9634
 
9346
- module.exports = "<svg xmlns='http://www.w3.org/2000/svg' viewBox=\"0 0 24 24\" > <circle cx=\"12\" cy=\"12\" r=\"2.2\"/> <circle cx=\"12\" cy=\"5\" r=\"2.2\"/> <circle cx=\"12\" cy=\"19\" r=\"2.2\"/> </svg>"
9635
+ module.exports = "<svg xmlns='http://www.w3.org/2000/svg' viewBox=\"0 0 1792 1792\"> <path d=\"M384 544v576q0 13-9.5 22.5t-22.5 9.5q-14 0-23-9l-288-288q-9-9-9-23t9-23l288-288q9-9 23-9 13 0 22.5 9.5t9.5 22.5zm1408 768v192q0 13-9.5 22.5t-22.5 9.5h-1728q-13 0-22.5-9.5t-9.5-22.5v-192q0-13 9.5-22.5t22.5-9.5h1728q13 0 22.5 9.5t9.5 22.5zm0-384v192q0 13-9.5 22.5t-22.5 9.5h-1088q-13 0-22.5-9.5t-9.5-22.5v-192q0-13 9.5-22.5t22.5-9.5h1088q13 0 22.5 9.5t9.5 22.5zm0-384v192q0 13-9.5 22.5t-22.5 9.5h-1088q-13 0-22.5-9.5t-9.5-22.5v-192q0-13 9.5-22.5t22.5-9.5h1088q13 0 22.5 9.5t9.5 22.5zm0-384v192q0 13-9.5 22.5t-22.5 9.5h-1728q-13 0-22.5-9.5t-9.5-22.5v-192q0-13 9.5-22.5t22.5-9.5h1728q13 0 22.5 9.5t9.5 22.5z\"/> </svg>"
9347
9636
 
9348
9637
  /***/ }),
9349
9638
  /* 77 */
9350
9639
  /***/ (function(module) {
9351
9640
 
9352
- module.exports = "<svg xmlns='http://www.w3.org/2000/svg' viewBox=\"0 0 128 128\" xml:space=\"preserve\"> <polygon points=\"112.4560547,23.3203125 112.4560547,75.8154297 31.4853516,75.8154297 31.4853516,61.953125 16.0131836,72.6357422 0.5410156,83.3164063 16.0131836,93.9990234 31.4853516,104.6796875 31.4853516,90.8183594 112.4560547,90.8183594 112.4560547,90.8339844 127.4589844,90.8339844 127.4589844,23.3203125\"/> </svg>"
9641
+ module.exports = "<svg xmlns='http://www.w3.org/2000/svg' viewBox=\"0 0 24 24\" > <circle cx=\"12\" cy=\"12\" r=\"2.2\"/> <circle cx=\"12\" cy=\"5\" r=\"2.2\"/> <circle cx=\"12\" cy=\"19\" r=\"2.2\"/> </svg>"
9353
9642
 
9354
9643
  /***/ }),
9355
9644
  /* 78 */
9356
9645
  /***/ (function(module) {
9357
9646
 
9358
- module.exports = "<svg xmlns='http://www.w3.org/2000/svg' viewBox=\"0 0 1792 1792\"> <path d=\"M832 1408l336-384h-768l-336 384h768zm1013-1077q15 34 9.5 71.5t-30.5 65.5l-896 1024q-38 44-96 44h-768q-38 0-69.5-20.5t-47.5-54.5q-15-34-9.5-71.5t30.5-65.5l896-1024q38-44 96-44h768q38 0 69.5 20.5t47.5 54.5z\"/> </svg>"
9647
+ module.exports = "<svg xmlns='http://www.w3.org/2000/svg' viewBox=\"0 0 128 128\" xml:space=\"preserve\"> <polygon points=\"112.4560547,23.3203125 112.4560547,75.8154297 31.4853516,75.8154297 31.4853516,61.953125 16.0131836,72.6357422 0.5410156,83.3164063 16.0131836,93.9990234 31.4853516,104.6796875 31.4853516,90.8183594 112.4560547,90.8183594 112.4560547,90.8339844 127.4589844,90.8339844 127.4589844,23.3203125\"/> </svg>"
9359
9648
 
9360
9649
  /***/ }),
9361
9650
  /* 79 */
9362
9651
  /***/ (function(module) {
9363
9652
 
9364
- module.exports = "<svg xmlns='http://www.w3.org/2000/svg' viewBox=\"0 0 1792 1792\"> <path d=\"M1664 960q-152-236-381-353 61 104 61 225 0 185-131.5 316.5t-316.5 131.5-316.5-131.5-131.5-316.5q0-121 61-225-229 117-381 353 133 205 333.5 326.5t434.5 121.5 434.5-121.5 333.5-326.5zm-720-384q0-20-14-34t-34-14q-125 0-214.5 89.5t-89.5 214.5q0 20 14 34t34 14 34-14 14-34q0-86 61-147t147-61q20 0 34-14t14-34zm848 384q0 34-20 69-140 230-376.5 368.5t-499.5 138.5-499.5-139-376.5-368q-20-35-20-69t20-69q140-229 376.5-368t499.5-139 499.5 139 376.5 368q20 35 20 69z\"/> </svg>"
9653
+ module.exports = "<svg xmlns='http://www.w3.org/2000/svg' viewBox=\"0 0 1792 1792\"> <path d=\"M832 1408l336-384h-768l-336 384h768zm1013-1077q15 34 9.5 71.5t-30.5 65.5l-896 1024q-38 44-96 44h-768q-38 0-69.5-20.5t-47.5-54.5q-15-34-9.5-71.5t30.5-65.5l896-1024q38-44 96-44h768q38 0 69.5 20.5t47.5 54.5z\"/> </svg>"
9365
9654
 
9366
9655
  /***/ }),
9367
9656
  /* 80 */
9368
9657
  /***/ (function(module) {
9369
9658
 
9370
- module.exports = "<svg xmlns='http://www.w3.org/2000/svg' viewBox=\"0 0 1792 1792\"> <path d=\"M1152 512v-472q22 14 36 28l408 408q14 14 28 36h-472zm-128 32q0 40 28 68t68 28h544v1056q0 40-28 68t-68 28h-1344q-40 0-68-28t-28-68v-1600q0-40 28-68t68-28h800v544z\"/> </svg>"
9659
+ module.exports = "<svg xmlns='http://www.w3.org/2000/svg' viewBox=\"0 0 1792 1792\"> <path d=\"M1664 960q-152-236-381-353 61 104 61 225 0 185-131.5 316.5t-316.5 131.5-316.5-131.5-131.5-316.5q0-121 61-225-229 117-381 353 133 205 333.5 326.5t434.5 121.5 434.5-121.5 333.5-326.5zm-720-384q0-20-14-34t-34-14q-125 0-214.5 89.5t-89.5 214.5q0 20 14 34t34 14 34-14 14-34q0-86 61-147t147-61q20 0 34-14t14-34zm848 384q0 34-20 69-140 230-376.5 368.5t-499.5 138.5-499.5-139-376.5-368q-20-35-20-69t20-69q140-229 376.5-368t499.5-139 499.5 139 376.5 368q20 35 20 69z\"/> </svg>"
9371
9660
 
9372
9661
  /***/ }),
9373
9662
  /* 81 */
9374
9663
  /***/ (function(module) {
9375
9664
 
9376
- module.exports = "<svg xmlns='http://www.w3.org/2000/svg' viewBox=\"0 0 1792 1792\"> <path d=\"M1728 608v704q0 92-66 158t-158 66h-1216q-92 0-158-66t-66-158v-960q0-92 66-158t158-66h320q92 0 158 66t66 158v32h672q92 0 158 66t66 158z\"/> </svg>"
9665
+ module.exports = "<svg xmlns='http://www.w3.org/2000/svg' viewBox=\"0 0 1792 1792\"> <path d=\"M1152 512v-472q22 14 36 28l408 408q14 14 28 36h-472zm-128 32q0 40 28 68t68 28h544v1056q0 40-28 68t-68 28h-1344q-40 0-68-28t-28-68v-1600q0-40 28-68t68-28h800v544z\"/> </svg>"
9377
9666
 
9378
9667
  /***/ }),
9379
9668
  /* 82 */
9380
9669
  /***/ (function(module) {
9381
9670
 
9382
- module.exports = "<svg xmlns='http://www.w3.org/2000/svg' viewBox=\"0 0 1792 1792\"> <path d=\"M789 559l-170 450q33 0 136.5 2t160.5 2q19 0 57-2-87-253-184-452zm-725 1105l2-79q23-7 56-12.5t57-10.5 49.5-14.5 44.5-29 31-50.5l237-616 280-724h128q8 14 11 21l205 480q33 78 106 257.5t114 274.5q15 34 58 144.5t72 168.5q20 45 35 57 19 15 88 29.5t84 20.5q6 38 6 57 0 4-.5 13t-.5 13q-63 0-190-8t-191-8q-76 0-215 7t-178 8q0-43 4-78l131-28q1 0 12.5-2.5t15.5-3.5 14.5-4.5 15-6.5 11-8 9-11 2.5-14q0-16-31-96.5t-72-177.5-42-100l-450-2q-26 58-76.5 195.5t-50.5 162.5q0 22 14 37.5t43.5 24.5 48.5 13.5 57 8.5 41 4q1 19 1 58 0 9-2 27-58 0-174.5-10t-174.5-10q-8 0-26.5 4t-21.5 4q-80 14-188 14z\"/> </svg>"
9671
+ module.exports = "<svg xmlns='http://www.w3.org/2000/svg' viewBox=\"0 0 1792 1792\"> <path d=\"M1728 608v704q0 92-66 158t-158 66h-1216q-92 0-158-66t-66-158v-960q0-92 66-158t158-66h320q92 0 158 66t66 158v32h672q92 0 158 66t66 158z\"/> </svg>"
9383
9672
 
9384
9673
  /***/ }),
9385
9674
  /* 83 */
9386
9675
  /***/ (function(module) {
9387
9676
 
9388
- module.exports = "<svg xmlns='http://www.w3.org/2000/svg' viewBox=\"0 0 1792 1792\"> <path d=\"M1744 1408q33 0 42 18.5t-11 44.5l-126 162q-20 26-49 26t-49-26l-126-162q-20-26-11-44.5t42-18.5h80v-1024h-80q-33 0-42-18.5t11-44.5l126-162q20-26 49-26t49 26l126 162q20 26 11 44.5t-42 18.5h-80v1024h80zm-1663-1279l54 27q12 5 211 5 44 0 132-2t132-2q36 0 107.5.5t107.5.5h293q6 0 21 .5t20.5 0 16-3 17.5-9 15-17.5l42-1q4 0 14 .5t14 .5q2 112 2 336 0 80-5 109-39 14-68 18-25-44-54-128-3-9-11-48t-14.5-73.5-7.5-35.5q-6-8-12-12.5t-15.5-6-13-2.5-18-.5-16.5.5q-17 0-66.5-.5t-74.5-.5-64 2-71 6q-9 81-8 136 0 94 2 388t2 455q0 16-2.5 71.5t0 91.5 12.5 69q40 21 124 42.5t120 37.5q5 40 5 50 0 14-3 29l-34 1q-76 2-218-8t-207-10q-50 0-151 9t-152 9q-3-51-3-52v-9q17-27 61.5-43t98.5-29 78-27q19-42 19-383 0-101-3-303t-3-303v-117q0-2 .5-15.5t.5-25-1-25.5-3-24-5-14q-11-12-162-12-33 0-93 12t-80 26q-19 13-34 72.5t-31.5 111-42.5 53.5q-42-26-56-44v-383z\"/> </svg>"
9677
+ module.exports = "<svg xmlns='http://www.w3.org/2000/svg' viewBox=\"0 0 1792 1792\"> <path d=\"M789 559l-170 450q33 0 136.5 2t160.5 2q19 0 57-2-87-253-184-452zm-725 1105l2-79q23-7 56-12.5t57-10.5 49.5-14.5 44.5-29 31-50.5l237-616 280-724h128q8 14 11 21l205 480q33 78 106 257.5t114 274.5q15 34 58 144.5t72 168.5q20 45 35 57 19 15 88 29.5t84 20.5q6 38 6 57 0 4-.5 13t-.5 13q-63 0-190-8t-191-8q-76 0-215 7t-178 8q0-43 4-78l131-28q1 0 12.5-2.5t15.5-3.5 14.5-4.5 15-6.5 11-8 9-11 2.5-14q0-16-31-96.5t-72-177.5-42-100l-450-2q-26 58-76.5 195.5t-50.5 162.5q0 22 14 37.5t43.5 24.5 48.5 13.5 57 8.5 41 4q1 19 1 58 0 9-2 27-58 0-174.5-10t-174.5-10q-8 0-26.5 4t-21.5 4q-80 14-188 14z\"/> </svg>"
9389
9678
 
9390
9679
  /***/ }),
9391
9680
  /* 84 */
9392
9681
  /***/ (function(module) {
9393
9682
 
9394
- module.exports = "<svg xmlns='http://www.w3.org/2000/svg' viewBox=\"0 0 24 24\"> <path stroke-width=\"0\" d=\"M22,20.6L3.4,2H8V0H0v8h2V3.4L20.6,22H16v2h8v-8h-2V20.6z M16,0v2h4.7l-6.3,6.3l1.4,1.4L22,3.5V8h2V0H16z M8.3,14.3L2,20.6V16H0v8h8v-2H3.5l6.3-6.3L8.3,14.3z\"/> </svg>"
9683
+ module.exports = "<svg xmlns='http://www.w3.org/2000/svg' viewBox=\"0 0 1792 1792\"> <path d=\"M1744 1408q33 0 42 18.5t-11 44.5l-126 162q-20 26-49 26t-49-26l-126-162q-20-26-11-44.5t42-18.5h80v-1024h-80q-33 0-42-18.5t11-44.5l126-162q20-26 49-26t49 26l126 162q20 26 11 44.5t-42 18.5h-80v1024h80zm-1663-1279l54 27q12 5 211 5 44 0 132-2t132-2q36 0 107.5.5t107.5.5h293q6 0 21 .5t20.5 0 16-3 17.5-9 15-17.5l42-1q4 0 14 .5t14 .5q2 112 2 336 0 80-5 109-39 14-68 18-25-44-54-128-3-9-11-48t-14.5-73.5-7.5-35.5q-6-8-12-12.5t-15.5-6-13-2.5-18-.5-16.5.5q-17 0-66.5-.5t-74.5-.5-64 2-71 6q-9 81-8 136 0 94 2 388t2 455q0 16-2.5 71.5t0 91.5 12.5 69q40 21 124 42.5t120 37.5q5 40 5 50 0 14-3 29l-34 1q-76 2-218-8t-207-10q-50 0-151 9t-152 9q-3-51-3-52v-9q17-27 61.5-43t98.5-29 78-27q19-42 19-383 0-101-3-303t-3-303v-117q0-2 .5-15.5t.5-25-1-25.5-3-24-5-14q-11-12-162-12-33 0-93 12t-80 26q-19 13-34 72.5t-31.5 111-42.5 53.5q-42-26-56-44v-383z\"/> </svg>"
9395
9684
 
9396
9685
  /***/ }),
9397
9686
  /* 85 */
9398
9687
  /***/ (function(module) {
9399
9688
 
9400
- module.exports = "<svg xmlns='http://www.w3.org/2000/svg' viewBox=\"0 0 1792 1792\"> <path d=\"M1600 736v192q0 40-28 68t-68 28h-1216q-40 0-68-28t-28-68v-192q0-40 28-68t68-28h1216q40 0 68 28t28 68z\"/> </svg>"
9689
+ module.exports = "<svg xmlns='http://www.w3.org/2000/svg' viewBox=\"0 0 24 24\"> <path stroke-width=\"0\" d=\"M22,20.6L3.4,2H8V0H0v8h2V3.4L20.6,22H16v2h8v-8h-2V20.6z M16,0v2h4.7l-6.3,6.3l1.4,1.4L22,3.5V8h2V0H16z M8.3,14.3L2,20.6V16H0v8h8v-2H3.5l6.3-6.3L8.3,14.3z\"/> </svg>"
9401
9690
 
9402
9691
  /***/ }),
9403
9692
  /* 86 */
9404
9693
  /***/ (function(module) {
9405
9694
 
9406
- module.exports = "<svg xmlns='http://www.w3.org/2000/svg' viewBox=\"0 0 1792 1792\"> <path d=\"M576 576q0 80-56 136t-136 56-136-56-56-136 56-136 136-56 136 56 56 136zm1024 384v448h-1408v-192l320-320 160 160 512-512zm96-704h-1600q-13 0-22.5 9.5t-9.5 22.5v1216q0 13 9.5 22.5t22.5 9.5h1600q13 0 22.5-9.5t9.5-22.5v-1216q0-13-9.5-22.5t-22.5-9.5zm160 32v1216q0 66-47 113t-113 47h-1600q-66 0-113-47t-47-113v-1216q0-66 47-113t113-47h1600q66 0 113 47t47 113z\"/> </svg>"
9695
+ module.exports = "<svg xmlns='http://www.w3.org/2000/svg' viewBox=\"0 0 1792 1792\"> <path d=\"M1600 736v192q0 40-28 68t-68 28h-1216q-40 0-68-28t-28-68v-192q0-40 28-68t68-28h1216q40 0 68 28t28 68z\"/> </svg>"
9407
9696
 
9408
9697
  /***/ }),
9409
9698
  /* 87 */
9410
9699
  /***/ (function(module) {
9411
9700
 
9412
- module.exports = "<svg xmlns='http://www.w3.org/2000/svg' viewBox=\"0 0 1792 1792\"> <path d=\"M352 832q0 14-9 23l-288 288q-9 9-23 9-13 0-22.5-9.5t-9.5-22.5v-576q0-13 9.5-22.5t22.5-9.5q14 0 23 9l288 288q9 9 9 23zm1440 480v192q0 13-9.5 22.5t-22.5 9.5h-1728q-13 0-22.5-9.5t-9.5-22.5v-192q0-13 9.5-22.5t22.5-9.5h1728q13 0 22.5 9.5t9.5 22.5zm0-384v192q0 13-9.5 22.5t-22.5 9.5h-1088q-13 0-22.5-9.5t-9.5-22.5v-192q0-13 9.5-22.5t22.5-9.5h1088q13 0 22.5 9.5t9.5 22.5zm0-384v192q0 13-9.5 22.5t-22.5 9.5h-1088q-13 0-22.5-9.5t-9.5-22.5v-192q0-13 9.5-22.5t22.5-9.5h1088q13 0 22.5 9.5t9.5 22.5zm0-384v192q0 13-9.5 22.5t-22.5 9.5h-1728q-13 0-22.5-9.5t-9.5-22.5v-192q0-13 9.5-22.5t22.5-9.5h1728q13 0 22.5 9.5t9.5 22.5z\"/> </svg>"
9701
+ module.exports = "<svg xmlns='http://www.w3.org/2000/svg' viewBox=\"0 0 1792 1792\"> <path d=\"M576 576q0 80-56 136t-136 56-136-56-56-136 56-136 136-56 136 56 56 136zm1024 384v448h-1408v-192l320-320 160 160 512-512zm96-704h-1600q-13 0-22.5 9.5t-9.5 22.5v1216q0 13 9.5 22.5t22.5 9.5h1600q13 0 22.5-9.5t9.5-22.5v-1216q0-13-9.5-22.5t-22.5-9.5zm160 32v1216q0 66-47 113t-113 47h-1600q-66 0-113-47t-47-113v-1216q0-66 47-113t113-47h1600q66 0 113 47t47 113z\"/> </svg>"
9413
9702
 
9414
9703
  /***/ }),
9415
9704
  /* 88 */
9416
9705
  /***/ (function(module) {
9417
9706
 
9418
- module.exports = "<svg xmlns='http://www.w3.org/2000/svg' viewBox=\"0 0 1792 1792\"> <path d=\"M1152 1376v-160q0-14-9-23t-23-9h-96v-512q0-14-9-23t-23-9h-320q-14 0-23 9t-9 23v160q0 14 9 23t23 9h96v320h-96q-14 0-23 9t-9 23v160q0 14 9 23t23 9h448q14 0 23-9t9-23zm-128-896v-160q0-14-9-23t-23-9h-192q-14 0-23 9t-9 23v160q0 14 9 23t23 9h192q14 0 23-9t9-23zm640 416q0 209-103 385.5t-279.5 279.5-385.5 103-385.5-103-279.5-279.5-103-385.5 103-385.5 279.5-279.5 385.5-103 385.5 103 279.5 279.5 103 385.5z\"/> </svg>"
9707
+ module.exports = "<svg xmlns='http://www.w3.org/2000/svg' viewBox=\"0 0 1792 1792\"> <path d=\"M352 832q0 14-9 23l-288 288q-9 9-23 9-13 0-22.5-9.5t-9.5-22.5v-576q0-13 9.5-22.5t22.5-9.5q14 0 23 9l288 288q9 9 9 23zm1440 480v192q0 13-9.5 22.5t-22.5 9.5h-1728q-13 0-22.5-9.5t-9.5-22.5v-192q0-13 9.5-22.5t22.5-9.5h1728q13 0 22.5 9.5t9.5 22.5zm0-384v192q0 13-9.5 22.5t-22.5 9.5h-1088q-13 0-22.5-9.5t-9.5-22.5v-192q0-13 9.5-22.5t22.5-9.5h1088q13 0 22.5 9.5t9.5 22.5zm0-384v192q0 13-9.5 22.5t-22.5 9.5h-1088q-13 0-22.5-9.5t-9.5-22.5v-192q0-13 9.5-22.5t22.5-9.5h1088q13 0 22.5 9.5t9.5 22.5zm0-384v192q0 13-9.5 22.5t-22.5 9.5h-1728q-13 0-22.5-9.5t-9.5-22.5v-192q0-13 9.5-22.5t22.5-9.5h1728q13 0 22.5 9.5t9.5 22.5z\"/> </svg>"
9419
9708
 
9420
9709
  /***/ }),
9421
9710
  /* 89 */
9422
9711
  /***/ (function(module) {
9423
9712
 
9424
- module.exports = "<svg xmlns='http://www.w3.org/2000/svg' viewBox=\"0 0 1792 1792\"> <path d=\"M384 1662l17-85q6-2 81.5-21.5t111.5-37.5q28-35 41-101 1-7 62-289t114-543.5 52-296.5v-25q-24-13-54.5-18.5t-69.5-8-58-5.5l19-103q33 2 120 6.5t149.5 7 120.5 2.5q48 0 98.5-2.5t121-7 98.5-6.5q-5 39-19 89-30 10-101.5 28.5t-108.5 33.5q-8 19-14 42.5t-9 40-7.5 45.5-6.5 42q-27 148-87.5 419.5t-77.5 355.5q-2 9-13 58t-20 90-16 83.5-6 57.5l1 18q17 4 185 31-3 44-16 99-11 0-32.5 1.5t-32.5 1.5q-29 0-87-10t-86-10q-138-2-206-2-51 0-143 9t-121 11z\"/> </svg>"
9713
+ module.exports = "<svg xmlns='http://www.w3.org/2000/svg' viewBox=\"0 0 1792 1792\"> <path d=\"M1152 1376v-160q0-14-9-23t-23-9h-96v-512q0-14-9-23t-23-9h-320q-14 0-23 9t-9 23v160q0 14 9 23t23 9h96v320h-96q-14 0-23 9t-9 23v160q0 14 9 23t23 9h448q14 0 23-9t9-23zm-128-896v-160q0-14-9-23t-23-9h-192q-14 0-23 9t-9 23v160q0 14 9 23t23 9h192q14 0 23-9t9-23zm640 416q0 209-103 385.5t-279.5 279.5-385.5 103-385.5-103-279.5-279.5-103-385.5 103-385.5 279.5-279.5 385.5-103 385.5 103 279.5 279.5 103 385.5z\"/> </svg>"
9425
9714
 
9426
9715
  /***/ }),
9427
9716
  /* 90 */
9428
9717
  /***/ (function(module) {
9429
9718
 
9430
- module.exports = "<svg xmlns='http://www.w3.org/2000/svg' viewBox=\"0 0 1792 1792\"> <path d=\"M1792 1344v128q0 26-19 45t-45 19h-1664q-26 0-45-19t-19-45v-128q0-26 19-45t45-19h1664q26 0 45 19t19 45zm0-384v128q0 26-19 45t-45 19h-1664q-26 0-45-19t-19-45v-128q0-26 19-45t45-19h1664q26 0 45 19t19 45zm0-384v128q0 26-19 45t-45 19h-1664q-26 0-45-19t-19-45v-128q0-26 19-45t45-19h1664q26 0 45 19t19 45zm0-384v128q0 26-19 45t-45 19h-1664q-26 0-45-19t-19-45v-128q0-26 19-45t45-19h1664q26 0 45 19t19 45z\"/> </svg>"
9719
+ module.exports = "<svg xmlns='http://www.w3.org/2000/svg' viewBox=\"0 0 1792 1792\"> <path d=\"M384 1662l17-85q6-2 81.5-21.5t111.5-37.5q28-35 41-101 1-7 62-289t114-543.5 52-296.5v-25q-24-13-54.5-18.5t-69.5-8-58-5.5l19-103q33 2 120 6.5t149.5 7 120.5 2.5q48 0 98.5-2.5t121-7 98.5-6.5q-5 39-19 89-30 10-101.5 28.5t-108.5 33.5q-8 19-14 42.5t-9 40-7.5 45.5-6.5 42q-27 148-87.5 419.5t-77.5 355.5q-2 9-13 58t-20 90-16 83.5-6 57.5l1 18q17 4 185 31-3 44-16 99-11 0-32.5 1.5t-32.5 1.5q-29 0-87-10t-86-10q-138-2-206-2-51 0-143 9t-121 11z\"/> </svg>"
9431
9720
 
9432
9721
  /***/ }),
9433
9722
  /* 91 */
9434
9723
  /***/ (function(module) {
9435
9724
 
9436
- module.exports = "<svg xmlns='http://www.w3.org/2000/svg' viewBox=\"0 0 1792 1792\"> <path d=\"M1792 1344v128q0 26-19 45t-45 19h-1664q-26 0-45-19t-19-45v-128q0-26 19-45t45-19h1664q26 0 45 19t19 45zm-384-384v128q0 26-19 45t-45 19h-1280q-26 0-45-19t-19-45v-128q0-26 19-45t45-19h1280q26 0 45 19t19 45zm256-384v128q0 26-19 45t-45 19h-1536q-26 0-45-19t-19-45v-128q0-26 19-45t45-19h1536q26 0 45 19t19 45zm-384-384v128q0 26-19 45t-45 19h-1152q-26 0-45-19t-19-45v-128q0-26 19-45t45-19h1152q26 0 45 19t19 45z\"/> </svg>"
9725
+ module.exports = "<svg xmlns='http://www.w3.org/2000/svg' viewBox=\"0 0 1792 1792\"> <path d=\"M1792 1344v128q0 26-19 45t-45 19h-1664q-26 0-45-19t-19-45v-128q0-26 19-45t45-19h1664q26 0 45 19t19 45zm0-384v128q0 26-19 45t-45 19h-1664q-26 0-45-19t-19-45v-128q0-26 19-45t45-19h1664q26 0 45 19t19 45zm0-384v128q0 26-19 45t-45 19h-1664q-26 0-45-19t-19-45v-128q0-26 19-45t45-19h1664q26 0 45 19t19 45zm0-384v128q0 26-19 45t-45 19h-1664q-26 0-45-19t-19-45v-128q0-26 19-45t45-19h1664q26 0 45 19t19 45z\"/> </svg>"
9437
9726
 
9438
9727
  /***/ }),
9439
9728
  /* 92 */
9440
9729
  /***/ (function(module) {
9441
9730
 
9442
- module.exports = "<svg xmlns='http://www.w3.org/2000/svg' viewBox=\"0 0 1792 1792\"> <path d=\"M1520 1216q0-40-28-68l-208-208q-28-28-68-28-42 0-72 32 3 3 19 18.5t21.5 21.5 15 19 13 25.5 3.5 27.5q0 40-28 68t-68 28q-15 0-27.5-3.5t-25.5-13-19-15-21.5-21.5-18.5-19q-33 31-33 73 0 40 28 68l206 207q27 27 68 27 40 0 68-26l147-146q28-28 28-67zm-703-705q0-40-28-68l-206-207q-28-28-68-28-39 0-68 27l-147 146q-28 28-28 67 0 40 28 68l208 208q27 27 68 27 42 0 72-31-3-3-19-18.5t-21.5-21.5-15-19-13-25.5-3.5-27.5q0-40 28-68t68-28q15 0 27.5 3.5t25.5 13 19 15 21.5 21.5 18.5 19q33-31 33-73zm895 705q0 120-85 203l-147 146q-83 83-203 83-121 0-204-85l-206-207q-83-83-83-203 0-123 88-209l-88-88q-86 88-208 88-120 0-204-84l-208-208q-84-84-84-204t85-203l147-146q83-83 203-83 121 0 204 85l206 207q83 83 83 203 0 123-88 209l88 88q86-88 208-88 120 0 204 84l208 208q84 84 84 204z\"/> </svg>"
9731
+ module.exports = "<svg xmlns='http://www.w3.org/2000/svg' viewBox=\"0 0 1792 1792\"> <path d=\"M1792 1344v128q0 26-19 45t-45 19h-1664q-26 0-45-19t-19-45v-128q0-26 19-45t45-19h1664q26 0 45 19t19 45zm-384-384v128q0 26-19 45t-45 19h-1280q-26 0-45-19t-19-45v-128q0-26 19-45t45-19h1280q26 0 45 19t19 45zm256-384v128q0 26-19 45t-45 19h-1536q-26 0-45-19t-19-45v-128q0-26 19-45t45-19h1536q26 0 45 19t19 45zm-384-384v128q0 26-19 45t-45 19h-1152q-26 0-45-19t-19-45v-128q0-26 19-45t45-19h1152q26 0 45 19t19 45z\"/> </svg>"
9443
9732
 
9444
9733
  /***/ }),
9445
9734
  /* 93 */
9446
9735
  /***/ (function(module) {
9447
9736
 
9448
- module.exports = "<svg xmlns='http://www.w3.org/2000/svg' viewBox=\"0 0 1792 1792\"><path d=\"M640 768h512v-192q0-106-75-181t-181-75-181 75-75 181v192zm832 96v576q0 40-28 68t-68 28h-960q-40 0-68-28t-28-68v-576q0-40 28-68t68-28h32v-192q0-184 132-316t316-132 316 132 132 316v192h32q40 0 68 28t28 68z\"/></svg>"
9737
+ module.exports = "<svg xmlns='http://www.w3.org/2000/svg' viewBox=\"0 0 1792 1792\"> <path d=\"M1520 1216q0-40-28-68l-208-208q-28-28-68-28-42 0-72 32 3 3 19 18.5t21.5 21.5 15 19 13 25.5 3.5 27.5q0 40-28 68t-68 28q-15 0-27.5-3.5t-25.5-13-19-15-21.5-21.5-18.5-19q-33 31-33 73 0 40 28 68l206 207q27 27 68 27 40 0 68-26l147-146q28-28 28-67zm-703-705q0-40-28-68l-206-207q-28-28-68-28-39 0-68 27l-147 146q-28 28-28 67 0 40 28 68l208 208q27 27 68 27 42 0 72-31-3-3-19-18.5t-21.5-21.5-15-19-13-25.5-3.5-27.5q0-40 28-68t68-28q15 0 27.5 3.5t25.5 13 19 15 21.5 21.5 18.5 19q33-31 33-73zm895 705q0 120-85 203l-147 146q-83 83-203 83-121 0-204-85l-206-207q-83-83-83-203 0-123 88-209l-88-88q-86 88-208 88-120 0-204-84l-208-208q-84-84-84-204t85-203l147-146q83-83 203-83 121 0 204 85l206 207q83 83 83 203 0 123-88 209l88 88q86-88 208-88 120 0 204 84l208 208q84 84 84 204z\"/> </svg>"
9449
9738
 
9450
9739
  /***/ }),
9451
9740
  /* 94 */
9452
9741
  /***/ (function(module) {
9453
9742
 
9454
- module.exports = "<svg xmlns='http://www.w3.org/2000/svg' viewBox=\"0 0 1792 1792\"><path d=\"M1664 1344v128q0 26-19 45t-45 19h-1408q-26 0-45-19t-19-45v-128q0-26 19-45t45-19h1408q26 0 45 19t19 45zm0-512v128q0 26-19 45t-45 19h-1408q-26 0-45-19t-19-45v-128q0-26 19-45t45-19h1408q26 0 45 19t19 45zm0-512v128q0 26-19 45t-45 19h-1408q-26 0-45-19t-19-45v-128q0-26 19-45t45-19h1408q26 0 45 19t19 45z\"/></svg>"
9743
+ module.exports = "<svg xmlns='http://www.w3.org/2000/svg' viewBox=\"0 0 1792 1792\"><path d=\"M640 768h512v-192q0-106-75-181t-181-75-181 75-75 181v192zm832 96v576q0 40-28 68t-68 28h-960q-40 0-68-28t-28-68v-576q0-40 28-68t68-28h32v-192q0-184 132-316t316-132 316 132 132 316v192h32q40 0 68 28t28 68z\"/></svg>"
9455
9744
 
9456
9745
  /***/ }),
9457
9746
  /* 95 */
9458
9747
  /***/ (function(module) {
9459
9748
 
9460
- module.exports = "<svg xmlns='http://www.w3.org/2000/svg' viewBox=\"0 0 312 312\"> <g transform=\"translate(0.000000,312.000000) scale(0.100000,-0.100000)\" stroke=\"none\"> <path d=\"M50 3109 c0 -7 -11 -22 -25 -35 l-25 -23 0 -961 0 -961 32 -29 32 -30 501 -2 500 -3 3 -502 2 -502 31 -30 31 -31 958 0 958 0 23 25 c13 13 30 25 37 25 9 0 12 199 12 960 0 686 -3 960 -11 960 -6 0 -24 12 -40 28 l-29 27 -503 5 -502 5 -5 502 -5 503 -28 29 c-15 16 -27 34 -27 40 0 8 -274 11 -960 11 -710 0 -960 -3 -960 -11z m1738 -698 l2 -453 -40 -40 c-22 -22 -40 -43 -40 -47 0 -4 36 -42 79 -85 88 -87 82 -87 141 -23 l26 27 455 -2 454 -3 0 -775 0 -775 -775 0 -775 0 -3 450 -2 449 47 48 47 48 -82 80 c-44 44 -84 80 -87 80 -3 0 -25 -18 -48 -40 l-41 -40 -456 2 -455 3 -3 765 c-1 421 0 771 3 778 3 10 164 12 777 10 l773 -3 3 -454z\"/> <path d=\"M607 2492 c-42 -42 -77 -82 -77 -87 0 -6 86 -96 190 -200 105 -104 190 -197 190 -205 0 -8 -41 -56 -92 -107 -65 -65 -87 -94 -77 -98 8 -3 138 -4 289 -3 l275 3 3 275 c1 151 0 281 -3 289 -4 10 -35 -14 -103 -82 -54 -53 -103 -97 -109 -97 -7 0 -99 88 -206 195 -107 107 -196 195 -198 195 -3 0 -39 -35 -82 -78z\"/> <path d=\"M1470 1639 c-47 -49 -87 -91 -89 -94 -5 -6 149 -165 160 -165 9 0 189 179 189 188 0 12 -154 162 -165 161 -6 0 -48 -41 -95 -90z\"/> <path d=\"M1797 1303 c-9 -8 -9 -568 0 -576 4 -4 50 36 103 88 54 52 101 95 106 95 5 0 95 -85 199 -190 104 -104 194 -190 200 -190 6 0 46 36 90 80 l79 79 -197 196 c-108 108 -197 199 -197 203 0 4 45 52 99 106 55 55 98 103 95 108 -6 10 -568 11 -577 1z\"/> </g> </svg>"
9749
+ module.exports = "<svg xmlns='http://www.w3.org/2000/svg' viewBox=\"0 0 1792 1792\"><path d=\"M1664 1344v128q0 26-19 45t-45 19h-1408q-26 0-45-19t-19-45v-128q0-26 19-45t45-19h1408q26 0 45 19t19 45zm0-512v128q0 26-19 45t-45 19h-1408q-26 0-45-19t-19-45v-128q0-26 19-45t45-19h1408q26 0 45 19t19 45zm0-512v128q0 26-19 45t-45 19h-1408q-26 0-45-19t-19-45v-128q0-26 19-45t45-19h1408q26 0 45 19t19 45z\"/></svg>"
9461
9750
 
9462
9751
  /***/ }),
9463
9752
  /* 96 */
9464
9753
  /***/ (function(module) {
9465
9754
 
9466
- module.exports = "<svg xmlns='http://www.w3.org/2000/svg' viewBox=\"0 0 32 32\"> <path d=\"M27 4l-15 15-7-7-5 5 12 12 20-20z\"/> </svg>"
9755
+ module.exports = "<svg xmlns='http://www.w3.org/2000/svg' viewBox=\"0 0 312 312\"> <g transform=\"translate(0.000000,312.000000) scale(0.100000,-0.100000)\" stroke=\"none\"> <path d=\"M50 3109 c0 -7 -11 -22 -25 -35 l-25 -23 0 -961 0 -961 32 -29 32 -30 501 -2 500 -3 3 -502 2 -502 31 -30 31 -31 958 0 958 0 23 25 c13 13 30 25 37 25 9 0 12 199 12 960 0 686 -3 960 -11 960 -6 0 -24 12 -40 28 l-29 27 -503 5 -502 5 -5 502 -5 503 -28 29 c-15 16 -27 34 -27 40 0 8 -274 11 -960 11 -710 0 -960 -3 -960 -11z m1738 -698 l2 -453 -40 -40 c-22 -22 -40 -43 -40 -47 0 -4 36 -42 79 -85 88 -87 82 -87 141 -23 l26 27 455 -2 454 -3 0 -775 0 -775 -775 0 -775 0 -3 450 -2 449 47 48 47 48 -82 80 c-44 44 -84 80 -87 80 -3 0 -25 -18 -48 -40 l-41 -40 -456 2 -455 3 -3 765 c-1 421 0 771 3 778 3 10 164 12 777 10 l773 -3 3 -454z\"/> <path d=\"M607 2492 c-42 -42 -77 -82 -77 -87 0 -6 86 -96 190 -200 105 -104 190 -197 190 -205 0 -8 -41 -56 -92 -107 -65 -65 -87 -94 -77 -98 8 -3 138 -4 289 -3 l275 3 3 275 c1 151 0 281 -3 289 -4 10 -35 -14 -103 -82 -54 -53 -103 -97 -109 -97 -7 0 -99 88 -206 195 -107 107 -196 195 -198 195 -3 0 -39 -35 -82 -78z\"/> <path d=\"M1470 1639 c-47 -49 -87 -91 -89 -94 -5 -6 149 -165 160 -165 9 0 189 179 189 188 0 12 -154 162 -165 161 -6 0 -48 -41 -95 -90z\"/> <path d=\"M1797 1303 c-9 -8 -9 -568 0 -576 4 -4 50 36 103 88 54 52 101 95 106 95 5 0 95 -85 199 -190 104 -104 194 -190 200 -190 6 0 46 36 90 80 l79 79 -197 196 c-108 108 -197 199 -197 203 0 4 45 52 99 106 55 55 98 103 95 108 -6 10 -568 11 -577 1z\"/> </g> </svg>"
9467
9756
 
9468
9757
  /***/ }),
9469
9758
  /* 97 */
9470
9759
  /***/ (function(module) {
9471
9760
 
9472
- module.exports = "<svg xmlns='http://www.w3.org/2000/svg' viewBox=\"0 0 1792 1792\"> <path stroke-width=\"0\" d=\"M381 1620q0 80-54.5 126t-135.5 46q-106 0-172-66l57-88q49 45 106 45 29 0 50.5-14.5t21.5-42.5q0-64-105-56l-26-56q8-10 32.5-43.5t42.5-54 37-38.5v-1q-16 0-48.5 1t-48.5 1v53h-106v-152h333v88l-95 115q51 12 81 49t30 88zm2-627v159h-362q-6-36-6-54 0-51 23.5-93t56.5-68 66-47.5 56.5-43.5 23.5-45q0-25-14.5-38.5t-39.5-13.5q-46 0-81 58l-85-59q24-51 71.5-79.5t105.5-28.5q73 0 123 41.5t50 112.5q0 50-34 91.5t-75 64.5-75.5 50.5-35.5 52.5h127v-60h105zm1409 319v192q0 13-9.5 22.5t-22.5 9.5h-1216q-13 0-22.5-9.5t-9.5-22.5v-192q0-14 9-23t23-9h1216q13 0 22.5 9.5t9.5 22.5zm-1408-899v99h-335v-99h107q0-41 .5-122t.5-121v-12h-2q-8 17-50 54l-71-76 136-127h106v404h108zm1408 387v192q0 13-9.5 22.5t-22.5 9.5h-1216q-13 0-22.5-9.5t-9.5-22.5v-192q0-14 9-23t23-9h1216q13 0 22.5 9.5t9.5 22.5zm0-512v192q0 13-9.5 22.5t-22.5 9.5h-1216q-13 0-22.5-9.5t-9.5-22.5v-192q0-13 9.5-22.5t22.5-9.5h1216q13 0 22.5 9.5t9.5 22.5z\"/> </svg>"
9761
+ module.exports = "<svg xmlns='http://www.w3.org/2000/svg' viewBox=\"0 0 32 32\"> <path d=\"M27 4l-15 15-7-7-5 5 12 12 20-20z\"/> </svg>"
9473
9762
 
9474
9763
  /***/ }),
9475
9764
  /* 98 */
9476
9765
  /***/ (function(module) {
9477
9766
 
9478
- module.exports = "<svg xmlns='http://www.w3.org/2000/svg' viewBox=\"0 0 270 270\"> <path d=\"m240.443652,220.45085l-47.410809,0l0,-10.342138c13.89973,-8.43655 25.752896,-19.844464 34.686646,-33.469923c11.445525,-17.455846 17.496072,-37.709239 17.496072,-58.570077c0,-59.589197 -49.208516,-108.068714 -109.693558,-108.068714s-109.69263,48.479517 -109.69263,108.069628c0,20.860839 6.050547,41.113316 17.497001,58.570077c8.93375,13.625459 20.787845,25.032458 34.686646,33.469008l0,10.342138l-47.412666,0c-10.256959,0 -18.571354,8.191376 -18.571354,18.296574c0,10.105198 8.314395,18.296574 18.571354,18.296574l65.98402,0c10.256959,0 18.571354,-8.191376 18.571354,-18.296574l0,-39.496814c0,-7.073455 -4.137698,-13.51202 -10.626529,-16.537358c-25.24497,-11.772016 -41.557118,-37.145704 -41.557118,-64.643625c0,-39.411735 32.545369,-71.476481 72.549922,-71.476481c40.004553,0 72.550851,32.064746 72.550851,71.476481c0,27.497006 -16.312149,52.87161 -41.557118,64.643625c-6.487902,3.026253 -10.6256,9.464818 -10.6256,16.537358l0,39.496814c0,10.105198 8.314395,18.296574 18.571354,18.296574l65.982163,0c10.256959,0 18.571354,-8.191376 18.571354,-18.296574c0,-10.105198 -8.314395,-18.296574 -18.571354,-18.296574z\"/> </svg>"
9767
+ module.exports = "<svg xmlns='http://www.w3.org/2000/svg' viewBox=\"0 0 1792 1792\"> <path stroke-width=\"0\" d=\"M381 1620q0 80-54.5 126t-135.5 46q-106 0-172-66l57-88q49 45 106 45 29 0 50.5-14.5t21.5-42.5q0-64-105-56l-26-56q8-10 32.5-43.5t42.5-54 37-38.5v-1q-16 0-48.5 1t-48.5 1v53h-106v-152h333v88l-95 115q51 12 81 49t30 88zm2-627v159h-362q-6-36-6-54 0-51 23.5-93t56.5-68 66-47.5 56.5-43.5 23.5-45q0-25-14.5-38.5t-39.5-13.5q-46 0-81 58l-85-59q24-51 71.5-79.5t105.5-28.5q73 0 123 41.5t50 112.5q0 50-34 91.5t-75 64.5-75.5 50.5-35.5 52.5h127v-60h105zm1409 319v192q0 13-9.5 22.5t-22.5 9.5h-1216q-13 0-22.5-9.5t-9.5-22.5v-192q0-14 9-23t23-9h1216q13 0 22.5 9.5t9.5 22.5zm-1408-899v99h-335v-99h107q0-41 .5-122t.5-121v-12h-2q-8 17-50 54l-71-76 136-127h106v404h108zm1408 387v192q0 13-9.5 22.5t-22.5 9.5h-1216q-13 0-22.5-9.5t-9.5-22.5v-192q0-14 9-23t23-9h1216q13 0 22.5 9.5t9.5 22.5zm0-512v192q0 13-9.5 22.5t-22.5 9.5h-1216q-13 0-22.5-9.5t-9.5-22.5v-192q0-13 9.5-22.5t22.5-9.5h1216q13 0 22.5 9.5t9.5 22.5z\"/> </svg>"
9479
9768
 
9480
9769
  /***/ }),
9481
9770
  /* 99 */
9482
9771
  /***/ (function(module) {
9483
9772
 
9484
- module.exports = "<svg xmlns='http://www.w3.org/2000/svg' viewBox=\"0 0 1792 1792\"> <path d=\"M384 544v576q0 13-9.5 22.5t-22.5 9.5q-14 0-23-9l-288-288q-9-9-9-23t9-23l288-288q9-9 23-9 13 0 22.5 9.5t9.5 22.5zm1408 768v192q0 13-9.5 22.5t-22.5 9.5h-1728q-13 0-22.5-9.5t-9.5-22.5v-192q0-13 9.5-22.5t22.5-9.5h1728q13 0 22.5 9.5t9.5 22.5zm0-384v192q0 13-9.5 22.5t-22.5 9.5h-1088q-13 0-22.5-9.5t-9.5-22.5v-192q0-13 9.5-22.5t22.5-9.5h1088q13 0 22.5 9.5t9.5 22.5zm0-384v192q0 13-9.5 22.5t-22.5 9.5h-1088q-13 0-22.5-9.5t-9.5-22.5v-192q0-13 9.5-22.5t22.5-9.5h1088q13 0 22.5 9.5t9.5 22.5zm0-384v192q0 13-9.5 22.5t-22.5 9.5h-1728q-13 0-22.5-9.5t-9.5-22.5v-192q0-13 9.5-22.5t22.5-9.5h1728q13 0 22.5 9.5t9.5 22.5z\"/> </svg>"
9773
+ module.exports = "<svg xmlns='http://www.w3.org/2000/svg' viewBox=\"0 0 270 270\"> <path d=\"m240.443652,220.45085l-47.410809,0l0,-10.342138c13.89973,-8.43655 25.752896,-19.844464 34.686646,-33.469923c11.445525,-17.455846 17.496072,-37.709239 17.496072,-58.570077c0,-59.589197 -49.208516,-108.068714 -109.693558,-108.068714s-109.69263,48.479517 -109.69263,108.069628c0,20.860839 6.050547,41.113316 17.497001,58.570077c8.93375,13.625459 20.787845,25.032458 34.686646,33.469008l0,10.342138l-47.412666,0c-10.256959,0 -18.571354,8.191376 -18.571354,18.296574c0,10.105198 8.314395,18.296574 18.571354,18.296574l65.98402,0c10.256959,0 18.571354,-8.191376 18.571354,-18.296574l0,-39.496814c0,-7.073455 -4.137698,-13.51202 -10.626529,-16.537358c-25.24497,-11.772016 -41.557118,-37.145704 -41.557118,-64.643625c0,-39.411735 32.545369,-71.476481 72.549922,-71.476481c40.004553,0 72.550851,32.064746 72.550851,71.476481c0,27.497006 -16.312149,52.87161 -41.557118,64.643625c-6.487902,3.026253 -10.6256,9.464818 -10.6256,16.537358l0,39.496814c0,10.105198 8.314395,18.296574 18.571354,18.296574l65.982163,0c10.256959,0 18.571354,-8.191376 18.571354,-18.296574c0,-10.105198 -8.314395,-18.296574 -18.571354,-18.296574z\"/> </svg>"
9485
9774
 
9486
9775
  /***/ }),
9487
9776
  /* 100 */
9488
9777
  /***/ (function(module) {
9489
9778
 
9490
- module.exports = "<svg xmlns='http://www.w3.org/2000/svg' x=\"0px\" y=\"0px\" viewBox=\"0 0 459 459\"> <g> <path d=\"M229.5,0C102,0,0,102,0,229.5S102,459,229.5,459c20.4,0,38.25-17.85,38.25-38.25c0-10.2-2.55-17.85-10.2-25.5 c-5.1-7.65-10.2-15.3-10.2-25.5c0-20.4,17.851-38.25,38.25-38.25h45.9c71.4,0,127.5-56.1,127.5-127.5C459,91.8,357,0,229.5,0z M89.25,229.5c-20.4,0-38.25-17.85-38.25-38.25S68.85,153,89.25,153s38.25,17.85,38.25,38.25S109.65,229.5,89.25,229.5z M165.75,127.5c-20.4,0-38.25-17.85-38.25-38.25S145.35,51,165.75,51S204,68.85,204,89.25S186.15,127.5,165.75,127.5z M293.25,127.5c-20.4,0-38.25-17.85-38.25-38.25S272.85,51,293.25,51s38.25,17.85,38.25,38.25S313.65,127.5,293.25,127.5z M369.75,229.5c-20.4,0-38.25-17.85-38.25-38.25S349.35,153,369.75,153S408,170.85,408,191.25S390.15,229.5,369.75,229.5z\" /> </g> </svg>"
9779
+ module.exports = "<svg xmlns='http://www.w3.org/2000/svg' viewBox=\"0 0 1792 1792\"> <path d=\"M384 544v576q0 13-9.5 22.5t-22.5 9.5q-14 0-23-9l-288-288q-9-9-9-23t9-23l288-288q9-9 23-9 13 0 22.5 9.5t9.5 22.5zm1408 768v192q0 13-9.5 22.5t-22.5 9.5h-1728q-13 0-22.5-9.5t-9.5-22.5v-192q0-13 9.5-22.5t22.5-9.5h1728q13 0 22.5 9.5t9.5 22.5zm0-384v192q0 13-9.5 22.5t-22.5 9.5h-1088q-13 0-22.5-9.5t-9.5-22.5v-192q0-13 9.5-22.5t22.5-9.5h1088q13 0 22.5 9.5t9.5 22.5zm0-384v192q0 13-9.5 22.5t-22.5 9.5h-1088q-13 0-22.5-9.5t-9.5-22.5v-192q0-13 9.5-22.5t22.5-9.5h1088q13 0 22.5 9.5t9.5 22.5zm0-384v192q0 13-9.5 22.5t-22.5 9.5h-1728q-13 0-22.5-9.5t-9.5-22.5v-192q0-13 9.5-22.5t22.5-9.5h1728q13 0 22.5 9.5t9.5 22.5z\"/> </svg>"
9491
9780
 
9492
9781
  /***/ }),
9493
9782
  /* 101 */
9494
9783
  /***/ (function(module) {
9495
9784
 
9496
- module.exports = "<svg xmlns='http://www.w3.org/2000/svg' viewBox=\"0 0 1792 1792\"><path d=\"M1534 189v73q0 29-18.5 61t-42.5 32q-50 0-54 1-26 6-32 31-3 11-3 64v1152q0 25-18 43t-43 18h-108q-25 0-43-18t-18-43v-1218h-143v1218q0 25-17.5 43t-43.5 18h-108q-26 0-43.5-18t-17.5-43v-496q-147-12-245-59-126-58-192-179-64-117-64-259 0-166 88-286 88-118 209-159 111-37 417-37h479q25 0 43 18t18 43z\"/></svg>"
9785
+ module.exports = "<svg xmlns='http://www.w3.org/2000/svg' x=\"0px\" y=\"0px\" viewBox=\"0 0 459 459\"> <g> <path d=\"M229.5,0C102,0,0,102,0,229.5S102,459,229.5,459c20.4,0,38.25-17.85,38.25-38.25c0-10.2-2.55-17.85-10.2-25.5 c-5.1-7.65-10.2-15.3-10.2-25.5c0-20.4,17.851-38.25,38.25-38.25h45.9c71.4,0,127.5-56.1,127.5-127.5C459,91.8,357,0,229.5,0z M89.25,229.5c-20.4,0-38.25-17.85-38.25-38.25S68.85,153,89.25,153s38.25,17.85,38.25,38.25S109.65,229.5,89.25,229.5z M165.75,127.5c-20.4,0-38.25-17.85-38.25-38.25S145.35,51,165.75,51S204,68.85,204,89.25S186.15,127.5,165.75,127.5z M293.25,127.5c-20.4,0-38.25-17.85-38.25-38.25S272.85,51,293.25,51s38.25,17.85,38.25,38.25S313.65,127.5,293.25,127.5z M369.75,229.5c-20.4,0-38.25-17.85-38.25-38.25S349.35,153,369.75,153S408,170.85,408,191.25S390.15,229.5,369.75,229.5z\" /> </g> </svg>"
9497
9786
 
9498
9787
  /***/ }),
9499
9788
  /* 102 */
9500
9789
  /***/ (function(module) {
9501
9790
 
9502
- module.exports = "<svg viewBox=\"0 0 20 20\" xmlns=\"http://www.w3.org/2000/svg\"> <path stroke-width=\"0\" d=\"M10.5 20H2a2 2 0 0 1-2-2V6c0-1.1.9-2 2-2h1V3l2.03-.4a3 3 0 0 1 5.94 0L13 3v1h1a2 2 0 0 1 2 2v1h-2V6h-1v1H3V6H2v12h5v2h3.5zM8 4a1 1 0 1 0 0-2 1 1 0 0 0 0 2zm2 4h8a2 2 0 0 1 2 2v8a2 2 0 0 1-2 2h-8a2 2 0 0 1-2-2v-8c0-1.1.9-2 2-2zm0 2v8h8v-8h-8z\"/> </svg>"
9791
+ module.exports = "<svg xmlns='http://www.w3.org/2000/svg' viewBox=\"0 0 1792 1792\"><path d=\"M1534 189v73q0 29-18.5 61t-42.5 32q-50 0-54 1-26 6-32 31-3 11-3 64v1152q0 25-18 43t-43 18h-108q-25 0-43-18t-18-43v-1218h-143v1218q0 25-17.5 43t-43.5 18h-108q-26 0-43.5-18t-17.5-43v-496q-147-12-245-59-126-58-192-179-64-117-64-259 0-166 88-286 88-118 209-159 111-37 417-37h479q25 0 43 18t18 43z\"/></svg>"
9503
9792
 
9504
9793
  /***/ }),
9505
9794
  /* 103 */
9506
9795
  /***/ (function(module) {
9507
9796
 
9508
- module.exports = "<svg xmlns='http://www.w3.org/2000/svg' viewBox=\"0 0 1792 1792\"><path d=\"M491 1536l91-91-235-235-91 91v107h128v128h107zm523-928q0-22-22-22-10 0-17 7l-542 542q-7 7-7 17 0 22 22 22 10 0 17-7l542-542q7-7 7-17zm-54-192l416 416-832 832h-416v-416zm683 96q0 53-37 90l-166 166-416-416 166-165q36-38 90-38 53 0 91 38l235 234q37 39 37 91z\"/></svg>"
9797
+ module.exports = "<svg viewBox=\"0 0 20 20\" xmlns=\"http://www.w3.org/2000/svg\"> <path stroke-width=\"0\" d=\"M10.5 20H2a2 2 0 0 1-2-2V6c0-1.1.9-2 2-2h1V3l2.03-.4a3 3 0 0 1 5.94 0L13 3v1h1a2 2 0 0 1 2 2v1h-2V6h-1v1H3V6H2v12h5v2h3.5zM8 4a1 1 0 1 0 0-2 1 1 0 0 0 0 2zm2 4h8a2 2 0 0 1 2 2v8a2 2 0 0 1-2 2h-8a2 2 0 0 1-2-2v-8c0-1.1.9-2 2-2zm0 2v8h8v-8h-8z\"/> </svg>"
9509
9798
 
9510
9799
  /***/ }),
9511
9800
  /* 104 */
9512
9801
  /***/ (function(module) {
9513
9802
 
9514
- module.exports = "<svg xmlns='http://www.w3.org/2000/svg' viewBox=\"0 0 1792 1792\"><path d=\"M1600 736v192q0 40-28 68t-68 28h-416v416q0 40-28 68t-68 28h-192q-40 0-68-28t-28-68v-416h-416q-40 0-68-28t-28-68v-192q0-40 28-68t68-28h416v-416q0-40 28-68t68-28h192q40 0 68 28t28 68v416h416q40 0 68 28t28 68z\"/></svg>"
9803
+ module.exports = "<svg xmlns='http://www.w3.org/2000/svg' viewBox=\"0 0 1792 1792\"><path d=\"M491 1536l91-91-235-235-91 91v107h128v128h107zm523-928q0-22-22-22-10 0-17 7l-542 542q-7 7-7 17 0 22 22 22 10 0 17-7l542-542q7-7 7-17zm-54-192l416 416-832 832h-416v-416zm683 96q0 53-37 90l-166 166-416-416 166-165q36-38 90-38 53 0 91 38l235 234q37 39 37 91z\"/></svg>"
9515
9804
 
9516
9805
  /***/ }),
9517
9806
  /* 105 */
9518
9807
  /***/ (function(module) {
9519
9808
 
9520
- module.exports = "<svg xmlns='http://www.w3.org/2000/svg' viewBox=\"0 0 1792 1792\"> <path d=\"M448 1536h896v-256h-896v256zm0-640h896v-384h-160q-40 0-68-28t-28-68v-160h-640v640zm1152 64q0-26-19-45t-45-19-45 19-19 45 19 45 45 19 45-19 19-45zm128 0v416q0 13-9.5 22.5t-22.5 9.5h-224v160q0 40-28 68t-68 28h-960q-40 0-68-28t-28-68v-160h-224q-13 0-22.5-9.5t-9.5-22.5v-416q0-79 56.5-135.5t135.5-56.5h64v-544q0-40 28-68t68-28h672q40 0 88 20t76 48l152 152q28 28 48 76t20 88v256h64q79 0 135.5 56.5t56.5 135.5z\"/> </svg>"
9809
+ module.exports = "<svg xmlns='http://www.w3.org/2000/svg' viewBox=\"0 0 1792 1792\"><path d=\"M1600 736v192q0 40-28 68t-68 28h-416v416q0 40-28 68t-68 28h-192q-40 0-68-28t-28-68v-416h-416q-40 0-68-28t-28-68v-192q0-40 28-68t68-28h416v-416q0-40 28-68t68-28h192q40 0 68 28t28 68v416h416q40 0 68 28t28 68z\"/></svg>"
9521
9810
 
9522
9811
  /***/ }),
9523
9812
  /* 106 */
9524
9813
  /***/ (function(module) {
9525
9814
 
9526
- module.exports = "<svg xmlns='http://www.w3.org/2000/svg' viewBox=\"0 0 1792 1792\"> <path d=\"M1664 256v448q0 26-19 45t-45 19h-448q-42 0-59-40-17-39 14-69l138-138q-148-137-349-137-104 0-198.5 40.5t-163.5 109.5-109.5 163.5-40.5 198.5 40.5 198.5 109.5 163.5 163.5 109.5 198.5 40.5q119 0 225-52t179-147q7-10 23-12 14 0 25 9l137 138q9 8 9.5 20.5t-7.5 22.5q-109 132-264 204.5t-327 72.5q-156 0-298-61t-245-164-164-245-61-298 61-298 164-245 245-164 298-61q147 0 284.5 55.5t244.5 156.5l130-129q29-31 70-14 39 17 39 59z\"/> </svg>"
9815
+ module.exports = "<svg xmlns='http://www.w3.org/2000/svg' viewBox=\"0 0 1792 1792\"> <path d=\"M448 1536h896v-256h-896v256zm0-640h896v-384h-160q-40 0-68-28t-28-68v-160h-640v640zm1152 64q0-26-19-45t-45-19-45 19-19 45 19 45 45 19 45-19 19-45zm128 0v416q0 13-9.5 22.5t-22.5 9.5h-224v160q0 40-28 68t-68 28h-960q-40 0-68-28t-28-68v-160h-224q-13 0-22.5-9.5t-9.5-22.5v-416q0-79 56.5-135.5t135.5-56.5h64v-544q0-40 28-68t68-28h672q40 0 88 20t76 48l152 152q28 28 48 76t20 88v256h64q79 0 135.5 56.5t56.5 135.5z\"/> </svg>"
9527
9816
 
9528
9817
  /***/ }),
9529
9818
  /* 107 */
9530
9819
  /***/ (function(module) {
9531
9820
 
9532
- module.exports = "<svg xmlns='http://www.w3.org/2000/svg' viewBox=\"0 0 24 24\"> <g transform=\"translate(-251.000000, -443.000000)\"> <g transform=\"translate(215.000000, 119.000000)\"/> <path d=\"M252,448 L256,448 L256,444 L252,444 L252,448 Z M257,448 L269,448 L269,446 L257,446 L257,448 Z M257,464 L269,464 L269,462 L257,462 L257,464 Z M270,444 L270,448 L274,448 L274,444 L270,444 Z M252,462 L252,466 L256,466 L256,462 L252,462 Z M270,462 L270,466 L274,466 L274,462 L270,462 Z M254,461 L256,461 L256,449 L254,449 L254,461 Z M270,461 L272,461 L272,449 L270,449 L270,461 Z\"/> </g> </svg>"
9821
+ module.exports = "<svg xmlns='http://www.w3.org/2000/svg' viewBox=\"0 0 1792 1792\"> <path d=\"M1664 256v448q0 26-19 45t-45 19h-448q-42 0-59-40-17-39 14-69l138-138q-148-137-349-137-104 0-198.5 40.5t-163.5 109.5-109.5 163.5-40.5 198.5 40.5 198.5 109.5 163.5 163.5 109.5 198.5 40.5q119 0 225-52t179-147q7-10 23-12 14 0 25 9l137 138q9 8 9.5 20.5t-7.5 22.5q-109 132-264 204.5t-327 72.5q-156 0-298-61t-245-164-164-245-61-298 61-298 164-245 245-164 298-61q147 0 284.5 55.5t244.5 156.5l130-129q29-31 70-14 39 17 39 59z\"/> </svg>"
9533
9822
 
9534
9823
  /***/ }),
9535
9824
  /* 108 */
9536
9825
  /***/ (function(module) {
9537
9826
 
9538
- module.exports = "<svg xmlns='http://www.w3.org/2000/svg' viewBox=\"0 0 1792 1792\"> <path d=\"M844 472q0 60-19 113.5t-63 92.5-105 39q-76 0-138-57.5t-92-135.5-30-151q0-60 19-113.5t63-92.5 105-39q77 0 138.5 57.5t91.5 135 30 151.5zm-342 483q0 80-42 139t-119 59q-76 0-141.5-55.5t-100.5-133.5-35-152q0-80 42-139.5t119-59.5q76 0 141.5 55.5t100.5 134 35 152.5zm394-27q118 0 255 97.5t229 237 92 254.5q0 46-17 76.5t-48.5 45-64.5 20-76 5.5q-68 0-187.5-45t-182.5-45q-66 0-192.5 44.5t-200.5 44.5q-183 0-183-146 0-86 56-191.5t139.5-192.5 187.5-146 193-59zm239-211q-61 0-105-39t-63-92.5-19-113.5q0-74 30-151.5t91.5-135 138.5-57.5q61 0 105 39t63 92.5 19 113.5q0 73-30 151t-92 135.5-138 57.5zm432-104q77 0 119 59.5t42 139.5q0 74-35 152t-100.5 133.5-141.5 55.5q-77 0-119-59t-42-139q0-74 35-152.5t100.5-134 141.5-55.5z\"/> </svg>"
9827
+ module.exports = "<svg xmlns='http://www.w3.org/2000/svg' viewBox=\"0 0 24 24\"> <g transform=\"translate(-251.000000, -443.000000)\"> <g transform=\"translate(215.000000, 119.000000)\"/> <path d=\"M252,448 L256,448 L256,444 L252,444 L252,448 Z M257,448 L269,448 L269,446 L257,446 L257,448 Z M257,464 L269,464 L269,462 L257,462 L257,464 Z M270,444 L270,448 L274,448 L274,444 L270,444 Z M252,462 L252,466 L256,466 L256,462 L252,462 Z M270,462 L270,466 L274,466 L274,462 L270,462 Z M254,461 L256,461 L256,449 L254,449 L254,461 Z M270,461 L272,461 L272,449 L270,449 L270,461 Z\"/> </g> </svg>"
9539
9828
 
9540
9829
  /***/ }),
9541
9830
  /* 109 */
9542
9831
  /***/ (function(module) {
9543
9832
 
9544
- module.exports = "<svg xmlns='http://www.w3.org/2000/svg' viewBox=\"0 0 1792 1792\"> <path d=\"M1792 1344v128q0 26-19 45t-45 19h-1664q-26 0-45-19t-19-45v-128q0-26 19-45t45-19h1664q26 0 45 19t19 45zm0-384v128q0 26-19 45t-45 19h-1280q-26 0-45-19t-19-45v-128q0-26 19-45t45-19h1280q26 0 45 19t19 45zm0-384v128q0 26-19 45t-45 19h-1536q-26 0-45-19t-19-45v-128q0-26 19-45t45-19h1536q26 0 45 19t19 45zm0-384v128q0 26-19 45t-45 19h-1152q-26 0-45-19t-19-45v-128q0-26 19-45t45-19h1152q26 0 45 19t19 45z\"/> </svg>"
9833
+ module.exports = "<svg xmlns='http://www.w3.org/2000/svg' viewBox=\"0 0 1792 1792\"> <path d=\"M844 472q0 60-19 113.5t-63 92.5-105 39q-76 0-138-57.5t-92-135.5-30-151q0-60 19-113.5t63-92.5 105-39q77 0 138.5 57.5t91.5 135 30 151.5zm-342 483q0 80-42 139t-119 59q-76 0-141.5-55.5t-100.5-133.5-35-152q0-80 42-139.5t119-59.5q76 0 141.5 55.5t100.5 134 35 152.5zm394-27q118 0 255 97.5t229 237 92 254.5q0 46-17 76.5t-48.5 45-64.5 20-76 5.5q-68 0-187.5-45t-182.5-45q-66 0-192.5 44.5t-200.5 44.5q-183 0-183-146 0-86 56-191.5t139.5-192.5 187.5-146 193-59zm239-211q-61 0-105-39t-63-92.5-19-113.5q0-74 30-151.5t91.5-135 138.5-57.5q61 0 105 39t63 92.5 19 113.5q0 73-30 151t-92 135.5-138 57.5zm432-104q77 0 119 59.5t42 139.5q0 74-35 152t-100.5 133.5-141.5 55.5q-77 0-119-59t-42-139q0-74 35-152.5t100.5-134 141.5-55.5z\"/> </svg>"
9545
9834
 
9546
9835
  /***/ }),
9547
9836
  /* 110 */
9548
9837
  /***/ (function(module) {
9549
9838
 
9550
- module.exports = "<svg xmlns='http://www.w3.org/2000/svg' viewBox=\"0 0 1792 1792\"> <path d=\"M512 1536h768v-384h-768v384zm896 0h128v-896q0-14-10-38.5t-20-34.5l-281-281q-10-10-34-20t-39-10v416q0 40-28 68t-68 28h-576q-40 0-68-28t-28-68v-416h-128v1280h128v-416q0-40 28-68t68-28h832q40 0 68 28t28 68v416zm-384-928v-320q0-13-9.5-22.5t-22.5-9.5h-192q-13 0-22.5 9.5t-9.5 22.5v320q0 13 9.5 22.5t22.5 9.5h192q13 0 22.5-9.5t9.5-22.5zm640 32v928q0 40-28 68t-68 28h-1344q-40 0-68-28t-28-68v-1344q0-40 28-68t68-28h928q40 0 88 20t76 48l280 280q28 28 48 76t20 88z\"/> </svg>"
9839
+ module.exports = "<svg xmlns='http://www.w3.org/2000/svg' viewBox=\"0 0 1792 1792\"> <path d=\"M1792 1344v128q0 26-19 45t-45 19h-1664q-26 0-45-19t-19-45v-128q0-26 19-45t45-19h1664q26 0 45 19t19 45zm0-384v128q0 26-19 45t-45 19h-1280q-26 0-45-19t-19-45v-128q0-26 19-45t45-19h1280q26 0 45 19t19 45zm0-384v128q0 26-19 45t-45 19h-1536q-26 0-45-19t-19-45v-128q0-26 19-45t45-19h1536q26 0 45 19t19 45zm0-384v128q0 26-19 45t-45 19h-1152q-26 0-45-19t-19-45v-128q0-26 19-45t45-19h1152q26 0 45 19t19 45z\"/> </svg>"
9551
9840
 
9552
9841
  /***/ }),
9553
9842
  /* 111 */
9554
9843
  /***/ (function(module) {
9555
9844
 
9556
- module.exports = "<svg viewBox=\"0 0 500 500\" xmlns=\"http://www.w3.org/2000/svg\"> <path clip-rule=\"evenodd\" d=\"M306.39,154.09c19.628,4.543,35.244,21.259,39.787,39.523 c1.551,8.54,8.998,14.989,17.904,14.989c9.991,0,18.168-8.175,18.168-18.17c0-13.083-10.991-32.98-25.985-47.881 c-14.719-14.537-32.252-24.802-46.695-24.802c-9.991,0-18.172,8.45-18.172,18.446C291.396,145.094,297.847,152.546,306.39,154.09z M56.629,392.312c-14.09,14.08-14.09,36.979,0,51.059c14.08,14.092,36.981,14.092,50.965,0l104.392-104.303 c24.347,15.181,53.062,23.991,83.953,23.991c87.857,0,158.995-71.142,158.995-158.999c0-87.854-71.138-158.995-158.995-158.995 c-87.856,0-158.995,71.141-158.995,158.995c0,30.802,8.819,59.606,23.992,83.953L56.629,392.312z M182.371,204.06 c0-62.687,50.875-113.568,113.568-113.568s113.569,50.881,113.569,113.568c0,62.694-50.876,113.569-113.569,113.569 S182.371,266.754,182.371,204.06z\" fill-rule=\"evenodd\"/> </svg>"
9845
+ module.exports = "<svg xmlns='http://www.w3.org/2000/svg' viewBox=\"0 0 1792 1792\"> <path d=\"M512 1536h768v-384h-768v384zm896 0h128v-896q0-14-10-38.5t-20-34.5l-281-281q-10-10-34-20t-39-10v416q0 40-28 68t-68 28h-576q-40 0-68-28t-28-68v-416h-128v1280h128v-416q0-40 28-68t68-28h832q40 0 68 28t28 68v416zm-384-928v-320q0-13-9.5-22.5t-22.5-9.5h-192q-13 0-22.5 9.5t-9.5 22.5v320q0 13 9.5 22.5t22.5 9.5h192q13 0 22.5-9.5t9.5-22.5zm640 32v928q0 40-28 68t-68 28h-1344q-40 0-68-28t-28-68v-1344q0-40 28-68t68-28h928q40 0 88 20t76 48l280 280q28 28 48 76t20 88z\"/> </svg>"
9557
9846
 
9558
9847
  /***/ }),
9559
9848
  /* 112 */
9560
9849
  /***/ (function(module) {
9561
9850
 
9562
- module.exports = "<svg viewBox=\"0 0 48 48\" xmlns=\"http://www.w3.org/2000/svg\"> <path stroke=\"null\" d=\"m42.276011,26.302547c0.098397,-0.76605 0.172194,-1.54407 0.172194,-2.33406s-0.073797,-1.56801 -0.172194,-2.33406l5.202718,-3.961917c0.467384,-0.359086 0.602679,-1.005441 0.29519,-1.532101l-4.919828,-8.29489c-0.307489,-0.51469 -0.947067,-0.730142 -1.500548,-0.51469l-6.125186,2.405877c-1.266856,-0.945594 -2.656707,-1.747553 -4.157255,-2.357999l-0.922468,-6.343855c-0.110696,-0.562568 -0.614979,-1.005441 -1.229957,-1.005441l-9.839656,0c-0.614979,0 -1.119261,0.442873 -1.217657,1.005441l-0.922468,6.343855c-1.500548,0.610446 -2.890399,1.400436 -4.157255,2.357999l-6.125186,-2.405877c-0.553481,-0.203482 -1.193058,0 -1.500548,0.51469l-4.919828,8.29489c-0.307489,0.51469 -0.172194,1.161045 0.29519,1.532101l5.190419,3.961917c-0.098397,0.76605 -0.172194,1.54407 -0.172194,2.33406s0.073797,1.56801 0.172194,2.33406l-5.190419,3.961917c-0.467384,0.359086 -0.602679,1.005441 -0.29519,1.532101l4.919828,8.29489c0.307489,0.51469 0.947067,0.730142 1.500548,0.51469l6.125186,-2.405877c1.266856,0.945594 2.656707,1.747553 4.157255,2.357999l0.922468,6.343855c0.098397,0.562568 0.602679,1.005441 1.217657,1.005441l9.839656,0c0.614979,0 1.119261,-0.442873 1.217657,-1.005441l0.922468,-6.343855c1.500548,-0.610446 2.890399,-1.400436 4.157255,-2.357999l6.125186,2.405877c0.553481,0.203482 1.193058,0 1.500548,-0.51469l4.919828,-8.29489c0.307489,-0.51469 0.172194,-1.161045 -0.29519,-1.532101l-5.190419,-3.961917zm-18.277162,6.044617c-4.759934,0 -8.609699,-3.746465 -8.609699,-8.378677s3.849766,-8.378677 8.609699,-8.378677s8.609699,3.746465 8.609699,8.378677s-3.849766,8.378677 -8.609699,8.378677z\"/> </svg>"
9851
+ module.exports = "<svg viewBox=\"0 0 500 500\" xmlns=\"http://www.w3.org/2000/svg\"> <path clip-rule=\"evenodd\" d=\"M306.39,154.09c19.628,4.543,35.244,21.259,39.787,39.523 c1.551,8.54,8.998,14.989,17.904,14.989c9.991,0,18.168-8.175,18.168-18.17c0-13.083-10.991-32.98-25.985-47.881 c-14.719-14.537-32.252-24.802-46.695-24.802c-9.991,0-18.172,8.45-18.172,18.446C291.396,145.094,297.847,152.546,306.39,154.09z M56.629,392.312c-14.09,14.08-14.09,36.979,0,51.059c14.08,14.092,36.981,14.092,50.965,0l104.392-104.303 c24.347,15.181,53.062,23.991,83.953,23.991c87.857,0,158.995-71.142,158.995-158.999c0-87.854-71.138-158.995-158.995-158.995 c-87.856,0-158.995,71.141-158.995,158.995c0,30.802,8.819,59.606,23.992,83.953L56.629,392.312z M182.371,204.06 c0-62.687,50.875-113.568,113.568-113.568s113.569,50.881,113.569,113.568c0,62.694-50.876,113.569-113.569,113.569 S182.371,266.754,182.371,204.06z\" fill-rule=\"evenodd\"/> </svg>"
9563
9852
 
9564
9853
  /***/ }),
9565
9854
  /* 113 */
9566
9855
  /***/ (function(module) {
9567
9856
 
9568
- module.exports = "<svg xmlns='http://www.w3.org/2000/svg' viewBox=\"0 0 18 18\"> <g fill-rule=\"evenodd\" stroke=\"none\" stroke-width=\"1\"> <g transform=\"translate(-381.000000, -381.000000)\"> <g transform=\"translate(381.000000, 381.000000)\"> <path d=\"M0,2 L2,2 L2,0 C0.9,0 0,0.9 0,2 L0,2 Z M0,10 L2,10 L2,8 L0,8 L0,10 L0,10 Z M4,18 L6,18 L6,16 L4,16 L4,18 L4,18 Z M0,6 L2,6 L2,4 L0,4 L0,6 L0,6 Z M10,0 L8,0 L8,2 L10,2 L10,0 L10,0 Z M16,0 L16,2 L18,2 C18,0.9 17.1,0 16,0 L16,0 Z M2,18 L2,16 L0,16 C0,17.1 0.9,18 2,18 L2,18 Z M0,14 L2,14 L2,12 L0,12 L0,14 L0,14 Z M6,0 L4,0 L4,2 L6,2 L6,0 L6,0 Z M8,18 L10,18 L10,16 L8,16 L8,18 L8,18 Z M16,10 L18,10 L18,8 L16,8 L16,10 L16,10 Z M16,18 C17.1,18 18,17.1 18,16 L16,16 L16,18 L16,18 Z M16,6 L18,6 L18,4 L16,4 L16,6 L16,6 Z M16,14 L18,14 L18,12 L16,12 L16,14 L16,14 Z M12,18 L14,18 L14,16 L12,16 L12,18 L12,18 Z M12,2 L14,2 L14,0 L12,0 L12,2 L12,2 Z M4,14 L14,14 L14,4 L4,4 L4,14 L4,14 Z M6,6 L12,6 L12,12 L6,12 L6,6 L6,6 Z\"/> </g> </g> </g> </svg>"
9857
+ module.exports = "<svg viewBox=\"0 0 48 48\" xmlns=\"http://www.w3.org/2000/svg\"> <path stroke=\"null\" d=\"m42.276011,26.302547c0.098397,-0.76605 0.172194,-1.54407 0.172194,-2.33406s-0.073797,-1.56801 -0.172194,-2.33406l5.202718,-3.961917c0.467384,-0.359086 0.602679,-1.005441 0.29519,-1.532101l-4.919828,-8.29489c-0.307489,-0.51469 -0.947067,-0.730142 -1.500548,-0.51469l-6.125186,2.405877c-1.266856,-0.945594 -2.656707,-1.747553 -4.157255,-2.357999l-0.922468,-6.343855c-0.110696,-0.562568 -0.614979,-1.005441 -1.229957,-1.005441l-9.839656,0c-0.614979,0 -1.119261,0.442873 -1.217657,1.005441l-0.922468,6.343855c-1.500548,0.610446 -2.890399,1.400436 -4.157255,2.357999l-6.125186,-2.405877c-0.553481,-0.203482 -1.193058,0 -1.500548,0.51469l-4.919828,8.29489c-0.307489,0.51469 -0.172194,1.161045 0.29519,1.532101l5.190419,3.961917c-0.098397,0.76605 -0.172194,1.54407 -0.172194,2.33406s0.073797,1.56801 0.172194,2.33406l-5.190419,3.961917c-0.467384,0.359086 -0.602679,1.005441 -0.29519,1.532101l4.919828,8.29489c0.307489,0.51469 0.947067,0.730142 1.500548,0.51469l6.125186,-2.405877c1.266856,0.945594 2.656707,1.747553 4.157255,2.357999l0.922468,6.343855c0.098397,0.562568 0.602679,1.005441 1.217657,1.005441l9.839656,0c0.614979,0 1.119261,-0.442873 1.217657,-1.005441l0.922468,-6.343855c1.500548,-0.610446 2.890399,-1.400436 4.157255,-2.357999l6.125186,2.405877c0.553481,0.203482 1.193058,0 1.500548,-0.51469l4.919828,-8.29489c0.307489,-0.51469 0.172194,-1.161045 -0.29519,-1.532101l-5.190419,-3.961917zm-18.277162,6.044617c-4.759934,0 -8.609699,-3.746465 -8.609699,-8.378677s3.849766,-8.378677 8.609699,-8.378677s8.609699,3.746465 8.609699,8.378677s-3.849766,8.378677 -8.609699,8.378677z\"/> </svg>"
9569
9858
 
9570
9859
  /***/ }),
9571
9860
  /* 114 */
9572
9861
  /***/ (function(module) {
9573
9862
 
9574
- module.exports = "<svg xmlns='http://www.w3.org/2000/svg' viewBox=\"0 0 1792 1792\"> <path d=\"M896 960v448q0 26-19 45t-45 19-45-19l-144-144-332 332q-10 10-23 10t-23-10l-114-114q-10-10-10-23t10-23l332-332-144-144q-19-19-19-45t19-45 45-19h448q26 0 45 19t19 45zm755-672q0 13-10 23l-332 332 144 144q19 19 19 45t-19 45-45 19h-448q-26 0-45-19t-19-45v-448q0-26 19-45t45-19 45 19l144 144 332-332q10-10 23-10t23 10l114 114q10 10 10 23z\"/> </svg>"
9863
+ module.exports = "<svg xmlns='http://www.w3.org/2000/svg' viewBox=\"0 0 18 18\"> <g fill-rule=\"evenodd\" stroke=\"none\" stroke-width=\"1\"> <g transform=\"translate(-381.000000, -381.000000)\"> <g transform=\"translate(381.000000, 381.000000)\"> <path d=\"M0,2 L2,2 L2,0 C0.9,0 0,0.9 0,2 L0,2 Z M0,10 L2,10 L2,8 L0,8 L0,10 L0,10 Z M4,18 L6,18 L6,16 L4,16 L4,18 L4,18 Z M0,6 L2,6 L2,4 L0,4 L0,6 L0,6 Z M10,0 L8,0 L8,2 L10,2 L10,0 L10,0 Z M16,0 L16,2 L18,2 C18,0.9 17.1,0 16,0 L16,0 Z M2,18 L2,16 L0,16 C0,17.1 0.9,18 2,18 L2,18 Z M0,14 L2,14 L2,12 L0,12 L0,14 L0,14 Z M6,0 L4,0 L4,2 L6,2 L6,0 L6,0 Z M8,18 L10,18 L10,16 L8,16 L8,18 L8,18 Z M16,10 L18,10 L18,8 L16,8 L16,10 L16,10 Z M16,18 C17.1,18 18,17.1 18,16 L16,16 L16,18 L16,18 Z M16,6 L18,6 L18,4 L16,4 L16,6 L16,6 Z M16,14 L18,14 L18,12 L16,12 L16,14 L16,14 Z M12,18 L14,18 L14,16 L12,16 L12,18 L12,18 Z M12,2 L14,2 L14,0 L12,0 L12,2 L12,2 Z M4,14 L14,14 L14,4 L4,4 L4,14 L4,14 Z M6,6 L12,6 L12,12 L6,12 L6,6 L6,6 Z\"/> </g> </g> </g> </svg>"
9575
9864
 
9576
9865
  /***/ }),
9577
9866
  /* 115 */
9578
9867
  /***/ (function(module) {
9579
9868
 
9580
- module.exports = "<svg xmlns='http://www.w3.org/2000/svg' viewBox=\"0 0 1792 1792\"> <path d=\"M553 1399l-50 50q-10 10-23 10t-23-10l-466-466q-10-10-10-23t10-23l466-466q10-10 23-10t23 10l50 50q10 10 10 23t-10 23l-393 393 393 393q10 10 10 23t-10 23zm591-1067l-373 1291q-4 13-15.5 19.5t-23.5 2.5l-62-17q-13-4-19.5-15.5t-2.5-24.5l373-1291q4-13 15.5-19.5t23.5-2.5l62 17q13 4 19.5 15.5t2.5 24.5zm657 651l-466 466q-10 10-23 10t-23-10l-50-50q-10-10-10-23t10-23l393-393-393-393q-10-10-10-23t10-23l50-50q10-10 23-10t23 10l466 466q10 10 10 23t-10 23z\"/> </svg>"
9869
+ module.exports = "<svg xmlns='http://www.w3.org/2000/svg' viewBox=\"0 0 1792 1792\"> <path d=\"M896 960v448q0 26-19 45t-45 19-45-19l-144-144-332 332q-10 10-23 10t-23-10l-114-114q-10-10-10-23t10-23l332-332-144-144q-19-19-19-45t19-45 45-19h448q26 0 45 19t19 45zm755-672q0 13-10 23l-332 332 144 144q19 19 19 45t-19 45-45 19h-448q-26 0-45-19t-19-45v-448q0-26 19-45t45-19 45 19l144 144 332-332q10-10 23-10t23 10l114 114q10 10 10 23z\"/> </svg>"
9581
9870
 
9582
9871
  /***/ }),
9583
9872
  /* 116 */
9584
9873
  /***/ (function(module) {
9585
9874
 
9586
- module.exports = "<svg xmlns='http://www.w3.org/2000/svg' viewBox=\"0 0 48 48\"> <path d=\"M6 42h4v-4h-4v4zm4-28h-4v4h4v-4zm-4 20h4v-4h-4v4zm8 8h4v-4h-4v4zm-4-36h-4v4h4v-4zm8 0h-4v4h4v-4zm16 0h-4v4h4v-4zm-8 8h-4v4h4v-4zm0-8h-4v4h4v-4zm12 28h4v-4h-4v4zm-16 8h4v-4h-4v4zm-16-16h36v-4h-36v4zm32-20v4h4v-4h-4zm0 12h4v-4h-4v4zm-16 16h4v-4h-4v4zm8 8h4v-4h-4v4zm8 0h4v-4h-4v4z\"/> <path d=\"M0 0h48v48h-48z\" fill=\"none\"/> </svg>"
9875
+ module.exports = "<svg xmlns='http://www.w3.org/2000/svg' viewBox=\"0 0 1792 1792\"> <path d=\"M553 1399l-50 50q-10 10-23 10t-23-10l-466-466q-10-10-10-23t10-23l466-466q10-10 23-10t23 10l50 50q10 10 10 23t-10 23l-393 393 393 393q10 10 10 23t-10 23zm591-1067l-373 1291q-4 13-15.5 19.5t-23.5 2.5l-62-17q-13-4-19.5-15.5t-2.5-24.5l373-1291q4-13 15.5-19.5t23.5-2.5l62 17q13 4 19.5 15.5t2.5 24.5zm657 651l-466 466q-10 10-23 10t-23-10l-50-50q-10-10-10-23t10-23l393-393-393-393q-10-10-10-23t10-23l50-50q10-10 23-10t23 10l466 466q10 10 10 23t-10 23z\"/> </svg>"
9587
9876
 
9588
9877
  /***/ }),
9589
9878
  /* 117 */
9590
9879
  /***/ (function(module) {
9591
9880
 
9592
- module.exports = "<svg xmlns='http://www.w3.org/2000/svg' viewBox=\"0 0 48 48\"> <path d=\"M6 18h4v-4h-4v4zm0-8h4v-4h-4v4zm8 32h4v-4h-4v4zm0-16h4v-4h-4v4zm-8 0h4v-4h-4v4zm0 16h4v-4h-4v4zm0-8h4v-4h-4v4zm8-24h4v-4h-4v4zm24 24h4v-4h-4v4zm-16 8h4v-36h-4v36zm16 0h4v-4h-4v4zm0-16h4v-4h-4v4zm0-20v4h4v-4h-4zm0 12h4v-4h-4v4zm-8-8h4v-4h-4v4zm0 32h4v-4h-4v4zm0-16h4v-4h-4v4z\"/> <path d=\"M0 0h48v48h-48z\" fill=\"none\"/> </svg>"
9881
+ module.exports = "<svg xmlns='http://www.w3.org/2000/svg' viewBox=\"0 0 48 48\"> <path d=\"M6 42h4v-4h-4v4zm4-28h-4v4h4v-4zm-4 20h4v-4h-4v4zm8 8h4v-4h-4v4zm-4-36h-4v4h4v-4zm8 0h-4v4h4v-4zm16 0h-4v4h4v-4zm-8 8h-4v4h4v-4zm0-8h-4v4h4v-4zm12 28h4v-4h-4v4zm-16 8h4v-4h-4v4zm-16-16h36v-4h-36v4zm32-20v4h4v-4h-4zm0 12h4v-4h-4v4zm-16 16h4v-4h-4v4zm8 8h4v-4h-4v4zm8 0h4v-4h-4v4z\"/> <path d=\"M0 0h48v48h-48z\" fill=\"none\"/> </svg>"
9593
9882
 
9594
9883
  /***/ }),
9595
9884
  /* 118 */
9596
9885
  /***/ (function(module) {
9597
9886
 
9598
- module.exports = "<svg xmlns='http://www.w3.org/2000/svg' viewBox=\"0 0 1792 1792\"> <path d=\"M1760 896q14 0 23 9t9 23v64q0 14-9 23t-23 9h-1728q-14 0-23-9t-9-23v-64q0-14 9-23t23-9h1728zm-1277-64q-28-35-51-80-48-97-48-188 0-181 134-309 133-127 393-127 50 0 167 19 66 12 177 48 10 38 21 118 14 123 14 183 0 18-5 45l-12 3-84-6-14-2q-50-149-103-205-88-91-210-91-114 0-182 59-67 58-67 146 0 73 66 140t279 129q69 20 173 66 58 28 95 52h-743zm507 256h411q7 39 7 92 0 111-41 212-23 55-71 104-37 35-109 81-80 48-153 66-80 21-203 21-114 0-195-23l-140-40q-57-16-72-28-8-8-8-22v-13q0-108-2-156-1-30 0-68l2-37v-44l102-2q15 34 30 71t22.5 56 12.5 27q35 57 80 94 43 36 105 57 59 22 132 22 64 0 139-27 77-26 122-86 47-61 47-129 0-84-81-157-34-29-137-71z\"/> </svg>"
9887
+ module.exports = "<svg xmlns='http://www.w3.org/2000/svg' viewBox=\"0 0 48 48\"> <path d=\"M6 18h4v-4h-4v4zm0-8h4v-4h-4v4zm8 32h4v-4h-4v4zm0-16h4v-4h-4v4zm-8 0h4v-4h-4v4zm0 16h4v-4h-4v4zm0-8h4v-4h-4v4zm8-24h4v-4h-4v4zm24 24h4v-4h-4v4zm-16 8h4v-36h-4v36zm16 0h4v-4h-4v4zm0-16h4v-4h-4v4zm0-20v4h4v-4h-4zm0 12h4v-4h-4v4zm-8-8h4v-4h-4v4zm0 32h4v-4h-4v4zm0-16h4v-4h-4v4z\"/> <path d=\"M0 0h48v48h-48z\" fill=\"none\"/> </svg>"
9599
9888
 
9600
9889
  /***/ }),
9601
9890
  /* 119 */
9602
9891
  /***/ (function(module) {
9603
9892
 
9604
- module.exports = "<svg xmlns='http://www.w3.org/2000/svg' viewBox=\"0 0 1792 1792\"> <path d=\"M1025 1369v167h-248l-159-252-24-42q-8-9-11-21h-3l-9 21q-10 20-25 44l-155 250h-258v-167h128l197-291-185-272h-137v-168h276l139 228q2 4 23 42 8 9 11 21h3q3-9 11-21l25-42 140-228h257v168h-125l-184 267 204 296h109zm639 217v206h-514l-4-27q-3-45-3-46 0-64 26-117t65-86.5 84-65 84-54.5 65-54 26-64q0-38-29.5-62.5t-70.5-24.5q-51 0-97 39-14 11-36 38l-105-92q26-37 63-66 80-65 188-65 110 0 178 59.5t68 158.5q0 66-34.5 118.5t-84 86-99.5 62.5-87 63-41 73h232v-80h126z\"/> </svg>"
9893
+ module.exports = "<svg xmlns='http://www.w3.org/2000/svg' viewBox=\"0 0 1792 1792\"> <path d=\"M1760 896q14 0 23 9t9 23v64q0 14-9 23t-23 9h-1728q-14 0-23-9t-9-23v-64q0-14 9-23t23-9h1728zm-1277-64q-28-35-51-80-48-97-48-188 0-181 134-309 133-127 393-127 50 0 167 19 66 12 177 48 10 38 21 118 14 123 14 183 0 18-5 45l-12 3-84-6-14-2q-50-149-103-205-88-91-210-91-114 0-182 59-67 58-67 146 0 73 66 140t279 129q69 20 173 66 58 28 95 52h-743zm507 256h411q7 39 7 92 0 111-41 212-23 55-71 104-37 35-109 81-80 48-153 66-80 21-203 21-114 0-195-23l-140-40q-57-16-72-28-8-8-8-22v-13q0-108-2-156-1-30 0-68l2-37v-44l102-2q15 34 30 71t22.5 56 12.5 27q35 57 80 94 43 36 105 57 59 22 132 22 64 0 139-27 77-26 122-86 47-61 47-129 0-84-81-157-34-29-137-71z\"/> </svg>"
9605
9894
 
9606
9895
  /***/ }),
9607
9896
  /* 120 */
9608
9897
  /***/ (function(module) {
9609
9898
 
9610
- module.exports = "<svg xmlns='http://www.w3.org/2000/svg' viewBox=\"0 0 1792 1792\"> <path d=\"M1025 1369v167h-248l-159-252-24-42q-8-9-11-21h-3l-9 21q-10 20-25 44l-155 250h-258v-167h128l197-291-185-272h-137v-168h276l139 228q2 4 23 42 8 9 11 21h3q3-9 11-21l25-42 140-228h257v168h-125l-184 267 204 296h109zm637-679v206h-514l-3-27q-4-28-4-46 0-64 26-117t65-86.5 84-65 84-54.5 65-54 26-64q0-38-29.5-62.5t-70.5-24.5q-51 0-97 39-14 11-36 38l-105-92q26-37 63-66 83-65 188-65 110 0 178 59.5t68 158.5q0 56-24.5 103t-62 76.5-81.5 58.5-82 50.5-65.5 51.5-30.5 63h232v-80h126z\"/> </svg>"
9899
+ module.exports = "<svg xmlns='http://www.w3.org/2000/svg' viewBox=\"0 0 1792 1792\"> <path d=\"M1025 1369v167h-248l-159-252-24-42q-8-9-11-21h-3l-9 21q-10 20-25 44l-155 250h-258v-167h128l197-291-185-272h-137v-168h276l139 228q2 4 23 42 8 9 11 21h3q3-9 11-21l25-42 140-228h257v168h-125l-184 267 204 296h109zm639 217v206h-514l-4-27q-3-45-3-46 0-64 26-117t65-86.5 84-65 84-54.5 65-54 26-64q0-38-29.5-62.5t-70.5-24.5q-51 0-97 39-14 11-36 38l-105-92q26-37 63-66 80-65 188-65 110 0 178 59.5t68 158.5q0 66-34.5 118.5t-84 86-99.5 62.5-87 63-41 73h232v-80h126z\"/> </svg>"
9611
9900
 
9612
9901
  /***/ }),
9613
9902
  /* 121 */
9614
9903
  /***/ (function(module) {
9615
9904
 
9616
- module.exports = "<svg xmlns='http://www.w3.org/2000/svg' viewBox=\"0 0 1792 1792\"> <path d=\"M576 1376v-192q0-14-9-23t-23-9h-320q-14 0-23 9t-9 23v192q0 14 9 23t23 9h320q14 0 23-9t9-23zm0-384v-192q0-14-9-23t-23-9h-320q-14 0-23 9t-9 23v192q0 14 9 23t23 9h320q14 0 23-9t9-23zm512 384v-192q0-14-9-23t-23-9h-320q-14 0-23 9t-9 23v192q0 14 9 23t23 9h320q14 0 23-9t9-23zm-512-768v-192q0-14-9-23t-23-9h-320q-14 0-23 9t-9 23v192q0 14 9 23t23 9h320q14 0 23-9t9-23zm512 384v-192q0-14-9-23t-23-9h-320q-14 0-23 9t-9 23v192q0 14 9 23t23 9h320q14 0 23-9t9-23zm512 384v-192q0-14-9-23t-23-9h-320q-14 0-23 9t-9 23v192q0 14 9 23t23 9h320q14 0 23-9t9-23zm-512-768v-192q0-14-9-23t-23-9h-320q-14 0-23 9t-9 23v192q0 14 9 23t23 9h320q14 0 23-9t9-23zm512 384v-192q0-14-9-23t-23-9h-320q-14 0-23 9t-9 23v192q0 14 9 23t23 9h320q14 0 23-9t9-23zm0-384v-192q0-14-9-23t-23-9h-320q-14 0-23 9t-9 23v192q0 14 9 23t23 9h320q14 0 23-9t9-23zm128-320v1088q0 66-47 113t-113 47h-1344q-66 0-113-47t-47-113v-1088q0-66 47-113t113-47h1344q66 0 113 47t47 113z\"/> </svg>"
9905
+ module.exports = "<svg xmlns='http://www.w3.org/2000/svg' viewBox=\"0 0 1792 1792\"> <path d=\"M1025 1369v167h-248l-159-252-24-42q-8-9-11-21h-3l-9 21q-10 20-25 44l-155 250h-258v-167h128l197-291-185-272h-137v-168h276l139 228q2 4 23 42 8 9 11 21h3q3-9 11-21l25-42 140-228h257v168h-125l-184 267 204 296h109zm637-679v206h-514l-3-27q-4-28-4-46 0-64 26-117t65-86.5 84-65 84-54.5 65-54 26-64q0-38-29.5-62.5t-70.5-24.5q-51 0-97 39-14 11-36 38l-105-92q26-37 63-66 83-65 188-65 110 0 178 59.5t68 158.5q0 56-24.5 103t-62 76.5-81.5 58.5-82 50.5-65.5 51.5-30.5 63h232v-80h126z\"/> </svg>"
9617
9906
 
9618
9907
  /***/ }),
9619
9908
  /* 122 */
9620
9909
  /***/ (function(module) {
9621
9910
 
9622
- module.exports = "<svg xmlns='http://www.w3.org/2000/svg' viewBox=\"0 0 1792 1792\"> <path d=\"M512 1248v192q0 40-28 68t-68 28h-320q-40 0-68-28t-28-68v-192q0-40 28-68t68-28h320q40 0 68 28t28 68zm0-512v192q0 40-28 68t-68 28h-320q-40 0-68-28t-28-68v-192q0-40 28-68t68-28h320q40 0 68 28t28 68zm640 512v192q0 40-28 68t-68 28h-320q-40 0-68-28t-28-68v-192q0-40 28-68t68-28h320q40 0 68 28t28 68zm-640-1024v192q0 40-28 68t-68 28h-320q-40 0-68-28t-28-68v-192q0-40 28-68t68-28h320q40 0 68 28t28 68zm640 512v192q0 40-28 68t-68 28h-320q-40 0-68-28t-28-68v-192q0-40 28-68t68-28h320q40 0 68 28t28 68zm640 512v192q0 40-28 68t-68 28h-320q-40 0-68-28t-28-68v-192q0-40 28-68t68-28h320q40 0 68 28t28 68zm-640-1024v192q0 40-28 68t-68 28h-320q-40 0-68-28t-28-68v-192q0-40 28-68t68-28h320q40 0 68 28t28 68zm640 512v192q0 40-28 68t-68 28h-320q-40 0-68-28t-28-68v-192q0-40 28-68t68-28h320q40 0 68 28t28 68zm0-512v192q0 40-28 68t-68 28h-320q-40 0-68-28t-28-68v-192q0-40 28-68t68-28h320q40 0 68 28t28 68z\"/> </svg>"
9911
+ module.exports = "<svg xmlns='http://www.w3.org/2000/svg' viewBox=\"0 0 1792 1792\"> <path d=\"M576 1376v-192q0-14-9-23t-23-9h-320q-14 0-23 9t-9 23v192q0 14 9 23t23 9h320q14 0 23-9t9-23zm0-384v-192q0-14-9-23t-23-9h-320q-14 0-23 9t-9 23v192q0 14 9 23t23 9h320q14 0 23-9t9-23zm512 384v-192q0-14-9-23t-23-9h-320q-14 0-23 9t-9 23v192q0 14 9 23t23 9h320q14 0 23-9t9-23zm-512-768v-192q0-14-9-23t-23-9h-320q-14 0-23 9t-9 23v192q0 14 9 23t23 9h320q14 0 23-9t9-23zm512 384v-192q0-14-9-23t-23-9h-320q-14 0-23 9t-9 23v192q0 14 9 23t23 9h320q14 0 23-9t9-23zm512 384v-192q0-14-9-23t-23-9h-320q-14 0-23 9t-9 23v192q0 14 9 23t23 9h320q14 0 23-9t9-23zm-512-768v-192q0-14-9-23t-23-9h-320q-14 0-23 9t-9 23v192q0 14 9 23t23 9h320q14 0 23-9t9-23zm512 384v-192q0-14-9-23t-23-9h-320q-14 0-23 9t-9 23v192q0 14 9 23t23 9h320q14 0 23-9t9-23zm0-384v-192q0-14-9-23t-23-9h-320q-14 0-23 9t-9 23v192q0 14 9 23t23 9h320q14 0 23-9t9-23zm128-320v1088q0 66-47 113t-113 47h-1344q-66 0-113-47t-47-113v-1088q0-66 47-113t113-47h1344q66 0 113 47t47 113z\"/> </svg>"
9623
9912
 
9624
9913
  /***/ }),
9625
9914
  /* 123 */
9626
9915
  /***/ (function(module) {
9627
9916
 
9628
- module.exports = "<svg xmlns='http://www.w3.org/2000/svg' viewBox=\"0 0 1792 1792\"> <path d=\"M512 1248v192q0 40-28 68t-68 28h-320q-40 0-68-28t-28-68v-192q0-40 28-68t68-28h320q40 0 68 28t28 68zm0-512v192q0 40-28 68t-68 28h-320q-40 0-68-28t-28-68v-192q0-40 28-68t68-28h320q40 0 68 28t28 68zm1280 512v192q0 40-28 68t-68 28h-960q-40 0-68-28t-28-68v-192q0-40 28-68t68-28h960q40 0 68 28t28 68zm-1280-1024v192q0 40-28 68t-68 28h-320q-40 0-68-28t-28-68v-192q0-40 28-68t68-28h320q40 0 68 28t28 68zm1280 512v192q0 40-28 68t-68 28h-960q-40 0-68-28t-28-68v-192q0-40 28-68t68-28h960q40 0 68 28t28 68zm0-512v192q0 40-28 68t-68 28h-960q-40 0-68-28t-28-68v-192q0-40 28-68t68-28h960q40 0 68 28t28 68z\"/> </svg>"
9917
+ module.exports = "<svg xmlns='http://www.w3.org/2000/svg' viewBox=\"0 0 1792 1792\"> <path d=\"M512 1248v192q0 40-28 68t-68 28h-320q-40 0-68-28t-28-68v-192q0-40 28-68t68-28h320q40 0 68 28t28 68zm0-512v192q0 40-28 68t-68 28h-320q-40 0-68-28t-28-68v-192q0-40 28-68t68-28h320q40 0 68 28t28 68zm640 512v192q0 40-28 68t-68 28h-320q-40 0-68-28t-28-68v-192q0-40 28-68t68-28h320q40 0 68 28t28 68zm-640-1024v192q0 40-28 68t-68 28h-320q-40 0-68-28t-28-68v-192q0-40 28-68t68-28h320q40 0 68 28t28 68zm640 512v192q0 40-28 68t-68 28h-320q-40 0-68-28t-28-68v-192q0-40 28-68t68-28h320q40 0 68 28t28 68zm640 512v192q0 40-28 68t-68 28h-320q-40 0-68-28t-28-68v-192q0-40 28-68t68-28h320q40 0 68 28t28 68zm-640-1024v192q0 40-28 68t-68 28h-320q-40 0-68-28t-28-68v-192q0-40 28-68t68-28h320q40 0 68 28t28 68zm640 512v192q0 40-28 68t-68 28h-320q-40 0-68-28t-28-68v-192q0-40 28-68t68-28h320q40 0 68 28t28 68zm0-512v192q0 40-28 68t-68 28h-320q-40 0-68-28t-28-68v-192q0-40 28-68t68-28h320q40 0 68 28t28 68z\"/> </svg>"
9629
9918
 
9630
9919
  /***/ }),
9631
9920
  /* 124 */
9632
9921
  /***/ (function(module) {
9633
9922
 
9634
- module.exports = "<svg xmlns='http://www.w3.org/2000/svg' viewBox=\"0 0 1792 1792\"> <path stroke-width=\"0\" d=\"M384 1408q0 80-56 136t-136 56-136-56-56-136 56-136 136-56 136 56 56 136zm0-512q0 80-56 136t-136 56-136-56-56-136 56-136 136-56 136 56 56 136zm1408 416v192q0 13-9.5 22.5t-22.5 9.5h-1216q-13 0-22.5-9.5t-9.5-22.5v-192q0-13 9.5-22.5t22.5-9.5h1216q13 0 22.5 9.5t9.5 22.5zm-1408-928q0 80-56 136t-136 56-136-56-56-136 56-136 136-56 136 56 56 136zm1408 416v192q0 13-9.5 22.5t-22.5 9.5h-1216q-13 0-22.5-9.5t-9.5-22.5v-192q0-13 9.5-22.5t22.5-9.5h1216q13 0 22.5 9.5t9.5 22.5zm0-512v192q0 13-9.5 22.5t-22.5 9.5h-1216q-13 0-22.5-9.5t-9.5-22.5v-192q0-13 9.5-22.5t22.5-9.5h1216q13 0 22.5 9.5t9.5 22.5z\"/> </svg>"
9923
+ module.exports = "<svg xmlns='http://www.w3.org/2000/svg' viewBox=\"0 0 1792 1792\"> <path d=\"M512 1248v192q0 40-28 68t-68 28h-320q-40 0-68-28t-28-68v-192q0-40 28-68t68-28h320q40 0 68 28t28 68zm0-512v192q0 40-28 68t-68 28h-320q-40 0-68-28t-28-68v-192q0-40 28-68t68-28h320q40 0 68 28t28 68zm1280 512v192q0 40-28 68t-68 28h-960q-40 0-68-28t-28-68v-192q0-40 28-68t68-28h960q40 0 68 28t28 68zm-1280-1024v192q0 40-28 68t-68 28h-320q-40 0-68-28t-28-68v-192q0-40 28-68t68-28h320q40 0 68 28t28 68zm1280 512v192q0 40-28 68t-68 28h-960q-40 0-68-28t-28-68v-192q0-40 28-68t68-28h960q40 0 68 28t28 68zm0-512v192q0 40-28 68t-68 28h-960q-40 0-68-28t-28-68v-192q0-40 28-68t68-28h960q40 0 68 28t28 68z\"/> </svg>"
9635
9924
 
9636
9925
  /***/ }),
9637
9926
  /* 125 */
9638
9927
  /***/ (function(module) {
9639
9928
 
9640
- module.exports = "<svg xmlns='http://www.w3.org/2000/svg' viewBox=\"0 0 1792 1792\"> <path d=\"M176 223q-37-2-45-4l-3-88q13-1 40-1 60 0 112 4 132 7 166 7 86 0 168-3 116-4 146-5 56 0 86-2l-1 14 2 64v9q-60 9-124 9-60 0-79 25-13 14-13 132 0 13 .5 32.5t.5 25.5l1 229 14 280q6 124 51 202 35 59 96 92 88 47 177 47 104 0 191-28 56-18 99-51 48-36 65-64 36-56 53-114 21-73 21-229 0-79-3.5-128t-11-122.5-13.5-159.5l-4-59q-5-67-24-88-34-35-77-34l-100 2-14-3 2-86h84l205 10q76 3 196-10l18 2q6 38 6 51 0 7-4 31-45 12-84 13-73 11-79 17-15 15-15 41 0 7 1.5 27t1.5 31q8 19 22 396 6 195-15 304-15 76-41 122-38 65-112 123-75 57-182 89-109 33-255 33-167 0-284-46-119-47-179-122-61-76-83-195-16-80-16-237v-333q0-188-17-213-25-36-147-39zm1488 1409v-64q0-14-9-23t-23-9h-1472q-14 0-23 9t-9 23v64q0 14 9 23t23 9h1472q14 0 23-9t9-23z\"/> </svg>"
9929
+ module.exports = "<svg xmlns='http://www.w3.org/2000/svg' viewBox=\"0 0 1792 1792\"> <path stroke-width=\"0\" d=\"M384 1408q0 80-56 136t-136 56-136-56-56-136 56-136 136-56 136 56 56 136zm0-512q0 80-56 136t-136 56-136-56-56-136 56-136 136-56 136 56 56 136zm1408 416v192q0 13-9.5 22.5t-22.5 9.5h-1216q-13 0-22.5-9.5t-9.5-22.5v-192q0-13 9.5-22.5t22.5-9.5h1216q13 0 22.5 9.5t9.5 22.5zm-1408-928q0 80-56 136t-136 56-136-56-56-136 56-136 136-56 136 56 56 136zm1408 416v192q0 13-9.5 22.5t-22.5 9.5h-1216q-13 0-22.5-9.5t-9.5-22.5v-192q0-13 9.5-22.5t22.5-9.5h1216q13 0 22.5 9.5t9.5 22.5zm0-512v192q0 13-9.5 22.5t-22.5 9.5h-1216q-13 0-22.5-9.5t-9.5-22.5v-192q0-13 9.5-22.5t22.5-9.5h1216q13 0 22.5 9.5t9.5 22.5z\"/> </svg>"
9641
9930
 
9642
9931
  /***/ }),
9643
9932
  /* 126 */
9644
9933
  /***/ (function(module) {
9645
9934
 
9646
- module.exports = "<svg xmlns='http://www.w3.org/2000/svg' viewBox=\"0 0 1792 1792\"> <path d=\"M1664 896q0 156-61 298t-164 245-245 164-298 61q-172 0-327-72.5t-264-204.5q-7-10-6.5-22.5t8.5-20.5l137-138q10-9 25-9 16 2 23 12 73 95 179 147t225 52q104 0 198.5-40.5t163.5-109.5 109.5-163.5 40.5-198.5-40.5-198.5-109.5-163.5-163.5-109.5-198.5-40.5q-98 0-188 35.5t-160 101.5l137 138q31 30 14 69-17 40-59 40h-448q-26 0-45-19t-19-45v-448q0-42 40-59 39-17 69 14l130 129q107-101 244.5-156.5t284.5-55.5q156 0 298 61t245 164 164 245 61 298z\"/> </svg>"
9935
+ module.exports = "<svg xmlns='http://www.w3.org/2000/svg' viewBox=\"0 0 1792 1792\"> <path d=\"M176 223q-37-2-45-4l-3-88q13-1 40-1 60 0 112 4 132 7 166 7 86 0 168-3 116-4 146-5 56 0 86-2l-1 14 2 64v9q-60 9-124 9-60 0-79 25-13 14-13 132 0 13 .5 32.5t.5 25.5l1 229 14 280q6 124 51 202 35 59 96 92 88 47 177 47 104 0 191-28 56-18 99-51 48-36 65-64 36-56 53-114 21-73 21-229 0-79-3.5-128t-11-122.5-13.5-159.5l-4-59q-5-67-24-88-34-35-77-34l-100 2-14-3 2-86h84l205 10q76 3 196-10l18 2q6 38 6 51 0 7-4 31-45 12-84 13-73 11-79 17-15 15-15 41 0 7 1.5 27t1.5 31q8 19 22 396 6 195-15 304-15 76-41 122-38 65-112 123-75 57-182 89-109 33-255 33-167 0-284-46-119-47-179-122-61-76-83-195-16-80-16-237v-333q0-188-17-213-25-36-147-39zm1488 1409v-64q0-14-9-23t-23-9h-1472q-14 0-23 9t-9 23v64q0 14 9 23t23 9h1472q14 0 23-9t9-23z\"/> </svg>"
9647
9936
 
9648
9937
  /***/ }),
9649
9938
  /* 127 */
9650
9939
  /***/ (function(module) {
9651
9940
 
9652
- module.exports = "<svg xmlns='http://www.w3.org/2000/svg' viewBox=\"0 0 1792 1792\"> <path d=\"M503 1271l-256 256q-10 9-23 9-12 0-23-9-9-10-9-23t9-23l256-256q10-9 23-9t23 9q9 10 9 23t-9 23zm169 41v320q0 14-9 23t-23 9-23-9-9-23v-320q0-14 9-23t23-9 23 9 9 23zm-224-224q0 14-9 23t-23 9h-320q-14 0-23-9t-9-23 9-23 23-9h320q14 0 23 9t9 23zm1264 128q0 120-85 203l-147 146q-83 83-203 83-121 0-204-85l-334-335q-21-21-42-56l239-18 273 274q27 27 68 27.5t68-26.5l147-146q28-28 28-67 0-40-28-68l-274-275 18-239q35 21 56 42l336 336q84 86 84 204zm-617-724l-239 18-273-274q-28-28-68-28-39 0-68 27l-147 146q-28 28-28 67 0 40 28 68l274 274-18 240q-35-21-56-42l-336-336q-84-86-84-204 0-120 85-203l147-146q83-83 203-83 121 0 204 85l334 335q21 21 42 56zm633 84q0 14-9 23t-23 9h-320q-14 0-23-9t-9-23 9-23 23-9h320q14 0 23 9t9 23zm-544-544v320q0 14-9 23t-23 9-23-9-9-23v-320q0-14 9-23t23-9 23 9 9 23zm407 151l-256 256q-11 9-23 9t-23-9q-9-10-9-23t9-23l256-256q10-9 23-9t23 9q9 10 9 23t-9 23z\"/> </svg>"
9941
+ module.exports = "<svg xmlns='http://www.w3.org/2000/svg' viewBox=\"0 0 1792 1792\"> <path d=\"M1664 896q0 156-61 298t-164 245-245 164-298 61q-172 0-327-72.5t-264-204.5q-7-10-6.5-22.5t8.5-20.5l137-138q10-9 25-9 16 2 23 12 73 95 179 147t225 52q104 0 198.5-40.5t163.5-109.5 109.5-163.5 40.5-198.5-40.5-198.5-109.5-163.5-163.5-109.5-198.5-40.5q-98 0-188 35.5t-160 101.5l137 138q31 30 14 69-17 40-59 40h-448q-26 0-45-19t-19-45v-448q0-42 40-59 39-17 69 14l130 129q107-101 244.5-156.5t284.5-55.5q156 0 298 61t245 164 164 245 61 298z\"/> </svg>"
9653
9942
 
9654
9943
  /***/ }),
9655
9944
  /* 128 */
9656
9945
  /***/ (function(module) {
9657
9946
 
9658
- module.exports = "<svg xmlns='http://www.w3.org/2000/svg' viewBox=\"0 0 1792 1792\"> <path d=\"M1728 576v256q0 26-19 45t-45 19h-64q-26 0-45-19t-19-45v-256q0-106-75-181t-181-75-181 75-75 181v192h96q40 0 68 28t28 68v576q0 40-28 68t-68 28h-960q-40 0-68-28t-28-68v-576q0-40 28-68t68-28h672v-192q0-185 131.5-316.5t316.5-131.5 316.5 131.5 131.5 316.5z\"/> </svg>"
9947
+ module.exports = "<svg xmlns='http://www.w3.org/2000/svg' viewBox=\"0 0 1792 1792\"> <path d=\"M503 1271l-256 256q-10 9-23 9-12 0-23-9-9-10-9-23t9-23l256-256q10-9 23-9t23 9q9 10 9 23t-9 23zm169 41v320q0 14-9 23t-23 9-23-9-9-23v-320q0-14 9-23t23-9 23 9 9 23zm-224-224q0 14-9 23t-23 9h-320q-14 0-23-9t-9-23 9-23 23-9h320q14 0 23 9t9 23zm1264 128q0 120-85 203l-147 146q-83 83-203 83-121 0-204-85l-334-335q-21-21-42-56l239-18 273 274q27 27 68 27.5t68-26.5l147-146q28-28 28-67 0-40-28-68l-274-275 18-239q35 21 56 42l336 336q84 86 84 204zm-617-724l-239 18-273-274q-28-28-68-28-39 0-68 27l-147 146q-28 28-28 67 0 40 28 68l274 274-18 240q-35-21-56-42l-336-336q-84-86-84-204 0-120 85-203l147-146q83-83 203-83 121 0 204 85l334 335q21 21 42 56zm633 84q0 14-9 23t-23 9h-320q-14 0-23-9t-9-23 9-23 23-9h320q14 0 23 9t9 23zm-544-544v320q0 14-9 23t-23 9-23-9-9-23v-320q0-14 9-23t23-9 23 9 9 23zm407 151l-256 256q-11 9-23 9t-23-9q-9-10-9-23t9-23l256-256q10-9 23-9t23 9q9 10 9 23t-9 23z\"/> </svg>"
9659
9948
 
9660
9949
  /***/ }),
9661
9950
  /* 129 */
9662
9951
  /***/ (function(module) {
9663
9952
 
9664
- module.exports = "<svg xmlns='http://www.w3.org/2000/svg' viewBox=\"0 0 1792 1792\"> <path d=\"M1639 1056q0 5-1 7-64 268-268 434.5t-478 166.5q-146 0-282.5-55t-243.5-157l-129 129q-19 19-45 19t-45-19-19-45v-448q0-26 19-45t45-19h448q26 0 45 19t19 45-19 45l-137 137q71 66 161 102t187 36q134 0 250-65t186-179q11-17 53-117 8-23 30-23h192q13 0 22.5 9.5t9.5 22.5zm25-800v448q0 26-19 45t-45 19h-448q-26 0-45-19t-19-45 19-45l138-138q-148-137-349-137-134 0-250 65t-186 179q-11 17-53 117-8 23-30 23h-199q-13 0-22.5-9.5t-9.5-22.5v-7q65-268 270-434.5t480-166.5q146 0 284 55.5t245 156.5l130-129q19-19 45-19t45 19 19 45z\"/> </svg>"
9953
+ module.exports = "<svg xmlns='http://www.w3.org/2000/svg' viewBox=\"0 0 1792 1792\"> <path d=\"M1728 576v256q0 26-19 45t-45 19h-64q-26 0-45-19t-19-45v-256q0-106-75-181t-181-75-181 75-75 181v192h96q40 0 68 28t28 68v576q0 40-28 68t-68 28h-960q-40 0-68-28t-28-68v-576q0-40 28-68t68-28h672v-192q0-185 131.5-316.5t316.5-131.5 316.5 131.5 131.5 316.5z\"/> </svg>"
9665
9954
 
9666
9955
  /***/ }),
9667
9956
  /* 130 */
9668
9957
  /***/ (function(module) {
9669
9958
 
9670
- module.exports = "<svg xmlns='http://www.w3.org/2000/svg' viewBox=\"0 0 1792 1792\"> <path d=\"M1344 1472q0-26-19-45t-45-19-45 19-19 45 19 45 45 19 45-19 19-45zm256 0q0-26-19-45t-45-19-45 19-19 45 19 45 45 19 45-19 19-45zm128-224v320q0 40-28 68t-68 28h-1472q-40 0-68-28t-28-68v-320q0-40 28-68t68-28h427q21 56 70.5 92t110.5 36h256q61 0 110.5-36t70.5-92h427q40 0 68 28t28 68zm-325-648q-17 40-59 40h-256v448q0 26-19 45t-45 19h-256q-26 0-45-19t-19-45v-448h-256q-42 0-59-40-17-39 14-69l448-448q18-19 45-19t45 19l448 448q31 30 14 69z\"/> </svg>"
9959
+ module.exports = "<svg xmlns='http://www.w3.org/2000/svg' viewBox=\"0 0 1792 1792\"> <path d=\"M1639 1056q0 5-1 7-64 268-268 434.5t-478 166.5q-146 0-282.5-55t-243.5-157l-129 129q-19 19-45 19t-45-19-19-45v-448q0-26 19-45t45-19h448q26 0 45 19t19 45-19 45l-137 137q71 66 161 102t187 36q134 0 250-65t186-179q11-17 53-117 8-23 30-23h192q13 0 22.5 9.5t9.5 22.5zm25-800v448q0 26-19 45t-45 19h-448q-26 0-45-19t-19-45 19-45l138-138q-148-137-349-137-134 0-250 65t-186 179q-11 17-53 117-8 23-30 23h-199q-13 0-22.5-9.5t-9.5-22.5v-7q65-268 270-434.5t480-166.5q146 0 284 55.5t245 156.5l130-129q19-19 45-19t45 19 19 45z\"/> </svg>"
9671
9960
 
9672
9961
  /***/ }),
9673
9962
  /* 131 */
9674
9963
  /***/ (function(module) {
9675
9964
 
9676
- module.exports = "<svg xmlns='http://www.w3.org/2000/svg' viewBox=\"0 0 1792 1792\"> <path d=\"M1216 320q0 26-19 45t-45 19h-128v1024h128q26 0 45 19t19 45-19 45l-256 256q-19 19-45 19t-45-19l-256-256q-19-19-19-45t19-45 45-19h128v-1024h-128q-26 0-45-19t-19-45 19-45l256-256q19-19 45-19t45 19l256 256q19 19 19 45z\"/> </svg>"
9965
+ module.exports = "<svg xmlns='http://www.w3.org/2000/svg' viewBox=\"0 0 1792 1792\"> <path d=\"M1344 1472q0-26-19-45t-45-19-45 19-19 45 19 45 45 19 45-19 19-45zm256 0q0-26-19-45t-45-19-45 19-19 45 19 45 45 19 45-19 19-45zm128-224v320q0 40-28 68t-68 28h-1472q-40 0-68-28t-28-68v-320q0-40 28-68t68-28h427q21 56 70.5 92t110.5 36h256q61 0 110.5-36t70.5-92h427q40 0 68 28t28 68zm-325-648q-17 40-59 40h-256v448q0 26-19 45t-45 19h-256q-26 0-45-19t-19-45v-448h-256q-42 0-59-40-17-39 14-69l448-448q18-19 45-19t45 19l448 448q31 30 14 69z\"/> </svg>"
9677
9966
 
9678
9967
  /***/ }),
9679
9968
  /* 132 */
9680
9969
  /***/ (function(module) {
9681
9970
 
9971
+ module.exports = "<svg xmlns='http://www.w3.org/2000/svg' viewBox=\"0 0 1792 1792\"> <path d=\"M1216 320q0 26-19 45t-45 19h-128v1024h128q26 0 45 19t19 45-19 45l-256 256q-19 19-45 19t-45-19l-256-256q-19-19-19-45t19-45 45-19h128v-1024h-128q-26 0-45-19t-19-45 19-45l256-256q19-19 45-19t45 19l256 256q19 19 19 45z\"/> </svg>"
9972
+
9973
+ /***/ }),
9974
+ /* 133 */
9975
+ /***/ (function(module) {
9976
+
9682
9977
  module.exports = "<svg xmlns='http://www.w3.org/2000/svg' viewBox=\"0 0 1792 1792\"> <path d=\"M1792 352v1088q0 42-39 59-13 5-25 5-27 0-45-19l-403-403v166q0 119-84.5 203.5t-203.5 84.5h-704q-119 0-203.5-84.5t-84.5-203.5v-704q0-119 84.5-203.5t203.5-84.5h704q119 0 203.5 84.5t84.5 203.5v165l403-402q18-19 45-19 12 0 25 5 39 17 39 59z\"/> </svg>"
9683
9978
 
9684
9979
  /***/ })
@@ -9757,7 +10052,7 @@ __webpack_require__.d(modules_namespaceObject, {
9757
10052
  "Ajax": function() { return Ajax; },
9758
10053
  "Alert": function() { return Alert; },
9759
10054
  "Async": function() { return Async; },
9760
- "CommitStyle": function() { return selection/* CommitStyle */.R; },
10055
+ "CommitStyle": function() { return selection/* CommitStyle */.RP; },
9761
10056
  "Component": function() { return component/* Component */.wA; },
9762
10057
  "Confirm": function() { return Confirm; },
9763
10058
  "ContextMenu": function() { return ContextMenu; },
@@ -9780,7 +10075,7 @@ __webpack_require__.d(modules_namespaceObject, {
9780
10075
  "Prompt": function() { return Prompt; },
9781
10076
  "Response": function() { return response_Response; },
9782
10077
  "STATUSES": function() { return component/* STATUSES */.n$; },
9783
- "Select": function() { return selection/* Select */.P; },
10078
+ "Select": function() { return selection/* Select */.Ph; },
9784
10079
  "Snapshot": function() { return Snapshot; },
9785
10080
  "StatusBar": function() { return StatusBar; },
9786
10081
  "Table": function() { return Table; },
@@ -9846,6 +10141,7 @@ __webpack_require__.d(plugins_namespaceObject, {
9846
10141
  "paste": function() { return paste; },
9847
10142
  "pasteStorage": function() { return pasteStorage; },
9848
10143
  "placeholder": function() { return placeholder; },
10144
+ "poweredByJodit": function() { return poweredByJodit; },
9849
10145
  "preview": function() { return preview; },
9850
10146
  "print": function() { return print; },
9851
10147
  "redoUndo": function() { return redoUndo; },
@@ -9962,7 +10258,7 @@ var config = __webpack_require__(1);
9962
10258
  var constants = __webpack_require__(2);
9963
10259
  // EXTERNAL MODULE: ./src/core/events/index.ts + 3 modules
9964
10260
  var events = __webpack_require__(3);
9965
- // EXTERNAL MODULE: ./src/core/helpers/index.ts + 32 modules
10261
+ // EXTERNAL MODULE: ./src/core/helpers/index.ts + 33 modules
9966
10262
  var helpers = __webpack_require__(8);
9967
10263
  ;// CONCATENATED MODULE: ./src/core/async.ts
9968
10264
  /*!
@@ -10567,7 +10863,7 @@ class View extends component/* Component */.wA {
10567
10863
  this.isView = true;
10568
10864
  this.mods = {};
10569
10865
  this.components = new Set();
10570
- this.version = "3.9.3";
10866
+ this.version = "3.9.4";
10571
10867
  this.async = new Async();
10572
10868
  this.buffer = Storage.makeStorage();
10573
10869
  this.storage = Storage.makeStorage(true, this.componentName);
@@ -10665,10 +10961,10 @@ class View extends component/* Component */.wA {
10665
10961
  return this.__isFullSize;
10666
10962
  }
10667
10963
  getVersion() {
10668
- return "3.9.3";
10964
+ return "3.9.4";
10669
10965
  }
10670
10966
  static getVersion() {
10671
- return "3.9.3";
10967
+ return "3.9.4";
10672
10968
  }
10673
10969
  initOptions(options) {
10674
10970
  this.options = (0,helpers.ConfigProto)(options || {}, (0,helpers.ConfigProto)(this.options || {}, View.defaultOptions));
@@ -11362,6 +11658,9 @@ class ViewWithToolbar extends View {
11362
11658
  .build(buttons.concat(this.o.extraButtons || []))
11363
11659
  .appendTo(this.toolbarContainer);
11364
11660
  }
11661
+ getRegisteredButtonGroups() {
11662
+ return this.groupToButtons;
11663
+ }
11365
11664
  registerButton(btn) {
11366
11665
  var _a;
11367
11666
  this.registeredButtons.add(btn);
@@ -14609,7 +14908,7 @@ class Observer extends component/* ViewComponent */.Hr {
14609
14908
  (0,decorators.debounce)()
14610
14909
  ], Observer.prototype, "onChange", null);
14611
14910
 
14612
- // EXTERNAL MODULE: ./src/core/selection/index.ts + 15 modules
14911
+ // EXTERNAL MODULE: ./src/core/selection/index.ts + 19 modules
14613
14912
  var selection = __webpack_require__(16);
14614
14913
  ;// CONCATENATED MODULE: ./src/modules/status-bar/status-bar.ts
14615
14914
  /*!
@@ -14620,10 +14919,12 @@ var selection = __webpack_require__(16);
14620
14919
 
14621
14920
 
14622
14921
 
14922
+
14623
14923
  class StatusBar extends component/* ViewComponent */.Hr {
14624
14924
  constructor(jodit, target) {
14625
14925
  super(jodit);
14626
14926
  this.target = target;
14927
+ this.mods = {};
14627
14928
  this.container = jodit.c.div('jodit-status-bar');
14628
14929
  target.appendChild(this.container);
14629
14930
  this.hide();
@@ -14640,6 +14941,13 @@ class StatusBar extends component/* ViewComponent */.Hr {
14640
14941
  get isShown() {
14641
14942
  return !this.container.classList.contains('jodit_hidden');
14642
14943
  }
14944
+ setMod(name, value) {
14945
+ traits/* Mods.setMod.call */.$.setMod.call(this, name, value);
14946
+ return this;
14947
+ }
14948
+ getMod(name) {
14949
+ return traits/* Mods.getMod.call */.$.getMod.call(this, name);
14950
+ }
14643
14951
  getHeight() {
14644
14952
  var _a, _b;
14645
14953
  return (_b = (_a = this.container) === null || _a === void 0 ? void 0 : _a.offsetHeight) !== null && _b !== void 0 ? _b : 0;
@@ -15767,7 +16075,7 @@ class Jodit extends ViewWithToolbar {
15767
16075
  }
15768
16076
  });
15769
16077
  this.e.on('prepareWYSIWYGEditor', this.prepareWYSIWYGEditor);
15770
- this.selection = new selection/* Select */.P(this);
16078
+ this.selection = new selection/* Select */.Ph(this);
15771
16079
  const beforeInitHookResult = this.beforeInitHook();
15772
16080
  (0,helpers.callPromise)(beforeInitHookResult, () => {
15773
16081
  this.e.fire('beforeInit', this);
@@ -17455,7 +17763,7 @@ config/* Config.prototype.controls.underline */.D.prototype.controls.underline =
17455
17763
  tagRegExp: /^(u)$/i,
17456
17764
  tags: ['u'],
17457
17765
  css: {
17458
- 'text-decoration': 'underline'
17766
+ 'text-decoration-line': 'underline'
17459
17767
  },
17460
17768
  tooltip: 'Underline'
17461
17769
  };
@@ -17463,7 +17771,7 @@ config/* Config.prototype.controls.strikethrough */.D.prototype.controls.striket
17463
17771
  tagRegExp: /^(s)$/i,
17464
17772
  tags: ['s'],
17465
17773
  css: {
17466
- 'text-decoration': 'line-through'
17774
+ 'text-decoration-line': 'line-through'
17467
17775
  },
17468
17776
  tooltip: 'Strike through'
17469
17777
  };
@@ -19442,7 +19750,14 @@ config/* Config.prototype.controls.font */.D.prototype.controls.font = {
19442
19750
  'Verdana,Geneva,sans-serif': 'Verdana'
19443
19751
  },
19444
19752
  childTemplate: (editor, key, value) => {
19445
- return `<span style="font-family: ${key}!important;">${value}</span>`;
19753
+ let isAvailable = false;
19754
+ try {
19755
+ isAvailable =
19756
+ key.indexOf('dings') === -1 &&
19757
+ document.fonts.check(`16px ${key}`, value);
19758
+ }
19759
+ catch (_a) { }
19760
+ return `<span style="${isAvailable ? `font-family: ${key}!important;` : ''}">${value}</span>`;
19446
19761
  },
19447
19762
  data: {
19448
19763
  cssRule: 'font-family',
@@ -21986,15 +22301,9 @@ function mobile(editor) {
21986
22301
  }
21987
22302
  editor.e.on('getDiffButtons.mobile', (toolbar) => {
21988
22303
  if (toolbar === editor.toolbar) {
21989
- const buttons = (0,helpers.splitArray)(editor.o.buttons), flatStore = (0,helpers_buttons/* flatButtonsSet */.q)(store);
21990
- return buttons.reduce((acc, item) => {
21991
- if ((0,helpers_buttons/* isButtonGroup */.A)(item)) {
21992
- acc.push({
21993
- ...item,
21994
- buttons: item.buttons.filter(btn => !flatStore.has(btn))
21995
- });
21996
- }
21997
- else if (!flatStore.has(item)) {
22304
+ const buttons = (0,helpers_buttons/* flatButtonsSet */.q)((0,helpers.splitArray)(editor.o.buttons), editor), flatStore = (0,helpers_buttons/* flatButtonsSet */.q)(store, editor);
22305
+ return (0,helpers.toArray)(buttons).reduce((acc, item) => {
22306
+ if (!flatStore.has(item)) {
21998
22307
  acc.push(item);
21999
22308
  }
22000
22309
  return acc;
@@ -22041,6 +22350,9 @@ function mobile(editor) {
22041
22350
 
22042
22351
 
22043
22352
 
22353
+
22354
+
22355
+
22044
22356
  const exec = (jodit, _, { control }) => {
22045
22357
  const key = `button${control.command}`;
22046
22358
  const value = (control.args && control.args[0]) || (0,helpers.dataBind)(jodit, key);
@@ -22073,8 +22385,41 @@ config/* Config.prototype.controls.ol */.D.prototype.controls.ol = {
22073
22385
  },
22074
22386
  exec
22075
22387
  };
22076
- function orderedList(editor) {
22077
- const isOurCommand = (command) => /insert(un)?orderedlist/i.test(command), getListWrapper = () => dom/* Dom.up */.i.up(editor.s.current(), (tag) => tag && /^UL|OL$/i.test(tag.nodeName), editor.editor), listStyleTypeEqual = (el, listStyleType) => {
22388
+ class orderedList extends Plugin {
22389
+ constructor() {
22390
+ super(...arguments);
22391
+ this.buttons = [
22392
+ {
22393
+ name: 'ul',
22394
+ group: 'list'
22395
+ },
22396
+ {
22397
+ name: 'ol',
22398
+ group: 'list'
22399
+ }
22400
+ ];
22401
+ }
22402
+ afterInit(jodit) {
22403
+ jodit
22404
+ .registerCommand('insertUnorderedList', this.onCommand)
22405
+ .registerCommand('insertOrderedList', this.onCommand);
22406
+ }
22407
+ onCommand(command, _, type) {
22408
+ this.jodit.s.applyStyle({
22409
+ listStyleType: type !== null && type !== void 0 ? type : null
22410
+ }, {
22411
+ element: command === 'insertunorderedlist' ? 'ul' : 'ol'
22412
+ });
22413
+ this.jodit.setEditorValue();
22414
+ return false;
22415
+ }
22416
+ beforeDestruct(jodit) { }
22417
+ }
22418
+ (0,tslib_es6/* __decorate */.gn)([
22419
+ decorators.autobind
22420
+ ], orderedList.prototype, "onCommand", null);
22421
+ function orderedList1(editor) {
22422
+ const isOurCommand = (command) => /insert(un)?orderedlist/i.test(command), getListWrapper = () => Dom.up(editor.s.current(), (tag) => tag && /^UL|OL$/i.test(tag.nodeName), editor.editor), listStyleTypeEqual = (el, listStyleType) => {
22078
22423
  const value = el.style.listStyleType;
22079
22424
  return (value === listStyleType ||
22080
22425
  (!value && listStyleType === 'default'));
@@ -22091,9 +22436,9 @@ function orderedList(editor) {
22091
22436
  if (isOurCommand(command) && listStyleType) {
22092
22437
  const ul = getListWrapper();
22093
22438
  if (ul && !listStyleTypeEqual(ul, listStyleType)) {
22094
- if ((dom/* Dom.isTag */.i.isTag(ul, 'ul') &&
22439
+ if ((Dom.isTag(ul, 'ul') &&
22095
22440
  /unordered/i.test(command)) ||
22096
- (dom/* Dom.isTag */.i.isTag(ul, 'ol') && !/unordered/i.test(command))) {
22441
+ (Dom.isTag(ul, 'ol') && !/unordered/i.test(command))) {
22097
22442
  setListStyleType(ul, listStyleType);
22098
22443
  return false;
22099
22444
  }
@@ -22111,7 +22456,7 @@ function orderedList(editor) {
22111
22456
  });
22112
22457
  }
22113
22458
  const unwrapList = [], shouldUnwrap = (elm) => {
22114
- if (dom/* Dom.isTag */.i.isTag(elm, [
22459
+ if (Dom.isTag(elm, [
22115
22460
  'p',
22116
22461
  'h1',
22117
22462
  'h2',
@@ -22128,12 +22473,12 @@ function orderedList(editor) {
22128
22473
  ul.querySelectorAll('li').forEach(li => shouldUnwrap(li.firstChild));
22129
22474
  if (unwrapList.length) {
22130
22475
  editor.s.save();
22131
- (0,helpers.toArray)(ul.childNodes).forEach(li => {
22132
- if (dom/* Dom.isTag */.i.isTag(li.lastChild, 'br')) {
22133
- dom/* Dom.safeRemove */.i.safeRemove(li.lastChild);
22476
+ toArray(ul.childNodes).forEach(li => {
22477
+ if (Dom.isTag(li.lastChild, 'br')) {
22478
+ Dom.safeRemove(li.lastChild);
22134
22479
  }
22135
22480
  });
22136
- unwrapList.forEach(elm => dom/* Dom.unwrap */.i.unwrap(elm));
22481
+ unwrapList.forEach(elm => Dom.unwrap(elm));
22137
22482
  editor.s.restore();
22138
22483
  }
22139
22484
  }
@@ -22142,6 +22487,31 @@ function orderedList(editor) {
22142
22487
  });
22143
22488
  }
22144
22489
 
22490
+ ;// CONCATENATED MODULE: ./src/plugins/powered-by-jodit.ts
22491
+ /*!
22492
+ * Jodit Editor (https://xdsoft.net/jodit/)
22493
+ * Released under MIT see LICENSE.txt in the project root for license information.
22494
+ * Copyright (c) 2013-2021 Valeriy Chupurnov. All rights reserved. https://xdsoft.net
22495
+ */
22496
+ function poweredByJodit(jodit) {
22497
+ if (!jodit.o.hidePoweredByJodit &&
22498
+ !jodit.o.inline &&
22499
+ (jodit.o.showCharsCounter ||
22500
+ jodit.o.showWordsCounter ||
22501
+ jodit.o.showXPathInStatusbar)) {
22502
+ jodit.hookStatus('ready', () => {
22503
+ jodit.statusbar.append(jodit.create.fromHTML(`<a
22504
+ tabindex="-1"
22505
+ style="text-transform: uppercase"
22506
+ class="jodit-status-bar-link"
22507
+ target="_blank"
22508
+ href="https://xdsoft.net/jodit/">
22509
+ Powered by Jodit
22510
+ </a>`), true);
22511
+ });
22512
+ }
22513
+ }
22514
+
22145
22515
  ;// CONCATENATED MODULE: ./src/plugins/placeholder/placeholder.ts
22146
22516
  /*!
22147
22517
  * Jodit Editor (https://xdsoft.net/jodit/)
@@ -22373,10 +22743,10 @@ class resizer extends Plugin {
22373
22743
  this.height = 0;
22374
22744
  this.ratio = 0;
22375
22745
  this.rect = this.j.c.fromHTML(`<div class="jodit-resizer">
22376
- <i class="jodit-resizer-topleft"></i>
22377
- <i class="jodit-resizer-topright"></i>
22378
- <i class="jodit-resizer-bottomright"></i>
22379
- <i class="jodit-resizer-bottomleft"></i>
22746
+ <div class="jodit-resizer__top-left"></div>
22747
+ <div class="jodit-resizer__top-right"></div>
22748
+ <div class="jodit-resizer__bottom-right"></div>
22749
+ <div class="jodit-resizer__bottom-left"></div>
22380
22750
  <span>100x100</span>
22381
22751
  </div>`);
22382
22752
  this.sizeViewer = this.rect.getElementsByTagName('span')[0];
@@ -22470,7 +22840,7 @@ class resizer extends Plugin {
22470
22840
  if (this.element && this.rect) {
22471
22841
  const workplacePosition = this.getWorkplacePosition();
22472
22842
  const pos = (0,helpers.offset)(this.element, this.j, this.j.ed), left = parseInt(this.rect.style.left || '0', 10), top = parseInt(this.rect.style.top || '0', 10), w = this.rect.offsetWidth, h = this.rect.offsetHeight;
22473
- const newTop = pos.top - 1 - workplacePosition.top, newLeft = pos.left - 1 - workplacePosition.left;
22843
+ const newTop = pos.top - workplacePosition.top, newLeft = pos.left - workplacePosition.left;
22474
22844
  if (top !== newTop ||
22475
22845
  left !== newLeft ||
22476
22846
  w !== this.element.offsetWidth ||
@@ -22495,7 +22865,7 @@ class resizer extends Plugin {
22495
22865
  };
22496
22866
  }
22497
22867
  afterInit(editor) {
22498
- (0,helpers.$$)('i', this.rect).forEach((resizeHandle) => {
22868
+ (0,helpers.$$)('div', this.rect).forEach((resizeHandle) => {
22499
22869
  editor.e.on(resizeHandle, 'mousedown.resizer touchstart.resizer', this.onClickHandle.bind(this, resizeHandle));
22500
22870
  });
22501
22871
  global/* eventEmitter.on */.TB.on('hideHelpers', this.hide);
@@ -23245,6 +23615,8 @@ config/* Config.prototype.minHeight */.D.prototype.minHeight = 200;
23245
23615
  config/* Config.prototype.maxHeight */.D.prototype.maxHeight = 'auto';
23246
23616
  config/* Config.prototype.saveHeightInStorage */.D.prototype.saveHeightInStorage = false;
23247
23617
 
23618
+ // EXTERNAL MODULE: ./src/plugins/size/assests/resize-handler.svg
23619
+ var resize_handler = __webpack_require__(52);
23248
23620
  ;// CONCATENATED MODULE: ./src/plugins/size/resize-handler.ts
23249
23621
  /*!
23250
23622
  * Jodit Editor (https://xdsoft.net/jodit/)
@@ -23255,6 +23627,7 @@ config/* Config.prototype.saveHeightInStorage */.D.prototype.saveHeightInStorage
23255
23627
 
23256
23628
 
23257
23629
 
23630
+
23258
23631
  let resizeHandler = class resizeHandler extends Plugin {
23259
23632
  constructor() {
23260
23633
  super(...arguments);
@@ -23265,7 +23638,7 @@ let resizeHandler = class resizeHandler extends Plugin {
23265
23638
  w: 0,
23266
23639
  h: 0
23267
23640
  };
23268
- this.handle = this.j.c.div('jodit-editor__resize', '<span tabindex="-1"></span>');
23641
+ this.handle = this.j.c.div('jodit-editor__resize', resize_handler);
23269
23642
  }
23270
23643
  afterInit(editor) {
23271
23644
  const { height, width, allowResizeX } = editor.o;
@@ -23275,6 +23648,7 @@ let resizeHandler = class resizeHandler extends Plugin {
23275
23648
  }
23276
23649
  if ((height !== 'auto' || width !== 'auto') &&
23277
23650
  (allowResizeX || allowResizeY)) {
23651
+ editor.statusbar.setMod('resize-handle', true);
23278
23652
  editor.e
23279
23653
  .on('toggleFullSize.resizeHandler', () => {
23280
23654
  this.handle.style.display = editor.isFullSize
@@ -23926,6 +24300,16 @@ class source extends Plugin {
23926
24300
  this.__oldMirrorValue = value;
23927
24301
  }
23928
24302
  getNormalPosition(pos, str) {
24303
+ str = str.replace(/<(script|style|iframe)[^>]*>.*?<\/\1>/is, m => {
24304
+ let res = '';
24305
+ for (let i = 0; i < m.length; i += 1) {
24306
+ res += constants.INVISIBLE_SPACE;
24307
+ }
24308
+ return res;
24309
+ });
24310
+ while (pos > 0 && str[pos] === constants.INVISIBLE_SPACE) {
24311
+ pos--;
24312
+ }
23929
24313
  let start = pos;
23930
24314
  while (start > 0) {
23931
24315
  start--;
@@ -25588,8 +25972,11 @@ config/* Config.prototype.controls.preview */.D.prototype.controls.preview = {
25588
25972
  });
25589
25973
  const div = editor.c.div();
25590
25974
  (0,helpers.css)(div, {
25975
+ position: 'relative',
25591
25976
  padding: 16
25592
25977
  });
25978
+ const value = editor.value ||
25979
+ `<div style='position: absolute;left:50%;top:50%;transform: translateX(-50%) translateY(-50%);color:#ccc;'>${editor.i18n('Empty')}</div>`;
25593
25980
  if (editor.iframe) {
25594
25981
  const iframe = editor.create.element('iframe');
25595
25982
  (0,helpers.css)(iframe, {
@@ -25602,7 +25989,7 @@ config/* Config.prototype.controls.preview */.D.prototype.controls.preview = {
25602
25989
  const mywindow = iframe.contentWindow;
25603
25990
  if (mywindow) {
25604
25991
  editor.e.fire('generateDocumentStructure.iframe', mywindow.document, editor);
25605
- mywindow.document.body.innerHTML = editor.value;
25992
+ mywindow.document.body.innerHTML = value;
25606
25993
  }
25607
25994
  }
25608
25995
  else {
@@ -25611,7 +25998,7 @@ config/* Config.prototype.controls.preview */.D.prototype.controls.preview = {
25611
25998
  minHeight: 600,
25612
25999
  border: 0
25613
26000
  });
25614
- div.innerHTML = editor.value;
26001
+ div.innerHTML = value;
25615
26002
  dialog.open(div, editor.i18n('Preview'));
25616
26003
  }
25617
26004
  dialog.setModal(true);
@@ -25891,170 +26278,171 @@ class xpath extends Plugin {
25891
26278
 
25892
26279
 
25893
26280
 
26281
+
25894
26282
 
25895
26283
 
25896
26284
  // EXTERNAL MODULE: ./src/styles/icons/about.svg
25897
- var icons_about = __webpack_require__(52);
26285
+ var icons_about = __webpack_require__(53);
25898
26286
  // EXTERNAL MODULE: ./src/styles/icons/addcolumn.svg
25899
- var addcolumn = __webpack_require__(53);
26287
+ var addcolumn = __webpack_require__(54);
25900
26288
  // EXTERNAL MODULE: ./src/styles/icons/addrow.svg
25901
- var addrow = __webpack_require__(54);
26289
+ var addrow = __webpack_require__(55);
25902
26290
  // EXTERNAL MODULE: ./src/styles/icons/angle-down.svg
25903
- var angle_down = __webpack_require__(55);
26291
+ var angle_down = __webpack_require__(56);
25904
26292
  // EXTERNAL MODULE: ./src/styles/icons/angle-left.svg
25905
- var angle_left = __webpack_require__(56);
26293
+ var angle_left = __webpack_require__(57);
25906
26294
  // EXTERNAL MODULE: ./src/styles/icons/angle-right.svg
25907
- var angle_right = __webpack_require__(57);
26295
+ var angle_right = __webpack_require__(58);
25908
26296
  // EXTERNAL MODULE: ./src/styles/icons/angle-up.svg
25909
- var angle_up = __webpack_require__(58);
26297
+ var angle_up = __webpack_require__(59);
25910
26298
  // EXTERNAL MODULE: ./src/styles/icons/arrows-alt.svg
25911
- var arrows_alt = __webpack_require__(59);
26299
+ var arrows_alt = __webpack_require__(60);
25912
26300
  // EXTERNAL MODULE: ./src/styles/icons/arrows-h.svg
25913
- var arrows_h = __webpack_require__(60);
26301
+ var arrows_h = __webpack_require__(61);
25914
26302
  // EXTERNAL MODULE: ./src/styles/icons/attachment.svg
25915
- var attachment = __webpack_require__(61);
26303
+ var attachment = __webpack_require__(62);
25916
26304
  // EXTERNAL MODULE: ./src/styles/icons/bin.svg
25917
- var bin = __webpack_require__(62);
26305
+ var bin = __webpack_require__(63);
25918
26306
  // EXTERNAL MODULE: ./src/styles/icons/bold.svg
25919
- var icons_bold = __webpack_require__(63);
26307
+ var icons_bold = __webpack_require__(64);
25920
26308
  // EXTERNAL MODULE: ./src/styles/icons/brush.svg
25921
- var brush = __webpack_require__(64);
26309
+ var brush = __webpack_require__(65);
25922
26310
  // EXTERNAL MODULE: ./src/styles/icons/cancel.svg
25923
- var cancel = __webpack_require__(65);
26311
+ var cancel = __webpack_require__(66);
25924
26312
  // EXTERNAL MODULE: ./src/styles/icons/center.svg
25925
- var center = __webpack_require__(66);
26313
+ var center = __webpack_require__(67);
25926
26314
  // EXTERNAL MODULE: ./src/styles/icons/chain-broken.svg
25927
- var chain_broken = __webpack_require__(67);
26315
+ var chain_broken = __webpack_require__(68);
25928
26316
  // EXTERNAL MODULE: ./src/styles/icons/check.svg
25929
- var check = __webpack_require__(68);
26317
+ var check = __webpack_require__(69);
25930
26318
  // EXTERNAL MODULE: ./src/styles/icons/check-square.svg
25931
- var check_square = __webpack_require__(69);
26319
+ var check_square = __webpack_require__(70);
25932
26320
  // EXTERNAL MODULE: ./src/styles/icons/chevron.svg
25933
- var chevron = __webpack_require__(70);
26321
+ var chevron = __webpack_require__(71);
25934
26322
  // EXTERNAL MODULE: ./src/styles/icons/copyformat.svg
25935
- var copyformat = __webpack_require__(71);
26323
+ var copyformat = __webpack_require__(72);
25936
26324
  // EXTERNAL MODULE: ./src/styles/icons/crop.svg
25937
- var crop = __webpack_require__(72);
26325
+ var crop = __webpack_require__(73);
25938
26326
  // EXTERNAL MODULE: ./src/styles/icons/copy.svg
25939
- var copy = __webpack_require__(73);
26327
+ var copy = __webpack_require__(74);
25940
26328
  // EXTERNAL MODULE: ./src/styles/icons/cut.svg
25941
- var cut = __webpack_require__(74);
26329
+ var cut = __webpack_require__(75);
25942
26330
  // EXTERNAL MODULE: ./src/styles/icons/dedent.svg
25943
- var dedent = __webpack_require__(75);
26331
+ var dedent = __webpack_require__(76);
25944
26332
  // EXTERNAL MODULE: ./src/styles/icons/dots.svg
25945
- var dots = __webpack_require__(76);
26333
+ var dots = __webpack_require__(77);
25946
26334
  // EXTERNAL MODULE: ./src/styles/icons/enter.svg
25947
- var icons_enter = __webpack_require__(77);
26335
+ var icons_enter = __webpack_require__(78);
25948
26336
  // EXTERNAL MODULE: ./src/styles/icons/eraser.svg
25949
- var eraser = __webpack_require__(78);
26337
+ var eraser = __webpack_require__(79);
25950
26338
  // EXTERNAL MODULE: ./src/styles/icons/eye.svg
25951
- var eye = __webpack_require__(79);
26339
+ var eye = __webpack_require__(80);
25952
26340
  // EXTERNAL MODULE: ./src/styles/icons/file.svg
25953
- var icons_file = __webpack_require__(80);
26341
+ var icons_file = __webpack_require__(81);
25954
26342
  // EXTERNAL MODULE: ./src/styles/icons/folder.svg
25955
- var folder = __webpack_require__(81);
26343
+ var folder = __webpack_require__(82);
25956
26344
  // EXTERNAL MODULE: ./src/styles/icons/font.svg
25957
- var icons_font = __webpack_require__(82);
26345
+ var icons_font = __webpack_require__(83);
25958
26346
  // EXTERNAL MODULE: ./src/styles/icons/fontsize.svg
25959
- var fontsize = __webpack_require__(83);
26347
+ var fontsize = __webpack_require__(84);
25960
26348
  // EXTERNAL MODULE: ./src/styles/icons/fullsize.svg
25961
- var icons_fullsize = __webpack_require__(84);
26349
+ var icons_fullsize = __webpack_require__(85);
25962
26350
  // EXTERNAL MODULE: ./src/styles/icons/hr.svg
25963
- var icons_hr = __webpack_require__(85);
26351
+ var icons_hr = __webpack_require__(86);
25964
26352
  // EXTERNAL MODULE: ./src/styles/icons/image.svg
25965
- var icons_image = __webpack_require__(86);
26353
+ var icons_image = __webpack_require__(87);
25966
26354
  // EXTERNAL MODULE: ./src/styles/icons/indent.svg
25967
- var icons_indent = __webpack_require__(87);
26355
+ var icons_indent = __webpack_require__(88);
25968
26356
  // EXTERNAL MODULE: ./src/styles/icons/info-circle.svg
25969
- var info_circle = __webpack_require__(88);
26357
+ var info_circle = __webpack_require__(89);
25970
26358
  // EXTERNAL MODULE: ./src/styles/icons/italic.svg
25971
- var italic = __webpack_require__(89);
26359
+ var italic = __webpack_require__(90);
25972
26360
  // EXTERNAL MODULE: ./src/styles/icons/justify.svg
25973
- var icons_justify = __webpack_require__(90);
26361
+ var icons_justify = __webpack_require__(91);
25974
26362
  // EXTERNAL MODULE: ./src/styles/icons/left.svg
25975
- var left = __webpack_require__(91);
26363
+ var left = __webpack_require__(92);
25976
26364
  // EXTERNAL MODULE: ./src/styles/icons/link.svg
25977
- var icons_link = __webpack_require__(92);
26365
+ var icons_link = __webpack_require__(93);
25978
26366
  // EXTERNAL MODULE: ./src/styles/icons/lock.svg
25979
- var lock = __webpack_require__(93);
26367
+ var lock = __webpack_require__(94);
25980
26368
  // EXTERNAL MODULE: ./src/styles/icons/menu.svg
25981
- var menu = __webpack_require__(94);
26369
+ var menu = __webpack_require__(95);
25982
26370
  // EXTERNAL MODULE: ./src/styles/icons/merge.svg
25983
- var merge = __webpack_require__(95);
26371
+ var merge = __webpack_require__(96);
25984
26372
  // EXTERNAL MODULE: ./src/styles/icons/ok.svg
25985
- var ok = __webpack_require__(96);
26373
+ var ok = __webpack_require__(97);
25986
26374
  // EXTERNAL MODULE: ./src/styles/icons/ol.svg
25987
- var ol = __webpack_require__(97);
26375
+ var ol = __webpack_require__(98);
25988
26376
  // EXTERNAL MODULE: ./src/styles/icons/omega.svg
25989
- var omega = __webpack_require__(98);
26377
+ var omega = __webpack_require__(99);
25990
26378
  // EXTERNAL MODULE: ./src/styles/icons/outdent.svg
25991
- var outdent = __webpack_require__(99);
26379
+ var outdent = __webpack_require__(100);
25992
26380
  // EXTERNAL MODULE: ./src/styles/icons/palette.svg
25993
- var palette = __webpack_require__(100);
26381
+ var palette = __webpack_require__(101);
25994
26382
  // EXTERNAL MODULE: ./src/styles/icons/paragraph.svg
25995
- var paragraph = __webpack_require__(101);
26383
+ var paragraph = __webpack_require__(102);
25996
26384
  // EXTERNAL MODULE: ./src/styles/icons/paste.svg
25997
- var icons_paste = __webpack_require__(102);
26385
+ var icons_paste = __webpack_require__(103);
25998
26386
  // EXTERNAL MODULE: ./src/styles/icons/pencil.svg
25999
- var pencil = __webpack_require__(103);
26387
+ var pencil = __webpack_require__(104);
26000
26388
  // EXTERNAL MODULE: ./src/styles/icons/plus.svg
26001
- var plus = __webpack_require__(104);
26389
+ var plus = __webpack_require__(105);
26002
26390
  // EXTERNAL MODULE: ./src/styles/icons/print.svg
26003
- var icons_print = __webpack_require__(105);
26391
+ var icons_print = __webpack_require__(106);
26004
26392
  // EXTERNAL MODULE: ./src/styles/icons/redo.svg
26005
- var redo = __webpack_require__(106);
26393
+ var redo = __webpack_require__(107);
26006
26394
  // EXTERNAL MODULE: ./src/styles/icons/resize.svg
26007
- var resize = __webpack_require__(107);
26395
+ var resize = __webpack_require__(108);
26008
26396
  // EXTERNAL MODULE: ./src/styles/icons/resizer.svg
26009
- var icons_resizer = __webpack_require__(108);
26397
+ var icons_resizer = __webpack_require__(109);
26010
26398
  // EXTERNAL MODULE: ./src/styles/icons/right.svg
26011
- var right = __webpack_require__(109);
26399
+ var right = __webpack_require__(110);
26012
26400
  // EXTERNAL MODULE: ./src/styles/icons/save.svg
26013
- var save = __webpack_require__(110);
26401
+ var save = __webpack_require__(111);
26014
26402
  // EXTERNAL MODULE: ./src/styles/icons/search.svg
26015
- var icons_search = __webpack_require__(111);
26403
+ var icons_search = __webpack_require__(112);
26016
26404
  // EXTERNAL MODULE: ./src/styles/icons/settings.svg
26017
- var settings = __webpack_require__(112);
26405
+ var settings = __webpack_require__(113);
26018
26406
  // EXTERNAL MODULE: ./src/styles/icons/select-all.svg
26019
- var select_all = __webpack_require__(113);
26407
+ var select_all = __webpack_require__(114);
26020
26408
  // EXTERNAL MODULE: ./src/styles/icons/shrink.svg
26021
- var shrink = __webpack_require__(114);
26409
+ var shrink = __webpack_require__(115);
26022
26410
  // EXTERNAL MODULE: ./src/styles/icons/source.svg
26023
- var icons_source = __webpack_require__(115);
26411
+ var icons_source = __webpack_require__(116);
26024
26412
  // EXTERNAL MODULE: ./src/styles/icons/splitg.svg
26025
- var splitg = __webpack_require__(116);
26413
+ var splitg = __webpack_require__(117);
26026
26414
  // EXTERNAL MODULE: ./src/styles/icons/splitv.svg
26027
- var splitv = __webpack_require__(117);
26415
+ var splitv = __webpack_require__(118);
26028
26416
  // EXTERNAL MODULE: ./src/styles/icons/strikethrough.svg
26029
- var strikethrough = __webpack_require__(118);
26417
+ var strikethrough = __webpack_require__(119);
26030
26418
  // EXTERNAL MODULE: ./src/styles/icons/subscript.svg
26031
- var subscript = __webpack_require__(119);
26419
+ var subscript = __webpack_require__(120);
26032
26420
  // EXTERNAL MODULE: ./src/styles/icons/superscript.svg
26033
- var superscript = __webpack_require__(120);
26421
+ var superscript = __webpack_require__(121);
26034
26422
  // EXTERNAL MODULE: ./src/styles/icons/table.svg
26035
- var icons_table = __webpack_require__(121);
26423
+ var icons_table = __webpack_require__(122);
26036
26424
  // EXTERNAL MODULE: ./src/styles/icons/th.svg
26037
- var th = __webpack_require__(122);
26425
+ var th = __webpack_require__(123);
26038
26426
  // EXTERNAL MODULE: ./src/styles/icons/th-list.svg
26039
- var th_list = __webpack_require__(123);
26427
+ var th_list = __webpack_require__(124);
26040
26428
  // EXTERNAL MODULE: ./src/styles/icons/ul.svg
26041
- var ul = __webpack_require__(124);
26429
+ var ul = __webpack_require__(125);
26042
26430
  // EXTERNAL MODULE: ./src/styles/icons/underline.svg
26043
- var underline = __webpack_require__(125);
26431
+ var underline = __webpack_require__(126);
26044
26432
  // EXTERNAL MODULE: ./src/styles/icons/undo.svg
26045
- var undo = __webpack_require__(126);
26433
+ var undo = __webpack_require__(127);
26046
26434
  // EXTERNAL MODULE: ./src/styles/icons/unlink.svg
26047
- var unlink = __webpack_require__(127);
26435
+ var unlink = __webpack_require__(128);
26048
26436
  // EXTERNAL MODULE: ./src/styles/icons/unlock.svg
26049
- var unlock = __webpack_require__(128);
26437
+ var unlock = __webpack_require__(129);
26050
26438
  // EXTERNAL MODULE: ./src/styles/icons/update.svg
26051
- var update = __webpack_require__(129);
26439
+ var update = __webpack_require__(130);
26052
26440
  // EXTERNAL MODULE: ./src/styles/icons/upload.svg
26053
- var upload = __webpack_require__(130);
26441
+ var upload = __webpack_require__(131);
26054
26442
  // EXTERNAL MODULE: ./src/styles/icons/valign.svg
26055
- var valign = __webpack_require__(131);
26443
+ var valign = __webpack_require__(132);
26056
26444
  // EXTERNAL MODULE: ./src/styles/icons/video.svg
26057
- var icons_video = __webpack_require__(132);
26445
+ var icons_video = __webpack_require__(133);
26058
26446
  ;// CONCATENATED MODULE: ./src/styles/icons/index.ts
26059
26447
  /*!
26060
26448
  * Jodit Editor (https://xdsoft.net/jodit/)