@ckeditor/ckeditor5-merge-fields 0.0.0-nightly-20241015.0 → 0.0.0-nightly-20241017.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.
- package/build/merge-fields.js +1 -1
- package/dist/index.js +1 -1
- package/dist/translations/ar.js +1 -1
- package/dist/translations/ar.umd.js +1 -1
- package/dist/translations/bg.js +1 -1
- package/dist/translations/bg.umd.js +1 -1
- package/dist/translations/bn.js +1 -1
- package/dist/translations/bn.umd.js +1 -1
- package/dist/translations/ca.js +1 -1
- package/dist/translations/ca.umd.js +1 -1
- package/dist/translations/cs.js +1 -1
- package/dist/translations/cs.umd.js +1 -1
- package/dist/translations/da.js +1 -1
- package/dist/translations/da.umd.js +1 -1
- package/dist/translations/de.js +1 -1
- package/dist/translations/de.umd.js +1 -1
- package/dist/translations/el.js +1 -1
- package/dist/translations/el.umd.js +1 -1
- package/dist/translations/en.umd.js +1 -1
- package/dist/translations/es.js +1 -1
- package/dist/translations/es.umd.js +1 -1
- package/dist/translations/et.js +1 -1
- package/dist/translations/et.umd.js +1 -1
- package/dist/translations/fi.js +1 -1
- package/dist/translations/fi.umd.js +1 -1
- package/dist/translations/fr.js +1 -1
- package/dist/translations/fr.umd.js +1 -1
- package/dist/translations/gl.js +1 -1
- package/dist/translations/gl.umd.js +1 -1
- package/dist/translations/he.js +1 -1
- package/dist/translations/he.umd.js +1 -1
- package/dist/translations/hi.js +1 -1
- package/dist/translations/hi.umd.js +1 -1
- package/dist/translations/hr.js +1 -1
- package/dist/translations/hr.umd.js +1 -1
- package/dist/translations/hu.js +1 -1
- package/dist/translations/hu.umd.js +1 -1
- package/dist/translations/id.js +1 -1
- package/dist/translations/id.umd.js +1 -1
- package/dist/translations/it.js +1 -1
- package/dist/translations/it.umd.js +1 -1
- package/dist/translations/ja.js +1 -1
- package/dist/translations/ja.umd.js +1 -1
- package/dist/translations/ko.js +1 -1
- package/dist/translations/ko.umd.js +1 -1
- package/dist/translations/lt.js +1 -1
- package/dist/translations/lt.umd.js +1 -1
- package/dist/translations/lv.js +1 -1
- package/dist/translations/lv.umd.js +1 -1
- package/dist/translations/ms.js +1 -1
- package/dist/translations/ms.umd.js +1 -1
- package/dist/translations/nl.js +1 -1
- package/dist/translations/nl.umd.js +1 -1
- package/dist/translations/no.js +1 -1
- package/dist/translations/no.umd.js +1 -1
- package/dist/translations/pl.js +1 -1
- package/dist/translations/pl.umd.js +1 -1
- package/dist/translations/pt-br.js +1 -1
- package/dist/translations/pt-br.umd.js +1 -1
- package/dist/translations/pt.js +1 -1
- package/dist/translations/pt.umd.js +1 -1
- package/dist/translations/ro.js +1 -1
- package/dist/translations/ro.umd.js +1 -1
- package/dist/translations/ru.js +1 -1
- package/dist/translations/ru.umd.js +1 -1
- package/dist/translations/sk.js +1 -1
- package/dist/translations/sk.umd.js +1 -1
- package/dist/translations/sr.js +1 -1
- package/dist/translations/sr.umd.js +1 -1
- package/dist/translations/sv.js +1 -1
- package/dist/translations/sv.umd.js +1 -1
- package/dist/translations/th.js +1 -1
- package/dist/translations/th.umd.js +1 -1
- package/dist/translations/tr.js +1 -1
- package/dist/translations/tr.umd.js +1 -1
- package/dist/translations/uk.js +1 -1
- package/dist/translations/uk.umd.js +1 -1
- package/dist/translations/vi.js +1 -1
- package/dist/translations/vi.umd.js +1 -1
- package/dist/translations/zh-cn.js +1 -1
- package/dist/translations/zh-cn.umd.js +1 -1
- package/dist/translations/zh.js +1 -1
- package/dist/translations/zh.umd.js +1 -1
- package/package.json +7 -7
- package/src/index.js +1 -1
- package/src/insertmergefieldblockcommand.js +1 -1
- package/src/insertmergefieldcommand.js +1 -1
- package/src/mergefields.d.ts +8 -0
- package/src/mergefields.js +1 -1
- package/src/mergefieldsediting.d.ts +8 -0
- package/src/mergefieldsediting.js +1 -1
- package/src/mergefieldsui.d.ts +8 -0
- package/src/mergefieldsui.js +1 -1
- package/src/previewmergefieldscommand.js +1 -1
- package/src/ui/mergefieldslistview.js +1 -1
- package/src/ui/mergefieldspanelview.js +1 -1
- package/src/utils/common-translations.js +1 -1
|
@@ -27,6 +27,14 @@ export default class MergeFieldsEditing extends Plugin {
|
|
|
27
27
|
* @inheritDoc
|
|
28
28
|
*/
|
|
29
29
|
static get pluginName(): "MergeFieldsEditing";
|
|
30
|
+
/**
|
|
31
|
+
* @inheritDoc
|
|
32
|
+
*/
|
|
33
|
+
static get isOfficialPlugin(): true;
|
|
34
|
+
/**
|
|
35
|
+
* @inheritDoc
|
|
36
|
+
*/
|
|
37
|
+
static get isPremiumPlugin(): true;
|
|
30
38
|
/**
|
|
31
39
|
* @inheritDoc
|
|
32
40
|
*/
|
|
@@ -20,4 +20,4 @@
|
|
|
20
20
|
*
|
|
21
21
|
*
|
|
22
22
|
*/
|
|
23
|
-
const _0x16417c=_0x2d06;(function(_0x1b8091,_0x2e4cb4){const _0x18a036=_0x2d06,_0x32fe82=_0x1b8091();while(!![]){try{const _0x2e7023=-parseInt(_0x18a036(0x18d))/0x1*(-parseInt(_0x18a036(0xfa))/0x2)+-parseInt(_0x18a036(0x15a))/0x3*(parseInt(_0x18a036(0x165))/0x4)+parseInt(_0x18a036(0x12e))/0x5*(parseInt(_0x18a036(0x1cf))/0x6)+parseInt(_0x18a036(0x11a))/0x7+parseInt(_0x18a036(0x15c))/0x8*(parseInt(_0x18a036(0x1b3))/0x9)+parseInt(_0x18a036(0x16c))/0xa*(-parseInt(_0x18a036(0x149))/0xb)+parseInt(_0x18a036(0x1c1))/0xc*(-parseInt(_0x18a036(0x17b))/0xd);if(_0x2e7023===_0x2e4cb4)break;else _0x32fe82['push'](_0x32fe82['shift']());}catch(_0x43074a){_0x32fe82['push'](_0x32fe82['shift']());}}}(_0xeb73,0x9bcd5));import{toWidget as _0x360e04,viewToModelPositionOutsideModelElement as _0x54ee3e}from'ckeditor5/src/widget.js';import{Plugin as _0x53ac01}from'ckeditor5/src/core.js';import{IconView as _0x28b2dc}from'ckeditor5/src/ui.js';import{isParagraphable as _0x5b491f,wrapInParagraph as _0x34e3b2}from'ckeditor5/src/engine.js';import{CKEditorError as _0x48a203,logWarning as _0x3e100}from'ckeditor5/src/utils.js';import _0x2d8484 from'./insertmergefieldcommand.js';function _0x2d06(_0x2645ce,_0x40882f){const _0xeb732=_0xeb73();return _0x2d06=function(_0x2d069c,_0x3629a9){_0x2d069c=_0x2d069c-0xf6;let _0x120a27=_0xeb732[_0x2d069c];return _0x120a27;},_0x2d06(_0x2645ce,_0x40882f);}import _0x313084 from'./insertmergefieldblockcommand.js';import _0x83caa from'./previewmergefieldscommand.js';import _0x273478 from'../theme/icons/warning.svg';function _0xeb73(){const _0x1720fe=['mergeFieldsData','values','merge-fields-prefix-and-suffix-must-differ','mergeFieldsLicenseKeyValid','insertMergeFieldBlock','startOffset','mergeFields.previewHtmlValues','find','next','merge-fields-invalid-preview-mode-set','_getAvailablePreviewModes','createRange','$dataSets','licenseKey','29217MOZpWb','createUIElement','56kmoVxM','editing','isLocal','createText','innerHTML','reconvertItem','start','dataPipeline:transparentRendering','span','500aGlJEC','match','schema','ck-merge-field__content','height','set','element','10HUYcoK','offsetSize','groupId','remove','has','block','mergeFields.definitions','merge-fields-duplicate-data-set-id','mergeFields.suffix','setContentOf','merge-fields-prefix-or-suffix-too-long','matchAll','define','merge-fields-invalid-prefix-or-suffix','_createTextualMergeField','26NDLPmS','function','merge-fields-invalid-preview-modes-configuration','$labels','WARNING_MISSING_DATA_USED_DEFAULT_VALUE','_shouldPreviewHtmlValues','init','$inlineObject','change:data','$graveyard','insertMergeField','mergeFieldBlock','ck-merge-field\x20ck-merge-field_with-warning\x20ck-merge-field_with-warning_missing-definition','parent','editingDowncast','push','info','getMergeFieldDefaultValue','38AzLIlU','mergeFields.previewModes','\x20]+','getDefinition','style','upcast','editor','view','getMergeFieldType','You\x20are\x20using\x20the\x20trial\x20version\x20of\x20CKEditor\x205\x20format\x20painter\x20plugin\x20with\x20limited\x20usage.\x20Make\x20sure\x20you\x20will\x20not\x20use\x20it\x20in\x20the\x20production\x20environment.','availablePreviewModes','differ','type','conversion','WARNING_MISSING_DATA','_mergeFieldElements','position','merge-fields-duplicate-merge-field-id','every','for','from','insert','add','getLabel','height:\x20','ck-merge-field-block_with-value','createRangeIn','register','ck-merge-field_with-value','div','getDataSetValues','_mergeFieldRegExp','merge-fields-invalid-id','rootName','delete','ck-merge-field__icon','index','getDocumentMergeFieldsIds','1018359NdQzXO','mergeFields.prefix','_registerConversionPostFixer','_licenseKeyCheckInterval','data','getMergeFieldValue','end','split','replace','$blockObject','setCustomProperty','getChildren','previewMode','viewToModelPosition','1488060MQKVWv','getAttribute','label','_mergeFieldPrefix','change:previewMode','render','_prepareViewElementData','ck-merge-field\x20ck-merge-field_with-warning\x20ck-merge-field_with-warning_no-default','dataDowncast','merge-fields-duplicate-group-id','getClassNames','_trackAddedMergeFields','name','ck-merge-field\x20ck-merge-field_with-warning\x20ck-merge-field_with-warning_missing-data','678hMFcRn','modelRange','test','merge-fields-provide-sanitize-function','batch','nextSibling','elementToElement','addClass','_defineSchema','listenTo','47152HfPXpl','get','destroy','getAttributes','previewMergeFields','text','_defineConverters','appendChild','concat','getChanges','_validateConfig','getDefaultValues','getMergeFieldsIds','filter','html','definitions','forEach','flattenedMergeFieldDefinitions','commands','_mergeFieldSuffix','nodeAfter','ck-merge-field\x20ck-merge-field_with-value','value','document','config','bind','registerPostFixer','mergeField','$text','MergeFieldsEditing','reduce','domConverter','4150671NYFdYi','mergeFieldsLicenseKeyTrialLimit:operations','checkChild','model','merge-fields-invalid-license-key','hasClass','_validatePreviewMode','mergeFieldsLicenseKeyInvalid','merge-fields-trial-license-key-reached-limit-changes','getItems','registerInlineObjectMatcher','setAttribute','defaultValue','merge-fields-data-set-not-found','length','join','pluginName','toDomElement','consume','ck-merge-field__affix','21315jvwRYn','insertObject','getShiftedBy','mergeFields.sanitizeHtml','mergeFieldStatus','_getFlattenedMergeFieldDefinitions','slice','createContainerElement','WARNING_MISSING_DEFAULT_VALUE','createPositionAt','createRawElement','root','ck-merge-field','ck-merge-field-block','createElement','ck-merge-field\x20ck-merge-field_with-warning\x20ck-merge-field_with-warning_default-value-used','mergeFields.dataSets','data-merge-field-block-label','reverse','$defaultValues','mapper','map','modelCursor','_refreshMergeFields','_createMergeFieldWidget','mergeFieldsLicenseKeyTrial','mergeFields.initialPreviewMode','7249737cNOCud','ck-merge-field_with-warning','includes'];_0xeb73=function(){return _0x1720fe;};return _0xeb73();}export default class m extends _0x53ac01{static get[_0x16417c(0x12a)](){const _0x534f9e=_0x16417c;return _0x534f9e(0x117);}constructor(_0x3a42d3){const _0x506c5b=_0x16417c;super(_0x3a42d3),this[_0x506c5b(0x10b)]=[],_0x3a42d3[_0x506c5b(0x112)][_0x506c5b(0x178)](_0x506c5b(0x18e),[_0x506c5b(0x17e),_0x506c5b(0x141),_0x506c5b(0x158)]),_0x3a42d3[_0x506c5b(0x112)][_0x506c5b(0x178)](_0x506c5b(0x13e),[]),_0x3a42d3[_0x506c5b(0x112)][_0x506c5b(0x178)](_0x506c5b(0x172),[]),_0x3a42d3[_0x506c5b(0x112)][_0x506c5b(0x178)](_0x506c5b(0x1b4),'{{'),_0x3a42d3[_0x506c5b(0x112)][_0x506c5b(0x178)](_0x506c5b(0x174),'}}'),_0x3a42d3[_0x506c5b(0x112)][_0x506c5b(0x178)](_0x506c5b(0x152),!0x1),_0x3a42d3[_0x506c5b(0x112)][_0x506c5b(0x178)](_0x506c5b(0x131),_0x510f50=>(_0x3e100(_0x506c5b(0x1d2)),{'html':_0x510f50,'hasChanged':!0x1})),this[_0x506c5b(0x1c4)]=_0x3a42d3[_0x506c5b(0x112)][_0x506c5b(0xfb)](_0x506c5b(0x1b4)),this[_0x506c5b(0x10d)]=_0x3a42d3[_0x506c5b(0x112)][_0x506c5b(0xfb)](_0x506c5b(0x174)),this[_0x506c5b(0x180)]=_0x3a42d3[_0x506c5b(0x112)][_0x506c5b(0xfb)](_0x506c5b(0x152)),this[_0x506c5b(0x10b)]=this[_0x506c5b(0x133)](),this[_0x506c5b(0x104)]();const _0x4930d4='\x5c'+this[_0x506c5b(0x1c4)][_0x506c5b(0x1ba)]('')[_0x506c5b(0x129)]('\x5c'),_0x2f3cfc='\x5c'+this[_0x506c5b(0x10d)][_0x506c5b(0x1ba)]('')[_0x506c5b(0x129)]('\x5c');this[_0x506c5b(0x1ac)]=new RegExp('('+_0x4930d4+'[^'+(_0x4930d4+_0x2f3cfc)+_0x506c5b(0x18f)+_0x2f3cfc+')','g'),this[_0x506c5b(0x197)]=this[_0x506c5b(0x156)]();const _0x2f2fe1=_0x3a42d3[_0x506c5b(0x112)][_0x506c5b(0xfb)](_0x506c5b(0x148))||this[_0x506c5b(0x197)][0x0];this[_0x506c5b(0x120)](_0x2f2fe1),this[_0x506c5b(0x16a)](_0x506c5b(0x1bf),_0x2f2fe1),this[_0x506c5b(0x19c)]=new Set(),this[_0x506c5b(0x1b6)]=null;}[_0x16417c(0x181)](){const _0x2def37=_0x16417c,_0x1df2a5=this[_0x2def37(0x193)];_0x1df2a5[_0x2def37(0x10c)][_0x2def37(0x1a3)](_0x2def37(0x185),new _0x2d8484(_0x1df2a5)),_0x1df2a5[_0x2def37(0x10c)][_0x2def37(0x1a3)](_0x2def37(0x150),new _0x313084(_0x1df2a5)),_0x1df2a5[_0x2def37(0x10c)][_0x2def37(0x1a3)](_0x2def37(0xfe),new _0x83caa(_0x1df2a5)),this[_0x2def37(0xf8)](),this[_0x2def37(0x100)](),this['on'](_0x2def37(0x1c5),(_0x5ee51e,_0x47c048,_0x325aa9)=>{const _0x10ff44=_0x2def37;this[_0x10ff44(0x120)](_0x325aa9),this[_0x10ff44(0x145)]();}),this[_0x2def37(0xf9)](_0x1df2a5[_0x2def37(0x11d)][_0x2def37(0x111)],_0x2def37(0x183),()=>{const _0x2b44a5=_0x2def37;this[_0x2b44a5(0x1cc)]();}),_0x1df2a5[_0x2def37(0x15d)][_0x2def37(0x142)]['on'](_0x2def37(0x1c0),_0x54ee3e(_0x1df2a5[_0x2def37(0x11d)],_0x43502c=>_0x43502c[_0x2def37(0x11f)](_0x2def37(0x13a)))),_0x1df2a5[_0x2def37(0x15d)][_0x2def37(0x142)]['on'](_0x2def37(0x1c0),_0x54ee3e(_0x1df2a5[_0x2def37(0x11d)],_0x2b2972=>_0x2b2972[_0x2def37(0x11f)](_0x2def37(0x13b)))),this[_0x2def37(0x1b5)](),_0x1df2a5[_0x2def37(0x15d)][_0x2def37(0x194)][_0x2def37(0x119)][_0x2def37(0x124)]({'name':_0x2def37(0x164),'classes':[_0x2def37(0x13a)]}),this[_0x2def37(0x159)]=_0x1df2a5[_0x2def37(0x112)][_0x2def37(0xfb)](_0x2def37(0x159));const _0x367117=this[_0x2def37(0x193)];this[_0x2def37(0x1b6)]=setInterval(()=>{const _0x37a3f2=_0x2def37;let _0x376912;for(const _0x40bb9f in _0x367117){const _0x4bd800=_0x40bb9f,_0x4c842c=_0x367117[_0x4bd800];if(_0x37a3f2(0x147)===_0x4c842c||_0x37a3f2(0x121)===_0x4c842c||_0x37a3f2(0x14f)===_0x4c842c||_0x37a3f2(0x11b)===_0x4c842c){delete _0x367117[_0x4bd800],_0x376912=_0x4c842c;break;}}if(_0x37a3f2(0x121)===_0x376912)throw clearInterval(this[_0x37a3f2(0x1b6)]),new _0x48a203(_0x37a3f2(0x11e),null);if(_0x37a3f2(0x147)===_0x376912&&console[_0x37a3f2(0x18b)](_0x37a3f2(0x196)),_0x37a3f2(0x11b)===_0x376912)throw clearInterval(this[_0x37a3f2(0x1b6)]),new _0x48a203(_0x37a3f2(0x122),null);_0x37a3f2(0x14f)===_0x376912&&clearInterval(this[_0x37a3f2(0x1b6)]);},0x3e8);}[_0x16417c(0x105)](){const _0x27d79f=_0x16417c,_0x1d1c77={},_0x1a7e6f=this[_0x27d79f(0x106)]();for(const _0x353609 of _0x1a7e6f)_0x1d1c77[_0x353609]=this[_0x27d79f(0x18c)](_0x353609);return _0x1d1c77;}[_0x16417c(0x1ab)](_0x46d225,_0x4eb425=!0x1){const _0x533748=_0x16417c,_0x55f2e9={},_0x45e1be=this[_0x533748(0x106)]();for(const _0xdccc0 of _0x45e1be){let _0x5672ca=this[_0x533748(0x1b8)](_0xdccc0,_0x46d225);null===_0x5672ca&&_0x4eb425&&(_0x5672ca=this[_0x533748(0x18c)](_0xdccc0)),_0x55f2e9[_0xdccc0]=_0x5672ca;}return _0x55f2e9;}[_0x16417c(0x1a4)](_0x31cda3){const _0x53f1d7=_0x16417c,_0x1f28a3=this[_0x53f1d7(0x190)](_0x31cda3);return _0x1f28a3&&_0x1f28a3[_0x53f1d7(0x1c3)]?_0x1f28a3[_0x53f1d7(0x1c3)]:_0x31cda3;}[_0x16417c(0x18c)](_0x53f5d1){const _0x268797=_0x16417c,_0x1f1e46=this[_0x268797(0x190)](_0x53f5d1);if(!_0x1f1e46||void 0x0===_0x1f1e46[_0x268797(0x126)])return null;const _0x38d086=_0x268797(0x17c)==typeof _0x1f1e46[_0x268797(0x126)]?_0x1f1e46[_0x268797(0x126)](this[_0x268797(0x193)]):_0x1f1e46[_0x268797(0x126)];return String(_0x38d086);}[_0x16417c(0x1b8)](_0x115f05,_0x1e9fc5){const _0x10a0a7=_0x16417c,_0x5e8e60=this[_0x10a0a7(0x193)][_0x10a0a7(0x112)][_0x10a0a7(0xfb)](_0x10a0a7(0x13e))[_0x10a0a7(0x153)](_0x1ea90b=>_0x1ea90b['id']===_0x1e9fc5);if(!_0x5e8e60)throw new _0x48a203(_0x10a0a7(0x127),null);const _0x319fe4=_0x5e8e60[_0x10a0a7(0x14d)][_0x115f05];if(void 0x0===_0x319fe4)return null;const _0x45857f=_0x10a0a7(0x17c)==typeof _0x319fe4?_0x319fe4(this[_0x10a0a7(0x193)]):_0x319fe4;return String(_0x45857f);}[_0x16417c(0x195)](_0x56f595){const _0x362be9=_0x16417c,_0x1c5ba3=this[_0x362be9(0x190)](_0x56f595);return _0x1c5ba3&&_0x1c5ba3[_0x362be9(0x199)]?_0x1c5ba3[_0x362be9(0x199)]:_0x362be9(0xff);}[_0x16417c(0x1b2)](){const _0x3d3a2d=_0x16417c,_0x1290c7=new Set();for(const _0x29479d of this[_0x3d3a2d(0x19c)])_0x3d3a2d(0x184)!==_0x29479d[_0x3d3a2d(0x139)][_0x3d3a2d(0x1ae)]&&_0x1290c7[_0x3d3a2d(0x1a3)](_0x29479d[_0x3d3a2d(0x1c2)]('id'));return Array[_0x3d3a2d(0x1a1)](_0x1290c7);}[_0x16417c(0x106)](){const _0x39ea25=_0x16417c,_0x4588f1=this[_0x39ea25(0x10b)][_0x39ea25(0x143)](_0x1f46ac=>_0x1f46ac['id']),_0x5eacdc=this[_0x39ea25(0x1b2)]();return Array[_0x39ea25(0x1a1)](new Set([..._0x4588f1,..._0x5eacdc]));}[_0x16417c(0x190)](_0x3f420c){const _0xa3bfb=_0x16417c;return this[_0xa3bfb(0x10b)][_0xa3bfb(0x153)](_0x28104d=>_0x28104d['id']===_0x3f420c)||null;}[_0x16417c(0xfc)](){const _0x4b5957=_0x16417c;this[_0x4b5957(0x1b6)]&&clearInterval(this[_0x4b5957(0x1b6)]);}[_0x16417c(0x133)](){const _0x61db0e=_0x16417c,_0x51b5c4=new Set(),_0x20574c=this[_0x61db0e(0x193)];return _0x20574c[_0x61db0e(0x112)][_0x61db0e(0xfb)](_0x61db0e(0x172))[_0x61db0e(0x118)]((_0x1a875c,_0x2ed555)=>{const _0xf04e95=_0x61db0e;if(_0xf04e95(0x16e)in _0x2ed555){if(_0x51b5c4[_0xf04e95(0x170)](_0x2ed555[_0xf04e95(0x16e)]))throw new _0x48a203(_0xf04e95(0x1ca),_0x20574c,{'duplicateId':_0x2ed555[_0xf04e95(0x16e)]});_0x51b5c4[_0xf04e95(0x1a3)](_0x2ed555[_0xf04e95(0x16e)]);}return _0xf04e95(0x16e)in _0x2ed555?function(_0x978666,_0x553a3b){const _0x29e84b=_0xf04e95;for(const _0x18e952 of _0x553a3b[_0x29e84b(0x109)])_0x978666=_0x978666[_0x29e84b(0x102)](_0x18e952);return _0x978666;}[_0xf04e95(0x113)](_0x20574c)(_0x1a875c,_0x2ed555):_0x1a875c[_0xf04e95(0x102)](_0x2ed555);},new Array());}[_0x16417c(0x104)](){const _0x168c7a=_0x16417c,_0x575ee4=/^['"`!#%:;=@{}~$()*+/?[\\\]^|]+$/;if(!_0x575ee4[_0x168c7a(0x1d1)](this[_0x168c7a(0x1c4)])||!_0x575ee4[_0x168c7a(0x1d1)](this[_0x168c7a(0x10d)]))throw new _0x48a203(_0x168c7a(0x179),this,{'prefix':this[_0x168c7a(0x1c4)],'suffix':this[_0x168c7a(0x10d)]});if(this[_0x168c7a(0x1c4)][_0x168c7a(0x128)]>0x8||this[_0x168c7a(0x10d)][_0x168c7a(0x128)]>0x8)throw new _0x48a203(_0x168c7a(0x176),this,{'prefix':this[_0x168c7a(0x1c4)],'suffix':this[_0x168c7a(0x10d)],'limit':0x8});const _0x7c0739=/^[a-zA-Z0-9_.-]+$/,_0x461273=new Set();if(this[_0x168c7a(0x10b)][_0x168c7a(0x143)](_0x406fa5=>{const _0x217068=_0x168c7a;if(!_0x7c0739[_0x217068(0x1d1)](_0x406fa5['id']))throw new _0x48a203(_0x217068(0x1ad),this,{'incorrectId':_0x406fa5['id']});if(_0x461273[_0x217068(0x170)](_0x406fa5['id']))throw new _0x48a203(_0x217068(0x19e),this,{'duplicateId':_0x406fa5['id']});_0x461273[_0x217068(0x1a3)](_0x406fa5['id']);}),this[_0x168c7a(0x1c4)]===this[_0x168c7a(0x10d)])throw new _0x48a203(_0x168c7a(0x14e),this);const _0x68e3c5=this[_0x168c7a(0x193)][_0x168c7a(0x112)][_0x168c7a(0xfb)](_0x168c7a(0x18e)),_0x2ee5e4=[_0x168c7a(0x17e),_0x168c7a(0x141),_0x168c7a(0x158)];if(!_0x68e3c5[_0x168c7a(0x128)]||!_0x68e3c5[_0x168c7a(0x19f)](_0x22b9d7=>_0x2ee5e4[_0x168c7a(0x14b)](_0x22b9d7)))throw new _0x48a203(_0x168c7a(0x17d),this,{'invalidConfig':_0x68e3c5});const _0x8a123b=new Set(),_0x2ffe98=this[_0x168c7a(0x193)][_0x168c7a(0x112)][_0x168c7a(0xfb)](_0x168c7a(0x13e));for(const _0x37bd44 of _0x2ffe98){if(_0x8a123b[_0x168c7a(0x170)](_0x37bd44['id']))throw new _0x48a203(_0x168c7a(0x173),this,{'duplicateId':_0x37bd44['id']});_0x8a123b[_0x168c7a(0x1a3)](_0x37bd44['id']);}}[_0x16417c(0x156)](){const _0x5e809b=_0x16417c,_0x1f51d4=this[_0x5e809b(0x193)][_0x5e809b(0x112)][_0x5e809b(0xfb)](_0x5e809b(0x18e)),_0x3816a7=[];if(_0x1f51d4[_0x5e809b(0x14b)](_0x5e809b(0x17e))&&_0x3816a7[_0x5e809b(0x18a)](_0x5e809b(0x17e)),_0x1f51d4[_0x5e809b(0x14b)](_0x5e809b(0x141))&&_0x3816a7[_0x5e809b(0x18a)](_0x5e809b(0x141)),_0x1f51d4[_0x5e809b(0x14b)](_0x5e809b(0x158))){const _0x46502d=this[_0x5e809b(0x193)][_0x5e809b(0x112)][_0x5e809b(0xfb)](_0x5e809b(0x13e));_0x3816a7[_0x5e809b(0x18a)](..._0x46502d[_0x5e809b(0x143)](_0x8825a5=>_0x8825a5['id']));}return _0x3816a7;}[_0x16417c(0xf8)](){const _0x1d5525=_0x16417c,_0x458924=this[_0x1d5525(0x193)][_0x1d5525(0x11d)][_0x1d5525(0x167)];_0x458924[_0x1d5525(0x1a8)](_0x1d5525(0x115),{'inheritAllFrom':_0x1d5525(0x182),'allowAttributes':['id'],'allowWhere':_0x1d5525(0x116)}),_0x458924[_0x1d5525(0x1a8)](_0x1d5525(0x186),{'inheritAllFrom':_0x1d5525(0x1bc),'allowAttributes':['id']});}[_0x16417c(0x100)](){const _0x255d9e=_0x16417c,_0x2282b3=this[_0x255d9e(0x193)][_0x255d9e(0x19a)];_0x2282b3[_0x255d9e(0x1a0)](_0x255d9e(0x192))[_0x255d9e(0x1a3)](_0x3171ee=>{const _0x54f431=_0x255d9e;_0x3171ee['on'](_0x54f431(0xff),(_0x37f3d5,_0x2faa2e,_0xc7b461)=>{const _0x30cd94=_0x54f431,{consumable:_0x22623e,writer:_0x59004a,schema:_0xf75709}=_0xc7b461,{viewItem:_0x2ae884}=_0x2faa2e;if(!_0x22623e[_0x30cd94(0x1d1)](_0x2ae884))return;const _0x129e78=_0x2ae884[_0x30cd94(0x1b7)][_0x30cd94(0x1ba)](this[_0x30cd94(0x1ac)])[_0x30cd94(0x107)](_0x3a40f8=>_0x3a40f8);if(0x1===_0x129e78[_0x30cd94(0x128)]&&!_0x129e78[0x0][_0x30cd94(0x166)](this[_0x30cd94(0x1ac)]))return;let _0x222d80=!0x0;for(const _0x5efd94 of _0x129e78){if(!_0x5efd94[_0x30cd94(0x166)](this[_0x30cd94(0x1ac)])){_0x222d80=!0x1;break;}const _0x4a6e33=_0x5efd94[_0x30cd94(0x134)](this[_0x30cd94(0x1c4)][_0x30cd94(0x128)],_0x5efd94[_0x30cd94(0x128)]-this[_0x30cd94(0x10d)][_0x30cd94(0x128)]);if(_0x30cd94(0xff)===this[_0x30cd94(0x195)](_0x4a6e33)){_0x222d80=!0x1;break;}}if(_0x222d80){_0x22623e[_0x30cd94(0x12c)](_0x2ae884);for(const _0xdb33df of _0x129e78){const _0x236fdc=_0xdb33df[_0x30cd94(0x134)](this[_0x30cd94(0x1c4)][_0x30cd94(0x128)],_0xdb33df[_0x30cd94(0x128)]-this[_0x30cd94(0x10d)][_0x30cd94(0x128)]),_0x3b83d8=_0x2faa2e[_0x30cd94(0x144)],_0x3cc593=_0x59004a[_0x30cd94(0x13c)](_0x30cd94(0x186),{'id':_0x236fdc});_0x59004a[_0x30cd94(0x1a2)](_0x3cc593,_0x3b83d8),_0x2faa2e[_0x30cd94(0x144)]=_0x3b83d8[_0x30cd94(0x130)](0x1),_0x2faa2e[_0x30cd94(0x1d0)]=_0x59004a[_0x30cd94(0x157)](_0x2faa2e[_0x30cd94(0x1d0)]?_0x2faa2e[_0x30cd94(0x1d0)][_0x30cd94(0x162)]:_0x3b83d8,_0x2faa2e[_0x30cd94(0x144)]);}}else{if(!_0xf75709[_0x30cd94(0x11c)](_0x2faa2e[_0x30cd94(0x144)],_0x30cd94(0x116))){if(!_0x5b491f(_0x2faa2e[_0x30cd94(0x144)],_0x30cd94(0x116),_0xf75709))return;_0x2faa2e[_0x30cd94(0x144)]=_0x34e3b2(_0x2faa2e[_0x30cd94(0x144)],_0x59004a);}_0x22623e[_0x30cd94(0x12c)](_0x2ae884);for(const _0x40e255 of _0x129e78){const _0x546d1d=_0x2faa2e[_0x30cd94(0x144)];let _0x4900c7;if(_0x40e255[_0x30cd94(0x166)](this[_0x30cd94(0x1ac)])){const _0x28f066=_0x40e255[_0x30cd94(0x134)](this[_0x30cd94(0x1c4)][_0x30cd94(0x128)],_0x40e255[_0x30cd94(0x128)]-this[_0x30cd94(0x10d)][_0x30cd94(0x128)]);_0x4900c7=_0x59004a[_0x30cd94(0x13c)](_0x30cd94(0x115),{'id':_0x28f066});}else _0x4900c7=_0x59004a[_0x30cd94(0x15f)](_0x40e255);_0x59004a[_0x30cd94(0x1a2)](_0x4900c7,_0x546d1d),_0x2faa2e[_0x30cd94(0x144)]=_0x546d1d[_0x30cd94(0x130)](_0x4900c7[_0x30cd94(0x16d)]),_0x2faa2e[_0x30cd94(0x1d0)]=_0x59004a[_0x30cd94(0x157)](_0x2faa2e[_0x30cd94(0x1d0)]?_0x2faa2e[_0x30cd94(0x1d0)][_0x30cd94(0x162)]:_0x546d1d,_0x2faa2e[_0x30cd94(0x144)]);}}});}),_0x2282b3[_0x255d9e(0x1a0)](_0x255d9e(0x189))[_0x255d9e(0xf6)]({'model':_0x255d9e(0x115),'view':(_0x537a27,{writer:_0x868f97})=>this[_0x255d9e(0x146)](_0x537a27,_0x868f97,_0x255d9e(0xff))}),_0x2282b3[_0x255d9e(0x1a0)](_0x255d9e(0x1c9))[_0x255d9e(0xf6)]({'model':_0x255d9e(0x115),'view':(_0xf675a0,{writer:_0x59407d,options:_0x78fa1a})=>this[_0x255d9e(0x17a)](_0xf675a0,_0x59407d,_0x78fa1a[_0x255d9e(0x14c)])}),_0x2282b3[_0x255d9e(0x1a0)](_0x255d9e(0x189))[_0x255d9e(0xf6)]({'model':_0x255d9e(0x186),'view':(_0x6bca69,{writer:_0x929e21})=>this[_0x255d9e(0x146)](_0x6bca69,_0x929e21,_0x255d9e(0x171))}),_0x2282b3[_0x255d9e(0x1a0)](_0x255d9e(0x1c9))[_0x255d9e(0xf6)]({'model':_0x255d9e(0x186),'view':(_0x512653,{writer:_0x1f991a,options:_0x3b3f74})=>this[_0x255d9e(0x17a)](_0x512653,_0x1f991a,_0x3b3f74[_0x255d9e(0x14c)])});}[_0x16417c(0x146)](_0x28518a,_0x7365eb,_0x31a66d){const _0x59207c=_0x16417c,{label:_0x23e8f7,classes:_0x4e172f,status:_0x5c28d4,height:_0x32b662}=this[_0x59207c(0x1c7)](_0x28518a),_0x4db25a=this[_0x59207c(0x1c4)],_0x5da7a5=this[_0x59207c(0x10d)],_0x3bc862=this[_0x59207c(0x193)][_0x59207c(0x112)][_0x59207c(0xfb)](_0x59207c(0x131)),_0x4fc11b=_0x59207c(0xff)===_0x31a66d?_0x59207c(0x164):_0x59207c(0x1aa);let _0x2fe1c1;if(_0x59207c(0x17e)===this[_0x59207c(0x1bf)])_0x2fe1c1=_0x7365eb[_0x59207c(0x135)](_0x4fc11b,{'class':_0x4e172f},[_0x7365eb[_0x59207c(0x15b)](_0x59207c(0x164),{'class':_0x59207c(0x12d)},function(_0x2b4ea3){const _0x156a20=_0x59207c,_0x3eafd0=this[_0x156a20(0x12b)](_0x2b4ea3);return _0x3eafd0[_0x156a20(0x160)]=_0x4db25a,_0x3eafd0;}),_0x7365eb[_0x59207c(0x135)](_0x59207c(0x164),{'class':_0x59207c(0x168)},_0x7365eb[_0x59207c(0x15f)](String(_0x23e8f7))),_0x7365eb[_0x59207c(0x15b)](_0x59207c(0x164),{'class':_0x59207c(0x12d)},function(_0x370a7f){const _0x32353f=_0x59207c,_0x2cb38f=this[_0x32353f(0x12b)](_0x370a7f);return _0x2cb38f[_0x32353f(0x160)]=_0x5da7a5,_0x2cb38f;})]);else{if(_0x5c28d4){const _0x17b8e2=this[_0x59207c(0x180)]?_0x7365eb[_0x59207c(0x138)](_0x59207c(0x164),{},function(_0x31eb34,_0x5b3d3f){const _0x3b7fc7=_0x59207c;_0x5b3d3f[_0x3b7fc7(0x175)](_0x31eb34,_0x3bc862(_0x23e8f7)[_0x3b7fc7(0x108)]);}):_0x7365eb[_0x59207c(0x15f)](_0x23e8f7);if(_0x2fe1c1=_0x7365eb[_0x59207c(0x135)](_0x4fc11b,{'class':_0x4e172f},[_0x17b8e2]),_0x59207c(0xff)===_0x31a66d||[_0x59207c(0x136),_0x59207c(0x19b)][_0x59207c(0x14b)](_0x5c28d4)){const _0x31c0cd=_0x7365eb[_0x59207c(0x15b)](_0x59207c(0x164),{'class':_0x59207c(0x1b0)},function(_0x1f4731){const _0xb99576=_0x59207c,_0x39d5ff=this[_0xb99576(0x12b)](_0x1f4731),_0xbc99ec=new _0x28b2dc();return _0xbc99ec[_0xb99576(0x16a)]({'content':_0x273478}),_0xbc99ec[_0xb99576(0x1c6)](),_0x39d5ff[_0xb99576(0x101)](_0xbc99ec[_0xb99576(0x16b)]),_0x39d5ff;});_0x7365eb[_0x59207c(0x1a2)](_0x7365eb[_0x59207c(0x137)](_0x2fe1c1,_0x59207c(0x1b9)),_0x31c0cd);}_0x7365eb[_0x59207c(0x1bd)](_0x59207c(0x132),_0x5c28d4,_0x2fe1c1);}else{const _0x26b355=this[_0x59207c(0x180)]?_0x7365eb[_0x59207c(0x138)](_0x4fc11b,{},function(_0x55cca8,_0x1a81ce){const _0x3e0254=_0x59207c;_0x1a81ce[_0x3e0254(0x175)](_0x55cca8,_0x3bc862(_0x23e8f7)[_0x3e0254(0x108)]);}):_0x7365eb[_0x59207c(0x15f)](_0x23e8f7);_0x2fe1c1=_0x7365eb[_0x59207c(0x135)](_0x4fc11b,{'class':_0x4e172f},_0x26b355);}}if(_0x59207c(0x171)===_0x31a66d){const _0x4c16d3=_0x7365eb[_0x59207c(0x135)](_0x59207c(0x1aa),{'class':_0x59207c(0x13b)},[_0x2fe1c1]);if((_0x59207c(0x17e)===this[_0x59207c(0x1bf)]||_0x5c28d4&&[_0x59207c(0x136),_0x59207c(0x19b)][_0x59207c(0x14b)](_0x5c28d4))&&_0x7365eb[_0x59207c(0x125)](_0x59207c(0x191),_0x59207c(0x1a5)+_0x32b662+'px',_0x4c16d3),_0x2fe1c1[_0x59207c(0x11f)](_0x59207c(0x1a9)))_0x7365eb[_0x59207c(0xf7)](_0x59207c(0x1a6),_0x4c16d3);else{if(_0x2fe1c1[_0x59207c(0x11f)](_0x59207c(0x14a))){for(const _0x439a4b of _0x2fe1c1[_0x59207c(0x1cb)]())if(_0x59207c(0x13a)!==_0x439a4b){const _0x3c8874=_0x439a4b[_0x59207c(0x1bb)](_0x59207c(0x13a),_0x59207c(0x13b));_0x7365eb[_0x59207c(0xf7)](_0x3c8874,_0x4c16d3);}_0x7365eb[_0x59207c(0x125)](_0x59207c(0x13f),this[_0x59207c(0x1a4)](_0x28518a[_0x59207c(0x1c2)]('id')),_0x4c16d3),_0x7365eb[_0x59207c(0x1bd)](_0x59207c(0x132),_0x5c28d4,_0x4c16d3);}}return _0x7365eb[_0x59207c(0x1bd)](_0x59207c(0x186),!0x0,_0x4c16d3),_0x360e04(_0x4c16d3,_0x7365eb,{'hasSelectionHandle':!0x0});}return _0x7365eb[_0x59207c(0x1bd)](_0x59207c(0x115),!0x0,_0x2fe1c1),_0x360e04(_0x2fe1c1,_0x7365eb);}[_0x16417c(0x1c7)](_0x1658b4){const _0x575976=_0x16417c,_0x55a422=this[_0x575976(0x190)](_0x1658b4[_0x575976(0x1c2)]('id'));if(!_0x55a422)return _0x575976(0x17e)===this[_0x575976(0x1bf)]?{'label':_0x1658b4[_0x575976(0x1c2)]('id'),'classes':_0x575976(0x13a)}:{'label':_0x1658b4[_0x575976(0x1c2)]('id'),'classes':_0x575976(0x187),'status':_0x575976(0x19b)};const _0x214f18=this[_0x575976(0x1a4)](_0x55a422['id']),_0x5595e3=this[_0x575976(0x195)](_0x55a422['id']),_0x34e576=this[_0x575976(0x18c)](_0x1658b4[_0x575976(0x1c2)]('id')),_0x9b2876=_0x575976(0xff)!==_0x5595e3?_0x55a422[_0x575976(0x169)]||0x78:void 0x0;if(_0x575976(0x17e)===this[_0x575976(0x1bf)])return{'label':_0x214f18,'height':_0x9b2876,'classes':_0x575976(0x13a)};if(_0x575976(0x141)===this[_0x575976(0x1bf)])return _0x34e576?{'label':_0x34e576,'height':_0x9b2876,'classes':_0x575976(0x10f)}:{'label':_0x214f18,'height':_0x9b2876,'classes':_0x575976(0x1c8),'status':_0x575976(0x136)};const _0x202367=this[_0x575976(0x1b8)](_0x55a422['id'],this[_0x575976(0x1bf)]);return _0x202367?{'label':_0x202367,'height':_0x9b2876,'classes':_0x575976(0x10f)}:_0x34e576?{'label':_0x34e576,'height':_0x9b2876,'classes':_0x575976(0x13d),'status':_0x575976(0x17f)}:{'label':_0x214f18,'height':_0x9b2876,'classes':_0x575976(0x1ce),'status':_0x575976(0x19b)};}[_0x16417c(0x17a)](_0x2cb12,_0x42d363,_0x58de52){const _0x568567=_0x16417c,_0x1fa274=_0x2cb12[_0x568567(0x1c2)]('id'),_0x2c42ae=_0x58de52&&_0x58de52[_0x1fa274]?_0x58de52[_0x1fa274]:this[_0x568567(0x1c4)]+_0x1fa274+this[_0x568567(0x10d)];let _0x5eb69b;if(_0x58de52)_0x5eb69b=_0x42d363[_0x568567(0x138)](_0x568567(0x164),{},function(_0x5baa64,_0x2bf7f0){const _0x1e52db=_0x568567;_0x2bf7f0[_0x1e52db(0x175)](_0x5baa64,String(_0x2c42ae));});else{_0x5eb69b=_0x42d363[_0x568567(0x135)](_0x568567(0x164));const _0x54068a=_0x42d363[_0x568567(0x15f)](_0x2c42ae);_0x42d363[_0x568567(0x1a2)](_0x42d363[_0x568567(0x137)](_0x5eb69b,_0x568567(0x1b9)),_0x54068a);}return _0x42d363[_0x568567(0x1bd)](_0x568567(0x163),!0x0,_0x5eb69b),_0x5eb69b;}[_0x16417c(0x145)](){const _0xfd57f5=_0x16417c;this[_0xfd57f5(0x19c)][_0xfd57f5(0x10a)](_0x5227fc=>{const _0x159718=_0xfd57f5;_0x159718(0x184)!==_0x5227fc[_0x159718(0x139)][_0x159718(0x1ae)]&&this[_0x159718(0x193)][_0x159718(0x15d)][_0x159718(0x161)](_0x5227fc);});}[_0x16417c(0x120)](_0xa21dbe){const _0x550837=_0x16417c;if(!this[_0x550837(0x197)][_0x550837(0x14b)](_0xa21dbe))throw new _0x48a203(_0x550837(0x155),this,{'availablePreviewModes':this[_0x550837(0x197)],'previewMode':_0xa21dbe});}[_0x16417c(0x1cc)](){const _0x2c551d=_0x16417c;for(const _0x1b57af of this[_0x2c551d(0x193)][_0x2c551d(0x11d)][_0x2c551d(0x111)][_0x2c551d(0x198)][_0x2c551d(0x103)]({'includeChangesInGraveyard':!0x0})){if(_0x2c551d(0x1a2)!==_0x1b57af[_0x2c551d(0x199)]||_0x2c551d(0x116)===_0x1b57af[_0x2c551d(0x1cd)])continue;if(_0x2c551d(0x115)===_0x1b57af[_0x2c551d(0x1cd)]||_0x2c551d(0x186)===_0x1b57af[_0x2c551d(0x1cd)]){this[_0x2c551d(0x19c)][_0x2c551d(0x1a3)](_0x1b57af[_0x2c551d(0x19d)][_0x2c551d(0x10e)]);continue;}const _0x52b53a=this[_0x2c551d(0x193)][_0x2c551d(0x11d)][_0x2c551d(0x1a7)](_0x1b57af[_0x2c551d(0x19d)][_0x2c551d(0x10e)]);for(const _0x3882d7 of _0x52b53a[_0x2c551d(0x123)]())_0x3882d7['is'](_0x2c551d(0x16b),_0x2c551d(0x115))&&this[_0x2c551d(0x19c)][_0x2c551d(0x1a3)](_0x3882d7);}}[_0x16417c(0x1b5)](){const _0x41564d=_0x16417c,_0x34a483=this[_0x41564d(0x193)];_0x34a483[_0x41564d(0x11d)][_0x41564d(0x111)][_0x41564d(0x114)](_0x58189c=>{const _0x4c37fc=_0x41564d;if(!_0x58189c[_0x4c37fc(0x1d3)][_0x4c37fc(0x15e)])return!0x1;const _0x4beff7=[],_0x3a3d6e=new Set(),_0x372e9d=this[_0x4c37fc(0x1ac)];let _0x21d10e=!0x1;for(const _0x4d9fad of _0x34a483[_0x4c37fc(0x11d)][_0x4c37fc(0x111)][_0x4c37fc(0x198)][_0x4c37fc(0x103)]())if(_0x4c37fc(0x1a2)===_0x4d9fad[_0x4c37fc(0x199)]||_0x4c37fc(0x16f)===_0x4d9fad[_0x4c37fc(0x199)]){let _0x3f0e9f=_0x4c37fc(0x116)==_0x4d9fad[_0x4c37fc(0x1cd)]?_0x4d9fad[_0x4c37fc(0x19d)][_0x4c37fc(0x188)]:_0x4d9fad[_0x4c37fc(0x19d)][_0x4c37fc(0x10e)];if(!_0x3f0e9f)continue;_0x3f0e9f['is'](_0x4c37fc(0x116))&&(_0x3f0e9f=_0x3f0e9f[_0x4c37fc(0x188)]),_0x4e6d04(_0x3f0e9f);}for(const _0x5991d2 of _0x4beff7[_0x4c37fc(0x140)]()){const {match:_0x3ef010,item:_0x1a172e}=_0x5991d2,_0x497945=_0x58189c[_0x4c37fc(0x137)](_0x1a172e,_0x3ef010[_0x4c37fc(0x1b1)]),_0x12b20c=_0x497945[_0x4c37fc(0x130)](_0x3ef010[0x0][_0x4c37fc(0x128)]),_0x38f9d5=_0x58189c[_0x4c37fc(0x157)](_0x497945,_0x12b20c),_0x3c0a8a=_0x3ef010[0x0],_0x40a22a=_0x3c0a8a[_0x4c37fc(0x134)](this[_0x4c37fc(0x1c4)][_0x4c37fc(0x128)],_0x3c0a8a[_0x4c37fc(0x128)]-this[_0x4c37fc(0x10d)][_0x4c37fc(0x128)]),_0x131c99=_0x3c85b0(_0x38f9d5);if(_0x131c99[_0x4c37fc(0x16a)]('id',_0x40a22a),_0x4c37fc(0x171)===this[_0x4c37fc(0x195)](_0x40a22a)){const _0x6619d=_0x58189c[_0x4c37fc(0x13c)](_0x4c37fc(0x186),{'id':_0x40a22a});_0x58189c[_0x4c37fc(0x16f)](_0x38f9d5),_0x34a483[_0x4c37fc(0x11d)][_0x4c37fc(0x12f)](_0x6619d,null,null,{'setSelection':'on','findOptimalPosition':void 0x0});}else{const _0x5811c7=_0x58189c[_0x4c37fc(0x13c)](_0x4c37fc(0x115),_0x131c99);_0x34a483[_0x4c37fc(0x11d)][_0x4c37fc(0x167)][_0x4c37fc(0x11c)](_0x38f9d5[_0x4c37fc(0x162)],_0x4c37fc(0x115))?_0x34a483[_0x4c37fc(0x11d)][_0x4c37fc(0x12f)](_0x5811c7,_0x38f9d5):_0x58189c[_0x4c37fc(0x16f)](_0x38f9d5);}_0x21d10e=!0x0;}return _0x21d10e;function _0x4e6d04(_0x12a618){const _0xc2b66f=_0x4c37fc;let _0x336957='',_0x2ff39d=0x0;if(!_0x3a3d6e[_0xc2b66f(0x170)](_0x12a618))for(const _0x286635 of _0x12a618[_0xc2b66f(0x1be)]()){const _0xb73278=_0x286635[_0xc2b66f(0x1d4)];if(_0x286635['is'](_0xc2b66f(0x116))&&(''===_0x336957&&_0x286635[_0xc2b66f(0x151)]&&(_0x2ff39d=_0x286635[_0xc2b66f(0x151)]),_0x336957+=_0x286635[_0xc2b66f(0x1b7)]),!_0xb73278||_0xb73278['is'](_0xc2b66f(0x16b))){for(const _0x29b6da of _0x336957[_0xc2b66f(0x177)](_0x372e9d))_0x29b6da[_0xc2b66f(0x1b1)]=_0x29b6da[_0xc2b66f(0x1b1)]+_0x2ff39d,_0x4beff7[_0xc2b66f(0x18a)]({'match':_0x29b6da,'item':_0x12a618});_0x3a3d6e[_0xc2b66f(0x1a3)](_0x12a618),_0x336957='';}_0x286635['is'](_0xc2b66f(0x16b))&&_0x4e6d04(_0x286635);}}function _0x3c85b0(_0x57dc2e){const _0x4bf4a7=_0x4c37fc,_0x273d6d=_0x57dc2e[_0x4bf4a7(0x123)](),_0x2f0d9a=_0x273d6d[_0x4bf4a7(0x154)]()[_0x4bf4a7(0x110)],_0xff3368=new Map(_0x2f0d9a[_0x4bf4a7(0xfd)]());for(const _0x56e4c8 of _0x273d6d)for(const [_0x38cdc2,_0x2f7657]of _0xff3368)_0x56e4c8[_0x4bf4a7(0x1c2)](_0x38cdc2)!==_0x2f7657&&_0xff3368[_0x4bf4a7(0x1af)](_0x38cdc2);return _0xff3368;}});}}
|
|
23
|
+
const _0x23243a=_0x5eee;(function(_0x49b14b,_0x13b33d){const _0xef1adb=_0x5eee,_0x2c59b7=_0x49b14b();while(!![]){try{const _0x4f757a=parseInt(_0xef1adb(0xc3))/0x1+-parseInt(_0xef1adb(0xa0))/0x2*(parseInt(_0xef1adb(0x138))/0x3)+-parseInt(_0xef1adb(0x97))/0x4+-parseInt(_0xef1adb(0x111))/0x5*(-parseInt(_0xef1adb(0x140))/0x6)+-parseInt(_0xef1adb(0xf8))/0x7*(-parseInt(_0xef1adb(0x136))/0x8)+-parseInt(_0xef1adb(0xfc))/0x9+parseInt(_0xef1adb(0xa6))/0xa;if(_0x4f757a===_0x13b33d)break;else _0x2c59b7['push'](_0x2c59b7['shift']());}catch(_0x235d40){_0x2c59b7['push'](_0x2c59b7['shift']());}}}(_0x2843,0xde917));import{toWidget as _0x51a715,viewToModelPositionOutsideModelElement as _0x25bba0}from'ckeditor5/src/widget.js';import{Plugin as _0x10b73d}from'ckeditor5/src/core.js';import{IconView as _0x3e1b77}from'ckeditor5/src/ui.js';import{isParagraphable as _0x114d70,wrapInParagraph as _0x2482db}from'ckeditor5/src/engine.js';import{CKEditorError as _0x23be7e,logWarning as _0x3a9b92}from'ckeditor5/src/utils.js';import _0x4d7c0d from'./insertmergefieldcommand.js';function _0x2843(){const _0x3d8cda=['createRangeIn','mergeFields.previewModes','getClassNames','dataDowncast','toDomElement','from','_licenseKeyCheckInterval','previewMode','mergeFieldsLicenseKeyTrialLimit:operations','getDefinition','mergeFieldBlock','insert','model','parent','length','ck-merge-field-block','mergeFields.suffix','setAttribute','getAttributes','createUIElement','getAttribute','5048180MVawbO','_shouldPreviewHtmlValues','index','div','concat','hasClass','bind','next','ck-merge-field__content','2402lZiwIf','setCustomProperty','define','_getFlattenedMergeFieldDefinitions','registerPostFixer','viewToModelPosition','23544720rQqGth','offsetSize','MergeFieldsEditing','_createTextualMergeField','insertMergeField','listenTo','type','$labels','mergeField','destroy','modelRange','for','isOfficialPlugin','ck-merge-field\x20ck-merge-field_with-warning\x20ck-merge-field_with-warning_default-value-used','_getAvailablePreviewModes','mergeFields.sanitizeHtml','getChildren','commands','every','name','WARNING_MISSING_DATA_USED_DEFAULT_VALUE','config','differ','registerInlineObjectMatcher','_defineSchema','style','span','getShiftedBy','getDefaultValues','124083yHjZqN','licenseKey','remove','getLabel','editor','reduce','height','merge-fields-duplicate-merge-field-id','_mergeFieldSuffix','_registerConversionPostFixer','addClass','ck-merge-field__affix','mergeFieldStatus','match','getChanges','createElement','getMergeFieldDefaultValue','upcast','nodeAfter','replace','mapper','startOffset','\x20]+','modelCursor','isLocal','ck-merge-field\x20ck-merge-field_with-warning\x20ck-merge-field_with-warning_no-default','$graveyard','element','ck-merge-field\x20ck-merge-field_with-warning\x20ck-merge-field_with-warning_missing-definition','$dataSets','mergeFieldsLicenseKeyTrial','_refreshMergeFields','merge-fields-invalid-preview-modes-configuration','mergeFieldsData','merge-fields-duplicate-group-id','merge-fields-trial-license-key-reached-limit-changes','editingDowncast','mergeFields.prefix','flattenedMergeFieldDefinitions','batch','schema','_createMergeFieldWidget','$text','groupId','getDataSetValues','insertMergeFieldBlock','html','createContainerElement','appendChild','delete','_mergeFieldRegExp','view','change:data','1451303bQGkNv','mergeFieldsLicenseKeyInvalid','ck-merge-field__icon','block','11021544dwEgVI','setContentOf','_validatePreviewMode','push','checkChild','previewMergeFields','document','_trackAddedMergeFields','filter','join','ck-merge-field\x20ck-merge-field_with-value','_mergeFieldElements','ck-merge-field','text','getMergeFieldType','data','createPositionAt','mergeFields.previewHtmlValues','mergeFields.dataSets','function','$inlineObject','645BwdOPa','merge-fields-invalid-license-key','values','mergeFields.initialPreviewMode','defaultValue','definitions','map','merge-fields-invalid-preview-mode-set','value','reverse','start','get','getDocumentMergeFieldsIds','rootName','You\x20are\x20using\x20the\x20trial\x20version\x20of\x20CKEditor\x205\x20format\x20painter\x20plugin\x20with\x20limited\x20usage.\x20Make\x20sure\x20you\x20will\x20not\x20use\x20it\x20in\x20the\x20production\x20environment.','info','getMergeFieldsIds','WARNING_MISSING_DATA','createText','getMergeFieldValue','forEach','root','merge-fields-prefix-or-suffix-too-long','register','merge-fields-data-set-not-found','availablePreviewModes','init','reconvertItem','$blockObject','ck-merge-field\x20ck-merge-field_with-warning\x20ck-merge-field_with-warning_missing-data','_prepareViewElementData','merge-fields-provide-sanitize-function','includes','_validateConfig','elementToElement','merge-fields-invalid-id','merge-fields-invalid-prefix-or-suffix','56gHeGhe','innerHTML','2502MOZdfC','split','label','matchAll','dataPipeline:transparentRendering','mergeFields.definitions','set','merge-fields-duplicate-data-set-id','21864kMRpYf','change:previewMode','data-merge-field-block-label','add','position','getItems','end','ck-merge-field_with-warning','nextSibling','domConverter','find','consume','createRawElement','ck-merge-field-block_with-value','pluginName','insertObject','merge-fields-prefix-and-suffix-must-differ','conversion','_mergeFieldPrefix','slice','ck-merge-field_with-value','createRange','editing','$defaultValues','test','_defineConverters','height:\x20','isPremiumPlugin','WARNING_MISSING_DEFAULT_VALUE','render','has','mergeFieldsLicenseKeyValid'];_0x2843=function(){return _0x3d8cda;};return _0x2843();}import _0x24852d from'./insertmergefieldblockcommand.js';import _0x520f94 from'./previewmergefieldscommand.js';import _0x13b0a3 from'../theme/icons/warning.svg';function _0x5eee(_0x22a8b1,_0x3cf2da){const _0x2843f4=_0x2843();return _0x5eee=function(_0x5eeef1,_0x307e52){_0x5eeef1=_0x5eeef1-0x85;let _0x1763d9=_0x2843f4[_0x5eeef1];return _0x1763d9;},_0x5eee(_0x22a8b1,_0x3cf2da);}export default class g extends _0x10b73d{static get[_0x23243a(0x14e)](){const _0x2b1af7=_0x23243a;return _0x2b1af7(0xa8);}static get[_0x23243a(0xb2)](){return!0x0;}static get[_0x23243a(0x15b)](){return!0x0;}constructor(_0xdc7825){const _0x9ac0d4=_0x23243a;super(_0xdc7825),this[_0x9ac0d4(0xe9)]=[],_0xdc7825[_0x9ac0d4(0xbb)][_0x9ac0d4(0xa2)](_0x9ac0d4(0x161),[_0x9ac0d4(0xad),_0x9ac0d4(0x157),_0x9ac0d4(0xe0)]),_0xdc7825[_0x9ac0d4(0xbb)][_0x9ac0d4(0xa2)](_0x9ac0d4(0x10e),[]),_0xdc7825[_0x9ac0d4(0xbb)][_0x9ac0d4(0xa2)](_0x9ac0d4(0x13d),[]),_0xdc7825[_0x9ac0d4(0xbb)][_0x9ac0d4(0xa2)](_0x9ac0d4(0xe8),'{{'),_0xdc7825[_0x9ac0d4(0xbb)][_0x9ac0d4(0xa2)](_0x9ac0d4(0x92),'}}'),_0xdc7825[_0x9ac0d4(0xbb)][_0x9ac0d4(0xa2)](_0x9ac0d4(0x10d),!0x1),_0xdc7825[_0x9ac0d4(0xbb)][_0x9ac0d4(0xa2)](_0x9ac0d4(0xb5),_0x461704=>(_0x3a9b92(_0x9ac0d4(0x130)),{'html':_0x461704,'hasChanged':!0x1})),this[_0x9ac0d4(0x152)]=_0xdc7825[_0x9ac0d4(0xbb)][_0x9ac0d4(0x11c)](_0x9ac0d4(0xe8)),this[_0x9ac0d4(0xcb)]=_0xdc7825[_0x9ac0d4(0xbb)][_0x9ac0d4(0x11c)](_0x9ac0d4(0x92)),this[_0x9ac0d4(0x98)]=_0xdc7825[_0x9ac0d4(0xbb)][_0x9ac0d4(0x11c)](_0x9ac0d4(0x10d)),this[_0x9ac0d4(0xe9)]=this[_0x9ac0d4(0xa3)](),this[_0x9ac0d4(0x132)]();const _0x9d5a6c='\x5c'+this[_0x9ac0d4(0x152)][_0x9ac0d4(0x139)]('')[_0x9ac0d4(0x105)]('\x5c'),_0x2d6a58='\x5c'+this[_0x9ac0d4(0xcb)][_0x9ac0d4(0x139)]('')[_0x9ac0d4(0x105)]('\x5c');this[_0x9ac0d4(0xf5)]=new RegExp('('+_0x9d5a6c+'[^'+(_0x9d5a6c+_0x2d6a58)+_0x9ac0d4(0xd9)+_0x2d6a58+')','g'),this[_0x9ac0d4(0x12a)]=this[_0x9ac0d4(0xb4)]();const _0x3d0b5f=_0xdc7825[_0x9ac0d4(0xbb)][_0x9ac0d4(0x11c)](_0x9ac0d4(0x114))||this[_0x9ac0d4(0x12a)][0x0];this[_0x9ac0d4(0xfe)](_0x3d0b5f),this[_0x9ac0d4(0x13e)](_0x9ac0d4(0x89),_0x3d0b5f),this[_0x9ac0d4(0x107)]=new Set(),this[_0x9ac0d4(0x88)]=null;}[_0x23243a(0x12b)](){const _0x49ddad=_0x23243a,_0x26bf51=this[_0x49ddad(0xc7)];_0x26bf51[_0x49ddad(0xb7)][_0x49ddad(0x143)](_0x49ddad(0xaa),new _0x4d7c0d(_0x26bf51)),_0x26bf51[_0x49ddad(0xb7)][_0x49ddad(0x143)](_0x49ddad(0xf0),new _0x24852d(_0x26bf51)),_0x26bf51[_0x49ddad(0xb7)][_0x49ddad(0x143)](_0x49ddad(0x101),new _0x520f94(_0x26bf51)),this[_0x49ddad(0xbe)](),this[_0x49ddad(0x159)](),this['on'](_0x49ddad(0x141),(_0x115108,_0x32fc2b,_0x4680ae)=>{const _0x1c6aa0=_0x49ddad;this[_0x1c6aa0(0xfe)](_0x4680ae),this[_0x1c6aa0(0xe2)]();}),this[_0x49ddad(0xab)](_0x26bf51[_0x49ddad(0x8e)][_0x49ddad(0x102)],_0x49ddad(0xf7),()=>{const _0x58065c=_0x49ddad;this[_0x58065c(0x103)]();}),_0x26bf51[_0x49ddad(0x156)][_0x49ddad(0xd7)]['on'](_0x49ddad(0xa5),_0x25bba0(_0x26bf51[_0x49ddad(0x8e)],_0x5b5fb5=>_0x5b5fb5[_0x49ddad(0x9c)](_0x49ddad(0x108)))),_0x26bf51[_0x49ddad(0x156)][_0x49ddad(0xd7)]['on'](_0x49ddad(0xa5),_0x25bba0(_0x26bf51[_0x49ddad(0x8e)],_0x3ddb7a=>_0x3ddb7a[_0x49ddad(0x9c)](_0x49ddad(0x91)))),this[_0x49ddad(0xcc)](),_0x26bf51[_0x49ddad(0x156)][_0x49ddad(0xf6)][_0x49ddad(0x149)][_0x49ddad(0xbd)]({'name':_0x49ddad(0xc0),'classes':[_0x49ddad(0x108)]}),this[_0x49ddad(0xc4)]=_0x26bf51[_0x49ddad(0xbb)][_0x49ddad(0x11c)](_0x49ddad(0xc4));const _0x5bddb8=this[_0x49ddad(0xc7)];this[_0x49ddad(0x88)]=setInterval(()=>{const _0x29d60e=_0x49ddad;let _0x35cf39;for(const _0x2b0fef in _0x5bddb8){const _0x116f27=_0x2b0fef,_0x3e4557=_0x5bddb8[_0x116f27];if(_0x29d60e(0xe1)===_0x3e4557||_0x29d60e(0xf9)===_0x3e4557||_0x29d60e(0x15f)===_0x3e4557||_0x29d60e(0x8a)===_0x3e4557){delete _0x5bddb8[_0x116f27],_0x35cf39=_0x3e4557;break;}}if(_0x29d60e(0xf9)===_0x35cf39)throw clearInterval(this[_0x29d60e(0x88)]),new _0x23be7e(_0x29d60e(0x112),null);if(_0x29d60e(0xe1)===_0x35cf39&&console[_0x29d60e(0x120)](_0x29d60e(0x11f)),_0x29d60e(0x8a)===_0x35cf39)throw clearInterval(this[_0x29d60e(0x88)]),new _0x23be7e(_0x29d60e(0xe6),null);_0x29d60e(0x15f)===_0x35cf39&&clearInterval(this[_0x29d60e(0x88)]);},0x3e8);}[_0x23243a(0xc2)](){const _0x2c5d68=_0x23243a,_0xd81d71={},_0xa4679d=this[_0x2c5d68(0x121)]();for(const _0x2bd804 of _0xa4679d)_0xd81d71[_0x2bd804]=this[_0x2c5d68(0xd3)](_0x2bd804);return _0xd81d71;}[_0x23243a(0xef)](_0x3344c1,_0x29bcf8=!0x1){const _0x479703=_0x23243a,_0x17e0c5={},_0x56e8ad=this[_0x479703(0x121)]();for(const _0x20de74 of _0x56e8ad){let _0x44620a=this[_0x479703(0x124)](_0x20de74,_0x3344c1);null===_0x44620a&&_0x29bcf8&&(_0x44620a=this[_0x479703(0xd3)](_0x20de74)),_0x17e0c5[_0x20de74]=_0x44620a;}return _0x17e0c5;}[_0x23243a(0xc6)](_0x1682d2){const _0x5b6bc3=_0x23243a,_0xe3a201=this[_0x5b6bc3(0x8b)](_0x1682d2);return _0xe3a201&&_0xe3a201[_0x5b6bc3(0x13a)]?_0xe3a201[_0x5b6bc3(0x13a)]:_0x1682d2;}[_0x23243a(0xd3)](_0x320910){const _0x551e30=_0x23243a,_0x402fb1=this[_0x551e30(0x8b)](_0x320910);if(!_0x402fb1||void 0x0===_0x402fb1[_0x551e30(0x115)])return null;const _0x2d0a57=_0x551e30(0x10f)==typeof _0x402fb1[_0x551e30(0x115)]?_0x402fb1[_0x551e30(0x115)](this[_0x551e30(0xc7)]):_0x402fb1[_0x551e30(0x115)];return String(_0x2d0a57);}[_0x23243a(0x124)](_0x54323f,_0xec12da){const _0x327d91=_0x23243a,_0x2fc827=this[_0x327d91(0xc7)][_0x327d91(0xbb)][_0x327d91(0x11c)](_0x327d91(0x10e))[_0x327d91(0x14a)](_0x4289b2=>_0x4289b2['id']===_0xec12da);if(!_0x2fc827)throw new _0x23be7e(_0x327d91(0x129),null);const _0x50bbf6=_0x2fc827[_0x327d91(0x113)][_0x54323f];if(void 0x0===_0x50bbf6)return null;const _0x43ce7d=_0x327d91(0x10f)==typeof _0x50bbf6?_0x50bbf6(this[_0x327d91(0xc7)]):_0x50bbf6;return String(_0x43ce7d);}[_0x23243a(0x10a)](_0x2f7340){const _0x764526=_0x23243a,_0x29b32e=this[_0x764526(0x8b)](_0x2f7340);return _0x29b32e&&_0x29b32e[_0x764526(0xac)]?_0x29b32e[_0x764526(0xac)]:_0x764526(0x109);}[_0x23243a(0x11d)](){const _0x542e02=_0x23243a,_0x1d19da=new Set();for(const _0x561912 of this[_0x542e02(0x107)])_0x542e02(0xdd)!==_0x561912[_0x542e02(0x126)][_0x542e02(0x11e)]&&_0x1d19da[_0x542e02(0x143)](_0x561912[_0x542e02(0x96)]('id'));return Array[_0x542e02(0x87)](_0x1d19da);}[_0x23243a(0x121)](){const _0x62055b=_0x23243a,_0x5f5618=this[_0x62055b(0xe9)][_0x62055b(0x117)](_0x4a688a=>_0x4a688a['id']),_0x52d313=this[_0x62055b(0x11d)]();return Array[_0x62055b(0x87)](new Set([..._0x5f5618,..._0x52d313]));}[_0x23243a(0x8b)](_0x4e0e4a){const _0x2d8a1f=_0x23243a;return this[_0x2d8a1f(0xe9)][_0x2d8a1f(0x14a)](_0x23f1b5=>_0x23f1b5['id']===_0x4e0e4a)||null;}[_0x23243a(0xaf)](){const _0xda858e=_0x23243a;this[_0xda858e(0x88)]&&clearInterval(this[_0xda858e(0x88)]);}[_0x23243a(0xa3)](){const _0x56dbe7=_0x23243a,_0x481f6f=new Set(),_0xf1fd12=this[_0x56dbe7(0xc7)];return _0xf1fd12[_0x56dbe7(0xbb)][_0x56dbe7(0x11c)](_0x56dbe7(0x13d))[_0x56dbe7(0xc8)]((_0x3be673,_0xef305b)=>{const _0x2b91be=_0x56dbe7;if(_0x2b91be(0xee)in _0xef305b){if(_0x481f6f[_0x2b91be(0x15e)](_0xef305b[_0x2b91be(0xee)]))throw new _0x23be7e(_0x2b91be(0xe5),_0xf1fd12,{'duplicateId':_0xef305b[_0x2b91be(0xee)]});_0x481f6f[_0x2b91be(0x143)](_0xef305b[_0x2b91be(0xee)]);}return _0x2b91be(0xee)in _0xef305b?function(_0x4074ca,_0x485111){const _0x15e667=_0x2b91be;for(const _0x241900 of _0x485111[_0x15e667(0x116)])_0x4074ca=_0x4074ca[_0x15e667(0x9b)](_0x241900);return _0x4074ca;}[_0x2b91be(0x9d)](_0xf1fd12)(_0x3be673,_0xef305b):_0x3be673[_0x2b91be(0x9b)](_0xef305b);},new Array());}[_0x23243a(0x132)](){const _0x440b82=_0x23243a,_0x429611=/^['"`!#%:;=@{}~$()*+/?[\\\]^|]+$/;if(!_0x429611[_0x440b82(0x158)](this[_0x440b82(0x152)])||!_0x429611[_0x440b82(0x158)](this[_0x440b82(0xcb)]))throw new _0x23be7e(_0x440b82(0x135),this,{'prefix':this[_0x440b82(0x152)],'suffix':this[_0x440b82(0xcb)]});if(this[_0x440b82(0x152)][_0x440b82(0x90)]>0x8||this[_0x440b82(0xcb)][_0x440b82(0x90)]>0x8)throw new _0x23be7e(_0x440b82(0x127),this,{'prefix':this[_0x440b82(0x152)],'suffix':this[_0x440b82(0xcb)],'limit':0x8});const _0x4d48d5=/^[a-zA-Z0-9_.-]+$/,_0x2586e1=new Set();if(this[_0x440b82(0xe9)][_0x440b82(0x117)](_0x18866e=>{const _0x4f7d0f=_0x440b82;if(!_0x4d48d5[_0x4f7d0f(0x158)](_0x18866e['id']))throw new _0x23be7e(_0x4f7d0f(0x134),this,{'incorrectId':_0x18866e['id']});if(_0x2586e1[_0x4f7d0f(0x15e)](_0x18866e['id']))throw new _0x23be7e(_0x4f7d0f(0xca),this,{'duplicateId':_0x18866e['id']});_0x2586e1[_0x4f7d0f(0x143)](_0x18866e['id']);}),this[_0x440b82(0x152)]===this[_0x440b82(0xcb)])throw new _0x23be7e(_0x440b82(0x150),this);const _0x389da1=this[_0x440b82(0xc7)][_0x440b82(0xbb)][_0x440b82(0x11c)](_0x440b82(0x161)),_0x309973=[_0x440b82(0xad),_0x440b82(0x157),_0x440b82(0xe0)];if(!_0x389da1[_0x440b82(0x90)]||!_0x389da1[_0x440b82(0xb8)](_0x58c887=>_0x309973[_0x440b82(0x131)](_0x58c887)))throw new _0x23be7e(_0x440b82(0xe3),this,{'invalidConfig':_0x389da1});const _0x2cb24d=new Set(),_0x4ac343=this[_0x440b82(0xc7)][_0x440b82(0xbb)][_0x440b82(0x11c)](_0x440b82(0x10e));for(const _0x19d2c5 of _0x4ac343){if(_0x2cb24d[_0x440b82(0x15e)](_0x19d2c5['id']))throw new _0x23be7e(_0x440b82(0x13f),this,{'duplicateId':_0x19d2c5['id']});_0x2cb24d[_0x440b82(0x143)](_0x19d2c5['id']);}}[_0x23243a(0xb4)](){const _0x497e3c=_0x23243a,_0x1a3bb0=this[_0x497e3c(0xc7)][_0x497e3c(0xbb)][_0x497e3c(0x11c)](_0x497e3c(0x161)),_0xf43e21=[];if(_0x1a3bb0[_0x497e3c(0x131)](_0x497e3c(0xad))&&_0xf43e21[_0x497e3c(0xff)](_0x497e3c(0xad)),_0x1a3bb0[_0x497e3c(0x131)](_0x497e3c(0x157))&&_0xf43e21[_0x497e3c(0xff)](_0x497e3c(0x157)),_0x1a3bb0[_0x497e3c(0x131)](_0x497e3c(0xe0))){const _0xfa83d3=this[_0x497e3c(0xc7)][_0x497e3c(0xbb)][_0x497e3c(0x11c)](_0x497e3c(0x10e));_0xf43e21[_0x497e3c(0xff)](..._0xfa83d3[_0x497e3c(0x117)](_0x5a3aca=>_0x5a3aca['id']));}return _0xf43e21;}[_0x23243a(0xbe)](){const _0x3cc072=_0x23243a,_0x2acfb1=this[_0x3cc072(0xc7)][_0x3cc072(0x8e)][_0x3cc072(0xeb)];_0x2acfb1[_0x3cc072(0x128)](_0x3cc072(0xae),{'inheritAllFrom':_0x3cc072(0x110),'allowAttributes':['id'],'allowWhere':_0x3cc072(0xed)}),_0x2acfb1[_0x3cc072(0x128)](_0x3cc072(0x8c),{'inheritAllFrom':_0x3cc072(0x12d),'allowAttributes':['id']});}[_0x23243a(0x159)](){const _0x164cd5=_0x23243a,_0x53f690=this[_0x164cd5(0xc7)][_0x164cd5(0x151)];_0x53f690[_0x164cd5(0xb1)](_0x164cd5(0xd4))[_0x164cd5(0x143)](_0x1eb08f=>{const _0x24c704=_0x164cd5;_0x1eb08f['on'](_0x24c704(0x109),(_0x45aee3,_0x1dac49,_0x58ae2c)=>{const _0x5f5a7f=_0x24c704,{consumable:_0x13af99,writer:_0x8bb302,schema:_0x3a70c6}=_0x58ae2c,{viewItem:_0x2102bb}=_0x1dac49;if(!_0x13af99[_0x5f5a7f(0x158)](_0x2102bb))return;const _0x5ba7f1=_0x2102bb[_0x5f5a7f(0x10b)][_0x5f5a7f(0x139)](this[_0x5f5a7f(0xf5)])[_0x5f5a7f(0x104)](_0x209fcd=>_0x209fcd);if(0x1===_0x5ba7f1[_0x5f5a7f(0x90)]&&!_0x5ba7f1[0x0][_0x5f5a7f(0xd0)](this[_0x5f5a7f(0xf5)]))return;let _0x2bbc5e=!0x0;for(const _0x3275cd of _0x5ba7f1){if(!_0x3275cd[_0x5f5a7f(0xd0)](this[_0x5f5a7f(0xf5)])){_0x2bbc5e=!0x1;break;}const _0x4e4fc2=_0x3275cd[_0x5f5a7f(0x153)](this[_0x5f5a7f(0x152)][_0x5f5a7f(0x90)],_0x3275cd[_0x5f5a7f(0x90)]-this[_0x5f5a7f(0xcb)][_0x5f5a7f(0x90)]);if(_0x5f5a7f(0x109)===this[_0x5f5a7f(0x10a)](_0x4e4fc2)){_0x2bbc5e=!0x1;break;}}if(_0x2bbc5e){_0x13af99[_0x5f5a7f(0x14b)](_0x2102bb);for(const _0xa100ed of _0x5ba7f1){const _0x210a96=_0xa100ed[_0x5f5a7f(0x153)](this[_0x5f5a7f(0x152)][_0x5f5a7f(0x90)],_0xa100ed[_0x5f5a7f(0x90)]-this[_0x5f5a7f(0xcb)][_0x5f5a7f(0x90)]),_0x2000ad=_0x1dac49[_0x5f5a7f(0xda)],_0x532add=_0x8bb302[_0x5f5a7f(0xd2)](_0x5f5a7f(0x8c),{'id':_0x210a96});_0x8bb302[_0x5f5a7f(0x8d)](_0x532add,_0x2000ad),_0x1dac49[_0x5f5a7f(0xda)]=_0x2000ad[_0x5f5a7f(0xc1)](0x1),_0x1dac49[_0x5f5a7f(0xb0)]=_0x8bb302[_0x5f5a7f(0x155)](_0x1dac49[_0x5f5a7f(0xb0)]?_0x1dac49[_0x5f5a7f(0xb0)][_0x5f5a7f(0x11b)]:_0x2000ad,_0x1dac49[_0x5f5a7f(0xda)]);}}else{if(!_0x3a70c6[_0x5f5a7f(0x100)](_0x1dac49[_0x5f5a7f(0xda)],_0x5f5a7f(0xed))){if(!_0x114d70(_0x1dac49[_0x5f5a7f(0xda)],_0x5f5a7f(0xed),_0x3a70c6))return;_0x1dac49[_0x5f5a7f(0xda)]=_0x2482db(_0x1dac49[_0x5f5a7f(0xda)],_0x8bb302);}_0x13af99[_0x5f5a7f(0x14b)](_0x2102bb);for(const _0x305fe9 of _0x5ba7f1){const _0x178b8e=_0x1dac49[_0x5f5a7f(0xda)];let _0x496eae;if(_0x305fe9[_0x5f5a7f(0xd0)](this[_0x5f5a7f(0xf5)])){const _0x29e414=_0x305fe9[_0x5f5a7f(0x153)](this[_0x5f5a7f(0x152)][_0x5f5a7f(0x90)],_0x305fe9[_0x5f5a7f(0x90)]-this[_0x5f5a7f(0xcb)][_0x5f5a7f(0x90)]);_0x496eae=_0x8bb302[_0x5f5a7f(0xd2)](_0x5f5a7f(0xae),{'id':_0x29e414});}else _0x496eae=_0x8bb302[_0x5f5a7f(0x123)](_0x305fe9);_0x8bb302[_0x5f5a7f(0x8d)](_0x496eae,_0x178b8e),_0x1dac49[_0x5f5a7f(0xda)]=_0x178b8e[_0x5f5a7f(0xc1)](_0x496eae[_0x5f5a7f(0xa7)]),_0x1dac49[_0x5f5a7f(0xb0)]=_0x8bb302[_0x5f5a7f(0x155)](_0x1dac49[_0x5f5a7f(0xb0)]?_0x1dac49[_0x5f5a7f(0xb0)][_0x5f5a7f(0x11b)]:_0x178b8e,_0x1dac49[_0x5f5a7f(0xda)]);}}});}),_0x53f690[_0x164cd5(0xb1)](_0x164cd5(0xe7))[_0x164cd5(0x133)]({'model':_0x164cd5(0xae),'view':(_0x127cd8,{writer:_0x358b92})=>this[_0x164cd5(0xec)](_0x127cd8,_0x358b92,_0x164cd5(0x109))}),_0x53f690[_0x164cd5(0xb1)](_0x164cd5(0x85))[_0x164cd5(0x133)]({'model':_0x164cd5(0xae),'view':(_0x29e375,{writer:_0x48e155,options:_0x105414})=>this[_0x164cd5(0xa9)](_0x29e375,_0x48e155,_0x105414[_0x164cd5(0xe4)])}),_0x53f690[_0x164cd5(0xb1)](_0x164cd5(0xe7))[_0x164cd5(0x133)]({'model':_0x164cd5(0x8c),'view':(_0x3f2318,{writer:_0x567386})=>this[_0x164cd5(0xec)](_0x3f2318,_0x567386,_0x164cd5(0xfb))}),_0x53f690[_0x164cd5(0xb1)](_0x164cd5(0x85))[_0x164cd5(0x133)]({'model':_0x164cd5(0x8c),'view':(_0xe33524,{writer:_0xbf2915,options:_0x304c46})=>this[_0x164cd5(0xa9)](_0xe33524,_0xbf2915,_0x304c46[_0x164cd5(0xe4)])});}[_0x23243a(0xec)](_0x32b8ef,_0x5433c3,_0x45c0f1){const _0x3b03cb=_0x23243a,{label:_0x4c0be1,classes:_0x16d0be,status:_0x389438,height:_0x40a222}=this[_0x3b03cb(0x12f)](_0x32b8ef),_0x19792a=this[_0x3b03cb(0x152)],_0x4fe2be=this[_0x3b03cb(0xcb)],_0x2ad554=this[_0x3b03cb(0xc7)][_0x3b03cb(0xbb)][_0x3b03cb(0x11c)](_0x3b03cb(0xb5)),_0xa1d905=_0x3b03cb(0x109)===_0x45c0f1?_0x3b03cb(0xc0):_0x3b03cb(0x9a);let _0x369672;if(_0x3b03cb(0xad)===this[_0x3b03cb(0x89)])_0x369672=_0x5433c3[_0x3b03cb(0xf2)](_0xa1d905,{'class':_0x16d0be},[_0x5433c3[_0x3b03cb(0x95)](_0x3b03cb(0xc0),{'class':_0x3b03cb(0xce)},function(_0x5b5394){const _0x313382=_0x3b03cb,_0x129aeb=this[_0x313382(0x86)](_0x5b5394);return _0x129aeb[_0x313382(0x137)]=_0x19792a,_0x129aeb;}),_0x5433c3[_0x3b03cb(0xf2)](_0x3b03cb(0xc0),{'class':_0x3b03cb(0x9f)},_0x5433c3[_0x3b03cb(0x123)](String(_0x4c0be1))),_0x5433c3[_0x3b03cb(0x95)](_0x3b03cb(0xc0),{'class':_0x3b03cb(0xce)},function(_0x1cf392){const _0x26f605=_0x3b03cb,_0x377ca5=this[_0x26f605(0x86)](_0x1cf392);return _0x377ca5[_0x26f605(0x137)]=_0x4fe2be,_0x377ca5;})]);else{if(_0x389438){const _0x427557=this[_0x3b03cb(0x98)]?_0x5433c3[_0x3b03cb(0x14c)](_0x3b03cb(0xc0),{},function(_0xca83c9,_0x52c7af){const _0x5e2103=_0x3b03cb;_0x52c7af[_0x5e2103(0xfd)](_0xca83c9,_0x2ad554(_0x4c0be1)[_0x5e2103(0xf1)]);}):_0x5433c3[_0x3b03cb(0x123)](_0x4c0be1);if(_0x369672=_0x5433c3[_0x3b03cb(0xf2)](_0xa1d905,{'class':_0x16d0be},[_0x427557]),_0x3b03cb(0x109)===_0x45c0f1||[_0x3b03cb(0x15c),_0x3b03cb(0x122)][_0x3b03cb(0x131)](_0x389438)){const _0x3563b3=_0x5433c3[_0x3b03cb(0x95)](_0x3b03cb(0xc0),{'class':_0x3b03cb(0xfa)},function(_0x5ddfb3){const _0x3961eb=_0x3b03cb,_0x2b1812=this[_0x3961eb(0x86)](_0x5ddfb3),_0x304a92=new _0x3e1b77();return _0x304a92[_0x3961eb(0x13e)]({'content':_0x13b0a3}),_0x304a92[_0x3961eb(0x15d)](),_0x2b1812[_0x3961eb(0xf3)](_0x304a92[_0x3961eb(0xde)]),_0x2b1812;});_0x5433c3[_0x3b03cb(0x8d)](_0x5433c3[_0x3b03cb(0x10c)](_0x369672,_0x3b03cb(0x146)),_0x3563b3);}_0x5433c3[_0x3b03cb(0xa1)](_0x3b03cb(0xcf),_0x389438,_0x369672);}else{const _0x928e5c=this[_0x3b03cb(0x98)]?_0x5433c3[_0x3b03cb(0x14c)](_0xa1d905,{},function(_0x5da089,_0x5d23ed){const _0x3def70=_0x3b03cb;_0x5d23ed[_0x3def70(0xfd)](_0x5da089,_0x2ad554(_0x4c0be1)[_0x3def70(0xf1)]);}):_0x5433c3[_0x3b03cb(0x123)](_0x4c0be1);_0x369672=_0x5433c3[_0x3b03cb(0xf2)](_0xa1d905,{'class':_0x16d0be},_0x928e5c);}}if(_0x3b03cb(0xfb)===_0x45c0f1){const _0x1ef7b0=_0x5433c3[_0x3b03cb(0xf2)](_0x3b03cb(0x9a),{'class':_0x3b03cb(0x91)},[_0x369672]);if((_0x3b03cb(0xad)===this[_0x3b03cb(0x89)]||_0x389438&&[_0x3b03cb(0x15c),_0x3b03cb(0x122)][_0x3b03cb(0x131)](_0x389438))&&_0x5433c3[_0x3b03cb(0x93)](_0x3b03cb(0xbf),_0x3b03cb(0x15a)+_0x40a222+'px',_0x1ef7b0),_0x369672[_0x3b03cb(0x9c)](_0x3b03cb(0x154)))_0x5433c3[_0x3b03cb(0xcd)](_0x3b03cb(0x14d),_0x1ef7b0);else{if(_0x369672[_0x3b03cb(0x9c)](_0x3b03cb(0x147))){for(const _0x13d3e9 of _0x369672[_0x3b03cb(0x162)]())if(_0x3b03cb(0x108)!==_0x13d3e9){const _0xe540cf=_0x13d3e9[_0x3b03cb(0xd6)](_0x3b03cb(0x108),_0x3b03cb(0x91));_0x5433c3[_0x3b03cb(0xcd)](_0xe540cf,_0x1ef7b0);}_0x5433c3[_0x3b03cb(0x93)](_0x3b03cb(0x142),this[_0x3b03cb(0xc6)](_0x32b8ef[_0x3b03cb(0x96)]('id')),_0x1ef7b0),_0x5433c3[_0x3b03cb(0xa1)](_0x3b03cb(0xcf),_0x389438,_0x1ef7b0);}}return _0x5433c3[_0x3b03cb(0xa1)](_0x3b03cb(0x8c),!0x0,_0x1ef7b0),_0x51a715(_0x1ef7b0,_0x5433c3,{'hasSelectionHandle':!0x0});}return _0x5433c3[_0x3b03cb(0xa1)](_0x3b03cb(0xae),!0x0,_0x369672),_0x51a715(_0x369672,_0x5433c3);}[_0x23243a(0x12f)](_0x513106){const _0x530160=_0x23243a,_0x5e6916=this[_0x530160(0x8b)](_0x513106[_0x530160(0x96)]('id'));if(!_0x5e6916)return _0x530160(0xad)===this[_0x530160(0x89)]?{'label':_0x513106[_0x530160(0x96)]('id'),'classes':_0x530160(0x108)}:{'label':_0x513106[_0x530160(0x96)]('id'),'classes':_0x530160(0xdf),'status':_0x530160(0x122)};const _0x4a43fc=this[_0x530160(0xc6)](_0x5e6916['id']),_0x3b56d8=this[_0x530160(0x10a)](_0x5e6916['id']),_0x13c0cc=this[_0x530160(0xd3)](_0x513106[_0x530160(0x96)]('id')),_0x140ea3=_0x530160(0x109)!==_0x3b56d8?_0x5e6916[_0x530160(0xc9)]||0x78:void 0x0;if(_0x530160(0xad)===this[_0x530160(0x89)])return{'label':_0x4a43fc,'height':_0x140ea3,'classes':_0x530160(0x108)};if(_0x530160(0x157)===this[_0x530160(0x89)])return _0x13c0cc?{'label':_0x13c0cc,'height':_0x140ea3,'classes':_0x530160(0x106)}:{'label':_0x4a43fc,'height':_0x140ea3,'classes':_0x530160(0xdc),'status':_0x530160(0x15c)};const _0x24a873=this[_0x530160(0x124)](_0x5e6916['id'],this[_0x530160(0x89)]);return _0x24a873?{'label':_0x24a873,'height':_0x140ea3,'classes':_0x530160(0x106)}:_0x13c0cc?{'label':_0x13c0cc,'height':_0x140ea3,'classes':_0x530160(0xb3),'status':_0x530160(0xba)}:{'label':_0x4a43fc,'height':_0x140ea3,'classes':_0x530160(0x12e),'status':_0x530160(0x122)};}[_0x23243a(0xa9)](_0x13a1d5,_0x5bac57,_0x14718e){const _0x41d1ba=_0x23243a,_0x33e6ac=_0x13a1d5[_0x41d1ba(0x96)]('id'),_0x54d133=_0x14718e&&_0x14718e[_0x33e6ac]?_0x14718e[_0x33e6ac]:this[_0x41d1ba(0x152)]+_0x33e6ac+this[_0x41d1ba(0xcb)];let _0x587a69;if(_0x14718e)_0x587a69=_0x5bac57[_0x41d1ba(0x14c)](_0x41d1ba(0xc0),{},function(_0x51973b,_0x399afc){const _0x3e380e=_0x41d1ba;_0x399afc[_0x3e380e(0xfd)](_0x51973b,String(_0x54d133));});else{_0x587a69=_0x5bac57[_0x41d1ba(0xf2)](_0x41d1ba(0xc0));const _0x284d98=_0x5bac57[_0x41d1ba(0x123)](_0x54d133);_0x5bac57[_0x41d1ba(0x8d)](_0x5bac57[_0x41d1ba(0x10c)](_0x587a69,_0x41d1ba(0x146)),_0x284d98);}return _0x5bac57[_0x41d1ba(0xa1)](_0x41d1ba(0x13c),!0x0,_0x587a69),_0x587a69;}[_0x23243a(0xe2)](){const _0x1a0de4=_0x23243a;this[_0x1a0de4(0x107)][_0x1a0de4(0x125)](_0x56c6a4=>{const _0x348115=_0x1a0de4;_0x348115(0xdd)!==_0x56c6a4[_0x348115(0x126)][_0x348115(0x11e)]&&this[_0x348115(0xc7)][_0x348115(0x156)][_0x348115(0x12c)](_0x56c6a4);});}[_0x23243a(0xfe)](_0x1ce673){const _0x429b52=_0x23243a;if(!this[_0x429b52(0x12a)][_0x429b52(0x131)](_0x1ce673))throw new _0x23be7e(_0x429b52(0x118),this,{'availablePreviewModes':this[_0x429b52(0x12a)],'previewMode':_0x1ce673});}[_0x23243a(0x103)](){const _0x14b1ea=_0x23243a;for(const _0x4f1c58 of this[_0x14b1ea(0xc7)][_0x14b1ea(0x8e)][_0x14b1ea(0x102)][_0x14b1ea(0xbc)][_0x14b1ea(0xd1)]({'includeChangesInGraveyard':!0x0})){if(_0x14b1ea(0x8d)!==_0x4f1c58[_0x14b1ea(0xac)]||_0x14b1ea(0xed)===_0x4f1c58[_0x14b1ea(0xb9)])continue;if(_0x14b1ea(0xae)===_0x4f1c58[_0x14b1ea(0xb9)]||_0x14b1ea(0x8c)===_0x4f1c58[_0x14b1ea(0xb9)]){this[_0x14b1ea(0x107)][_0x14b1ea(0x143)](_0x4f1c58[_0x14b1ea(0x144)][_0x14b1ea(0xd5)]);continue;}const _0x4fcdb5=this[_0x14b1ea(0xc7)][_0x14b1ea(0x8e)][_0x14b1ea(0x160)](_0x4f1c58[_0x14b1ea(0x144)][_0x14b1ea(0xd5)]);for(const _0x2a8f32 of _0x4fcdb5[_0x14b1ea(0x145)]())_0x2a8f32['is'](_0x14b1ea(0xde),_0x14b1ea(0xae))&&this[_0x14b1ea(0x107)][_0x14b1ea(0x143)](_0x2a8f32);}}[_0x23243a(0xcc)](){const _0x4c588a=_0x23243a,_0x54d3de=this[_0x4c588a(0xc7)];_0x54d3de[_0x4c588a(0x8e)][_0x4c588a(0x102)][_0x4c588a(0xa4)](_0x47f538=>{const _0x286faf=_0x4c588a;if(!_0x47f538[_0x286faf(0xea)][_0x286faf(0xdb)])return!0x1;const _0x164e5a=[],_0x27ec1c=new Set(),_0x30b784=this[_0x286faf(0xf5)];let _0x1c4300=!0x1;for(const _0x380dbc of _0x54d3de[_0x286faf(0x8e)][_0x286faf(0x102)][_0x286faf(0xbc)][_0x286faf(0xd1)]())if(_0x286faf(0x8d)===_0x380dbc[_0x286faf(0xac)]||_0x286faf(0xc5)===_0x380dbc[_0x286faf(0xac)]){let _0x236e60=_0x286faf(0xed)==_0x380dbc[_0x286faf(0xb9)]?_0x380dbc[_0x286faf(0x144)][_0x286faf(0x8f)]:_0x380dbc[_0x286faf(0x144)][_0x286faf(0xd5)];if(!_0x236e60)continue;_0x236e60['is'](_0x286faf(0xed))&&(_0x236e60=_0x236e60[_0x286faf(0x8f)]),_0x1f5b71(_0x236e60);}for(const _0x438e70 of _0x164e5a[_0x286faf(0x11a)]()){const {match:_0x1eb72c,item:_0x495412}=_0x438e70,_0x54a7f4=_0x47f538[_0x286faf(0x10c)](_0x495412,_0x1eb72c[_0x286faf(0x99)]),_0x19531f=_0x54a7f4[_0x286faf(0xc1)](_0x1eb72c[0x0][_0x286faf(0x90)]),_0x43b711=_0x47f538[_0x286faf(0x155)](_0x54a7f4,_0x19531f),_0xe91724=_0x1eb72c[0x0],_0x11a302=_0xe91724[_0x286faf(0x153)](this[_0x286faf(0x152)][_0x286faf(0x90)],_0xe91724[_0x286faf(0x90)]-this[_0x286faf(0xcb)][_0x286faf(0x90)]),_0x12a3e2=_0x104027(_0x43b711);if(_0x12a3e2[_0x286faf(0x13e)]('id',_0x11a302),_0x286faf(0xfb)===this[_0x286faf(0x10a)](_0x11a302)){const _0x31f741=_0x47f538[_0x286faf(0xd2)](_0x286faf(0x8c),{'id':_0x11a302});_0x47f538[_0x286faf(0xc5)](_0x43b711),_0x54d3de[_0x286faf(0x8e)][_0x286faf(0x14f)](_0x31f741,null,null,{'setSelection':'on','findOptimalPosition':void 0x0});}else{const _0x5372e6=_0x47f538[_0x286faf(0xd2)](_0x286faf(0xae),_0x12a3e2);_0x54d3de[_0x286faf(0x8e)][_0x286faf(0xeb)][_0x286faf(0x100)](_0x43b711[_0x286faf(0x11b)],_0x286faf(0xae))?_0x54d3de[_0x286faf(0x8e)][_0x286faf(0x14f)](_0x5372e6,_0x43b711):_0x47f538[_0x286faf(0xc5)](_0x43b711);}_0x1c4300=!0x0;}return _0x1c4300;function _0x1f5b71(_0x3d38f9){const _0x33db86=_0x286faf;let _0x326157='',_0x37701a=0x0;if(!_0x27ec1c[_0x33db86(0x15e)](_0x3d38f9))for(const _0x23a009 of _0x3d38f9[_0x33db86(0xb6)]()){const _0x5dc351=_0x23a009[_0x33db86(0x148)];if(_0x23a009['is'](_0x33db86(0xed))&&(''===_0x326157&&_0x23a009[_0x33db86(0xd8)]&&(_0x37701a=_0x23a009[_0x33db86(0xd8)]),_0x326157+=_0x23a009[_0x33db86(0x10b)]),!_0x5dc351||_0x5dc351['is'](_0x33db86(0xde))){for(const _0x44e51d of _0x326157[_0x33db86(0x13b)](_0x30b784))_0x44e51d[_0x33db86(0x99)]=_0x44e51d[_0x33db86(0x99)]+_0x37701a,_0x164e5a[_0x33db86(0xff)]({'match':_0x44e51d,'item':_0x3d38f9});_0x27ec1c[_0x33db86(0x143)](_0x3d38f9),_0x326157='';}_0x23a009['is'](_0x33db86(0xde))&&_0x1f5b71(_0x23a009);}}function _0x104027(_0x2017c5){const _0xe84b30=_0x286faf,_0x3c4db6=_0x2017c5[_0xe84b30(0x145)](),_0x4ea04a=_0x3c4db6[_0xe84b30(0x9e)]()[_0xe84b30(0x119)],_0x194035=new Map(_0x4ea04a[_0xe84b30(0x94)]());for(const _0x4654dd of _0x3c4db6)for(const [_0x3e720e,_0x41e2e8]of _0x194035)_0x4654dd[_0xe84b30(0x96)](_0x3e720e)!==_0x41e2e8&&_0x194035[_0xe84b30(0xf4)](_0x3e720e);return _0x194035;}});}}
|
package/src/mergefieldsui.d.ts
CHANGED
|
@@ -23,6 +23,14 @@ export default class MergeFieldsUI extends Plugin {
|
|
|
23
23
|
* @inheritDoc
|
|
24
24
|
*/
|
|
25
25
|
static get pluginName(): "MergeFieldsUI";
|
|
26
|
+
/**
|
|
27
|
+
* @inheritDoc
|
|
28
|
+
*/
|
|
29
|
+
static get isOfficialPlugin(): true;
|
|
30
|
+
/**
|
|
31
|
+
* @inheritDoc
|
|
32
|
+
*/
|
|
33
|
+
static get isPremiumPlugin(): true;
|
|
26
34
|
/**
|
|
27
35
|
* @inheritDoc
|
|
28
36
|
*/
|