@ckeditor/ckeditor5-list-multi-level 41.3.0 → 41.4.0-alpha.0

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 (102) hide show
  1. package/README.md +32 -0
  2. package/build/list-multi-level.js +1 -1
  3. package/dist/index-content.css +19 -0
  4. package/dist/index-editor.css +32 -0
  5. package/dist/index.css +106 -0
  6. package/dist/index.js +23 -0
  7. package/dist/translations/ar.d.ts +8 -0
  8. package/dist/translations/ar.js +23 -0
  9. package/dist/translations/bg.d.ts +8 -0
  10. package/dist/translations/bg.js +23 -0
  11. package/dist/translations/bn.d.ts +8 -0
  12. package/dist/translations/bn.js +23 -0
  13. package/dist/translations/ca.d.ts +8 -0
  14. package/dist/translations/ca.js +23 -0
  15. package/dist/translations/cs.d.ts +8 -0
  16. package/dist/translations/cs.js +23 -0
  17. package/dist/translations/da.d.ts +8 -0
  18. package/dist/translations/da.js +23 -0
  19. package/dist/translations/de.d.ts +8 -0
  20. package/dist/translations/de.js +23 -0
  21. package/dist/translations/el.d.ts +8 -0
  22. package/dist/translations/el.js +23 -0
  23. package/dist/translations/en.d.ts +8 -0
  24. package/dist/translations/en.js +23 -0
  25. package/dist/translations/es-co.d.ts +8 -0
  26. package/dist/translations/es-co.js +23 -0
  27. package/dist/translations/es.d.ts +8 -0
  28. package/dist/translations/es.js +23 -0
  29. package/dist/translations/et.d.ts +8 -0
  30. package/dist/translations/et.js +23 -0
  31. package/dist/translations/fi.d.ts +8 -0
  32. package/dist/translations/fi.js +23 -0
  33. package/dist/translations/fr.d.ts +8 -0
  34. package/dist/translations/fr.js +23 -0
  35. package/dist/translations/he.d.ts +8 -0
  36. package/dist/translations/he.js +23 -0
  37. package/dist/translations/hi.d.ts +8 -0
  38. package/dist/translations/hi.js +23 -0
  39. package/dist/translations/hr.d.ts +8 -0
  40. package/dist/translations/hr.js +23 -0
  41. package/dist/translations/hu.d.ts +8 -0
  42. package/dist/translations/hu.js +23 -0
  43. package/dist/translations/id.d.ts +8 -0
  44. package/dist/translations/id.js +23 -0
  45. package/dist/translations/it.d.ts +8 -0
  46. package/dist/translations/it.js +23 -0
  47. package/dist/translations/ja.d.ts +8 -0
  48. package/dist/translations/ja.js +23 -0
  49. package/dist/translations/ko.d.ts +8 -0
  50. package/dist/translations/ko.js +23 -0
  51. package/dist/translations/lt.d.ts +8 -0
  52. package/dist/translations/lt.js +23 -0
  53. package/dist/translations/lv.d.ts +8 -0
  54. package/dist/translations/lv.js +23 -0
  55. package/dist/translations/ms.d.ts +8 -0
  56. package/dist/translations/ms.js +23 -0
  57. package/dist/translations/nl.d.ts +8 -0
  58. package/dist/translations/nl.js +23 -0
  59. package/dist/translations/no.d.ts +8 -0
  60. package/dist/translations/no.js +23 -0
  61. package/dist/translations/pl.d.ts +8 -0
  62. package/dist/translations/pl.js +23 -0
  63. package/dist/translations/pt-br.d.ts +8 -0
  64. package/dist/translations/pt-br.js +23 -0
  65. package/dist/translations/pt.d.ts +8 -0
  66. package/dist/translations/pt.js +23 -0
  67. package/dist/translations/ro.d.ts +8 -0
  68. package/dist/translations/ro.js +23 -0
  69. package/dist/translations/ru.d.ts +8 -0
  70. package/dist/translations/ru.js +23 -0
  71. package/dist/translations/sk.d.ts +8 -0
  72. package/dist/translations/sk.js +23 -0
  73. package/dist/translations/sr.d.ts +8 -0
  74. package/dist/translations/sr.js +23 -0
  75. package/dist/translations/sv.d.ts +8 -0
  76. package/dist/translations/sv.js +23 -0
  77. package/dist/translations/th.d.ts +8 -0
  78. package/dist/translations/th.js +23 -0
  79. package/dist/translations/tr.d.ts +8 -0
  80. package/dist/translations/tr.js +23 -0
  81. package/dist/translations/uk.d.ts +8 -0
  82. package/dist/translations/uk.js +23 -0
  83. package/dist/translations/vi.d.ts +8 -0
  84. package/dist/translations/vi.js +23 -0
  85. package/dist/translations/zh-cn.d.ts +8 -0
  86. package/dist/translations/zh-cn.js +23 -0
  87. package/dist/translations/zh.d.ts +8 -0
  88. package/dist/translations/zh.js +23 -0
  89. package/dist/types/augmentation.d.ts +18 -0
  90. package/dist/types/index.d.ts +15 -0
  91. package/dist/types/multilevellist.d.ts +31 -0
  92. package/dist/types/multilevellistcommand.d.ts +53 -0
  93. package/dist/types/multilevellistediting.d.ts +31 -0
  94. package/dist/types/multilevellistui.d.ts +32 -0
  95. package/dist/types/ui/multilevellistview.d.ts +9 -0
  96. package/package.json +4 -3
  97. package/src/index.js +1 -1
  98. package/src/multilevellist.js +1 -1
  99. package/src/multilevellistcommand.js +1 -1
  100. package/src/multilevellistediting.js +1 -1
  101. package/src/multilevellistui.js +1 -1
  102. package/src/ui/multilevellistview.js +1 -1
package/README.md ADDED
@@ -0,0 +1,32 @@
1
+ # CKEditor 5 multi-level lists
2
+
3
+ [![npm version](https://badge.fury.io/js/%40ckeditor%2Fckeditor5-list-multi-level.svg)](https://www.npmjs.com/package/@ckeditor/ckeditor5-list-multi-level)
4
+
5
+ Multi-level lists with the legal style numbering feature allows for easy creation and modification of numbered lists with counters (1., 1.1., 1.1.1.). These are crucial for clear referencing and hierarchical organization in complex documents. The feature offers full compatibility with Microsoft Word.
6
+
7
+ This is a premium feature. [Contact us](https://ckeditor.com/contact/?sales=true#contact-form) if you would like to purchase a license. Let us know if you have any feedback or questions!
8
+
9
+ ## Demo
10
+
11
+ Check out the [demo in the multi-level list feature guide](https://ckeditor.com/docs/ckeditor5/latest/features/lists/multi-level-lists.html#demo).
12
+
13
+ ## Documentation
14
+
15
+ See the [`@ckeditor/ckeditor5-list-multi-level` package](https://ckeditor.com/docs/ckeditor5/latest/api/list-multi-level.html) page in the [CKEditor 5 documentation](https://ckeditor.com/docs/ckeditor5/latest/) as well as the [multi-level lists](https://ckeditor.com/docs/ckeditor5/latest/features/lists/multi-level-lists.html) feature guide.
16
+
17
+ ## Getting support
18
+
19
+ CKEditor 5 multi-level lists feature comes with outstanding support from a dedicated team of customer care specialists, QA engineers, and CKEditor 5 developers. The team will gladly assist you in all aspects from setting up your account to integrating the CKEditor 5 multi-level lists feature with your application.
20
+
21
+ As a licensed CKEditor 5 multi-level lists feature user you can report bugs and request features directly through the CKEditor Ecosystem customer dashboard.
22
+
23
+ ## License
24
+
25
+ **CKEditor&nbsp;5 multi-level lists**<br>
26
+ Copyright (c) 2003–2024, [CKSource Holding sp. z o.o.](https://cksource.com) All rights reserved.
27
+
28
+ CKEditor&nbsp;5 multi-level lists is licensed under a commercial license and is protected by copyright law. For more details about available licensing options, contact us at sales@cksource.com.
29
+
30
+ ### Trademarks
31
+
32
+ **CKEditor** is a trademark of [CKSource Holding sp. z o.o.](https://cksource.com) All other brand and product names are trademarks, registered trademarks, or service marks of their respective holders.
@@ -2,4 +2,4 @@
2
2
  /*!
3
3
  * @license Copyright (c) 2003-2024, CKSource Holding sp. z o.o. All rights reserved.
4
4
  * For licensing, see LICENSE.md.
5
- */(()=>{var t={326:(t,e,n)=>{"use strict";n.d(e,{A:()=>r});var i=n(433),s=n.n(i)()((function(t){return t[1]}));s.push([t.id,".ck-content .multi-level-list{list-style:none}.ck-content .multi-level-list li{position:relative}.ck-content .multi-level-list li .multi-level-list__marker{padding-inline-end:5px;pointer-events:none;position:absolute;transform:translate(-100%)}[dir=rtl] .ck-content .multi-level-list li .multi-level-list__marker{transform:translate(100%)}.ck-content .multi-level-list li .multi-level-list__marker::selection{background-color:transparent}",""]);const r=s},541:(t,e,n)=>{"use strict";n.d(e,{A:()=>r});var i=n(433),s=n.n(i)()((function(t){return t[1]}));s.push([t.id,".ck.ck-multi-level-list-properties.ck-multi-level-list-properties_without-styles{padding:var(--ck-spacing-large)}.ck.ck-multi-level-list-properties.ck-multi-level-list-properties_without-styles>*{min-width:14em}.ck.ck-multi-level-list-properties.ck-multi-level-list-properties_without-styles>*+*{margin-top:var(--ck-spacing-standard)}.ck.ck-multi-level-list-properties.ck-multi-level-list-properties_with-multi-level-properties>.ck-multi-level-list-styles{grid-template-columns:repeat(4,auto)}.ck.ck-multi-level-list-properties.ck-multi-level-list-properties_with-multi-level-properties>.ck-collapsible{border-top:1px solid var(--ck-color-base-border)}.ck.ck-multi-level-list-properties.ck-multi-level-list-properties_with-multi-level-properties>.ck-collapsible>.ck-collapsible__children>*{width:100%}.ck.ck-multi-level-list-properties.ck-multi-level-list-properties_with-multi-level-properties>.ck-collapsible>.ck-collapsible__children>*+*{margin-top:var(--ck-spacing-standard)}.ck.ck-multi-level-list-properties .ck.ck-multi-level-list-properties__start-index .ck-input{min-width:auto;width:100%}",""]);const r=s},433:t=>{"use strict";t.exports=function(t){var e=[];return e.toString=function(){return this.map((function(e){var n=t(e);return e[2]?"@media ".concat(e[2]," {").concat(n,"}"):n})).join("")},e.i=function(t,n,i){"string"==typeof t&&(t=[[null,t,""]]);var s={};if(i)for(var r=0;r<this.length;r++){var o=this[r][0];null!=o&&(s[o]=!0)}for(var l=0;l<t.length;l++){var c=[].concat(t[l]);i&&s[c[0]]||(n&&(c[2]?c[2]="".concat(n," and ").concat(c[2]):c[2]=n),e.push(c))}},e}},673:(t,e,n)=>{"use strict";var i,s=function(){return void 0===i&&(i=Boolean(window&&document&&document.all&&!window.atob)),i},r=function(){var t={};return function(e){if(void 0===t[e]){var n=document.querySelector(e);if(window.HTMLIFrameElement&&n instanceof window.HTMLIFrameElement)try{n=n.contentDocument.head}catch(t){n=null}t[e]=n}return t[e]}}(),o=[];function l(t){for(var e=-1,n=0;n<o.length;n++)if(o[n].identifier===t){e=n;break}return e}function c(t,e){for(var n={},i=[],s=0;s<t.length;s++){var r=t[s],c=e.base?r[0]+e.base:r[0],a=n[c]||0,u="".concat(c," ").concat(a);n[c]=a+1;var d=l(u),f={css:r[1],media:r[2],sourceMap:r[3]};-1!==d?(o[d].references++,o[d].updater(f)):o.push({identifier:u,updater:v(f,e),references:1}),i.push(u)}return i}function a(t){var e=document.createElement("style"),i=t.attributes||{};if(void 0===i.nonce){var s=n.nc;s&&(i.nonce=s)}if(Object.keys(i).forEach((function(t){e.setAttribute(t,i[t])})),"function"==typeof t.insert)t.insert(e);else{var o=r(t.insert||"head");if(!o)throw new Error("Couldn't find a style target. This probably means that the value for the 'insert' parameter is invalid.");o.appendChild(e)}return e}var u,d=(u=[],function(t,e){return u[t]=e,u.filter(Boolean).join("\n")});function f(t,e,n,i){var s=n?"":i.media?"@media ".concat(i.media," {").concat(i.css,"}"):i.css;if(t.styleSheet)t.styleSheet.cssText=d(e,s);else{var r=document.createTextNode(s),o=t.childNodes;o[e]&&t.removeChild(o[e]),o.length?t.insertBefore(r,o[e]):t.appendChild(r)}}function p(t,e,n){var i=n.css,s=n.media,r=n.sourceMap;if(s?t.setAttribute("media",s):t.removeAttribute("media"),r&&"undefined"!=typeof btoa&&(i+="\n/*# sourceMappingURL=data:application/json;base64,".concat(btoa(unescape(encodeURIComponent(JSON.stringify(r))))," */")),t.styleSheet)t.styleSheet.cssText=i;else{for(;t.firstChild;)t.removeChild(t.firstChild);t.appendChild(document.createTextNode(i))}}var h=null,m=0;function v(t,e){var n,i,s;if(e.singleton){var r=m++;n=h||(h=a(e)),i=f.bind(null,n,r,!1),s=f.bind(null,n,r,!0)}else n=a(e),i=p.bind(null,n,e),s=function(){!function(t){if(null===t.parentNode)return!1;t.parentNode.removeChild(t)}(n)};return i(t),function(e){if(e){if(e.css===t.css&&e.media===t.media&&e.sourceMap===t.sourceMap)return;i(t=e)}else s()}}t.exports=function(t,e){(e=e||{}).singleton||"boolean"==typeof e.singleton||(e.singleton=s());var n=c(t=t||[],e);return function(t){if(t=t||[],"[object Array]"===Object.prototype.toString.call(t)){for(var i=0;i<n.length;i++){var s=l(n[i]);o[s].references--}for(var r=c(t,e),a=0;a<n.length;a++){var u=l(n[a]);0===o[u].references&&(o[u].updater(),o.splice(u,1))}n=r}}}},782:(t,e,n)=>{t.exports=n(237)("./src/core.js")},783:(t,e,n)=>{t.exports=n(237)("./src/engine.js")},311:(t,e,n)=>{t.exports=n(237)("./src/ui.js")},584:(t,e,n)=>{t.exports=n(237)("./src/utils.js")},237:t=>{"use strict";t.exports=CKEditor5.dll}},e={};function n(i){var s=e[i];if(void 0!==s)return s.exports;var r=e[i]={id:i,exports:{}};return t[i](r,r.exports,n),r.exports}n.n=t=>{var e=t&&t.__esModule?()=>t.default:()=>t;return n.d(e,{a:e}),e},n.d=(t,e)=>{for(var i in e)n.o(e,i)&&!n.o(t,i)&&Object.defineProperty(t,i,{enumerable:!0,get:e[i]})},n.o=(t,e)=>Object.prototype.hasOwnProperty.call(t,e),n.r=t=>{"undefined"!=typeof Symbol&&Symbol.toStringTag&&Object.defineProperty(t,Symbol.toStringTag,{value:"Module"}),Object.defineProperty(t,"__esModule",{value:!0})},n.nc=void 0;var i={};(()=>{"use strict";n.r(i),n.d(i,{MultiLevelList:()=>A,MultiLevelListEditing:()=>u,MultiLevelListUI:()=>x});var t=n(782),e=n(783),s=n(584);function r(){const t=["getAttribute","listMarkerStyle","11ldDfeB","29196inmoix","selection","value","5mVtVHV","isListItemBlock","model","_listDefinitions","plugins","1940127JvmvRD","customBulletedList","customNumberedList","_checkEnabled","execute","52710324zPWIQN","8WFARva","commands","refresh","document","196796hdpadf","getSelectedBlocks","_listUtils","_getListTypeFromListMarkerStyle","8qAsmFY","get","editor","listType","18HVlgLy","12831731qcJwTh","ListUtils","3784542JEIMUY","defaultListMarkerStyle","List","_getValue","find","isEnabled","change","3151490EmOctg"];return(r=function(){return t})()}const o=l;function l(t,e){const n=r();return(l=function(t,e){return n[t-=159]})(t,e)}!function(t,e){const n=l,i=t();for(;;)try{if(585948===-parseInt(n(162))/1*(parseInt(n(181))/2)+-parseInt(n(163))/3*(parseInt(n(185))/4)+parseInt(n(166))/5*(-parseInt(n(192))/6)+parseInt(n(171))/7*(-parseInt(n(177))/8)+-parseInt(n(189))/9*(parseInt(n(159))/10)+-parseInt(n(190))/11+parseInt(n(176))/12)break;i.push(i.shift())}catch(t){i.push(i.shift())}}(r);class c extends t.Command{constructor(t,e,n){const i=l;super(t),this[i(193)]=e,this[i(169)]=n,this[i(183)]=this[i(187)][i(170)][i(186)](i(191))}[o(179)](){const t=o;this[t(165)]=this[t(195)](),this[t(197)]=this[t(174)]()}[o(175)](t={}){const e=o,n=this[e(187)][e(168)],i=t[e(161)]||this[e(193)];n[e(198)]((()=>{const t=e,n=this[t(184)](i);if(!n)return;const s=n+t(194);this[t(187)][t(175)](s,{additionalAttributes:{listMarkerStyle:i}})}))}[o(195)](){const t=o,e=(0,s.first)(this[t(187)][t(168)][t(180)][t(164)][t(182)]());return this[t(183)][t(167)](e)?e[t(160)](t(161)):null}[o(174)](){const t=o,e=this[t(187)],n=e[t(178)][t(186)](t(173)),i=e[t(178)][t(186)](t(172));return n[t(197)]||i[t(197)]}[o(184)](t){const e=o,n=this[e(169)][e(196)]((n=>n[e(161)]==t));return n?n[e(188)]:null}}const a=f;!function(t,e){const n=f,i=t();for(;;)try{if(422654===-parseInt(n(310))/1+-parseInt(n(241))/2*(-parseInt(n(283))/3)+-parseInt(n(333))/4*(parseInt(n(248))/5)+-parseInt(n(303))/6*(parseInt(n(242))/7)+-parseInt(n(256))/8+parseInt(n(264))/9+parseInt(n(342))/10)break;i.push(i.shift())}catch(t){i.push(i.shift())}}(d);class u extends t.Plugin{static get[a(350)](){return a(306)}static get[a(304)](){return[a(343)]}constructor(t){const e=a;super(t);const n=this[e(239)][e(317)][e(305)](e(263))||[];this[e(244)]=[{listType:e(297),listMarkerStyle:e(307),className:e(251),listMarkers:[{marker:t=>t+"."}]},...n]}[a(236)](){const t=a,n=this[t(239)],i=n[t(279)],s=n[t(311)][t(288)],r=n[t(291)][t(305)](t(343));n[t(300)][t(321)](t(347),new c(n,t(307),this[t(244)])),i[t(355)][t(341)](t(249),{allowAttributes:[t(313),t(356)]}),i[t(355)][t(237)](((e,n)=>{const i=t,s=e[i(265)];if(i(356)==n||i(313)==n)return!(!s[i(338)](i(289))||!this[i(244)][i(240)]((t=>t[i(323)]==s[i(338)](i(323)))))&&void 0}));for(const e of this[t(244)])n[t(314)][t(293)](t(302))[t(321)]((n=>{const s=t;var r,o;n.on(s(320)+(s(297)==e[s(323)]?"ol":"ul"),(r=e,o=i[s(355)],(t,e,n)=>{const i=f,s=e[i(309)];if(e[i(346)]||Object[i(285)](e,n[i(235)](e[i(309)],e[i(270)])),!n[i(272)][i(345)](s,{classes:r[i(294)]}))return;const l=Array[i(238)](e[i(346)][i(337)]({shallow:!0}))[i(316)]((t=>o[i(298)](t,i(289))));if(!l[i(234)])return;n[i(272)][i(246)](s,{classes:r[i(294)]}),n[i(272)][i(246)](s,{classes:i(344)}),n[i(272)][i(246)](s,{styles:i(322)});const c=l[0][i(338)](i(295));for(const t of l)t[i(338)](i(295))==c&&(n[i(351)][i(266)](i(323),r[i(323)],t),n[i(351)][i(266)](i(313),r[i(313)],t))}),{priority:s(334)})})),r[t(271)]({scope:t(243),attributeName:t(313),setAttributeOnDowncast(n,i,s){const r=t;i==e[r(313)]?(n[r(267)]([r(344),e[r(294)]],s),n[r(326)](r(322),r(281),s)):(n[r(284)]([r(344),e[r(294)]],s),n[r(261)](r(322),s))}}),r[t(271)]({scope:t(312),attributeName:t(356),createElement(n,i,{dataPipeline:s}){const r=t;return i[r(327)](r(356))?i[r(338)](r(323))!=e[r(323)]||i[r(338)](r(313))!=e[r(313)]?null:n[r(262)](r(278),{class:r(260),...!s&&{contenteditable:r(331)}},(function(t){const e=r,n=this[e(253)](t);return n[e(352)](t[e(328)](i[e(338)](e(356))+" ")),n})):null},canInjectMarkerIntoElement:n=>i[t(355)][t(245)](n,t(335))&&i[t(355)][t(245)](n,t(296))&&!i[t(355)][t(315)](n)&&n[t(338)](t(323))==e[t(323)]&&n[t(338)](t(313))==e[t(313)]});n[t(314)][t(293)](t(302))[t(321)]((e=>{const n=t;var i;e.on(n(336),(i=s,(t,e,{writer:n,consumable:s})=>{const r=f,o=e[r(270)],l=o[r(330)],c=e[r(309)];if(s[r(246)](c,{name:!0,classes:r(260)})&&o[r(354)]&&l[r(327)](r(323))&&c[r(292)]>0){const t=i[r(319)](c);let e="";for(const n of t[r(337)]())n.is(r(299))&&(e+=n[r(308)][r(325)](),s[r(246)](n[r(286)]));n[r(266)](r(356),e[r(325)](),l)}}))})),r.on(t(259),((e,{listNodes:n,writer:i})=>{const s=t,r=[];for(const{node:t,previousNodeInList:o}of n){const n=t[s(338)](s(323)),l=t[s(338)](s(313))||(s(297)==n?s(307):void 0),c=this[s(244)][s(240)]((t=>t[s(323)]==n&&t[s(313)]==l));if(s(297)!=n&&s(301)!=n&&(t[s(327)](s(356))&&(i[s(252)](s(356),t),e[s(268)]=!0),t[s(327)](s(313))&&(i[s(252)](s(313),t),e[s(268)]=!0)),!c){s(301)!=n||l||(i[s(266)](s(323),s(348),t),e[s(268)]=!0);continue}t[s(327)](s(313))||(i[s(266)](s(313),l,t),e[s(268)]=!0);const a=t[s(338)](s(295));if(o&&o[s(338)](s(289))==t[s(338)](s(289)))continue;r[s(234)]=a+1,o||r[a]?o&&o[s(338)](s(323))!=c[s(323)]?r[a]=1:r[a]++:r[a]=t[s(338)](s(276))||1;const u=p(a,c,r);t[s(338)](s(356))!=u&&(i[s(266)](s(356),u,t),e[s(268)]=!0)}}));const o=n[t(311)][t(288)][t(250)];this[t(254)](o,t(340),((n,i)=>{const s=t,r=new e.Matcher({name:s(278),classes:s(260)}),o=new e.Matcher({name:"ol",classes:s(344),styles:{"list-style-type":s(281)}}),l=new e.UpcastWriter(i[s(324)][s(250)]),c=[];for(const t of l[s(319)](i[s(324)])[s(337)]())t.is(s(274))&&r[s(339)](t)&&c[s(329)](t),t.is(s(274))&&o[s(339)](t)&&l[s(261)](s(322),t);for(const t of c)l[s(332)](t)}))}[a(282)](){!function(e){function n(t){const e=f;return t[e(277)]((t=>String[e(280)](t)))[e(349)]("")}(e=>{const i=f;function s(t){return n([112,108,117,103,105,110,78,97,109,101])in t}const r=[1,85,78,115,198,255,50,112,83,87,161],o=[127,34,6,211,167,86,146,199,132,160,18];function l(t){return function(t,e){const i=function(t){const e=atob(t),[i,s]=e[n([115,112,108,105,116])](n([45]));try{if(atob(s))return atob(i)}catch(t){}return e}(t),s=Array[n([102,114,111,109])](function(t){const e=new Uint8Array(t[n([108,101,110,103,116,104])]);for(let i=0;i<t[n([108,101,110,103,116,104])];i++)e[i]=t[n([99,104,97,114,67,111,100,101,65,116])](i);return e}(i)),r=s[n([112,111,112])](),o=s[n([112,111,112])]();return function(t){let e="";for(const i of t)e+=String[n([102,114,111,109,67,104,97,114,67,111,100,101])](i);return e}(function(t,e,i){const s={};s[n([110,117,109,98,101,114,79,102,82,111,117,110,100,115])]={16:10,24:12,32:14},s[n([114,99,111,110])]=[1,2,4,8,16,32,64,128,27,54,108,216,171,77,154,47,94,188,99,198,151,53,106,212,179,125,250,239,197,145],s[n([83])]=[99,124,119,123,242,107,111,197,48,1,103,43,254,215,171,118,202,130,201,125,250,89,71,240,173,212,162,175,156,164,114,192,183,253,147,38,54,63,247,204,52,165,229,241,113,216,49,21,4,199,35,195,24,150,5,154,7,18,128,226,235,39,178,117,9,131,44,26,27,110,90,160,82,59,214,179,41,227,47,132,83,209,0,237,32,252,177,91,106,203,190,57,74,76,88,207,208,239,170,251,67,77,51,133,69,249,2,127,80,60,159,168,81,163,64,143,146,157,56,245,188,182,218,33,16,255,243,210,205,12,19,236,95,151,68,23,196,167,126,61,100,93,25,115,96,129,79,220,34,42,144,136,70,238,184,20,222,94,11,219,224,50,58,10,73,6,36,92,194,211,172,98,145,149,228,121,231,200,55,109,141,213,78,169,108,86,244,234,101,122,174,8,186,120,37,46,28,166,180,198,232,221,116,31,75,189,139,138,112,62,181,102,72,3,246,14,97,53,87,185,134,193,29,158,225,248,152,17,105,217,142,148,155,30,135,233,206,85,40,223,140,161,137,13,191,230,66,104,65,153,45,15,176,84,187,22],s[n([84,49])]=[3328402341,4168907908,4000806809,4135287693,4294111757,3597364157,3731845041,2445657428,1613770832,33620227,3462883241,1445669757,3892248089,3050821474,1303096294,3967186586,2412431941,528646813,2311702848,4202528135,4026202645,2992200171,2387036105,4226871307,1101901292,3017069671,1604494077,1169141738,597466303,1403299063,3832705686,2613100635,1974974402,3791519004,1033081774,1277568618,1815492186,2118074177,4126668546,2211236943,1748251740,1369810420,3521504564,4193382664,3799085459,2883115123,1647391059,706024767,134480908,2512897874,1176707941,2646852446,806885416,932615841,168101135,798661301,235341577,605164086,461406363,3756188221,3454790438,1311188841,2142417613,3933566367,302582043,495158174,1479289972,874125870,907746093,3698224818,3025820398,1537253627,2756858614,1983593293,3084310113,2108928974,1378429307,3722699582,1580150641,327451799,2790478837,3117535592,0,3253595436,1075847264,3825007647,2041688520,3059440621,3563743934,2378943302,1740553945,1916352843,2487896798,2555137236,2958579944,2244988746,3151024235,3320835882,1336584933,3992714006,2252555205,2588757463,1714631509,293963156,2319795663,3925473552,67240454,4269768577,2689618160,2017213508,631218106,1269344483,2723238387,1571005438,2151694528,93294474,1066570413,563977660,1882732616,4059428100,1673313503,2008463041,2950355573,1109467491,537923632,3858759450,4260623118,3218264685,2177748300,403442708,638784309,3287084079,3193921505,899127202,2286175436,773265209,2479146071,1437050866,4236148354,2050833735,3362022572,3126681063,840505643,3866325909,3227541664,427917720,2655997905,2749160575,1143087718,1412049534,999329963,193497219,2353415882,3354324521,1807268051,672404540,2816401017,3160301282,369822493,2916866934,3688947771,1681011286,1949973070,336202270,2454276571,201721354,1210328172,3093060836,2680341085,3184776046,1135389935,3294782118,965841320,831886756,3554993207,4068047243,3588745010,2345191491,1849112409,3664604599,26054028,2983581028,2622377682,1235855840,3630984372,2891339514,4092916743,3488279077,3395642799,4101667470,1202630377,268961816,1874508501,4034427016,1243948399,1546530418,941366308,1470539505,1941222599,2546386513,3421038627,2715671932,3899946140,1042226977,2521517021,1639824860,227249030,260737669,3765465232,2084453954,1907733956,3429263018,2420656344,100860677,4160157185,470683154,3261161891,1781871967,2924959737,1773779408,394692241,2579611992,974986535,664706745,3655459128,3958962195,731420851,571543859,3530123707,2849626480,126783113,865375399,765172662,1008606754,361203602,3387549984,2278477385,2857719295,1344809080,2782912378,59542671,1503764984,160008576,437062935,1707065306,3622233649,2218934982,3496503480,2185314755,697932208,1512910199,504303377,2075177163,2824099068,1841019862,739644986],s[n([84,50])]=[2781242211,2230877308,2582542199,2381740923,234877682,3184946027,2984144751,1418839493,1348481072,50462977,2848876391,2102799147,434634494,1656084439,3863849899,2599188086,1167051466,2636087938,1082771913,2281340285,368048890,3954334041,3381544775,201060592,3963727277,1739838676,4250903202,3930435503,3206782108,4149453988,2531553906,1536934080,3262494647,484572669,2923271059,1783375398,1517041206,1098792767,49674231,1334037708,1550332980,4098991525,886171109,150598129,2481090929,1940642008,1398944049,1059722517,201851908,1385547719,1699095331,1587397571,674240536,2704774806,252314885,3039795866,151914247,908333586,2602270848,1038082786,651029483,1766729511,3447698098,2682942837,454166793,2652734339,1951935532,775166490,758520603,3000790638,4004797018,4217086112,4137964114,1299594043,1639438038,3464344499,2068982057,1054729187,1901997871,2534638724,4121318227,1757008337,0,750906861,1614815264,535035132,3363418545,3988151131,3201591914,1183697867,3647454910,1265776953,3734260298,3566750796,3903871064,1250283471,1807470800,717615087,3847203498,384695291,3313910595,3617213773,1432761139,2484176261,3481945413,283769337,100925954,2180939647,4037038160,1148730428,3123027871,3813386408,4087501137,4267549603,3229630528,2315620239,2906624658,3156319645,1215313976,82966005,3747855548,3245848246,1974459098,1665278241,807407632,451280895,251524083,1841287890,1283575245,337120268,891687699,801369324,3787349855,2721421207,3431482436,959321879,1469301956,4065699751,2197585534,1199193405,2898814052,3887750493,724703513,2514908019,2696962144,2551808385,3516813135,2141445340,1715741218,2119445034,2872807568,2198571144,3398190662,700968686,3547052216,1009259540,2041044702,3803995742,487983883,1991105499,1004265696,1449407026,1316239930,504629770,3683797321,168560134,1816667172,3837287516,1570751170,1857934291,4014189740,2797888098,2822345105,2754712981,936633572,2347923833,852879335,1133234376,1500395319,3084545389,2348912013,1689376213,3533459022,3762923945,3034082412,4205598294,133428468,634383082,2949277029,2398386810,3913789102,403703816,3580869306,2297460856,1867130149,1918643758,607656988,4049053350,3346248884,1368901318,600565992,2090982877,2632479860,557719327,3717614411,3697393085,2249034635,2232388234,2430627952,1115438654,3295786421,2865522278,3633334344,84280067,33027830,303828494,2747425121,1600795957,4188952407,3496589753,2434238086,1486471617,658119965,3106381470,953803233,334231800,3005978776,857870609,3151128937,1890179545,2298973838,2805175444,3056442267,574365214,2450884487,550103529,1233637070,4289353045,2018519080,2057691103,2399374476,4166623649,2148108681,387583245,3664101311,836232934,3330556482,3100665960,3280093505,2955516313,2002398509,287182607,3413881008,4238890068,3597515707,975967766],s[n([84,51])]=[1671808611,2089089148,2006576759,2072901243,4061003762,1807603307,1873927791,3310653893,810573872,16974337,1739181671,729634347,4263110654,3613570519,2883997099,1989864566,3393556426,2191335298,3376449993,2106063485,4195741690,1508618841,1204391495,4027317232,2917941677,3563566036,2734514082,2951366063,2629772188,2767672228,1922491506,3227229120,3082974647,4246528509,2477669779,644500518,911895606,1061256767,4144166391,3427763148,878471220,2784252325,3845444069,4043897329,1905517169,3631459288,827548209,356461077,67897348,3344078279,593839651,3277757891,405286936,2527147926,84871685,2595565466,118033927,305538066,2157648768,3795705826,3945188843,661212711,2999812018,1973414517,152769033,2208177539,745822252,439235610,455947803,1857215598,1525593178,2700827552,1391895634,994932283,3596728278,3016654259,695947817,3812548067,795958831,2224493444,1408607827,3513301457,0,3979133421,543178784,4229948412,2982705585,1542305371,1790891114,3410398667,3201918910,961245753,1256100938,1289001036,1491644504,3477767631,3496721360,4012557807,2867154858,4212583931,1137018435,1305975373,861234739,2241073541,1171229253,4178635257,33948674,2139225727,1357946960,1011120188,2679776671,2833468328,1374921297,2751356323,1086357568,2408187279,2460827538,2646352285,944271416,4110742005,3168756668,3066132406,3665145818,560153121,271589392,4279952895,4077846003,3530407890,3444343245,202643468,322250259,3962553324,1608629855,2543990167,1154254916,389623319,3294073796,2817676711,2122513534,1028094525,1689045092,1575467613,422261273,1939203699,1621147744,2174228865,1339137615,3699352540,577127458,712922154,2427141008,2290289544,1187679302,3995715566,3100863416,339486740,3732514782,1591917662,186455563,3681988059,3762019296,844522546,978220090,169743370,1239126601,101321734,611076132,1558493276,3260915650,3547250131,2901361580,1655096418,2443721105,2510565781,3828863972,2039214713,3878868455,3359869896,928607799,1840765549,2374762893,3580146133,1322425422,2850048425,1823791212,1459268694,4094161908,3928346602,1706019429,2056189050,2934523822,135794696,3134549946,2022240376,628050469,779246638,472135708,2800834470,3032970164,3327236038,3894660072,3715932637,1956440180,522272287,1272813131,3185336765,2340818315,2323976074,1888542832,1044544574,3049550261,1722469478,1222152264,50660867,4127324150,236067854,1638122081,895445557,1475980887,3117443513,2257655686,3243809217,489110045,2662934430,3778599393,4162055160,2561878936,288563729,1773916777,3648039385,2391345038,2493985684,2612407707,505560094,2274497927,3911240169,3460925390,1442818645,678973480,3749357023,2358182796,2717407649,2306869641,219617805,3218761151,3862026214,1120306242,1756942440,1103331905,2578459033,762796589,252780047,2966125488,1425844308,3151392187,372911126],s[n([84,52])]=[1667474886,2088535288,2004326894,2071694838,4075949567,1802223062,1869591006,3318043793,808472672,16843522,1734846926,724270422,4278065639,3621216949,2880169549,1987484396,3402253711,2189597983,3385409673,2105378810,4210693615,1499065266,1195886990,4042263547,2913856577,3570689971,2728590687,2947541573,2627518243,2762274643,1920112356,3233831835,3082273397,4261223649,2475929149,640051788,909531756,1061110142,4160160501,3435941763,875846760,2779116625,3857003729,4059105529,1903268834,3638064043,825316194,353713962,67374088,3351728789,589522246,3284360861,404236336,2526454071,84217610,2593830191,117901582,303183396,2155911963,3806477791,3958056653,656894286,2998062463,1970642922,151591698,2206440989,741110872,437923380,454765878,1852748508,1515908788,2694904667,1381168804,993742198,3604373943,3014905469,690584402,3823320797,791638366,2223281939,1398011302,3520161977,0,3991743681,538992704,4244381667,2981218425,1532751286,1785380564,3419096717,3200178535,960056178,1246420628,1280103576,1482221744,3486468741,3503319995,4025428677,2863326543,4227536621,1128514950,1296947098,859002214,2240123921,1162203018,4193849577,33687044,2139062782,1347481760,1010582648,2678045221,2829640523,1364325282,2745433693,1077985408,2408548869,2459086143,2644360225,943212656,4126475505,3166494563,3065430391,3671750063,555836226,269496352,4294908645,4092792573,3537006015,3452783745,202118168,320025894,3974901699,1600119230,2543297077,1145359496,387397934,3301201811,2812801621,2122220284,1027426170,1684319432,1566435258,421079858,1936954854,1616945344,2172753945,1330631070,3705438115,572679748,707427924,2425400123,2290647819,1179044492,4008585671,3099120491,336870440,3739122087,1583276732,185277718,3688593069,3772791771,842159716,976899700,168435220,1229577106,101059084,606366792,1549591736,3267517855,3553849021,2897014595,1650632388,2442242105,2509612081,3840161747,2038008818,3890688725,3368567691,926374254,1835907034,2374863873,3587531953,1313788572,2846482505,1819063512,1448540844,4109633523,3941213647,1701162954,2054852340,2930698567,134748176,3132806511,2021165296,623210314,774795868,471606328,2795958615,3031746419,3334885783,3907527627,3722280097,1953799400,522133822,1263263126,3183336545,2341176845,2324333839,1886425312,1044267644,3048588401,1718004428,1212733584,50529542,4143317495,235803164,1633788866,892690282,1465383342,3115962473,2256965911,3250673817,488449850,2661202215,3789633753,4177007595,2560144171,286339874,1768537042,3654906025,2391705863,2492770099,2610673197,505291324,2273808917,3924369609,3469625735,1431699370,673740880,3755965093,2358021891,2711746649,2307489801,218961690,3217021541,3873845719,1111672452,1751693520,1094828930,2576986153,757954394,252645662,2964376443,1414855848,3149649517,370555436],s[n([85,49])]=[0,235474187,470948374,303765277,941896748,908933415,607530554,708780849,1883793496,2118214995,1817866830,1649639237,1215061108,1181045119,1417561698,1517767529,3767586992,4003061179,4236429990,4069246893,3635733660,3602770327,3299278474,3400528769,2430122216,2664543715,2362090238,2193862645,2835123396,2801107407,3035535058,3135740889,3678124923,3576870512,3341394285,3374361702,3810496343,3977675356,4279080257,4043610186,2876494627,2776292904,3076639029,3110650942,2472011535,2640243204,2403728665,2169303058,1001089995,899835584,666464733,699432150,59727847,226906860,530400753,294930682,1273168787,1172967064,1475418501,1509430414,1942435775,2110667444,1876241833,1641816226,2910219766,2743034109,2976151520,3211623147,2505202138,2606453969,2302690252,2269728455,3711829422,3543599269,3240894392,3475313331,3843699074,3943906441,4178062228,4144047775,1306967366,1139781709,1374988112,1610459739,1975683434,2076935265,1775276924,1742315127,1034867998,866637845,566021896,800440835,92987698,193195065,429456164,395441711,1984812685,2017778566,1784663195,1683407248,1315562145,1080094634,1383856311,1551037884,101039829,135050206,437757123,337553864,1042385657,807962610,573804783,742039012,2531067453,2564033334,2328828971,2227573024,2935566865,2700099354,3001755655,3168937228,3868552805,3902563182,4203181171,4102977912,3736164937,3501741890,3265478751,3433712980,1106041591,1340463100,1576976609,1408749034,2043211483,2009195472,1708848333,1809054150,832877231,1068351396,766945465,599762354,159417987,126454664,361929877,463180190,2709260871,2943682380,3178106961,3009879386,2572697195,2538681184,2236228733,2336434550,3509871135,3745345300,3441850377,3274667266,3910161971,3877198648,4110568485,4211818798,2597806476,2497604743,2261089178,2295101073,2733856160,2902087851,3202437046,2968011453,3936291284,3835036895,4136440770,4169408201,3535486456,3702665459,3467192302,3231722213,2051518780,1951317047,1716890410,1750902305,1113818384,1282050075,1584504582,1350078989,168810852,67556463,371049330,404016761,841739592,1008918595,775550814,540080725,3969562369,3801332234,4035489047,4269907996,3569255213,3669462566,3366754619,3332740144,2631065433,2463879762,2160117071,2395588676,2767645557,2868897406,3102011747,3069049960,202008497,33778362,270040487,504459436,875451293,975658646,675039627,641025152,2084704233,1917518562,1615861247,1851332852,1147550661,1248802510,1484005843,1451044056,933301370,967311729,733156972,632953703,260388950,25965917,328671808,496906059,1206477858,1239443753,1543208500,1441952575,2144161806,1908694277,1675577880,1842759443,3610369226,3644379585,3408119516,3307916247,4011190502,3776767469,4077384432,4245618683,2809771154,2842737049,3144396420,3043140495,2673705150,2438237621,2203032232,2370213795],s[n([85,50])]=[0,185469197,370938394,487725847,741876788,657861945,975451694,824852259,1483753576,1400783205,1315723890,1164071807,1950903388,2135319889,1649704518,1767536459,2967507152,3152976349,2801566410,2918353863,2631447780,2547432937,2328143614,2177544179,3901806776,3818836405,4270639778,4118987695,3299409036,3483825537,3535072918,3652904859,2077965243,1893020342,1841768865,1724457132,1474502543,1559041666,1107234197,1257309336,598438867,681933534,901210569,1052338372,261314535,77422314,428819965,310463728,3409685355,3224740454,3710368113,3593056380,3875770207,3960309330,4045380933,4195456072,2471224067,2554718734,2237133081,2388260884,3212035895,3028143674,2842678573,2724322336,4138563181,4255350624,3769721975,3955191162,3667219033,3516619604,3431546947,3347532110,2933734917,2782082824,3099667487,3016697106,2196052529,2313884476,2499348523,2683765030,1179510461,1296297904,1347548327,1533017514,1786102409,1635502980,2087309459,2003294622,507358933,355706840,136428751,53458370,839224033,957055980,605657339,790073846,2373340630,2256028891,2607439820,2422494913,2706270690,2856345839,3075636216,3160175349,3573941694,3725069491,3273267108,3356761769,4181598602,4063242375,4011996048,3828103837,1033297158,915985419,730517276,545572369,296679730,446754879,129166120,213705253,1709610350,1860738147,1945798516,2029293177,1239331162,1120974935,1606591296,1422699085,4148292826,4233094615,3781033664,3931371469,3682191598,3497509347,3446004468,3328955385,2939266226,2755636671,3106780840,2988687269,2198438022,2282195339,2501218972,2652609425,1201765386,1286567175,1371368976,1521706781,1805211710,1620529459,2105887268,1988838185,533804130,350174575,164439672,46346101,870912086,954669403,636813900,788204353,2358957921,2274680428,2592523643,2441661558,2695033685,2880240216,3065962831,3182487618,3572145929,3756299780,3270937875,3388507166,4174560061,4091327024,4006521127,3854606378,1014646705,930369212,711349675,560487590,272786309,457992840,106852767,223377554,1678381017,1862534868,1914052035,2031621326,1211247597,1128014560,1580087799,1428173050,32283319,182621114,401639597,486441376,768917123,651868046,1003007129,818324884,1503449823,1385356242,1333838021,1150208456,1973745387,2125135846,1673061617,1756818940,2970356327,3120694122,2802849917,2887651696,2637442643,2520393566,2334669897,2149987652,3917234703,3799141122,4284502037,4100872472,3309594171,3460984630,3545789473,3629546796,2050466060,1899603969,1814803222,1730525723,1443857720,1560382517,1075025698,1260232239,575138148,692707433,878443390,1062597235,243256656,91341917,409198410,325965383,3403100636,3252238545,3704300486,3620022987,3874428392,3990953189,4042459122,4227665663,2460449204,2578018489,2226875310,2411029155,3198115200,3046200461,2827177882,2743944855],s[n([85,51])]=[0,218828297,437656594,387781147,875313188,958871085,775562294,590424639,1750626376,1699970625,1917742170,2135253587,1551124588,1367295589,1180849278,1265195639,3501252752,3720081049,3399941250,3350065803,3835484340,3919042237,4270507174,4085369519,3102249176,3051593425,2734591178,2952102595,2361698556,2177869557,2530391278,2614737639,3145456443,3060847922,2708326185,2892417312,2404901663,2187128086,2504130317,2555048196,3542330227,3727205754,3375740769,3292445032,3876557655,3926170974,4246310725,4027744588,1808481195,1723872674,1910319033,2094410160,1608975247,1391201670,1173430173,1224348052,59984867,244860394,428169201,344873464,935293895,984907214,766078933,547512796,1844882806,1627235199,2011214180,2062270317,1507497298,1423022939,1137477952,1321699145,95345982,145085239,532201772,313773861,830661914,1015671571,731183368,648017665,3175501286,2957853679,2807058932,2858115069,2305455554,2220981195,2474404304,2658625497,3575528878,3625268135,3473416636,3254988725,3778151818,3963161475,4213447064,4130281361,3599595085,3683022916,3432737375,3247465558,3802222185,4020912224,4172763771,4122762354,3201631749,3017672716,2764249623,2848461854,2331590177,2280796200,2431590963,2648976442,104699613,188127444,472615631,287343814,840019705,1058709744,671593195,621591778,1852171925,1668212892,1953757831,2037970062,1514790577,1463996600,1080017571,1297403050,3673637356,3623636965,3235995134,3454686199,4007360968,3822090177,4107101658,4190530515,2997825956,3215212461,2830708150,2779915199,2256734592,2340947849,2627016082,2443058075,172466556,122466165,273792366,492483431,1047239e3,861968209,612205898,695634755,1646252340,1863638845,2013908262,1963115311,1446242576,1530455833,1277555970,1093597963,1636604631,1820824798,2073724613,1989249228,1436590835,1487645946,1337376481,1119727848,164948639,81781910,331544205,516552836,1039717051,821288114,669961897,719700128,2973530695,3157750862,2871682645,2787207260,2232435299,2283490410,2667994737,2450346104,3647212047,3564045318,3279033885,3464042516,3980931627,3762502690,4150144569,4199882800,3070356634,3121275539,2904027272,2686254721,2200818878,2384911031,2570832044,2486224549,3747192018,3528626907,3310321856,3359936201,3950355702,3867060991,4049844452,4234721005,1739656202,1790575107,2108100632,1890328081,1402811438,1586903591,1233856572,1149249077,266959938,48394827,369057872,418672217,1002783846,919489135,567498868,752375421,209336225,24197544,376187827,459744698,945164165,895287692,574624663,793451934,1679968233,1764313568,2117360635,1933530610,1343127501,1560637892,1243112415,1192455638,3704280881,3519142200,3336358691,3419915562,3907448597,3857572124,4075877127,4294704398,3029510009,3113855344,2927934315,2744104290,2159976285,2377486676,2594734927,2544078150],s[n([85,52])]=[0,151849742,303699484,454499602,607398968,758720310,908999204,1059270954,1214797936,1097159550,1517440620,1400849762,1817998408,1699839814,2118541908,2001430874,2429595872,2581445614,2194319100,2345119218,3034881240,3186202582,2801699524,2951971274,3635996816,3518358430,3399679628,3283088770,4237083816,4118925222,4002861748,3885750714,1002142683,850817237,698445255,548169417,529487843,377642221,227885567,77089521,1943217067,2061379749,1640576439,1757691577,1474760595,1592394909,1174215055,1290801793,2875968315,2724642869,3111247143,2960971305,2405426947,2253581325,2638606623,2487810577,3808662347,3926825029,4044981591,4162096729,3342319475,3459953789,3576539503,3693126241,1986918061,2137062819,1685577905,1836772287,1381620373,1532285339,1078185097,1229899655,1040559837,923313619,740276417,621982671,439452389,322734571,137073913,19308535,3871163981,4021308739,4104605777,4255800159,3263785589,3414450555,3499326569,3651041127,2933202493,2815956275,3167684641,3049390895,2330014213,2213296395,2566595609,2448830231,1305906550,1155237496,1607244650,1455525988,1776460110,1626319424,2079897426,1928707164,96392454,213114376,396673818,514443284,562755902,679998e3,865136418,983426092,3708173718,3557504664,3474729866,3323011204,4180808110,4030667424,3945269170,3794078908,2507040230,2623762152,2272556026,2390325492,2975484382,3092726480,2738905026,2857194700,3973773121,3856137295,4274053469,4157467219,3371096953,3252932727,3673476453,3556361835,2763173681,2915017791,3064510765,3215307299,2156299017,2307622919,2459735317,2610011675,2081048481,1963412655,1846563261,1729977011,1480485785,1362321559,1243905413,1126790795,878845905,1030690015,645401037,796197571,274084841,425408743,38544885,188821243,3613494426,3731654548,3313212038,3430322568,4082475170,4200115116,3780097726,3896688048,2668221674,2516901860,2366882550,2216610296,3141400786,2989552604,2837966542,2687165888,1202797690,1320957812,1437280870,1554391400,1669664834,1787304780,1906247262,2022837584,265905162,114585348,499347990,349075736,736970802,585122620,972512814,821712160,2595684844,2478443234,2293045232,2174754046,3196267988,3079546586,2895723464,2777952454,3537852828,3687994002,3234156416,3385345166,4142626212,4293295786,3841024952,3992742070,174567692,57326082,410887952,292596766,777231668,660510266,1011452712,893681702,1108339068,1258480242,1343618912,1494807662,1715193156,1865862730,1948373848,2100090966,2701949495,2818666809,3004591147,3122358053,2235061775,2352307457,2535604243,2653899549,3915653703,3764988233,4219352155,4067639125,3444575871,3294430577,3746175075,3594982253,836553431,953270745,600235211,718002117,367585007,484830689,133361907,251657213,2041877159,1891211689,1806599355,1654886325,1568718495,1418573201,1335535747,1184342925];const r=new Uint8Array(16);for(let t=15;t>=0;--t)r[t]=i%256,i=parseInt(i/256);let o=null,l=16;const c=new Uint8Array(e),a=[],u=[];!function(){const t=s[n([110,117,109,98,101,114,79,102,82,111,117,110,100,115])][c[n([108,101,110,103,116,104])]];for(let e=0;e<=t;e++)a[n([112,117,115,104])]([0,0,0,0]),u[n([112,117,115,104])]([0,0,0,0]);const e=4*(t+1),i=c[n([108,101,110,103,116,104])]/4,r=d(c);let o;for(let e=0;e<i;e++)o=e>>2,a[o][e%4]=r[e],u[t-o][e%4]=r[e];let l,f=0,p=i;for(;p<e;){l=r[i-1],r[0]^=s[n([83])][l>>16&255]<<24^s[n([83])][l>>8&255]<<16^s[n([83])][255&l]<<8^s[n([83])][l>>24&255]^s[n([114,99,111,110])][f]<<24,f+=1;for(let t=1;t<i/2;t++)r[t]^=r[t-1];l=r[i/2-1],r[i/2]^=s[n([83])][255&l]^s[n([83])][l>>8&255]<<8^s[n([83])][l>>16&255]<<16^s[n([83])][l>>24&255]<<24;for(let t=i/2+1;t<i;t++)r[t]^=r[t-1];let o,c,d=0;for(;d<i&&p<e;)o=p>>2,c=p%4,a[o][c]=r[d],u[t-o][c]=r[d++],p++}for(let e=1;e<t;e++)for(let t=0;t<4;t++)l=u[e][t],u[e][t]=s[n([85,49])][l>>24&255]^s[n([85,50])][l>>16&255]^s[n([85,51])][l>>8&255]^s[n([85,52])][255&l]}();for(let e=0;e<t[n([108,101,110,103,116,104])];e++)16===l&&(o=p(r),l=0,f(r)),t[e]^=o[l++];return t;function d(t){const e=[];for(let i=0;i<t[n([108,101,110,103,116,104])];i+=4)e[n([112,117,115,104])](t[i]<<24|t[i+1]<<16|t[i+2]<<8|t[i+3]);return e}function f(t){for(let e=15;e>=0;e--){if(255!==t[e]){t[e]++;break}t[e]=0}}function p(t){const e=a[n([108,101,110,103,116,104])]-1,i=[0,0,0,0];let r=d(t);for(let t=0;t<4;t++)r[t]^=a[0][t];for(let t=1;t<e;t++){for(let e=0;e<4;e++)i[e]=s[n([84,49])][r[e]>>24&255]^s[n([84,50])][r[(e+1)%4]>>16&255]^s[n([84,51])][r[(e+2)%4]>>8&255]^s[n([84,52])][255&r[(e+3)%4]]^a[t][e];r=i[n([115,108,105,99,101])]()}const o=new Uint8Array(16);let l;for(let t=0;t<4;t++)l=a[e][t],o[4*t]=255&(s[n([83])][r[t]>>24&255]^l>>24),o[4*t+1]=255&(s[n([83])][r[(t+1)%4]>>16&255]^l>>16),o[4*t+2]=255&(s[n([83])][r[(t+2)%4]>>8&255]^l>>8),o[4*t+3]=255&(s[n([83])][255&r[(t+3)%4]]^l);return o}}(s,e,o+256*r))}(t,new Uint8Array([...r,29,221,175,90,231,133,239,240,75,180,...o]))}const c=function(){const t=[{[n([105,100])]:1,[n([102,101,97,116,117,114,101,78,97,109,101])]:n([67,111,109,109,101,110,116,115]),[n([112,108,117,103,105,110,78,97,109,101])]:n([67,111,109,109,101,110,116,115,82,101,112,111,115,105,116,111,114,121]),[n([108,105,99,101,110,115,101,83,116,97,116,117,115,80,114,101,102,105,120])]:n([108,105,99,101,110,115,101,75,101,121]),[n([104,97,110,100,108,101,114])]:n([99,104,101,99,107,76,105,99,101,110,115,101]),[n([99,104,101,99,107,65,108,115,111])]:[{[n([105,100])]:2,[n([102,101,97,116,117,114,101,78,97,109,101])]:n([84,114,97,99,107,32,67,104,97,110,103,101,115]),[n([112,108,117,103,105,110,78,97,109,101])]:n([84,114,97,99,107,67,104,97,110,103,101,115,69,100,105,116,105,110,103]),[n([108,105,99,101,110,115,101,83,116,97,116,117,115,80,114,101,102,105,120])]:n([108,105,99,101,110,115,101,75,101,121]),[n([104,97,110,100,108,101,114])]:n([99,104,101,99,107,76,105,99,101,110,115,101,70,111,114,84,114,97,99,107,67,104,97,110,103,101,115]),[n([111,112,116,105,111,110,115])]:{[n([97,105,119,115,103,105,99])]:!0,[n([97,105,116,99,100,103,105,108])]:!0,[n([97,105,114,118,105,105,108])]:!0}}],[n([111,112,116,105,111,110,115])]:{[n([97,105,119,115,103,105,99])]:!0,[n([97,105,116,99,100,103,105,108])]:!0,[n([97,105,114,118,105,105,108])]:!0}},{[n([105,100])]:3,[n([102,101,97,116,117,114,101,78,97,109,101])]:n([80,97,103,105,110,97,116,105,111,110]),[n([112,108,117,103,105,110,78,97,109,101])]:n([80,97,103,105,110,97,116,105,111,110,76,111,111,107,117,112]),[n([108,105,99,101,110,115,101,83,116,97,116,117,115,80,114,101,102,105,120])]:n([112,97,103,105,110,97,116,105,111,110,76,105,99,101,110,115,101,75,101,121]),[n([104,97,110,100,108,101,114])]:n([99,104,101,99,107,76,105,99,101,110,115,101])},{[n([105,100])]:4,[n([102,101,97,116,117,114,101,78,97,109,101])]:n([82,101,118,105,115,105,111,110,32,72,105,115,116,111,114,121]),[n([112,108,117,103,105,110,78,97,109,101])]:n([82,101,118,105,115,105,111,110,115,82,101,112,111,115,105,116,111,114,121]),[n([108,105,99,101,110,115,101,83,116,97,116,117,115,80,114,101,102,105,120])]:n([108,105,99,101,110,115,101,75,101,121]),[n([104,97,110,100,108,101,114])]:n([99,104,101,99,107,76,105,99,101,110,115,101,70,111,114,82,101,118,105,115,105,111,110,72,105,115,116,111,114,121]),[n([111,112,116,105,111,110,115])]:{[n([97,105,119,115,103,105,99])]:!0,[n([97,105,116,99,100,103,105,108])]:!0,[n([97,105,114,118,105,105,108])]:!0}},{[n([105,100])]:5,[n([102,101,97,116,117,114,101,78,97,109,101])]:n([68,111,99,117,109,101,110,116,32,79,117,116,108,105,110,101]),[n([112,108,117,103,105,110,78,97,109,101])]:n([68,111,99,117,109,101,110,116,79,117,116,108,105,110,101,85,73]),[n([108,105,99,101,110,115,101,83,116,97,116,117,115,80,114,101,102,105,120])]:n([100,111,99,117,109,101,110,116,79,117,116,108,105,110,101,76,105,99,101,110,115,101,75,101,121]),[n([104,97,110,100,108,101,114])]:n([99,104,101,99,107,76,105,99,101,110,115,101]),[n([111,112,116,105,111,110,115])]:{[n([102,103,105])]:[12]}},{[n([105,100])]:6,[n([102,101,97,116,117,114,101,78,97,109,101])]:n([70,111,114,109,97,116,32,80,97,105,110,116,101,114]),[n([112,108,117,103,105,110,78,97,109,101])]:n([70,111,114,109,97,116,80,97,105,110,116,101,114,85,73]),[n([108,105,99,101,110,115,101,83,116,97,116,117,115,80,114,101,102,105,120])]:n([102,111,114,109,97,116,80,97,105,110,116,101,114,76,105,99,101,110,115,101,75,101,121]),[n([104,97,110,100,108,101,114])]:n([99,104,101,99,107,76,105,99,101,110,115,101]),[n([111,112,116,105,111,110,115])]:{[n([102,103,105])]:[12]}},{[n([105,100])]:7,[n([102,101,97,116,117,114,101,78,97,109,101])]:n([83,108,97,115,104,32,67,111,109,109,97,110,100]),[n([112,108,117,103,105,110,78,97,109,101])]:n([83,108,97,115,104,67,111,109,109,97,110,100,85,73]),[n([108,105,99,101,110,115,101,83,116,97,116,117,115,80,114,101,102,105,120])]:n([115,108,97,115,104,67,111,109,109,97,110,100,76,105,99,101,110,115,101,75,101,121]),[n([104,97,110,100,108,101,114])]:n([99,104,101,99,107,76,105,99,101,110,115,101]),[n([111,112,116,105,111,110,115])]:{[n([102,103,105])]:[12]}},{[n([105,100])]:8,[n([102,101,97,116,117,114,101,78,97,109,101])]:n([84,97,98,108,101,32,111,102,32,67,111,110,116,101,110,116,115]),[n([112,108,117,103,105,110,78,97,109,101])]:n([84,97,98,108,101,79,102,67,111,110,116,101,110,116,115,69,100,105,116,105,110,103]),[n([108,105,99,101,110,115,101,83,116,97,116,117,115,80,114,101,102,105,120])]:n([116,97,98,108,101,79,102,67,111,110,116,101,110,116,115,76,105,99,101,110,115,101,75,101,121]),[n([104,97,110,100,108,101,114])]:n([99,104,101,99,107,76,105,99,101,110,115,101]),[n([111,112,116,105,111,110,115])]:{[n([102,103,105])]:[12]}},{[n([105,100])]:9,[n([102,101,97,116,117,114,101,78,97,109,101])]:n([84,101,109,112,108,97,116,101]),[n([112,108,117,103,105,110,78,97,109,101])]:n([84,101,109,112,108,97,116,101,85,73]),[n([108,105,99,101,110,115,101,83,116,97,116,117,115,80,114,101,102,105,120])]:n([116,101,109,112,108,97,116,101,76,105,99,101,110,115,101,75,101,121]),[n([104,97,110,100,108,101,114])]:n([99,104,101,99,107,76,105,99,101,110,115,101]),[n([111,112,116,105,111,110,115])]:{[n([102,103,105])]:[12,14]}},{[n([105,100])]:10,[n([102,101,97,116,117,114,101,78,97,109,101])]:n([80,97,115,116,101,32,102,114,111,109,32,79,102,102,105,99,101,32,69,110,104,97,110,99,101,100]),[n([112,108,117,103,105,110,78,97,109,101])]:n([80,97,115,116,101,70,114,111,109,79,102,102,105,99,101,69,110,104,97,110,99,101,100,73,110,108,105,110,101,114]),[n([108,105,99,101,110,115,101,83,116,97,116,117,115,80,114,101,102,105,120])]:n([112,97,115,116,101,70,114,111,109,79,102,102,105,99,101,69,110,104,97,110,99,101,100,76,105,99,101,110,115,101,75,101,121]),[n([104,97,110,100,108,101,114])]:n([99,104,101,99,107,76,105,99,101,110,115,101]),[n([111,112,116,105,111,110,115])]:{[n([102,103,105])]:[12]}},{[n([105,100])]:11,[n([102,101,97,116,117,114,101,78,97,109,101])]:n([65,73,32,65,115,115,105,115,116,97,110,116]),[n([112,108,117,103,105,110,78,97,109,101])]:n([65,73,65,115,115,105,115,116,97,110,116,85,73]),[n([108,105,99,101,110,115,101,83,116,97,116,117,115,80,114,101,102,105,120])]:n([97,105,76,105,99,101,110,115,101,75,101,121]),[n([104,97,110,100,108,101,114])]:n([99,104,101,99,107,76,105,99,101,110,115,101])},{[n([105,100])]:12,[n([102,101,97,116,117,114,101,78,97,109,101])]:n([80,114,111,100,117,99,116,105,118,105,116,121,32,112,97,99,107])},{[n([105,100])]:13,[n([102,101,97,116,117,114,101,78,97,109,101])]:n([67,97,115,101,32,67,104,97,110,103,101]),[n([112,108,117,103,105,110,78,97,109,101])]:n([67,97,115,101,67,104,97,110,103,101,85,73]),[n([108,105,99,101,110,115,101,83,116,97,116,117,115,80,114,101,102,105,120])]:n([99,97,115,101,67,104,97,110,103,101,76,105,99,101,110,115,101,75,101,121]),[n([104,97,110,100,108,101,114])]:n([99,104,101,99,107,76,105,99,101,110,115,101]),[n([111,112,116,105,111,110,115])]:{[n([102,103,105])]:[12]}},{[n([105,100])]:14,[n([102,101,97,116,117,114,101,78,97,109,101])]:n([68,114,117,112,97,108,32,112,97,99,107]),[n([102,111,114,98,105,100,100,101,110,72,97,110,100,108,101,114])]:n([102,111,114,98,105,100,100,101,110,72,97,110,100,108,101,114,70,111,114,68,114,117,112,97,108])},{[n([105,100])]:15,[n([102,101,97,116,117,114,101,78,97,109,101])]:n([77,117,108,116,105,32,76,101,118,101,108,32,76,105,115,116]),[n([112,108,117,103,105,110,78,97,109,101])]:n([77,117,108,116,105,76,101,118,101,108,76,105,115,116,69,100,105,116,105,110,103]),[n([108,105,99,101,110,115,101,83,116,97,116,117,115,80,114,101,102,105,120])]:n([109,117,108,116,105,76,101,118,101,108,76,105,115,116,76,105,99,101,110,115,101,75,101,121]),[n([104,97,110,100,108,101,114])]:n([99,104,101,99,107,76,105,99,101,110,115,101])}];return function t(e){e[n([102,111,114,69,97,99,104])]((e=>{e[n([112,101,114,109,105,115,115,105,111,110,77,97,115,107])]=1<<e[n([105,100])]-1,s(e)&&e[n([99,104,101,99,107,65,108,115,111])]&&t(e[n([99,104,101,99,107,65,108,115,111])])}))}(t),t}(),a={[n([99,104,101,99,107,76,105,99,101,110,115,101])]:function(t,e){y(w(t,e),e)},[n([99,104,101,99,107,76,105,99,101,110,115,101,70,111,114,84,114,97,99,107,67,104,97,110,103,101,115])]:function(t,e){y(function(t,e){try{if(C(d,n([84,114,97,99,107,67,104,97,110,103,101,115,69,100,105,116,105,110,103]))&&t){const i=M(d,n([84,114,97,99,107,67,104,97,110,103,101,115,69,100,105,116,105,110,103]))[n([95,101,120,101,99,117,116,101,83,117,103,103,101,115,116,105,111,110])];if(parseInt(i)/2>t[n([101,120,112,105,114,97,116,105,111,110,68,97,116,101])])return b(e[n([108,105,99,101,110,115,101,83,116,97,116,117,115,80,114,101,102,105,120])]+n([73,110,118,97,108,105,100]))}return w(t,e)}catch(t){return b(e[n([108,105,99,101,110,115,101,83,116,97,116,117,115,80,114,101,102,105,120])]+n([73,110,118,97,108,105,100]))}}(t,e),e)},[n([99,104,101,99,107,76,105,99,101,110,115,101,70,111,114,82,101,118,105,115,105,111,110,72,105,115,116,111,114,121])]:function(t,e){const i=o[0]*r[1],s=o[0]*r[2],l=o[2]*r[2];function c(t,e){a(),b(e+n([84,114,105,97,108,76,105,109,105,116,58])+t),window[g()]=t===n([116,105,109,101])?i:s}function a(){const t=d;function e(){C(t,n([82,101,118,105,115,105,111,110,84,114,97,99,107,101,114]))&&(M(t,n([82,101,118,105,115,105,111,110,84,114,97,99,107,101,114]))[n([117,110,98,105,110,100])](n([105,115,69,110,97,98,108,101,100])),M(t,n([82,101,118,105,115,105,111,110,84,114,97,99,107,101,114]))[n([105,115,69,110,97,98,108,101,100])]=!1,M(t,n([82,101,118,105,115,105,111,110,84,114,97,99,107,101,114]))[n([117,112,100,97,116,101])]=L,M(t,n([82,101,118,105,115,105,111,110,84,114,97,99,107,101,114]))[n([115,97,118,101,82,101,118,105,115,105,111,110])]=L,t[n([109,111,100,101,108])][n([99,104,97,110,103,101])]=L,t[n([109,111,100,101,108])][n([101,110,113,117,101,117,101,67,104,97,110,103,101])]=L,t[n([101,110,97,98,108,101,82,101,97,100,79,110,108,121,77,111,100,101])](n([109,111,100,101,108]))),C(t,n([82,101,118,105,115,105,111,110,86,105,101,119,101,114]))&&(M(t,n([82,101,118,105,115,105,111,110,86,105,101,119,101,114]))[n([117,110,98,105,110,100])](n([105,115,69,110,97,98,108,101,100])),M(t,n([82,101,118,105,115,105,111,110,86,105,101,119,101,114]))[n([105,115,69,110,97,98,108,101,100])]=!1,M(t,n([82,101,118,105,115,105,111,110,86,105,101,119,101,114]))[n([99,111,109,112,97,114,101])]=L,M(t,n([82,101,118,105,115,105,111,110,86,105,101,119,101,114]))[n([95,103,101,116,68,105,102,102])]=L)}t[n([115,116,97,116,101])]==n([114,101,97,100,121])?e():t[n([111,110,99,101])](n([114,101,97,100,121]),(()=>{const i=f;if(C(t,n([82,101,118,105,115,105,111,110,84,114,97,99,107,101,114]))&&e(),C(t,n([82,101,118,105,115,105,111,110,86,105,101,119,101,114]))){const s=M(t,n([82,101,118,105,115,105,111,110,115,82,101,112,111,115,105,116,111,114,121])),r=s[i(258)](0),o=s[i(269)](r[n([105,100])]);M(t,n([82,101,118,105,115,105,111,110,86,105,101,119,101,114]))[n([99,111,109,112,97,114,101])](r[n([105,100])],o?o[n([105,100])]:null,1)[i(257)]((()=>e()))}}))}C(d,n([87,101,98,83,111,99,107,101,116,71,97,116,101,119,97,121]))&&M(d,n([87,101,98,83,111,99,107,101,116,71,97,116,101,119,97,121]))[n([115,116,97,116,101])]==n([99,111,110,110,101,99,116,101,100])&&(window[g()]=l),function(t,e){if(t==e[n([108,105,99,101,110,115,101,83,116,97,116,117,115,80,114,101,102,105,120])]+n([73,110,118,97,108,105,100]))a();else if(t==e[n([108,105,99,101,110,115,101,83,116,97,116,117,115,80,114,101,102,105,120])]+n([84,114,105,97,108])){const t=function(){const t=f;if(!C(d,n([82,101,118,105,115,105,111,110,86,105,101,119,101,114])))return!1;for(const e in window)if(Number[t(255)](Number(e))){if(window[e]===i)return n([116,105,109,101]);if(window[e]===s)return n([114,101,118,105,115,105,111,110,115])}return!1}();t&&c(t,e[n([108,105,99,101,110,115,101,83,116,97,116,117,115,80,114,101,102,105,120])]);const l=function(){let t=o[6]*r[8]*r[6];return C(d,n([82,101,118,105,115,105,111,110,86,105,101,119,101,114]))&&(t/=10),t}();window[n([115,101,116,84,105,109,101,111,117,116])]((()=>{c(n([116,105,109,101]),e[n([108,105,99,101,110,115,101,83,116,97,116,117,115,80,114,101,102,105,120])])}),l);const a=M(d,n([82,101,118,105,115,105,111,110,115,82,101,112,111,115,105,116,111,114,121]))[n([95,114,101,118,105,115,105,111,110,115])];a[n([108,101,110,103,116,104])]>=7?c(n([114,101,118,105,115,105,111,110,115]),e[n([108,105,99,101,110,115,101,83,116,97,116,117,115,80,114,101,102,105,120])]):a.on(n([97,100,100]),(()=>{a[n([108,101,110,103,116,104])]>=7&&c(n([114,101,118,105,115,105,111,110,115]),e[n([108,105,99,101,110,115,101,83,116,97,116,117,115,80,114,101,102,105,120])])}))}}(function(t,e){try{return function(){const t=f;if(!C(d,n([82,101,118,105,115,105,111,110,86,105,101,119,101,114])))return!1;for(const e in window)if(Number[t(255)](Number(e))&&window[e]===l)return!0;return!1}()?b(e[n([108,105,99,101,110,115,101,83,116,97,116,117,115,80,114,101,102,105,120])]+n([86,97,108,105,100])):w(t,e)}catch(t){return b(e[n([108,105,99,101,110,115,101,83,116,97,116,117,115,80,114,101,102,105,120])]+n([73,110,118,97,108,105,100]))}}(t,e),e)}},u=e[n([99,111,110,115,116,114,117,99,116,111,114])][n([112,108,117,103,105,110,78,97,109,101])],d=n([99,111,110,116,101,120,116])in e?e[i(273)]:e[i(239)],p=n([52,48,52,56,48,56,50,48]),h=n([65,66,67,68,69,70,71,72,73,74,75,76,77,78,79,80,81,82,83,84,85,86,87,88,89,90,97,98,99,100,101,102,103,104,105,106,107,108,109,110,111,112,113,114,115,116,117,118,119,120,121,122,48,49,50,51,52,53,54,55,56,57]),m=d[i(317)][i(305)](n([108,105,99,101,110,115,101,75,101,121])),v=c[n([102,105,108,116,101,114])](s)[n([102,105,110,100])]((t=>t[n([112,108,117,103,105,110,78,97,109,101])]===u));function w(t,e){try{return function(t){if(!C(d,t[n([112,108,117,103,105,110,78,97,109,101])]))return!0;const e=t[n([111,112,116,105,111,110,115])]||{},i=e[n([97,105,119,115,103,105,99])]||!1,s=e[n([97,105,116,99,100,103,105,108])]||!1,r=e[n([97,105,114,118,105,105,108])]||!1;return!(!C(d,n([87,101,98,83,111,99,107,101,116,71,97,116,101,119,97,121]))||M(d,n([87,101,98,83,111,99,107,101,116,71,97,116,101,119,97,121]))[n([115,116,97,116,101])]!=n([99,111,110,110,101,99,116,101,100])||!i)||(!(!C(d,n([84,114,97,99,107,67,104,97,110,103,101,115,68,97,116,97,71,101,116,116,101,114]))||M(d,n([84,114,97,99,107,67,104,97,110,103,101,115,68,97,116,97,71,101,116,116,101,114]))[n([114,101,115,117,108,116])]!=n([101,110,100])||!s)||!(!C(d,n([82,101,118,105,115,105,111,110,86,105,101,119,101,114,73,110,116,101,103,114,97,116,105,111,110]))||M(d,n([82,101,118,105,115,105,111,110,86,105,101,119,101,114,73,110,116,101,103,114,97,116,105,111,110]))[n([114,101,115,117,108,116])]!=n([101,110,100])||!r))}(e)?b(e[n([108,105,99,101,110,115,101,83,116,97,116,117,115,80,114,101,102,105,120])]+n([86,97,108,105,100])):t&&function(t,e){const s=!!(t&e[n([112,101,114,109,105,115,115,105,111,110,77,97,115,107])]),r=function(t,e){const s=(e[n([111,112,116,105,111,110,115])]||{})[n([102,103,105])]||null;return!!s&&c[n([102,105,108,116,101,114])]((t=>s[n([105,110,99,108,117,100,101,115])](t[n([105,100])])))[n([102,105,108,116,101,114])]((t=>!function(t){const e=i,s={[n([102,111,114,98,105,100,100,101,110,72,97,110,100,108,101,114,70,111,114,68,114,117,112,97,108])]:x};return!!t[e(290)]&&s[t[e(290)]]()}(t)))[n([115,111,109,101])]((e=>!!(t&e[n([112,101,114,109,105,115,115,105,111,110,77,97,115,107])])))}(t,e);return s||r}(t[n([97,108,108,111,119,101,100,80,108,117,103,105,110,115])],e)?t[n([105,115,73,110,116,101,114,110,97,108])]&&!window[n([111,112,101,110])][n([99,108,111,115,101,100])]||parseInt(p)/2>t[n([101,120,112,105,114,97,116,105,111,110,68,97,116,101])]?b(e[n([108,105,99,101,110,115,101,83,116,97,116,117,115,80,114,101,102,105,120])]+n([73,110,118,97,108,105,100])):t[n([105,115,84,114,105,97,108])]?b(e[n([108,105,99,101,110,115,101,83,116,97,116,117,115,80,114,101,102,105,120])]+n([84,114,105,97,108])):b(e[n([108,105,99,101,110,115,101,83,116,97,116,117,115,80,114,101,102,105,120])]+n([86,97,108,105,100])):b(e[n([108,105,99,101,110,115,101,83,116,97,116,117,115,80,114,101,102,105,120])]+n([73,110,118,97,108,105,100]))}catch(t){return b(e[n([108,105,99,101,110,115,101,83,116,97,116,117,115,80,114,101,102,105,120])]+n([73,110,118,97,108,105,100]))}}function y(e,i){if(d instanceof t.Context){const t=d;e==i[n([108,105,99,101,110,115,101,83,116,97,116,117,115,80,114,101,102,105,120])]+n([73,110,118,97,108,105,100])?k(t):e==i[n([108,105,99,101,110,115,101,83,116,97,116,117,115,80,114,101,102,105,120])]+n([84,114,105,97,108])&&window[n([115,101,116,84,105,109,101,111,117,116])]((()=>{k(t),b(i[n([108,105,99,101,110,115,101,83,116,97,116,117,115,80,114,101,102,105,120])]+n([84,114,105,97,108,76,105,109,105,116,58,116,105,109,101]))}),o[6]*r[8]*r[6]),t[n([101,100,105,116,111,114,115])][n([111,110])](n([97,100,100]),((t,s)=>{e!=i[n([108,105,99,101,110,115,101,83,116,97,116,117,115,80,114,101,102,105,120])]+n([73,110,118,97,108,105,100])&&e!=i[n([108,105,99,101,110,115,101,83,116,97,116,117,115,80,114,101,102,105,120])]+n([84,114,105,97,108,76,105,109,105,116,58,116,105,109,101])&&e!=i[n([108,105,99,101,110,115,101,83,116,97,116,117,115,80,114,101,102,105,120])]+n([84,114,105,97,108,76,105,109,105,116,58,111,112,101,114,97,116,105,111,110,115])||I(s)}))}else{const t=d;e==i[n([108,105,99,101,110,115,101,83,116,97,116,117,115,80,114,101,102,105,120])]+n([73,110,118,97,108,105,100])?I(t):e==i[n([108,105,99,101,110,115,101,83,116,97,116,117,115,80,114,101,102,105,120])]+n([84,114,105,97,108])&&t[n([111,110])](n([114,101,97,100,121]),(()=>{let e=0;t[n([109,111,100,101,108])][n([111,110])](n([97,112,112,108,121,79,112,101,114,97,116,105,111,110]),((s,r)=>{r[0][n([105,115,68,111,99,117,109,101,110,116,79,112,101,114,97,116,105,111,110])]&&e++,504===e&&(I(t),b(i[n([108,105,99,101,110,115,101,83,116,97,116,117,115,80,114,101,102,105,120])]+n([84,114,105,97,108,76,105,109,105,116,58,111,112,101,114,97,116,105,111,110,115])),s[n([111,102,102])]())}),{priority:n([104,105,103,104,101,115,116])})}))}}function b(t){const e=g();return d[e]=t,t}function g(){const t=String(window[n([112,101,114,102,111,114,109,97,110,99,101])][n([110,111,119])]())[n([114,101,112,108,97,99,101])](n([46]),"");let e="";for(let i=0;i<t[n([108,101,110,103,116,104])];i+=2){let s=parseInt(t[n([115,117,98,115,116,114,105,110,103])](i,i+2));s>=h[n([108,101,110,103,116,104])]&&(s-=h[n([108,101,110,103,116,104])]),e+=h[s]}return e}function k(t){for(const e of t[n([101,100,105,116,111,114,115])])I(e);M(t,n([67,111,109,109,101,110,116,115,82,101,112,111,115,105,116,111,114,121]))[n([115,119,105,116,99,104,82,101,97,100,79,110,108,121])](!0),M(t,n([67,111,109,109,101,110,116,115,82,101,112,111,115,105,116,111,114,121]))[n([115,119,105,116,99,104,82,101,97,100,79,110,108,121])]=L}function I(t){function e(){t[n([109,111,100,101,108])][n([99,104,97,110,103,101])]=L,t[n([109,111,100,101,108])][n([101,110,113,117,101,117,101,67,104,97,110,103,101])]=L,t[n([101,110,97,98,108,101,82,101,97,100,79,110,108,121,77,111,100,101])](n([109,111,100,101,108]))}t[n([115,116,97,116,101])]==n([114,101,97,100,121])?e():t[n([111,110,99,101])](n([114,101,97,100,121]),(()=>e()))}function L(){return null}function x(){return!window[n([68,114,117,112,97,108])]||!C(d,n([100,114,117,112,97,108,80,111,119,101,114,101,100,66,121]))}function C(t,e){return t[n([112,108,117,103,105,110,115])][n([104,97,115])](e)}function M(t,e){return t[n([112,108,117,103,105,110,115])][n([103,101,116])](e)}v&&function t(e,i){a[i[n([104,97,110,100,108,101,114])]](e,i),i[n([99,104,101,99,107,65,108,115,111])]&&i[n([99,104,101,99,107,65,108,115,111])][n([102,105,108,116,101,114])]((t=>C(d,t[n([112,108,117,103,105,110,78,97,109,101])])))[n([102,111,114,69,97,99,104])]((n=>t(e,n)))}(function(t){try{const e=l(t),i=JSON[n([112,97,114,115,101])](e),s=parseInt(i[n([49])]),r=i[n([50])]||"",o=parseInt(i[n([51])]),c=parseInt(i[n([52])])||0,a=parseInt(i[n([53])])||0;return{[n([112,114,111,100,117,99,116,78,97,109,101])]:r,[n([97,108,108,111,119,101,100,80,108,117,103,105,110,115])]:c,[n([101,120,112,105,114,97,116,105,111,110,68,97,116,101])]:s,[n([105,115,84,114,105,97,108])]:o,[n([105,115,73,110,116,101,114,110,97,108])]:a}}catch(t){return null}}(m),v)})(e)}(this)}}function d(){const t=["commands","customBulleted","upcast","49410njAHmp","requires","get","MultiLevelListEditing","legal","data","viewItem","661108pbwNWG","editing","itemMarker","listMarkerStyle","conversion","isLimit","filter","config","showMarkerPath","createRangeIn","element:","add","list-style-type","listType","content","trim","setStyle","hasAttribute","createTextNode","push","parent","false","remove","15188LvkVST","low","$text","element:span","getItems","getAttribute","match","clipboardOutput","extend","10861300cYmXbg","ListEditing","multi-level-list","test","modelRange","multiLevelList","bulleted","join","pluginName","writer","appendChild","listMarkers","isAtStart","schema","listMarker","length","convertChildren","init","addAttributeCheck","from","editor","find","1311102ChNbXz","105LTwUoc","list","_listDefinitions","checkChild","consume","function","595KdtNgm","$listItem","document","legal-list","removeAttribute","toDomElement","listenTo","isNaN","2829648otOkPU","then","getRevision","postFixer","multi-level-list__marker","removeStyle","createUIElement","listMultiLevel.listDefinitions","2440395nCoNrk","last","setAttribute","addClass","return","getEarlierVisibleRevision","modelCursor","registerDowncastStrategy","consumable","context","element","slice","listStart","map","span","model","fromCharCode","none","afterInit","3tCMbIC","removeClass","assign","textNode","marker","view","listItemId","forbiddenHandler","plugins","childCount","for","className","listIndent","$inlineObject","customNumbered","checkAttribute","$textProxy"];return(d=function(){return t})()}function f(t,e){const n=d();return(f=function(t,e){return n[t-=234]})(t,e)}function p(t,e,n){const i=a;let s=e[i(353)][t%e[i(353)][i(234)]];if(void 0===s[i(318)]||s[i(318)])return n[i(275)](0,t+1)[i(277)](((t,n)=>(s=e[i(353)][n%e[i(353)][i(234)]],h(s[i(287)],t))))[i(349)]("");{const t=n[n[i(234)]-1];return h(s[i(287)],t)}}function h(t,e){return a(247)==typeof t?t(e):t}var m=n(311),v=n(673),w=n.n(v),y=n(541),b={injectType:"singletonStyleTag",attributes:{"data-cke":!0},insert:"head",singleton:!0};w()(y.A,b);y.A.locals;const g=k;function k(t,e){const n=L();return(k=function(t,e){return n[t-=447]})(t,e)}!function(t,e){const n=k,i=t();for(;;)try{if(571536===-parseInt(n(492))/1*(parseInt(n(465))/2)+parseInt(n(509))/3+-parseInt(n(512))/4+-parseInt(n(517))/5+parseInt(n(481))/6+-parseInt(n(516))/7+parseInt(n(514))/8)break;i.push(i.shift())}catch(t){i.push(i.shift())}}(L);class I extends m.View{constructor(t,{enabledProperties:e,styleButtonViews:n,styleGridAriaLabel:i}){const r=k;super(t),this[r(473)]=null,this[r(478)]=null,this[r(486)]=null,this[r(487)]=new s.FocusTracker,this[r(521)]=new s.KeystrokeHandler,this[r(503)]=new m.ViewCollection;const o=["ck",r(522)];this[r(520)]=this[r(448)](),this[r(466)]=new m.FocusCycler({focusables:this[r(503)],focusTracker:this[r(487)],keystrokeHandler:this[r(521)],actions:{focusPrevious:r(493),focusNext:r(459)}}),e[r(504)]?(this[r(473)]=this[r(500)](n,i),this[r(520)][r(477)](this[r(473)])):o[r(525)](r(490)),e[r(483)]&&(this[r(497)](e),o[r(525)](r(508))),this[r(507)]({tag:r(472),attributes:{class:o},children:this[r(520)]})}[g(450)](){const t=g;if(super[t(450)](),this[t(473)]){this[t(503)][t(477)](this[t(473)]),this[t(487)][t(477)](this[t(473)][t(476)]),this[t(486)]&&(this[t(503)][t(477)](this[t(520)][t(489)][t(460)]),this[t(487)][t(477)](this[t(520)][t(489)][t(460)][t(476)]));for(const e of this[t(473)][t(520)])this[t(473)][t(487)][t(477)](e[t(476)]);(0,m.addKeyboardHandlingForGrid)({keystrokeHandler:this[t(473)][t(521)],focusTracker:this[t(473)][t(487)],gridItems:this[t(473)][t(520)],numberOfColumns:()=>s.global[t(485)][t(471)](this[t(473)][t(476)])[t(457)](t(499))[t(519)](" ")[t(496)],uiLanguageDirection:this[t(474)]&&this[t(474)][t(511)]})}if(this[t(486)]){this[t(503)][t(477)](this[t(486)]),this[t(487)][t(477)](this[t(486)][t(476)]);const e=e=>e[t(482)]();this[t(521)][t(453)](t(463),e),this[t(521)][t(453)](t(447),e),this[t(521)][t(453)](t(495),e),this[t(521)][t(453)](t(470),e)}this[t(521)][t(461)](this[t(476)])}[g(501)](){const t=g;this[t(466)][t(455)]()}[g(488)](){const t=g;this[t(466)][t(488)]()}[g(498)](){const t=g;super[t(498)](),this[t(487)][t(498)](),this[t(521)][t(498)]()}[g(500)](t,e){const n=g,i=new m.View(this[n(474)]);return i[n(520)]=i[n(448)](),i[n(520)][n(502)](t),i[n(507)]({tag:n(472),attributes:{"aria-label":e,class:["ck",n(506)]},children:i[n(520)]}),i[n(520)][n(484)](n(513)).to(this),i[n(501)]=function(){const t=n;this[t(520)][t(456)][t(501)]()},i[n(487)]=new s.FocusTracker,i[n(521)]=new s.KeystrokeHandler,i[n(450)](),i[n(521)][n(461)](i[n(476)]),i}[g(497)](t){const e=g,n=this[e(474)].t,i=[];t[e(483)]&&(this[e(486)]=this[e(491)](),i[e(525)](this[e(486)])),t[e(504)]?(this[e(478)]=new m.CollapsibleView(this[e(474)],i),this[e(478)][e(453)]({label:n(e(452)),isCollapsed:!0}),this[e(478)][e(460)][e(462)](e(518))[e(475)](i,e(518),((...t)=>t[e(524)]((t=>t)))),this[e(478)][e(460)].on(e(464),((t,n,i)=>{const s=e;i||(this[s(478)][s(515)]=!0)})),this[e(520)][e(477)](this[e(478)])):this[e(520)][e(502)](i)}[g(491)](){const t=g,e=this[t(474)].t,n=new m.LabeledFieldView(this[t(474)],m.createLabeledInputNumber);return n[t(453)]({label:e(t(480)),class:t(458)}),n[t(467)][t(453)]({min:0,step:1,value:1,inputMode:t(468)}),n[t(467)].on(t(449),(()=>{const i=t,s=n[i(467)][i(476)],r=s[i(505)];Number[i(479)](r)?n[i(454)]=e(i(510)):s[i(451)]()?this[i(494)](i(523),{startIndex:r}):n[i(454)]=e(i(469))})),n}}function L(){const t=["ck-multi-level-list-properties_without-styles","_createStartIndexField","19zMObUo","shift + tab","fire","arrowup","length","_addListPropertyViews","destroy","grid-template-columns","_createStylesView","focus","addMany","focusables","styles","valueAsNumber","ck-multi-level-list-styles","setTemplate","ck-multi-level-list-properties_with-multi-level-properties","3402714MkvKLa","Invalid start index value.","uiLanguageDirection","4267928OvxasZ","execute","9606736erbacP","isCollapsed","3381581MXoGwA","4538360skprKE","isEnabled","split","children","keystrokes","ck-multi-level-list-properties","listStart","some","push","arrowleft","createCollection","input","render","checkValidity","List properties","set","errorText","focusFirst","first","getPropertyValue","ck-multi-level-list-properties__start-index","tab","buttonView","listenTo","bind","arrowright","change:isEnabled","2642xFdnsj","focusCycler","fieldView","numeric","Start index must be greater than 0.","arrowdown","getComputedStyle","div","stylesView","locale","toMany","element","add","additionalPropertiesCollapsibleView","isNaN","Start at","4315752SlEXIo","stopPropagation","startIndex","delegate","window","startIndexFieldView","focusTracker","focusLast","last"];return(L=function(){return t})()}class x extends t.Plugin{static get pluginName(){return"MultiLevelListUI"}constructor(t){super(t),this._licenseKeyCheckInterval=null}init(){const t=this.editor,e=t.locale.t;t.ui.componentFactory.add("multiLevelList",function({editor:t,parentCommandName:e,buttonLabel:n,buttonIcon:i,styleGridAriaLabel:s,styleDefinitions:r}){const o=t.commands.get(e),l=t.config.get("list.properties")||{},c=t.plugins.has("ListProperties"),a=l.startIndex;return c&&a?l=>{const c=(0,m.createDropdown)(l,m.SplitButtonView),a=c.buttonView;return c.bind("isEnabled").to(o),c.class="ck-list-styles-dropdown",a.on("execute",(()=>{t.execute(e),t.editing.view.focus()})),a.set({label:n,icon:i,tooltip:!0,isToggleable:!0}),a.bind("isOn").to(o,"value",(t=>!!t)),c.once("change:isOpen",(()=>{const n=function({editor:t,dropdownView:e,styleDefinitions:n,styleGridAriaLabel:i}){const s=t.locale,r=t.config.get("list.properties");r.reversed=!1,n.length||(r.styles=!1);const o=new I(s,{styleGridAriaLabel:i,enabledProperties:r,styleButtonViews:null});if(r.startIndex){const e=t.commands.get("listStart");o.startIndexFieldView.bind("isEnabled").to(e),o.startIndexFieldView.fieldView.bind("value").to(e),o.on("listStart",((e,n)=>t.execute("listStart",n)))}return o.delegate("execute").to(e),o}({editor:t,dropdownView:c,parentCommandName:e,styleGridAriaLabel:s,styleDefinitions:r});c.panelView.children.add(n)})),c.on("execute",(()=>{t.editing.view.focus()})),c}:s=>{const r=new m.ButtonView(s);return r.set({label:n,icon:i,tooltip:!0,isToggleable:!0}),r.on("execute",(()=>{t.execute(e),t.editing.view.focus()})),r}}({editor:t,parentCommandName:"multiLevelList",buttonLabel:e("Multi-level List"),buttonIcon:'<svg viewBox="0 0 20 20" xmlns="http://www.w3.org/2000/svg"><path d="M7.85 6.5a.75.75 0 0 1 0-1.5h9.5a.75.75 0 1 1 0 1.5h-9.5Z"/><path d="M3 8V2.7H.5v1h1V8H3Z"/><path d="M13.42 14.185a.75.75 0 0 0 .53 1.28h3.4a.75.75 0 1 0 0-1.5h-3.4a.75.75 0 0 0-.53.22Z"/><path d="M5.636 8.035V6.8H4.4v1.235h1.236Z"/><path d="M9 17.865v-5.3H6.5v1h1v4.3H9Z"/><path d="M11.636 17.9v-1.235H10.4V17.9h1.236Z"/><path d="M3.2 17.865v-5.3H.7v1h1v4.3h1.5Z"/><path d="M5.836 17.9v-1.235H4.6V17.9h1.236Z"/></svg>',styleGridAriaLabel:e("Multi-level list styles toolbar"),styleDefinitions:[]})),this.licenseKey=t.config.get("licenseKey");const n=this.editor;this._licenseKeyCheckInterval=setInterval((()=>{let t;for(const e in n){const i=e,s=n[i];if("multiLevelListLicenseKeyTrial"===s||"multiLevelListLicenseKeyInvalid"===s||"multiLevelListLicenseKeyValid"===s||"multiLevelListLicenseKeyTrialLimit:operations"===s){delete n[i],t=s;break}}if("multiLevelListLicenseKeyInvalid"===t)throw clearInterval(this._licenseKeyCheckInterval),new s.CKEditorError("multi-level-list-invalid-license-key",null);if("multiLevelListLicenseKeyTrial"===t&&console.info("You are using the trial version of CKEditor 5 multi level list plugin with limited usage. Make sure you will not use it in the production environment."),"multiLevelListLicenseKeyTrialLimit:operations"===t)throw clearInterval(this._licenseKeyCheckInterval),new s.CKEditorError("multi-level-list-trial-license-key-reached-limit-changes",null);"multiLevelListLicenseKeyValid"===t&&clearInterval(this._licenseKeyCheckInterval)}),1e3)}destroy(){this._licenseKeyCheckInterval&&clearInterval(this._licenseKeyCheckInterval)}}var C=n(326),M={injectType:"singletonStyleTag",attributes:{"data-cke":!0},insert:"head",singleton:!0};w()(C.A,M);C.A.locals;var S=N;function N(t,e){var n=_();return(N=function(t,e){return n[t-=456]})(t,e)}function _(){var t=["7190488eyzdEh","requires","1637931ukFNzE","MultiLevelList","pluginName","7105145HOsIjJ","384671vYaeam","4992780lwBcms","1432191cSUOss","17101863aSgUgw","120CBILVA","10VGISJj","2fWZvJb"];return(_=function(){return t})()}!function(t,e){for(var n=N,i=t();;)try{if(749314===parseInt(n(457))/1*(parseInt(n(461))/2)+parseInt(n(464))/3+parseInt(n(456))/4+parseInt(n(467))/5+-parseInt(n(459))/6*(parseInt(n(468))/7)+-parseInt(n(462))/8+parseInt(n(458))/9*(-parseInt(n(460))/10))break;i.push(i.shift())}catch(t){i.push(i.shift())}}(_);class A extends t.Plugin{static get[S(466)](){return S(465)}static get[S(463)](){return[u,x]}}function V(t,e){var n=T();return(V=function(t,e){return n[t-=124]})(t,e)}function T(){var t=["1696NdBnPJ","25PzCpAo","465831ekVCPf","11bfFaRc","9780912xHyGVR","135312JZrQNM","7ifFdIJ","852068EyGGTS","4755MBhRzJ","19620830yHVcLw","4958944ODXYuL"];return(T=function(){return t})()}!function(t,e){for(var n=V,i=t();;)try{if(772909===-parseInt(n(124))/1+parseInt(n(133))/2*(-parseInt(n(130))/3)+-parseInt(n(129))/4*(-parseInt(n(134))/5)+parseInt(n(127))/6*(parseInt(n(128))/7)+parseInt(n(132))/8+-parseInt(n(126))/9+-parseInt(n(131))/10*(-parseInt(n(125))/11))break;i.push(i.shift())}catch(t){i.push(i.shift())}}(T)})(),(window.CKEditor5=window.CKEditor5||{}).listMultiLevel=i})();
5
+ */(()=>{var t={326:(t,e,n)=>{"use strict";n.d(e,{A:()=>s});var i=n(433),r=n.n(i)()((function(t){return t[1]}));r.push([t.id,".ck-content .multi-level-list{list-style:none}.ck-content .multi-level-list li{position:relative}.ck-content .multi-level-list li .multi-level-list__marker{padding-inline-end:5px;pointer-events:none;position:absolute;transform:translate(-100%)}[dir=rtl] .ck-content .multi-level-list li .multi-level-list__marker{transform:translate(100%)}.ck-content .multi-level-list li .multi-level-list__marker::selection{background-color:transparent}",""]);const s=r},541:(t,e,n)=>{"use strict";n.d(e,{A:()=>s});var i=n(433),r=n.n(i)()((function(t){return t[1]}));r.push([t.id,".ck.ck-multi-level-list-properties.ck-multi-level-list-properties_without-styles{padding:var(--ck-spacing-large)}.ck.ck-multi-level-list-properties.ck-multi-level-list-properties_without-styles>*{min-width:14em}.ck.ck-multi-level-list-properties.ck-multi-level-list-properties_without-styles>*+*{margin-top:var(--ck-spacing-standard)}.ck.ck-multi-level-list-properties.ck-multi-level-list-properties_with-multi-level-properties>.ck-multi-level-list-styles{grid-template-columns:repeat(4,auto)}.ck.ck-multi-level-list-properties.ck-multi-level-list-properties_with-multi-level-properties>.ck-collapsible{border-top:1px solid var(--ck-color-base-border)}.ck.ck-multi-level-list-properties.ck-multi-level-list-properties_with-multi-level-properties>.ck-collapsible>.ck-collapsible__children>*{width:100%}.ck.ck-multi-level-list-properties.ck-multi-level-list-properties_with-multi-level-properties>.ck-collapsible>.ck-collapsible__children>*+*{margin-top:var(--ck-spacing-standard)}.ck.ck-multi-level-list-properties .ck.ck-multi-level-list-properties__start-index .ck-input{min-width:auto;width:100%}",""]);const s=r},433:t=>{"use strict";t.exports=function(t){var e=[];return e.toString=function(){return this.map((function(e){var n=t(e);return e[2]?"@media ".concat(e[2]," {").concat(n,"}"):n})).join("")},e.i=function(t,n,i){"string"==typeof t&&(t=[[null,t,""]]);var r={};if(i)for(var s=0;s<this.length;s++){var o=this[s][0];null!=o&&(r[o]=!0)}for(var l=0;l<t.length;l++){var c=[].concat(t[l]);i&&r[c[0]]||(n&&(c[2]?c[2]="".concat(n," and ").concat(c[2]):c[2]=n),e.push(c))}},e}},673:(t,e,n)=>{"use strict";var i,r=function(){return void 0===i&&(i=Boolean(window&&document&&document.all&&!window.atob)),i},s=function(){var t={};return function(e){if(void 0===t[e]){var n=document.querySelector(e);if(window.HTMLIFrameElement&&n instanceof window.HTMLIFrameElement)try{n=n.contentDocument.head}catch(t){n=null}t[e]=n}return t[e]}}(),o=[];function l(t){for(var e=-1,n=0;n<o.length;n++)if(o[n].identifier===t){e=n;break}return e}function c(t,e){for(var n={},i=[],r=0;r<t.length;r++){var s=t[r],c=e.base?s[0]+e.base:s[0],a=n[c]||0,u="".concat(c," ").concat(a);n[c]=a+1;var d=l(u),p={css:s[1],media:s[2],sourceMap:s[3]};-1!==d?(o[d].references++,o[d].updater(p)):o.push({identifier:u,updater:v(p,e),references:1}),i.push(u)}return i}function a(t){var e=document.createElement("style"),i=t.attributes||{};if(void 0===i.nonce){var r=n.nc;r&&(i.nonce=r)}if(Object.keys(i).forEach((function(t){e.setAttribute(t,i[t])})),"function"==typeof t.insert)t.insert(e);else{var o=s(t.insert||"head");if(!o)throw new Error("Couldn't find a style target. This probably means that the value for the 'insert' parameter is invalid.");o.appendChild(e)}return e}var u,d=(u=[],function(t,e){return u[t]=e,u.filter(Boolean).join("\n")});function p(t,e,n,i){var r=n?"":i.media?"@media ".concat(i.media," {").concat(i.css,"}"):i.css;if(t.styleSheet)t.styleSheet.cssText=d(e,r);else{var s=document.createTextNode(r),o=t.childNodes;o[e]&&t.removeChild(o[e]),o.length?t.insertBefore(s,o[e]):t.appendChild(s)}}function f(t,e,n){var i=n.css,r=n.media,s=n.sourceMap;if(r?t.setAttribute("media",r):t.removeAttribute("media"),s&&"undefined"!=typeof btoa&&(i+="\n/*# sourceMappingURL=data:application/json;base64,".concat(btoa(unescape(encodeURIComponent(JSON.stringify(s))))," */")),t.styleSheet)t.styleSheet.cssText=i;else{for(;t.firstChild;)t.removeChild(t.firstChild);t.appendChild(document.createTextNode(i))}}var h=null,m=0;function v(t,e){var n,i,r;if(e.singleton){var s=m++;n=h||(h=a(e)),i=p.bind(null,n,s,!1),r=p.bind(null,n,s,!0)}else n=a(e),i=f.bind(null,n,e),r=function(){!function(t){if(null===t.parentNode)return!1;t.parentNode.removeChild(t)}(n)};return i(t),function(e){if(e){if(e.css===t.css&&e.media===t.media&&e.sourceMap===t.sourceMap)return;i(t=e)}else r()}}t.exports=function(t,e){(e=e||{}).singleton||"boolean"==typeof e.singleton||(e.singleton=r());var n=c(t=t||[],e);return function(t){if(t=t||[],"[object Array]"===Object.prototype.toString.call(t)){for(var i=0;i<n.length;i++){var r=l(n[i]);o[r].references--}for(var s=c(t,e),a=0;a<n.length;a++){var u=l(n[a]);0===o[u].references&&(o[u].updater(),o.splice(u,1))}n=s}}}},782:(t,e,n)=>{t.exports=n(237)("./src/core.js")},783:(t,e,n)=>{t.exports=n(237)("./src/engine.js")},311:(t,e,n)=>{t.exports=n(237)("./src/ui.js")},584:(t,e,n)=>{t.exports=n(237)("./src/utils.js")},237:t=>{"use strict";t.exports=CKEditor5.dll}},e={};function n(i){var r=e[i];if(void 0!==r)return r.exports;var s=e[i]={id:i,exports:{}};return t[i](s,s.exports,n),s.exports}n.n=t=>{var e=t&&t.__esModule?()=>t.default:()=>t;return n.d(e,{a:e}),e},n.d=(t,e)=>{for(var i in e)n.o(e,i)&&!n.o(t,i)&&Object.defineProperty(t,i,{enumerable:!0,get:e[i]})},n.o=(t,e)=>Object.prototype.hasOwnProperty.call(t,e),n.r=t=>{"undefined"!=typeof Symbol&&Symbol.toStringTag&&Object.defineProperty(t,Symbol.toStringTag,{value:"Module"}),Object.defineProperty(t,"__esModule",{value:!0})},n.nc=void 0;var i={};(()=>{"use strict";n.r(i),n.d(i,{MultiLevelList:()=>A,MultiLevelListEditing:()=>d,MultiLevelListUI:()=>x});var t=n(782),e=n(783),r=n(584);const s=l;!function(t,e){const n=l,i=t();for(;;)try{if(314611===parseInt(n(283))/1*(-parseInt(n(274))/2)+-parseInt(n(253))/3*(parseInt(n(287))/4)+-parseInt(n(267))/5+parseInt(n(268))/6+-parseInt(n(285))/7*(parseInt(n(264))/8)+parseInt(n(261))/9+parseInt(n(275))/10)break;i.push(i.shift())}catch(t){i.push(i.shift())}}(c);class o extends t.Command{constructor(t,e,n){const i=l;super(t),this[i(288)]=e,this[i(277)]=n,this[i(256)]=this[i(279)][i(280)][i(270)](i(272))}[s(273)](){const t=s;this[t(284)]=this[t(271)](),this[t(263)]=this[t(276)]()}[s(262)](t={}){const e=s,n=this[e(279)][e(278)],i=t[e(252)]||this[e(288)];n[e(254)]((()=>{const t=e,n=this[t(251)](i);if(!n)return;const r=n+t(266);this[t(279)][t(262)](r,{additionalAttributes:{listMarkerStyle:i}})}))}[s(271)](){const t=s,e=(0,r.first)(this[t(279)][t(278)][t(259)][t(265)][t(257)]());return this[t(256)][t(269)](e)?e[t(281)](t(252)):null}[s(276)](){const t=s,e=this[t(279)],n=e[t(260)][t(270)](t(282)),i=e[t(260)][t(270)](t(258));return n[t(263)]||i[t(263)]}[s(251)](t){const e=s,n=this[e(277)][e(286)]((n=>n[e(252)]==t));return n?n[e(255)]:null}}function l(t,e){const n=c();return(l=function(t,e){return n[t-=251]})(t,e)}function c(){const t=["customNumberedList","597451RzZYGt","value","356762pbbnfo","find","20MKOpSY","defaultListMarkerStyle","_getListTypeFromListMarkerStyle","listMarkerStyle","129597ZzWxjg","change","listType","_listUtils","getSelectedBlocks","customBulletedList","document","commands","1051245EfXDdB","execute","isEnabled","40oJkKwb","selection","List","1565255QhUohW","2593692CNOVKG","isListItemBlock","get","_getValue","ListUtils","refresh","2xHZFqd","11468510OTFpTe","_checkEnabled","_listDefinitions","model","editor","plugins","getAttribute"];return(c=function(){return t})()}const a=p;function u(){const t=["toDomElement","plugins","upcast","customNumbered","checkAttribute","registerDowncastStrategy","viewItem","setStyle","customBulleted","listItemId","listMarkerStyle","convertChildren","map","clipboardOutput","conversion","find","get","pluginName","$text","40uGmvMC","context","match","legal","hasAttribute","element:span","postFixer","isNaN","join","$inlineObject","childCount","1323070dZAKJX","36429jbBCGX","listType","$listItem","marker","assign","span","324IpqPlj","length","createRangeIn","appendChild","commands","createUIElement","multi-level-list","listStart","list-style-type","consume","$textProxy","view","textNode","listIndent","1540QUGfru","document","1152716QQDRau","multi-level-list__marker","filter","return","isLimit","slice","last","editing","_listDefinitions","consumable","init","fromCharCode","225110rdPfwQ","false","forbiddenHandler","getItems","showMarkerPath","5009130ducabI","requires","element:","config","schema","listenTo","remove","multiLevelList","trim","content","afterInit","push","2574762fFLyeb","36hcNNYz","for","createTextNode","element","ListEditing","function","className","bulleted","from","setAttribute","itemMarker","removeClass","getEarlierVisibleRevision","MultiLevelListEditing","modelRange","getAttribute","legal-list","writer","addClass","list","low","model","removeAttribute","listMultiLevel.listDefinitions","2410767Bycmas","checkChild","parent","removeStyle","extend","add","editor","listMarker","isAtStart","then","data","addAttributeCheck","listMarkers","none","getRevision","modelCursor","test"];return(u=function(){return t})()}!function(t,e){const n=p,i=t();for(;;)try{if(794587===-parseInt(n(597))/1+parseInt(n(502))/2+-parseInt(n(575))/3*(-parseInt(n(581))/4)+-parseInt(n(490))/5+-parseInt(n(503))/6*(parseInt(n(574))/7)+-parseInt(n(563))/8*(parseInt(n(527))/9)+parseInt(n(485))/10*(parseInt(n(595))/11))break;i.push(i.shift())}catch(t){i.push(i.shift())}}(u);class d extends t.Plugin{static get[a(561)](){return a(516)}static get[a(491)](){return[a(507)]}constructor(t){const e=a;super(t);const n=this[e(533)][e(493)][e(560)](e(526))||[];this[e(481)]=[{listType:e(547),listMarkerStyle:e(566),className:e(519),listMarkers:[{marker:t=>t+"."}]},...n]}[a(483)](){const t=a,n=this[t(533)],i=n[t(524)],r=n[t(480)][t(592)],s=n[t(545)][t(560)](t(507));n[t(585)][t(532)](t(497),new o(n,t(566),this[t(481)])),i[t(494)][t(531)](t(577),{allowAttributes:[t(554),t(534)]}),i[t(494)][t(538)](((e,n)=>{const i=t,r=e[i(479)];if(i(534)==n||i(554)==n)return!(!r[i(518)](i(553))||!this[i(481)][i(559)]((t=>t[i(576)]==r[i(518)](i(576)))))&&void 0}));for(const e of this[t(481)])n[t(558)][t(504)](t(546))[t(532)]((n=>{const r=t;var s,o;n.on(r(492)+(r(547)==e[r(576)]?"ol":"ul"),(s=e,o=i[r(494)],(t,e,n)=>{const i=p,r=e[i(550)];if(e[i(517)]||Object[i(579)](e,n[i(555)](e[i(550)],e[i(542)])),!n[i(482)][i(543)](r,{classes:s[i(509)]}))return;const l=Array[i(511)](e[i(517)][i(488)]({shallow:!0}))[i(599)]((t=>o[i(548)](t,i(553))));if(!l[i(582)])return;n[i(482)][i(590)](r,{classes:s[i(509)]}),n[i(482)][i(590)](r,{classes:i(587)}),n[i(482)][i(590)](r,{styles:i(589)});const c=l[0][i(518)](i(594));for(const t of l)t[i(518)](i(594))==c&&(n[i(520)][i(512)](i(576),s[i(576)],t),n[i(520)][i(512)](i(554),s[i(554)],t))}),{priority:r(523)})})),s[t(549)]({scope:t(522),attributeName:t(554),setAttributeOnDowncast(n,i,r){const s=t;i==e[s(554)]?(n[s(521)]([s(587),e[s(509)]],r),n[s(551)](s(589),s(540),r)):(n[s(514)]([s(587),e[s(509)]],r),n[s(530)](s(589),r))}}),s[t(549)]({scope:t(513),attributeName:t(534),createElement(n,i,{dataPipeline:r}){const s=t;return i[s(567)](s(534))?i[s(518)](s(576))!=e[s(576)]||i[s(518)](s(554))!=e[s(554)]?null:n[s(586)](s(580),{class:s(598),...!r&&{contenteditable:s(486)}},(function(t){const e=s,n=this[e(544)](t);return n[e(584)](t[e(505)](i[e(518)](e(534))+" ")),n})):null},canInjectMarkerIntoElement:n=>i[t(494)][t(528)](n,t(562))&&i[t(494)][t(528)](n,t(572))&&!i[t(494)][t(601)](n)&&n[t(518)](t(576))==e[t(576)]&&n[t(518)](t(554))==e[t(554)]});n[t(558)][t(504)](t(546))[t(532)]((e=>{const n=t;var i;e.on(n(568),(i=r,(t,e,{writer:n,consumable:r})=>{const s=p,o=e[s(542)],l=o[s(529)],c=e[s(550)];if(r[s(590)](c,{name:!0,classes:s(598)})&&o[s(535)]&&l[s(567)](s(576))&&c[s(573)]>0){const t=i[s(583)](c);let e="";for(const n of t[s(488)]())n.is(s(591))&&(e+=n[s(537)][s(498)](),r[s(590)](n[s(593)]));n[s(512)](s(534),e[s(498)](),l)}}))})),s.on(t(569),((e,{listNodes:n,writer:i})=>{const r=t,s=[];for(const{node:t,previousNodeInList:o}of n){const n=t[r(518)](r(576)),l=t[r(518)](r(554))||(r(547)==n?r(566):void 0),c=this[r(481)][r(559)]((t=>t[r(576)]==n&&t[r(554)]==l));if(r(547)!=n&&r(552)!=n&&(t[r(567)](r(534))&&(i[r(525)](r(534),t),e[r(600)]=!0),t[r(567)](r(554))&&(i[r(525)](r(554),t),e[r(600)]=!0)),!c){r(552)!=n||l||(i[r(512)](r(576),r(510),t),e[r(600)]=!0);continue}t[r(567)](r(554))||(i[r(512)](r(554),l,t),e[r(600)]=!0);const a=t[r(518)](r(594));if(o&&o[r(518)](r(553))==t[r(518)](r(553)))continue;s[r(582)]=a+1,o||s[a]?o&&o[r(518)](r(576))!=c[r(576)]?s[a]=1:s[a]++:s[a]=t[r(518)](r(588))||1;const u=f(a,c,s);t[r(518)](r(534))!=u&&(i[r(512)](r(534),u,t),e[r(600)]=!0)}}));const l=n[t(480)][t(592)][t(596)];this[t(495)](l,t(557),((n,i)=>{const r=t,s=new e.Matcher({name:r(580),classes:r(598)}),o=new e.Matcher({name:"ol",classes:r(587),styles:{"list-style-type":r(540)}}),l=new e.UpcastWriter(i[r(499)][r(596)]),c=[];for(const t of l[r(583)](i[r(499)])[r(488)]())t.is(r(506))&&s[r(565)](t)&&c[r(501)](t),t.is(r(506))&&o[r(565)](t)&&l[r(530)](r(589),t);for(const t of c)l[r(496)](t)}))}[a(500)](){!function(e){function n(t){const e=p;return t[e(556)]((t=>String[e(484)](t)))[e(571)]("")}(e=>{const i=p;function r(t){return n([112,108,117,103,105,110,78,97,109,101])in t}const s=[1,85,78,115,198,255,50,112,83,87,161],o=[127,34,6,211,167,86,146,199,132,160,18];function l(t){return function(t,e){const i=function(t){const e=atob(t),[i,r]=e[n([115,112,108,105,116])](n([45]));try{if(atob(r))return atob(i)}catch(t){}return e}(t),r=Array[n([102,114,111,109])](function(t){const e=new Uint8Array(t[n([108,101,110,103,116,104])]);for(let i=0;i<t[n([108,101,110,103,116,104])];i++)e[i]=t[n([99,104,97,114,67,111,100,101,65,116])](i);return e}(i)),s=r[n([112,111,112])](),o=r[n([112,111,112])]();return function(t){let e="";for(const i of t)e+=String[n([102,114,111,109,67,104,97,114,67,111,100,101])](i);return e}(function(t,e,i){const r={};r[n([110,117,109,98,101,114,79,102,82,111,117,110,100,115])]={16:10,24:12,32:14},r[n([114,99,111,110])]=[1,2,4,8,16,32,64,128,27,54,108,216,171,77,154,47,94,188,99,198,151,53,106,212,179,125,250,239,197,145],r[n([83])]=[99,124,119,123,242,107,111,197,48,1,103,43,254,215,171,118,202,130,201,125,250,89,71,240,173,212,162,175,156,164,114,192,183,253,147,38,54,63,247,204,52,165,229,241,113,216,49,21,4,199,35,195,24,150,5,154,7,18,128,226,235,39,178,117,9,131,44,26,27,110,90,160,82,59,214,179,41,227,47,132,83,209,0,237,32,252,177,91,106,203,190,57,74,76,88,207,208,239,170,251,67,77,51,133,69,249,2,127,80,60,159,168,81,163,64,143,146,157,56,245,188,182,218,33,16,255,243,210,205,12,19,236,95,151,68,23,196,167,126,61,100,93,25,115,96,129,79,220,34,42,144,136,70,238,184,20,222,94,11,219,224,50,58,10,73,6,36,92,194,211,172,98,145,149,228,121,231,200,55,109,141,213,78,169,108,86,244,234,101,122,174,8,186,120,37,46,28,166,180,198,232,221,116,31,75,189,139,138,112,62,181,102,72,3,246,14,97,53,87,185,134,193,29,158,225,248,152,17,105,217,142,148,155,30,135,233,206,85,40,223,140,161,137,13,191,230,66,104,65,153,45,15,176,84,187,22],r[n([84,49])]=[3328402341,4168907908,4000806809,4135287693,4294111757,3597364157,3731845041,2445657428,1613770832,33620227,3462883241,1445669757,3892248089,3050821474,1303096294,3967186586,2412431941,528646813,2311702848,4202528135,4026202645,2992200171,2387036105,4226871307,1101901292,3017069671,1604494077,1169141738,597466303,1403299063,3832705686,2613100635,1974974402,3791519004,1033081774,1277568618,1815492186,2118074177,4126668546,2211236943,1748251740,1369810420,3521504564,4193382664,3799085459,2883115123,1647391059,706024767,134480908,2512897874,1176707941,2646852446,806885416,932615841,168101135,798661301,235341577,605164086,461406363,3756188221,3454790438,1311188841,2142417613,3933566367,302582043,495158174,1479289972,874125870,907746093,3698224818,3025820398,1537253627,2756858614,1983593293,3084310113,2108928974,1378429307,3722699582,1580150641,327451799,2790478837,3117535592,0,3253595436,1075847264,3825007647,2041688520,3059440621,3563743934,2378943302,1740553945,1916352843,2487896798,2555137236,2958579944,2244988746,3151024235,3320835882,1336584933,3992714006,2252555205,2588757463,1714631509,293963156,2319795663,3925473552,67240454,4269768577,2689618160,2017213508,631218106,1269344483,2723238387,1571005438,2151694528,93294474,1066570413,563977660,1882732616,4059428100,1673313503,2008463041,2950355573,1109467491,537923632,3858759450,4260623118,3218264685,2177748300,403442708,638784309,3287084079,3193921505,899127202,2286175436,773265209,2479146071,1437050866,4236148354,2050833735,3362022572,3126681063,840505643,3866325909,3227541664,427917720,2655997905,2749160575,1143087718,1412049534,999329963,193497219,2353415882,3354324521,1807268051,672404540,2816401017,3160301282,369822493,2916866934,3688947771,1681011286,1949973070,336202270,2454276571,201721354,1210328172,3093060836,2680341085,3184776046,1135389935,3294782118,965841320,831886756,3554993207,4068047243,3588745010,2345191491,1849112409,3664604599,26054028,2983581028,2622377682,1235855840,3630984372,2891339514,4092916743,3488279077,3395642799,4101667470,1202630377,268961816,1874508501,4034427016,1243948399,1546530418,941366308,1470539505,1941222599,2546386513,3421038627,2715671932,3899946140,1042226977,2521517021,1639824860,227249030,260737669,3765465232,2084453954,1907733956,3429263018,2420656344,100860677,4160157185,470683154,3261161891,1781871967,2924959737,1773779408,394692241,2579611992,974986535,664706745,3655459128,3958962195,731420851,571543859,3530123707,2849626480,126783113,865375399,765172662,1008606754,361203602,3387549984,2278477385,2857719295,1344809080,2782912378,59542671,1503764984,160008576,437062935,1707065306,3622233649,2218934982,3496503480,2185314755,697932208,1512910199,504303377,2075177163,2824099068,1841019862,739644986],r[n([84,50])]=[2781242211,2230877308,2582542199,2381740923,234877682,3184946027,2984144751,1418839493,1348481072,50462977,2848876391,2102799147,434634494,1656084439,3863849899,2599188086,1167051466,2636087938,1082771913,2281340285,368048890,3954334041,3381544775,201060592,3963727277,1739838676,4250903202,3930435503,3206782108,4149453988,2531553906,1536934080,3262494647,484572669,2923271059,1783375398,1517041206,1098792767,49674231,1334037708,1550332980,4098991525,886171109,150598129,2481090929,1940642008,1398944049,1059722517,201851908,1385547719,1699095331,1587397571,674240536,2704774806,252314885,3039795866,151914247,908333586,2602270848,1038082786,651029483,1766729511,3447698098,2682942837,454166793,2652734339,1951935532,775166490,758520603,3000790638,4004797018,4217086112,4137964114,1299594043,1639438038,3464344499,2068982057,1054729187,1901997871,2534638724,4121318227,1757008337,0,750906861,1614815264,535035132,3363418545,3988151131,3201591914,1183697867,3647454910,1265776953,3734260298,3566750796,3903871064,1250283471,1807470800,717615087,3847203498,384695291,3313910595,3617213773,1432761139,2484176261,3481945413,283769337,100925954,2180939647,4037038160,1148730428,3123027871,3813386408,4087501137,4267549603,3229630528,2315620239,2906624658,3156319645,1215313976,82966005,3747855548,3245848246,1974459098,1665278241,807407632,451280895,251524083,1841287890,1283575245,337120268,891687699,801369324,3787349855,2721421207,3431482436,959321879,1469301956,4065699751,2197585534,1199193405,2898814052,3887750493,724703513,2514908019,2696962144,2551808385,3516813135,2141445340,1715741218,2119445034,2872807568,2198571144,3398190662,700968686,3547052216,1009259540,2041044702,3803995742,487983883,1991105499,1004265696,1449407026,1316239930,504629770,3683797321,168560134,1816667172,3837287516,1570751170,1857934291,4014189740,2797888098,2822345105,2754712981,936633572,2347923833,852879335,1133234376,1500395319,3084545389,2348912013,1689376213,3533459022,3762923945,3034082412,4205598294,133428468,634383082,2949277029,2398386810,3913789102,403703816,3580869306,2297460856,1867130149,1918643758,607656988,4049053350,3346248884,1368901318,600565992,2090982877,2632479860,557719327,3717614411,3697393085,2249034635,2232388234,2430627952,1115438654,3295786421,2865522278,3633334344,84280067,33027830,303828494,2747425121,1600795957,4188952407,3496589753,2434238086,1486471617,658119965,3106381470,953803233,334231800,3005978776,857870609,3151128937,1890179545,2298973838,2805175444,3056442267,574365214,2450884487,550103529,1233637070,4289353045,2018519080,2057691103,2399374476,4166623649,2148108681,387583245,3664101311,836232934,3330556482,3100665960,3280093505,2955516313,2002398509,287182607,3413881008,4238890068,3597515707,975967766],r[n([84,51])]=[1671808611,2089089148,2006576759,2072901243,4061003762,1807603307,1873927791,3310653893,810573872,16974337,1739181671,729634347,4263110654,3613570519,2883997099,1989864566,3393556426,2191335298,3376449993,2106063485,4195741690,1508618841,1204391495,4027317232,2917941677,3563566036,2734514082,2951366063,2629772188,2767672228,1922491506,3227229120,3082974647,4246528509,2477669779,644500518,911895606,1061256767,4144166391,3427763148,878471220,2784252325,3845444069,4043897329,1905517169,3631459288,827548209,356461077,67897348,3344078279,593839651,3277757891,405286936,2527147926,84871685,2595565466,118033927,305538066,2157648768,3795705826,3945188843,661212711,2999812018,1973414517,152769033,2208177539,745822252,439235610,455947803,1857215598,1525593178,2700827552,1391895634,994932283,3596728278,3016654259,695947817,3812548067,795958831,2224493444,1408607827,3513301457,0,3979133421,543178784,4229948412,2982705585,1542305371,1790891114,3410398667,3201918910,961245753,1256100938,1289001036,1491644504,3477767631,3496721360,4012557807,2867154858,4212583931,1137018435,1305975373,861234739,2241073541,1171229253,4178635257,33948674,2139225727,1357946960,1011120188,2679776671,2833468328,1374921297,2751356323,1086357568,2408187279,2460827538,2646352285,944271416,4110742005,3168756668,3066132406,3665145818,560153121,271589392,4279952895,4077846003,3530407890,3444343245,202643468,322250259,3962553324,1608629855,2543990167,1154254916,389623319,3294073796,2817676711,2122513534,1028094525,1689045092,1575467613,422261273,1939203699,1621147744,2174228865,1339137615,3699352540,577127458,712922154,2427141008,2290289544,1187679302,3995715566,3100863416,339486740,3732514782,1591917662,186455563,3681988059,3762019296,844522546,978220090,169743370,1239126601,101321734,611076132,1558493276,3260915650,3547250131,2901361580,1655096418,2443721105,2510565781,3828863972,2039214713,3878868455,3359869896,928607799,1840765549,2374762893,3580146133,1322425422,2850048425,1823791212,1459268694,4094161908,3928346602,1706019429,2056189050,2934523822,135794696,3134549946,2022240376,628050469,779246638,472135708,2800834470,3032970164,3327236038,3894660072,3715932637,1956440180,522272287,1272813131,3185336765,2340818315,2323976074,1888542832,1044544574,3049550261,1722469478,1222152264,50660867,4127324150,236067854,1638122081,895445557,1475980887,3117443513,2257655686,3243809217,489110045,2662934430,3778599393,4162055160,2561878936,288563729,1773916777,3648039385,2391345038,2493985684,2612407707,505560094,2274497927,3911240169,3460925390,1442818645,678973480,3749357023,2358182796,2717407649,2306869641,219617805,3218761151,3862026214,1120306242,1756942440,1103331905,2578459033,762796589,252780047,2966125488,1425844308,3151392187,372911126],r[n([84,52])]=[1667474886,2088535288,2004326894,2071694838,4075949567,1802223062,1869591006,3318043793,808472672,16843522,1734846926,724270422,4278065639,3621216949,2880169549,1987484396,3402253711,2189597983,3385409673,2105378810,4210693615,1499065266,1195886990,4042263547,2913856577,3570689971,2728590687,2947541573,2627518243,2762274643,1920112356,3233831835,3082273397,4261223649,2475929149,640051788,909531756,1061110142,4160160501,3435941763,875846760,2779116625,3857003729,4059105529,1903268834,3638064043,825316194,353713962,67374088,3351728789,589522246,3284360861,404236336,2526454071,84217610,2593830191,117901582,303183396,2155911963,3806477791,3958056653,656894286,2998062463,1970642922,151591698,2206440989,741110872,437923380,454765878,1852748508,1515908788,2694904667,1381168804,993742198,3604373943,3014905469,690584402,3823320797,791638366,2223281939,1398011302,3520161977,0,3991743681,538992704,4244381667,2981218425,1532751286,1785380564,3419096717,3200178535,960056178,1246420628,1280103576,1482221744,3486468741,3503319995,4025428677,2863326543,4227536621,1128514950,1296947098,859002214,2240123921,1162203018,4193849577,33687044,2139062782,1347481760,1010582648,2678045221,2829640523,1364325282,2745433693,1077985408,2408548869,2459086143,2644360225,943212656,4126475505,3166494563,3065430391,3671750063,555836226,269496352,4294908645,4092792573,3537006015,3452783745,202118168,320025894,3974901699,1600119230,2543297077,1145359496,387397934,3301201811,2812801621,2122220284,1027426170,1684319432,1566435258,421079858,1936954854,1616945344,2172753945,1330631070,3705438115,572679748,707427924,2425400123,2290647819,1179044492,4008585671,3099120491,336870440,3739122087,1583276732,185277718,3688593069,3772791771,842159716,976899700,168435220,1229577106,101059084,606366792,1549591736,3267517855,3553849021,2897014595,1650632388,2442242105,2509612081,3840161747,2038008818,3890688725,3368567691,926374254,1835907034,2374863873,3587531953,1313788572,2846482505,1819063512,1448540844,4109633523,3941213647,1701162954,2054852340,2930698567,134748176,3132806511,2021165296,623210314,774795868,471606328,2795958615,3031746419,3334885783,3907527627,3722280097,1953799400,522133822,1263263126,3183336545,2341176845,2324333839,1886425312,1044267644,3048588401,1718004428,1212733584,50529542,4143317495,235803164,1633788866,892690282,1465383342,3115962473,2256965911,3250673817,488449850,2661202215,3789633753,4177007595,2560144171,286339874,1768537042,3654906025,2391705863,2492770099,2610673197,505291324,2273808917,3924369609,3469625735,1431699370,673740880,3755965093,2358021891,2711746649,2307489801,218961690,3217021541,3873845719,1111672452,1751693520,1094828930,2576986153,757954394,252645662,2964376443,1414855848,3149649517,370555436],r[n([85,49])]=[0,235474187,470948374,303765277,941896748,908933415,607530554,708780849,1883793496,2118214995,1817866830,1649639237,1215061108,1181045119,1417561698,1517767529,3767586992,4003061179,4236429990,4069246893,3635733660,3602770327,3299278474,3400528769,2430122216,2664543715,2362090238,2193862645,2835123396,2801107407,3035535058,3135740889,3678124923,3576870512,3341394285,3374361702,3810496343,3977675356,4279080257,4043610186,2876494627,2776292904,3076639029,3110650942,2472011535,2640243204,2403728665,2169303058,1001089995,899835584,666464733,699432150,59727847,226906860,530400753,294930682,1273168787,1172967064,1475418501,1509430414,1942435775,2110667444,1876241833,1641816226,2910219766,2743034109,2976151520,3211623147,2505202138,2606453969,2302690252,2269728455,3711829422,3543599269,3240894392,3475313331,3843699074,3943906441,4178062228,4144047775,1306967366,1139781709,1374988112,1610459739,1975683434,2076935265,1775276924,1742315127,1034867998,866637845,566021896,800440835,92987698,193195065,429456164,395441711,1984812685,2017778566,1784663195,1683407248,1315562145,1080094634,1383856311,1551037884,101039829,135050206,437757123,337553864,1042385657,807962610,573804783,742039012,2531067453,2564033334,2328828971,2227573024,2935566865,2700099354,3001755655,3168937228,3868552805,3902563182,4203181171,4102977912,3736164937,3501741890,3265478751,3433712980,1106041591,1340463100,1576976609,1408749034,2043211483,2009195472,1708848333,1809054150,832877231,1068351396,766945465,599762354,159417987,126454664,361929877,463180190,2709260871,2943682380,3178106961,3009879386,2572697195,2538681184,2236228733,2336434550,3509871135,3745345300,3441850377,3274667266,3910161971,3877198648,4110568485,4211818798,2597806476,2497604743,2261089178,2295101073,2733856160,2902087851,3202437046,2968011453,3936291284,3835036895,4136440770,4169408201,3535486456,3702665459,3467192302,3231722213,2051518780,1951317047,1716890410,1750902305,1113818384,1282050075,1584504582,1350078989,168810852,67556463,371049330,404016761,841739592,1008918595,775550814,540080725,3969562369,3801332234,4035489047,4269907996,3569255213,3669462566,3366754619,3332740144,2631065433,2463879762,2160117071,2395588676,2767645557,2868897406,3102011747,3069049960,202008497,33778362,270040487,504459436,875451293,975658646,675039627,641025152,2084704233,1917518562,1615861247,1851332852,1147550661,1248802510,1484005843,1451044056,933301370,967311729,733156972,632953703,260388950,25965917,328671808,496906059,1206477858,1239443753,1543208500,1441952575,2144161806,1908694277,1675577880,1842759443,3610369226,3644379585,3408119516,3307916247,4011190502,3776767469,4077384432,4245618683,2809771154,2842737049,3144396420,3043140495,2673705150,2438237621,2203032232,2370213795],r[n([85,50])]=[0,185469197,370938394,487725847,741876788,657861945,975451694,824852259,1483753576,1400783205,1315723890,1164071807,1950903388,2135319889,1649704518,1767536459,2967507152,3152976349,2801566410,2918353863,2631447780,2547432937,2328143614,2177544179,3901806776,3818836405,4270639778,4118987695,3299409036,3483825537,3535072918,3652904859,2077965243,1893020342,1841768865,1724457132,1474502543,1559041666,1107234197,1257309336,598438867,681933534,901210569,1052338372,261314535,77422314,428819965,310463728,3409685355,3224740454,3710368113,3593056380,3875770207,3960309330,4045380933,4195456072,2471224067,2554718734,2237133081,2388260884,3212035895,3028143674,2842678573,2724322336,4138563181,4255350624,3769721975,3955191162,3667219033,3516619604,3431546947,3347532110,2933734917,2782082824,3099667487,3016697106,2196052529,2313884476,2499348523,2683765030,1179510461,1296297904,1347548327,1533017514,1786102409,1635502980,2087309459,2003294622,507358933,355706840,136428751,53458370,839224033,957055980,605657339,790073846,2373340630,2256028891,2607439820,2422494913,2706270690,2856345839,3075636216,3160175349,3573941694,3725069491,3273267108,3356761769,4181598602,4063242375,4011996048,3828103837,1033297158,915985419,730517276,545572369,296679730,446754879,129166120,213705253,1709610350,1860738147,1945798516,2029293177,1239331162,1120974935,1606591296,1422699085,4148292826,4233094615,3781033664,3931371469,3682191598,3497509347,3446004468,3328955385,2939266226,2755636671,3106780840,2988687269,2198438022,2282195339,2501218972,2652609425,1201765386,1286567175,1371368976,1521706781,1805211710,1620529459,2105887268,1988838185,533804130,350174575,164439672,46346101,870912086,954669403,636813900,788204353,2358957921,2274680428,2592523643,2441661558,2695033685,2880240216,3065962831,3182487618,3572145929,3756299780,3270937875,3388507166,4174560061,4091327024,4006521127,3854606378,1014646705,930369212,711349675,560487590,272786309,457992840,106852767,223377554,1678381017,1862534868,1914052035,2031621326,1211247597,1128014560,1580087799,1428173050,32283319,182621114,401639597,486441376,768917123,651868046,1003007129,818324884,1503449823,1385356242,1333838021,1150208456,1973745387,2125135846,1673061617,1756818940,2970356327,3120694122,2802849917,2887651696,2637442643,2520393566,2334669897,2149987652,3917234703,3799141122,4284502037,4100872472,3309594171,3460984630,3545789473,3629546796,2050466060,1899603969,1814803222,1730525723,1443857720,1560382517,1075025698,1260232239,575138148,692707433,878443390,1062597235,243256656,91341917,409198410,325965383,3403100636,3252238545,3704300486,3620022987,3874428392,3990953189,4042459122,4227665663,2460449204,2578018489,2226875310,2411029155,3198115200,3046200461,2827177882,2743944855],r[n([85,51])]=[0,218828297,437656594,387781147,875313188,958871085,775562294,590424639,1750626376,1699970625,1917742170,2135253587,1551124588,1367295589,1180849278,1265195639,3501252752,3720081049,3399941250,3350065803,3835484340,3919042237,4270507174,4085369519,3102249176,3051593425,2734591178,2952102595,2361698556,2177869557,2530391278,2614737639,3145456443,3060847922,2708326185,2892417312,2404901663,2187128086,2504130317,2555048196,3542330227,3727205754,3375740769,3292445032,3876557655,3926170974,4246310725,4027744588,1808481195,1723872674,1910319033,2094410160,1608975247,1391201670,1173430173,1224348052,59984867,244860394,428169201,344873464,935293895,984907214,766078933,547512796,1844882806,1627235199,2011214180,2062270317,1507497298,1423022939,1137477952,1321699145,95345982,145085239,532201772,313773861,830661914,1015671571,731183368,648017665,3175501286,2957853679,2807058932,2858115069,2305455554,2220981195,2474404304,2658625497,3575528878,3625268135,3473416636,3254988725,3778151818,3963161475,4213447064,4130281361,3599595085,3683022916,3432737375,3247465558,3802222185,4020912224,4172763771,4122762354,3201631749,3017672716,2764249623,2848461854,2331590177,2280796200,2431590963,2648976442,104699613,188127444,472615631,287343814,840019705,1058709744,671593195,621591778,1852171925,1668212892,1953757831,2037970062,1514790577,1463996600,1080017571,1297403050,3673637356,3623636965,3235995134,3454686199,4007360968,3822090177,4107101658,4190530515,2997825956,3215212461,2830708150,2779915199,2256734592,2340947849,2627016082,2443058075,172466556,122466165,273792366,492483431,1047239e3,861968209,612205898,695634755,1646252340,1863638845,2013908262,1963115311,1446242576,1530455833,1277555970,1093597963,1636604631,1820824798,2073724613,1989249228,1436590835,1487645946,1337376481,1119727848,164948639,81781910,331544205,516552836,1039717051,821288114,669961897,719700128,2973530695,3157750862,2871682645,2787207260,2232435299,2283490410,2667994737,2450346104,3647212047,3564045318,3279033885,3464042516,3980931627,3762502690,4150144569,4199882800,3070356634,3121275539,2904027272,2686254721,2200818878,2384911031,2570832044,2486224549,3747192018,3528626907,3310321856,3359936201,3950355702,3867060991,4049844452,4234721005,1739656202,1790575107,2108100632,1890328081,1402811438,1586903591,1233856572,1149249077,266959938,48394827,369057872,418672217,1002783846,919489135,567498868,752375421,209336225,24197544,376187827,459744698,945164165,895287692,574624663,793451934,1679968233,1764313568,2117360635,1933530610,1343127501,1560637892,1243112415,1192455638,3704280881,3519142200,3336358691,3419915562,3907448597,3857572124,4075877127,4294704398,3029510009,3113855344,2927934315,2744104290,2159976285,2377486676,2594734927,2544078150],r[n([85,52])]=[0,151849742,303699484,454499602,607398968,758720310,908999204,1059270954,1214797936,1097159550,1517440620,1400849762,1817998408,1699839814,2118541908,2001430874,2429595872,2581445614,2194319100,2345119218,3034881240,3186202582,2801699524,2951971274,3635996816,3518358430,3399679628,3283088770,4237083816,4118925222,4002861748,3885750714,1002142683,850817237,698445255,548169417,529487843,377642221,227885567,77089521,1943217067,2061379749,1640576439,1757691577,1474760595,1592394909,1174215055,1290801793,2875968315,2724642869,3111247143,2960971305,2405426947,2253581325,2638606623,2487810577,3808662347,3926825029,4044981591,4162096729,3342319475,3459953789,3576539503,3693126241,1986918061,2137062819,1685577905,1836772287,1381620373,1532285339,1078185097,1229899655,1040559837,923313619,740276417,621982671,439452389,322734571,137073913,19308535,3871163981,4021308739,4104605777,4255800159,3263785589,3414450555,3499326569,3651041127,2933202493,2815956275,3167684641,3049390895,2330014213,2213296395,2566595609,2448830231,1305906550,1155237496,1607244650,1455525988,1776460110,1626319424,2079897426,1928707164,96392454,213114376,396673818,514443284,562755902,679998e3,865136418,983426092,3708173718,3557504664,3474729866,3323011204,4180808110,4030667424,3945269170,3794078908,2507040230,2623762152,2272556026,2390325492,2975484382,3092726480,2738905026,2857194700,3973773121,3856137295,4274053469,4157467219,3371096953,3252932727,3673476453,3556361835,2763173681,2915017791,3064510765,3215307299,2156299017,2307622919,2459735317,2610011675,2081048481,1963412655,1846563261,1729977011,1480485785,1362321559,1243905413,1126790795,878845905,1030690015,645401037,796197571,274084841,425408743,38544885,188821243,3613494426,3731654548,3313212038,3430322568,4082475170,4200115116,3780097726,3896688048,2668221674,2516901860,2366882550,2216610296,3141400786,2989552604,2837966542,2687165888,1202797690,1320957812,1437280870,1554391400,1669664834,1787304780,1906247262,2022837584,265905162,114585348,499347990,349075736,736970802,585122620,972512814,821712160,2595684844,2478443234,2293045232,2174754046,3196267988,3079546586,2895723464,2777952454,3537852828,3687994002,3234156416,3385345166,4142626212,4293295786,3841024952,3992742070,174567692,57326082,410887952,292596766,777231668,660510266,1011452712,893681702,1108339068,1258480242,1343618912,1494807662,1715193156,1865862730,1948373848,2100090966,2701949495,2818666809,3004591147,3122358053,2235061775,2352307457,2535604243,2653899549,3915653703,3764988233,4219352155,4067639125,3444575871,3294430577,3746175075,3594982253,836553431,953270745,600235211,718002117,367585007,484830689,133361907,251657213,2041877159,1891211689,1806599355,1654886325,1568718495,1418573201,1335535747,1184342925];const s=new Uint8Array(16);for(let t=15;t>=0;--t)s[t]=i%256,i=parseInt(i/256);let o=null,l=16;const c=new Uint8Array(e),a=[],u=[];!function(){const t=r[n([110,117,109,98,101,114,79,102,82,111,117,110,100,115])][c[n([108,101,110,103,116,104])]];for(let e=0;e<=t;e++)a[n([112,117,115,104])]([0,0,0,0]),u[n([112,117,115,104])]([0,0,0,0]);const e=4*(t+1),i=c[n([108,101,110,103,116,104])]/4,s=d(c);let o;for(let e=0;e<i;e++)o=e>>2,a[o][e%4]=s[e],u[t-o][e%4]=s[e];let l,p=0,f=i;for(;f<e;){l=s[i-1],s[0]^=r[n([83])][l>>16&255]<<24^r[n([83])][l>>8&255]<<16^r[n([83])][255&l]<<8^r[n([83])][l>>24&255]^r[n([114,99,111,110])][p]<<24,p+=1;for(let t=1;t<i/2;t++)s[t]^=s[t-1];l=s[i/2-1],s[i/2]^=r[n([83])][255&l]^r[n([83])][l>>8&255]<<8^r[n([83])][l>>16&255]<<16^r[n([83])][l>>24&255]<<24;for(let t=i/2+1;t<i;t++)s[t]^=s[t-1];let o,c,d=0;for(;d<i&&f<e;)o=f>>2,c=f%4,a[o][c]=s[d],u[t-o][c]=s[d++],f++}for(let e=1;e<t;e++)for(let t=0;t<4;t++)l=u[e][t],u[e][t]=r[n([85,49])][l>>24&255]^r[n([85,50])][l>>16&255]^r[n([85,51])][l>>8&255]^r[n([85,52])][255&l]}();for(let e=0;e<t[n([108,101,110,103,116,104])];e++)16===l&&(o=f(s),l=0,p(s)),t[e]^=o[l++];return t;function d(t){const e=[];for(let i=0;i<t[n([108,101,110,103,116,104])];i+=4)e[n([112,117,115,104])](t[i]<<24|t[i+1]<<16|t[i+2]<<8|t[i+3]);return e}function p(t){for(let e=15;e>=0;e--){if(255!==t[e]){t[e]++;break}t[e]=0}}function f(t){const e=a[n([108,101,110,103,116,104])]-1,i=[0,0,0,0];let s=d(t);for(let t=0;t<4;t++)s[t]^=a[0][t];for(let t=1;t<e;t++){for(let e=0;e<4;e++)i[e]=r[n([84,49])][s[e]>>24&255]^r[n([84,50])][s[(e+1)%4]>>16&255]^r[n([84,51])][s[(e+2)%4]>>8&255]^r[n([84,52])][255&s[(e+3)%4]]^a[t][e];s=i[n([115,108,105,99,101])]()}const o=new Uint8Array(16);let l;for(let t=0;t<4;t++)l=a[e][t],o[4*t]=255&(r[n([83])][s[t]>>24&255]^l>>24),o[4*t+1]=255&(r[n([83])][s[(t+1)%4]>>16&255]^l>>16),o[4*t+2]=255&(r[n([83])][s[(t+2)%4]>>8&255]^l>>8),o[4*t+3]=255&(r[n([83])][255&s[(t+3)%4]]^l);return o}}(r,e,o+256*s))}(t,new Uint8Array([...s,29,221,175,90,231,133,239,240,75,180,...o]))}const c=function(){const t=[{[n([105,100])]:1,[n([102,101,97,116,117,114,101,78,97,109,101])]:n([67,111,109,109,101,110,116,115]),[n([112,108,117,103,105,110,78,97,109,101])]:n([67,111,109,109,101,110,116,115,82,101,112,111,115,105,116,111,114,121]),[n([108,105,99,101,110,115,101,83,116,97,116,117,115,80,114,101,102,105,120])]:n([108,105,99,101,110,115,101,75,101,121]),[n([104,97,110,100,108,101,114])]:n([99,104,101,99,107,76,105,99,101,110,115,101]),[n([99,104,101,99,107,65,108,115,111])]:[{[n([105,100])]:2,[n([102,101,97,116,117,114,101,78,97,109,101])]:n([84,114,97,99,107,32,67,104,97,110,103,101,115]),[n([112,108,117,103,105,110,78,97,109,101])]:n([84,114,97,99,107,67,104,97,110,103,101,115,69,100,105,116,105,110,103]),[n([108,105,99,101,110,115,101,83,116,97,116,117,115,80,114,101,102,105,120])]:n([108,105,99,101,110,115,101,75,101,121]),[n([104,97,110,100,108,101,114])]:n([99,104,101,99,107,76,105,99,101,110,115,101,70,111,114,84,114,97,99,107,67,104,97,110,103,101,115]),[n([111,112,116,105,111,110,115])]:{[n([97,105,119,115,103,105,99])]:!0,[n([97,105,116,99,100,103,105,108])]:!0,[n([97,105,114,118,105,105,108])]:!0}}],[n([111,112,116,105,111,110,115])]:{[n([97,105,119,115,103,105,99])]:!0,[n([97,105,116,99,100,103,105,108])]:!0,[n([97,105,114,118,105,105,108])]:!0}},{[n([105,100])]:3,[n([102,101,97,116,117,114,101,78,97,109,101])]:n([80,97,103,105,110,97,116,105,111,110]),[n([112,108,117,103,105,110,78,97,109,101])]:n([80,97,103,105,110,97,116,105,111,110,76,111,111,107,117,112]),[n([108,105,99,101,110,115,101,83,116,97,116,117,115,80,114,101,102,105,120])]:n([112,97,103,105,110,97,116,105,111,110,76,105,99,101,110,115,101,75,101,121]),[n([104,97,110,100,108,101,114])]:n([99,104,101,99,107,76,105,99,101,110,115,101])},{[n([105,100])]:4,[n([102,101,97,116,117,114,101,78,97,109,101])]:n([82,101,118,105,115,105,111,110,32,72,105,115,116,111,114,121]),[n([112,108,117,103,105,110,78,97,109,101])]:n([82,101,118,105,115,105,111,110,115,82,101,112,111,115,105,116,111,114,121]),[n([108,105,99,101,110,115,101,83,116,97,116,117,115,80,114,101,102,105,120])]:n([108,105,99,101,110,115,101,75,101,121]),[n([104,97,110,100,108,101,114])]:n([99,104,101,99,107,76,105,99,101,110,115,101,70,111,114,82,101,118,105,115,105,111,110,72,105,115,116,111,114,121]),[n([111,112,116,105,111,110,115])]:{[n([97,105,119,115,103,105,99])]:!0,[n([97,105,116,99,100,103,105,108])]:!0,[n([97,105,114,118,105,105,108])]:!0}},{[n([105,100])]:5,[n([102,101,97,116,117,114,101,78,97,109,101])]:n([68,111,99,117,109,101,110,116,32,79,117,116,108,105,110,101]),[n([112,108,117,103,105,110,78,97,109,101])]:n([68,111,99,117,109,101,110,116,79,117,116,108,105,110,101,85,73]),[n([108,105,99,101,110,115,101,83,116,97,116,117,115,80,114,101,102,105,120])]:n([100,111,99,117,109,101,110,116,79,117,116,108,105,110,101,76,105,99,101,110,115,101,75,101,121]),[n([104,97,110,100,108,101,114])]:n([99,104,101,99,107,76,105,99,101,110,115,101]),[n([111,112,116,105,111,110,115])]:{[n([102,103,105])]:[12]}},{[n([105,100])]:6,[n([102,101,97,116,117,114,101,78,97,109,101])]:n([70,111,114,109,97,116,32,80,97,105,110,116,101,114]),[n([112,108,117,103,105,110,78,97,109,101])]:n([70,111,114,109,97,116,80,97,105,110,116,101,114,85,73]),[n([108,105,99,101,110,115,101,83,116,97,116,117,115,80,114,101,102,105,120])]:n([102,111,114,109,97,116,80,97,105,110,116,101,114,76,105,99,101,110,115,101,75,101,121]),[n([104,97,110,100,108,101,114])]:n([99,104,101,99,107,76,105,99,101,110,115,101]),[n([111,112,116,105,111,110,115])]:{[n([102,103,105])]:[12]}},{[n([105,100])]:7,[n([102,101,97,116,117,114,101,78,97,109,101])]:n([83,108,97,115,104,32,67,111,109,109,97,110,100]),[n([112,108,117,103,105,110,78,97,109,101])]:n([83,108,97,115,104,67,111,109,109,97,110,100,85,73]),[n([108,105,99,101,110,115,101,83,116,97,116,117,115,80,114,101,102,105,120])]:n([115,108,97,115,104,67,111,109,109,97,110,100,76,105,99,101,110,115,101,75,101,121]),[n([104,97,110,100,108,101,114])]:n([99,104,101,99,107,76,105,99,101,110,115,101]),[n([111,112,116,105,111,110,115])]:{[n([102,103,105])]:[12]}},{[n([105,100])]:8,[n([102,101,97,116,117,114,101,78,97,109,101])]:n([84,97,98,108,101,32,111,102,32,67,111,110,116,101,110,116,115]),[n([112,108,117,103,105,110,78,97,109,101])]:n([84,97,98,108,101,79,102,67,111,110,116,101,110,116,115,69,100,105,116,105,110,103]),[n([108,105,99,101,110,115,101,83,116,97,116,117,115,80,114,101,102,105,120])]:n([116,97,98,108,101,79,102,67,111,110,116,101,110,116,115,76,105,99,101,110,115,101,75,101,121]),[n([104,97,110,100,108,101,114])]:n([99,104,101,99,107,76,105,99,101,110,115,101]),[n([111,112,116,105,111,110,115])]:{[n([102,103,105])]:[12]}},{[n([105,100])]:9,[n([102,101,97,116,117,114,101,78,97,109,101])]:n([84,101,109,112,108,97,116,101]),[n([112,108,117,103,105,110,78,97,109,101])]:n([84,101,109,112,108,97,116,101,85,73]),[n([108,105,99,101,110,115,101,83,116,97,116,117,115,80,114,101,102,105,120])]:n([116,101,109,112,108,97,116,101,76,105,99,101,110,115,101,75,101,121]),[n([104,97,110,100,108,101,114])]:n([99,104,101,99,107,76,105,99,101,110,115,101]),[n([111,112,116,105,111,110,115])]:{[n([102,103,105])]:[12,14]}},{[n([105,100])]:10,[n([102,101,97,116,117,114,101,78,97,109,101])]:n([80,97,115,116,101,32,102,114,111,109,32,79,102,102,105,99,101,32,69,110,104,97,110,99,101,100]),[n([112,108,117,103,105,110,78,97,109,101])]:n([80,97,115,116,101,70,114,111,109,79,102,102,105,99,101,69,110,104,97,110,99,101,100,73,110,108,105,110,101,114]),[n([108,105,99,101,110,115,101,83,116,97,116,117,115,80,114,101,102,105,120])]:n([112,97,115,116,101,70,114,111,109,79,102,102,105,99,101,69,110,104,97,110,99,101,100,76,105,99,101,110,115,101,75,101,121]),[n([104,97,110,100,108,101,114])]:n([99,104,101,99,107,76,105,99,101,110,115,101]),[n([111,112,116,105,111,110,115])]:{[n([102,103,105])]:[12]}},{[n([105,100])]:11,[n([102,101,97,116,117,114,101,78,97,109,101])]:n([65,73,32,65,115,115,105,115,116,97,110,116]),[n([112,108,117,103,105,110,78,97,109,101])]:n([65,73,65,115,115,105,115,116,97,110,116,85,73]),[n([108,105,99,101,110,115,101,83,116,97,116,117,115,80,114,101,102,105,120])]:n([97,105,76,105,99,101,110,115,101,75,101,121]),[n([104,97,110,100,108,101,114])]:n([99,104,101,99,107,76,105,99,101,110,115,101])},{[n([105,100])]:12,[n([102,101,97,116,117,114,101,78,97,109,101])]:n([80,114,111,100,117,99,116,105,118,105,116,121,32,112,97,99,107])},{[n([105,100])]:13,[n([102,101,97,116,117,114,101,78,97,109,101])]:n([67,97,115,101,32,67,104,97,110,103,101]),[n([112,108,117,103,105,110,78,97,109,101])]:n([67,97,115,101,67,104,97,110,103,101,85,73]),[n([108,105,99,101,110,115,101,83,116,97,116,117,115,80,114,101,102,105,120])]:n([99,97,115,101,67,104,97,110,103,101,76,105,99,101,110,115,101,75,101,121]),[n([104,97,110,100,108,101,114])]:n([99,104,101,99,107,76,105,99,101,110,115,101]),[n([111,112,116,105,111,110,115])]:{[n([102,103,105])]:[12]}},{[n([105,100])]:14,[n([102,101,97,116,117,114,101,78,97,109,101])]:n([68,114,117,112,97,108,32,112,97,99,107]),[n([102,111,114,98,105,100,100,101,110,72,97,110,100,108,101,114])]:n([102,111,114,98,105,100,100,101,110,72,97,110,100,108,101,114,70,111,114,68,114,117,112,97,108])},{[n([105,100])]:15,[n([102,101,97,116,117,114,101,78,97,109,101])]:n([77,117,108,116,105,32,76,101,118,101,108,32,76,105,115,116]),[n([112,108,117,103,105,110,78,97,109,101])]:n([77,117,108,116,105,76,101,118,101,108,76,105,115,116,69,100,105,116,105,110,103]),[n([108,105,99,101,110,115,101,83,116,97,116,117,115,80,114,101,102,105,120])]:n([109,117,108,116,105,76,101,118,101,108,76,105,115,116,76,105,99,101,110,115,101,75,101,121]),[n([104,97,110,100,108,101,114])]:n([99,104,101,99,107,76,105,99,101,110,115,101])}];return function t(e){e[n([102,111,114,69,97,99,104])]((e=>{e[n([112,101,114,109,105,115,115,105,111,110,77,97,115,107])]=1<<e[n([105,100])]-1,r(e)&&e[n([99,104,101,99,107,65,108,115,111])]&&t(e[n([99,104,101,99,107,65,108,115,111])])}))}(t),t}(),a={[n([99,104,101,99,107,76,105,99,101,110,115,101])]:function(t,e){b(y(t,e),e)},[n([99,104,101,99,107,76,105,99,101,110,115,101,70,111,114,84,114,97,99,107,67,104,97,110,103,101,115])]:function(t,e){b(function(t,e){try{if(M(d,n([84,114,97,99,107,67,104,97,110,103,101,115,69,100,105,116,105,110,103]))&&t){const i=C(d,n([84,114,97,99,107,67,104,97,110,103,101,115,69,100,105,116,105,110,103]))[n([95,101,120,101,99,117,116,101,83,117,103,103,101,115,116,105,111,110])];if(parseInt(i)/2>t[n([101,120,112,105,114,97,116,105,111,110,68,97,116,101])])return w(e[n([108,105,99,101,110,115,101,83,116,97,116,117,115,80,114,101,102,105,120])]+n([73,110,118,97,108,105,100]))}return y(t,e)}catch(t){return w(e[n([108,105,99,101,110,115,101,83,116,97,116,117,115,80,114,101,102,105,120])]+n([73,110,118,97,108,105,100]))}}(t,e),e)},[n([99,104,101,99,107,76,105,99,101,110,115,101,70,111,114,82,101,118,105,115,105,111,110,72,105,115,116,111,114,121])]:function(t,e){const i=o[0]*s[1],r=o[0]*s[2],l=o[2]*s[2];function c(t,e){a(),w(e+n([84,114,105,97,108,76,105,109,105,116,58])+t),window[g()]=t===n([116,105,109,101])?i:r}function a(){const t=d;function e(){M(t,n([82,101,118,105,115,105,111,110,84,114,97,99,107,101,114]))&&(C(t,n([82,101,118,105,115,105,111,110,84,114,97,99,107,101,114]))[n([117,110,98,105,110,100])](n([105,115,69,110,97,98,108,101,100])),C(t,n([82,101,118,105,115,105,111,110,84,114,97,99,107,101,114]))[n([105,115,69,110,97,98,108,101,100])]=!1,C(t,n([82,101,118,105,115,105,111,110,84,114,97,99,107,101,114]))[n([117,112,100,97,116,101])]=L,C(t,n([82,101,118,105,115,105,111,110,84,114,97,99,107,101,114]))[n([115,97,118,101,82,101,118,105,115,105,111,110])]=L,t[n([109,111,100,101,108])][n([99,104,97,110,103,101])]=L,t[n([109,111,100,101,108])][n([101,110,113,117,101,117,101,67,104,97,110,103,101])]=L,t[n([101,110,97,98,108,101,82,101,97,100,79,110,108,121,77,111,100,101])](n([109,111,100,101,108]))),M(t,n([82,101,118,105,115,105,111,110,86,105,101,119,101,114]))&&(C(t,n([82,101,118,105,115,105,111,110,86,105,101,119,101,114]))[n([117,110,98,105,110,100])](n([105,115,69,110,97,98,108,101,100])),C(t,n([82,101,118,105,115,105,111,110,86,105,101,119,101,114]))[n([105,115,69,110,97,98,108,101,100])]=!1,C(t,n([82,101,118,105,115,105,111,110,86,105,101,119,101,114]))[n([99,111,109,112,97,114,101])]=L,C(t,n([82,101,118,105,115,105,111,110,86,105,101,119,101,114]))[n([95,103,101,116,68,105,102,102])]=L)}t[n([115,116,97,116,101])]==n([114,101,97,100,121])?e():t[n([111,110,99,101])](n([114,101,97,100,121]),(()=>{const i=p;if(M(t,n([82,101,118,105,115,105,111,110,84,114,97,99,107,101,114]))&&e(),M(t,n([82,101,118,105,115,105,111,110,86,105,101,119,101,114]))){const r=C(t,n([82,101,118,105,115,105,111,110,115,82,101,112,111,115,105,116,111,114,121])),s=r[i(541)](0),o=r[i(515)](s[n([105,100])]);C(t,n([82,101,118,105,115,105,111,110,86,105,101,119,101,114]))[n([99,111,109,112,97,114,101])](s[n([105,100])],o?o[n([105,100])]:null,1)[i(536)]((()=>e()))}}))}M(d,n([87,101,98,83,111,99,107,101,116,71,97,116,101,119,97,121]))&&C(d,n([87,101,98,83,111,99,107,101,116,71,97,116,101,119,97,121]))[n([115,116,97,116,101])]==n([99,111,110,110,101,99,116,101,100])&&(window[g()]=l),function(t,e){if(t==e[n([108,105,99,101,110,115,101,83,116,97,116,117,115,80,114,101,102,105,120])]+n([73,110,118,97,108,105,100]))a();else if(t==e[n([108,105,99,101,110,115,101,83,116,97,116,117,115,80,114,101,102,105,120])]+n([84,114,105,97,108])){const t=function(){const t=p;if(!M(d,n([82,101,118,105,115,105,111,110,86,105,101,119,101,114])))return!1;for(const e in window)if(Number[t(570)](Number(e))){if(window[e]===i)return n([116,105,109,101]);if(window[e]===r)return n([114,101,118,105,115,105,111,110,115])}return!1}();t&&c(t,e[n([108,105,99,101,110,115,101,83,116,97,116,117,115,80,114,101,102,105,120])]);const l=function(){let t=o[6]*s[8]*s[6];return M(d,n([82,101,118,105,115,105,111,110,86,105,101,119,101,114]))&&(t/=10),t}();window[n([115,101,116,84,105,109,101,111,117,116])]((()=>{c(n([116,105,109,101]),e[n([108,105,99,101,110,115,101,83,116,97,116,117,115,80,114,101,102,105,120])])}),l);const a=C(d,n([82,101,118,105,115,105,111,110,115,82,101,112,111,115,105,116,111,114,121]))[n([95,114,101,118,105,115,105,111,110,115])];a[n([108,101,110,103,116,104])]>=7?c(n([114,101,118,105,115,105,111,110,115]),e[n([108,105,99,101,110,115,101,83,116,97,116,117,115,80,114,101,102,105,120])]):a.on(n([97,100,100]),(()=>{a[n([108,101,110,103,116,104])]>=7&&c(n([114,101,118,105,115,105,111,110,115]),e[n([108,105,99,101,110,115,101,83,116,97,116,117,115,80,114,101,102,105,120])])}))}}(function(t,e){try{return function(){const t=p;if(!M(d,n([82,101,118,105,115,105,111,110,86,105,101,119,101,114])))return!1;for(const e in window)if(Number[t(570)](Number(e))&&window[e]===l)return!0;return!1}()?w(e[n([108,105,99,101,110,115,101,83,116,97,116,117,115,80,114,101,102,105,120])]+n([86,97,108,105,100])):y(t,e)}catch(t){return w(e[n([108,105,99,101,110,115,101,83,116,97,116,117,115,80,114,101,102,105,120])]+n([73,110,118,97,108,105,100]))}}(t,e),e)}},u=e[n([99,111,110,115,116,114,117,99,116,111,114])][n([112,108,117,103,105,110,78,97,109,101])],d=n([99,111,110,116,101,120,116])in e?e[i(564)]:e[i(533)],f=n([52,48,52,56,48,56,51,54]),h=n([65,66,67,68,69,70,71,72,73,74,75,76,77,78,79,80,81,82,83,84,85,86,87,88,89,90,97,98,99,100,101,102,103,104,105,106,107,108,109,110,111,112,113,114,115,116,117,118,119,120,121,122,48,49,50,51,52,53,54,55,56,57]),m=d[i(493)][i(560)](n([108,105,99,101,110,115,101,75,101,121])),v=c[n([102,105,108,116,101,114])](r)[n([102,105,110,100])]((t=>t[n([112,108,117,103,105,110,78,97,109,101])]===u));function y(t,e){try{return function(t){if(!M(d,t[n([112,108,117,103,105,110,78,97,109,101])]))return!0;const e=t[n([111,112,116,105,111,110,115])]||{},i=e[n([97,105,119,115,103,105,99])]||!1,r=e[n([97,105,116,99,100,103,105,108])]||!1,s=e[n([97,105,114,118,105,105,108])]||!1;return!(!M(d,n([87,101,98,83,111,99,107,101,116,71,97,116,101,119,97,121]))||C(d,n([87,101,98,83,111,99,107,101,116,71,97,116,101,119,97,121]))[n([115,116,97,116,101])]!=n([99,111,110,110,101,99,116,101,100])||!i)||(!(!M(d,n([84,114,97,99,107,67,104,97,110,103,101,115,68,97,116,97,71,101,116,116,101,114]))||C(d,n([84,114,97,99,107,67,104,97,110,103,101,115,68,97,116,97,71,101,116,116,101,114]))[n([114,101,115,117,108,116])]!=n([101,110,100])||!r)||!(!M(d,n([82,101,118,105,115,105,111,110,86,105,101,119,101,114,73,110,116,101,103,114,97,116,105,111,110]))||C(d,n([82,101,118,105,115,105,111,110,86,105,101,119,101,114,73,110,116,101,103,114,97,116,105,111,110]))[n([114,101,115,117,108,116])]!=n([101,110,100])||!s))}(e)?w(e[n([108,105,99,101,110,115,101,83,116,97,116,117,115,80,114,101,102,105,120])]+n([86,97,108,105,100])):t&&function(t,e){const r=!!(t&e[n([112,101,114,109,105,115,115,105,111,110,77,97,115,107])]),s=function(t,e){const r=(e[n([111,112,116,105,111,110,115])]||{})[n([102,103,105])]||null;return!!r&&c[n([102,105,108,116,101,114])]((t=>r[n([105,110,99,108,117,100,101,115])](t[n([105,100])])))[n([102,105,108,116,101,114])]((t=>!function(t){const e=i,r={[n([102,111,114,98,105,100,100,101,110,72,97,110,100,108,101,114,70,111,114,68,114,117,112,97,108])]:x};return!!t[e(487)]&&r[t[e(487)]]()}(t)))[n([115,111,109,101])]((e=>!!(t&e[n([112,101,114,109,105,115,115,105,111,110,77,97,115,107])])))}(t,e);return r||s}(t[n([97,108,108,111,119,101,100,80,108,117,103,105,110,115])],e)?t[n([105,115,73,110,116,101,114,110,97,108])]&&!window[n([111,112,101,110])][n([99,108,111,115,101,100])]||parseInt(f)/2>t[n([101,120,112,105,114,97,116,105,111,110,68,97,116,101])]?w(e[n([108,105,99,101,110,115,101,83,116,97,116,117,115,80,114,101,102,105,120])]+n([73,110,118,97,108,105,100])):t[n([105,115,84,114,105,97,108])]?w(e[n([108,105,99,101,110,115,101,83,116,97,116,117,115,80,114,101,102,105,120])]+n([84,114,105,97,108])):w(e[n([108,105,99,101,110,115,101,83,116,97,116,117,115,80,114,101,102,105,120])]+n([86,97,108,105,100])):w(e[n([108,105,99,101,110,115,101,83,116,97,116,117,115,80,114,101,102,105,120])]+n([73,110,118,97,108,105,100]))}catch(t){return w(e[n([108,105,99,101,110,115,101,83,116,97,116,117,115,80,114,101,102,105,120])]+n([73,110,118,97,108,105,100]))}}function b(e,i){if(d instanceof t.Context){const t=d;e==i[n([108,105,99,101,110,115,101,83,116,97,116,117,115,80,114,101,102,105,120])]+n([73,110,118,97,108,105,100])?I(t):e==i[n([108,105,99,101,110,115,101,83,116,97,116,117,115,80,114,101,102,105,120])]+n([84,114,105,97,108])&&window[n([115,101,116,84,105,109,101,111,117,116])]((()=>{I(t),w(i[n([108,105,99,101,110,115,101,83,116,97,116,117,115,80,114,101,102,105,120])]+n([84,114,105,97,108,76,105,109,105,116,58,116,105,109,101]))}),o[6]*s[8]*s[6]),t[n([101,100,105,116,111,114,115])][n([111,110])](n([97,100,100]),((t,r)=>{e!=i[n([108,105,99,101,110,115,101,83,116,97,116,117,115,80,114,101,102,105,120])]+n([73,110,118,97,108,105,100])&&e!=i[n([108,105,99,101,110,115,101,83,116,97,116,117,115,80,114,101,102,105,120])]+n([84,114,105,97,108,76,105,109,105,116,58,116,105,109,101])&&e!=i[n([108,105,99,101,110,115,101,83,116,97,116,117,115,80,114,101,102,105,120])]+n([84,114,105,97,108,76,105,109,105,116,58,111,112,101,114,97,116,105,111,110,115])||k(r)}))}else{const t=d;e==i[n([108,105,99,101,110,115,101,83,116,97,116,117,115,80,114,101,102,105,120])]+n([73,110,118,97,108,105,100])?k(t):e==i[n([108,105,99,101,110,115,101,83,116,97,116,117,115,80,114,101,102,105,120])]+n([84,114,105,97,108])&&t[n([111,110])](n([114,101,97,100,121]),(()=>{let e=0;t[n([109,111,100,101,108])][n([111,110])](n([97,112,112,108,121,79,112,101,114,97,116,105,111,110]),((r,s)=>{s[0][n([105,115,68,111,99,117,109,101,110,116,79,112,101,114,97,116,105,111,110])]&&e++,504===e&&(k(t),w(i[n([108,105,99,101,110,115,101,83,116,97,116,117,115,80,114,101,102,105,120])]+n([84,114,105,97,108,76,105,109,105,116,58,111,112,101,114,97,116,105,111,110,115])),r[n([111,102,102])]())}),{priority:n([104,105,103,104,101,115,116])})}))}}function w(t){const e=g();return d[e]=t,t}function g(){const t=String(window[n([112,101,114,102,111,114,109,97,110,99,101])][n([110,111,119])]())[n([114,101,112,108,97,99,101])](n([46]),"");let e="";for(let i=0;i<t[n([108,101,110,103,116,104])];i+=2){let r=parseInt(t[n([115,117,98,115,116,114,105,110,103])](i,i+2));r>=h[n([108,101,110,103,116,104])]&&(r-=h[n([108,101,110,103,116,104])]),e+=h[r]}return e}function I(t){for(const e of t[n([101,100,105,116,111,114,115])])k(e);C(t,n([67,111,109,109,101,110,116,115,82,101,112,111,115,105,116,111,114,121]))[n([115,119,105,116,99,104,82,101,97,100,79,110,108,121])](!0),C(t,n([67,111,109,109,101,110,116,115,82,101,112,111,115,105,116,111,114,121]))[n([115,119,105,116,99,104,82,101,97,100,79,110,108,121])]=L}function k(t){function e(){t[n([109,111,100,101,108])][n([99,104,97,110,103,101])]=L,t[n([109,111,100,101,108])][n([101,110,113,117,101,117,101,67,104,97,110,103,101])]=L,t[n([101,110,97,98,108,101,82,101,97,100,79,110,108,121,77,111,100,101])](n([109,111,100,101,108]))}t[n([115,116,97,116,101])]==n([114,101,97,100,121])?e():t[n([111,110,99,101])](n([114,101,97,100,121]),(()=>e()))}function L(){return null}function x(){return!window[n([68,114,117,112,97,108])]||!M(d,n([100,114,117,112,97,108,80,111,119,101,114,101,100,66,121]))}function M(t,e){return t[n([112,108,117,103,105,110,115])][n([104,97,115])](e)}function C(t,e){return t[n([112,108,117,103,105,110,115])][n([103,101,116])](e)}v&&function t(e,i){a[i[n([104,97,110,100,108,101,114])]](e,i),i[n([99,104,101,99,107,65,108,115,111])]&&i[n([99,104,101,99,107,65,108,115,111])][n([102,105,108,116,101,114])]((t=>M(d,t[n([112,108,117,103,105,110,78,97,109,101])])))[n([102,111,114,69,97,99,104])]((n=>t(e,n)))}(function(t){try{const e=l(t),i=JSON[n([112,97,114,115,101])](e),r=parseInt(i[n([49])]),s=i[n([50])]||"",o=parseInt(i[n([51])]),c=parseInt(i[n([52])])||0,a=parseInt(i[n([53])])||0;return{[n([112,114,111,100,117,99,116,78,97,109,101])]:s,[n([97,108,108,111,119,101,100,80,108,117,103,105,110,115])]:c,[n([101,120,112,105,114,97,116,105,111,110,68,97,116,101])]:r,[n([105,115,84,114,105,97,108])]:o,[n([105,115,73,110,116,101,114,110,97,108])]:a}}catch(t){return null}}(m),v)})(e)}(this)}}function p(t,e){const n=u();return(p=function(t,e){return n[t-=479]})(t,e)}function f(t,e,n){const i=a;let r=e[i(539)][t%e[i(539)][i(582)]];if(void 0===r[i(489)]||r[i(489)])return n[i(602)](0,t+1)[i(556)](((t,n)=>(r=e[i(539)][n%e[i(539)][i(582)]],h(r[i(578)],t))))[i(571)]("");{const t=n[n[i(582)]-1];return h(r[i(578)],t)}}function h(t,e){return a(508)==typeof t?t(e):t}var m=n(311),v=n(673),y=n.n(v),b=n(541),w={injectType:"singletonStyleTag",attributes:{"data-cke":!0},insert:"head",singleton:!0};y()(b.A,w);b.A.locals;function g(){const t=["keystrokes","isCollapsed","change:isEnabled","isNaN","split","focusCycler","focusTracker","468YzxRFc","numeric","window","focusables","56DlZLBD","listStart","ck-multi-level-list-styles","89210qeRjXc","children","some","getPropertyValue","push","ck-multi-level-list-properties_without-styles","stopPropagation","fieldView","length","set","arrowright","add","ck-multi-level-list-properties__start-index","grid-template-columns","547688uWnKhh","first","focus","Start at","_addListPropertyViews","delegate","checkValidity","_createStylesView","6MiSbPn","errorText","last","ck-multi-level-list-properties_with-multi-level-properties","styles","valueAsNumber","locale","toMany","addMany","arrowleft","createCollection","arrowup","uiLanguageDirection","buttonView","List properties","Start index must be greater than 0.","startIndexFieldView","1968027YcdNVr","focusLast","element","listenTo","render","4378bGEFpo","destroy","input","getComputedStyle","14083520MSxhpW","44sRYQHk","tab","ck-multi-level-list-properties","1639008bUSVgh","1581160YnUWvt","execute","Invalid start index value.","stylesView","isEnabled","fire","arrowdown","div","focusFirst","bind","startIndex","setTemplate","_createStartIndexField","shift + tab","additionalPropertiesCollapsibleView"];return(g=function(){return t})()}const I=k;function k(t,e){const n=g();return(k=function(t,e){return n[t-=275]})(t,e)}!function(t,e){const n=k,i=t();for(;;)try{if(350679===-parseInt(n(285))/1*(parseInt(n(290))/2)+-parseInt(n(280))/3+-parseInt(n(293))/4+-parseInt(n(294))/5*(-parseInt(n(345))/6)+parseInt(n(320))/7*(-parseInt(n(337))/8)+-parseInt(n(316))/9*(-parseInt(n(323))/10)+parseInt(n(289))/11)break;i.push(i.shift())}catch(t){i.push(i.shift())}}(g);class L extends m.View{constructor(t,{enabledProperties:e,styleButtonViews:n,styleGridAriaLabel:i}){const s=k;super(t),this[s(297)]=null,this[s(308)]=null,this[s(279)]=null,this[s(315)]=new r.FocusTracker,this[s(309)]=new r.KeystrokeHandler,this[s(319)]=new m.ViewCollection;const o=["ck",s(292)];this[s(324)]=this[s(355)](),this[s(314)]=new m.FocusCycler({focusables:this[s(319)],focusTracker:this[s(315)],keystrokeHandler:this[s(309)],actions:{focusPrevious:s(307),focusNext:s(291)}}),e[s(349)]?(this[s(297)]=this[s(344)](n,i),this[s(324)][s(334)](this[s(297)])):o[s(327)](s(328)),e[s(304)]&&(this[s(341)](e),o[s(327)](s(348))),this[s(305)]({tag:s(301),attributes:{class:o},children:this[s(324)]})}[I(284)](){const t=I;if(super[t(284)](),this[t(297)]){this[t(319)][t(334)](this[t(297)]),this[t(315)][t(334)](this[t(297)][t(282)]),this[t(279)]&&(this[t(319)][t(334)](this[t(324)][t(347)][t(276)]),this[t(315)][t(334)](this[t(324)][t(347)][t(276)][t(282)]));for(const e of this[t(297)][t(324)])this[t(297)][t(315)][t(334)](e[t(282)]);(0,m.addKeyboardHandlingForGrid)({keystrokeHandler:this[t(297)][t(309)],focusTracker:this[t(297)][t(315)],gridItems:this[t(297)][t(324)],numberOfColumns:()=>r.global[t(318)][t(288)](this[t(297)][t(282)])[t(326)](t(336))[t(313)](" ")[t(331)],uiLanguageDirection:this[t(351)]&&this[t(351)][t(275)]})}if(this[t(279)]){this[t(319)][t(334)](this[t(279)]),this[t(315)][t(334)](this[t(279)][t(282)]);const e=e=>e[t(329)]();this[t(309)][t(332)](t(333),e),this[t(309)][t(332)](t(354),e),this[t(309)][t(332)](t(356),e),this[t(309)][t(332)](t(300),e)}this[t(309)][t(283)](this[t(282)])}[I(339)](){const t=I;this[t(314)][t(302)]()}[I(281)](){const t=I;this[t(314)][t(281)]()}[I(286)](){const t=I;super[t(286)](),this[t(315)][t(286)](),this[t(309)][t(286)]()}[I(344)](t,e){const n=I,i=new m.View(this[n(351)]);return i[n(324)]=i[n(355)](),i[n(324)][n(353)](t),i[n(305)]({tag:n(301),attributes:{"aria-label":e,class:["ck",n(322)]},children:i[n(324)]}),i[n(324)][n(342)](n(295)).to(this),i[n(339)]=function(){const t=n;this[t(324)][t(338)][t(339)]()},i[n(315)]=new r.FocusTracker,i[n(309)]=new r.KeystrokeHandler,i[n(284)](),i[n(309)][n(283)](i[n(282)]),i}[I(341)](t){const e=I,n=this[e(351)].t,i=[];t[e(304)]&&(this[e(279)]=this[e(306)](),i[e(327)](this[e(279)])),t[e(349)]?(this[e(308)]=new m.CollapsibleView(this[e(351)],i),this[e(308)][e(332)]({label:n(e(277)),isCollapsed:!0}),this[e(308)][e(276)][e(303)](e(298))[e(352)](i,e(298),((...t)=>t[e(325)]((t=>t)))),this[e(308)][e(276)].on(e(311),((t,n,i)=>{const r=e;i||(this[r(308)][r(310)]=!0)})),this[e(324)][e(334)](this[e(308)])):this[e(324)][e(353)](i)}[I(306)](){const t=I,e=this[t(351)].t,n=new m.LabeledFieldView(this[t(351)],m.createLabeledInputNumber);return n[t(332)]({label:e(t(340)),class:t(335)}),n[t(330)][t(332)]({min:0,step:1,value:1,inputMode:t(317)}),n[t(330)].on(t(287),(()=>{const i=t,r=n[i(330)][i(282)],s=r[i(350)];Number[i(312)](s)?n[i(346)]=e(i(296)):r[i(343)]()?this[i(299)](i(321),{startIndex:s}):n[i(346)]=e(i(278))})),n}}class x extends t.Plugin{static get pluginName(){return"MultiLevelListUI"}constructor(t){super(t),this._licenseKeyCheckInterval=null}init(){const t=this.editor,e=t.locale.t;t.ui.componentFactory.add("multiLevelList",function({editor:t,parentCommandName:e,buttonLabel:n,buttonIcon:i,styleGridAriaLabel:r,styleDefinitions:s}){const o=t.commands.get(e),l=t.config.get("list.properties")||{},c=t.plugins.has("ListProperties"),a=l.startIndex;return c&&a?l=>{const c=(0,m.createDropdown)(l,m.SplitButtonView),a=c.buttonView;return c.bind("isEnabled").to(o),c.class="ck-list-styles-dropdown",a.on("execute",(()=>{t.execute(e),t.editing.view.focus()})),a.set({label:n,icon:i,tooltip:!0,isToggleable:!0}),a.bind("isOn").to(o,"value",(t=>!!t)),c.once("change:isOpen",(()=>{const n=function({editor:t,dropdownView:e,styleDefinitions:n,styleGridAriaLabel:i}){const r=t.locale,s=t.config.get("list.properties");s.reversed=!1,n.length||(s.styles=!1);const o=new L(r,{styleGridAriaLabel:i,enabledProperties:s,styleButtonViews:null});if(s.startIndex){const e=t.commands.get("listStart");o.startIndexFieldView.bind("isEnabled").to(e),o.startIndexFieldView.fieldView.bind("value").to(e),o.on("listStart",((e,n)=>t.execute("listStart",n)))}return o.delegate("execute").to(e),o}({editor:t,dropdownView:c,parentCommandName:e,styleGridAriaLabel:r,styleDefinitions:s});c.panelView.children.add(n)})),c.on("execute",(()=>{t.editing.view.focus()})),c}:r=>{const s=new m.ButtonView(r);return s.set({label:n,icon:i,tooltip:!0,isToggleable:!0}),s.on("execute",(()=>{t.execute(e),t.editing.view.focus()})),s}}({editor:t,parentCommandName:"multiLevelList",buttonLabel:e("Multi-level List"),buttonIcon:'<svg viewBox="0 0 20 20" xmlns="http://www.w3.org/2000/svg"><path d="M7.85 6.5a.75.75 0 0 1 0-1.5h9.5a.75.75 0 1 1 0 1.5h-9.5Z"/><path d="M3 8V2.7H.5v1h1V8H3Z"/><path d="M13.42 14.185a.75.75 0 0 0 .53 1.28h3.4a.75.75 0 1 0 0-1.5h-3.4a.75.75 0 0 0-.53.22Z"/><path d="M5.636 8.035V6.8H4.4v1.235h1.236Z"/><path d="M9 17.865v-5.3H6.5v1h1v4.3H9Z"/><path d="M11.636 17.9v-1.235H10.4V17.9h1.236Z"/><path d="M3.2 17.865v-5.3H.7v1h1v4.3h1.5Z"/><path d="M5.836 17.9v-1.235H4.6V17.9h1.236Z"/></svg>',styleGridAriaLabel:e("Multi-level list styles toolbar"),styleDefinitions:[]})),this.licenseKey=t.config.get("licenseKey");const n=this.editor;this._licenseKeyCheckInterval=setInterval((()=>{let t;for(const e in n){const i=e,r=n[i];if("multiLevelListLicenseKeyTrial"===r||"multiLevelListLicenseKeyInvalid"===r||"multiLevelListLicenseKeyValid"===r||"multiLevelListLicenseKeyTrialLimit:operations"===r){delete n[i],t=r;break}}if("multiLevelListLicenseKeyInvalid"===t)throw clearInterval(this._licenseKeyCheckInterval),new r.CKEditorError("multi-level-list-invalid-license-key",null);if("multiLevelListLicenseKeyTrial"===t&&console.info("You are using the trial version of CKEditor 5 multi level list plugin with limited usage. Make sure you will not use it in the production environment."),"multiLevelListLicenseKeyTrialLimit:operations"===t)throw clearInterval(this._licenseKeyCheckInterval),new r.CKEditorError("multi-level-list-trial-license-key-reached-limit-changes",null);"multiLevelListLicenseKeyValid"===t&&clearInterval(this._licenseKeyCheckInterval)}),1e3)}destroy(){this._licenseKeyCheckInterval&&clearInterval(this._licenseKeyCheckInterval)}}var M=n(326),C={injectType:"singletonStyleTag",attributes:{"data-cke":!0},insert:"head",singleton:!0};y()(M.A,C);M.A.locals;var S=_;function N(){var t=["16944gJyHoN","1802187DKHvoH","MultiLevelList","pluginName","14MXieOa","requires","48280AavlMK","745570joWZyX","588488CXVnQh","2198532vYyBPu","40cgVTDa","474144PgEHoH","230FAjtsg"];return(N=function(){return t})()}function _(t,e){var n=N();return(_=function(t,e){return n[t-=388]})(t,e)}!function(t,e){for(var n=_,i=t();;)try{if(197415===-parseInt(n(397))/1+-parseInt(n(398))/2+-parseInt(n(389))/3+parseInt(n(391))/4*(parseInt(n(390))/5)+-parseInt(n(400))/6+parseInt(n(395))/7*(parseInt(n(399))/8)+parseInt(n(392))/9*(parseInt(n(388))/10))break;i.push(i.shift())}catch(t){i.push(i.shift())}}(N);class A extends t.Plugin{static get[S(394)](){return S(393)}static get[S(396)](){return[d,x]}}function T(t,e){var n=V();return(T=function(t,e){return n[t-=431]})(t,e)}function V(){var t=["610042dKzxEl","175Qeojzr","15KjYYUI","889992iwvhlf","12634308yJpSIZ","208eiYPeD","696268NNrgyM","1IPjPcQ","128382uAEPvr","19450QlEMLV","3685bcSGnc","107541MNZXCg"];return(V=function(){return t})()}!function(t,e){for(var n=T,i=t();;)try{if(328277===-parseInt(n(436))/1*(parseInt(n(441))/2)+parseInt(n(432))/3+-parseInt(n(435))/4*(parseInt(n(431))/5)+parseInt(n(437))/6*(-parseInt(n(442))/7)+parseInt(n(434))/8*(-parseInt(n(440))/9)+parseInt(n(438))/10*(parseInt(n(439))/11)+parseInt(n(433))/12)break;i.push(i.shift())}catch(t){i.push(i.shift())}}(V)})(),(window.CKEditor5=window.CKEditor5||{}).listMultiLevel=i})();
@@ -0,0 +1,19 @@
1
+ /**
2
+ * @license Copyright (c) 2003-2024, CKSource Holding sp. z o.o. All rights reserved.
3
+ * For licensing, see LICENSE.md or https://ckeditor.com/legal/ckeditor-oss-license
4
+ */
5
+ .ck-content .multi-level-list {
6
+ list-style: none;
7
+ }
8
+ .ck-content .multi-level-list li {
9
+ position: relative;
10
+ }
11
+ .ck-content .multi-level-list li .multi-level-list__marker {
12
+ position: absolute;
13
+ padding-inline-end: 5px;
14
+ transform: translate(-100%, 0);
15
+ pointer-events: none;
16
+ }
17
+ .ck-content .multi-level-list li .multi-level-list__marker::selection {
18
+ background-color: transparent;
19
+ }
@@ -0,0 +1,32 @@
1
+ /**
2
+ * @license Copyright (c) 2003-2024, CKSource Holding sp. z o.o. All rights reserved.
3
+ * For licensing, see LICENSE.md or https://ckeditor.com/legal/ckeditor-oss-license
4
+ */
5
+ [dir="rtl"] .ck-content .multi-level-list li .multi-level-list__marker {
6
+ transform: translate(100%, 0);
7
+ }
8
+ .ck.ck-multi-level-list-properties.ck-multi-level-list-properties_without-styles {
9
+ padding: var(--ck-spacing-large);
10
+ }
11
+ .ck.ck-multi-level-list-properties.ck-multi-level-list-properties_without-styles > * {
12
+ min-width: 14em;
13
+ }
14
+ .ck.ck-multi-level-list-properties.ck-multi-level-list-properties_without-styles > * + * {
15
+ margin-top: var(--ck-spacing-standard);
16
+ }
17
+ .ck.ck-multi-level-list-properties.ck-multi-level-list-properties_with-multi-level-properties > .ck-multi-level-list-styles {
18
+ grid-template-columns: repeat( 4, auto );
19
+ }
20
+ .ck.ck-multi-level-list-properties.ck-multi-level-list-properties_with-multi-level-properties > .ck-collapsible {
21
+ border-top: 1px solid var(--ck-color-base-border);
22
+ }
23
+ .ck.ck-multi-level-list-properties.ck-multi-level-list-properties_with-multi-level-properties > .ck-collapsible > .ck-collapsible__children > * {
24
+ width: 100%;
25
+ }
26
+ .ck.ck-multi-level-list-properties.ck-multi-level-list-properties_with-multi-level-properties > .ck-collapsible > .ck-collapsible__children > * + * {
27
+ margin-top: var(--ck-spacing-standard);
28
+ }
29
+ .ck.ck-multi-level-list-properties .ck.ck-multi-level-list-properties__start-index .ck-input {
30
+ min-width: auto;
31
+ width: 100%;
32
+ }
package/dist/index.css ADDED
@@ -0,0 +1,106 @@
1
+ /**
2
+ * @license Copyright (c) 2003-2024, CKSource Holding sp. z o.o. All rights reserved.
3
+ * For licensing, see LICENSE.md or https://ckeditor.com/legal/ckeditor-oss-license
4
+ */
5
+ /*
6
+ * What you're currently looking at is the source code of a legally protected, proprietary software.
7
+ * CKEditor 5 Collaboration is licensed under a commercial license and protected by copyright law. Where not otherwise indicated,
8
+ * all CKEditor 5 Collaboration content is authored by CKSource engineers and consists of CKSource-owned intellectual property.
9
+ *
10
+ * Copyright (c) 2003-2024, CKSource Holding sp. z o.o. All rights reserved.
11
+ * For licensing, see LICENSE.md or https://ckeditor.com/legal/ckeditor-oss-license
12
+ */
13
+
14
+ /*
15
+ * Copyright (c) 2003-2024, CKSource Holding sp. z o.o. All rights reserved.
16
+ * For licensing, see LICENSE.md or https://ckeditor.com/legal/ckeditor-oss-license
17
+ */
18
+
19
+ .ck-content .multi-level-list {
20
+ list-style: none;
21
+ }
22
+
23
+ .ck-content .multi-level-list li {
24
+ position: relative;
25
+ }
26
+
27
+ .ck-content .multi-level-list li .multi-level-list__marker {
28
+ position: absolute;
29
+ padding-inline-end: 5px;
30
+ transform: translate(-100%, 0);
31
+ pointer-events: none;
32
+
33
+ /* RTL styles */
34
+ }
35
+
36
+ [dir="rtl"] .ck-content .multi-level-list li .multi-level-list__marker {
37
+ transform: translate(100%, 0);
38
+ }
39
+
40
+ /* Do not show list markers as selected. */
41
+
42
+ .ck-content .multi-level-list li .multi-level-list__marker::selection {
43
+ background-color: transparent;
44
+ }
45
+
46
+ /*
47
+ * What you're currently looking at is the source code of a legally protected, proprietary software.
48
+ * CKEditor 5 Collaboration is licensed under a commercial license and protected by copyright law. Where not otherwise indicated,
49
+ * all CKEditor 5 Collaboration content is authored by CKSource engineers and consists of CKSource-owned intellectual property.
50
+ *
51
+ * Copyright (c) 2003-2024, CKSource Holding sp. z o.o. All rights reserved.
52
+ * For licensing, see LICENSE.md or https://ckeditor.com/legal/ckeditor-oss-license
53
+ */
54
+
55
+
56
+ /* When there are no list styles and there is no collapsible. */
57
+
58
+
59
+ .ck.ck-multi-level-list-properties.ck-multi-level-list-properties_without-styles {
60
+ padding: var(--ck-spacing-large);
61
+ }
62
+
63
+
64
+ .ck.ck-multi-level-list-properties.ck-multi-level-list-properties_without-styles > * {
65
+ min-width: 14em;
66
+ }
67
+
68
+
69
+ .ck.ck-multi-level-list-properties.ck-multi-level-list-properties_without-styles > * + * {
70
+ margin-top: var(--ck-spacing-standard);
71
+ }
72
+
73
+
74
+ /*
75
+ * When the numbered list property field (start at) should be displayed,
76
+ * more horizontal space is needed. Reconfigure the style grid to create that space.
77
+ */
78
+
79
+
80
+ .ck.ck-multi-level-list-properties.ck-multi-level-list-properties_with-multi-level-properties > .ck-multi-level-list-styles {
81
+ grid-template-columns: repeat( 4, auto );
82
+ }
83
+
84
+
85
+ /* When list styles are rendered and property fields are in a collapsible. */
86
+
87
+
88
+ .ck.ck-multi-level-list-properties.ck-multi-level-list-properties_with-multi-level-properties > .ck-collapsible {
89
+ border-top: 1px solid var(--ck-color-base-border);
90
+ }
91
+
92
+
93
+ .ck.ck-multi-level-list-properties.ck-multi-level-list-properties_with-multi-level-properties > .ck-collapsible > .ck-collapsible__children > * {
94
+ width: 100%;
95
+ }
96
+
97
+
98
+ .ck.ck-multi-level-list-properties.ck-multi-level-list-properties_with-multi-level-properties > .ck-collapsible > .ck-collapsible__children > * + * {
99
+ margin-top: var(--ck-spacing-standard);
100
+ }
101
+
102
+
103
+ .ck.ck-multi-level-list-properties .ck.ck-multi-level-list-properties__start-index .ck-input {
104
+ min-width: auto;
105
+ width: 100%;
106
+ }