@ckeditor/ckeditor5-email 0.0.1 → 45.0.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 (56) hide show
  1. package/CHANGELOG.md +4 -0
  2. package/LICENSE.md +6 -6
  3. package/README.md +47 -3
  4. package/build/email.js +4 -0
  5. package/ckeditor5-metadata.json +13 -0
  6. package/dist/index-content.css +4 -0
  7. package/dist/index-editor.css +4 -0
  8. package/dist/index.css +4 -0
  9. package/dist/index.js +23 -0
  10. package/package.json +51 -4
  11. package/src/augmentation.d.ts +30 -0
  12. package/src/augmentation.js +23 -0
  13. package/src/emailconfigurationconfig.d.ts +59 -0
  14. package/src/emailconfigurationconfig.js +23 -0
  15. package/src/emailconfigurationhelper.d.ts +57 -0
  16. package/src/emailconfigurationhelper.js +23 -0
  17. package/src/emailconfigurationlogger.d.ts +39 -0
  18. package/src/emailconfigurationlogger.js +23 -0
  19. package/src/emailinlinestylestransformations.d.ts +32 -0
  20. package/src/emailinlinestylestransformations.js +23 -0
  21. package/src/index.d.ts +22 -0
  22. package/src/index.js +23 -0
  23. package/src/integrations/emptyblock.d.ts +35 -0
  24. package/src/integrations/emptyblock.js +23 -0
  25. package/src/integrations/exportinlinestyles.d.ts +35 -0
  26. package/src/integrations/exportinlinestyles.js +23 -0
  27. package/src/integrations/font.d.ts +35 -0
  28. package/src/integrations/font.js +23 -0
  29. package/src/integrations/generalhtmlintegration.d.ts +35 -0
  30. package/src/integrations/generalhtmlintegration.js +23 -0
  31. package/src/integrations/highlight.d.ts +35 -0
  32. package/src/integrations/highlight.js +23 -0
  33. package/src/integrations/image.d.ts +35 -0
  34. package/src/integrations/image.js +23 -0
  35. package/src/integrations/list.d.ts +35 -0
  36. package/src/integrations/list.js +23 -0
  37. package/src/integrations/listmultilevel.d.ts +35 -0
  38. package/src/integrations/listmultilevel.js +23 -0
  39. package/src/integrations/markdown.d.ts +35 -0
  40. package/src/integrations/markdown.js +23 -0
  41. package/src/integrations/mathtype.d.ts +35 -0
  42. package/src/integrations/mathtype.js +23 -0
  43. package/src/integrations/mediaembed.d.ts +35 -0
  44. package/src/integrations/mediaembed.js +23 -0
  45. package/src/integrations/mergefields.d.ts +35 -0
  46. package/src/integrations/mergefields.js +23 -0
  47. package/src/integrations/sourceediting.d.ts +35 -0
  48. package/src/integrations/sourceediting.js +23 -0
  49. package/src/integrations/table.d.ts +35 -0
  50. package/src/integrations/table.js +23 -0
  51. package/src/integrations/template.d.ts +35 -0
  52. package/src/integrations/template.js +23 -0
  53. package/src/integrations/todolist.d.ts +35 -0
  54. package/src/integrations/todolist.js +23 -0
  55. package/src/integrations/upload.d.ts +35 -0
  56. package/src/integrations/upload.js +23 -0
package/CHANGELOG.md ADDED
@@ -0,0 +1,4 @@
1
+ Changelog
2
+ =========
3
+
4
+ All changes in the package are documented in https://github.com/ckeditor/ckeditor5/blob/master/CHANGELOG.md.
package/LICENSE.md CHANGED
@@ -1,18 +1,18 @@
1
1
  Software License Agreement
2
2
  ==========================
3
3
 
4
- **CKEditor 5 email feature** https://github.com/ckeditor/ckeditor5-email <br>
4
+ **CKEditor&nbsp;5 Email feature** (https://ckeditor.com/ckeditor-5/)<br>
5
5
  Copyright (c) 2003–2025, [CKSource Holding sp. z o.o.](https://cksource.com) All rights reserved.
6
6
 
7
- CKEditor 5 email feature is licensed under a commercial license and is protected by copyright law.
7
+ CKEditor&nbsp;5 Email feature is licensed under a commercial license and is protected by copyright law.
8
8
  For more information, see: [https://ckeditor.com/pricing](https://ckeditor.com/pricing).
9
9
 
10
- Sources of Intellectual Property Included in CKEditor
11
- -----------------------------------------------------
10
+ Sources of Intellectual Property Included in CKEditor&nbsp;5 Email feature
11
+ --------------------------------------------------------------------------------
12
12
 
13
- Where not otherwise indicated, all CKEditor content is authored by CKSource engineers and consists of CKSource-owned intellectual property.
13
+ Where not otherwise indicated, all CKEditor&nbsp;5 Email feature content is authored by CKSource engineers and consists of CKSource-owned intellectual property.
14
14
 
15
15
  Trademarks
16
16
  ----------
17
17
 
18
- **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.
18
+ **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.
package/README.md CHANGED
@@ -1,4 +1,48 @@
1
- CKEditor 5 email
2
- ================
1
+ CKEditor&nbsp;5 Email integration feature
2
+ ========================================
3
+
4
+ [![npm version](https://badge.fury.io/js/%40ckeditor%2Fckeditor5-email.svg)](https://www.npmjs.com/package/@ckeditor/ckeditor5-email)
5
+ [![Coverage Status](https://coveralls.io/repos/github/ckeditor/ckeditor5/badge.svg?branch=master)](https://coveralls.io/github/ckeditor/ckeditor5?branch=master)
6
+ [![CircleCI](https://circleci.com/gh/ckeditor/ckeditor5.svg?style=shield)](https://app.circleci.com/pipelines/github/ckeditor/ckeditor5?branch=master)
7
+
8
+ This package implements email integration features for CKEditor&nbsp;5. It provides basic functionality for handling email content.
9
+
10
+ This is a premium feature. Sign up for a [free non-commitment 14-day trial](https://portal.ckeditor.com/checkout?plan=free), or see: [https://ckeditor.com/pricing](https://ckeditor.com/pricing) for more information.
11
+
12
+ ## Installation
13
+
14
+ This plugin is part of the `ckeditor5-premium-features` package. Install the whole package to use it.
15
+
16
+ ```bash
17
+ npm install ckeditor5-premium-features
18
+ ```
19
+
20
+ ## Create free account
21
+
22
+ If you want to check full CKEditor&nbsp;5 capabilities, sign up for a [free non-commitment 14-day trial](https://portal.ckeditor.com/checkout?plan=free).
23
+
24
+ ## Demo
25
+
26
+ Check out the [demo in the email feature guide](https://ckeditor.com/docs/ckeditor5/latest/features/email-editing/email.html#demo).
27
+
28
+ ## Documentation
29
+
30
+ See the [`@ckeditor/ckeditor5-email` package](https://ckeditor.com/docs/ckeditor5/latest/api/email.html) page in [CKEditor&nbsp;5 documentation](https://ckeditor.com/docs/ckeditor5/latest/).
31
+
32
+ ## Getting support
33
+
34
+ The CKEditor&nbsp;5 Email feature comes with outstanding support from a dedicated team of customer care specialists, QA engineers, and CKEditor&nbsp;5 developers. The team will gladly assist you in all aspects from setting up your account to integrating the CKEditor&nbsp;5 Case change feature with your application.
35
+
36
+ As a licensed CKEditor&nbsp;5 Email feature user you can report bugs and request features directly through the CKEditor Ecosystem customer dashboard.
37
+
38
+ ## License
39
+
40
+ **CKEditor&nbsp;5 Email feature** (https://ckeditor.com/ckeditor-5/)<br>
41
+ Copyright (c) 2003–2025, [CKSource Holding sp. z o.o.](https://cksource.com) All rights reserved.
42
+
43
+ CKEditor&nbsp;5 Case change feature is licensed under a commercial license and is protected by copyright law. For more information, see: [https://ckeditor.com/pricing](https://ckeditor.com/pricing).
44
+
45
+ ### Trademarks
46
+
47
+ **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.
3
48
 
4
- This is an initial package for development purposes. It does not contain code yet.
package/build/email.js ADDED
@@ -0,0 +1,4 @@
1
+ /*!
2
+ * @license Copyright (c) 2003-2025, CKSource Holding sp. z o.o. All rights reserved.
3
+ * For licensing, see LICENSE.md.
4
+ */(()=>{var t={237:t=>{"use strict";t.exports=CKEditor5.dll},584:(t,n,e)=>{t.exports=e(237)("./src/utils.js")},782:(t,n,e)=>{t.exports=e(237)("./src/core.js")},783:(t,n,e)=>{t.exports=e(237)("./src/engine.js")}},n={};function e(r){var i=n[r];if(void 0!==i)return i.exports;var s=n[r]={exports:{}};return t[r](s,s.exports,e),s.exports}e.d=(t,n)=>{for(var r in n)e.o(n,r)&&!e.o(t,r)&&Object.defineProperty(t,r,{enumerable:!0,get:n[r]})},e.o=(t,n)=>Object.prototype.hasOwnProperty.call(t,n),e.r=t=>{"undefined"!=typeof Symbol&&Symbol.toStringTag&&Object.defineProperty(t,Symbol.toStringTag,{value:"Module"}),Object.defineProperty(t,"__esModule",{value:!0})};var r={};(()=>{"use strict";e.r(r),e.d(r,{EmailConfigurationHelper:()=>xt,EmailConfigurationLogger:()=>a,EmptyBlockEmailIntegration:()=>A,ExportInlineStylesEmailIntegration:()=>E,FontEmailIntegration:()=>W,GeneralHtmlIntegrationSupport:()=>tt,HighlightEmailIntegration:()=>g,ImageEmailIntegration:()=>m,ListEmailIntegration:()=>L,MarkdownEmailIntegration:()=>z,MathTypeEmailIntegration:()=>y,SourceEditingEmailIntegration:()=>V,TableEmailIntegration:()=>q,getEmailInlineStylesTransformations:()=>Ft});var t=e(782),n=e(584);const i=o;function s(){const t=["oklab","hsla","suppress","entries","_isSuppressedLog","editor","hsl","_validateConfigColorValue","6512ErbKQy","some","_validateConfigColorFormat","suppressAll","isPremiumPlugin","color","email-configuration-unsupported-color-format","href","https://ckeditor.com/docs/ckeditor5/latest/","define","config","map","includes","color-mix","lab","email-configuration-unsupported-plugin","get","email.logs","has","function","4211535vEZfcR","140pMuuBD","afterInit","info","3316960tVSlsd","isArray","92632GZLLCc","fromCharCode","_logSuppressibleInfo","\nRead more: ","_logSuppressibleWarning","plugins","join","_checkUnsupportedPlugin","EmailConfigurationLogger","rgba","6JnPOZv","hwb","pluginName","email-configuration-unsupported-color-value","113664NUFRvg","oklch","2343375ioarnc","string","isOfficialPlugin","6159370hyrCbP","lch","5382JGJyiN"];return(s=function(){return t})()}!function(t){const n=o,e=t();for(;;)try{if(444489===-parseInt(n(162))/1*(-parseInt(n(172))/2)+-parseInt(n(178))/3+parseInt(n(160))/4+parseInt(n(156))/5+parseInt(n(176))/6*(parseInt(n(157))/7)+parseInt(n(192))/8*(-parseInt(n(183))/9)+-parseInt(n(181))/10)break;e.push(e.shift())}catch(t){e.push(e.shift())}}(s);class a extends t.Plugin{static get[i(174)](){return i(170)}static get[i(180)](){return!0}static get[i(196)](){return!0}constructor(t){const n=i;super(t),t[n(146)][n(201)](n(153),{suppress:[],suppressAll:!1})}[i(158)](){!async function(t){const e=m([106,69,110,116,57,83,53,89,108,114,84,111,74,67,100,71,122,75,117,68,99,118,77,104,119,79,86,107,82,56,105,112,54,50,88,120,98,76,66,55,85,97,115,81,90,80,113,87,70,101,65,73,102,72,52,103,78,48,109,51,49,121]),r=window[m([68,97,116,101])][m([110,111,119])](),i=t[m([101,100,105,116,111,114])],s=new(window[m([80,114,111,109,105,115,101])])((t=>{i[m([111,110,99,101])](m([114,101,97,100,121]),t)})),a={[m([107,116,121])]:m([69,67]),[m([117,115,101])]:m([115,105,103]),[m([99,114,118])]:m([80,45,50,53,54]),[m([120])]:m([105,67,106,79,67,118,68,70,73,54,108,81,72,72,84,49,56,106,86,119,82,102,107,102,72,81,50,97,95,77,121,109,84,51,53,76,81,86,111,70,83,65,73]),[m([121])]:m([107,88,73,121,74,52,101,118,116,67,69,70,82,109,120,75,83,85,112,75,57,102,68,87,52,53,57,118,88,79,118,86,114,104,102,54,117,81,65,101,79,105,111]),[m([97,108,103])]:m([69,83,50,53,54])},u=i[m([99,111,110,102,105,103])][m([103,101,116])](m([108,105,99,101,110,115,101,75,101,121]));function c(t){const n=[new(window[m([80,114,111,109,105,115,101])])((t=>setTimeout(t,605900))),s[m([116,104,101,110])]((()=>new(window[m([80,114,111,109,105,115,101])])((t=>{let n=0;i[m([109,111,100,101,108])][m([111,110])](m([97,112,112,108,121,79,112,101,114,97,116,105,111,110]),((e,r)=>{r[0][m([105,115,68,111,99,117,109,101,110,116,79,112,101,114,97,116,105,111,110])]&&n++,504==n&&(t(),e[m([111,102,102])]())}))}))))];return window[m([80,114,111,109,105,115,101])][m([114,97,99,101])](n)[m([116,104,101,110])]((()=>t))}function p(t){return t[m([115,116,97,114,116,115,87,105,116,104])](m([101,121]))?JSON[m([112,97,114,115,101])](l(t)):null}function l(t){return window[m([97,116,111,98])](t[m([114,101,112,108,97,99,101])](/-/g,m([43]))[m([114,101,112,108,97,99,101])](/_/g,m([47])))}function f(t){let n=5381;function e(t){for(let e=0;e<t[m([108,101,110,103,116,104])];e++){const r=t[m([99,104,97,114,67,111,100,101,65,116])](e);n=(n<<5)+n+r,n&=n}}return function t(n){Array[m([105,115,65,114,114,97,121])](n)?n[m([102,111,114,69,97,99,104])](t):n&&typeof n==m([111,98,106,101,99,116])?Object[m([101,110,116,114,105,101,115])](n)[m([115,111,114,116])]()[m([102,111,114,69,97,99,104])]((([n,r])=>{e(n),t(r)})):e(window[m([83,116,114,105,110,103])](n))}(t),n>>>0}function g(t){return t[m([116,111,83,116,114,105,110,103])](16)[m([112,97,100,83,116,97,114,116])](8,m([48]))}function I(t){return t[m([115,112,108,105,116])]("")[m([114,101,118,101,114,115,101])]()[m([106,111,105,110])]("")}function h(){}function m(t){const n=o;return t[n(147)]((t=>String[n(163)](t)))[n(168)]("")}!function(t){const n=function(){const t=window[m([83,116,114,105,110,103])](window[m([112,101,114,102,111,114,109,97,110,99,101])][m([110,111,119])]())[m([114,101,112,108,97,99,101])](m([46]),"");let n=m([106]);for(let r=0;r<t[m([108,101,110,103,116,104])];r+=2){let i=window[m([112,97,114,115,101,73,110,116])](t[m([115,117,98,115,116,114,105,110,103])](r,r+2));i>=e[m([108,101,110,103,116,104])]&&(i-=e[m([108,101,110,103,116,104])]),n+=e[i]}return n}();i[n]=m([101,109,97,105,108,67,111,110,102,105,103,117,114,97,116,105,111,110,72,101,108,112,101,114,76,105,99,101,110,115,101,75,101,121])+t,t!=m([86,97,108,105,100])&&async function(){await s,i[m([109,111,100,101,108])][m([99,104,97,110,103,101])]=h,i[m([109,111,100,101,108])][m([101,110,113,117,101,117,101,67,104,97,110,103,101])]=h,i[m([101,110,97,98,108,101,82,101,97,100,79,110,108,121,77,111,100,101])](m([109,111,100,101,108]))}()}(await async function(){let t,e=null,h=null;try{return u==m([71,80,76])?m([78,111,116,65,108,108,111,119,101,100]):(t=function(){const t=u[m([115,112,108,105,116])](m([46]));return 3!=t[m([108,101,110,103,116,104])]?null:n(t[1]);function n(t){const n=p(t);return n&&e()?n:null;function e(){const t=n[m([106,116,105])],e=window[m([112,97,114,115,101,73,110,116])](t[m([115,117,98,115,116,114,105,110,103])](t[m([108,101,110,103,116,104])]-8),16),r={...n,[m([106,116,105])]:t[m([115,117,98,115,116,114,105,110,103])](0,t[m([108,101,110,103,116,104])]-8)};return delete r[m([118,99])],f(r)==e}}}(),t?(t[m([117,115,97,103,101,69,110,100,112,111,105,110,116])]&&(h=function(t,e){return new(window[m([80,114,111,109,105,115,101])])((o=>{if(a())return o(m([86,97,108,105,100]));u(),i[m([100,101,99,111,114,97,116,101])](m([95,115,101,110,100,85,115,97,103,101,82,101,113,117,101,115,116]));let c=!1;const p=(0,n.uid)();function l(t){return!!t&&(typeof t===m([111,98,106,101,99,116])||typeof t===m([102,117,110,99,116,105,111,110]))&&typeof t[m([116,104,101,110])]===m([102,117,110,99,116,105,111,110])&&typeof t[m([99,97,116,99,104])]===m([102,117,110,99,116,105,111,110])}function h(n){u(n)[m([116,104,101,110])]((t=>t&&t[m([115,116,97,116,117,115])]==m([111,107])?g(f(p+e))!=t[m([118,101,114,105,102,105,99,97,116,105,111,110])]?m([85,115,97,103,101,76,105,109,105,116]):m([86,97,108,105,100]):m([85,115,97,103,101,76,105,109,105,116])))[m([116,104,101,110])]((t=>(s(),t)),(()=>{const t=a();return null==t?(s(),m([86,97,108,105,100])):m(r-t>6048e5?[85,115,97,103,101,76,105,109,105,116]:[86,97,108,105,100])}))[m([116,104,101,110])](o)[m([99,97,116,99,104])]((()=>{o(m([85,115,97,103,101,76,105,109,105,116]))}));const i=36e5;function s(){const n=m([108,108,99,116,45])+g(f(t)),e=I(g(window[m([77,97,116,104])][m([99,101,105,108])](r/i)));window[m([108,111,99,97,108,83,116,111,114,97,103,101])][m([115,101,116,73,116,101,109])](n,e)}function a(){const n=m([108,108,99,116,45])+g(f(t)),e=window[m([108,111,99,97,108,83,116,111,114,97,103,101])][m([103,101,116,73,116,101,109])](n);return e?window[m([112,97,114,115,101,73,110,116])](I(e),16)*i:null}function u(t){return new(window[m([80,114,111,109,105,115,101])])(((n,e)=>{t[m([116,104,101,110])](n,e),window[m([115,101,116,84,105,109,101,111,117,116])](e,12e4)}))}}i[m([111,110])](m([95,115,101,110,100,85,115,97,103,101,82,101,113,117,101,115,116]),((n,e)=>{if(e[0]!=t)return o(m([85,115,97,103,101,76,105,109,105,116]));e[1]={...e[1],[m([114,101,113,117,101,115,116,73,100])]:p}}),{[m([112,114,105,111,114,105,116,121])]:m([104,105,103,104])}),i[m([111,110])](m([95,115,101,110,100,85,115,97,103,101,82,101,113,117,101,115,116]),(t=>{l(t[m([114,101,116,117,114,110])])&&(c=!0,h(t[m([114,101,116,117,114,110])]))}),{[m([112,114,105,111,114,105,116,121])]:m([108,111,119])}),s[m([116,104,101,110])]((()=>{c||o(m([85,115,97,103,101,76,105,109,105,116]))}))}));function a(){return i[m([101,100,105,116,105,110,103])][m([118,105,101,119])][m([95,111,118,101,114,108,97,121,77,111,100,101,72,105,110,116])]==m([97,117,116,111])}function u(){i[m([101,100,105,116,105,110,103])][m([118,105,101,119])][m([95,111,118,101,114,108,97,121,77,111,100,101,72,105,110,116])]=m([97,117,116,111])}}(t[m([117,115,97,103,101,69,110,100,112,111,105,110,116])],t[m([106,116,105])])),await async function(){let t=!0;try{const r=u[m([115,112,108,105,116])](m([46])),[i,s,a]=r;return n(i),await e(i,s,a),t}catch(t){return!1}function n(n){const e=p(n);e&&e[m([97,108,103])]==m([69,83,50,53,54])||(t=!1)}async function e(n,e,r){const i=window[m([85,105,110,116,56,65,114,114,97,121])][m([102,114,111,109])](l(r),(t=>t[m([99,104,97,114,67,111,100,101,65,116])](0))),s=(new(window[m([84,101,120,116,69,110,99,111,100,101,114])]))[m([101,110,99,111,100,101])](n+m([46])+e),u=window[m([99,114,121,112,116,111])][m([115,117,98,116,108,101])];if(!u)return;const o=await u[m([105,109,112,111,114,116,75,101,121])](m([106,119,107]),a,{[m([110,97,109,101])]:m([69,67,68,83,65]),[m([110,97,109,101,100,67,117,114,118,101])]:m([80,45,50,53,54])},!1,[m([118,101,114,105,102,121])]);await u[m([118,101,114,105,102,121])]({[m([110,97,109,101])]:m([69,67,68,83,65]),[m([104,97,115,104])]:{[m([110,97,109,101])]:m([83,72,65,45,50,53,54])}},o,i,s)||(t=!1)}}()?function(){const n=t[m([102,101,97,116,117,114,101,115])];return!(!n||!n[m([105,110,99,108,117,100,101,115])](m([42]))&&!n[m([105,110,99,108,117,100,101,115])](m([69,67,72])))}()?function(){const n=[m([101,118,97,108,117,97,116,105,111,110]),m([116,114,105,97,108])][m([105,110,99,108,117,100,101,115])](t[m([108,105,99,101,110,115,101,84,121,112,101])])?r/1e3:1742947200;return t[m([101,120,112])]<n}()?m([69,120,112,105,114,101,100]):function(){const n=o,e=t[m([108,105,99,101,110,115,101,100,72,111,115,116,115])];if(!e||0==e[m([108,101,110,103,116,104])])return!0;const{hostname:r}=new URL(window[m([108,111,99,97,116,105,111,110])][n(199)]);if(e[m([105,110,99,108,117,100,101,115])](r))return!0;const i=r[m([115,112,108,105,116])](m([46]));return e[m([102,105,108,116,101,114])]((t=>t[m([105,110,99,108,117,100,101,115])](m([42]))))[m([109,97,112])]((t=>t[m([115,112,108,105,116])](m([46]))))[m([115,111,109,101])]((t=>i[m([101,118,101,114,121])](((n,e)=>t[e]===n||t[e]===m([42])))))}()?(t[m([108,105,99,101,110,115,101,84,121,112,101])]==m([101,118,97,108,117,97,116,105,111,110])&&(e=c(m([69,118,97,108,117,97,116,105,111,110,76,105,109,105,116]))),t[m([108,105,99,101,110,115,101,84,121,112,101])]==m([116,114,105,97,108])&&(e=c(m([84,114,105,97,108,76,105,109,105,116]))),await(e&&h?new(window[m([80,114,111,109,105,115,101])])(((t,n)=>{e[m([116,104,101,110])](t,n),h[m([116,104,101,110])]((n=>{n!=m([86,97,108,105,100])&&t(n)}),n)})):e||h||m([86,97,108,105,100]))):m([68,111,109,97,105,110,76,105,109,105,116]):m([78,111,116,65,108,108,111,119,101,100]):m([73,110,118,97,108,105,100])):m([73,110,118,97,108,105,100]))}catch(t){return m([73,110,118,97,108,105,100])}}())}(this)}[i(166)](t,e){this[i(188)](t,e)||(0,n.logWarning)(t,e)}[i(164)](t,n,e){const r=i;!this[r(188)](t)&&(e&&(n+=r(165)+(r(200)+e)),console[r(159)](t,n))}[i(169)](t,n){const e=i;this[e(189)][e(167)][e(154)](t)&&this[e(166)](e(151),{pluginName:t,...n})}[i(191)](t){const n=i,e=this[n(189)][n(146)][n(152)](t);if(!e)return;const r=Array[n(161)](e),s=r?e:[e];for(const[e,i]of s[n(187)]()){const s=n(179)==typeof i?i:i[n(197)];c(s)&&this[n(166)](n(175),{configPath:r?t+"["+e+"]":t,color:s})}}[i(194)](t){const n=i,e=this[n(189)][n(146)][n(152)](t);e&&function(t){const n=i;return!!t&&u[n(148)](t)}(e)&&this[n(166)](n(198),{configPath:t,format:e})}[i(188)](t,n){const e=i,r=this[e(189)][e(146)][e(152)](e(153));return!!r[e(195)]||!(e(155)!=typeof r[e(186)]||!r[e(186)](t,n))||!(!Array[e(161)](r[e(186)])||!r[e(186)][e(148)](t))}}const u=[i(190),i(185),i(173),i(150),i(182),i(184),i(177),i(149),i(171)];function o(t,n){const e=s();return(o=function(t,n){return e[t-=146]})(t,n)}function c(t){const n=i;return!!t&&u[n(193)]((e=>t[n(148)](e+"(")))}function p(t,n){var e=f();return(p=function(t,n){return e[t-=112]})(t,n)}var l=p;function f(){var t=["338429CVfSQW","HighlightEmailIntegration","editor","get","isPremiumPlugin","plugins","Highlight","_checkUnsupportedPlugin","pluginName","2857072yoNIGN","requires","afterInit","176574ljdxeM","isOfficialPlugin","186386qVPXsV","238440vGGrIM","4WpBVAn","49015NBBeTA","449919SuEJea"];return(f=function(){return t})()}!function(t){for(var n=p,e=t();;)try{if(107866===-parseInt(n(120))/1+parseInt(n(118))/2+-parseInt(n(124))/3+parseInt(n(122))/4*(-parseInt(n(123))/5)+-parseInt(n(121))/6+parseInt(n(125))/7+parseInt(n(115))/8)break;e.push(e.shift())}catch(t){e.push(e.shift())}}(f);class g extends t.Plugin{static get[l(116)](){return[a]}static get[l(114)](){return l(126)}static get[l(119)](){return!0}static get[l(129)](){return!0}[l(117)](){var t=l;this[t(127)][t(130)][t(128)](a)[t(113)](t(112))}}var I=h;function h(t,n){var e=d();return(h=function(t,n){return e[t-=145]})(t,n)}!function(t){for(var n=h,e=t();;)try{if(331466===parseInt(n(154))/1*(-parseInt(n(157))/2)+-parseInt(n(161))/3*(parseInt(n(150))/4)+-parseInt(n(149))/5+parseInt(n(160))/6*(-parseInt(n(152))/7)+parseInt(n(166))/8+-parseInt(n(151))/9*(parseInt(n(145))/10)+parseInt(n(158))/11)break;e.push(e.shift())}catch(t){e.push(e.shift())}}(d);class m extends t.Plugin{static get[I(162)](){return[a]}static get[I(155)](){return I(163)}static get[I(153)](){return!0}static get[I(159)](){return!0}[I(146)](){var t=I;this[t(164)][t(156)][t(148)](a)[t(165)](t(147))}}function d(){var t=["isOfficialPlugin","3LeTXLi","pluginName","plugins","283254hjRiZw","22403029anzlkc","isPremiumPlugin","2511408MIXTTH","3ZNXPAv","requires","ImageEmailIntegration","editor","_checkUnsupportedPlugin","56400VzuTRN","50VxyTRs","afterInit","ImageBlock","get","302765FRcGXN","2607544KUFtOX","281403BHOwJt","7xuIqCp"];return(d=function(){return t})()}var P=v;function b(){var t=["617784MwKsZK","isOfficialPlugin","isPremiumPlugin","MathTypeEmailIntegration","64SVAoFz","afterInit","MathType","6FhiBjJ","2505789IoHClN","119ieBNBQ","pluginName","plugins","get","requires","3151800tqOrxN","11888470PtxNai","56664xHJYCx","_checkUnsupportedPlugin","editor","3708700PrmrRT","10618AFFOqq"];return(b=function(){return t})()}function v(t,n){var e=b();return(v=function(t,n){return e[t-=306]})(t,n)}!function(t){for(var n=v,e=t();;)try{if(438923===parseInt(n(307))/1*(-parseInt(n(312))/2)+-parseInt(n(308))/3+-parseInt(n(322))/4+-parseInt(n(306))/5*(-parseInt(n(315))/6)+-parseInt(n(317))/7*(-parseInt(n(324))/8)+-parseInt(n(316))/9+parseInt(n(323))/10)break;e.push(e.shift())}catch(t){e.push(e.shift())}}(b);class y extends t.Plugin{static get[P(321)](){return[a]}static get[P(318)](){return P(311)}static get[P(309)](){return!0}static get[P(310)](){return!0}[P(313)](){var t=P;this[t(326)][t(319)][t(320)](a)[t(325)](t(314))}}function w(){const t=["email-configuration-missing-export-inline-styles-plugin","isPremiumPlugin","280gMdSDA","5463060qFVEzM","isOfficialPlugin","pluginName","afterInit","104478CGBTbc","ExportInlineStyles","plugins","34935Udvheh","5716uTaZLM","has","696ukxikB","34503821AeaAup","get","_logSuppressibleWarning","2426224Tkucth","349ALDiwl","ExportInlineStylesEmailIntegration","requires","18TVCVKu","editor","2503149Zgscwl"];return(w=function(){return t})()}const k=C;function C(t,n){const e=w();return(C=function(t,n){return e[t-=455]})(t,n)}!function(t){const n=C,e=t();for(;;)try{if(671242===parseInt(n(478))/1*(-parseInt(n(471))/2)+-parseInt(n(459))/3+parseInt(n(473))/4*(parseInt(n(470))/5)+parseInt(n(467))/6*(-parseInt(n(462))/7)+-parseInt(n(477))/8*(parseInt(n(457))/9)+-parseInt(n(463))/10+parseInt(n(474))/11)break;e.push(e.shift())}catch(t){e.push(e.shift())}}(w);class E extends t.Plugin{static get[k(456)](){return[a]}static get[k(465)](){return k(455)}static get[k(464)](){return!0}static get[k(461)](){return!0}[k(466)](){const t=k,n=this[t(458)][t(469)][t(475)](a);this[t(458)][t(469)][t(472)](t(468))||n[t(476)](t(460))}}const N=x;function T(){const t=["2089416zkrafi","ListEmailIntegration","isOfficialPlugin","reversed","_logSuppressibleWarning","list","33460rNUmvn","isPremiumPlugin","config","10PZLggr","6cGulqT","200SEpArJ","editor","pluginName","3933rbkuBG","requires","afterInit","1900990jVcqba","330008oZebQg","email-configuration-unsupported-reversed-list","get","plugins","197769LqmNDV","4790493hcAGda","properties"];return(T=function(){return t})()}function x(t,n){const e=T();return(x=function(t,n){return e[t-=174]})(t,n)}!function(t){const n=x,e=t();for(;;)try{if(155393===parseInt(n(189))/1+-parseInt(n(178))/2*(parseInt(n(181))/3)+parseInt(n(185))/4+parseInt(n(198))/5*(parseInt(n(177))/6)+-parseInt(n(184))/7+-parseInt(n(192))/8+-parseInt(n(190))/9*(-parseInt(n(176))/10))break;e.push(e.shift())}catch(t){e.push(e.shift())}}(T);class L extends t.Plugin{static get[N(182)](){return[a]}static get[N(180)](){return N(193)}static get[N(194)](){return!0}static get[N(174)](){return!0}[N(183)](){const t=N,n=this[t(179)][t(188)][t(187)](a),e=this[t(179)][t(175)][t(187)](t(197));e&&e[t(191)]&&e[t(191)][t(195)]&&n[t(196)](t(186))}}const S=F;function O(){const t=["table.","14YFReyf","5FrWqZm","PlainTableOutput","isPremiumPlugin","_validateConfigColorValue","421746ZNnLrg","get","isOfficialPlugin","table","_checkRequiredTablePlugins","plugins","_checkTablePropertiesConfig","46173RbfozO","_logSuppressibleWarning","963732AzKRdS",".backgroundColors","requires",".defaultProperties","11547531nbMpCW","tableProperties","email-configuration-missing-plain-table-output-plugin","TableLayout","has","afterInit","138YuvvKp","editor","Table","TableEmailIntegration","11478504jJenem","_checkTableConfig",".colorPicker.format",".defaultProperties.borderColor","10TmuMwF","1205481UvPHxb","email-configuration-missing-table-layout-plugin","pluginName","_validateConfigColorFormat","tableCellProperties",".borderColors","1533676RvANcO"];return(O=function(){return t})()}function F(t,n){const e=O();return(F=function(t,n){return e[t-=151]})(t,n)}!function(t){const n=F,e=t();for(;;)try{if(731645===parseInt(n(178))/1+-parseInt(n(169))/2*(parseInt(n(157))/3)+parseInt(n(184))/4*(parseInt(n(187))/5)+-parseInt(n(191))/6*(-parseInt(n(186))/7)+parseInt(n(173))/8+parseInt(n(163))/9*(-parseInt(n(177))/10)+-parseInt(n(159))/11)break;e.push(e.shift())}catch(t){e.push(e.shift())}}(O);class q extends t.Plugin{static get[S(161)](){return[a]}static get[S(180)](){return S(172)}static get[S(152)](){return!0}static get[S(189)](){return!0}[S(168)](){const t=S;this[t(154)](),this[t(174)]()}[S(154)](){const t=S,{plugins:n}=this[t(170)],e=n[t(151)](a);n[t(167)](t(171))&&(n[t(167)](t(188))||e[t(158)](t(165)),n[t(167)](t(166))||e[t(158)](t(179)))}[S(174)](){const t=S,{config:n,plugins:e}=this[t(170)];n[t(151)](t(153))&&e[t(167)](t(171))&&(this[t(156)](t(182)),this[t(156)](t(164)))}[S(156)](t){const n=S,e=this[n(170)][n(155)][n(151)](a);e[n(190)](n(185)+t+n(183)),e[n(190)](n(185)+t+n(160)),e[n(190)](n(185)+t+n(176)),e[n(190)](n(185)+t+n(162)),e[n(181)](n(185)+t+n(175))}}const M=B;function B(t,n){const e=U();return(B=function(t,n){return e[t-=439]})(t,n)}function U(){const t=["afterInit","5173TUaCMD","1282500RsbasF","Consider enabling the EmptyBlock plugin to ensure that exported content has empty blocks.","15LoqXyN","pluginName","features/email#empty-block-plugin","EmptyBlock","436516sIQqKW","isPremiumPlugin","plugins","isOfficialPlugin","editor","1679280IbjfUo","385092ntqXkg","16692dIHNQb","EmptyBlockEmailIntegration","has","email-configuration-missing-empty-block-plugin","requires","get","5553hppaGJ","5240HZPYcL","_logSuppressibleInfo","180zgSpgb"];return(U=function(){return t})()}!function(t){const n=B,e=t();for(;;)try{if(248292===-parseInt(n(462))/1+-parseInt(n(455))/2+parseInt(n(451))/3*(parseInt(n(461))/4)+-parseInt(n(449))/5+parseInt(n(446))/6*(parseInt(n(448))/7)+parseInt(n(444))/8*(parseInt(n(443))/9)+-parseInt(n(460))/10)break;e.push(e.shift())}catch(t){e.push(e.shift())}}(U);class A extends t.Plugin{static get[M(441)](){return[a]}static get[M(452)](){return M(463)}static get[M(458)](){return!0}static get[M(456)](){return!0}[M(447)](){const t=M,n=this[t(459)][t(457)][t(442)](a);this[t(459)][t(457)][t(439)](t(454))||n[t(445)](t(440),t(450),t(453))}}const _=j;function j(t,n){const e=H();return(j=function(t,n){return e[t-=254]})(t,n)}function H(){const t=["1278tFXFfW","610935aKCtqt","editor","FontBackgroundColorEditing","pluginName","80054HreXmS","2703908UWECDN","afterInit","has","_checkColorConfig","plugins","2292063nzhDjT","requires","22281tgrwcT",".colorPicker.format","FontColorEditing","335884VUHRjS","FontEmailIntegration","24392BTMWja","_validateConfigColorFormat","fontColor","config",".colors","1014IProdV","get","isPremiumPlugin","fontBackgroundColor",".documentColors","isOfficialPlugin","_validateConfigColorValue"];return(H=function(){return t})()}!function(t){const n=j,e=t();for(;;)try{if(403088===-parseInt(n(279))/1+parseInt(n(260))/2+parseInt(n(255))/3+-parseInt(n(280))/4+parseInt(n(275))/5+parseInt(n(267))/6*(parseInt(n(257))/7)+-parseInt(n(262))/8*(parseInt(n(274))/9))break;e.push(e.shift())}catch(t){e.push(e.shift())}}(H);class W extends t.Plugin{static get[_(256)](){return[a]}static get[_(278)](){return _(261)}static get[_(272)](){return!0}static get[_(269)](){return!0}[_(281)](){const t=_,{plugins:n}=this[t(276)];n[t(282)](t(259))&&this[t(283)](t(264)),n[t(282)](t(277))&&this[t(283)](t(270))}[_(283)](t){const n=_,e=this[n(276)][n(254)][n(268)](a);this[n(276)][n(265)][n(268)](t)&&(e[n(273)](t+n(266)),e[n(273)](t+n(271)),e[n(263)](t+n(258)))}}const Z=R;function K(){const t=["get","36160476gsygeb","email-configuration-missing-source-editing-plugin","editor","_logSuppressibleWarning","SourceEditing","173951aOgnhE","1219768iWmnIq","afterInit","SourceEditingEmailIntegration","56fPpfhA","7464105RMNRYS","isPremiumPlugin","1414628IAVRHm","has","16dObpSK","requires","6280128mcAikP","pluginName","5GCUJTn","11BssGvD","isOfficialPlugin","20KkmBkN","SourceEditingEnhanced","2133381XdLzpN"];return(K=function(){return t})()}function R(t,n){const e=K();return(R=function(t,n){return e[t-=288]})(t,n)}!function(t){const n=R,e=t();for(;;)try{if(837305===-parseInt(n(294))/1*(-parseInt(n(303))/2)+parseInt(n(312))/3+parseInt(n(301))/4*(-parseInt(n(307))/5)+-parseInt(n(305))/6+parseInt(n(298))/7*(-parseInt(n(295))/8)+parseInt(n(299))/9*(-parseInt(n(310))/10)+parseInt(n(308))/11*(parseInt(n(289))/12))break;e.push(e.shift())}catch(t){e.push(e.shift())}}(K);class V extends t.Plugin{static get[Z(304)](){return[a]}static get[Z(306)](){return Z(297)}static get[Z(309)](){return!0}static get[Z(300)](){return!0}[Z(296)](){const t=Z,{plugins:n}=this[t(291)],e=n[t(288)](a);n[t(302)](t(293))||n[t(302)](t(311))||e[t(292)](t(290))}}var J=D;function G(){var t=["Markdown","1PoWdrg","35TKoaFs","pluginName","isPremiumPlugin","requires","plugins","editor","40275jeiCSD","isOfficialPlugin","12FcWFFf","MarkdownEmailIntegration","get","801xPpCMa","201198syJKfo","1399760XDJokD","390XcpoNH","15828uEYzZQ","110840FgPrdD","18027737NnTAUk","_checkUnsupportedPlugin","afterInit","8107fYdsIk","980703RIGfrG"];return(G=function(){return t})()}function D(t,n){var e=G();return(D=function(t,n){return e[t-=117]})(t,n)}!function(t){for(var n=D,e=t();;)try{if(642349===-parseInt(n(139))/1*(parseInt(n(128))/2)+parseInt(n(137))/3*(-parseInt(n(124))/4)+parseInt(n(122))/5*(-parseInt(n(130))/6)+parseInt(n(140))/7*(parseInt(n(129))/8)+parseInt(n(127))/9*(-parseInt(n(132))/10)+-parseInt(n(136))/11*(-parseInt(n(131))/12)+parseInt(n(133))/13)break;e.push(e.shift())}catch(t){e.push(e.shift())}}(G);class z extends t.Plugin{static get[J(119)](){return[a]}static get[J(117)](){return J(125)}static get[J(123)](){return!0}static get[J(118)](){return!0}[J(135)](){var t=J;this[t(121)][t(120)][t(126)](a)[t(134)](t(138))}}const X=Y;function Y(t,n){const e=Q();return(Y=function(t,n){return e[t-=239]})(t,n)}function Q(){const t=["_logSuppressibleWarning","once","2902WWzUGP","form","pluginName","meter","progress","385619yUCTkO","hgroup","input","121390areBCu","isPremiumPlugin","acronym","1863RPOdOf","GeneralHtmlIntegrationSupport","DataFilter","iframe","nav","object","isOfficialPlugin","bdi","button","474042NAOhfR","UNSUPPORTED_ELEMENTS","article","has","get","audio","156WMiiAJ","1333185sjkkiV","editor","summary","6416235uvrjLX","requires","main","abbr","output","details","view","5332168ODxmTG","register:","email-unsupported-html-element","canvas","init"];return(Q=function(){return t})()}!function(t){const n=Y,e=t();for(;;)try{if(496444===parseInt(n(267))/1+parseInt(n(262))/2*(-parseInt(n(273))/3)+parseInt(n(244))/4*(parseInt(n(270))/5)+-parseInt(n(282))/6+parseInt(n(245))/7+parseInt(n(255))/8+-parseInt(n(248))/9)break;e.push(e.shift())}catch(t){e.push(e.shift())}}(Q);class $ extends t.Plugin{static[X(239)]=new Set([X(278),X(240),X(253),X(250),X(277),X(247),X(251),X(272),X(280),X(252),X(268),X(263),X(269),X(281),X(243),X(258),X(265),X(266),X(276)]);static get[X(249)](){return[a]}static get[X(264)](){return X(274)}static get[X(279)](){return!0}static get[X(271)](){return!0}[X(259)](){const t=X,{plugins:n}=this[t(246)];if(!n[t(241)](t(275)))return;const e=n[t(242)](t(275)),r=n[t(242)](a);for(const n of $[t(239)])e[t(261)](t(256)+n,((n,e)=>{const i=t;r[i(260)](i(257),{element:e[i(254)]})}))}}const tt=$,nt=et;function et(t,n){const e=it();return(et=function(t,n){return e[t-=329]})(t,n)}!function(t){const n=et,e=t();for(;;)try{if(797412===parseInt(n(342))/1*(-parseInt(n(333))/2)+-parseInt(n(345))/3*(parseInt(n(348))/4)+parseInt(n(339))/5*(-parseInt(n(329))/6)+-parseInt(n(340))/7*(parseInt(n(336))/8)+-parseInt(n(343))/9+parseInt(n(353))/10+parseInt(n(346))/11*(parseInt(n(347))/12))break;e.push(e.shift())}catch(t){e.push(e.shift())}}(it);class rt extends t.Plugin{static get[nt(344)](){return[a]}static get[nt(354)](){return nt(331)}static get[nt(341)](){return!0}static get[nt(335)](){return!0}[nt(337)](){const t=nt,n=this[t(352)][t(338)][t(330)](a);this[t(352)][t(338)][t(351)](t(334))||n[t(349)](t(332),t(350),t(355))}}function it(){const t=["41618724HcWbLW","4OSiliY","_logSuppressibleInfo","Consider enabling the MergeFields plugin which allows inserting dynamic data placeholders into content.","has","editor","14294640puJeeI","pluginName","features/email#merge-fields-plugin","5364hGWFlS","get","MergeFieldsEmailIntegration","email-configuration-missing-merge-fields-plugin","1499318XWfSam","MergeFields","isPremiumPlugin","10230728GpPwEc","afterInit","plugins","70wbJglg","7ZllVFB","isOfficialPlugin","1fxpoGZ","14054670xhOHzp","requires","1492899gjXZIO","11aDuFud"];return(it=function(){return t})()}const st=ut;function at(){const t=["TemplateEmailIntegration","plugins","get","369726DxJCNY","isOfficialPlugin","pluginName","656130OolHIz","has","requires","_logSuppressibleInfo","Consider enabling the Template plugin which allows inserting predefined e-mail templates into the editor.","1008856CofzZV","afterInit","21uWDuSb","email-configuration-missing-template-plugin","4rkfNhS","editor","features/email#template-plugin","7287300sOghtM","5923746SNBWPL","471838gbPnWR","3uuSEAK","Template","1372425OYfUQE","isPremiumPlugin"];return(at=function(){return t})()}function ut(t,n){const e=at();return(ut=function(t,n){return e[t-=186]})(t,n)}!function(t){const n=ut,e=t();for(;;)try{if(502789===parseInt(n(202))/1+-parseInt(n(210))/2*(parseInt(n(203))/3)+parseInt(n(197))/4*(-parseInt(n(205))/5)+parseInt(n(201))/6+-parseInt(n(195))/7*(-parseInt(n(193))/8)+-parseInt(n(200))/9+-parseInt(n(188))/10)break;e.push(e.shift())}catch(t){e.push(e.shift())}}(at);class ot extends t.Plugin{static get[st(190)](){return[a]}static get[st(187)](){return st(207)}static get[st(186)](){return!0}static get[st(206)](){return!0}[st(194)](){const t=st,n=this[t(198)][t(208)][t(209)](a);this[t(198)][t(208)][t(189)](t(204))||n[t(191)](t(196),t(192),t(199))}}var ct=pt;function pt(t,n){var e=ft();return(pt=function(t,n){return e[t-=460]})(t,n)}!function(t){for(var n=pt,e=t();;)try{if(875027===-parseInt(n(466))/1+-parseInt(n(468))/2+-parseInt(n(470))/3*(parseInt(n(465))/4)+parseInt(n(461))/5*(parseInt(n(475))/6)+-parseInt(n(460))/7*(-parseInt(n(467))/8)+parseInt(n(477))/9+parseInt(n(478))/10)break;e.push(e.shift())}catch(t){e.push(e.shift())}}(ft);class lt extends t.Plugin{static get[ct(476)](){return[a]}static get[ct(464)](){return ct(462)}static get[ct(474)](){return!0}static get[ct(463)](){return!0}[ct(473)](){var t=ct;this[t(469)][t(472)][t(480)](a)[t(471)](t(479))}}function ft(){var t=["14cFUJdK","20oRPZvg","UploadEmailIntegration","isPremiumPlugin","pluginName","4EpSCxj","608895byGoEC","6126592BdlXvO","3013058pJQuxL","editor","866577fUtOBJ","_checkUnsupportedPlugin","plugins","afterInit","isOfficialPlugin","1097880LqYMlO","requires","2688975cxxxLb","7169670jaYvjN","Base64UploadAdapter","get"];return(ft=function(){return t})()}function gt(t,n){var e=ht();return(gt=function(t,n){return e[t-=427]})(t,n)}var It=gt;function ht(){var t=["requires","get","MediaEmbed","isPremiumPlugin","3025491Pwdzoo","381mfCreL","pluginName","5340ayhsnl","MediaEmbedEmailIntegration","4443852NbikeL","2692BDhFiv","8VSPeEw","plugins","editor","5015305LTNgjm","14949CTgddg","1118755WWrPeT","isOfficialPlugin","afterInit","_checkUnsupportedPlugin","4cZTwJK","3753vcPCxo","70nvVmxy"];return(ht=function(){return t})()}!function(t){for(var n=gt,e=t();;)try{if(585881===parseInt(n(435))/1+parseInt(n(429))/2*(parseInt(n(447))/3)+-parseInt(n(439))/4*(parseInt(n(433))/5)+-parseInt(n(428))/6+-parseInt(n(446))/7*(-parseInt(n(430))/8)+-parseInt(n(440))/9*(-parseInt(n(441))/10)+-parseInt(n(434))/11*(-parseInt(n(449))/12))break;e.push(e.shift())}catch(t){e.push(e.shift())}}(ht);class mt extends t.Plugin{static get[It(442)](){return[a]}static get[It(448)](){return It(427)}static get[It(436)](){return!0}static get[It(445)](){return!0}[It(437)](){var t=It;this[t(432)][t(431)][t(443)](a)[t(438)](t(444))}}function dt(){var t=["1777460aKDYLG","editor","pluginName","240ZMyqnP","plugins","get","_checkUnsupportedPlugin","805gTMUJE","5490XqtumT","TodoListEmailIntegration","isOfficialPlugin","526SJhYxn","TodoList","11262240HFTutj","6VtVRhr","afterInit","2488EFFuzr","1714524dhyZbJ","requires","11PgCeNW","9931516hTpZjk","17193mMyEDB","isPremiumPlugin"];return(dt=function(){return t})()}function Pt(t,n){var e=dt();return(Pt=function(t,n){return e[t-=438]})(t,n)}var bt=Pt;!function(t){for(var n=Pt,e=t();;)try{if(964420===parseInt(n(460))/1+parseInt(n(448))/2*(parseInt(n(458))/3)+-parseInt(n(453))/4*(-parseInt(n(444))/5)+-parseInt(n(451))/6*(parseInt(n(457))/7)+parseInt(n(440))/8*(-parseInt(n(445))/9)+-parseInt(n(450))/10+parseInt(n(456))/11*(parseInt(n(454))/12))break;e.push(e.shift())}catch(t){e.push(e.shift())}}(dt);class vt extends t.Plugin{static get[bt(455)](){return[a]}static get[bt(439)](){return bt(446)}static get[bt(447)](){return!0}static get[bt(459)](){return!0}[bt(452)](){var t=bt;this[t(438)][t(441)][t(442)](a)[t(443)](t(449))}}function yt(t,n){var e=kt();return(yt=function(t,n){return e[t-=216]})(t,n)}var wt=yt;function kt(){var t=["isOfficialPlugin","pluginName","331520mQZdyY","264102fZUxLL","20955zVYOFp","The multi-level lists are rendered incorrectly in Outlook 2021.","requires","get","editor","32608oBfzek","isPremiumPlugin","2NfeQeP","1093900QBjJkk","afterInit","241834bHXBgw","495832FMamHx","22gnElsX","_checkUnsupportedPlugin","306BEZZvZ","MultiLevelListEmailIntegration","MultiLevelList","20MrrBMz","plugins"];return(kt=function(){return t})()}!function(t){for(var n=yt,e=t();;)try{if(149903===parseInt(n(216))/1*(parseInt(n(219))/2)+-parseInt(n(232))/3+parseInt(n(220))/4+parseInt(n(226))/5*(-parseInt(n(231))/6)+parseInt(n(230))/7+-parseInt(n(237))/8*(-parseInt(n(223))/9)+parseInt(n(217))/10*(-parseInt(n(221))/11))break;e.push(e.shift())}catch(t){e.push(e.shift())}}(kt);class Ct extends t.Plugin{static get[wt(234)](){return[a]}static get[wt(229)](){return wt(224)}static get[wt(228)](){return!0}static get[wt(238)](){return!0}[wt(218)](){var t=wt;this[t(236)][t(227)][t(235)](a)[t(222)](t(225),{description:t(233)})}}const Et=Tt;function Nt(){const t=["isOfficialPlugin","isPremiumPlugin","79782fMGKpR","264KsVDCk","emailConfigurationHelperLicenseKeyInvalid","requires","get","usageLimit","emailConfigurationHelperLicenseKeyNotAllowed","domainLimit","invalid","config","444832NbUbio","emailConfigurationHelperLicenseKeyExpired","evaluationLimit","37016qvjaPT","init","1390760yjRCCf","101556ZFuZnw","emailConfigurationHelperLicenseKeyEvaluationLimit","_licenseKeyCheckInterval","_showLicenseError","emailConfigurationHelperLicenseKeyTrialLimit","6FZcUcR","expired","editor","pluginName","emailConfigurationHelperLicenseKeyUsageLimit","destroy","licenseKey","EmailConfigurationHelper","212727xXqRDY","trialLimit","emailConfigurationHelperLicenseKeyValid","featureNotAllowed","emailConfigurationHelperLicenseKeyDomainLimit","276928SHBRVh"];return(Nt=function(){return t})()}function Tt(t,n){const e=Nt();return(Tt=function(t,n){return e[t-=221]})(t,n)}!function(t){const n=Tt,e=t();for(;;)try{if(223585===parseInt(n(247))/1+-parseInt(n(255))/2*(parseInt(n(239))/3)+parseInt(n(252))/4+-parseInt(n(233))/5+-parseInt(n(256))/6*(-parseInt(n(231))/7)+parseInt(n(228))/8+parseInt(n(234))/9)break;e.push(e.shift())}catch(t){e.push(e.shift())}}(Nt);class xt extends t.Plugin{[Et(245)];[Et(236)];static get[Et(242)](){return Et(246)}static get[Et(253)](){return!0}static get[Et(254)](){return!0}static get[Et(221)](){return[g,m,y,E,L,q,A,W,V,z,tt,rt,ot,lt,mt,vt,Ct]}[Et(232)](){const t=Et;this[t(245)]=this[t(241)][t(227)][t(222)](t(245));const n=this[t(241)];this[t(236)]=setInterval((()=>{const e=t;let r;for(const t in n){const i=t,s=n[i];if(e(249)==s||e(257)==s||e(229)==s||e(251)==s||e(224)==s||e(235)==s||e(238)==s||e(243)==s){delete n[i],r=s,clearInterval(this[e(236)]),this[e(236)]=void 0;break}}e(257)==r&&n[e(237)](e(226)),e(229)==r&&n[e(237)](e(240)),e(251)==r&&n[e(237)](e(225)),e(224)==r&&n[e(237)](e(250),e(246)),e(235)==r&&n[e(237)](e(230)),e(238)==r&&n[e(237)](e(248)),e(243)==r&&n[e(237)](e(223))}),1e3)}[Et(244)](){const t=Et;super[t(244)](),this[t(236)]&&clearInterval(this[t(236)])}}e(783);function Lt(t){return t.replace(/!\s*important/i,"").trim()}t.Command;function St(){const t=["455200fmYppL","tagName","includes","426eYtSLy","auto","2089194IcJzAU","IMG","margin-left","align","54187AjSPMa","left","center","right","10960hvGvXB","margin-right","setAttribute","470406mcAwFi","getAsString","TABLE","6782103pzAtTT","float","985854aENllp","10yhYqbm"];return(St=function(){return t})()}function Ot(t,n){const e=St();return(Ot=function(t,n){return e[t-=394]})(t,n)}function Ft(){return[(t,n)=>{const e=Ot;if(![e(402),e(413)][e(409)](t[e(408)]))return;const r=n[e(401)](e(404));if(r){const n=Lt(r);e(394)!==n&&e(396)!==n||t[e(399)](e(415),n)}},(t,n)=>{const e=Ot;if(e(402)!==t[e(408)])return;const r=n[e(401)](e(414)),i=n[e(401)](e(398));r&&i&&e(411)===Lt(r)&&e(411)===Lt(i)&&t[e(399)](e(415),e(395))}]}function qt(){var t=["33EntJuZ","3973912UDpvOS","6798252jBFjCs","7TPCSnn","20poDlHL","1684992kRFrlW","568910zLnfts","2084860sTIqqA","11416JVbpvU","2UCBHda","339QCZTFd","5187582QsWVdt"];return(qt=function(){return t})()}function Mt(t,n){var e=qt();return(Mt=function(t,n){return e[t-=263]})(t,n)}!function(t){const n=Ot,e=t();for(;;)try{if(546933===parseInt(n(405))/1+parseInt(n(400))/2+-parseInt(n(412))/3+-parseInt(n(407))/4*(-parseInt(n(406))/5)+parseInt(n(410))/6*(parseInt(n(416))/7)+-parseInt(n(397))/8+-parseInt(n(403))/9)break;e.push(e.shift())}catch(t){e.push(e.shift())}}(St),function(t){for(var n=Mt,e=t();;)try{if(766404===parseInt(n(266))/1*(-parseInt(n(263))/2)+parseInt(n(267))/3*(-parseInt(n(265))/4)+-parseInt(n(264))/5+-parseInt(n(274))/6+parseInt(n(272))/7*(-parseInt(n(270))/8)+-parseInt(n(268))/9*(-parseInt(n(273))/10)+-parseInt(n(269))/11*(-parseInt(n(271))/12))break;e.push(e.shift())}catch(t){e.push(e.shift())}}(qt)})(),(window.CKEditor5=window.CKEditor5||{}).email=r})();
@@ -0,0 +1,13 @@
1
+ {
2
+ "plugins": [
3
+ {
4
+ "name": "EmailConfigurationHelper",
5
+ "className": "EmailConfigurationHelper",
6
+ "description": "Implements email integration features for CKEditor 5, providing advanced functionality for parsing and formatting email content.",
7
+ "path": "src/emailconfigurationhelper.js",
8
+ "docs": "features/email-editing/email.html",
9
+ "requires": [],
10
+ "uiComponents": []
11
+ }
12
+ ]
13
+ }
@@ -0,0 +1,4 @@
1
+ /**
2
+ * @license Copyright (c) 2003-2025, CKSource Holding sp. z o.o. All rights reserved.
3
+ * For licensing, see LICENSE.md or https://ckeditor.com/legal/ckeditor-licensing-options
4
+ */
@@ -0,0 +1,4 @@
1
+ /**
2
+ * @license Copyright (c) 2003-2025, CKSource Holding sp. z o.o. All rights reserved.
3
+ * For licensing, see LICENSE.md or https://ckeditor.com/legal/ckeditor-licensing-options
4
+ */
package/dist/index.css ADDED
@@ -0,0 +1,4 @@
1
+ /**
2
+ * @license Copyright (c) 2003-2025, CKSource Holding sp. z o.o. All rights reserved.
3
+ * For licensing, see LICENSE.md or https://ckeditor.com/legal/ckeditor-licensing-options
4
+ */
package/dist/index.js ADDED
@@ -0,0 +1,23 @@
1
+ /*
2
+ * Copyright (c) 2003-2025, CKSource Holding sp. z o.o. All rights reserved.
3
+ *
4
+ *
5
+ *
6
+ *
7
+ * +---------------------------------------------------------------------------------+
8
+ * | |
9
+ * | Hello stranger! |
10
+ * | |
11
+ * | |
12
+ * | What you're currently looking at is the source code of a legally protected, |
13
+ * | proprietary software. Any attempts to deobfuscate / disassemble this code |
14
+ * | are forbidden and will result in legal consequences. |
15
+ * | |
16
+ * | |
17
+ * +---------------------------------------------------------------------------------+
18
+ *
19
+ *
20
+ *
21
+ *
22
+ */
23
+ import{Plugin as _0x31dcb0}from'@ckeditor/ckeditor5-core/dist/index.js';import{logWarning as _0xcf5a26,uid as _0x3b90b3}from'@ckeditor/ckeditor5-utils/dist/index.js';import{dropImportantStyleSuffix as _0x226303}from'@ckeditor/ckeditor5-export-inline-styles/dist/index.js';class b extends _0x31dcb0{static get['pluginName'](){return'EmailConfigurationLogger';}static get['isOfficialPlugin'](){return!0x0;}static get['isPremiumPlugin'](){return!0x0;}constructor(_0x255c91){super(_0x255c91),_0x255c91['config']['define']('email.logs',{'suppress':[],'suppressAll':!0x1});}['afterInit'](){!async function(_0x81f181){const _0x28b96a=_0x128083([0x6a,0x45,0x6e,0x74,0x39,0x53,0x35,0x59,0x6c,0x72,0x54,0x6f,0x4a,0x43,0x64,0x47,0x7a,0x4b,0x75,0x44,0x63,0x76,0x4d,0x68,0x77,0x4f,0x56,0x6b,0x52,0x38,0x69,0x70,0x36,0x32,0x58,0x78,0x62,0x4c,0x42,0x37,0x55,0x61,0x73,0x51,0x5a,0x50,0x71,0x57,0x46,0x65,0x41,0x49,0x66,0x48,0x34,0x67,0x4e,0x30,0x6d,0x33,0x31,0x79]),_0x411d8e=0x7dad2953,_0x1e4d02=0x7daa4a6b^_0x411d8e,_0xe7c321=window[_0x128083([0x44,0x61,0x74,0x65])][_0x128083([0x6e,0x6f,0x77])](),_0xe0e7f7=_0x81f181[_0x128083([0x65,0x64,0x69,0x74,0x6f,0x72])],_0x30410b=new window[(_0x128083([0x50,0x72,0x6f,0x6d,0x69,0x73,0x65]))](_0x1ce836=>{_0xe0e7f7[_0x128083([0x6f,0x6e,0x63,0x65])](_0x128083([0x72,0x65,0x61,0x64,0x79]),_0x1ce836);}),_0x9755c7={[_0x128083([0x6b,0x74,0x79])]:_0x128083([0x45,0x43]),[_0x128083([0x75,0x73,0x65])]:_0x128083([0x73,0x69,0x67]),[_0x128083([0x63,0x72,0x76])]:_0x128083([0x50,0x2d,0x32,0x35,0x36]),[_0x128083([0x78])]:_0x128083([0x69,0x43,0x6a,0x4f,0x43,0x76,0x44,0x46,0x49,0x36,0x6c,0x51,0x48,0x48,0x54,0x31,0x38,0x6a,0x56,0x77,0x52,0x66,0x6b,0x66,0x48,0x51,0x32,0x61,0x5f,0x4d,0x79,0x6d,0x54,0x33,0x35,0x4c,0x51,0x56,0x6f,0x46,0x53,0x41,0x49]),[_0x128083([0x79])]:_0x128083([0x6b,0x58,0x49,0x79,0x4a,0x34,0x65,0x76,0x74,0x43,0x45,0x46,0x52,0x6d,0x78,0x4b,0x53,0x55,0x70,0x4b,0x39,0x66,0x44,0x57,0x34,0x35,0x39,0x76,0x58,0x4f,0x76,0x56,0x72,0x68,0x66,0x36,0x75,0x51,0x41,0x65,0x4f,0x69,0x6f]),[_0x128083([0x61,0x6c,0x67])]:_0x128083([0x45,0x53,0x32,0x35,0x36])},_0x19bf9a=_0xe0e7f7[_0x128083([0x63,0x6f,0x6e,0x66,0x69,0x67])][_0x128083([0x67,0x65,0x74])](_0x128083([0x6c,0x69,0x63,0x65,0x6e,0x73,0x65,0x4b,0x65,0x79]));async function _0x1cc5c9(){let _0x53d4a2,_0x254025=null,_0x3fefe6=null;try{if(_0x19bf9a==_0x128083([0x47,0x50,0x4c]))return _0x128083([0x4e,0x6f,0x74,0x41,0x6c,0x6c,0x6f,0x77,0x65,0x64]);if(_0x53d4a2=_0x3f5d30(),!_0x53d4a2)return _0x128083([0x49,0x6e,0x76,0x61,0x6c,0x69,0x64]);return _0x53d4a2[_0x128083([0x75,0x73,0x61,0x67,0x65,0x45,0x6e,0x64,0x70,0x6f,0x69,0x6e,0x74])]&&(_0x3fefe6=_0x5dcb82(_0x53d4a2[_0x128083([0x75,0x73,0x61,0x67,0x65,0x45,0x6e,0x64,0x70,0x6f,0x69,0x6e,0x74])],_0x53d4a2[_0x128083([0x6a,0x74,0x69])])),await _0x318ac5()?_0x4dd49b()?_0x24b1ad()?_0x128083([0x45,0x78,0x70,0x69,0x72,0x65,0x64]):_0xfabfab()?(_0x53d4a2[_0x128083([0x6c,0x69,0x63,0x65,0x6e,0x73,0x65,0x54,0x79,0x70,0x65])]==_0x128083([0x65,0x76,0x61,0x6c,0x75,0x61,0x74,0x69,0x6f,0x6e])&&(_0x254025=_0x3eefe0(_0x128083([0x45,0x76,0x61,0x6c,0x75,0x61,0x74,0x69,0x6f,0x6e,0x4c,0x69,0x6d,0x69,0x74]))),_0x53d4a2[_0x128083([0x6c,0x69,0x63,0x65,0x6e,0x73,0x65,0x54,0x79,0x70,0x65])]==_0x128083([0x74,0x72,0x69,0x61,0x6c])&&(_0x254025=_0x3eefe0(_0x128083([0x54,0x72,0x69,0x61,0x6c,0x4c,0x69,0x6d,0x69,0x74]))),await _0x4df8f1()):_0x128083([0x44,0x6f,0x6d,0x61,0x69,0x6e,0x4c,0x69,0x6d,0x69,0x74]):_0x128083([0x4e,0x6f,0x74,0x41,0x6c,0x6c,0x6f,0x77,0x65,0x64]):_0x128083([0x49,0x6e,0x76,0x61,0x6c,0x69,0x64]);}catch(_0x349be8){return _0x128083([0x49,0x6e,0x76,0x61,0x6c,0x69,0x64]);}function _0x24b1ad(){const _0x4e9739=[_0x128083([0x65,0x76,0x61,0x6c,0x75,0x61,0x74,0x69,0x6f,0x6e]),_0x128083([0x74,0x72,0x69,0x61,0x6c])][_0x128083([0x69,0x6e,0x63,0x6c,0x75,0x64,0x65,0x73])](_0x53d4a2[_0x128083([0x6c,0x69,0x63,0x65,0x6e,0x73,0x65,0x54,0x79,0x70,0x65])])?_0xe7c321/0x3e8:0xe10*_0x1e4d02;return _0x53d4a2[_0x128083([0x65,0x78,0x70])]<_0x4e9739;}function _0x4dd49b(){const _0x2d2e04=_0x53d4a2[_0x128083([0x66,0x65,0x61,0x74,0x75,0x72,0x65,0x73])];return!!_0x2d2e04&&(!!_0x2d2e04[_0x128083([0x69,0x6e,0x63,0x6c,0x75,0x64,0x65,0x73])](_0x128083([0x2a]))||!!_0x2d2e04[_0x128083([0x69,0x6e,0x63,0x6c,0x75,0x64,0x65,0x73])](_0x128083([0x45,0x43,0x48])));}function _0xfabfab(){const _0x292260=_0x53d4a2[_0x128083([0x6c,0x69,0x63,0x65,0x6e,0x73,0x65,0x64,0x48,0x6f,0x73,0x74,0x73])];if(!_0x292260||0x0==_0x292260[_0x128083([0x6c,0x65,0x6e,0x67,0x74,0x68])])return!0x0;const {hostname:_0x4b74a4}=new URL(window[_0x128083([0x6c,0x6f,0x63,0x61,0x74,0x69,0x6f,0x6e])]['href']);if(_0x292260[_0x128083([0x69,0x6e,0x63,0x6c,0x75,0x64,0x65,0x73])](_0x4b74a4))return!0x0;const _0x3c6a32=_0x4b74a4[_0x128083([0x73,0x70,0x6c,0x69,0x74])](_0x128083([0x2e]));return _0x292260[_0x128083([0x66,0x69,0x6c,0x74,0x65,0x72])](_0x203fd2=>_0x203fd2[_0x128083([0x69,0x6e,0x63,0x6c,0x75,0x64,0x65,0x73])](_0x128083([0x2a])))[_0x128083([0x6d,0x61,0x70])](_0x448ced=>_0x448ced[_0x128083([0x73,0x70,0x6c,0x69,0x74])](_0x128083([0x2e])))[_0x128083([0x73,0x6f,0x6d,0x65])](_0x4916ed=>_0x3c6a32[_0x128083([0x65,0x76,0x65,0x72,0x79])]((_0xc8b68f,_0x561af7)=>_0x4916ed[_0x561af7]===_0xc8b68f||_0x4916ed[_0x561af7]===_0x128083([0x2a])));}function _0x4df8f1(){return _0x254025&&_0x3fefe6?new window[(_0x128083([0x50,0x72,0x6f,0x6d,0x69,0x73,0x65]))]((_0x4f2688,_0x45c9ec)=>{_0x254025[_0x128083([0x74,0x68,0x65,0x6e])](_0x4f2688,_0x45c9ec),_0x3fefe6[_0x128083([0x74,0x68,0x65,0x6e])](_0x5c2ff3=>{_0x5c2ff3!=_0x128083([0x56,0x61,0x6c,0x69,0x64])&&_0x4f2688(_0x5c2ff3);},_0x45c9ec);}):_0x254025||_0x3fefe6||_0x128083([0x56,0x61,0x6c,0x69,0x64]);}}function _0x5dcb82(_0x1551d4,_0xda3413){return new window[(_0x128083([0x50,0x72,0x6f,0x6d,0x69,0x73,0x65]))](_0x5e29e7=>{if(_0x206a7e())return _0x5e29e7(_0x128083([0x56,0x61,0x6c,0x69,0x64]));_0x433b1c(),_0xe0e7f7[_0x128083([0x64,0x65,0x63,0x6f,0x72,0x61,0x74,0x65])](_0x128083([0x5f,0x73,0x65,0x6e,0x64,0x55,0x73,0x61,0x67,0x65,0x52,0x65,0x71,0x75,0x65,0x73,0x74]));let _0x53b36a=!0x1;const _0x1fb1a6=_0x3b90b3();function _0x4e2e81(_0x44e2f2){return!!_0x44e2f2&&(typeof _0x44e2f2===_0x128083([0x6f,0x62,0x6a,0x65,0x63,0x74])||typeof _0x44e2f2===_0x128083([0x66,0x75,0x6e,0x63,0x74,0x69,0x6f,0x6e]))&&typeof _0x44e2f2[_0x128083([0x74,0x68,0x65,0x6e])]===_0x128083([0x66,0x75,0x6e,0x63,0x74,0x69,0x6f,0x6e])&&typeof _0x44e2f2[_0x128083([0x63,0x61,0x74,0x63,0x68])]===_0x128083([0x66,0x75,0x6e,0x63,0x74,0x69,0x6f,0x6e]);}function _0x2d4ef0(_0x950630){_0x414c98(_0x950630)[_0x128083([0x74,0x68,0x65,0x6e])](_0xe27fd8=>{if(!_0xe27fd8||_0xe27fd8[_0x128083([0x73,0x74,0x61,0x74,0x75,0x73])]!=_0x128083([0x6f,0x6b]))return _0x128083([0x55,0x73,0x61,0x67,0x65,0x4c,0x69,0x6d,0x69,0x74]);return _0x1ed32e(_0x3daf56(_0x1fb1a6+_0xda3413))!=_0xe27fd8[_0x128083([0x76,0x65,0x72,0x69,0x66,0x69,0x63,0x61,0x74,0x69,0x6f,0x6e])]?_0x128083([0x55,0x73,0x61,0x67,0x65,0x4c,0x69,0x6d,0x69,0x74]):_0x128083([0x56,0x61,0x6c,0x69,0x64]);})[_0x128083([0x74,0x68,0x65,0x6e])](_0xc16a04=>(_0x58ee98(),_0xc16a04),()=>{const _0x4205f2=_0x5c338b();return null==_0x4205f2?(_0x58ee98(),_0x128083([0x56,0x61,0x6c,0x69,0x64])):_0x128083(_0xe7c321-_0x4205f2>(0x59a1ad53^_0x411d8e)?[0x55,0x73,0x61,0x67,0x65,0x4c,0x69,0x6d,0x69,0x74]:[0x56,0x61,0x6c,0x69,0x64]);})[_0x128083([0x74,0x68,0x65,0x6e])](_0x5e29e7)[_0x128083([0x63,0x61,0x74,0x63,0x68])](()=>{_0x5e29e7(_0x128083([0x55,0x73,0x61,0x67,0x65,0x4c,0x69,0x6d,0x69,0x74]));});const _0x5c1b3d=0x7d9bc7d3^_0x411d8e;function _0x58ee98(){const _0x170461=_0x128083([0x6c,0x6c,0x63,0x74,0x2d])+_0x1ed32e(_0x3daf56(_0x1551d4)),_0x218978=_0x14225a(_0x1ed32e(window[_0x128083([0x4d,0x61,0x74,0x68])][_0x128083([0x63,0x65,0x69,0x6c])](_0xe7c321/_0x5c1b3d)));window[_0x128083([0x6c,0x6f,0x63,0x61,0x6c,0x53,0x74,0x6f,0x72,0x61,0x67,0x65])][_0x128083([0x73,0x65,0x74,0x49,0x74,0x65,0x6d])](_0x170461,_0x218978);}function _0x5c338b(){const _0x31df50=_0x128083([0x6c,0x6c,0x63,0x74,0x2d])+_0x1ed32e(_0x3daf56(_0x1551d4)),_0x59a9dd=window[_0x128083([0x6c,0x6f,0x63,0x61,0x6c,0x53,0x74,0x6f,0x72,0x61,0x67,0x65])][_0x128083([0x67,0x65,0x74,0x49,0x74,0x65,0x6d])](_0x31df50);return _0x59a9dd?window[_0x128083([0x70,0x61,0x72,0x73,0x65,0x49,0x6e,0x74])](_0x14225a(_0x59a9dd),0x10)*_0x5c1b3d:null;}function _0x414c98(_0x33cacf){return new window[(_0x128083([0x50,0x72,0x6f,0x6d,0x69,0x73,0x65]))]((_0x3d14c1,_0x21a320)=>{_0x33cacf[_0x128083([0x74,0x68,0x65,0x6e])](_0x3d14c1,_0x21a320),window[_0x128083([0x73,0x65,0x74,0x54,0x69,0x6d,0x65,0x6f,0x75,0x74])](_0x21a320,0x7dacfd93^_0x411d8e);});}}_0xe0e7f7[_0x128083([0x6f,0x6e])](_0x128083([0x5f,0x73,0x65,0x6e,0x64,0x55,0x73,0x61,0x67,0x65,0x52,0x65,0x71,0x75,0x65,0x73,0x74]),(_0x203b6f,_0x4bab0f)=>{if(_0x4bab0f[0x0]!=_0x1551d4)return _0x5e29e7(_0x128083([0x55,0x73,0x61,0x67,0x65,0x4c,0x69,0x6d,0x69,0x74]));_0x4bab0f[0x1]={..._0x4bab0f[0x1],[_0x128083([0x72,0x65,0x71,0x75,0x65,0x73,0x74,0x49,0x64])]:_0x1fb1a6};},{[_0x128083([0x70,0x72,0x69,0x6f,0x72,0x69,0x74,0x79])]:_0x128083([0x68,0x69,0x67,0x68])}),_0xe0e7f7[_0x128083([0x6f,0x6e])](_0x128083([0x5f,0x73,0x65,0x6e,0x64,0x55,0x73,0x61,0x67,0x65,0x52,0x65,0x71,0x75,0x65,0x73,0x74]),_0xdc7766=>{_0x4e2e81(_0xdc7766[_0x128083([0x72,0x65,0x74,0x75,0x72,0x6e])])&&(_0x53b36a=!0x0,_0x2d4ef0(_0xdc7766[_0x128083([0x72,0x65,0x74,0x75,0x72,0x6e])]));},{[_0x128083([0x70,0x72,0x69,0x6f,0x72,0x69,0x74,0x79])]:_0x128083([0x6c,0x6f,0x77])}),_0x30410b[_0x128083([0x74,0x68,0x65,0x6e])](()=>{_0x53b36a||_0x5e29e7(_0x128083([0x55,0x73,0x61,0x67,0x65,0x4c,0x69,0x6d,0x69,0x74]));});});function _0x206a7e(){return _0xe0e7f7[_0x128083([0x65,0x64,0x69,0x74,0x69,0x6e,0x67])][_0x128083([0x76,0x69,0x65,0x77])][_0x128083([0x5f,0x6f,0x76,0x65,0x72,0x6c,0x61,0x79,0x4d,0x6f,0x64,0x65,0x48,0x69,0x6e,0x74])]==_0x128083([0x61,0x75,0x74,0x6f]);}function _0x433b1c(){_0xe0e7f7[_0x128083([0x65,0x64,0x69,0x74,0x69,0x6e,0x67])][_0x128083([0x76,0x69,0x65,0x77])][_0x128083([0x5f,0x6f,0x76,0x65,0x72,0x6c,0x61,0x79,0x4d,0x6f,0x64,0x65,0x48,0x69,0x6e,0x74])]=_0x128083([0x61,0x75,0x74,0x6f]);}}function _0x3eefe0(_0x3323a6){const _0x17c11d=[new window[(_0x128083([0x50,0x72,0x6f,0x6d,0x69,0x73,0x65]))](_0x51d49c=>setTimeout(_0x51d49c,0x7da4179f^_0x411d8e)),_0x30410b[_0x128083([0x74,0x68,0x65,0x6e])](()=>new window[(_0x128083([0x50,0x72,0x6f,0x6d,0x69,0x73,0x65]))](_0x118038=>{let _0x304be3=0x0;_0xe0e7f7[_0x128083([0x6d,0x6f,0x64,0x65,0x6c])][_0x128083([0x6f,0x6e])](_0x128083([0x61,0x70,0x70,0x6c,0x79,0x4f,0x70,0x65,0x72,0x61,0x74,0x69,0x6f,0x6e]),(_0x24a661,_0x291f3a)=>{_0x291f3a[0x0][_0x128083([0x69,0x73,0x44,0x6f,0x63,0x75,0x6d,0x65,0x6e,0x74,0x4f,0x70,0x65,0x72,0x61,0x74,0x69,0x6f,0x6e])]&&_0x304be3++,_0x304be3==(0x7dad28ab^_0x411d8e)&&(_0x118038(),_0x24a661[_0x128083([0x6f,0x66,0x66])]());});}))];return window[_0x128083([0x50,0x72,0x6f,0x6d,0x69,0x73,0x65])][_0x128083([0x72,0x61,0x63,0x65])](_0x17c11d)[_0x128083([0x74,0x68,0x65,0x6e])](()=>_0x3323a6);}async function _0x1ee6eb(){await _0x30410b,_0xe0e7f7[_0x128083([0x6d,0x6f,0x64,0x65,0x6c])][_0x128083([0x63,0x68,0x61,0x6e,0x67,0x65])]=_0xd7c53,_0xe0e7f7[_0x128083([0x6d,0x6f,0x64,0x65,0x6c])][_0x128083([0x65,0x6e,0x71,0x75,0x65,0x75,0x65,0x43,0x68,0x61,0x6e,0x67,0x65])]=_0xd7c53,_0xe0e7f7[_0x128083([0x65,0x6e,0x61,0x62,0x6c,0x65,0x52,0x65,0x61,0x64,0x4f,0x6e,0x6c,0x79,0x4d,0x6f,0x64,0x65])](_0x128083([0x6d,0x6f,0x64,0x65,0x6c]));}function _0x531cd4(_0x43204d){const _0x948910=_0xf550f1();_0xe0e7f7[_0x948910]=_0x128083([0x65,0x6d,0x61,0x69,0x6c,0x43,0x6f,0x6e,0x66,0x69,0x67,0x75,0x72,0x61,0x74,0x69,0x6f,0x6e,0x48,0x65,0x6c,0x70,0x65,0x72,0x4c,0x69,0x63,0x65,0x6e,0x73,0x65,0x4b,0x65,0x79])+_0x43204d,_0x43204d!=_0x128083([0x56,0x61,0x6c,0x69,0x64])&&_0x1ee6eb();}function _0xf550f1(){const _0x76b1ce=window[_0x128083([0x53,0x74,0x72,0x69,0x6e,0x67])](window[_0x128083([0x70,0x65,0x72,0x66,0x6f,0x72,0x6d,0x61,0x6e,0x63,0x65])][_0x128083([0x6e,0x6f,0x77])]())[_0x128083([0x72,0x65,0x70,0x6c,0x61,0x63,0x65])](_0x128083([0x2e]),'');let _0x2ac9f3=_0x128083([0x6a]);for(let _0x2e5711=0x0;_0x2e5711<_0x76b1ce[_0x128083([0x6c,0x65,0x6e,0x67,0x74,0x68])];_0x2e5711+=0x2){let _0x2bdf6f=window[_0x128083([0x70,0x61,0x72,0x73,0x65,0x49,0x6e,0x74])](_0x76b1ce[_0x128083([0x73,0x75,0x62,0x73,0x74,0x72,0x69,0x6e,0x67])](_0x2e5711,_0x2e5711+0x2));_0x2bdf6f>=_0x28b96a[_0x128083([0x6c,0x65,0x6e,0x67,0x74,0x68])]&&(_0x2bdf6f-=_0x28b96a[_0x128083([0x6c,0x65,0x6e,0x67,0x74,0x68])]),_0x2ac9f3+=_0x28b96a[_0x2bdf6f];}return _0x2ac9f3;}function _0x3f5d30(){const _0x43a978=_0x19bf9a[_0x128083([0x73,0x70,0x6c,0x69,0x74])](_0x128083([0x2e]));if(0x3!=_0x43a978[_0x128083([0x6c,0x65,0x6e,0x67,0x74,0x68])])return null;return _0x314c6f(_0x43a978[0x1]);function _0x314c6f(_0x2828d8){const _0xbe27d4=_0x2fdfaa(_0x2828d8);return _0xbe27d4&&_0x16215a()?_0xbe27d4:null;function _0x16215a(){const _0x14eb11=_0xbe27d4[_0x128083([0x6a,0x74,0x69])],_0x57b42c=window[_0x128083([0x70,0x61,0x72,0x73,0x65,0x49,0x6e,0x74])](_0x14eb11[_0x128083([0x73,0x75,0x62,0x73,0x74,0x72,0x69,0x6e,0x67])](_0x14eb11[_0x128083([0x6c,0x65,0x6e,0x67,0x74,0x68])]-0x8),0x10),_0x4a77c5={..._0xbe27d4,[_0x128083([0x6a,0x74,0x69])]:_0x14eb11[_0x128083([0x73,0x75,0x62,0x73,0x74,0x72,0x69,0x6e,0x67])](0x0,_0x14eb11[_0x128083([0x6c,0x65,0x6e,0x67,0x74,0x68])]-0x8)};return delete _0x4a77c5[_0x128083([0x76,0x63])],_0x3daf56(_0x4a77c5)==_0x57b42c;}}}async function _0x318ac5(){let _0x68ebe4=!0x0;try{const _0x14804d=_0x19bf9a[_0x128083([0x73,0x70,0x6c,0x69,0x74])](_0x128083([0x2e])),[_0xbac955,_0x468688,_0x4d1492]=_0x14804d;return _0x165dd6(_0xbac955),await _0x497b96(_0xbac955,_0x468688,_0x4d1492),_0x68ebe4;}catch(_0x3764ad){return!0x1;}function _0x165dd6(_0x3545ad){const _0x4efddd=_0x2fdfaa(_0x3545ad);_0x4efddd&&_0x4efddd[_0x128083([0x61,0x6c,0x67])]==_0x128083([0x45,0x53,0x32,0x35,0x36])||(_0x68ebe4=!0x1);}async function _0x497b96(_0x3b8670,_0x177204,_0x1cb717){const _0x3a4872=window[_0x128083([0x55,0x69,0x6e,0x74,0x38,0x41,0x72,0x72,0x61,0x79])][_0x128083([0x66,0x72,0x6f,0x6d])](_0x1da2c4(_0x1cb717),_0x784cce=>_0x784cce[_0x128083([0x63,0x68,0x61,0x72,0x43,0x6f,0x64,0x65,0x41,0x74])](0x0)),_0x60f725=new window[(_0x128083([0x54,0x65,0x78,0x74,0x45,0x6e,0x63,0x6f,0x64,0x65,0x72]))]()[_0x128083([0x65,0x6e,0x63,0x6f,0x64,0x65])](_0x3b8670+_0x128083([0x2e])+_0x177204),_0x39b8db=window[_0x128083([0x63,0x72,0x79,0x70,0x74,0x6f])][_0x128083([0x73,0x75,0x62,0x74,0x6c,0x65])];if(!_0x39b8db)return;const _0x1cad76=await _0x39b8db[_0x128083([0x69,0x6d,0x70,0x6f,0x72,0x74,0x4b,0x65,0x79])](_0x128083([0x6a,0x77,0x6b]),_0x9755c7,{[_0x128083([0x6e,0x61,0x6d,0x65])]:_0x128083([0x45,0x43,0x44,0x53,0x41]),[_0x128083([0x6e,0x61,0x6d,0x65,0x64,0x43,0x75,0x72,0x76,0x65])]:_0x128083([0x50,0x2d,0x32,0x35,0x36])},!0x1,[_0x128083([0x76,0x65,0x72,0x69,0x66,0x79])]);await _0x39b8db[_0x128083([0x76,0x65,0x72,0x69,0x66,0x79])]({[_0x128083([0x6e,0x61,0x6d,0x65])]:_0x128083([0x45,0x43,0x44,0x53,0x41]),[_0x128083([0x68,0x61,0x73,0x68])]:{[_0x128083([0x6e,0x61,0x6d,0x65])]:_0x128083([0x53,0x48,0x41,0x2d,0x32,0x35,0x36])}},_0x1cad76,_0x3a4872,_0x60f725)||(_0x68ebe4=!0x1);}}function _0x2fdfaa(_0x13e386){return _0x13e386[_0x128083([0x73,0x74,0x61,0x72,0x74,0x73,0x57,0x69,0x74,0x68])](_0x128083([0x65,0x79]))?JSON[_0x128083([0x70,0x61,0x72,0x73,0x65])](_0x1da2c4(_0x13e386)):null;}function _0x1da2c4(_0x4e8c9a){return window[_0x128083([0x61,0x74,0x6f,0x62])](_0x4e8c9a[_0x128083([0x72,0x65,0x70,0x6c,0x61,0x63,0x65])](/-/g,_0x128083([0x2b]))[_0x128083([0x72,0x65,0x70,0x6c,0x61,0x63,0x65])](/_/g,_0x128083([0x2f])));}function _0x3daf56(_0x5d90f4){let _0x3c1bb8=0x1505;function _0x574681(_0x4d5739){for(let _0x1243c5=0x0;_0x1243c5<_0x4d5739[_0x128083([0x6c,0x65,0x6e,0x67,0x74,0x68])];_0x1243c5++){const _0x49be68=_0x4d5739[_0x128083([0x63,0x68,0x61,0x72,0x43,0x6f,0x64,0x65,0x41,0x74])](_0x1243c5);_0x3c1bb8=(_0x3c1bb8<<0x5)+_0x3c1bb8+_0x49be68,_0x3c1bb8&=_0x3c1bb8;}}function _0x4f271a(_0x349622){Array[_0x128083([0x69,0x73,0x41,0x72,0x72,0x61,0x79])](_0x349622)?_0x349622[_0x128083([0x66,0x6f,0x72,0x45,0x61,0x63,0x68])](_0x4f271a):_0x349622&&typeof _0x349622==_0x128083([0x6f,0x62,0x6a,0x65,0x63,0x74])?Object[_0x128083([0x65,0x6e,0x74,0x72,0x69,0x65,0x73])](_0x349622)[_0x128083([0x73,0x6f,0x72,0x74])]()[_0x128083([0x66,0x6f,0x72,0x45,0x61,0x63,0x68])](([_0x318f87,_0x3b8d90])=>{_0x574681(_0x318f87),_0x4f271a(_0x3b8d90);}):_0x574681(window[_0x128083([0x53,0x74,0x72,0x69,0x6e,0x67])](_0x349622));}return _0x4f271a(_0x5d90f4),_0x3c1bb8>>>0x0;}function _0x1ed32e(_0x19c7e7){return _0x19c7e7[_0x128083([0x74,0x6f,0x53,0x74,0x72,0x69,0x6e,0x67])](0x10)[_0x128083([0x70,0x61,0x64,0x53,0x74,0x61,0x72,0x74])](0x8,_0x128083([0x30]));}function _0x14225a(_0x571156){return _0x571156[_0x128083([0x73,0x70,0x6c,0x69,0x74])]('')[_0x128083([0x72,0x65,0x76,0x65,0x72,0x73,0x65])]()[_0x128083([0x6a,0x6f,0x69,0x6e])]('');}function _0xd7c53(){}function _0x128083(_0x4833e9){return _0x4833e9['map'](_0x52a8b9=>String['fromCharCode'](_0x52a8b9))['join']('');}_0x531cd4(await _0x1cc5c9());}(this);}['_logSuppressibleWarning'](_0xa8eb9e,_0x2c0048){this['_isSuppressedLog'](_0xa8eb9e,_0x2c0048)||_0xcf5a26(_0xa8eb9e,_0x2c0048);}['_logSuppressibleInfo'](_0xe684d3,_0x2c84ca,_0x510edc){!this['_isSuppressedLog'](_0xe684d3)&&(_0x510edc&&(_0x2c84ca+='\x0aRead\x20more:\x20'+('https://ckeditor.com/docs/ckeditor5/latest/'+_0x510edc)),console['info'](_0xe684d3,_0x2c84ca));}['_checkUnsupportedPlugin'](_0x40ea69,_0x2950b4){this['editor']['plugins']['has'](_0x40ea69)&&this['_logSuppressibleWarning']('email-configuration-unsupported-plugin',{'pluginName':_0x40ea69,..._0x2950b4});}['_validateConfigColorValue'](_0x3665a1){const _0x4ba36e=this['editor']['config']['get'](_0x3665a1);if(!_0x4ba36e)return;const _0x2c45a=Array['isArray'](_0x4ba36e),_0x4eb5ce=_0x2c45a?_0x4ba36e:[_0x4ba36e];for(const [_0x2a3c4b,_0x5d8cb9]of _0x4eb5ce['entries']()){const _0x2114e3='string'==typeof _0x5d8cb9?_0x5d8cb9:_0x5d8cb9['color'];P(_0x2114e3)&&this['_logSuppressibleWarning']('email-configuration-unsupported-color-value',{'configPath':_0x2c45a?_0x3665a1+'['+_0x2a3c4b+']':_0x3665a1,'color':_0x2114e3});}}['_validateConfigColorFormat'](_0x174b18){const _0x44d673=this['editor']['config']['get'](_0x174b18);var _0x4c09f4;_0x44d673&&((_0x4c09f4=_0x44d673)&&k['includes'](_0x4c09f4)&&this['_logSuppressibleWarning']('email-configuration-unsupported-color-format',{'configPath':_0x174b18,'format':_0x44d673}));}['_isSuppressedLog'](_0x449471,_0x3a6bba){const _0x1f129e=this['editor']['config']['get']('email.logs');return!!_0x1f129e['suppressAll']||(!('function'!=typeof _0x1f129e['suppress']||!_0x1f129e['suppress'](_0x449471,_0x3a6bba))||!(!Array['isArray'](_0x1f129e['suppress'])||!_0x1f129e['suppress']['includes'](_0x449471)));}}const k=['hsl','hsla','hwb','lab','lch','oklab','oklch','color-mix','rgba'];function P(_0x19f0eb){return!!_0x19f0eb&&k['some'](_0x32fa13=>_0x19f0eb['includes'](_0x32fa13+'('));}class e extends _0x31dcb0{static get['requires'](){return[b];}static get['pluginName'](){return'HighlightEmailIntegration';}static get['isOfficialPlugin'](){return!0x0;}static get['isPremiumPlugin'](){return!0x0;}['afterInit'](){this['editor']['plugins']['get'](b)['_checkUnsupportedPlugin']('Highlight');}}class r extends _0x31dcb0{static get['requires'](){return[b];}static get['pluginName'](){return'ImageEmailIntegration';}static get['isOfficialPlugin'](){return!0x0;}static get['isPremiumPlugin'](){return!0x0;}['afterInit'](){this['editor']['plugins']['get'](b)['_checkUnsupportedPlugin']('ImageBlock');}}class n extends _0x31dcb0{static get['requires'](){return[b];}static get['pluginName'](){return'MathTypeEmailIntegration';}static get['isOfficialPlugin'](){return!0x0;}static get['isPremiumPlugin'](){return!0x0;}['afterInit'](){this['editor']['plugins']['get'](b)['_checkUnsupportedPlugin']('MathType');}}class x extends _0x31dcb0{static get['requires'](){return[b];}static get['pluginName'](){return'ExportInlineStylesEmailIntegration';}static get['isOfficialPlugin'](){return!0x0;}static get['isPremiumPlugin'](){return!0x0;}['afterInit'](){const _0x290a88=this['editor']['plugins']['get'](b);this['editor']['plugins']['has']('ExportInlineStyles')||_0x290a88['_logSuppressibleWarning']('email-configuration-missing-export-inline-styles-plugin');}}class a extends _0x31dcb0{static get['requires'](){return[b];}static get['pluginName'](){return'ListEmailIntegration';}static get['isOfficialPlugin'](){return!0x0;}static get['isPremiumPlugin'](){return!0x0;}['afterInit'](){const _0x4d54a1=this['editor']['plugins']['get'](b),_0x37a698=this['editor']['config']['get']('list');_0x37a698&&_0x37a698['properties']&&_0x37a698['properties']['reversed']&&_0x4d54a1['_logSuppressibleWarning']('email-configuration-unsupported-reversed-list');}}class s extends _0x31dcb0{static get['requires'](){return[b];}static get['pluginName'](){return'TableEmailIntegration';}static get['isOfficialPlugin'](){return!0x0;}static get['isPremiumPlugin'](){return!0x0;}['afterInit'](){this['_checkRequiredTablePlugins'](),this['_checkTableConfig']();}['_checkRequiredTablePlugins'](){const {plugins:_0x3e6527}=this['editor'],_0x43b395=_0x3e6527['get'](b);_0x3e6527['has']('Table')&&(_0x3e6527['has']('PlainTableOutput')||_0x43b395['_logSuppressibleWarning']('email-configuration-missing-plain-table-output-plugin'),_0x3e6527['has']('TableLayout')||_0x43b395['_logSuppressibleWarning']('email-configuration-missing-table-layout-plugin'));}['_checkTableConfig'](){const {config:_0x5c6735,plugins:_0x2dcc91}=this['editor'];_0x5c6735['get']('table')&&_0x2dcc91['has']('Table')&&(this['_checkTablePropertiesConfig']('tableCellProperties'),this['_checkTablePropertiesConfig']('tableProperties'));}['_checkTablePropertiesConfig'](_0x267d4b){const _0x285032=this['editor']['plugins']['get'](b);_0x285032['_validateConfigColorValue']('table.'+_0x267d4b+'.borderColors'),_0x285032['_validateConfigColorValue']('table.'+_0x267d4b+'.backgroundColors'),_0x285032['_validateConfigColorValue']('table.'+_0x267d4b+'.defaultProperties.borderColor'),_0x285032['_validateConfigColorValue']('table.'+_0x267d4b+'.defaultProperties'),_0x285032['_validateConfigColorFormat']('table.'+_0x267d4b+'.colorPicker.format');}}class l extends _0x31dcb0{static get['requires'](){return[b];}static get['pluginName'](){return'EmptyBlockEmailIntegration';}static get['isOfficialPlugin'](){return!0x0;}static get['isPremiumPlugin'](){return!0x0;}['afterInit'](){const _0x3216c2=this['editor']['plugins']['get'](b);this['editor']['plugins']['has']('EmptyBlock')||_0x3216c2['_logSuppressibleInfo']('email-configuration-missing-empty-block-plugin','Consider\x20enabling\x20the\x20EmptyBlock\x20plugin\x20to\x20ensure\x20that\x20exported\x20content\x20has\x20empty\x20blocks.','features/email#empty-block-plugin');}}class m extends _0x31dcb0{static get['requires'](){return[b];}static get['pluginName'](){return'FontEmailIntegration';}static get['isOfficialPlugin'](){return!0x0;}static get['isPremiumPlugin'](){return!0x0;}['afterInit'](){const {plugins:_0x1fca36}=this['editor'];_0x1fca36['has']('FontColorEditing')&&this['_checkColorConfig']('fontColor'),_0x1fca36['has']('FontBackgroundColorEditing')&&this['_checkColorConfig']('fontBackgroundColor');}['_checkColorConfig'](_0x1e117b){const _0x47f61f=this['editor']['plugins']['get'](b);this['editor']['config']['get'](_0x1e117b)&&(_0x47f61f['_validateConfigColorValue'](_0x1e117b+'.colors'),_0x47f61f['_validateConfigColorValue'](_0x1e117b+'.documentColors'),_0x47f61f['_validateConfigColorFormat'](_0x1e117b+'.colorPicker.format'));}}class g extends _0x31dcb0{static get['requires'](){return[b];}static get['pluginName'](){return'SourceEditingEmailIntegration';}static get['isOfficialPlugin'](){return!0x0;}static get['isPremiumPlugin'](){return!0x0;}['afterInit'](){const {plugins:_0x553659}=this['editor'],_0x5321e2=_0x553659['get'](b);_0x553659['has']('SourceEditing')||_0x553659['has']('SourceEditingEnhanced')||_0x5321e2['_logSuppressibleWarning']('email-configuration-missing-source-editing-plugin');}}class p extends _0x31dcb0{static get['requires'](){return[b];}static get['pluginName'](){return'MarkdownEmailIntegration';}static get['isOfficialPlugin'](){return!0x0;}static get['isPremiumPlugin'](){return!0x0;}['afterInit'](){this['editor']['plugins']['get'](b)['_checkUnsupportedPlugin']('Markdown');}}class f extends _0x31dcb0{static ['UNSUPPORTED_ELEMENTS']=new Set(['object','article','details','main','nav','summary','abbr','acronym','bdi','output','hgroup','form','input','button','audio','canvas','meter','progress','iframe']);static get['requires'](){return[b];}static get['pluginName'](){return'GeneralHtmlIntegrationSupport';}static get['isOfficialPlugin'](){return!0x0;}static get['isPremiumPlugin'](){return!0x0;}['init'](){const {plugins:_0x201e7a}=this['editor'];if(!_0x201e7a['has']('DataFilter'))return;const _0x5ab08e=_0x201e7a['get']('DataFilter'),_0x1c1305=_0x201e7a['get'](b);for(const _0x40980d of f['UNSUPPORTED_ELEMENTS'])_0x5ab08e['once']('register:'+_0x40980d,(_0xfe712b,_0x1f09f3)=>{_0x1c1305['_logSuppressibleWarning']('email-unsupported-html-element',{'element':_0x1f09f3['view']});});}}class u extends _0x31dcb0{static get['requires'](){return[b];}static get['pluginName'](){return'MergeFieldsEmailIntegration';}static get['isOfficialPlugin'](){return!0x0;}static get['isPremiumPlugin'](){return!0x0;}['afterInit'](){const _0x18aad=this['editor']['plugins']['get'](b);this['editor']['plugins']['has']('MergeFields')||_0x18aad['_logSuppressibleInfo']('email-configuration-missing-merge-fields-plugin','Consider\x20enabling\x20the\x20MergeFields\x20plugin\x20which\x20allows\x20inserting\x20dynamic\x20data\x20placeholders\x20into\x20content.','features/email#merge-fields-plugin');}}class c extends _0x31dcb0{static get['requires'](){return[b];}static get['pluginName'](){return'TemplateEmailIntegration';}static get['isOfficialPlugin'](){return!0x0;}static get['isPremiumPlugin'](){return!0x0;}['afterInit'](){const _0x2b0ba1=this['editor']['plugins']['get'](b);this['editor']['plugins']['has']('Template')||_0x2b0ba1['_logSuppressibleInfo']('email-configuration-missing-template-plugin','Consider\x20enabling\x20the\x20Template\x20plugin\x20which\x20allows\x20inserting\x20predefined\x20e-mail\x20templates\x20into\x20the\x20editor.','features/email#template-plugin');}}class L extends _0x31dcb0{static get['requires'](){return[b];}static get['pluginName'](){return'UploadEmailIntegration';}static get['isOfficialPlugin'](){return!0x0;}static get['isPremiumPlugin'](){return!0x0;}['afterInit'](){this['editor']['plugins']['get'](b)['_checkUnsupportedPlugin']('Base64UploadAdapter');}}class d extends _0x31dcb0{static get['requires'](){return[b];}static get['pluginName'](){return'MediaEmbedEmailIntegration';}static get['isOfficialPlugin'](){return!0x0;}static get['isPremiumPlugin'](){return!0x0;}['afterInit'](){this['editor']['plugins']['get'](b)['_checkUnsupportedPlugin']('MediaEmbed');}}class y extends _0x31dcb0{static get['requires'](){return[b];}static get['pluginName'](){return'TodoListEmailIntegration';}static get['isOfficialPlugin'](){return!0x0;}static get['isPremiumPlugin'](){return!0x0;}['afterInit'](){this['editor']['plugins']['get'](b)['_checkUnsupportedPlugin']('TodoList');}}class j extends _0x31dcb0{static get['requires'](){return[b];}static get['pluginName'](){return'MultiLevelListEmailIntegration';}static get['isOfficialPlugin'](){return!0x0;}static get['isPremiumPlugin'](){return!0x0;}['afterInit'](){this['editor']['plugins']['get'](b)['_checkUnsupportedPlugin']('MultiLevelList',{'description':'The\x20multi-level\x20lists\x20are\x20rendered\x20incorrectly\x20in\x20Outlook\x202021.'});}}class C extends _0x31dcb0{['licenseKey'];['_licenseKeyCheckInterval'];static get['pluginName'](){return'EmailConfigurationHelper';}static get['isOfficialPlugin'](){return!0x0;}static get['isPremiumPlugin'](){return!0x0;}static get['requires'](){return[e,r,n,x,a,s,l,m,g,p,f,u,c,L,d,y,j];}['init'](){this['licenseKey']=this['editor']['config']['get']('licenseKey');const _0x5b6c2d=this['editor'];this['_licenseKeyCheckInterval']=setInterval(()=>{let _0x2c9798;for(const _0x37fb7c in _0x5b6c2d){const _0x462e1d=_0x37fb7c,_0x16887b=_0x5b6c2d[_0x462e1d];if('emailConfigurationHelperLicenseKeyValid'==_0x16887b||'emailConfigurationHelperLicenseKeyInvalid'==_0x16887b||'emailConfigurationHelperLicenseKeyExpired'==_0x16887b||'emailConfigurationHelperLicenseKeyDomainLimit'==_0x16887b||'emailConfigurationHelperLicenseKeyNotAllowed'==_0x16887b||'emailConfigurationHelperLicenseKeyEvaluationLimit'==_0x16887b||'emailConfigurationHelperLicenseKeyTrialLimit'==_0x16887b||'emailConfigurationHelperLicenseKeyUsageLimit'==_0x16887b){delete _0x5b6c2d[_0x462e1d],_0x2c9798=_0x16887b,clearInterval(this['_licenseKeyCheckInterval']),this['_licenseKeyCheckInterval']=void 0x0;break;}}'emailConfigurationHelperLicenseKeyInvalid'==_0x2c9798&&_0x5b6c2d['_showLicenseError']('invalid'),'emailConfigurationHelperLicenseKeyExpired'==_0x2c9798&&_0x5b6c2d['_showLicenseError']('expired'),'emailConfigurationHelperLicenseKeyDomainLimit'==_0x2c9798&&_0x5b6c2d['_showLicenseError']('domainLimit'),'emailConfigurationHelperLicenseKeyNotAllowed'==_0x2c9798&&_0x5b6c2d['_showLicenseError']('featureNotAllowed','EmailConfigurationHelper'),'emailConfigurationHelperLicenseKeyEvaluationLimit'==_0x2c9798&&_0x5b6c2d['_showLicenseError']('evaluationLimit'),'emailConfigurationHelperLicenseKeyTrialLimit'==_0x2c9798&&_0x5b6c2d['_showLicenseError']('trialLimit'),'emailConfigurationHelperLicenseKeyUsageLimit'==_0x2c9798&&_0x5b6c2d['_showLicenseError']('usageLimit');},0x3e8);}['destroy'](){super['destroy'](),this['_licenseKeyCheckInterval']&&clearInterval(this['_licenseKeyCheckInterval']);}}function I(){return[(_0xf6746d,_0x2a7d4c)=>{if(!['TABLE','IMG']['includes'](_0xf6746d['tagName']))return;const _0x18225d=_0x2a7d4c['getAsString']('float');if(_0x18225d){const _0x2620e4=_0x226303(_0x18225d);'left'!==_0x2620e4&&'right'!==_0x2620e4||_0xf6746d['setAttribute']('align',_0x2620e4);}},(_0x530412,_0x48684d)=>{if('TABLE'!==_0x530412['tagName'])return;const _0x1a1186=_0x48684d['getAsString']('margin-left'),_0xc7476d=_0x48684d['getAsString']('margin-right');_0x1a1186&&_0xc7476d&&'auto'===_0x226303(_0x1a1186)&&'auto'===_0x226303(_0xc7476d)&&_0x530412['setAttribute']('align','center');}];}export{C as EmailConfigurationHelper,b as EmailConfigurationLogger,l as EmptyBlockEmailIntegration,x as ExportInlineStylesEmailIntegration,m as FontEmailIntegration,f as GeneralHtmlIntegrationSupport,e as HighlightEmailIntegration,r as ImageEmailIntegration,a as ListEmailIntegration,p as MarkdownEmailIntegration,n as MathTypeEmailIntegration,g as SourceEditingEmailIntegration,s as TableEmailIntegration,I as getEmailInlineStylesTransformations};
package/package.json CHANGED
@@ -1,14 +1,61 @@
1
1
  {
2
2
  "name": "@ckeditor/ckeditor5-email",
3
- "version": "0.0.1",
3
+ "version": "45.0.0-alpha.0",
4
+ "description": "Email integration feature for CKEditor 5.",
4
5
  "keywords": [
5
6
  "ckeditor",
6
7
  "ckeditor5",
7
8
  "ckeditor 5",
8
- "ckeditor5-lib"
9
+ "ckeditor5-feature",
10
+ "ckeditor5-plugin",
11
+ "ckeditor5-dll"
9
12
  ],
13
+ "type": "module",
14
+ "main": "src/index.js",
15
+ "dependencies": {
16
+ "ckeditor5": "45.0.0-alpha.0",
17
+ "@ckeditor/ckeditor5-core": "45.0.0-alpha.0",
18
+ "@ckeditor/ckeditor5-font": "45.0.0-alpha.0",
19
+ "@ckeditor/ckeditor5-list": "45.0.0-alpha.0",
20
+ "@ckeditor/ckeditor5-table": "45.0.0-alpha.0",
21
+ "@ckeditor/ckeditor5-utils": "45.0.0-alpha.0",
22
+ "@ckeditor/ckeditor5-html-support": "45.0.0-alpha.0",
23
+ "@ckeditor/ckeditor5-export-inline-styles": "45.0.0-alpha.0"
24
+ },
10
25
  "author": "CKSource (http://cksource.com/)",
11
- "license": "GPL-2.0-or-later",
26
+ "license": "SEE LICENSE IN LICENSE.md",
12
27
  "homepage": "https://ckeditor.com/ckeditor-5",
13
- "bugs": "https://github.com/ckeditor/ckeditor5/issues"
28
+ "bugs": "https://github.com/ckeditor/ckeditor5/issues",
29
+ "files": [
30
+ "dist",
31
+ "build",
32
+ "lang",
33
+ "src/**/*.js",
34
+ "src/**/*.d.ts",
35
+ "theme",
36
+ "ckeditor5-metadata.json",
37
+ "CHANGELOG.md"
38
+ ],
39
+ "types": "src/index.d.ts",
40
+ "exports": {
41
+ ".": {
42
+ "types": "./src/index.d.ts",
43
+ "import": "./src/index.js",
44
+ "default": "./src/index.js"
45
+ },
46
+ "./dist/*": {
47
+ "types": "./src/index.d.ts",
48
+ "import": "./dist/*",
49
+ "default": "./dist/*"
50
+ },
51
+ "./src/*": {
52
+ "types": "./src/*.d.ts",
53
+ "import": "./src/*",
54
+ "default": "./src/*"
55
+ },
56
+ "./build/*": "./build/*",
57
+ "./ckeditor5-metadata.json": "./ckeditor5-metadata.json",
58
+ "./package.json": "./package.json"
59
+ },
60
+ "obfuscated": true
14
61
  }
@@ -0,0 +1,30 @@
1
+ /**
2
+ * @license Copyright (c) 2003-2025, CKSource Holding sp. z o.o. All rights reserved.
3
+ * For licensing, see LICENSE.md or https://ckeditor.com/legal/ckeditor-licensing-options
4
+ */
5
+ import type { EmailConfigurationConfig } from './emailconfigurationconfig.js';
6
+ import type { EmailConfigurationHelper, EmailConfigurationLogger, EmptyBlockEmailIntegration, ExportInlineStylesEmailIntegration, FontEmailIntegration, HighlightEmailIntegration, ImageEmailIntegration, ListEmailIntegration, TableEmailIntegration, MathTypeEmailIntegration, SourceEditingEmailIntegration, MarkdownEmailIntegration } from './index.js';
7
+ declare module '@ckeditor/ckeditor5-core' {
8
+ interface EditorConfig {
9
+ /**
10
+ * The configuration of the {@link module:email/emailconfigurationhelper~EmailConfigurationHelper EmailIntegration feature}.
11
+ *
12
+ * Read more in {@link module:email/emailconfigurationconfig~EmailConfigurationConfig}.
13
+ */
14
+ email?: EmailConfigurationConfig;
15
+ }
16
+ interface PluginsMap {
17
+ [EmailConfigurationHelper.pluginName]: EmailConfigurationHelper;
18
+ [EmailConfigurationLogger.pluginName]: EmailConfigurationLogger;
19
+ [EmptyBlockEmailIntegration.pluginName]: EmptyBlockEmailIntegration;
20
+ [ExportInlineStylesEmailIntegration.pluginName]: ExportInlineStylesEmailIntegration;
21
+ [FontEmailIntegration.pluginName]: FontEmailIntegration;
22
+ [HighlightEmailIntegration.pluginName]: HighlightEmailIntegration;
23
+ [ImageEmailIntegration.pluginName]: ImageEmailIntegration;
24
+ [ListEmailIntegration.pluginName]: ListEmailIntegration;
25
+ [TableEmailIntegration.pluginName]: TableEmailIntegration;
26
+ [MathTypeEmailIntegration.pluginName]: MathTypeEmailIntegration;
27
+ [SourceEditingEmailIntegration.pluginName]: SourceEditingEmailIntegration;
28
+ [MarkdownEmailIntegration.pluginName]: MarkdownEmailIntegration;
29
+ }
30
+ }
@@ -0,0 +1,23 @@
1
+ /*
2
+ * Copyright (c) 2003-2025, CKSource Holding sp. z o.o. All rights reserved.
3
+ *
4
+ *
5
+ *
6
+ *
7
+ * +---------------------------------------------------------------------------------+
8
+ * | |
9
+ * | Hello stranger! |
10
+ * | |
11
+ * | |
12
+ * | What you're currently looking at is the source code of a legally protected, |
13
+ * | proprietary software. Any attempts to deobfuscate / disassemble this code |
14
+ * | are forbidden and will result in legal consequences. |
15
+ * | |
16
+ * | |
17
+ * +---------------------------------------------------------------------------------+
18
+ *
19
+ *
20
+ *
21
+ *
22
+ */
23
+ export{};
@@ -0,0 +1,59 @@
1
+ /**
2
+ * @license Copyright (c) 2003-2025, CKSource Holding sp. z o.o. All rights reserved.
3
+ * For licensing, see LICENSE.md or https://ckeditor.com/legal/ckeditor-licensing-options
4
+ */
5
+ /**
6
+ * @module email/emailconfigurationconfig
7
+ * @publicApi
8
+ */
9
+ /**
10
+ * The configuration of the email integration feature.
11
+ *
12
+ * ```ts
13
+ * ClassicEditor
14
+ * .create( editorElement, {
15
+ * email: ... // Email integration feature options.
16
+ * } )
17
+ * .then( ... )
18
+ * .catch( ... );
19
+ * ```
20
+ *
21
+ * See {@link module:core/editor/editorconfig~EditorConfig all editor configuration options}.
22
+ */
23
+ export interface EmailConfigurationConfig {
24
+ /**
25
+ * Configuration for warning or log messages about email client compatibility.
26
+ *
27
+ * ```ts
28
+ * ClassicEditor
29
+ * .create( editorElement, {
30
+ * email: {
31
+ * logs: {
32
+ * suppressAll: false,
33
+ * suppress: [
34
+ * 'email-configuration-unsupported-reversed-list',
35
+ * 'email-configuration-missing-empty-block-plugin',
36
+ * // ... other warning codes
37
+ * ]
38
+ * }
39
+ * }
40
+ * } )
41
+ * ```
42
+ */
43
+ logs?: {
44
+ /**
45
+ * Setting this to `true` will silence all compatibility warnings,
46
+ * including any that might be added in future releases. This is not recommended
47
+ * as it may hide important information about the editor's behavior in email clients.
48
+ *
49
+ * @default false
50
+ */
51
+ suppressAll?: boolean;
52
+ /**
53
+ * Array of specific warning codes to suppress.
54
+ *
55
+ * @default []
56
+ */
57
+ suppress?: Array<string> | ((warningCode: string, data?: object) => boolean);
58
+ };
59
+ }
@@ -0,0 +1,23 @@
1
+ /*
2
+ * Copyright (c) 2003-2025, CKSource Holding sp. z o.o. All rights reserved.
3
+ *
4
+ *
5
+ *
6
+ *
7
+ * +---------------------------------------------------------------------------------+
8
+ * | |
9
+ * | Hello stranger! |
10
+ * | |
11
+ * | |
12
+ * | What you're currently looking at is the source code of a legally protected, |
13
+ * | proprietary software. Any attempts to deobfuscate / disassemble this code |
14
+ * | are forbidden and will result in legal consequences. |
15
+ * | |
16
+ * | |
17
+ * +---------------------------------------------------------------------------------+
18
+ *
19
+ *
20
+ *
21
+ *
22
+ */
23
+ export{};
@@ -0,0 +1,57 @@
1
+ /**
2
+ * @license Copyright (c) 2003-2025, CKSource Holding sp. z o.o. All rights reserved.
3
+ * For licensing, see LICENSE.md or https://ckeditor.com/legal/ckeditor-licensing-options
4
+ */
5
+ /**
6
+ * @module email/emailconfigurationhelper
7
+ * @publicApi
8
+ */
9
+ import { Plugin } from 'ckeditor5/src/core.js';
10
+ import HighlightEmailIntegration from './integrations/highlight.js';
11
+ import ImageEmailIntegration from './integrations/image.js';
12
+ import MathTypeEmailIntegration from './integrations/mathtype.js';
13
+ import ExportInlineStylesIntegration from './integrations/exportinlinestyles.js';
14
+ import ListEmailIntegration from './integrations/list.js';
15
+ import TableEmailIntegration from './integrations/table.js';
16
+ import EmptyBlockEmailIntegration from './integrations/emptyblock.js';
17
+ import FontEmailIntegration from './integrations/font.js';
18
+ import SourceEditingEmailIntegration from './integrations/sourceediting.js';
19
+ import MarkdownEmailIntegration from './integrations/markdown.js';
20
+ import GeneralHtmlIntegrationSupport from './integrations/generalhtmlintegration.js';
21
+ import MergeFieldsEmailIntegration from './integrations/mergefields.js';
22
+ import TemplateEmailIntegration from './integrations/template.js';
23
+ import UploadEmailIntegration from './integrations/upload.js';
24
+ import MediaEmbedEmailIntegration from './integrations/mediaembed.js';
25
+ import TodoListEmailIntegration from './integrations/todolist.js';
26
+ import MultiLevelListEmailIntegration from './integrations/listmultilevel.js';
27
+ /**
28
+ * The email integration plugin.
29
+ *
30
+ * This is a "glue" plugin that integrates the email integration feature with the editor.
31
+ */
32
+ export default class EmailConfigurationHelper extends Plugin {
33
+ /**
34
+ * @inheritDoc
35
+ */
36
+ static get pluginName(): "EmailConfigurationHelper";
37
+ /**
38
+ * @inheritDoc
39
+ */
40
+ static get isOfficialPlugin(): true;
41
+ /**
42
+ * @inheritDoc
43
+ */
44
+ static get isPremiumPlugin(): true;
45
+ /**
46
+ * @inheritDoc
47
+ */
48
+ static get requires(): readonly [typeof HighlightEmailIntegration, typeof ImageEmailIntegration, typeof MathTypeEmailIntegration, typeof ExportInlineStylesIntegration, typeof ListEmailIntegration, typeof TableEmailIntegration, typeof EmptyBlockEmailIntegration, typeof FontEmailIntegration, typeof SourceEditingEmailIntegration, typeof MarkdownEmailIntegration, typeof GeneralHtmlIntegrationSupport, typeof MergeFieldsEmailIntegration, typeof TemplateEmailIntegration, typeof UploadEmailIntegration, typeof MediaEmbedEmailIntegration, typeof TodoListEmailIntegration, typeof MultiLevelListEmailIntegration];
49
+ /**
50
+ * @inheritDoc
51
+ */
52
+ init(): void;
53
+ /**
54
+ * @inheritDoc
55
+ */
56
+ destroy(): void;
57
+ }
@@ -0,0 +1,23 @@
1
+ /*
2
+ * Copyright (c) 2003-2025, CKSource Holding sp. z o.o. All rights reserved.
3
+ *
4
+ *
5
+ *
6
+ *
7
+ * +---------------------------------------------------------------------------------+
8
+ * | |
9
+ * | Hello stranger! |
10
+ * | |
11
+ * | |
12
+ * | What you're currently looking at is the source code of a legally protected, |
13
+ * | proprietary software. Any attempts to deobfuscate / disassemble this code |
14
+ * | are forbidden and will result in legal consequences. |
15
+ * | |
16
+ * | |
17
+ * +---------------------------------------------------------------------------------+
18
+ *
19
+ *
20
+ *
21
+ *
22
+ */
23
+ const _0x3d25e8=_0x254a;(function(_0x58a79b,_0x3b5181){const _0x657042=_0x254a,_0x5eabcc=_0x58a79b();while(!![]){try{const _0x23ae90=parseInt(_0x657042(0xf7))/0x1+-parseInt(_0x657042(0xff))/0x2*(parseInt(_0x657042(0xef))/0x3)+parseInt(_0x657042(0xfc))/0x4+-parseInt(_0x657042(0xe9))/0x5+-parseInt(_0x657042(0x100))/0x6*(-parseInt(_0x657042(0xe7))/0x7)+parseInt(_0x657042(0xe4))/0x8+parseInt(_0x657042(0xea))/0x9;if(_0x23ae90===_0x3b5181)break;else _0x5eabcc['push'](_0x5eabcc['shift']());}catch(_0x1b2e33){_0x5eabcc['push'](_0x5eabcc['shift']());}}}(_0xf348,0x36961));import{Plugin as _0x41e6c7}from'ckeditor5/src/core.js';import _0x205944 from'./integrations/highlight.js';import _0x44fa29 from'./integrations/image.js';import _0x178e61 from'./integrations/mathtype.js';import _0x18f1b3 from'./integrations/exportinlinestyles.js';import _0x3c1563 from'./integrations/list.js';import _0x4cbe72 from'./integrations/table.js';import _0x44d7a2 from'./integrations/emptyblock.js';import _0x3b14f1 from'./integrations/font.js';import _0x3ba327 from'./integrations/sourceediting.js';import _0x4e46b0 from'./integrations/markdown.js';import _0x407509 from'./integrations/generalhtmlintegration.js';function _0xf348(){const _0x2aad19=['isOfficialPlugin','isPremiumPlugin','79782fMGKpR','264KsVDCk','emailConfigurationHelperLicenseKeyInvalid','requires','get','usageLimit','emailConfigurationHelperLicenseKeyNotAllowed','domainLimit','invalid','config','444832NbUbio','emailConfigurationHelperLicenseKeyExpired','evaluationLimit','37016qvjaPT','init','1390760yjRCCf','101556ZFuZnw','emailConfigurationHelperLicenseKeyEvaluationLimit','_licenseKeyCheckInterval','_showLicenseError','emailConfigurationHelperLicenseKeyTrialLimit','6FZcUcR','expired','editor','pluginName','emailConfigurationHelperLicenseKeyUsageLimit','destroy','licenseKey','EmailConfigurationHelper','212727xXqRDY','trialLimit','emailConfigurationHelperLicenseKeyValid','featureNotAllowed','emailConfigurationHelperLicenseKeyDomainLimit','276928SHBRVh'];_0xf348=function(){return _0x2aad19;};return _0xf348();}import _0x31417f from'./integrations/mergefields.js';import _0x33c8ad from'./integrations/template.js';import _0x2df491 from'./integrations/upload.js';function _0x254a(_0x259468,_0x60676a){const _0xf3481e=_0xf348();return _0x254a=function(_0x254aa5,_0x190080){_0x254aa5=_0x254aa5-0xdd;let _0x3d06bf=_0xf3481e[_0x254aa5];return _0x3d06bf;},_0x254a(_0x259468,_0x60676a);}import _0x1e226d from'./integrations/mediaembed.js';import _0x4e400e from'./integrations/todolist.js';import _0x2b8142 from'./integrations/listmultilevel.js';export default class C extends _0x41e6c7{[_0x3d25e8(0xf5)];[_0x3d25e8(0xec)];static get[_0x3d25e8(0xf2)](){const _0x1ff8f8=_0x3d25e8;return _0x1ff8f8(0xf6);}static get[_0x3d25e8(0xfd)](){return!0x0;}static get[_0x3d25e8(0xfe)](){return!0x0;}static get[_0x3d25e8(0xdd)](){return[_0x205944,_0x44fa29,_0x178e61,_0x18f1b3,_0x3c1563,_0x4cbe72,_0x44d7a2,_0x3b14f1,_0x3ba327,_0x4e46b0,_0x407509,_0x31417f,_0x33c8ad,_0x2df491,_0x1e226d,_0x4e400e,_0x2b8142];}[_0x3d25e8(0xe8)](){const _0x18e131=_0x3d25e8;this[_0x18e131(0xf5)]=this[_0x18e131(0xf1)][_0x18e131(0xe3)][_0x18e131(0xde)](_0x18e131(0xf5));const _0x134569=this[_0x18e131(0xf1)];this[_0x18e131(0xec)]=setInterval(()=>{const _0x102112=_0x18e131;let _0x2ab32b;for(const _0x54e651 in _0x134569){const _0x539ab8=_0x54e651,_0x45272a=_0x134569[_0x539ab8];if(_0x102112(0xf9)==_0x45272a||_0x102112(0x101)==_0x45272a||_0x102112(0xe5)==_0x45272a||_0x102112(0xfb)==_0x45272a||_0x102112(0xe0)==_0x45272a||_0x102112(0xeb)==_0x45272a||_0x102112(0xee)==_0x45272a||_0x102112(0xf3)==_0x45272a){delete _0x134569[_0x539ab8],_0x2ab32b=_0x45272a,clearInterval(this[_0x102112(0xec)]),this[_0x102112(0xec)]=void 0x0;break;}}_0x102112(0x101)==_0x2ab32b&&_0x134569[_0x102112(0xed)](_0x102112(0xe2)),_0x102112(0xe5)==_0x2ab32b&&_0x134569[_0x102112(0xed)](_0x102112(0xf0)),_0x102112(0xfb)==_0x2ab32b&&_0x134569[_0x102112(0xed)](_0x102112(0xe1)),_0x102112(0xe0)==_0x2ab32b&&_0x134569[_0x102112(0xed)](_0x102112(0xfa),_0x102112(0xf6)),_0x102112(0xeb)==_0x2ab32b&&_0x134569[_0x102112(0xed)](_0x102112(0xe6)),_0x102112(0xee)==_0x2ab32b&&_0x134569[_0x102112(0xed)](_0x102112(0xf8)),_0x102112(0xf3)==_0x2ab32b&&_0x134569[_0x102112(0xed)](_0x102112(0xdf));},0x3e8);}[_0x3d25e8(0xf4)](){const _0x5e6895=_0x3d25e8;super[_0x5e6895(0xf4)](),this[_0x5e6895(0xec)]&&clearInterval(this[_0x5e6895(0xec)]);}}