@ckeditor/ckeditor5-export-inline-styles 0.0.0-internal-20251218.0 → 0.0.0-internal-20260224.0
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- package/LICENSE.md +1 -1
- package/README.md +1 -1
- package/ckeditor5-metadata.json +1 -1
- package/{src → dist}/augmentation.d.ts +1 -1
- package/{src → dist}/exportinlinestyles.d.ts +6 -4
- package/{src → dist}/exportinlinestylescommand.d.ts +2 -2
- package/{src → dist}/exportinlinestylesediting.d.ts +2 -2
- package/{src → dist}/exportinlinestylesutils.d.ts +1 -1
- package/dist/index-content.css +1 -1
- package/dist/index-editor.css +1 -1
- package/dist/index.css +1 -1
- package/{src → dist}/index.d.ts +1 -1
- package/dist/index.js +2 -2
- package/{src → dist}/utils/exportinlinestylescollector.d.ts +2 -2
- package/{src → dist}/utils/exportinlinestylescssvariables.d.ts +2 -2
- package/{src → dist}/utils/exportinlinestylesmatcher.d.ts +2 -2
- package/package.json +15 -36
- package/build/export-inline-styles.js +0 -4
- package/src/augmentation.js +0 -23
- package/src/exportinlinestyles.js +0 -23
- package/src/exportinlinestylescommand.js +0 -23
- package/src/exportinlinestylesediting.js +0 -23
- package/src/exportinlinestylesutils.js +0 -23
- package/src/index.js +0 -23
- package/src/utils/exportinlinestylescollector.js +0 -23
- package/src/utils/exportinlinestylescssvariables.js +0 -23
- package/src/utils/exportinlinestylesmatcher.js +0 -23
package/LICENSE.md
CHANGED
|
@@ -2,7 +2,7 @@ Software License Agreement
|
|
|
2
2
|
==========================
|
|
3
3
|
|
|
4
4
|
**CKEditor 5 Export with inline styles feature** (https://ckeditor.com/ckeditor-5/)<br>
|
|
5
|
-
Copyright (c) 2003–
|
|
5
|
+
Copyright (c) 2003–2026, [CKSource Holding sp. z o.o.](https://cksource.com) All rights reserved.
|
|
6
6
|
|
|
7
7
|
CKEditor 5 Export with inline styles 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).
|
package/README.md
CHANGED
|
@@ -38,7 +38,7 @@ As a licensed CKEditor 5 Export with Inline Styles feature user you can rep
|
|
|
38
38
|
## License
|
|
39
39
|
|
|
40
40
|
**CKEditor 5 Export with Inline Styles feature** (https://ckeditor.com/ckeditor-5/)<br>
|
|
41
|
-
Copyright (c) 2003–
|
|
41
|
+
Copyright (c) 2003–2026, [CKSource Holding sp. z o.o.](https://cksource.com) All rights reserved.
|
|
42
42
|
|
|
43
43
|
CKEditor 5 Export with Inline Styles 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
44
|
|
package/ckeditor5-metadata.json
CHANGED
|
@@ -1,5 +1,5 @@
|
|
|
1
1
|
/**
|
|
2
|
-
* @license Copyright (c) 2003-
|
|
2
|
+
* @license Copyright (c) 2003-2026, CKSource Holding sp. z o.o. All rights reserved.
|
|
3
3
|
* For licensing, see LICENSE.md or https://ckeditor.com/legal/ckeditor-licensing-options
|
|
4
4
|
*/
|
|
5
5
|
import type { ExportInlineStyles, ExportInlineStylesCommand, ExportInlineStylesConfig, ExportInlineStylesEditing } from './index.js';
|
|
@@ -1,13 +1,13 @@
|
|
|
1
1
|
/**
|
|
2
|
-
* @license Copyright (c) 2003-
|
|
2
|
+
* @license Copyright (c) 2003-2026, CKSource Holding sp. z o.o. All rights reserved.
|
|
3
3
|
* For licensing, see LICENSE.md or https://ckeditor.com/legal/ckeditor-licensing-options
|
|
4
4
|
*/
|
|
5
5
|
/**
|
|
6
6
|
* @module export-inline-styles/exportinlinestyles
|
|
7
7
|
* @publicApi
|
|
8
8
|
*/
|
|
9
|
-
import type { StylesMap } from 'ckeditor5
|
|
10
|
-
import { Plugin } from 'ckeditor5
|
|
9
|
+
import type { StylesMap } from '@ckeditor/ckeditor5-engine';
|
|
10
|
+
import { Plugin } from '@ckeditor/ckeditor5-core';
|
|
11
11
|
import { ExportInlineStylesEditing } from './exportinlinestylesediting.js';
|
|
12
12
|
/**
|
|
13
13
|
* The plugin responsible for converting external CSS styles to inline styles.
|
|
@@ -168,5 +168,7 @@ export interface ExportInlineStylesConfig {
|
|
|
168
168
|
*
|
|
169
169
|
* @param element The DOM element being processed.
|
|
170
170
|
* @param stylesMap The map of styles to be applied to the element.
|
|
171
|
+
* @returns The new element that will be used instead of the original one, or `undefined` to keep the original element. It may be used when
|
|
172
|
+
* transformer replaces one element with another (e.g., `figure` to `div`).
|
|
171
173
|
*/
|
|
172
|
-
export type ExportInlineStylesTransformation = (element: HTMLElement, stylesMap: StylesMap) => void;
|
|
174
|
+
export type ExportInlineStylesTransformation = (element: HTMLElement, stylesMap: StylesMap) => HTMLElement | undefined | void;
|
|
@@ -1,12 +1,12 @@
|
|
|
1
1
|
/**
|
|
2
|
-
* @license Copyright (c) 2003-
|
|
2
|
+
* @license Copyright (c) 2003-2026, CKSource Holding sp. z o.o. All rights reserved.
|
|
3
3
|
* For licensing, see LICENSE.md or https://ckeditor.com/legal/ckeditor-licensing-options
|
|
4
4
|
*/
|
|
5
5
|
/**
|
|
6
6
|
* @module export-inline-styles/exportinlinestylescommand
|
|
7
7
|
* @publicApi
|
|
8
8
|
*/
|
|
9
|
-
import { Command, type Editor } from 'ckeditor5
|
|
9
|
+
import { Command, type Editor } from '@ckeditor/ckeditor5-core';
|
|
10
10
|
import type { ExportInlineStylesTransformation } from './exportinlinestyles.js';
|
|
11
11
|
/**
|
|
12
12
|
* The export to inline styles command.
|
|
@@ -1,12 +1,12 @@
|
|
|
1
1
|
/**
|
|
2
|
-
* @license Copyright (c) 2003-
|
|
2
|
+
* @license Copyright (c) 2003-2026, CKSource Holding sp. z o.o. All rights reserved.
|
|
3
3
|
* For licensing, see LICENSE.md or https://ckeditor.com/legal/ckeditor-licensing-options
|
|
4
4
|
*/
|
|
5
5
|
/**
|
|
6
6
|
* @module export-inline-styles/exportinlinestylesediting
|
|
7
7
|
* @publicApi
|
|
8
8
|
*/
|
|
9
|
-
import { Plugin } from 'ckeditor5
|
|
9
|
+
import { Plugin } from '@ckeditor/ckeditor5-core';
|
|
10
10
|
/**
|
|
11
11
|
* The editing part of the plugin responsible for converting external CSS styles to inline styles.
|
|
12
12
|
*/
|
|
@@ -1,5 +1,5 @@
|
|
|
1
1
|
/**
|
|
2
|
-
* @license Copyright (c) 2003-
|
|
2
|
+
* @license Copyright (c) 2003-2026, CKSource Holding sp. z o.o. All rights reserved.
|
|
3
3
|
* For licensing, see LICENSE.md or https://ckeditor.com/legal/ckeditor-licensing-options
|
|
4
4
|
*/
|
|
5
5
|
/**
|
package/dist/index-content.css
CHANGED
|
@@ -1,4 +1,4 @@
|
|
|
1
1
|
/**
|
|
2
|
-
* @license Copyright (c) 2003-
|
|
2
|
+
* @license Copyright (c) 2003-2026, CKSource Holding sp. z o.o. All rights reserved.
|
|
3
3
|
* For licensing, see LICENSE.md or https://ckeditor.com/legal/ckeditor-licensing-options
|
|
4
4
|
*/
|
package/dist/index-editor.css
CHANGED
|
@@ -1,4 +1,4 @@
|
|
|
1
1
|
/**
|
|
2
|
-
* @license Copyright (c) 2003-
|
|
2
|
+
* @license Copyright (c) 2003-2026, CKSource Holding sp. z o.o. All rights reserved.
|
|
3
3
|
* For licensing, see LICENSE.md or https://ckeditor.com/legal/ckeditor-licensing-options
|
|
4
4
|
*/
|
package/dist/index.css
CHANGED
|
@@ -1,4 +1,4 @@
|
|
|
1
1
|
/**
|
|
2
|
-
* @license Copyright (c) 2003-
|
|
2
|
+
* @license Copyright (c) 2003-2026, CKSource Holding sp. z o.o. All rights reserved.
|
|
3
3
|
* For licensing, see LICENSE.md or https://ckeditor.com/legal/ckeditor-licensing-options
|
|
4
4
|
*/
|
package/{src → dist}/index.d.ts
RENAMED
|
@@ -1,5 +1,5 @@
|
|
|
1
1
|
/**
|
|
2
|
-
* @license Copyright (c) 2003-
|
|
2
|
+
* @license Copyright (c) 2003-2026, CKSource Holding sp. z o.o. All rights reserved.
|
|
3
3
|
* For licensing, see LICENSE.md or https://ckeditor.com/legal/ckeditor-licensing-options
|
|
4
4
|
*/
|
|
5
5
|
/**
|
package/dist/index.js
CHANGED
|
@@ -1,5 +1,5 @@
|
|
|
1
1
|
/*
|
|
2
|
-
* Copyright (c) 2003-
|
|
2
|
+
* Copyright (c) 2003-2026, CKSource Holding sp. z o.o. All rights reserved.
|
|
3
3
|
*
|
|
4
4
|
*
|
|
5
5
|
*
|
|
@@ -20,4 +20,4 @@
|
|
|
20
20
|
*
|
|
21
21
|
*
|
|
22
22
|
*/
|
|
23
|
-
import{Command as _0x290160,Plugin as _0x3e9167}from'@ckeditor/ckeditor5-core/dist/index.js';import{collectStylesheets as _0x4bf022,createElement as _0x479e23,uid as _0x4105f8}from'@ckeditor/ckeditor5-utils/dist/index.js';import{calculate as _0x2c56ec,compare as _0x518a16}from'specificity';import{StylesMap as _0x58842b,addMarginStylesRules as _0x4727fb,addPaddingStylesRules as _0x355d59}from'@ckeditor/ckeditor5-engine/dist/index.js';function T(_0x45b08c){const _0x372449=[];let _0x22ba72='',_0x1bc7c7=0x0;for(;_0x1bc7c7<_0x45b08c['length'];){const _0x48585b=_0x45b08c[_0x1bc7c7];if('('===_0x48585b){const _0x1f0113=M(_0x45b08c,_0x1bc7c7+0x1);if(-0x1===_0x1f0113)return[];_0x22ba72+=_0x45b08c['slice'](_0x1bc7c7,_0x1f0113+0x1),_0x1bc7c7=_0x1f0113+0x1;}else','!==_0x48585b||_0x22ba72['endsWith']('\x5c')?(_0x22ba72+=_0x48585b,_0x1bc7c7++):(_0x372449['push'](_0x22ba72['trim']()),_0x22ba72='',_0x1bc7c7++);}return _0x22ba72['trim']()&&_0x372449['push'](_0x22ba72['trim']()),_0x372449['filter'](Boolean);}function M(_0x5e01ed,_0x5addae){let _0x38968b=0x1;for(let _0x274198=_0x5addae;_0x274198<_0x5e01ed['length'];_0x274198++){const _0x3adf1a=_0x5e01ed[_0x274198];if('('===_0x3adf1a)_0x38968b++;else{if(')'===_0x3adf1a&&(_0x38968b--,0x0===_0x38968b))return _0x274198;}}return-0x1;}function L(_0x1c69bc){return _0x1c69bc['replace'](/!\s*important/i,'')['trim']();}function g(_0x5d9708,_0x3ee96e){const _0x19be35=new Map(),_0x4667bb=_0x4bc321=>_0x19be35['has'](_0x4bc321)?_0x19be35['get'](_0x4bc321):_0x5d9708(_0x4bc321);for(const [_0x43d16d,_0x1f4c00]of _0x3ee96e['getStylesEntries']())if(_0x1f4c00&&_0x43d16d['startsWith']('--')){const _0x3fe2cc=b(_0x4667bb,_0x1f4c00);_0x19be35['set'](_0x43d16d,_0x3fe2cc),_0x3ee96e['remove'](_0x43d16d);}for(const [_0x424851,_0x5b8967]of _0x3ee96e['getStylesEntries']())if(_0x5b8967){const _0x202667=b(_0x4667bb,_0x5b8967);_0x3ee96e['set'](_0x424851,_0x202667);}return _0x19be35;}function b(_0x39e90f,_0x4ce240){return function(_0x5454a2,_0x47eed9){let _0x3c48e3='',_0x3d58ec=0x0;for(;_0x3d58ec<_0x5454a2['length'];){const _0x1f8316=_0x5454a2['indexOf']('var(',_0x3d58ec);if(-0x1===_0x1f8316){_0x3c48e3+=_0x5454a2['slice'](_0x3d58ec);break;}_0x3c48e3+=_0x5454a2['slice'](_0x3d58ec,_0x1f8316);const _0x27ec12=_0x1f8316+0x4,_0x4cc549=M(_0x5454a2,_0x27ec12);_0x3c48e3+=_0x47eed9(_0x5454a2['substring'](_0x27ec12,_0x4cc549)),_0x3d58ec=_0x4cc549+0x1;}return _0x3c48e3;}(_0x4ce240,_0x294358=>{const [_0x53c984,_0x4a1b37]=T(_0x294358),_0x36ab51=_0x39e90f(_0x53c984);return void 0x0!==_0x36ab51?_0x36ab51:_0x4a1b37?b(_0x39e90f,_0x4a1b37):'var('+_0x53c984+')';});}async function r(_0x5922ec){const _0xfb8859=[await _0x4bf022(_0x5922ec['stylesheets']),_0x5922ec['inlineCss']]['filter'](_0x1991e1=>_0x1991e1&&_0x1991e1['length'])['join']('\x0a'),_0x19d3ba=await async function(_0x30d6c3,_0x9dc2f0){const _0x133c36=new CSSStyleSheet();return await _0x133c36['replace'](_0x9dc2f0),C(Array['from'](_0x133c36['cssRules'])['filter'](_0x4d6bf1=>_0x4d6bf1 instanceof CSSStyleRule))['flatMap'](({selectorText:_0x39eddf,contentCssText:_0x509db9})=>{const _0x55456c=T(_0x39eddf),_0x52d2bd=new _0x58842b(_0x30d6c3)['setTo'](_0x509db9);return _0x55456c['map'](_0x467e86=>{const _0x4d8cb8=function(_0x226f79){const _0x5e3e11=':where(';let _0xe97465=_0x226f79,_0x1112ff=0x0;for(let _0xbf0491=0x0;_0xbf0491<0x64;_0xbf0491++){const _0x5be67b=_0xe97465['indexOf'](_0x5e3e11,_0x1112ff);if(-0x1===_0x5be67b)break;let _0x4f1740=0x0;for(let _0x3266bd=0x0;_0x3266bd<_0x5be67b;_0x3266bd++)'('===_0xe97465[_0x3266bd]?_0x4f1740++:')'===_0xe97465[_0x3266bd]&&_0x4f1740--;if(_0x4f1740>0x0){_0x1112ff=_0x5be67b+_0x5e3e11['length'];continue;}let _0x2fb7f0=-0x1;for(let _0x6adc1=_0x5be67b+_0x5e3e11['length'],_0xb00bb=0x1;_0x6adc1<_0xe97465['length'];_0x6adc1++)if('('===_0xe97465[_0x6adc1]?_0xb00bb++:')'===_0xe97465[_0x6adc1]&&_0xb00bb--,!_0xb00bb){_0x2fb7f0=_0x6adc1;break;}-0x1!==_0x2fb7f0?(_0xe97465=_0xe97465['slice'](0x0,_0x5be67b)+_0xe97465['slice'](_0x2fb7f0+0x1),_0x1112ff=_0x5be67b):_0x1112ff=_0x5be67b+_0x5e3e11['length'];}return _0xe97465['replace'](/\s+/g,'\x20')['trim']();}(_0x467e86),_0x5f319a=_0x4d8cb8?_0x2c56ec(_0x4d8cb8)[0x0]['specificityArray']:[0x0,0x0,0x0,0x0];return{'stylesMap':_0x52d2bd,'flatSelector':_0x467e86,'specificity':_0x5f319a};});})['sort']((_0x55fa93,_0x2aaf4c)=>_0x518a16(_0x55fa93['specificity'],_0x2aaf4c['specificity']));}(_0x5922ec['stylesProcessor'],_0xfb8859);return{'parsedCssRules':_0x19d3ba,'rootCssVariables':function(_0x39c90e){const _0x519da0=new Map();for(const {stylesMap:_0x14cce4,flatSelector:_0x18a01b}of _0x39c90e){if(':root'!==_0x18a01b)continue;const _0x4f555f=g(_0x519da0['get']['bind'](_0x519da0),_0x14cce4);for(const [_0x3281a4,_0x15f04e]of _0x4f555f)_0x519da0['set'](_0x3281a4,_0x15f04e);}return _0x519da0;}(_0x19d3ba)};}function C(_0x1960b6,_0x44b148=''){return _0x1960b6['flatMap'](_0x51b139=>{const {selectorText:_0x217255,cssText:_0x27b0da,cssRules:_0x573160}=_0x51b139;if(!_0x217255)return[];const _0x79091e=_0x217255['replace'](/&/g,_0x44b148);let _0x3fc378=_0x27b0da['replace'](_0x217255,'')['trim']()['replace'](/^{|}$/g,'');if(!_0x573160||!_0x573160['length'])return[{'selectorText':_0x79091e,'contentCssText':_0x3fc378}];for(const _0xeda330 of _0x573160)_0x3fc378=_0x3fc378['replace'](_0xeda330['cssText'],'')['trim']();return[{'selectorText':_0x79091e,'contentCssText':_0x3fc378},...C(Array['from'](_0x573160),_0x79091e)];});}function l(_0x210267,_0x492ee2){const _0x241288=new _0x58842b(_0x210267);for(const _0x24ca04 of _0x492ee2){let _0x38ad4e=null;if(_0x38ad4e='string'==typeof _0x24ca04?new _0x58842b(_0x210267)['setTo'](_0x24ca04):_0x24ca04,_0x38ad4e){for(const [_0x46f4c7,_0x5b4482]of _0x38ad4e['getStylesEntries']())_0x241288['set'](_0x46f4c7,_0x5b4482);}}return _0x241288;}class w extends _0x290160{['_stylesProcessor'];constructor(_0x3d0f20){super(_0x3d0f20),this['set']('isBusy',!0x1),this['_stylesProcessor']=this['editor']['data']['stylesProcessor'],_0x4727fb(this['_stylesProcessor']),_0x355d59(this['_stylesProcessor']),this['affectsData']=!0x1;}['refresh'](){this['isEnabled']=!this['isBusy'],this['value']=this['isBusy']?'pending':void 0x0;}async['execute'](_0x42c72d){const _0x8133d5=this['editor']['config']['get']('exportInlineStyles'),{contentLanguageDirection:_0x2f8554}=this['editor']['locale'],{rootName:_0x37e715='main',dataControllerDowncastOptions:_0x216351={},transformations:_0x93b7b8=_0x8133d5['transformations']||[]}=_0x42c72d||{};this['isBusy']=!0x0,this['refresh']();const _0x12eafe=this['_getRootDataHTMLFragment'](_0x37e715,_0x216351),_0x241c68=_0x479e23(_0x12eafe['ownerDocument'],'div',{'dir':_0x2f8554,'class':'ck-content'},[_0x12eafe]);return this['_collectAndApplyStyles'](_0x93b7b8,_0x241c68)['then'](()=>{const _0x2ffc35=function(_0x406d7f){const _0x1c9bcf=_0x406d7f['ownerDocument']['createDocumentFragment']();for(;_0x406d7f['firstChild'];)_0x1c9bcf['appendChild'](_0x406d7f['firstChild']);return _0x1c9bcf;}(_0x241c68),_0xdd3a09=_0x241c68['getAttribute']('style');if(_0xdd3a09)for(const _0x4d390f of _0x2ffc35['children']){const _0x41edfd=_0x4d390f['getAttribute']('style'),_0x35a6eb=l(this['_stylesProcessor'],[_0xdd3a09,_0x41edfd]);_0x4d390f['setAttribute']('style',p(_0x35a6eb));}return this['editor']['data']['htmlProcessor']['htmlWriter']['getHtml'](_0x2ffc35);})['finally'](()=>{this['isBusy']=!0x1,this['refresh']();});}['_getRootDataHTMLFragment'](_0x978363,_0x4c864e){const {data:_0x21638a,model:_0x51f108}=this['editor'],_0x28cf69=_0x51f108['document']['getRoot'](_0x978363),_0xcfb828=_0x21638a['toView'](_0x28cf69,_0x4c864e);return _0x21638a['htmlProcessor']['domConverter']['viewToDom'](_0xcfb828);}async['_collectAndApplyStyles'](_0x134ac1,_0x34ffa2){const {stylesheets:_0x2800f2,inlineCss:_0x10537c,stripCssClasses:_0x528f6b}=this['editor']['config']['get']('exportInlineStyles'),{parsedCssRules:_0x44e9cf,rootCssVariables:_0x5604f6}=await r({'stylesheets':_0x2800f2||['EDITOR_STYLES'],'stylesProcessor':this['_stylesProcessor'],'inlineCss':_0x10537c});this['_processElementTree']({'transformations':_0x134ac1,'parsedCssRules':_0x44e9cf,'element':_0x34ffa2,'stripCssClasses':_0x528f6b,'parentCSSVariablesLookup':_0x5604f6['get']['bind'](_0x5604f6)});}['_processElementTree']({element:_0x5dc0d9,parsedCssRules:_0x3cdaa1,parentCSSVariablesLookup:_0x14be31,stripCssClasses:_0x1897f3,transformations:_0x12b91b}){const {stylesMap:_0x185794,localCSSVariables:_0x1a27d8}=function(_0x17ce62){const _0x3ee6d6=_0x17ce62['element']['getAttribute']('style')||'',_0x567635=_0x17ce62['parsedCssRules']['filter'](_0x140543=>_0x17ce62['element']['matches'](_0x140543['flatSelector']))['map'](_0x48c8e7=>_0x48c8e7['stylesMap']),_0x4a62ed=l(_0x17ce62['stylesProcessor'],[..._0x567635,_0x3ee6d6]);return{'localCSSVariables':g(_0x17ce62['fallbackCSSVariablesLookup'],_0x4a62ed),'stylesMap':_0x4a62ed};}({'stylesProcessor':this['_stylesProcessor'],'fallbackCSSVariablesLookup':_0x14be31,'parsedCssRules':_0x3cdaa1,'element':_0x5dc0d9});for(const _0x56cf92 of _0x12b91b)_0x56cf92(_0x5dc0d9,_0x185794);_0x185794['size']?_0x5dc0d9['setAttribute']('style',p(_0x185794)):_0x5dc0d9['removeAttribute']('style');const _0xff1feb=_0x41ce03=>_0x1a27d8['has'](_0x41ce03)?_0x1a27d8['get'](_0x41ce03):_0x14be31(_0x41ce03);for(const _0x3267d4 of _0x5dc0d9['children'])_0x3267d4 instanceof HTMLElement&&this['_processElementTree']({'element':_0x3267d4,'parentCSSVariablesLookup':_0xff1feb,'parsedCssRules':_0x3cdaa1,'stripCssClasses':_0x1897f3,'transformations':_0x12b91b});_0x1897f3&&_0x5dc0d9['removeAttribute']('class');}}function p(_0x2a5201){return _0x2a5201['getStylesEntries']()['map'](_0x4db4da=>_0x4db4da['join'](':'))['join'](';')+';';}class i extends _0x3e9167{static get['pluginName'](){return'ExportInlineStylesEditing';}static get['isOfficialPlugin'](){return!0x0;}static get['isPremiumPlugin'](){return!0x0;}['init'](){this['editor']['config']['define']('exportInlineStyles',{}),this['editor']['commands']['add']('exportInlineStyles',new w(this['editor']));}['afterInit'](){!async function(_0x2b2d9c){const _0x5eb7be=_0x36d210([0x44,0x55,0x41,0x36,0x31,0x30,0x65,0x6d,0x4c,0x34,0x51,0x32,0x6b,0x6a,0x56,0x49,0x76,0x47,0x4d,0x48,0x67,0x57,0x54,0x33,0x75,0x79,0x53,0x6e,0x7a,0x50,0x45,0x77,0x37,0x39,0x6f,0x5a,0x4a,0x69,0x43,0x72,0x62,0x73,0x74,0x63,0x58,0x4b,0x71,0x38,0x35,0x4e,0x68,0x64,0x66,0x61,0x46,0x52,0x78,0x42,0x6c,0x70,0x4f,0x59]),_0x5a8583=0x6f40c3fb,_0x258ba3=0x6f47bfbb^_0x5a8583,_0x4fd9a7=window[_0x36d210([0x44,0x61,0x74,0x65])][_0x36d210([0x6e,0x6f,0x77])](),_0x1a3e64=_0x2b2d9c[_0x36d210([0x65,0x64,0x69,0x74,0x6f,0x72])],_0x248b4b=new window[(_0x36d210([0x50,0x72,0x6f,0x6d,0x69,0x73,0x65]))](_0x3ea675=>{_0x1a3e64[_0x36d210([0x6f,0x6e,0x63,0x65])](_0x36d210([0x72,0x65,0x61,0x64,0x79]),_0x3ea675);}),_0x5d0f6c={[_0x36d210([0x6b,0x74,0x79])]:_0x36d210([0x45,0x43]),[_0x36d210([0x75,0x73,0x65])]:_0x36d210([0x73,0x69,0x67]),[_0x36d210([0x63,0x72,0x76])]:_0x36d210([0x50,0x2d,0x32,0x35,0x36]),[_0x36d210([0x78])]:_0x36d210([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]),[_0x36d210([0x79])]:_0x36d210([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]),[_0x36d210([0x61,0x6c,0x67])]:_0x36d210([0x45,0x53,0x32,0x35,0x36])},_0x145361=_0x1a3e64[_0x36d210([0x63,0x6f,0x6e,0x66,0x69,0x67])][_0x36d210([0x67,0x65,0x74])](_0x36d210([0x6c,0x69,0x63,0x65,0x6e,0x73,0x65,0x4b,0x65,0x79]));async function _0x16d286(){let _0x212544,_0x546594=null,_0x55edf7=null;try{if(_0x145361==_0x36d210([0x47,0x50,0x4c]))return _0x36d210([0x4e,0x6f,0x74,0x41,0x6c,0x6c,0x6f,0x77,0x65,0x64]);if(_0x212544=_0x305fa3(),!_0x212544)return _0x36d210([0x49,0x6e,0x76,0x61,0x6c,0x69,0x64]);return _0x212544[_0x36d210([0x75,0x73,0x61,0x67,0x65,0x45,0x6e,0x64,0x70,0x6f,0x69,0x6e,0x74])]&&(_0x55edf7=_0x4fba0d(_0x212544[_0x36d210([0x75,0x73,0x61,0x67,0x65,0x45,0x6e,0x64,0x70,0x6f,0x69,0x6e,0x74])],_0x212544[_0x36d210([0x6a,0x74,0x69])])),await _0x22eea2()?_0x35db51()?_0x87a865()?_0x36d210([0x45,0x78,0x70,0x69,0x72,0x65,0x64]):_0x8e68b3()?(_0x212544[_0x36d210([0x6c,0x69,0x63,0x65,0x6e,0x73,0x65,0x54,0x79,0x70,0x65])]==_0x36d210([0x65,0x76,0x61,0x6c,0x75,0x61,0x74,0x69,0x6f,0x6e])&&(_0x546594=_0x5b5ae3(_0x36d210([0x45,0x76,0x61,0x6c,0x75,0x61,0x74,0x69,0x6f,0x6e,0x4c,0x69,0x6d,0x69,0x74]))),_0x212544[_0x36d210([0x6c,0x69,0x63,0x65,0x6e,0x73,0x65,0x54,0x79,0x70,0x65])]==_0x36d210([0x74,0x72,0x69,0x61,0x6c])&&(_0x546594=_0x5b5ae3(_0x36d210([0x54,0x72,0x69,0x61,0x6c,0x4c,0x69,0x6d,0x69,0x74]))),await _0x44bb17()):_0x36d210([0x44,0x6f,0x6d,0x61,0x69,0x6e,0x4c,0x69,0x6d,0x69,0x74]):_0x36d210([0x4e,0x6f,0x74,0x41,0x6c,0x6c,0x6f,0x77,0x65,0x64]):_0x36d210([0x49,0x6e,0x76,0x61,0x6c,0x69,0x64]);}catch{return _0x36d210([0x49,0x6e,0x76,0x61,0x6c,0x69,0x64]);}function _0x87a865(){const _0x21a7b9=[_0x36d210([0x65,0x76,0x61,0x6c,0x75,0x61,0x74,0x69,0x6f,0x6e]),_0x36d210([0x74,0x72,0x69,0x61,0x6c])][_0x36d210([0x69,0x6e,0x63,0x6c,0x75,0x64,0x65,0x73])](_0x212544[_0x36d210([0x6c,0x69,0x63,0x65,0x6e,0x73,0x65,0x54,0x79,0x70,0x65])])?_0x4fd9a7/0x3e8:0xe10*_0x258ba3;return _0x212544[_0x36d210([0x65,0x78,0x70])]<_0x21a7b9;}function _0x35db51(){const _0x23bc90=_0x212544[_0x36d210([0x66,0x65,0x61,0x74,0x75,0x72,0x65,0x73])];return!!_0x23bc90&&(!!_0x23bc90[_0x36d210([0x69,0x6e,0x63,0x6c,0x75,0x64,0x65,0x73])](_0x36d210([0x2a]))||!!_0x23bc90[_0x36d210([0x69,0x6e,0x63,0x6c,0x75,0x64,0x65,0x73])](_0x36d210([0x45,0x49,0x53])));}function _0x8e68b3(){const _0xdd1dfd=_0x212544[_0x36d210([0x6c,0x69,0x63,0x65,0x6e,0x73,0x65,0x64,0x48,0x6f,0x73,0x74,0x73])];if(!_0xdd1dfd||0x0==_0xdd1dfd[_0x36d210([0x6c,0x65,0x6e,0x67,0x74,0x68])])return!0x0;const {hostname:_0x13f332}=new URL(window[_0x36d210([0x6c,0x6f,0x63,0x61,0x74,0x69,0x6f,0x6e])]['href']);if(_0xdd1dfd[_0x36d210([0x69,0x6e,0x63,0x6c,0x75,0x64,0x65,0x73])](_0x13f332))return!0x0;const _0x428fdf=_0x13f332[_0x36d210([0x73,0x70,0x6c,0x69,0x74])](_0x36d210([0x2e]));return _0xdd1dfd[_0x36d210([0x66,0x69,0x6c,0x74,0x65,0x72])](_0x239d77=>_0x239d77[_0x36d210([0x69,0x6e,0x63,0x6c,0x75,0x64,0x65,0x73])](_0x36d210([0x2a])))[_0x36d210([0x6d,0x61,0x70])](_0x4d4a29=>_0x4d4a29[_0x36d210([0x73,0x70,0x6c,0x69,0x74])](_0x36d210([0x2e])))[_0x36d210([0x66,0x69,0x6c,0x74,0x65,0x72])](_0x33abff=>_0x33abff[_0x36d210([0x6c,0x65,0x6e,0x67,0x74,0x68])]<=_0x428fdf[_0x36d210([0x6c,0x65,0x6e,0x67,0x74,0x68])])[_0x36d210([0x6d,0x61,0x70])](_0x306ecb=>Array(_0x428fdf[_0x36d210([0x6c,0x65,0x6e,0x67,0x74,0x68])]-_0x306ecb[_0x36d210([0x6c,0x65,0x6e,0x67,0x74,0x68])])[_0x36d210([0x66,0x69,0x6c,0x6c])](_0x306ecb[0x0]===_0x36d210([0x2a])?_0x36d210([0x2a]):'')[_0x36d210([0x63,0x6f,0x6e,0x63,0x61,0x74])](_0x306ecb))[_0x36d210([0x73,0x6f,0x6d,0x65])](_0x3bfe0e=>_0x428fdf[_0x36d210([0x65,0x76,0x65,0x72,0x79])]((_0x30e439,_0x5775be)=>_0x3bfe0e[_0x5775be]===_0x30e439||_0x3bfe0e[_0x5775be]===_0x36d210([0x2a])));}function _0x44bb17(){return _0x546594&&_0x55edf7?new window[(_0x36d210([0x50,0x72,0x6f,0x6d,0x69,0x73,0x65]))]((_0x4ead7e,_0x1b5c32)=>{_0x546594[_0x36d210([0x74,0x68,0x65,0x6e])](_0x4ead7e,_0x1b5c32),_0x55edf7[_0x36d210([0x74,0x68,0x65,0x6e])](_0x1ac11b=>{_0x1ac11b!=_0x36d210([0x56,0x61,0x6c,0x69,0x64])&&_0x4ead7e(_0x1ac11b);},_0x1b5c32);}):_0x546594||_0x55edf7||_0x36d210([0x56,0x61,0x6c,0x69,0x64]);}}function _0x4fba0d(_0x22c3e9,_0x253adb){return new window[(_0x36d210([0x50,0x72,0x6f,0x6d,0x69,0x73,0x65]))](_0x4bc6df=>{if(_0x26780f())return _0x4bc6df(_0x36d210([0x56,0x61,0x6c,0x69,0x64]));_0xe44c55(),_0x1a3e64[_0x36d210([0x64,0x65,0x63,0x6f,0x72,0x61,0x74,0x65])](_0x36d210([0x5f,0x73,0x65,0x6e,0x64,0x55,0x73,0x61,0x67,0x65,0x52,0x65,0x71,0x75,0x65,0x73,0x74]));let _0x3c0a6b=!0x1;const _0x189593=_0x4105f8();function _0x50f088(_0x43dff5){return!!_0x43dff5&&(typeof _0x43dff5===_0x36d210([0x6f,0x62,0x6a,0x65,0x63,0x74])||typeof _0x43dff5===_0x36d210([0x66,0x75,0x6e,0x63,0x74,0x69,0x6f,0x6e]))&&typeof _0x43dff5[_0x36d210([0x74,0x68,0x65,0x6e])]===_0x36d210([0x66,0x75,0x6e,0x63,0x74,0x69,0x6f,0x6e])&&typeof _0x43dff5[_0x36d210([0x63,0x61,0x74,0x63,0x68])]===_0x36d210([0x66,0x75,0x6e,0x63,0x74,0x69,0x6f,0x6e]);}function _0x4c2e96(_0x4619ec){_0xc09209(_0x4619ec)[_0x36d210([0x74,0x68,0x65,0x6e])](_0x4f876d=>{if(!_0x4f876d||_0x4f876d[_0x36d210([0x73,0x74,0x61,0x74,0x75,0x73])]!=_0x36d210([0x6f,0x6b]))return _0x36d210([0x55,0x73,0x61,0x67,0x65,0x4c,0x69,0x6d,0x69,0x74]);return _0x4a2d37(_0x1efa7c(_0x189593+_0x253adb))!=_0x4f876d[_0x36d210([0x76,0x65,0x72,0x69,0x66,0x69,0x63,0x61,0x74,0x69,0x6f,0x6e])]?_0x36d210([0x55,0x73,0x61,0x67,0x65,0x4c,0x69,0x6d,0x69,0x74]):_0x36d210([0x56,0x61,0x6c,0x69,0x64]);})[_0x36d210([0x74,0x68,0x65,0x6e])](_0x74be6e=>(_0x557a19(),_0x74be6e),()=>{const _0x476f34=_0xe2f722();return null==_0x476f34?(_0x557a19(),_0x36d210([0x56,0x61,0x6c,0x69,0x64])):_0x36d210(_0x4fd9a7-_0x476f34>(0x4b4c47fb^_0x5a8583)?[0x55,0x73,0x61,0x67,0x65,0x4c,0x69,0x6d,0x69,0x74]:[0x56,0x61,0x6c,0x69,0x64]);})[_0x36d210([0x74,0x68,0x65,0x6e])](_0x4bc6df)[_0x36d210([0x63,0x61,0x74,0x63,0x68])](()=>{_0x4bc6df(_0x36d210([0x55,0x73,0x61,0x67,0x65,0x4c,0x69,0x6d,0x69,0x74]));});const _0x599e10=0x6f762d7b^_0x5a8583;function _0x557a19(){const _0x178393=_0x36d210([0x6c,0x6c,0x63,0x74,0x2d])+_0x4a2d37(_0x1efa7c(_0x22c3e9)),_0x341d9d=_0x553d29(_0x4a2d37(window[_0x36d210([0x4d,0x61,0x74,0x68])][_0x36d210([0x63,0x65,0x69,0x6c])](_0x4fd9a7/_0x599e10)));window[_0x36d210([0x6c,0x6f,0x63,0x61,0x6c,0x53,0x74,0x6f,0x72,0x61,0x67,0x65])][_0x36d210([0x73,0x65,0x74,0x49,0x74,0x65,0x6d])](_0x178393,_0x341d9d);}function _0xe2f722(){const _0xa20c5a=_0x36d210([0x6c,0x6c,0x63,0x74,0x2d])+_0x4a2d37(_0x1efa7c(_0x22c3e9)),_0x144059=window[_0x36d210([0x6c,0x6f,0x63,0x61,0x6c,0x53,0x74,0x6f,0x72,0x61,0x67,0x65])][_0x36d210([0x67,0x65,0x74,0x49,0x74,0x65,0x6d])](_0xa20c5a);return _0x144059?window[_0x36d210([0x70,0x61,0x72,0x73,0x65,0x49,0x6e,0x74])](_0x553d29(_0x144059),0x10)*_0x599e10:null;}function _0xc09209(_0x469ba6){return new window[(_0x36d210([0x50,0x72,0x6f,0x6d,0x69,0x73,0x65]))]((_0x45e007,_0x5d8e91)=>{_0x469ba6[_0x36d210([0x74,0x68,0x65,0x6e])](_0x45e007,_0x5d8e91),window[_0x36d210([0x73,0x65,0x74,0x54,0x69,0x6d,0x65,0x6f,0x75,0x74])](_0x5d8e91,0x6f41173b^_0x5a8583);});}}_0x1a3e64[_0x36d210([0x6f,0x6e])](_0x36d210([0x5f,0x73,0x65,0x6e,0x64,0x55,0x73,0x61,0x67,0x65,0x52,0x65,0x71,0x75,0x65,0x73,0x74]),(_0x3f943e,_0x4a38c1)=>{if(_0x4a38c1[0x0]!=_0x22c3e9)return _0x4bc6df(_0x36d210([0x55,0x73,0x61,0x67,0x65,0x4c,0x69,0x6d,0x69,0x74]));_0x4a38c1[0x1]={..._0x4a38c1[0x1],[_0x36d210([0x72,0x65,0x71,0x75,0x65,0x73,0x74,0x49,0x64])]:_0x189593};},{[_0x36d210([0x70,0x72,0x69,0x6f,0x72,0x69,0x74,0x79])]:_0x36d210([0x68,0x69,0x67,0x68])}),_0x1a3e64[_0x36d210([0x6f,0x6e])](_0x36d210([0x5f,0x73,0x65,0x6e,0x64,0x55,0x73,0x61,0x67,0x65,0x52,0x65,0x71,0x75,0x65,0x73,0x74]),_0x4ff2ba=>{_0x50f088(_0x4ff2ba[_0x36d210([0x72,0x65,0x74,0x75,0x72,0x6e])])&&(_0x3c0a6b=!0x0,_0x4c2e96(_0x4ff2ba[_0x36d210([0x72,0x65,0x74,0x75,0x72,0x6e])]));},{[_0x36d210([0x70,0x72,0x69,0x6f,0x72,0x69,0x74,0x79])]:_0x36d210([0x6c,0x6f,0x77])}),_0x248b4b[_0x36d210([0x74,0x68,0x65,0x6e])](()=>{_0x3c0a6b||_0x4bc6df(_0x36d210([0x55,0x73,0x61,0x67,0x65,0x4c,0x69,0x6d,0x69,0x74]));});});function _0x26780f(){return _0x1a3e64[_0x36d210([0x65,0x64,0x69,0x74,0x69,0x6e,0x67])][_0x36d210([0x76,0x69,0x65,0x77])][_0x36d210([0x5f,0x6f,0x76,0x65,0x72,0x6c,0x61,0x79,0x4d,0x6f,0x64,0x65,0x48,0x69,0x6e,0x74])]==_0x36d210([0x61,0x75,0x74,0x6f]);}function _0xe44c55(){_0x1a3e64[_0x36d210([0x65,0x64,0x69,0x74,0x69,0x6e,0x67])][_0x36d210([0x76,0x69,0x65,0x77])][_0x36d210([0x5f,0x6f,0x76,0x65,0x72,0x6c,0x61,0x79,0x4d,0x6f,0x64,0x65,0x48,0x69,0x6e,0x74])]=_0x36d210([0x61,0x75,0x74,0x6f]);}}function _0x5b5ae3(_0x95c9c6){const _0x50962c=[new window[(_0x36d210([0x50,0x72,0x6f,0x6d,0x69,0x73,0x65]))](_0x1b1d1f=>setTimeout(_0x1b1d1f,0x6f49fd37^_0x5a8583)),_0x248b4b[_0x36d210([0x74,0x68,0x65,0x6e])](()=>new window[(_0x36d210([0x50,0x72,0x6f,0x6d,0x69,0x73,0x65]))](_0x3e7633=>{let _0x519ebb=0x0;_0x1a3e64[_0x36d210([0x6d,0x6f,0x64,0x65,0x6c])][_0x36d210([0x6f,0x6e])](_0x36d210([0x61,0x70,0x70,0x6c,0x79,0x4f,0x70,0x65,0x72,0x61,0x74,0x69,0x6f,0x6e]),(_0x426616,_0x4171fe)=>{_0x4171fe[0x0][_0x36d210([0x69,0x73,0x44,0x6f,0x63,0x75,0x6d,0x65,0x6e,0x74,0x4f,0x70,0x65,0x72,0x61,0x74,0x69,0x6f,0x6e])]&&_0x519ebb++,_0x519ebb==(0x6f40c203^_0x5a8583)&&(_0x3e7633(),_0x426616[_0x36d210([0x6f,0x66,0x66])]());});}))];return window[_0x36d210([0x50,0x72,0x6f,0x6d,0x69,0x73,0x65])][_0x36d210([0x72,0x61,0x63,0x65])](_0x50962c)[_0x36d210([0x74,0x68,0x65,0x6e])](()=>_0x95c9c6);}async function _0xccd790(){await _0x248b4b;const _0x3fe6b1=_0x1a3e64['commands'][_0x36d210([0x67,0x65,0x74])](_0x36d210([0x65,0x78,0x70,0x6f,0x72,0x74,0x49,0x6e,0x6c,0x69,0x6e,0x65,0x53,0x74,0x79,0x6c,0x65,0x73]));_0x3fe6b1&&_0x3fe6b1[_0x36d210([0x6f,0x6e])](_0x36d210([0x65,0x78,0x65,0x63,0x75,0x74,0x65]),_0x597297=>{_0x597297['stop']();},{'priority':_0x36d210([0x68,0x69,0x67,0x68,0x65,0x73,0x74])}),_0x1a3e64[_0x36d210([0x6d,0x6f,0x64,0x65,0x6c])][_0x36d210([0x63,0x68,0x61,0x6e,0x67,0x65])]=_0x35464f,_0x1a3e64[_0x36d210([0x6d,0x6f,0x64,0x65,0x6c])][_0x36d210([0x65,0x6e,0x71,0x75,0x65,0x75,0x65,0x43,0x68,0x61,0x6e,0x67,0x65])]=_0x35464f,_0x1a3e64[_0x36d210([0x65,0x6e,0x61,0x62,0x6c,0x65,0x52,0x65,0x61,0x64,0x4f,0x6e,0x6c,0x79,0x4d,0x6f,0x64,0x65])](_0x36d210([0x6d,0x6f,0x64,0x65,0x6c]));}function _0x5e2d66(_0x3919af){const _0x55d63e=_0x14d752();_0x1a3e64[_0x55d63e]=_0x36d210([0x65,0x78,0x70,0x6f,0x72,0x74,0x49,0x6e,0x6c,0x69,0x6e,0x65,0x53,0x74,0x79,0x6c,0x65,0x73,0x4c,0x69,0x63,0x65,0x6e,0x73,0x65,0x4b,0x65,0x79])+_0x3919af,_0x3919af!=_0x36d210([0x56,0x61,0x6c,0x69,0x64])&&_0xccd790();}function _0x14d752(){const _0x5ef979=window[_0x36d210([0x53,0x74,0x72,0x69,0x6e,0x67])](window[_0x36d210([0x70,0x65,0x72,0x66,0x6f,0x72,0x6d,0x61,0x6e,0x63,0x65])][_0x36d210([0x6e,0x6f,0x77])]())[_0x36d210([0x72,0x65,0x70,0x6c,0x61,0x63,0x65])](_0x36d210([0x2e]),'');let _0x1ce8fa=_0x36d210([0x44]);for(let _0x5daa88=0x0;_0x5daa88<_0x5ef979[_0x36d210([0x6c,0x65,0x6e,0x67,0x74,0x68])];_0x5daa88+=0x2){let _0x365bf8=window[_0x36d210([0x70,0x61,0x72,0x73,0x65,0x49,0x6e,0x74])](_0x5ef979[_0x36d210([0x73,0x75,0x62,0x73,0x74,0x72,0x69,0x6e,0x67])](_0x5daa88,_0x5daa88+0x2));_0x365bf8>=_0x5eb7be[_0x36d210([0x6c,0x65,0x6e,0x67,0x74,0x68])]&&(_0x365bf8-=_0x5eb7be[_0x36d210([0x6c,0x65,0x6e,0x67,0x74,0x68])]),_0x1ce8fa+=_0x5eb7be[_0x365bf8];}return _0x1ce8fa;}function _0x305fa3(){const _0x4eb6df=_0x145361[_0x36d210([0x73,0x70,0x6c,0x69,0x74])](_0x36d210([0x2e]));if(0x3!=_0x4eb6df[_0x36d210([0x6c,0x65,0x6e,0x67,0x74,0x68])])return null;return _0x1d5b7c(_0x4eb6df[0x1]);function _0x1d5b7c(_0x38cf05){const _0x2bf8fa=_0x5aefe5(_0x38cf05);return _0x2bf8fa&&_0x299a44()?_0x2bf8fa:null;function _0x299a44(){const _0x164029=_0x2bf8fa[_0x36d210([0x6a,0x74,0x69])],_0x1e4266=window[_0x36d210([0x70,0x61,0x72,0x73,0x65,0x49,0x6e,0x74])](_0x164029[_0x36d210([0x73,0x75,0x62,0x73,0x74,0x72,0x69,0x6e,0x67])](_0x164029[_0x36d210([0x6c,0x65,0x6e,0x67,0x74,0x68])]-0x8),0x10),_0x4ac6df={..._0x2bf8fa,[_0x36d210([0x6a,0x74,0x69])]:_0x164029[_0x36d210([0x73,0x75,0x62,0x73,0x74,0x72,0x69,0x6e,0x67])](0x0,_0x164029[_0x36d210([0x6c,0x65,0x6e,0x67,0x74,0x68])]-0x8)};return delete _0x4ac6df[_0x36d210([0x76,0x63])],_0x1efa7c(_0x4ac6df)==_0x1e4266;}}}async function _0x22eea2(){let _0x4d74dc=!0x0;try{const _0x5cbd7f=_0x145361[_0x36d210([0x73,0x70,0x6c,0x69,0x74])](_0x36d210([0x2e])),[_0x48f5cf,_0x4c20a7,_0x4ee5f5]=_0x5cbd7f;return _0x361b7a(_0x48f5cf),await _0x4e3989(_0x48f5cf,_0x4c20a7,_0x4ee5f5),_0x4d74dc;}catch{return!0x1;}function _0x361b7a(_0x422a5a){const _0x50f68f=_0x5aefe5(_0x422a5a);_0x50f68f&&_0x50f68f[_0x36d210([0x61,0x6c,0x67])]==_0x36d210([0x45,0x53,0x32,0x35,0x36])||(_0x4d74dc=!0x1);}async function _0x4e3989(_0x10c283,_0x4f7bc6,_0xff5bff){const _0x22baf8=window[_0x36d210([0x55,0x69,0x6e,0x74,0x38,0x41,0x72,0x72,0x61,0x79])][_0x36d210([0x66,0x72,0x6f,0x6d])](_0x299cb6(_0xff5bff),_0x1256d9=>_0x1256d9[_0x36d210([0x63,0x68,0x61,0x72,0x43,0x6f,0x64,0x65,0x41,0x74])](0x0)),_0x335771=new window[(_0x36d210([0x54,0x65,0x78,0x74,0x45,0x6e,0x63,0x6f,0x64,0x65,0x72]))]()[_0x36d210([0x65,0x6e,0x63,0x6f,0x64,0x65])](_0x10c283+_0x36d210([0x2e])+_0x4f7bc6),_0x23fb6c=window[_0x36d210([0x63,0x72,0x79,0x70,0x74,0x6f])][_0x36d210([0x73,0x75,0x62,0x74,0x6c,0x65])];if(!_0x23fb6c)return;const _0x497f74=await _0x23fb6c[_0x36d210([0x69,0x6d,0x70,0x6f,0x72,0x74,0x4b,0x65,0x79])](_0x36d210([0x6a,0x77,0x6b]),_0x5d0f6c,{[_0x36d210([0x6e,0x61,0x6d,0x65])]:_0x36d210([0x45,0x43,0x44,0x53,0x41]),[_0x36d210([0x6e,0x61,0x6d,0x65,0x64,0x43,0x75,0x72,0x76,0x65])]:_0x36d210([0x50,0x2d,0x32,0x35,0x36])},!0x1,[_0x36d210([0x76,0x65,0x72,0x69,0x66,0x79])]);await _0x23fb6c[_0x36d210([0x76,0x65,0x72,0x69,0x66,0x79])]({[_0x36d210([0x6e,0x61,0x6d,0x65])]:_0x36d210([0x45,0x43,0x44,0x53,0x41]),[_0x36d210([0x68,0x61,0x73,0x68])]:{[_0x36d210([0x6e,0x61,0x6d,0x65])]:_0x36d210([0x53,0x48,0x41,0x2d,0x32,0x35,0x36])}},_0x497f74,_0x22baf8,_0x335771)||(_0x4d74dc=!0x1);}}function _0x5aefe5(_0x2caad7){return _0x2caad7[_0x36d210([0x73,0x74,0x61,0x72,0x74,0x73,0x57,0x69,0x74,0x68])](_0x36d210([0x65,0x79]))?JSON[_0x36d210([0x70,0x61,0x72,0x73,0x65])](_0x299cb6(_0x2caad7)):null;}function _0x299cb6(_0x2e64d5){return window[_0x36d210([0x61,0x74,0x6f,0x62])](_0x2e64d5[_0x36d210([0x72,0x65,0x70,0x6c,0x61,0x63,0x65])](/-/g,_0x36d210([0x2b]))[_0x36d210([0x72,0x65,0x70,0x6c,0x61,0x63,0x65])](/_/g,_0x36d210([0x2f])));}function _0x1efa7c(_0xfde323){let _0x46d96e=0x1505;function _0x14b391(_0x5afd7f){for(let _0x5c5e67=0x0;_0x5c5e67<_0x5afd7f[_0x36d210([0x6c,0x65,0x6e,0x67,0x74,0x68])];_0x5c5e67++){const _0x3b4665=_0x5afd7f[_0x36d210([0x63,0x68,0x61,0x72,0x43,0x6f,0x64,0x65,0x41,0x74])](_0x5c5e67);_0x46d96e=(_0x46d96e<<0x5)+_0x46d96e+_0x3b4665,_0x46d96e&=_0x46d96e;}}function _0x499d71(_0x2c00e7){Array[_0x36d210([0x69,0x73,0x41,0x72,0x72,0x61,0x79])](_0x2c00e7)?_0x2c00e7[_0x36d210([0x66,0x6f,0x72,0x45,0x61,0x63,0x68])](_0x499d71):_0x2c00e7&&typeof _0x2c00e7==_0x36d210([0x6f,0x62,0x6a,0x65,0x63,0x74])?Object[_0x36d210([0x65,0x6e,0x74,0x72,0x69,0x65,0x73])](_0x2c00e7)[_0x36d210([0x73,0x6f,0x72,0x74])]()[_0x36d210([0x66,0x6f,0x72,0x45,0x61,0x63,0x68])](([_0x317669,_0x134d13])=>{_0x14b391(_0x317669),_0x499d71(_0x134d13);}):_0x14b391(window[_0x36d210([0x53,0x74,0x72,0x69,0x6e,0x67])](_0x2c00e7));}return _0x499d71(_0xfde323),_0x46d96e>>>0x0;}function _0x4a2d37(_0x469084){return _0x469084[_0x36d210([0x74,0x6f,0x53,0x74,0x72,0x69,0x6e,0x67])](0x10)[_0x36d210([0x70,0x61,0x64,0x53,0x74,0x61,0x72,0x74])](0x8,_0x36d210([0x30]));}function _0x553d29(_0x44c93a){return _0x44c93a[_0x36d210([0x73,0x70,0x6c,0x69,0x74])]('')[_0x36d210([0x72,0x65,0x76,0x65,0x72,0x73,0x65])]()[_0x36d210([0x6a,0x6f,0x69,0x6e])]('');}function _0x35464f(){}function _0x36d210(_0x502524){return _0x502524['map'](_0xfce1d1=>String['fromCharCode'](_0xfce1d1))['join']('');}_0x5e2d66(await _0x16d286());}(this);}}class I extends _0x3e9167{['licenseKey'];['_licenseKeyCheckInterval'];static get['pluginName'](){return'ExportInlineStyles';}static get['isOfficialPlugin'](){return!0x0;}static get['isPremiumPlugin'](){return!0x0;}static get['requires'](){return[i];}['init'](){this['licenseKey']=this['editor']['config']['get']('licenseKey');const _0x558e52=this['editor'];this['_licenseKeyCheckInterval']=setInterval(()=>{let _0x36675c;for(const _0x45e469 in _0x558e52){const _0x17a32e=_0x45e469,_0x4745fe=_0x558e52[_0x17a32e];if('exportInlineStylesLicenseKeyValid'==_0x4745fe||'exportInlineStylesLicenseKeyInvalid'==_0x4745fe||'exportInlineStylesLicenseKeyExpired'==_0x4745fe||'exportInlineStylesLicenseKeyDomainLimit'==_0x4745fe||'exportInlineStylesLicenseKeyNotAllowed'==_0x4745fe||'exportInlineStylesLicenseKeyEvaluationLimit'==_0x4745fe||'exportInlineStylesLicenseKeyTrialLimit'==_0x4745fe||'exportInlineStylesLicenseKeyUsageLimit'==_0x4745fe){delete _0x558e52[_0x17a32e],_0x36675c=_0x4745fe,clearInterval(this['_licenseKeyCheckInterval']),this['_licenseKeyCheckInterval']=void 0x0;break;}}'exportInlineStylesLicenseKeyInvalid'==_0x36675c&&_0x558e52['_showLicenseError']('invalid'),'exportInlineStylesLicenseKeyExpired'==_0x36675c&&_0x558e52['_showLicenseError']('expired'),'exportInlineStylesLicenseKeyDomainLimit'==_0x36675c&&_0x558e52['_showLicenseError']('domainLimit'),'exportInlineStylesLicenseKeyNotAllowed'==_0x36675c&&_0x558e52['_showLicenseError']('featureNotAllowed','ExportInlineStyles'),'exportInlineStylesLicenseKeyEvaluationLimit'==_0x36675c&&_0x558e52['_showLicenseError']('evaluationLimit'),'exportInlineStylesLicenseKeyTrialLimit'==_0x36675c&&_0x558e52['_showLicenseError']('trialLimit'),'exportInlineStylesLicenseKeyUsageLimit'==_0x36675c&&_0x558e52['_showLicenseError']('usageLimit');},0x3e8);}['destroy'](){super['destroy'](),this['_licenseKeyCheckInterval']&&clearInterval(this['_licenseKeyCheckInterval']);}}export{I as ExportInlineStyles,w as ExportInlineStylesCommand,i as ExportInlineStylesEditing,L as dropImportantStyleSuffix};
|
|
23
|
+
import{Command as _0x3e150b,Plugin as _0x13c50f}from'@ckeditor/ckeditor5-core/dist/index.js';import{collectStylesheets as _0x5b8a88,createElement as _0x11eba8,uid as _0x221e08}from'@ckeditor/ckeditor5-utils/dist/index.js';import{calculate as _0x4c01ae,compare as _0x2ae57f}from'specificity';import{StylesMap as _0x53b5ae,addMarginStylesRules as _0x10bec7,addPaddingStylesRules as _0xfc9c6e}from'@ckeditor/ckeditor5-engine/dist/index.js';function f(_0x58f99d){const _0x4b8224=[];let _0xcab58f='',_0x3805d9=0x0;for(;_0x3805d9<_0x58f99d['length'];){const _0x51a56b=_0x58f99d[_0x3805d9];if('('===_0x51a56b){const _0x14932b=y(_0x58f99d,_0x3805d9+0x1);if(-0x1===_0x14932b)return[];_0xcab58f+=_0x58f99d['slice'](_0x3805d9,_0x14932b+0x1),_0x3805d9=_0x14932b+0x1;}else','!==_0x51a56b||_0xcab58f['endsWith']('\x5c')?(_0xcab58f+=_0x51a56b,_0x3805d9++):(_0x4b8224['push'](_0xcab58f['trim']()),_0xcab58f='',_0x3805d9++);}return _0xcab58f['trim']()&&_0x4b8224['push'](_0xcab58f['trim']()),_0x4b8224['filter'](Boolean);}function y(_0x2a3a20,_0x30e807){let _0x1de0f2=0x1;for(let _0x6a31e0=_0x30e807;_0x6a31e0<_0x2a3a20['length'];_0x6a31e0++){const _0x1e3fb7=_0x2a3a20[_0x6a31e0];if('('===_0x1e3fb7)_0x1de0f2++;else{if(')'===_0x1e3fb7&&(_0x1de0f2--,0x0===_0x1de0f2))return _0x6a31e0;}}return-0x1;}function w(_0x259ac2){return _0x259ac2['replace'](/!\s*important/i,'')['trim']();}function p(_0xe9717a,_0x13075f){const _0x1cb98b=new Map(),_0x2e6651=_0x231cf3=>_0x1cb98b['has'](_0x231cf3)?_0x1cb98b['get'](_0x231cf3):_0xe9717a(_0x231cf3);for(const [_0x45c2ed,_0x4875a3]of _0x13075f['getStylesEntries']())if(_0x4875a3&&_0x45c2ed['startsWith']('--')){const _0x140aca=d(_0x2e6651,_0x4875a3);_0x1cb98b['set'](_0x45c2ed,_0x140aca),_0x13075f['remove'](_0x45c2ed);}for(const [_0x10c8af,_0x2125e5]of _0x13075f['getStylesEntries']())if(_0x2125e5){const _0x32aba1=d(_0x2e6651,_0x2125e5);_0x13075f['set'](_0x10c8af,_0x32aba1);}return _0x1cb98b;}function d(_0x4105c1,_0x44b3d8){return function(_0x4065bf,_0x28cc04){let _0x1c8d38='',_0x2cd62d=0x0;for(;_0x2cd62d<_0x4065bf['length'];){const _0x48d159=_0x4065bf['indexOf']('var(',_0x2cd62d);if(-0x1===_0x48d159){_0x1c8d38+=_0x4065bf['slice'](_0x2cd62d);break;}_0x1c8d38+=_0x4065bf['slice'](_0x2cd62d,_0x48d159);const _0x21a13d=_0x48d159+0x4,_0x214bb=y(_0x4065bf,_0x21a13d);_0x1c8d38+=_0x28cc04(_0x4065bf['substring'](_0x21a13d,_0x214bb)),_0x2cd62d=_0x214bb+0x1;}return _0x1c8d38;}(_0x44b3d8,_0x5196fd=>{const [_0xce5d4a,_0x1e8f4f]=f(_0x5196fd),_0x50e039=_0x4105c1(_0xce5d4a);return void 0x0!==_0x50e039?_0x50e039:_0x1e8f4f?d(_0x4105c1,_0x1e8f4f):'var('+_0xce5d4a+')';});}async function h(_0x1e59c9){const _0x4c6df0=[await _0x5b8a88(_0x1e59c9['stylesheets']),_0x1e59c9['inlineCss']]['filter'](_0x3bc5f8=>_0x3bc5f8&&_0x3bc5f8['length'])['join']('\x0a'),_0x439a31=await async function(_0x46b1fd,_0x17c953){const _0xf40f18=new CSSStyleSheet();return await _0xf40f18['replace'](_0x17c953),S(Array['from'](_0xf40f18['cssRules'])['filter'](_0x360021=>_0x360021 instanceof CSSStyleRule))['flatMap'](({selectorText:_0x2f764d,contentCssText:_0x5c52f6})=>{const _0x1150d3=f(_0x2f764d),_0x4be1df=new _0x53b5ae(_0x46b1fd)['setTo'](_0x5c52f6);return _0x1150d3['map'](_0x237032=>{const _0x32e863=function(_0x3c8fb6){const _0x46b707=':where(';let _0x5455fd=_0x3c8fb6,_0x25b96f=0x0;for(let _0x40b321=0x0;_0x40b321<0x64;_0x40b321++){const _0x5e59db=_0x5455fd['indexOf'](_0x46b707,_0x25b96f);if(-0x1===_0x5e59db)break;let _0x20accc=0x0;for(let _0x14d478=0x0;_0x14d478<_0x5e59db;_0x14d478++)'('===_0x5455fd[_0x14d478]?_0x20accc++:')'===_0x5455fd[_0x14d478]&&_0x20accc--;if(_0x20accc>0x0){_0x25b96f=_0x5e59db+_0x46b707['length'];continue;}let _0x375e97=-0x1;for(let _0x4a3f22=_0x5e59db+_0x46b707['length'],_0x1e3c0a=0x1;_0x4a3f22<_0x5455fd['length'];_0x4a3f22++)if('('===_0x5455fd[_0x4a3f22]?_0x1e3c0a++:')'===_0x5455fd[_0x4a3f22]&&_0x1e3c0a--,!_0x1e3c0a){_0x375e97=_0x4a3f22;break;}-0x1!==_0x375e97?(_0x5455fd=_0x5455fd['slice'](0x0,_0x5e59db)+_0x5455fd['slice'](_0x375e97+0x1),_0x25b96f=_0x5e59db):_0x25b96f=_0x5e59db+_0x46b707['length'];}return _0x5455fd['replace'](/\s+/g,'\x20')['trim']();}(_0x237032),_0x46e711=_0x32e863?_0x4c01ae(_0x32e863)[0x0]['specificityArray']:[0x0,0x0,0x0,0x0];return{'stylesMap':_0x4be1df,'flatSelector':_0x237032,'specificity':_0x46e711};});})['sort']((_0x55cdf1,_0x2364de)=>_0x2ae57f(_0x55cdf1['specificity'],_0x2364de['specificity']));}(_0x1e59c9['stylesProcessor'],_0x4c6df0);return{'parsedCssRules':_0x439a31,'rootCssVariables':function(_0x22c58a){const _0x46a655=new Map();for(const {stylesMap:_0x3e965f,flatSelector:_0x3c5481}of _0x22c58a){if(':root'!==_0x3c5481)continue;const _0x59cadd=p(_0x46a655['get']['bind'](_0x46a655),_0x3e965f);for(const [_0x214e70,_0x3972c8]of _0x59cadd)_0x46a655['set'](_0x214e70,_0x3972c8);}return _0x46a655;}(_0x439a31)};}function S(_0x223f6a,_0x1ad29d=''){return _0x223f6a['flatMap'](_0x2ba9cb=>{const {selectorText:_0x1ea925,cssText:_0x10ab06,cssRules:_0x467929}=_0x2ba9cb;if(!_0x1ea925)return[];const _0x47beb8=_0x1ea925['replace'](/&/g,_0x1ad29d);let _0x2c622c=_0x10ab06['replace'](_0x1ea925,'')['trim']()['replace'](/^{|}$/g,'');if(!_0x467929||!_0x467929['length'])return[{'selectorText':_0x47beb8,'contentCssText':_0x2c622c}];for(const _0x47a0db of _0x467929)_0x2c622c=_0x2c622c['replace'](_0x47a0db['cssText'],'')['trim']();return[{'selectorText':_0x47beb8,'contentCssText':_0x2c622c},...S(Array['from'](_0x467929),_0x47beb8)];});}function m(_0x5214d6,_0x4f4eb0){const _0x291208=new _0x53b5ae(_0x5214d6);for(const _0x354651 of _0x4f4eb0){let _0x4fd575=null;if(_0x4fd575='string'==typeof _0x354651?new _0x53b5ae(_0x5214d6)['setTo'](_0x354651):_0x354651,_0x4fd575){for(const [_0x213b14,_0xe2dd5e]of _0x4fd575['getStylesEntries']())_0x291208['set'](_0x213b14,_0xe2dd5e);}}return _0x291208;}class x extends _0x3e150b{['_stylesProcessor'];constructor(_0x140841){super(_0x140841),this['set']('isBusy',!0x1),this['_stylesProcessor']=this['editor']['data']['stylesProcessor'],_0x10bec7(this['_stylesProcessor']),_0xfc9c6e(this['_stylesProcessor']),this['affectsData']=!0x1;}['refresh'](){this['isEnabled']=!this['isBusy'],this['value']=this['isBusy']?'pending':void 0x0;}async['execute'](_0x6b3491){const _0xc2fbe1=this['editor']['config']['get']('exportInlineStyles'),{contentLanguageDirection:_0x2c8f9a}=this['editor']['locale'],{rootName:_0x46ee8f='main',dataControllerDowncastOptions:_0x5ac8bc={},transformations:_0x5b07c5=_0xc2fbe1['transformations']||[]}=_0x6b3491||{};this['isBusy']=!0x0,this['refresh']();const _0x295d41=this['_getRootDataHTMLFragment'](_0x46ee8f,_0x5ac8bc),_0x54b03d=_0x11eba8(_0x295d41['ownerDocument'],'div',{'dir':_0x2c8f9a,'class':'ck-content'},[_0x295d41]);return this['_collectAndApplyStyles'](_0x5b07c5,_0x54b03d)['then'](()=>{const _0x57e5c7=function(_0x18a09d){const _0x2f4154=_0x18a09d['ownerDocument']['createDocumentFragment']();for(;_0x18a09d['firstChild'];)_0x2f4154['appendChild'](_0x18a09d['firstChild']);return _0x2f4154;}(_0x54b03d),_0x14cd91=_0x54b03d['getAttribute']('style');if(_0x14cd91)for(const _0x44778a of _0x57e5c7['children']){const _0x543f12=_0x44778a['getAttribute']('style'),_0x153ecb=m(this['_stylesProcessor'],[_0x14cd91,_0x543f12]);_0x44778a['setAttribute']('style',L(_0x153ecb));}return this['editor']['data']['htmlProcessor']['htmlWriter']['getHtml'](_0x57e5c7);})['finally'](()=>{this['isBusy']=!0x1,this['refresh']();});}['_getRootDataHTMLFragment'](_0x51e070,_0x1ec390){const {data:_0x526bf1,model:_0x23d1d2}=this['editor'],_0x21ddf6=_0x23d1d2['document']['getRoot'](_0x51e070),_0x330090=_0x526bf1['toView'](_0x21ddf6,_0x1ec390);return _0x526bf1['htmlProcessor']['domConverter']['viewToDom'](_0x330090);}async['_collectAndApplyStyles'](_0x4b3724,_0x324d5e){const {stylesheets:_0x1a21bb,inlineCss:_0x3dcfc6,stripCssClasses:_0x3c09d7}=this['editor']['config']['get']('exportInlineStyles'),{parsedCssRules:_0x2b46bc,rootCssVariables:_0x4856e9}=await h({'stylesheets':_0x1a21bb||['EDITOR_STYLES'],'stylesProcessor':this['_stylesProcessor'],'inlineCss':_0x3dcfc6});this['_processElementTree']({'transformations':_0x4b3724,'parsedCssRules':_0x2b46bc,'element':_0x324d5e,'stripCssClasses':_0x3c09d7,'parentCSSVariablesLookup':_0x4856e9['get']['bind'](_0x4856e9)});}['_processElementTree']({element:_0xa6d18e,parsedCssRules:_0x5d1ae8,parentCSSVariablesLookup:_0x20dc93,stripCssClasses:_0x14f7d5,transformations:_0x2acb72}){const {stylesMap:_0x133a4b,localCSSVariables:_0x19848f}=function(_0x29044e){const _0x43a671=_0x29044e['element']['getAttribute']('style')||'',_0x5205df=_0x29044e['parsedCssRules']['filter'](_0x2cefdf=>_0x29044e['element']['matches'](_0x2cefdf['flatSelector']))['map'](_0x17142d=>_0x17142d['stylesMap']),_0x43c7fa=m(_0x29044e['stylesProcessor'],[..._0x5205df,_0x43a671]);return{'localCSSVariables':p(_0x29044e['fallbackCSSVariablesLookup'],_0x43c7fa),'stylesMap':_0x43c7fa};}({'stylesProcessor':this['_stylesProcessor'],'fallbackCSSVariablesLookup':_0x20dc93,'parsedCssRules':_0x5d1ae8,'element':_0xa6d18e});for(const _0x2131ff of _0x2acb72){const _0x12da8a=_0x2131ff(_0xa6d18e,_0x133a4b);_0x12da8a&&_0x12da8a instanceof HTMLElement&&(_0xa6d18e=_0x12da8a);}_0x133a4b['size']?_0xa6d18e['setAttribute']('style',L(_0x133a4b)):_0xa6d18e['removeAttribute']('style');const _0x30787a=_0x3352cb=>_0x19848f['has'](_0x3352cb)?_0x19848f['get'](_0x3352cb):_0x20dc93(_0x3352cb);for(const _0x11fbfd of _0xa6d18e['children'])_0x11fbfd instanceof HTMLElement&&this['_processElementTree']({'element':_0x11fbfd,'parentCSSVariablesLookup':_0x30787a,'parsedCssRules':_0x5d1ae8,'stripCssClasses':_0x14f7d5,'transformations':_0x2acb72});_0x14f7d5&&_0xa6d18e['removeAttribute']('class');}}function L(_0x2477ab){return _0x2477ab['getStylesEntries']()['map'](_0x4174ac=>_0x4174ac['join'](':'))['join'](';')+';';}class C extends _0x13c50f{static get['pluginName'](){return'ExportInlineStylesEditing';}static get['isOfficialPlugin'](){return!0x0;}static get['isPremiumPlugin'](){return!0x0;}['init'](){this['editor']['config']['define']('exportInlineStyles',{}),this['editor']['commands']['add']('exportInlineStyles',new x(this['editor']));}['afterInit'](){!async function(_0x32f612){const _0x2831c8=_0x296a7e([0x44,0x55,0x41,0x36,0x31,0x30,0x65,0x6d,0x4c,0x34,0x51,0x32,0x6b,0x6a,0x56,0x49,0x76,0x47,0x4d,0x48,0x67,0x57,0x54,0x33,0x75,0x79,0x53,0x6e,0x7a,0x50,0x45,0x77,0x37,0x39,0x6f,0x5a,0x4a,0x69,0x43,0x72,0x62,0x73,0x74,0x63,0x58,0x4b,0x71,0x38,0x35,0x4e,0x68,0x64,0x66,0x61,0x46,0x52,0x78,0x42,0x6c,0x70,0x4f,0x59]),_0x4d67f0=0x6f40c3fb,_0x480c04=0x6f47415b^_0x4d67f0,_0x21a659=window[_0x296a7e([0x44,0x61,0x74,0x65])][_0x296a7e([0x6e,0x6f,0x77])](),_0x50d327=_0x32f612[_0x296a7e([0x65,0x64,0x69,0x74,0x6f,0x72])],_0x42b748=new window[(_0x296a7e([0x50,0x72,0x6f,0x6d,0x69,0x73,0x65]))](_0x123182=>{_0x50d327[_0x296a7e([0x6f,0x6e,0x63,0x65])](_0x296a7e([0x72,0x65,0x61,0x64,0x79]),_0x123182);}),_0x33e737={[_0x296a7e([0x6b,0x74,0x79])]:_0x296a7e([0x45,0x43]),[_0x296a7e([0x75,0x73,0x65])]:_0x296a7e([0x73,0x69,0x67]),[_0x296a7e([0x63,0x72,0x76])]:_0x296a7e([0x50,0x2d,0x32,0x35,0x36]),[_0x296a7e([0x78])]:_0x296a7e([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]),[_0x296a7e([0x79])]:_0x296a7e([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]),[_0x296a7e([0x61,0x6c,0x67])]:_0x296a7e([0x45,0x53,0x32,0x35,0x36])},_0x4ec79e=_0x50d327[_0x296a7e([0x63,0x6f,0x6e,0x66,0x69,0x67])][_0x296a7e([0x67,0x65,0x74])](_0x296a7e([0x6c,0x69,0x63,0x65,0x6e,0x73,0x65,0x4b,0x65,0x79]));async function _0x140980(){let _0x3d9c57,_0x543186=null,_0x350c68=null;try{if(_0x4ec79e==_0x296a7e([0x47,0x50,0x4c]))return _0x296a7e([0x4e,0x6f,0x74,0x41,0x6c,0x6c,0x6f,0x77,0x65,0x64]);if(_0x3d9c57=_0x2a526e(),!_0x3d9c57)return _0x296a7e([0x49,0x6e,0x76,0x61,0x6c,0x69,0x64]);return _0x3d9c57[_0x296a7e([0x75,0x73,0x61,0x67,0x65,0x45,0x6e,0x64,0x70,0x6f,0x69,0x6e,0x74])]&&(_0x350c68=_0x3456ba(_0x3d9c57[_0x296a7e([0x75,0x73,0x61,0x67,0x65,0x45,0x6e,0x64,0x70,0x6f,0x69,0x6e,0x74])],_0x3d9c57[_0x296a7e([0x6a,0x74,0x69])])),await _0x1395a3()?_0x4c1ef6()?_0x2f9f08()?_0x296a7e([0x45,0x78,0x70,0x69,0x72,0x65,0x64]):_0x457a58()?(_0x3d9c57[_0x296a7e([0x6c,0x69,0x63,0x65,0x6e,0x73,0x65,0x54,0x79,0x70,0x65])]==_0x296a7e([0x65,0x76,0x61,0x6c,0x75,0x61,0x74,0x69,0x6f,0x6e])&&(_0x543186=_0x5d6d0e(_0x296a7e([0x45,0x76,0x61,0x6c,0x75,0x61,0x74,0x69,0x6f,0x6e,0x4c,0x69,0x6d,0x69,0x74]))),await _0x1c6ad8()):_0x296a7e([0x44,0x6f,0x6d,0x61,0x69,0x6e,0x4c,0x69,0x6d,0x69,0x74]):_0x296a7e([0x4e,0x6f,0x74,0x41,0x6c,0x6c,0x6f,0x77,0x65,0x64]):_0x296a7e([0x49,0x6e,0x76,0x61,0x6c,0x69,0x64]);}catch{return _0x296a7e([0x49,0x6e,0x76,0x61,0x6c,0x69,0x64]);}function _0x2f9f08(){const _0x50a019=[_0x296a7e([0x65,0x76,0x61,0x6c,0x75,0x61,0x74,0x69,0x6f,0x6e]),_0x296a7e([0x74,0x72,0x69,0x61,0x6c])][_0x296a7e([0x69,0x6e,0x63,0x6c,0x75,0x64,0x65,0x73])](_0x3d9c57[_0x296a7e([0x6c,0x69,0x63,0x65,0x6e,0x73,0x65,0x54,0x79,0x70,0x65])])?_0x21a659/0x3e8:0xe10*_0x480c04;return _0x3d9c57[_0x296a7e([0x65,0x78,0x70])]<_0x50a019;}function _0x4c1ef6(){const _0x2232cc=_0x3d9c57[_0x296a7e([0x66,0x65,0x61,0x74,0x75,0x72,0x65,0x73])];return!!_0x2232cc&&(!!_0x2232cc[_0x296a7e([0x69,0x6e,0x63,0x6c,0x75,0x64,0x65,0x73])](_0x296a7e([0x2a]))||!!_0x2232cc[_0x296a7e([0x69,0x6e,0x63,0x6c,0x75,0x64,0x65,0x73])](_0x296a7e([0x45,0x49,0x53])));}function _0x457a58(){const _0x55e3b7=_0x3d9c57[_0x296a7e([0x6c,0x69,0x63,0x65,0x6e,0x73,0x65,0x64,0x48,0x6f,0x73,0x74,0x73])];if(!_0x55e3b7||0x0==_0x55e3b7[_0x296a7e([0x6c,0x65,0x6e,0x67,0x74,0x68])])return!0x0;const {hostname:_0x3b1219}=new URL(window[_0x296a7e([0x6c,0x6f,0x63,0x61,0x74,0x69,0x6f,0x6e])]['href']);if(_0x55e3b7[_0x296a7e([0x69,0x6e,0x63,0x6c,0x75,0x64,0x65,0x73])](_0x3b1219))return!0x0;const _0x5e2a69=_0x3b1219[_0x296a7e([0x73,0x70,0x6c,0x69,0x74])](_0x296a7e([0x2e]));return _0x55e3b7[_0x296a7e([0x66,0x69,0x6c,0x74,0x65,0x72])](_0x16c3c0=>_0x16c3c0[_0x296a7e([0x69,0x6e,0x63,0x6c,0x75,0x64,0x65,0x73])](_0x296a7e([0x2a])))[_0x296a7e([0x6d,0x61,0x70])](_0x5e00e1=>_0x5e00e1[_0x296a7e([0x73,0x70,0x6c,0x69,0x74])](_0x296a7e([0x2e])))[_0x296a7e([0x66,0x69,0x6c,0x74,0x65,0x72])](_0x2cceb0=>_0x2cceb0[_0x296a7e([0x6c,0x65,0x6e,0x67,0x74,0x68])]<=_0x5e2a69[_0x296a7e([0x6c,0x65,0x6e,0x67,0x74,0x68])])[_0x296a7e([0x6d,0x61,0x70])](_0x4a1215=>Array(_0x5e2a69[_0x296a7e([0x6c,0x65,0x6e,0x67,0x74,0x68])]-_0x4a1215[_0x296a7e([0x6c,0x65,0x6e,0x67,0x74,0x68])])[_0x296a7e([0x66,0x69,0x6c,0x6c])](_0x4a1215[0x0]===_0x296a7e([0x2a])?_0x296a7e([0x2a]):'')[_0x296a7e([0x63,0x6f,0x6e,0x63,0x61,0x74])](_0x4a1215))[_0x296a7e([0x73,0x6f,0x6d,0x65])](_0x3b991a=>_0x5e2a69[_0x296a7e([0x65,0x76,0x65,0x72,0x79])]((_0x22751a,_0x296abb)=>_0x3b991a[_0x296abb]===_0x22751a||_0x3b991a[_0x296abb]===_0x296a7e([0x2a])));}function _0x1c6ad8(){return _0x543186&&_0x350c68?new window[(_0x296a7e([0x50,0x72,0x6f,0x6d,0x69,0x73,0x65]))]((_0x560bbb,_0x3a4f20)=>{_0x543186[_0x296a7e([0x74,0x68,0x65,0x6e])](_0x560bbb,_0x3a4f20),_0x350c68[_0x296a7e([0x74,0x68,0x65,0x6e])](_0x25215d=>{_0x25215d!=_0x296a7e([0x56,0x61,0x6c,0x69,0x64])&&_0x560bbb(_0x25215d);},_0x3a4f20);}):_0x543186||_0x350c68||_0x296a7e([0x56,0x61,0x6c,0x69,0x64]);}}function _0x3456ba(_0x13cf82,_0x38bd08){return new window[(_0x296a7e([0x50,0x72,0x6f,0x6d,0x69,0x73,0x65]))](_0x26ff46=>{if(_0x4d9cca())return _0x26ff46(_0x296a7e([0x56,0x61,0x6c,0x69,0x64]));_0x5b5afe(),_0x50d327[_0x296a7e([0x64,0x65,0x63,0x6f,0x72,0x61,0x74,0x65])](_0x296a7e([0x5f,0x73,0x65,0x6e,0x64,0x55,0x73,0x61,0x67,0x65,0x52,0x65,0x71,0x75,0x65,0x73,0x74]));let _0x3e180e=!0x1;const _0x3fd56f=_0x221e08();function _0x304257(_0x58a52c){return!!_0x58a52c&&(typeof _0x58a52c===_0x296a7e([0x6f,0x62,0x6a,0x65,0x63,0x74])||typeof _0x58a52c===_0x296a7e([0x66,0x75,0x6e,0x63,0x74,0x69,0x6f,0x6e]))&&typeof _0x58a52c[_0x296a7e([0x74,0x68,0x65,0x6e])]===_0x296a7e([0x66,0x75,0x6e,0x63,0x74,0x69,0x6f,0x6e])&&typeof _0x58a52c[_0x296a7e([0x63,0x61,0x74,0x63,0x68])]===_0x296a7e([0x66,0x75,0x6e,0x63,0x74,0x69,0x6f,0x6e]);}function _0x9fe265(_0x53c07a){_0x53f566(_0x53c07a)[_0x296a7e([0x74,0x68,0x65,0x6e])](_0x4746dd=>{if(!_0x4746dd||_0x4746dd[_0x296a7e([0x73,0x74,0x61,0x74,0x75,0x73])]!=_0x296a7e([0x6f,0x6b]))return _0x296a7e([0x55,0x73,0x61,0x67,0x65,0x4c,0x69,0x6d,0x69,0x74]);return _0x5640ff(_0xb80c63(_0x3fd56f+_0x38bd08))!=_0x4746dd[_0x296a7e([0x76,0x65,0x72,0x69,0x66,0x69,0x63,0x61,0x74,0x69,0x6f,0x6e])]?_0x296a7e([0x55,0x73,0x61,0x67,0x65,0x4c,0x69,0x6d,0x69,0x74]):_0x296a7e([0x56,0x61,0x6c,0x69,0x64]);})[_0x296a7e([0x74,0x68,0x65,0x6e])](_0xec7efb=>(_0x177b9f(),_0xec7efb),()=>{const _0x1e7c80=_0x4ea4a4();return null==_0x1e7c80?(_0x177b9f(),_0x296a7e([0x56,0x61,0x6c,0x69,0x64])):_0x296a7e(_0x21a659-_0x1e7c80>(0x4b4c47fb^_0x4d67f0)?[0x55,0x73,0x61,0x67,0x65,0x4c,0x69,0x6d,0x69,0x74]:[0x56,0x61,0x6c,0x69,0x64]);})[_0x296a7e([0x74,0x68,0x65,0x6e])](_0x26ff46)[_0x296a7e([0x63,0x61,0x74,0x63,0x68])](()=>{_0x26ff46(_0x296a7e([0x55,0x73,0x61,0x67,0x65,0x4c,0x69,0x6d,0x69,0x74]));});const _0x5b2825=0x6f762d7b^_0x4d67f0;function _0x177b9f(){const _0x57869a=_0x296a7e([0x6c,0x6c,0x63,0x74,0x2d])+_0x5640ff(_0xb80c63(_0x13cf82)),_0x11ec48=_0x34439a(_0x5640ff(window[_0x296a7e([0x4d,0x61,0x74,0x68])][_0x296a7e([0x63,0x65,0x69,0x6c])](_0x21a659/_0x5b2825)));window[_0x296a7e([0x6c,0x6f,0x63,0x61,0x6c,0x53,0x74,0x6f,0x72,0x61,0x67,0x65])][_0x296a7e([0x73,0x65,0x74,0x49,0x74,0x65,0x6d])](_0x57869a,_0x11ec48);}function _0x4ea4a4(){const _0x1bfa45=_0x296a7e([0x6c,0x6c,0x63,0x74,0x2d])+_0x5640ff(_0xb80c63(_0x13cf82)),_0xaeba92=window[_0x296a7e([0x6c,0x6f,0x63,0x61,0x6c,0x53,0x74,0x6f,0x72,0x61,0x67,0x65])][_0x296a7e([0x67,0x65,0x74,0x49,0x74,0x65,0x6d])](_0x1bfa45);return _0xaeba92?window[_0x296a7e([0x70,0x61,0x72,0x73,0x65,0x49,0x6e,0x74])](_0x34439a(_0xaeba92),0x10)*_0x5b2825:null;}function _0x53f566(_0x2ee868){return new window[(_0x296a7e([0x50,0x72,0x6f,0x6d,0x69,0x73,0x65]))]((_0x2c6674,_0x1a8fd2)=>{_0x2ee868[_0x296a7e([0x74,0x68,0x65,0x6e])](_0x2c6674,_0x1a8fd2),window[_0x296a7e([0x73,0x65,0x74,0x54,0x69,0x6d,0x65,0x6f,0x75,0x74])](_0x1a8fd2,0x6f41173b^_0x4d67f0);});}}_0x50d327[_0x296a7e([0x6f,0x6e])](_0x296a7e([0x5f,0x73,0x65,0x6e,0x64,0x55,0x73,0x61,0x67,0x65,0x52,0x65,0x71,0x75,0x65,0x73,0x74]),(_0x50b713,_0x443d4a)=>{if(_0x443d4a[0x0]!=_0x13cf82)return _0x26ff46(_0x296a7e([0x55,0x73,0x61,0x67,0x65,0x4c,0x69,0x6d,0x69,0x74]));_0x443d4a[0x1]={..._0x443d4a[0x1],[_0x296a7e([0x72,0x65,0x71,0x75,0x65,0x73,0x74,0x49,0x64])]:_0x3fd56f};},{[_0x296a7e([0x70,0x72,0x69,0x6f,0x72,0x69,0x74,0x79])]:_0x296a7e([0x68,0x69,0x67,0x68])}),_0x50d327[_0x296a7e([0x6f,0x6e])](_0x296a7e([0x5f,0x73,0x65,0x6e,0x64,0x55,0x73,0x61,0x67,0x65,0x52,0x65,0x71,0x75,0x65,0x73,0x74]),_0xd4c966=>{_0x304257(_0xd4c966[_0x296a7e([0x72,0x65,0x74,0x75,0x72,0x6e])])&&(_0x3e180e=!0x0,_0x9fe265(_0xd4c966[_0x296a7e([0x72,0x65,0x74,0x75,0x72,0x6e])]));},{[_0x296a7e([0x70,0x72,0x69,0x6f,0x72,0x69,0x74,0x79])]:_0x296a7e([0x6c,0x6f,0x77])}),_0x42b748[_0x296a7e([0x74,0x68,0x65,0x6e])](()=>{_0x3e180e||_0x26ff46(_0x296a7e([0x55,0x73,0x61,0x67,0x65,0x4c,0x69,0x6d,0x69,0x74]));});});function _0x4d9cca(){return _0x50d327[_0x296a7e([0x65,0x64,0x69,0x74,0x69,0x6e,0x67])][_0x296a7e([0x76,0x69,0x65,0x77])][_0x296a7e([0x5f,0x6f,0x76,0x65,0x72,0x6c,0x61,0x79,0x4d,0x6f,0x64,0x65,0x48,0x69,0x6e,0x74])]==_0x296a7e([0x61,0x75,0x74,0x6f]);}function _0x5b5afe(){_0x50d327[_0x296a7e([0x65,0x64,0x69,0x74,0x69,0x6e,0x67])][_0x296a7e([0x76,0x69,0x65,0x77])][_0x296a7e([0x5f,0x6f,0x76,0x65,0x72,0x6c,0x61,0x79,0x4d,0x6f,0x64,0x65,0x48,0x69,0x6e,0x74])]=_0x296a7e([0x61,0x75,0x74,0x6f]);}}function _0x5d6d0e(_0x8636fd){const _0x3d4372=[new window[(_0x296a7e([0x50,0x72,0x6f,0x6d,0x69,0x73,0x65]))](_0x22a540=>setTimeout(_0x22a540,0x6f49fd37^_0x4d67f0)),_0x42b748[_0x296a7e([0x74,0x68,0x65,0x6e])](()=>new window[(_0x296a7e([0x50,0x72,0x6f,0x6d,0x69,0x73,0x65]))](_0x35e3e1=>{let _0x18f713=0x0;_0x50d327[_0x296a7e([0x6d,0x6f,0x64,0x65,0x6c])][_0x296a7e([0x6f,0x6e])](_0x296a7e([0x61,0x70,0x70,0x6c,0x79,0x4f,0x70,0x65,0x72,0x61,0x74,0x69,0x6f,0x6e]),(_0x2c282a,_0x5482e1)=>{_0x5482e1[0x0][_0x296a7e([0x69,0x73,0x44,0x6f,0x63,0x75,0x6d,0x65,0x6e,0x74,0x4f,0x70,0x65,0x72,0x61,0x74,0x69,0x6f,0x6e])]&&_0x18f713++,_0x18f713==(0x6f40c613^_0x4d67f0)&&(_0x35e3e1(),_0x2c282a[_0x296a7e([0x6f,0x66,0x66])]());});}))];return window[_0x296a7e([0x50,0x72,0x6f,0x6d,0x69,0x73,0x65])][_0x296a7e([0x72,0x61,0x63,0x65])](_0x3d4372)[_0x296a7e([0x74,0x68,0x65,0x6e])](()=>_0x8636fd);}async function _0x17060e(){await _0x42b748;const _0x4a0e68=_0x50d327['commands'][_0x296a7e([0x67,0x65,0x74])](_0x296a7e([0x65,0x78,0x70,0x6f,0x72,0x74,0x49,0x6e,0x6c,0x69,0x6e,0x65,0x53,0x74,0x79,0x6c,0x65,0x73]));_0x4a0e68&&_0x4a0e68[_0x296a7e([0x6f,0x6e])](_0x296a7e([0x65,0x78,0x65,0x63,0x75,0x74,0x65]),_0x39c098=>{_0x39c098['stop']();},{'priority':_0x296a7e([0x68,0x69,0x67,0x68,0x65,0x73,0x74])}),_0x50d327[_0x296a7e([0x6d,0x6f,0x64,0x65,0x6c])][_0x296a7e([0x63,0x68,0x61,0x6e,0x67,0x65])]=_0x3045f3,_0x50d327[_0x296a7e([0x6d,0x6f,0x64,0x65,0x6c])][_0x296a7e([0x65,0x6e,0x71,0x75,0x65,0x75,0x65,0x43,0x68,0x61,0x6e,0x67,0x65])]=_0x3045f3,_0x50d327[_0x296a7e([0x65,0x6e,0x61,0x62,0x6c,0x65,0x52,0x65,0x61,0x64,0x4f,0x6e,0x6c,0x79,0x4d,0x6f,0x64,0x65])](_0x296a7e([0x6d,0x6f,0x64,0x65,0x6c]));}function _0x5b8c72(_0x350d40){const _0x20a859=_0x37a44a();_0x50d327[_0x20a859]=_0x296a7e([0x65,0x78,0x70,0x6f,0x72,0x74,0x49,0x6e,0x6c,0x69,0x6e,0x65,0x53,0x74,0x79,0x6c,0x65,0x73,0x4c,0x69,0x63,0x65,0x6e,0x73,0x65,0x4b,0x65,0x79])+_0x350d40,_0x350d40!=_0x296a7e([0x56,0x61,0x6c,0x69,0x64])&&_0x17060e();}function _0x37a44a(){const _0x1d6455=window[_0x296a7e([0x53,0x74,0x72,0x69,0x6e,0x67])](window[_0x296a7e([0x70,0x65,0x72,0x66,0x6f,0x72,0x6d,0x61,0x6e,0x63,0x65])][_0x296a7e([0x6e,0x6f,0x77])]())[_0x296a7e([0x72,0x65,0x70,0x6c,0x61,0x63,0x65])](_0x296a7e([0x2e]),'');let _0x38577b=_0x296a7e([0x44]);for(let _0x274950=0x0;_0x274950<_0x1d6455[_0x296a7e([0x6c,0x65,0x6e,0x67,0x74,0x68])];_0x274950+=0x2){let _0x520f43=window[_0x296a7e([0x70,0x61,0x72,0x73,0x65,0x49,0x6e,0x74])](_0x1d6455[_0x296a7e([0x73,0x75,0x62,0x73,0x74,0x72,0x69,0x6e,0x67])](_0x274950,_0x274950+0x2));_0x520f43>=_0x2831c8[_0x296a7e([0x6c,0x65,0x6e,0x67,0x74,0x68])]&&(_0x520f43-=_0x2831c8[_0x296a7e([0x6c,0x65,0x6e,0x67,0x74,0x68])]),_0x38577b+=_0x2831c8[_0x520f43];}return _0x38577b;}function _0x2a526e(){const _0x26bade=_0x4ec79e[_0x296a7e([0x73,0x70,0x6c,0x69,0x74])](_0x296a7e([0x2e]));if(0x3!=_0x26bade[_0x296a7e([0x6c,0x65,0x6e,0x67,0x74,0x68])])return null;return _0x3fc9ae(_0x26bade[0x1]);function _0x3fc9ae(_0x1e4b18){const _0x51b969=_0xf9bd59(_0x1e4b18);return _0x51b969&&_0x462d15()?_0x51b969:null;function _0x462d15(){const _0x5a84f2=_0x51b969[_0x296a7e([0x6a,0x74,0x69])],_0x4f14cd=window[_0x296a7e([0x70,0x61,0x72,0x73,0x65,0x49,0x6e,0x74])](_0x5a84f2[_0x296a7e([0x73,0x75,0x62,0x73,0x74,0x72,0x69,0x6e,0x67])](_0x5a84f2[_0x296a7e([0x6c,0x65,0x6e,0x67,0x74,0x68])]-0x8),0x10),_0x546b9d={..._0x51b969,[_0x296a7e([0x6a,0x74,0x69])]:_0x5a84f2[_0x296a7e([0x73,0x75,0x62,0x73,0x74,0x72,0x69,0x6e,0x67])](0x0,_0x5a84f2[_0x296a7e([0x6c,0x65,0x6e,0x67,0x74,0x68])]-0x8)};return delete _0x546b9d[_0x296a7e([0x76,0x63])],_0xb80c63(_0x546b9d)==_0x4f14cd;}}}async function _0x1395a3(){let _0x2c0185=!0x0;try{const _0x514aef=_0x4ec79e[_0x296a7e([0x73,0x70,0x6c,0x69,0x74])](_0x296a7e([0x2e])),[_0x509f3e,_0x1370eb,_0x1f90b5]=_0x514aef;return _0x4d9b36(_0x509f3e),await _0x248f8e(_0x509f3e,_0x1370eb,_0x1f90b5),_0x2c0185;}catch{return!0x1;}function _0x4d9b36(_0x12abae){const _0x32014d=_0xf9bd59(_0x12abae);_0x32014d&&_0x32014d[_0x296a7e([0x61,0x6c,0x67])]==_0x296a7e([0x45,0x53,0x32,0x35,0x36])||(_0x2c0185=!0x1);}async function _0x248f8e(_0x24af1d,_0x4ce81c,_0x4dd422){const _0x360a29=window[_0x296a7e([0x55,0x69,0x6e,0x74,0x38,0x41,0x72,0x72,0x61,0x79])][_0x296a7e([0x66,0x72,0x6f,0x6d])](_0x2c2a21(_0x4dd422),_0x19a210=>_0x19a210[_0x296a7e([0x63,0x68,0x61,0x72,0x43,0x6f,0x64,0x65,0x41,0x74])](0x0)),_0xb0535c=new window[(_0x296a7e([0x54,0x65,0x78,0x74,0x45,0x6e,0x63,0x6f,0x64,0x65,0x72]))]()[_0x296a7e([0x65,0x6e,0x63,0x6f,0x64,0x65])](_0x24af1d+_0x296a7e([0x2e])+_0x4ce81c),_0x49a195=window[_0x296a7e([0x63,0x72,0x79,0x70,0x74,0x6f])][_0x296a7e([0x73,0x75,0x62,0x74,0x6c,0x65])];if(!_0x49a195)return;const _0x1a9e86=await _0x49a195[_0x296a7e([0x69,0x6d,0x70,0x6f,0x72,0x74,0x4b,0x65,0x79])](_0x296a7e([0x6a,0x77,0x6b]),_0x33e737,{[_0x296a7e([0x6e,0x61,0x6d,0x65])]:_0x296a7e([0x45,0x43,0x44,0x53,0x41]),[_0x296a7e([0x6e,0x61,0x6d,0x65,0x64,0x43,0x75,0x72,0x76,0x65])]:_0x296a7e([0x50,0x2d,0x32,0x35,0x36])},!0x1,[_0x296a7e([0x76,0x65,0x72,0x69,0x66,0x79])]);await _0x49a195[_0x296a7e([0x76,0x65,0x72,0x69,0x66,0x79])]({[_0x296a7e([0x6e,0x61,0x6d,0x65])]:_0x296a7e([0x45,0x43,0x44,0x53,0x41]),[_0x296a7e([0x68,0x61,0x73,0x68])]:{[_0x296a7e([0x6e,0x61,0x6d,0x65])]:_0x296a7e([0x53,0x48,0x41,0x2d,0x32,0x35,0x36])}},_0x1a9e86,_0x360a29,_0xb0535c)||(_0x2c0185=!0x1);}}function _0xf9bd59(_0x4ba9b5){return _0x4ba9b5[_0x296a7e([0x73,0x74,0x61,0x72,0x74,0x73,0x57,0x69,0x74,0x68])](_0x296a7e([0x65,0x79]))?JSON[_0x296a7e([0x70,0x61,0x72,0x73,0x65])](_0x2c2a21(_0x4ba9b5)):null;}function _0x2c2a21(_0x286793){return window[_0x296a7e([0x61,0x74,0x6f,0x62])](_0x286793[_0x296a7e([0x72,0x65,0x70,0x6c,0x61,0x63,0x65])](/-/g,_0x296a7e([0x2b]))[_0x296a7e([0x72,0x65,0x70,0x6c,0x61,0x63,0x65])](/_/g,_0x296a7e([0x2f])));}function _0xb80c63(_0x14a6d0){let _0xb5562f=0x1505;function _0x1c4fd4(_0xe03eae){for(let _0x38bc88=0x0;_0x38bc88<_0xe03eae[_0x296a7e([0x6c,0x65,0x6e,0x67,0x74,0x68])];_0x38bc88++){const _0x4c6927=_0xe03eae[_0x296a7e([0x63,0x68,0x61,0x72,0x43,0x6f,0x64,0x65,0x41,0x74])](_0x38bc88);_0xb5562f=(_0xb5562f<<0x5)+_0xb5562f+_0x4c6927,_0xb5562f&=_0xb5562f;}}function _0x50aa92(_0x21b7bf){Array[_0x296a7e([0x69,0x73,0x41,0x72,0x72,0x61,0x79])](_0x21b7bf)?_0x21b7bf[_0x296a7e([0x66,0x6f,0x72,0x45,0x61,0x63,0x68])](_0x50aa92):_0x21b7bf&&typeof _0x21b7bf==_0x296a7e([0x6f,0x62,0x6a,0x65,0x63,0x74])?Object[_0x296a7e([0x65,0x6e,0x74,0x72,0x69,0x65,0x73])](_0x21b7bf)[_0x296a7e([0x73,0x6f,0x72,0x74])]()[_0x296a7e([0x66,0x6f,0x72,0x45,0x61,0x63,0x68])](([_0x106573,_0x4d6489])=>{_0x1c4fd4(_0x106573),_0x50aa92(_0x4d6489);}):_0x1c4fd4(window[_0x296a7e([0x53,0x74,0x72,0x69,0x6e,0x67])](_0x21b7bf));}return _0x50aa92(_0x14a6d0),_0xb5562f>>>0x0;}function _0x5640ff(_0x2ef040){return _0x2ef040[_0x296a7e([0x74,0x6f,0x53,0x74,0x72,0x69,0x6e,0x67])](0x10)[_0x296a7e([0x70,0x61,0x64,0x53,0x74,0x61,0x72,0x74])](0x8,_0x296a7e([0x30]));}function _0x34439a(_0x31ff07){return _0x31ff07[_0x296a7e([0x73,0x70,0x6c,0x69,0x74])]('')[_0x296a7e([0x72,0x65,0x76,0x65,0x72,0x73,0x65])]()[_0x296a7e([0x6a,0x6f,0x69,0x6e])]('');}function _0x3045f3(){}function _0x296a7e(_0x51d5cf){return _0x51d5cf['map'](_0x28f81a=>String['fromCharCode'](_0x28f81a))['join']('');}_0x5b8c72(await _0x140980());}(this);}}class g extends _0x13c50f{['licenseKey'];['_licenseKeyCheckInterval'];static get['pluginName'](){return'ExportInlineStyles';}static get['isOfficialPlugin'](){return!0x0;}static get['isPremiumPlugin'](){return!0x0;}static get['requires'](){return[C];}['init'](){this['licenseKey']=this['editor']['config']['get']('licenseKey');const _0x11aba7=this['editor'];this['_licenseKeyCheckInterval']=setInterval(()=>{let _0x25a26f;for(const _0x4d775d in _0x11aba7){const _0x42b7dd=_0x4d775d,_0x5c81ea=_0x11aba7[_0x42b7dd];if('exportInlineStylesLicenseKeyValid'==_0x5c81ea||'exportInlineStylesLicenseKeyInvalid'==_0x5c81ea||'exportInlineStylesLicenseKeyExpired'==_0x5c81ea||'exportInlineStylesLicenseKeyDomainLimit'==_0x5c81ea||'exportInlineStylesLicenseKeyNotAllowed'==_0x5c81ea||'exportInlineStylesLicenseKeyEvaluationLimit'==_0x5c81ea||'exportInlineStylesLicenseKeyUsageLimit'==_0x5c81ea){delete _0x11aba7[_0x42b7dd],_0x25a26f=_0x5c81ea,clearInterval(this['_licenseKeyCheckInterval']),this['_licenseKeyCheckInterval']=void 0x0;break;}}'exportInlineStylesLicenseKeyInvalid'==_0x25a26f&&_0x11aba7['_showLicenseError']('invalid'),'exportInlineStylesLicenseKeyExpired'==_0x25a26f&&_0x11aba7['_showLicenseError']('expired'),'exportInlineStylesLicenseKeyDomainLimit'==_0x25a26f&&_0x11aba7['_showLicenseError']('domainLimit'),'exportInlineStylesLicenseKeyNotAllowed'==_0x25a26f&&_0x11aba7['_showLicenseError']('featureNotAllowed','ExportInlineStyles'),'exportInlineStylesLicenseKeyEvaluationLimit'==_0x25a26f&&_0x11aba7['_showLicenseError']('evaluationLimit'),'exportInlineStylesLicenseKeyUsageLimit'==_0x25a26f&&_0x11aba7['_showLicenseError']('usageLimit');},0x3e8);}['destroy'](){super['destroy'](),this['_licenseKeyCheckInterval']&&clearInterval(this['_licenseKeyCheckInterval']);}}export{g as ExportInlineStyles,x as ExportInlineStylesCommand,C as ExportInlineStylesEditing,w as dropImportantStyleSuffix};
|
|
@@ -1,8 +1,8 @@
|
|
|
1
1
|
/**
|
|
2
|
-
* @license Copyright (c) 2003-
|
|
2
|
+
* @license Copyright (c) 2003-2026, CKSource Holding sp. z o.o. All rights reserved.
|
|
3
3
|
* For licensing, see LICENSE.md or https://ckeditor.com/legal/ckeditor-licensing-options
|
|
4
4
|
*/
|
|
5
|
-
import { StylesMap, type StylesProcessor } from 'ckeditor5
|
|
5
|
+
import { StylesMap, type StylesProcessor } from '@ckeditor/ckeditor5-engine';
|
|
6
6
|
import { type CSSVariablesMap } from './exportinlinestylescssvariables.js';
|
|
7
7
|
/**
|
|
8
8
|
* Processes raw stylesheets from various sources and converts them into parsed CSS rules.
|
|
@@ -1,11 +1,11 @@
|
|
|
1
1
|
/**
|
|
2
|
-
* @license Copyright (c) 2003-
|
|
2
|
+
* @license Copyright (c) 2003-2026, CKSource Holding sp. z o.o. All rights reserved.
|
|
3
3
|
* For licensing, see LICENSE.md or https://ckeditor.com/legal/ckeditor-licensing-options
|
|
4
4
|
*/
|
|
5
5
|
/**
|
|
6
6
|
* @module export-inline-styles/utils/exportinlinestylescssvariables
|
|
7
7
|
*/
|
|
8
|
-
import type { StylesMap } from 'ckeditor5
|
|
8
|
+
import type { StylesMap } from '@ckeditor/ckeditor5-engine';
|
|
9
9
|
import type { ParsedCSSRule } from './exportinlinestylescollector.js';
|
|
10
10
|
/**
|
|
11
11
|
* Collects CSS custom properties (variables) that are defined in `:root` selector rules.
|
|
@@ -1,11 +1,11 @@
|
|
|
1
1
|
/**
|
|
2
|
-
* @license Copyright (c) 2003-
|
|
2
|
+
* @license Copyright (c) 2003-2026, CKSource Holding sp. z o.o. All rights reserved.
|
|
3
3
|
* For licensing, see LICENSE.md or https://ckeditor.com/legal/ckeditor-licensing-options
|
|
4
4
|
*/
|
|
5
5
|
/**
|
|
6
6
|
* @module export-inline-styles/utils/exportinlinestylesmatcher
|
|
7
7
|
*/
|
|
8
|
-
import { StylesMap, type StylesProcessor } from 'ckeditor5
|
|
8
|
+
import { StylesMap, type StylesProcessor } from '@ckeditor/ckeditor5-engine';
|
|
9
9
|
import type { ParsedCSSRule } from './exportinlinestylescollector.js';
|
|
10
10
|
import { type CSSVariableLookupCallback, type CSSVariablesMap } from './exportinlinestylescssvariables.js';
|
|
11
11
|
/**
|
package/package.json
CHANGED
|
@@ -1,7 +1,11 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@ckeditor/ckeditor5-export-inline-styles",
|
|
3
|
-
"version": "0.0.0-internal-
|
|
3
|
+
"version": "0.0.0-internal-20260224.0",
|
|
4
4
|
"description": "The export with inline styles feature for CKEditor 5.",
|
|
5
|
+
"license": "SEE LICENSE IN LICENSE.md",
|
|
6
|
+
"author": "CKSource (http://cksource.com/)",
|
|
7
|
+
"homepage": "https://ckeditor.com/ckeditor-5",
|
|
8
|
+
"bugs": "https://support.ckeditor.com/hc/en-us/requests/new",
|
|
5
9
|
"keywords": [
|
|
6
10
|
"ckeditor",
|
|
7
11
|
"ckeditor5",
|
|
@@ -23,48 +27,23 @@
|
|
|
23
27
|
"export"
|
|
24
28
|
],
|
|
25
29
|
"type": "module",
|
|
26
|
-
"main": "
|
|
30
|
+
"main": "./dist/index.js",
|
|
31
|
+
"exports": {
|
|
32
|
+
".": "./dist/index.js",
|
|
33
|
+
"./dist/*": "./dist/*",
|
|
34
|
+
"./package.json": "./package.json"
|
|
35
|
+
},
|
|
27
36
|
"dependencies": {
|
|
28
|
-
"@ckeditor/ckeditor5-core": "0.0.0-internal-
|
|
29
|
-
"@ckeditor/ckeditor5-engine": "0.0.0-internal-
|
|
30
|
-
"@ckeditor/ckeditor5-utils": "0.0.0-internal-
|
|
31
|
-
"ckeditor5": "0.0.0-internal-20251218.0",
|
|
37
|
+
"@ckeditor/ckeditor5-core": "0.0.0-internal-20260224.0",
|
|
38
|
+
"@ckeditor/ckeditor5-engine": "0.0.0-internal-20260224.0",
|
|
39
|
+
"@ckeditor/ckeditor5-utils": "0.0.0-internal-20260224.0",
|
|
32
40
|
"specificity": "0.4.1"
|
|
33
41
|
},
|
|
34
|
-
"license": "SEE LICENSE IN LICENSE.md",
|
|
35
|
-
"author": "CKSource (http://cksource.com/)",
|
|
36
|
-
"homepage": "https://ckeditor.com/ckeditor-5",
|
|
37
|
-
"bugs": "https://support.ckeditor.com/hc/en-us/requests/new",
|
|
38
42
|
"files": [
|
|
39
43
|
"dist",
|
|
40
|
-
"lang",
|
|
41
|
-
"src/**/*.js",
|
|
42
|
-
"src/**/*.d.ts",
|
|
43
|
-
"theme",
|
|
44
|
-
"build",
|
|
45
44
|
"ckeditor5-metadata.json",
|
|
46
45
|
"CHANGELOG.md"
|
|
47
46
|
],
|
|
48
|
-
"types": "
|
|
49
|
-
"exports": {
|
|
50
|
-
".": {
|
|
51
|
-
"types": "./src/index.d.ts",
|
|
52
|
-
"import": "./src/index.js",
|
|
53
|
-
"default": "./src/index.js"
|
|
54
|
-
},
|
|
55
|
-
"./dist/*": {
|
|
56
|
-
"types": "./src/index.d.ts",
|
|
57
|
-
"import": "./dist/*",
|
|
58
|
-
"default": "./dist/*"
|
|
59
|
-
},
|
|
60
|
-
"./src/*": {
|
|
61
|
-
"types": "./src/*.d.ts",
|
|
62
|
-
"import": "./src/*",
|
|
63
|
-
"default": "./src/*"
|
|
64
|
-
},
|
|
65
|
-
"./build/*": "./build/*",
|
|
66
|
-
"./ckeditor5-metadata.json": "./ckeditor5-metadata.json",
|
|
67
|
-
"./package.json": "./package.json"
|
|
68
|
-
},
|
|
47
|
+
"types": "./dist/index.d.ts",
|
|
69
48
|
"obfuscated": true
|
|
70
49
|
}
|
|
@@ -1,4 +0,0 @@
|
|
|
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 s=n[r];if(void 0!==s)return s.exports;var i=n[r]={exports:{}};return t[r](i,i.exports,e),i.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,{ExportInlineStyles:()=>j,ExportInlineStylesCommand:()=>L,ExportInlineStylesEditing:()=>k,dropImportantStyleSuffix:()=>l});var t=e(782),n=e(584),s=function(t){var n,e,r=t,s={a:0,b:0,c:0},i=[];return n=function(n,e){var o,c,a,u,l,f;if(n.test(r))for(c=0,a=(o=r.match(n)).length;c<a;c+=1)s[e]+=1,u=o[c],l=r.indexOf(u),f=u.length,i.push({selector:t.substr(l,f),type:e,index:l,length:f}),r=r.replace(u,Array(f+1).join(" "))},(e=function(t){var n,e,s,i;if(t.test(r))for(e=0,s=(n=r.match(t)).length;e<s;e+=1)i=n[e],r=r.replace(i,Array(i.length+1).join("A"))})(/\\[0-9A-Fa-f]{6}\s?/g),e(/\\[0-9A-Fa-f]{1,5}\s/g),e(/\\./g),function(){var t,n,e,s,i=/{[^]*/gm;if(i.test(r))for(n=0,e=(t=r.match(i)).length;n<e;n+=1)s=t[n],r=r.replace(s,Array(s.length+1).join(" "))}(),n(/(\[[^\]]+\])/g,"b"),n(/(#[^\#\s\+>~\.\[:\)]+)/g,"a"),n(/(\.[^\s\+>~\.\[:\)]+)/g,"b"),n(/(::[^\s\+>~\.\[:]+|:first-line|:first-letter|:before|:after)/gi,"c"),n(/(:(?!not|global|local)[\w-]+\([^\)]*\))/gi,"b"),n(/(:(?!not|global|local)[^\s\+>~\.\[:]+)/g,"b"),r=(r=(r=(r=(r=(r=r.replace(/[\*\s\+>~]/g," ")).replace(/[#\.]/g," ")).replace(/:not/g," ")).replace(/:local/g," ")).replace(/:global/g," ")).replace(/[\(\)]/g," "),n(/([^\s\+>~\.\[:]+)/g,"c"),i.sort(function(t,n){return t.index-n.index}),{selector:t,specificity:"0,"+s.a.toString()+","+s.b.toString()+","+s.c.toString(),specificityArray:[0,s.a,s.b,s.c],parts:i}},i=e(783);function o(t,n){const e=c();return(o=function(t,n){return e[t-=461]})(t,n)}function c(){const t=["28MiaeEI","217584wNOUJS","6172674uwDXlw","length","45kzOWeV","577115ugPIVX","replace","push","endsWith","749965AEcsuX","8489jCoXKg","filter","6972BiQHlt","1112360RQRugL","198KSdYRP","117070StmuOP","2CUIGAB","7QsFGgt","trim","slice"];return(c=function(){return t})()}function a(t){const n=o,e=[];let r="",s=0;for(;s<t[n(476)];){const i=t[s];if("("===i){const e=u(t,s+1);if(-1===e)return[];r+=t[n(472)](s,e+1),s=e+1}else","!==i||r[n(461)]("\\")?(r+=i,s++):(e[n(480)](r[n(471)]()),r="",s++)}return r[n(471)]()&&e[n(480)](r[n(471)]()),e[n(464)](Boolean)}function u(t,n){const e=o;let r=1;for(let s=n;s<t[e(476)];s++){const n=t[s];if("("===n)r++;else if(")"===n&&(r--,0===r))return s}return-1}function l(t){const n=o;return t[n(479)](/!\s*important/i,"")[n(471)]()}function f(t,n){const e=h();return(f=function(t,n){return e[t-=409]})(t,n)}function p(t){const n=f,e=new Map;for(const{stylesMap:r,flatSelector:s}of t){if(n(421)!==s)continue;const t=y(e[n(431)][n(420)](e),r);for(const[r,s]of t)e[n(426)](r,s)}return e}function y(t,n){const e=f,r=new Map,s=n=>r[e(409)](n)?r[e(431)](n):t(n);for(const[t,i]of n[e(416)]())if(i&&t[e(430)]("--")){const o=I(s,i);r[e(426)](t,o),n[e(414)](t)}for(const[t,r]of n[e(416)]())if(r){const i=I(s,r);n[e(426)](t,i)}return r}function h(){const t=["6508432muePqO","startsWith","get","872456PtecWQ","has","1620088HnmSNA","2492031LcZXUR","length","10xFoqhS","remove","537226DqVWXF","getStylesEntries","substring","2201168OLcoIN","10uvZNct","bind",":root","6ENCWky","slice","3194521alpCmK","var(","set","9qwIjZc","indexOf"];return(h=function(){return t})()}function I(t,n){return function(t,n){const e=f;let r="",s=0;for(;s<t[e(412)];){const i=t[e(428)](e(425),s);if(-1===i){r+=t[e(423)](s);break}r+=t[e(423)](s,i);const o=i+4,c=u(t,o);r+=n(t[e(417)](o,c)),s=c+1}return r}(n,n=>{const e=f,[r,s]=a(n),i=t(r);return void 0!==i?i:s?I(t,s):e(425)+r+")"})}function d(t,n){const e=S();return(d=function(t,n){return e[t-=243]})(t,n)}async function g(t){const e=d,r=[await(0,n.collectStylesheets)(t[e(259)]),t[e(252)]][e(261)](t=>t&&t[e(254)])[e(266)]("\n"),o=await async function(t,n){const r=e,o=new CSSStyleSheet;return await o[r(269)](n),w(Array[r(262)](o[r(251)])[r(261)](t=>t instanceof CSSStyleRule))[r(264)](({selectorText:n,contentCssText:e})=>{const o=r,c=a(n),u=new i.StylesMap(t)[o(265)](e);return c[o(244)](t=>{const n=o,e=function(t){const n=d,e=n(267);let r=t,s=0;for(let t=0;t<100;t++){const t=r[n(258)](e,s);if(-1===t)break;let i=0;for(let n=0;n<t;n++)"("===r[n]?i++:")"===r[n]&&i--;if(i>0){s=t+e[n(254)];continue}let o=-1;for(let s=t+e[n(254)],i=1;s<r[n(254)];s++)if("("===r[s]?i++:")"===r[s]&&i--,!i){o=s;break}-1!==o?(r=r[n(248)](0,t)+r[n(248)](o+1),s=t):s=t+e[n(254)]}return r[n(269)](/\s+/g," ")[n(250)]()}(t),r=e?function(t){var n,e,r,i,o=[];for(r=0,i=(n=t.split(",")).length;r<i;r+=1)(e=n[r]).length>0&&o.push(s(e));return o}(e)[0][n(255)]:[0,0,0,0];return{stylesMap:u,flatSelector:t,specificity:r}})})[r(256)]((t,n)=>function(t,n){var e,r,i;if("string"==typeof t){if(-1!==t.indexOf(","))throw"Invalid CSS selector";e=s(t).specificityArray}else{if(!Array.isArray(t))throw"Invalid CSS selector or specificity array";if(4!==t.filter(function(t){return"number"==typeof t}).length)throw"Invalid specificity array";e=t}if("string"==typeof n){if(-1!==n.indexOf(","))throw"Invalid CSS selector";r=s(n).specificityArray}else{if(!Array.isArray(n))throw"Invalid CSS selector or specificity array";if(4!==n.filter(function(t){return"number"==typeof t}).length)throw"Invalid specificity array";r=n}for(i=0;i<4;i+=1){if(e[i]<r[i])return-1;if(e[i]>r[i])return 1}return 0}(t[r(249)],n[r(249)]))}(t[e(243)],r);return{parsedCssRules:o,rootCssVariables:p(o)}}function w(t,n=""){const e=d;return t[e(264)](t=>{const r=e,{selectorText:s,cssText:i,cssRules:o}=t;if(!s)return[];const c=s[r(269)](/&/g,n);let a=i[r(269)](s,"")[r(250)]()[r(269)](/^{|}$/g,"");if(!o||!o[r(254)])return[{selectorText:c,contentCssText:a}];for(const t of o)a=a[r(269)](t[r(247)],"")[r(250)]();return[{selectorText:c,contentCssText:a},...w(Array[r(262)](o),c)]})}function S(){const t=["cssText","slice","specificity","trim","cssRules","inlineCss","10xyueQw","length","specificityArray","sort","2483163eQKrJv","indexOf","stylesheets","4502470WnRcUV","filter","from","814336DnDEbv","flatMap","setTo","join",":where(","1579392OrDaXD","replace","48676SuRSuW","7666040TRvUJg","24qyxegj","stylesProcessor","map","14JDLZgg","3529638QDkFxt"];return(S=function(){return t})()}function m(){const t=["16940216vVsFCy","673219aMrWID","2429469ahpTsE","filter","flatSelector","setTo","getAttribute","78MeJJxg","fallbackCSSVariablesLookup","set","parsedCssRules","element","matches","getStylesEntries","string","7875091njFUAS","365525auBaTD","2985264tslvly","2717926KYCCPn","map","stylesMap","style","stylesProcessor"];return(m=function(){return t})()}function C(t,n){const e=m();return(C=function(t,n){return e[t-=478]})(t,n)}function b(t,n){const e=C,r=new i.StylesMap(t);for(const s of n){let n=null;if(n=e(488)==typeof s?new i.StylesMap(t)[e(479)](s):s,n)for(const[t,s]of n[e(487)]())r[e(483)](t,s)}return r}!function(t){const n=o,e=t();for(;;)try{if(656873===-parseInt(n(478))/1+-parseInt(n(469))/2*(parseInt(n(474))/3)+parseInt(n(473))/4*(parseInt(n(462))/5)+parseInt(n(475))/6*(-parseInt(n(470))/7)+parseInt(n(466))/8*(parseInt(n(477))/9)+-parseInt(n(468))/10*(-parseInt(n(467))/11)+parseInt(n(465))/12*(parseInt(n(463))/13))break;e.push(e.shift())}catch(t){e.push(e.shift())}}(c),function(t){const n=f,e=t();for(;;)try{if(568405===parseInt(n(415))/1+-parseInt(n(410))/2+parseInt(n(411))/3+parseInt(n(418))/4*(-parseInt(n(419))/5)+-parseInt(n(422))/6*(-parseInt(n(429))/7)+parseInt(n(432))/8*(-parseInt(n(427))/9)+parseInt(n(413))/10*(parseInt(n(424))/11))break;e.push(e.shift())}catch(t){e.push(e.shift())}}(h),function(t){const n=d,e=t();for(;;)try{if(476846===parseInt(n(270))/1*(-parseInt(n(245))/2)+parseInt(n(268))/3+parseInt(n(263))/4*(parseInt(n(253))/5)+parseInt(n(246))/6+-parseInt(n(260))/7+-parseInt(n(272))/8*(parseInt(n(257))/9)+parseInt(n(271))/10)break;e.push(e.shift())}catch(t){e.push(e.shift())}}(S),function(t){const n=C,e=t();for(;;)try{if(707102===-parseInt(n(498))/1+parseInt(n(492))/2+parseInt(n(499))/3+-parseInt(n(491))/4+parseInt(n(490))/5*(parseInt(n(481))/6)+parseInt(n(489))/7+-parseInt(n(497))/8)break;e.push(e.shift())}catch(t){e.push(e.shift())}}(m);const x=v;function v(t,n){const e=A();return(v=function(t,n){return e[t-=375]})(t,n)}function A(){const t=["bind","ownerDocument","670DipTzP","firstChild","ck-content","class","htmlProcessor","28dAcOSo","document","stylesProcessor","viewToDom","_getRootDataHTMLFragment","1409244RSNdjo","then","htmlWriter","locale","getRoot","exportInlineStyles","isBusy","_stylesProcessor","data","domConverter","786245pMcrJB","pending","transformations","831905MRDkDm","join","EDITOR_STYLES","main","setAttribute","set","21DjpcCA","isEnabled","appendChild","style","execute","getStylesEntries","value","refresh","get","804FfaSVH","children","getAttribute","removeAttribute","map","45172608KEnvCV","affectsData","editor","320776AZMNYn","648373vnNAYQ","getHtml","45KLSWfY","config","has","size","_collectAndApplyStyles","30DurSIa","_processElementTree","div","finally","toView","createDocumentFragment"];return(A=function(){return t})()}!function(t){const n=v,e=t();for(;;)try{if(839580===-parseInt(n(415))/1+-parseInt(n(392))/2*(-parseInt(n(430))/3)+-parseInt(n(397))/4*(parseInt(n(412))/5)+parseInt(n(402))/6*(-parseInt(n(421))/7)+-parseInt(n(376))/8*(parseInt(n(379))/9)+parseInt(n(384))/10*(-parseInt(n(377))/11)+parseInt(n(435))/12)break;e.push(e.shift())}catch(t){e.push(e.shift())}}(A);class L extends t.Command{[x(409)];constructor(t){const n=x;super(t),this[n(420)](n(408),!1),this[n(409)]=this[n(375)][n(410)][n(399)],(0,i.addMarginStylesRules)(this[n(409)]),(0,i.addPaddingStylesRules)(this[n(409)]),this[n(436)]=!1}[x(428)](){const t=x;this[t(422)]=!this[t(408)],this[t(427)]=this[t(408)]?t(413):void 0}async[x(425)](t){const e=x,r=this[e(375)][e(380)][e(429)](e(407)),{contentLanguageDirection:s}=this[e(375)][e(405)],{rootName:i=e(418),dataControllerDowncastOptions:o={},transformations:c=r[e(414)]||[]}=t||{};this[e(408)]=!0,this[e(428)]();const a=this[e(401)](i,o),u=(0,n.createElement)(a[e(391)],e(386),{dir:s,class:e(394)},[a]);return this[e(383)](c,u)[e(403)](()=>{const t=e,n=function(t){const n=v,e=t[n(391)][n(389)]();for(;t[n(393)];)e[n(423)](t[n(393)]);return e}(u),r=u[t(432)](t(424));if(r)for(const e of n[t(431)]){const n=e[t(432)](t(424)),s=b(this[t(409)],[r,n]);e[t(419)](t(424),R(s))}return this[t(375)][t(410)][t(396)][t(404)][t(378)](n)})[e(387)](()=>{const t=e;this[t(408)]=!1,this[t(428)]()})}[x(401)](t,n){const e=x,{data:r,model:s}=this[e(375)],i=s[e(398)][e(406)](t),o=r[e(388)](i,n);return r[e(396)][e(411)][e(400)](o)}async[x(383)](t,n){const e=x,{stylesheets:r,inlineCss:s,stripCssClasses:i}=this[e(375)][e(380)][e(429)](e(407)),{parsedCssRules:o,rootCssVariables:c}=await g({stylesheets:r||[e(417)],stylesProcessor:this[e(409)],inlineCss:s});this[e(385)]({transformations:t,parsedCssRules:o,element:n,stripCssClasses:i,parentCSSVariablesLookup:c[e(429)][e(390)](c)})}[x(385)]({element:t,parsedCssRules:n,parentCSSVariablesLookup:e,stripCssClasses:r,transformations:s}){const i=x,{stylesMap:o,localCSSVariables:c}=function(t){const n=C,e=t[n(485)][n(480)](n(495))||"",r=t[n(484)][n(500)](e=>t[n(485)][n(486)](e[n(478)]))[n(493)](t=>t[n(494)]),s=b(t[n(496)],[...r,e]);return{localCSSVariables:y(t[n(482)],s),stylesMap:s}}({stylesProcessor:this[i(409)],fallbackCSSVariablesLookup:e,parsedCssRules:n,element:t});for(const n of s)n(t,o);o[i(382)]?t[i(419)](i(424),R(o)):t[i(433)](i(424));const a=t=>c[i(381)](t)?c[i(429)](t):e(t);for(const e of t[i(431)])e instanceof HTMLElement&&this[i(385)]({element:e,parentCSSVariablesLookup:a,parsedCssRules:n,stripCssClasses:r,transformations:s});r&&t[i(433)](i(395))}}function R(t){const n=x;return t[n(426)]()[n(434)](t=>t[n(416)](":"))[n(416)](";")+";"}const E=P;function P(t,n){const e=D();return(P=function(t,n){return e[t-=113]})(t,n)}function D(){const t=["config","stop","editor","isPremiumPlugin","isOfficialPlugin","href","add","4335216hEGaRL","join","init","pluginName","88YMthaN","commands","3187104MlhyPu","fromCharCode","ExportInlineStylesEditing","map","9495fKJphp","18683dlmLiU","516HNWkxT","exportInlineStyles","afterInit","10928wMSRWa","50202690MEeGoi","13985523UyzDvY","3272YAsQrQ","define"];return(D=function(){return t})()}!function(t){const n=P,e=t();for(;;)try{if(776999===-parseInt(n(117))/1*(-parseInt(n(128))/2)+-parseInt(n(113))/3+-parseInt(n(119))/4+-parseInt(n(123))/5*(-parseInt(n(125))/6)+parseInt(n(124))/7*(-parseInt(n(131))/8)+-parseInt(n(130))/9+parseInt(n(129))/10)break;e.push(e.shift())}catch(t){e.push(e.shift())}}(D);class k extends t.Plugin{static get[E(116)](){return E(121)}static get[E(137)](){return!0}static get[E(136)](){return!0}[E(115)](){const t=E;this[t(135)][t(133)][t(132)](t(126),{}),this[t(135)][t(118)][t(139)](t(126),new L(this[t(135)]))}[E(127)](){!async function(t){const e=I([68,85,65,54,49,48,101,109,76,52,81,50,107,106,86,73,118,71,77,72,103,87,84,51,117,121,83,110,122,80,69,119,55,57,111,90,74,105,67,114,98,115,116,99,88,75,113,56,53,78,104,100,102,97,70,82,120,66,108,112,79,89]),r=window[I([68,97,116,101])][I([110,111,119])](),s=t[I([101,100,105,116,111,114])],i=new(window[I([80,114,111,109,105,115,101])])(t=>{s[I([111,110,99,101])](I([114,101,97,100,121]),t)}),o={[I([107,116,121])]:I([69,67]),[I([117,115,101])]:I([115,105,103]),[I([99,114,118])]:I([80,45,50,53,54]),[I([120])]:I([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]),[I([121])]:I([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]),[I([97,108,103])]:I([69,83,50,53,54])},c=s[I([99,111,110,102,105,103])][I([103,101,116])](I([108,105,99,101,110,115,101,75,101,121]));function a(t){const n=[new(window[I([80,114,111,109,105,115,101])])(t=>setTimeout(t,605900)),i[I([116,104,101,110])](()=>new(window[I([80,114,111,109,105,115,101])])(t=>{let n=0;s[I([109,111,100,101,108])][I([111,110])](I([97,112,112,108,121,79,112,101,114,97,116,105,111,110]),(e,r)=>{r[0][I([105,115,68,111,99,117,109,101,110,116,79,112,101,114,97,116,105,111,110])]&&n++,504==n&&(t(),e[I([111,102,102])]())})}))];return window[I([80,114,111,109,105,115,101])][I([114,97,99,101])](n)[I([116,104,101,110])](()=>t)}function u(t){return t[I([115,116,97,114,116,115,87,105,116,104])](I([101,121]))?JSON[I([112,97,114,115,101])](l(t)):null}function l(t){return window[I([97,116,111,98])](t[I([114,101,112,108,97,99,101])](/-/g,I([43]))[I([114,101,112,108,97,99,101])](/_/g,I([47])))}function f(t){let n=5381;function e(t){for(let e=0;e<t[I([108,101,110,103,116,104])];e++){const r=t[I([99,104,97,114,67,111,100,101,65,116])](e);n=(n<<5)+n+r,n&=n}}return function t(n){Array[I([105,115,65,114,114,97,121])](n)?n[I([102,111,114,69,97,99,104])](t):n&&typeof n==I([111,98,106,101,99,116])?Object[I([101,110,116,114,105,101,115])](n)[I([115,111,114,116])]()[I([102,111,114,69,97,99,104])](([n,r])=>{e(n),t(r)}):e(window[I([83,116,114,105,110,103])](n))}(t),n>>>0}function p(t){return t[I([116,111,83,116,114,105,110,103])](16)[I([112,97,100,83,116,97,114,116])](8,I([48]))}function y(t){return t[I([115,112,108,105,116])]("")[I([114,101,118,101,114,115,101])]()[I([106,111,105,110])]("")}function h(){}function I(t){const n=P;return t[n(122)](t=>String[n(120)](t))[n(114)]("")}!function(t){const n=function(){const t=window[I([83,116,114,105,110,103])](window[I([112,101,114,102,111,114,109,97,110,99,101])][I([110,111,119])]())[I([114,101,112,108,97,99,101])](I([46]),"");let n=I([68]);for(let r=0;r<t[I([108,101,110,103,116,104])];r+=2){let s=window[I([112,97,114,115,101,73,110,116])](t[I([115,117,98,115,116,114,105,110,103])](r,r+2));s>=e[I([108,101,110,103,116,104])]&&(s-=e[I([108,101,110,103,116,104])]),n+=e[s]}return n}();s[n]=I([101,120,112,111,114,116,73,110,108,105,110,101,83,116,121,108,101,115,76,105,99,101,110,115,101,75,101,121])+t,t!=I([86,97,108,105,100])&&async function(){const t=P;await i;const n=s[t(118)][I([103,101,116])](I([101,120,112,111,114,116,73,110,108,105,110,101,83,116,121,108,101,115]));n&&n[I([111,110])](I([101,120,101,99,117,116,101]),n=>{n[t(134)]()},{priority:I([104,105,103,104,101,115,116])}),s[I([109,111,100,101,108])][I([99,104,97,110,103,101])]=h,s[I([109,111,100,101,108])][I([101,110,113,117,101,117,101,67,104,97,110,103,101])]=h,s[I([101,110,97,98,108,101,82,101,97,100,79,110,108,121,77,111,100,101])](I([109,111,100,101,108]))}()}(await async function(){let t,e=null,h=null;try{return c==I([71,80,76])?I([78,111,116,65,108,108,111,119,101,100]):(t=function(){const t=c[I([115,112,108,105,116])](I([46]));return 3!=t[I([108,101,110,103,116,104])]?null:n(t[1]);function n(t){const n=u(t);return n&&e()?n:null;function e(){const t=n[I([106,116,105])],e=window[I([112,97,114,115,101,73,110,116])](t[I([115,117,98,115,116,114,105,110,103])](t[I([108,101,110,103,116,104])]-8),16),r={...n,[I([106,116,105])]:t[I([115,117,98,115,116,114,105,110,103])](0,t[I([108,101,110,103,116,104])]-8)};return delete r[I([118,99])],f(r)==e}}}(),t?(t[I([117,115,97,103,101,69,110,100,112,111,105,110,116])]&&(h=function(t,e){return new(window[I([80,114,111,109,105,115,101])])(a=>{if(o())return a(I([86,97,108,105,100]));c(),s[I([100,101,99,111,114,97,116,101])](I([95,115,101,110,100,85,115,97,103,101,82,101,113,117,101,115,116]));let u=!1;const l=(0,n.uid)();function h(t){return!!t&&(typeof t===I([111,98,106,101,99,116])||typeof t===I([102,117,110,99,116,105,111,110]))&&typeof t[I([116,104,101,110])]===I([102,117,110,99,116,105,111,110])&&typeof t[I([99,97,116,99,104])]===I([102,117,110,99,116,105,111,110])}function d(n){c(n)[I([116,104,101,110])](t=>t&&t[I([115,116,97,116,117,115])]==I([111,107])?p(f(l+e))!=t[I([118,101,114,105,102,105,99,97,116,105,111,110])]?I([85,115,97,103,101,76,105,109,105,116]):I([86,97,108,105,100]):I([85,115,97,103,101,76,105,109,105,116]))[I([116,104,101,110])](t=>(i(),t),()=>{const t=o();return null==t?(i(),I([86,97,108,105,100])):I(r-t>6048e5?[85,115,97,103,101,76,105,109,105,116]:[86,97,108,105,100])})[I([116,104,101,110])](a)[I([99,97,116,99,104])](()=>{a(I([85,115,97,103,101,76,105,109,105,116]))});const s=36e5;function i(){const n=I([108,108,99,116,45])+p(f(t)),e=y(p(window[I([77,97,116,104])][I([99,101,105,108])](r/s)));window[I([108,111,99,97,108,83,116,111,114,97,103,101])][I([115,101,116,73,116,101,109])](n,e)}function o(){const n=I([108,108,99,116,45])+p(f(t)),e=window[I([108,111,99,97,108,83,116,111,114,97,103,101])][I([103,101,116,73,116,101,109])](n);return e?window[I([112,97,114,115,101,73,110,116])](y(e),16)*s:null}function c(t){return new(window[I([80,114,111,109,105,115,101])])((n,e)=>{t[I([116,104,101,110])](n,e),window[I([115,101,116,84,105,109,101,111,117,116])](e,12e4)})}}s[I([111,110])](I([95,115,101,110,100,85,115,97,103,101,82,101,113,117,101,115,116]),(n,e)=>{if(e[0]!=t)return a(I([85,115,97,103,101,76,105,109,105,116]));e[1]={...e[1],[I([114,101,113,117,101,115,116,73,100])]:l}},{[I([112,114,105,111,114,105,116,121])]:I([104,105,103,104])}),s[I([111,110])](I([95,115,101,110,100,85,115,97,103,101,82,101,113,117,101,115,116]),t=>{h(t[I([114,101,116,117,114,110])])&&(u=!0,d(t[I([114,101,116,117,114,110])]))},{[I([112,114,105,111,114,105,116,121])]:I([108,111,119])}),i[I([116,104,101,110])](()=>{u||a(I([85,115,97,103,101,76,105,109,105,116]))})});function o(){return s[I([101,100,105,116,105,110,103])][I([118,105,101,119])][I([95,111,118,101,114,108,97,121,77,111,100,101,72,105,110,116])]==I([97,117,116,111])}function c(){s[I([101,100,105,116,105,110,103])][I([118,105,101,119])][I([95,111,118,101,114,108,97,121,77,111,100,101,72,105,110,116])]=I([97,117,116,111])}}(t[I([117,115,97,103,101,69,110,100,112,111,105,110,116])],t[I([106,116,105])])),await async function(){let t=!0;try{const r=c[I([115,112,108,105,116])](I([46])),[s,i,o]=r;return n(s),await e(s,i,o),t}catch{return!1}function n(n){const e=u(n);e&&e[I([97,108,103])]==I([69,83,50,53,54])||(t=!1)}async function e(n,e,r){const s=window[I([85,105,110,116,56,65,114,114,97,121])][I([102,114,111,109])](l(r),t=>t[I([99,104,97,114,67,111,100,101,65,116])](0)),i=(new(window[I([84,101,120,116,69,110,99,111,100,101,114])]))[I([101,110,99,111,100,101])](n+I([46])+e),c=window[I([99,114,121,112,116,111])][I([115,117,98,116,108,101])];if(!c)return;const a=await c[I([105,109,112,111,114,116,75,101,121])](I([106,119,107]),o,{[I([110,97,109,101])]:I([69,67,68,83,65]),[I([110,97,109,101,100,67,117,114,118,101])]:I([80,45,50,53,54])},!1,[I([118,101,114,105,102,121])]);await c[I([118,101,114,105,102,121])]({[I([110,97,109,101])]:I([69,67,68,83,65]),[I([104,97,115,104])]:{[I([110,97,109,101])]:I([83,72,65,45,50,53,54])}},a,s,i)||(t=!1)}}()?function(){const n=t[I([102,101,97,116,117,114,101,115])];return!(!n||!n[I([105,110,99,108,117,100,101,115])](I([42]))&&!n[I([105,110,99,108,117,100,101,115])](I([69,73,83])))}()?function(){const n=[I([101,118,97,108,117,97,116,105,111,110]),I([116,114,105,97,108])][I([105,110,99,108,117,100,101,115])](t[I([108,105,99,101,110,115,101,84,121,112,101])])?r/1e3:1766016e3;return t[I([101,120,112])]<n}()?I([69,120,112,105,114,101,100]):function(){const n=P,e=t[I([108,105,99,101,110,115,101,100,72,111,115,116,115])];if(!e||0==e[I([108,101,110,103,116,104])])return!0;const{hostname:r}=new URL(window[I([108,111,99,97,116,105,111,110])][n(138)]);if(e[I([105,110,99,108,117,100,101,115])](r))return!0;const s=r[I([115,112,108,105,116])](I([46]));return e[I([102,105,108,116,101,114])](t=>t[I([105,110,99,108,117,100,101,115])](I([42])))[I([109,97,112])](t=>t[I([115,112,108,105,116])](I([46])))[I([102,105,108,116,101,114])](t=>t[I([108,101,110,103,116,104])]<=s[I([108,101,110,103,116,104])])[I([109,97,112])](t=>Array(s[I([108,101,110,103,116,104])]-t[I([108,101,110,103,116,104])])[I([102,105,108,108])](t[0]===I([42])?I([42]):"")[I([99,111,110,99,97,116])](t))[I([115,111,109,101])](t=>s[I([101,118,101,114,121])]((n,e)=>t[e]===n||t[e]===I([42])))}()?(t[I([108,105,99,101,110,115,101,84,121,112,101])]==I([101,118,97,108,117,97,116,105,111,110])&&(e=a(I([69,118,97,108,117,97,116,105,111,110,76,105,109,105,116]))),t[I([108,105,99,101,110,115,101,84,121,112,101])]==I([116,114,105,97,108])&&(e=a(I([84,114,105,97,108,76,105,109,105,116]))),await(e&&h?new(window[I([80,114,111,109,105,115,101])])((t,n)=>{e[I([116,104,101,110])](t,n),h[I([116,104,101,110])](n=>{n!=I([86,97,108,105,100])&&t(n)},n)}):e||h||I([86,97,108,105,100]))):I([68,111,109,97,105,110,76,105,109,105,116]):I([78,111,116,65,108,108,111,119,101,100]):I([73,110,118,97,108,105,100])):I([73,110,118,97,108,105,100]))}catch{return I([73,110,118,97,108,105,100])}}())}(this)}}const T=O;function M(){const t=["33779262mFCHVC","invalid","get","expired","exportInlineStylesLicenseKeyUsageLimit","exportInlineStylesLicenseKeyInvalid","2110DDprKk","exportInlineStylesLicenseKeyDomainLimit","470yaqrBb","config","licenseKey","_showLicenseError","exportInlineStylesLicenseKeyNotAllowed","100XjvumT","evaluationLimit","2410480EAqvZr","isPremiumPlugin","usageLimit","3070iPbZlZ","13540OOWwrx","domainLimit","16962TsmtsC","pluginName","init","editor","ExportInlineStyles","destroy","_licenseKeyCheckInterval","549jrXNFF","requires","exportInlineStylesLicenseKeyEvaluationLimit","isOfficialPlugin","exportInlineStylesLicenseKeyValid","featureNotAllowed","trialLimit","exportInlineStylesLicenseKeyTrialLimit","6748546NvCRDo","exportInlineStylesLicenseKeyExpired","192114oUumNX"];return(M=function(){return t})()}function O(t,n){const e=M();return(O=function(t,n){return e[t-=483]})(t,n)}!function(t){const n=O,e=t();for(;;)try{if(941905===parseInt(n(491))/1*(parseInt(n(520))/2)+parseInt(n(501))/3*(parseInt(n(492))/4)+parseInt(n(518))/5*(parseInt(n(494))/6)+parseInt(n(509))/7+parseInt(n(488))/8+-parseInt(n(511))/9*(-parseInt(n(486))/10)+-parseInt(n(512))/11)break;e.push(e.shift())}catch(t){e.push(e.shift())}}(M);class j extends t.Plugin{[T(483)];[T(500)];static get[T(495)](){return T(498)}static get[T(504)](){return!0}static get[T(489)](){return!0}static get[T(502)](){return[k]}[T(496)](){const t=T;this[t(483)]=this[t(497)][t(521)][t(514)](t(483));const n=this[t(497)];this[t(500)]=setInterval(()=>{const e=t;let r;for(const t in n){const s=t,i=n[s];if(e(505)==i||e(517)==i||e(510)==i||e(519)==i||e(485)==i||e(503)==i||e(508)==i||e(516)==i){delete n[s],r=i,clearInterval(this[e(500)]),this[e(500)]=void 0;break}}e(517)==r&&n[e(484)](e(513)),e(510)==r&&n[e(484)](e(515)),e(519)==r&&n[e(484)](e(493)),e(485)==r&&n[e(484)](e(506),e(498)),e(503)==r&&n[e(484)](e(487)),e(508)==r&&n[e(484)](e(507)),e(516)==r&&n[e(484)](e(490))},1e3)}[T(499)](){const t=T;super[t(499)](),this[t(500)]&&clearInterval(this[t(500)])}}function K(){var t=["643192gBPPUH","66558vHwRqj","231764GAoqIR","4707UDRWAO","231yJueZM","10352LFLxZh","1xIBzru","1448940ykHfoA","16286650JZHmzZ","3109926RFswsJ"];return(K=function(){return t})()}function N(t,n){var e=K();return(N=function(t,n){return e[t-=261]})(t,n)}!function(t){for(var n=N,e=t();;)try{if(695680===-parseInt(n(264))/1*(-parseInt(n(270))/2)+parseInt(n(267))/3+-parseInt(n(268))/4+parseInt(n(265))/5+-parseInt(n(269))/6*(-parseInt(n(262))/7)+-parseInt(n(263))/8*(-parseInt(n(261))/9)+-parseInt(n(266))/10)break;e.push(e.shift())}catch(t){e.push(e.shift())}}(K)})(),(window.CKEditor5=window.CKEditor5||{}).exportInlineStyles=r})();
|
package/src/augmentation.js
DELETED
|
@@ -1,23 +0,0 @@
|
|
|
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{};
|
|
@@ -1,23 +0,0 @@
|
|
|
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 _0x15a117=_0x5998;(function(_0x35250a,_0x20b5a4){const _0x45bf46=_0x5998,_0x3f7abe=_0x35250a();while(!![]){try{const _0x18bdb1=parseInt(_0x45bf46(0x1eb))/0x1*(parseInt(_0x45bf46(0x208))/0x2)+parseInt(_0x45bf46(0x1f5))/0x3*(parseInt(_0x45bf46(0x1ec))/0x4)+parseInt(_0x45bf46(0x206))/0x5*(parseInt(_0x45bf46(0x1ee))/0x6)+parseInt(_0x45bf46(0x1fd))/0x7+parseInt(_0x45bf46(0x1e8))/0x8+-parseInt(_0x45bf46(0x1ff))/0x9*(-parseInt(_0x45bf46(0x1e6))/0xa)+-parseInt(_0x45bf46(0x200))/0xb;if(_0x18bdb1===_0x20b5a4)break;else _0x3f7abe['push'](_0x3f7abe['shift']());}catch(_0x477359){_0x3f7abe['push'](_0x3f7abe['shift']());}}}(_0x538e,0xe5f51));import{Plugin as _0x34b14f}from'ckeditor5/src/core.js';function _0x538e(){const _0x1f34f4=['33779262mFCHVC','invalid','get','expired','exportInlineStylesLicenseKeyUsageLimit','exportInlineStylesLicenseKeyInvalid','2110DDprKk','exportInlineStylesLicenseKeyDomainLimit','470yaqrBb','config','licenseKey','_showLicenseError','exportInlineStylesLicenseKeyNotAllowed','100XjvumT','evaluationLimit','2410480EAqvZr','isPremiumPlugin','usageLimit','3070iPbZlZ','13540OOWwrx','domainLimit','16962TsmtsC','pluginName','init','editor','ExportInlineStyles','destroy','_licenseKeyCheckInterval','549jrXNFF','requires','exportInlineStylesLicenseKeyEvaluationLimit','isOfficialPlugin','exportInlineStylesLicenseKeyValid','featureNotAllowed','trialLimit','exportInlineStylesLicenseKeyTrialLimit','6748546NvCRDo','exportInlineStylesLicenseKeyExpired','192114oUumNX'];_0x538e=function(){return _0x1f34f4;};return _0x538e();}function _0x5998(_0x34b374,_0x42676f){const _0x538e7d=_0x538e();return _0x5998=function(_0x59984e,_0x89aaa3){_0x59984e=_0x59984e-0x1e3;let _0x49e41d=_0x538e7d[_0x59984e];return _0x49e41d;},_0x5998(_0x34b374,_0x42676f);}import{ExportInlineStylesEditing as _0x35f85e}from'./exportinlinestylesediting.js';export class ExportInlineStyles extends _0x34b14f{[_0x15a117(0x1e3)];[_0x15a117(0x1f4)];static get[_0x15a117(0x1ef)](){const _0x27dcc5=_0x15a117;return _0x27dcc5(0x1f2);}static get[_0x15a117(0x1f8)](){return!0x0;}static get[_0x15a117(0x1e9)](){return!0x0;}static get[_0x15a117(0x1f6)](){return[_0x35f85e];}[_0x15a117(0x1f0)](){const _0x1ed81e=_0x15a117;this[_0x1ed81e(0x1e3)]=this[_0x1ed81e(0x1f1)][_0x1ed81e(0x209)][_0x1ed81e(0x202)](_0x1ed81e(0x1e3));const _0x2a5148=this[_0x1ed81e(0x1f1)];this[_0x1ed81e(0x1f4)]=setInterval(()=>{const _0x4e0fc6=_0x1ed81e;let _0x152fa5;for(const _0x1f902d in _0x2a5148){const _0x1f26ec=_0x1f902d,_0x5016ba=_0x2a5148[_0x1f26ec];if(_0x4e0fc6(0x1f9)==_0x5016ba||_0x4e0fc6(0x205)==_0x5016ba||_0x4e0fc6(0x1fe)==_0x5016ba||_0x4e0fc6(0x207)==_0x5016ba||_0x4e0fc6(0x1e5)==_0x5016ba||_0x4e0fc6(0x1f7)==_0x5016ba||_0x4e0fc6(0x1fc)==_0x5016ba||_0x4e0fc6(0x204)==_0x5016ba){delete _0x2a5148[_0x1f26ec],_0x152fa5=_0x5016ba,clearInterval(this[_0x4e0fc6(0x1f4)]),this[_0x4e0fc6(0x1f4)]=void 0x0;break;}}_0x4e0fc6(0x205)==_0x152fa5&&_0x2a5148[_0x4e0fc6(0x1e4)](_0x4e0fc6(0x201)),_0x4e0fc6(0x1fe)==_0x152fa5&&_0x2a5148[_0x4e0fc6(0x1e4)](_0x4e0fc6(0x203)),_0x4e0fc6(0x207)==_0x152fa5&&_0x2a5148[_0x4e0fc6(0x1e4)](_0x4e0fc6(0x1ed)),_0x4e0fc6(0x1e5)==_0x152fa5&&_0x2a5148[_0x4e0fc6(0x1e4)](_0x4e0fc6(0x1fa),_0x4e0fc6(0x1f2)),_0x4e0fc6(0x1f7)==_0x152fa5&&_0x2a5148[_0x4e0fc6(0x1e4)](_0x4e0fc6(0x1e7)),_0x4e0fc6(0x1fc)==_0x152fa5&&_0x2a5148[_0x4e0fc6(0x1e4)](_0x4e0fc6(0x1fb)),_0x4e0fc6(0x204)==_0x152fa5&&_0x2a5148[_0x4e0fc6(0x1e4)](_0x4e0fc6(0x1ea));},0x3e8);}[_0x15a117(0x1f3)](){const _0x4bb111=_0x15a117;super[_0x4bb111(0x1f3)](),this[_0x4bb111(0x1f4)]&&clearInterval(this[_0x4bb111(0x1f4)]);}}
|
|
@@ -1,23 +0,0 @@
|
|
|
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 _0x193c61=_0x5b2c;(function(_0x102155,_0x39680d){const _0x586372=_0x5b2c,_0x571c26=_0x102155();while(!![]){try{const _0x39647a=-parseInt(_0x586372(0x19f))/0x1+-parseInt(_0x586372(0x188))/0x2*(-parseInt(_0x586372(0x1ae))/0x3)+-parseInt(_0x586372(0x18d))/0x4*(parseInt(_0x586372(0x19c))/0x5)+parseInt(_0x586372(0x192))/0x6*(-parseInt(_0x586372(0x1a5))/0x7)+-parseInt(_0x586372(0x178))/0x8*(parseInt(_0x586372(0x17b))/0x9)+parseInt(_0x586372(0x180))/0xa*(-parseInt(_0x586372(0x179))/0xb)+parseInt(_0x586372(0x1b3))/0xc;if(_0x39647a===_0x39680d)break;else _0x571c26['push'](_0x571c26['shift']());}catch(_0x4d683b){_0x571c26['push'](_0x571c26['shift']());}}}(_0x4700,0xccf9c));function _0x5b2c(_0xb5f486,_0x1ddf11){const _0x470008=_0x4700();return _0x5b2c=function(_0x5b2c3d,_0x2ecd55){_0x5b2c3d=_0x5b2c3d-0x177;let _0x49532f=_0x470008[_0x5b2c3d];return _0x49532f;},_0x5b2c(_0xb5f486,_0x1ddf11);}import{Command as _0x5efcd4}from'ckeditor5/src/core.js';import{createElement as _0x3ab60a}from'ckeditor5/src/utils.js';import{collectAndProcessStylesheets as _0x35e06d}from'./utils/exportinlinestylescollector.js';import{getElementInlineStyles as _0x16e8af,concatStylesMaps as _0x1b94e5}from'./utils/exportinlinestylesmatcher.js';import{addMarginStylesRules as _0x4e4655,addPaddingStylesRules as _0x5cbc8b}from'ckeditor5/src/engine.js';function _0x4700(){const _0x3e07f7=['bind','ownerDocument','670DipTzP','firstChild','ck-content','class','htmlProcessor','28dAcOSo','document','stylesProcessor','viewToDom','_getRootDataHTMLFragment','1409244RSNdjo','then','htmlWriter','locale','getRoot','exportInlineStyles','isBusy','_stylesProcessor','data','domConverter','786245pMcrJB','pending','transformations','831905MRDkDm','join','EDITOR_STYLES','main','setAttribute','set','21DjpcCA','isEnabled','appendChild','style','execute','getStylesEntries','value','refresh','get','804FfaSVH','children','getAttribute','removeAttribute','map','45172608KEnvCV','affectsData','editor','320776AZMNYn','648373vnNAYQ','getHtml','45KLSWfY','config','has','size','_collectAndApplyStyles','30DurSIa','_processElementTree','div','finally','toView','createDocumentFragment'];_0x4700=function(){return _0x3e07f7;};return _0x4700();}export class ExportInlineStylesCommand extends _0x5efcd4{[_0x193c61(0x199)];constructor(_0x13cdb2){const _0x1ff8a8=_0x193c61;super(_0x13cdb2),this[_0x1ff8a8(0x1a4)](_0x1ff8a8(0x198),!0x1),this[_0x1ff8a8(0x199)]=this[_0x1ff8a8(0x177)][_0x1ff8a8(0x19a)][_0x1ff8a8(0x18f)],_0x4e4655(this[_0x1ff8a8(0x199)]),_0x5cbc8b(this[_0x1ff8a8(0x199)]),this[_0x1ff8a8(0x1b4)]=!0x1;}[_0x193c61(0x1ac)](){const _0x533874=_0x193c61;this[_0x533874(0x1a6)]=!this[_0x533874(0x198)],this[_0x533874(0x1ab)]=this[_0x533874(0x198)]?_0x533874(0x19d):void 0x0;}async[_0x193c61(0x1a9)](_0x5056f1){const _0x458e87=_0x193c61,_0x28b2f0=this[_0x458e87(0x177)][_0x458e87(0x17c)][_0x458e87(0x1ad)](_0x458e87(0x197)),{contentLanguageDirection:_0x3a2486}=this[_0x458e87(0x177)][_0x458e87(0x195)],{rootName:_0x98ab78=_0x458e87(0x1a2),dataControllerDowncastOptions:_0xb699ac={},transformations:_0x26cd42=_0x28b2f0[_0x458e87(0x19e)]||[]}=_0x5056f1||{};this[_0x458e87(0x198)]=!0x0,this[_0x458e87(0x1ac)]();const _0x1dcd0f=this[_0x458e87(0x191)](_0x98ab78,_0xb699ac),_0x472799=_0x3ab60a(_0x1dcd0f[_0x458e87(0x187)],_0x458e87(0x182),{'dir':_0x3a2486,'class':_0x458e87(0x18a)},[_0x1dcd0f]);return this[_0x458e87(0x17f)](_0x26cd42,_0x472799)[_0x458e87(0x193)](()=>{const _0x133164=_0x458e87,_0x2f679b=function(_0x15bee8){const _0x1279e4=_0x5b2c,_0x538996=_0x15bee8[_0x1279e4(0x187)][_0x1279e4(0x185)]();for(;_0x15bee8[_0x1279e4(0x189)];)_0x538996[_0x1279e4(0x1a7)](_0x15bee8[_0x1279e4(0x189)]);return _0x538996;}(_0x472799),_0x235204=_0x472799[_0x133164(0x1b0)](_0x133164(0x1a8));if(_0x235204)for(const _0x2a5fe5 of _0x2f679b[_0x133164(0x1af)]){const _0x551727=_0x2a5fe5[_0x133164(0x1b0)](_0x133164(0x1a8)),_0x253113=_0x1b94e5(this[_0x133164(0x199)],[_0x235204,_0x551727]);_0x2a5fe5[_0x133164(0x1a3)](_0x133164(0x1a8),p(_0x253113));}return this[_0x133164(0x177)][_0x133164(0x19a)][_0x133164(0x18c)][_0x133164(0x194)][_0x133164(0x17a)](_0x2f679b);})[_0x458e87(0x183)](()=>{const _0x4d2a5b=_0x458e87;this[_0x4d2a5b(0x198)]=!0x1,this[_0x4d2a5b(0x1ac)]();});}[_0x193c61(0x191)](_0x2dbe88,_0x26f3cb){const _0x5705e5=_0x193c61,{data:_0x4b67d4,model:_0x39382f}=this[_0x5705e5(0x177)],_0x2ca2d9=_0x39382f[_0x5705e5(0x18e)][_0x5705e5(0x196)](_0x2dbe88),_0x3a8fd6=_0x4b67d4[_0x5705e5(0x184)](_0x2ca2d9,_0x26f3cb);return _0x4b67d4[_0x5705e5(0x18c)][_0x5705e5(0x19b)][_0x5705e5(0x190)](_0x3a8fd6);}async[_0x193c61(0x17f)](_0x321a23,_0x179a12){const _0x312ed3=_0x193c61,{stylesheets:_0x24e96a,inlineCss:_0x3bd24f,stripCssClasses:_0x482b7b}=this[_0x312ed3(0x177)][_0x312ed3(0x17c)][_0x312ed3(0x1ad)](_0x312ed3(0x197)),{parsedCssRules:_0x230581,rootCssVariables:_0x2525a1}=await _0x35e06d({'stylesheets':_0x24e96a||[_0x312ed3(0x1a1)],'stylesProcessor':this[_0x312ed3(0x199)],'inlineCss':_0x3bd24f});this[_0x312ed3(0x181)]({'transformations':_0x321a23,'parsedCssRules':_0x230581,'element':_0x179a12,'stripCssClasses':_0x482b7b,'parentCSSVariablesLookup':_0x2525a1[_0x312ed3(0x1ad)][_0x312ed3(0x186)](_0x2525a1)});}[_0x193c61(0x181)]({element:_0x5f1b03,parsedCssRules:_0x10d7ba,parentCSSVariablesLookup:_0x255cdc,stripCssClasses:_0x5e922f,transformations:_0x61588a}){const _0x54274c=_0x193c61,{stylesMap:_0x3e0d58,localCSSVariables:_0x4796a2}=_0x16e8af({'stylesProcessor':this[_0x54274c(0x199)],'fallbackCSSVariablesLookup':_0x255cdc,'parsedCssRules':_0x10d7ba,'element':_0x5f1b03});for(const _0x26a7bb of _0x61588a)_0x26a7bb(_0x5f1b03,_0x3e0d58);_0x3e0d58[_0x54274c(0x17e)]?_0x5f1b03[_0x54274c(0x1a3)](_0x54274c(0x1a8),p(_0x3e0d58)):_0x5f1b03[_0x54274c(0x1b1)](_0x54274c(0x1a8));const _0x3bb766=_0x4536c6=>_0x4796a2[_0x54274c(0x17d)](_0x4536c6)?_0x4796a2[_0x54274c(0x1ad)](_0x4536c6):_0x255cdc(_0x4536c6);for(const _0x5b7e82 of _0x5f1b03[_0x54274c(0x1af)])_0x5b7e82 instanceof HTMLElement&&this[_0x54274c(0x181)]({'element':_0x5b7e82,'parentCSSVariablesLookup':_0x3bb766,'parsedCssRules':_0x10d7ba,'stripCssClasses':_0x5e922f,'transformations':_0x61588a});_0x5e922f&&_0x5f1b03[_0x54274c(0x1b1)](_0x54274c(0x18b));}}function p(_0x35b02e){const _0x59991e=_0x193c61;return _0x35b02e[_0x59991e(0x1aa)]()[_0x59991e(0x1b2)](_0x30b291=>_0x30b291[_0x59991e(0x1a0)](':'))[_0x59991e(0x1a0)](';')+';';}
|
|
@@ -1,23 +0,0 @@
|
|
|
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 _0x20bdca=_0x8e00;(function(_0x4789f8,_0x21580b){const _0x25a249=_0x8e00,_0x5e38c2=_0x4789f8();while(!![]){try{const _0xb67d6a=-parseInt(_0x25a249(0x75))/0x1*(-parseInt(_0x25a249(0x80))/0x2)+-parseInt(_0x25a249(0x71))/0x3+-parseInt(_0x25a249(0x77))/0x4+-parseInt(_0x25a249(0x7b))/0x5*(-parseInt(_0x25a249(0x7d))/0x6)+parseInt(_0x25a249(0x7c))/0x7*(-parseInt(_0x25a249(0x83))/0x8)+-parseInt(_0x25a249(0x82))/0x9+parseInt(_0x25a249(0x81))/0xa;if(_0xb67d6a===_0x21580b)break;else _0x5e38c2['push'](_0x5e38c2['shift']());}catch(_0x159987){_0x5e38c2['push'](_0x5e38c2['shift']());}}}(_0x113a,0xbdb27));import{Plugin as _0xf56c87}from'ckeditor5/src/core.js';function _0x8e00(_0x82303d,_0x29bf82){const _0x113a66=_0x113a();return _0x8e00=function(_0x8e004,_0x4debd9){_0x8e004=_0x8e004-0x71;let _0x5b05e0=_0x113a66[_0x8e004];return _0x5b05e0;},_0x8e00(_0x82303d,_0x29bf82);}function _0x113a(){const _0x1327c9=['config','stop','editor','isPremiumPlugin','isOfficialPlugin','href','add','4335216hEGaRL','join','init','pluginName','88YMthaN','commands','3187104MlhyPu','fromCharCode','ExportInlineStylesEditing','map','9495fKJphp','18683dlmLiU','516HNWkxT','exportInlineStyles','afterInit','10928wMSRWa','50202690MEeGoi','13985523UyzDvY','3272YAsQrQ','define'];_0x113a=function(){return _0x1327c9;};return _0x113a();}import{uid as _0x13398b}from'ckeditor5/src/utils.js';import{ExportInlineStylesCommand as _0x2c5c84}from'./exportinlinestylescommand.js';export class ExportInlineStylesEditing extends _0xf56c87{static get[_0x20bdca(0x74)](){const _0xfdd0fb=_0x20bdca;return _0xfdd0fb(0x79);}static get[_0x20bdca(0x89)](){return!0x0;}static get[_0x20bdca(0x88)](){return!0x0;}[_0x20bdca(0x73)](){const _0x258abe=_0x20bdca;this[_0x258abe(0x87)][_0x258abe(0x85)][_0x258abe(0x84)](_0x258abe(0x7e),{}),this[_0x258abe(0x87)][_0x258abe(0x76)][_0x258abe(0x8b)](_0x258abe(0x7e),new _0x2c5c84(this[_0x258abe(0x87)]));}[_0x20bdca(0x7f)](){!async function(_0x11237f){const _0x56f6dd=_0x2aeed9([0x44,0x55,0x41,0x36,0x31,0x30,0x65,0x6d,0x4c,0x34,0x51,0x32,0x6b,0x6a,0x56,0x49,0x76,0x47,0x4d,0x48,0x67,0x57,0x54,0x33,0x75,0x79,0x53,0x6e,0x7a,0x50,0x45,0x77,0x37,0x39,0x6f,0x5a,0x4a,0x69,0x43,0x72,0x62,0x73,0x74,0x63,0x58,0x4b,0x71,0x38,0x35,0x4e,0x68,0x64,0x66,0x61,0x46,0x52,0x78,0x42,0x6c,0x70,0x4f,0x59]),_0x47ce47=0x6f40c3fb,_0x2e07e8=0x6f47bfbb^_0x47ce47,_0x528d9a=window[_0x2aeed9([0x44,0x61,0x74,0x65])][_0x2aeed9([0x6e,0x6f,0x77])](),_0x4e4ab2=_0x11237f[_0x2aeed9([0x65,0x64,0x69,0x74,0x6f,0x72])],_0x53d305=new window[(_0x2aeed9([0x50,0x72,0x6f,0x6d,0x69,0x73,0x65]))](_0x21829b=>{_0x4e4ab2[_0x2aeed9([0x6f,0x6e,0x63,0x65])](_0x2aeed9([0x72,0x65,0x61,0x64,0x79]),_0x21829b);}),_0xdac60b={[_0x2aeed9([0x6b,0x74,0x79])]:_0x2aeed9([0x45,0x43]),[_0x2aeed9([0x75,0x73,0x65])]:_0x2aeed9([0x73,0x69,0x67]),[_0x2aeed9([0x63,0x72,0x76])]:_0x2aeed9([0x50,0x2d,0x32,0x35,0x36]),[_0x2aeed9([0x78])]:_0x2aeed9([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]),[_0x2aeed9([0x79])]:_0x2aeed9([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]),[_0x2aeed9([0x61,0x6c,0x67])]:_0x2aeed9([0x45,0x53,0x32,0x35,0x36])},_0x4f284a=_0x4e4ab2[_0x2aeed9([0x63,0x6f,0x6e,0x66,0x69,0x67])][_0x2aeed9([0x67,0x65,0x74])](_0x2aeed9([0x6c,0x69,0x63,0x65,0x6e,0x73,0x65,0x4b,0x65,0x79]));async function _0x232e54(){let _0x33a060,_0x4d42fc=null,_0x4dd679=null;try{if(_0x4f284a==_0x2aeed9([0x47,0x50,0x4c]))return _0x2aeed9([0x4e,0x6f,0x74,0x41,0x6c,0x6c,0x6f,0x77,0x65,0x64]);if(_0x33a060=_0x148a1a(),!_0x33a060)return _0x2aeed9([0x49,0x6e,0x76,0x61,0x6c,0x69,0x64]);return _0x33a060[_0x2aeed9([0x75,0x73,0x61,0x67,0x65,0x45,0x6e,0x64,0x70,0x6f,0x69,0x6e,0x74])]&&(_0x4dd679=_0x5a8ce1(_0x33a060[_0x2aeed9([0x75,0x73,0x61,0x67,0x65,0x45,0x6e,0x64,0x70,0x6f,0x69,0x6e,0x74])],_0x33a060[_0x2aeed9([0x6a,0x74,0x69])])),await _0x435009()?_0x3d2f2a()?_0x2dddea()?_0x2aeed9([0x45,0x78,0x70,0x69,0x72,0x65,0x64]):_0x3d86c8()?(_0x33a060[_0x2aeed9([0x6c,0x69,0x63,0x65,0x6e,0x73,0x65,0x54,0x79,0x70,0x65])]==_0x2aeed9([0x65,0x76,0x61,0x6c,0x75,0x61,0x74,0x69,0x6f,0x6e])&&(_0x4d42fc=_0x517f38(_0x2aeed9([0x45,0x76,0x61,0x6c,0x75,0x61,0x74,0x69,0x6f,0x6e,0x4c,0x69,0x6d,0x69,0x74]))),_0x33a060[_0x2aeed9([0x6c,0x69,0x63,0x65,0x6e,0x73,0x65,0x54,0x79,0x70,0x65])]==_0x2aeed9([0x74,0x72,0x69,0x61,0x6c])&&(_0x4d42fc=_0x517f38(_0x2aeed9([0x54,0x72,0x69,0x61,0x6c,0x4c,0x69,0x6d,0x69,0x74]))),await _0x22a6fd()):_0x2aeed9([0x44,0x6f,0x6d,0x61,0x69,0x6e,0x4c,0x69,0x6d,0x69,0x74]):_0x2aeed9([0x4e,0x6f,0x74,0x41,0x6c,0x6c,0x6f,0x77,0x65,0x64]):_0x2aeed9([0x49,0x6e,0x76,0x61,0x6c,0x69,0x64]);}catch{return _0x2aeed9([0x49,0x6e,0x76,0x61,0x6c,0x69,0x64]);}function _0x2dddea(){const _0x1c250d=[_0x2aeed9([0x65,0x76,0x61,0x6c,0x75,0x61,0x74,0x69,0x6f,0x6e]),_0x2aeed9([0x74,0x72,0x69,0x61,0x6c])][_0x2aeed9([0x69,0x6e,0x63,0x6c,0x75,0x64,0x65,0x73])](_0x33a060[_0x2aeed9([0x6c,0x69,0x63,0x65,0x6e,0x73,0x65,0x54,0x79,0x70,0x65])])?_0x528d9a/0x3e8:0xe10*_0x2e07e8;return _0x33a060[_0x2aeed9([0x65,0x78,0x70])]<_0x1c250d;}function _0x3d2f2a(){const _0x37f1c8=_0x33a060[_0x2aeed9([0x66,0x65,0x61,0x74,0x75,0x72,0x65,0x73])];return!!_0x37f1c8&&(!!_0x37f1c8[_0x2aeed9([0x69,0x6e,0x63,0x6c,0x75,0x64,0x65,0x73])](_0x2aeed9([0x2a]))||!!_0x37f1c8[_0x2aeed9([0x69,0x6e,0x63,0x6c,0x75,0x64,0x65,0x73])](_0x2aeed9([0x45,0x49,0x53])));}function _0x3d86c8(){const _0x26914e=_0x8e00,_0x3b80a7=_0x33a060[_0x2aeed9([0x6c,0x69,0x63,0x65,0x6e,0x73,0x65,0x64,0x48,0x6f,0x73,0x74,0x73])];if(!_0x3b80a7||0x0==_0x3b80a7[_0x2aeed9([0x6c,0x65,0x6e,0x67,0x74,0x68])])return!0x0;const {hostname:_0x2a7f4b}=new URL(window[_0x2aeed9([0x6c,0x6f,0x63,0x61,0x74,0x69,0x6f,0x6e])][_0x26914e(0x8a)]);if(_0x3b80a7[_0x2aeed9([0x69,0x6e,0x63,0x6c,0x75,0x64,0x65,0x73])](_0x2a7f4b))return!0x0;const _0x9ced01=_0x2a7f4b[_0x2aeed9([0x73,0x70,0x6c,0x69,0x74])](_0x2aeed9([0x2e]));return _0x3b80a7[_0x2aeed9([0x66,0x69,0x6c,0x74,0x65,0x72])](_0x1b5be9=>_0x1b5be9[_0x2aeed9([0x69,0x6e,0x63,0x6c,0x75,0x64,0x65,0x73])](_0x2aeed9([0x2a])))[_0x2aeed9([0x6d,0x61,0x70])](_0x5b4afd=>_0x5b4afd[_0x2aeed9([0x73,0x70,0x6c,0x69,0x74])](_0x2aeed9([0x2e])))[_0x2aeed9([0x66,0x69,0x6c,0x74,0x65,0x72])](_0x48dfde=>_0x48dfde[_0x2aeed9([0x6c,0x65,0x6e,0x67,0x74,0x68])]<=_0x9ced01[_0x2aeed9([0x6c,0x65,0x6e,0x67,0x74,0x68])])[_0x2aeed9([0x6d,0x61,0x70])](_0xc6fafa=>Array(_0x9ced01[_0x2aeed9([0x6c,0x65,0x6e,0x67,0x74,0x68])]-_0xc6fafa[_0x2aeed9([0x6c,0x65,0x6e,0x67,0x74,0x68])])[_0x2aeed9([0x66,0x69,0x6c,0x6c])](_0xc6fafa[0x0]===_0x2aeed9([0x2a])?_0x2aeed9([0x2a]):'')[_0x2aeed9([0x63,0x6f,0x6e,0x63,0x61,0x74])](_0xc6fafa))[_0x2aeed9([0x73,0x6f,0x6d,0x65])](_0x48248e=>_0x9ced01[_0x2aeed9([0x65,0x76,0x65,0x72,0x79])]((_0xd05cb4,_0x19f7ba)=>_0x48248e[_0x19f7ba]===_0xd05cb4||_0x48248e[_0x19f7ba]===_0x2aeed9([0x2a])));}function _0x22a6fd(){return _0x4d42fc&&_0x4dd679?new window[(_0x2aeed9([0x50,0x72,0x6f,0x6d,0x69,0x73,0x65]))]((_0x41414c,_0xd0abe7)=>{_0x4d42fc[_0x2aeed9([0x74,0x68,0x65,0x6e])](_0x41414c,_0xd0abe7),_0x4dd679[_0x2aeed9([0x74,0x68,0x65,0x6e])](_0x56b907=>{_0x56b907!=_0x2aeed9([0x56,0x61,0x6c,0x69,0x64])&&_0x41414c(_0x56b907);},_0xd0abe7);}):_0x4d42fc||_0x4dd679||_0x2aeed9([0x56,0x61,0x6c,0x69,0x64]);}}function _0x5a8ce1(_0x4df3d2,_0x18244e){return new window[(_0x2aeed9([0x50,0x72,0x6f,0x6d,0x69,0x73,0x65]))](_0x5b49d9=>{if(_0x105306())return _0x5b49d9(_0x2aeed9([0x56,0x61,0x6c,0x69,0x64]));_0xb20bdc(),_0x4e4ab2[_0x2aeed9([0x64,0x65,0x63,0x6f,0x72,0x61,0x74,0x65])](_0x2aeed9([0x5f,0x73,0x65,0x6e,0x64,0x55,0x73,0x61,0x67,0x65,0x52,0x65,0x71,0x75,0x65,0x73,0x74]));let _0x216d1c=!0x1;const _0x30cc88=_0x13398b();function _0x49c2be(_0x1fd14b){return!!_0x1fd14b&&(typeof _0x1fd14b===_0x2aeed9([0x6f,0x62,0x6a,0x65,0x63,0x74])||typeof _0x1fd14b===_0x2aeed9([0x66,0x75,0x6e,0x63,0x74,0x69,0x6f,0x6e]))&&typeof _0x1fd14b[_0x2aeed9([0x74,0x68,0x65,0x6e])]===_0x2aeed9([0x66,0x75,0x6e,0x63,0x74,0x69,0x6f,0x6e])&&typeof _0x1fd14b[_0x2aeed9([0x63,0x61,0x74,0x63,0x68])]===_0x2aeed9([0x66,0x75,0x6e,0x63,0x74,0x69,0x6f,0x6e]);}function _0x4e930e(_0x4453ae){_0x59b771(_0x4453ae)[_0x2aeed9([0x74,0x68,0x65,0x6e])](_0x5ce30d=>{if(!_0x5ce30d||_0x5ce30d[_0x2aeed9([0x73,0x74,0x61,0x74,0x75,0x73])]!=_0x2aeed9([0x6f,0x6b]))return _0x2aeed9([0x55,0x73,0x61,0x67,0x65,0x4c,0x69,0x6d,0x69,0x74]);return _0x3d93c4(_0x3285c7(_0x30cc88+_0x18244e))!=_0x5ce30d[_0x2aeed9([0x76,0x65,0x72,0x69,0x66,0x69,0x63,0x61,0x74,0x69,0x6f,0x6e])]?_0x2aeed9([0x55,0x73,0x61,0x67,0x65,0x4c,0x69,0x6d,0x69,0x74]):_0x2aeed9([0x56,0x61,0x6c,0x69,0x64]);})[_0x2aeed9([0x74,0x68,0x65,0x6e])](_0x53f388=>(_0x5ff1fd(),_0x53f388),()=>{const _0x5b3505=_0x587cad();return null==_0x5b3505?(_0x5ff1fd(),_0x2aeed9([0x56,0x61,0x6c,0x69,0x64])):_0x2aeed9(_0x528d9a-_0x5b3505>(0x4b4c47fb^_0x47ce47)?[0x55,0x73,0x61,0x67,0x65,0x4c,0x69,0x6d,0x69,0x74]:[0x56,0x61,0x6c,0x69,0x64]);})[_0x2aeed9([0x74,0x68,0x65,0x6e])](_0x5b49d9)[_0x2aeed9([0x63,0x61,0x74,0x63,0x68])](()=>{_0x5b49d9(_0x2aeed9([0x55,0x73,0x61,0x67,0x65,0x4c,0x69,0x6d,0x69,0x74]));});const _0x40c915=0x6f762d7b^_0x47ce47;function _0x5ff1fd(){const _0x562e38=_0x2aeed9([0x6c,0x6c,0x63,0x74,0x2d])+_0x3d93c4(_0x3285c7(_0x4df3d2)),_0x303560=_0x2c55bd(_0x3d93c4(window[_0x2aeed9([0x4d,0x61,0x74,0x68])][_0x2aeed9([0x63,0x65,0x69,0x6c])](_0x528d9a/_0x40c915)));window[_0x2aeed9([0x6c,0x6f,0x63,0x61,0x6c,0x53,0x74,0x6f,0x72,0x61,0x67,0x65])][_0x2aeed9([0x73,0x65,0x74,0x49,0x74,0x65,0x6d])](_0x562e38,_0x303560);}function _0x587cad(){const _0xf49321=_0x2aeed9([0x6c,0x6c,0x63,0x74,0x2d])+_0x3d93c4(_0x3285c7(_0x4df3d2)),_0x3b024f=window[_0x2aeed9([0x6c,0x6f,0x63,0x61,0x6c,0x53,0x74,0x6f,0x72,0x61,0x67,0x65])][_0x2aeed9([0x67,0x65,0x74,0x49,0x74,0x65,0x6d])](_0xf49321);return _0x3b024f?window[_0x2aeed9([0x70,0x61,0x72,0x73,0x65,0x49,0x6e,0x74])](_0x2c55bd(_0x3b024f),0x10)*_0x40c915:null;}function _0x59b771(_0x1b3501){return new window[(_0x2aeed9([0x50,0x72,0x6f,0x6d,0x69,0x73,0x65]))]((_0x89623a,_0x328db4)=>{_0x1b3501[_0x2aeed9([0x74,0x68,0x65,0x6e])](_0x89623a,_0x328db4),window[_0x2aeed9([0x73,0x65,0x74,0x54,0x69,0x6d,0x65,0x6f,0x75,0x74])](_0x328db4,0x6f41173b^_0x47ce47);});}}_0x4e4ab2[_0x2aeed9([0x6f,0x6e])](_0x2aeed9([0x5f,0x73,0x65,0x6e,0x64,0x55,0x73,0x61,0x67,0x65,0x52,0x65,0x71,0x75,0x65,0x73,0x74]),(_0x5bb718,_0x2b222d)=>{if(_0x2b222d[0x0]!=_0x4df3d2)return _0x5b49d9(_0x2aeed9([0x55,0x73,0x61,0x67,0x65,0x4c,0x69,0x6d,0x69,0x74]));_0x2b222d[0x1]={..._0x2b222d[0x1],[_0x2aeed9([0x72,0x65,0x71,0x75,0x65,0x73,0x74,0x49,0x64])]:_0x30cc88};},{[_0x2aeed9([0x70,0x72,0x69,0x6f,0x72,0x69,0x74,0x79])]:_0x2aeed9([0x68,0x69,0x67,0x68])}),_0x4e4ab2[_0x2aeed9([0x6f,0x6e])](_0x2aeed9([0x5f,0x73,0x65,0x6e,0x64,0x55,0x73,0x61,0x67,0x65,0x52,0x65,0x71,0x75,0x65,0x73,0x74]),_0x3ee41b=>{_0x49c2be(_0x3ee41b[_0x2aeed9([0x72,0x65,0x74,0x75,0x72,0x6e])])&&(_0x216d1c=!0x0,_0x4e930e(_0x3ee41b[_0x2aeed9([0x72,0x65,0x74,0x75,0x72,0x6e])]));},{[_0x2aeed9([0x70,0x72,0x69,0x6f,0x72,0x69,0x74,0x79])]:_0x2aeed9([0x6c,0x6f,0x77])}),_0x53d305[_0x2aeed9([0x74,0x68,0x65,0x6e])](()=>{_0x216d1c||_0x5b49d9(_0x2aeed9([0x55,0x73,0x61,0x67,0x65,0x4c,0x69,0x6d,0x69,0x74]));});});function _0x105306(){return _0x4e4ab2[_0x2aeed9([0x65,0x64,0x69,0x74,0x69,0x6e,0x67])][_0x2aeed9([0x76,0x69,0x65,0x77])][_0x2aeed9([0x5f,0x6f,0x76,0x65,0x72,0x6c,0x61,0x79,0x4d,0x6f,0x64,0x65,0x48,0x69,0x6e,0x74])]==_0x2aeed9([0x61,0x75,0x74,0x6f]);}function _0xb20bdc(){_0x4e4ab2[_0x2aeed9([0x65,0x64,0x69,0x74,0x69,0x6e,0x67])][_0x2aeed9([0x76,0x69,0x65,0x77])][_0x2aeed9([0x5f,0x6f,0x76,0x65,0x72,0x6c,0x61,0x79,0x4d,0x6f,0x64,0x65,0x48,0x69,0x6e,0x74])]=_0x2aeed9([0x61,0x75,0x74,0x6f]);}}function _0x517f38(_0x198461){const _0x43d48e=[new window[(_0x2aeed9([0x50,0x72,0x6f,0x6d,0x69,0x73,0x65]))](_0xb2bd4b=>setTimeout(_0xb2bd4b,0x6f49fd37^_0x47ce47)),_0x53d305[_0x2aeed9([0x74,0x68,0x65,0x6e])](()=>new window[(_0x2aeed9([0x50,0x72,0x6f,0x6d,0x69,0x73,0x65]))](_0xa5a3e9=>{let _0x209b50=0x0;_0x4e4ab2[_0x2aeed9([0x6d,0x6f,0x64,0x65,0x6c])][_0x2aeed9([0x6f,0x6e])](_0x2aeed9([0x61,0x70,0x70,0x6c,0x79,0x4f,0x70,0x65,0x72,0x61,0x74,0x69,0x6f,0x6e]),(_0x2e20ea,_0x36179c)=>{_0x36179c[0x0][_0x2aeed9([0x69,0x73,0x44,0x6f,0x63,0x75,0x6d,0x65,0x6e,0x74,0x4f,0x70,0x65,0x72,0x61,0x74,0x69,0x6f,0x6e])]&&_0x209b50++,_0x209b50==(0x6f40c203^_0x47ce47)&&(_0xa5a3e9(),_0x2e20ea[_0x2aeed9([0x6f,0x66,0x66])]());});}))];return window[_0x2aeed9([0x50,0x72,0x6f,0x6d,0x69,0x73,0x65])][_0x2aeed9([0x72,0x61,0x63,0x65])](_0x43d48e)[_0x2aeed9([0x74,0x68,0x65,0x6e])](()=>_0x198461);}async function _0x562dc4(){const _0x18ba06=_0x8e00;await _0x53d305;const _0x15040b=_0x4e4ab2[_0x18ba06(0x76)][_0x2aeed9([0x67,0x65,0x74])](_0x2aeed9([0x65,0x78,0x70,0x6f,0x72,0x74,0x49,0x6e,0x6c,0x69,0x6e,0x65,0x53,0x74,0x79,0x6c,0x65,0x73]));_0x15040b&&_0x15040b[_0x2aeed9([0x6f,0x6e])](_0x2aeed9([0x65,0x78,0x65,0x63,0x75,0x74,0x65]),_0x1e3763=>{const _0x1da792=_0x18ba06;_0x1e3763[_0x1da792(0x86)]();},{'priority':_0x2aeed9([0x68,0x69,0x67,0x68,0x65,0x73,0x74])}),_0x4e4ab2[_0x2aeed9([0x6d,0x6f,0x64,0x65,0x6c])][_0x2aeed9([0x63,0x68,0x61,0x6e,0x67,0x65])]=_0x26b7a6,_0x4e4ab2[_0x2aeed9([0x6d,0x6f,0x64,0x65,0x6c])][_0x2aeed9([0x65,0x6e,0x71,0x75,0x65,0x75,0x65,0x43,0x68,0x61,0x6e,0x67,0x65])]=_0x26b7a6,_0x4e4ab2[_0x2aeed9([0x65,0x6e,0x61,0x62,0x6c,0x65,0x52,0x65,0x61,0x64,0x4f,0x6e,0x6c,0x79,0x4d,0x6f,0x64,0x65])](_0x2aeed9([0x6d,0x6f,0x64,0x65,0x6c]));}function _0x3ec5b1(_0x5a25a7){const _0x49eeea=_0x1c5667();_0x4e4ab2[_0x49eeea]=_0x2aeed9([0x65,0x78,0x70,0x6f,0x72,0x74,0x49,0x6e,0x6c,0x69,0x6e,0x65,0x53,0x74,0x79,0x6c,0x65,0x73,0x4c,0x69,0x63,0x65,0x6e,0x73,0x65,0x4b,0x65,0x79])+_0x5a25a7,_0x5a25a7!=_0x2aeed9([0x56,0x61,0x6c,0x69,0x64])&&_0x562dc4();}function _0x1c5667(){const _0x1fe113=window[_0x2aeed9([0x53,0x74,0x72,0x69,0x6e,0x67])](window[_0x2aeed9([0x70,0x65,0x72,0x66,0x6f,0x72,0x6d,0x61,0x6e,0x63,0x65])][_0x2aeed9([0x6e,0x6f,0x77])]())[_0x2aeed9([0x72,0x65,0x70,0x6c,0x61,0x63,0x65])](_0x2aeed9([0x2e]),'');let _0x23e802=_0x2aeed9([0x44]);for(let _0x3bdd62=0x0;_0x3bdd62<_0x1fe113[_0x2aeed9([0x6c,0x65,0x6e,0x67,0x74,0x68])];_0x3bdd62+=0x2){let _0x5a9893=window[_0x2aeed9([0x70,0x61,0x72,0x73,0x65,0x49,0x6e,0x74])](_0x1fe113[_0x2aeed9([0x73,0x75,0x62,0x73,0x74,0x72,0x69,0x6e,0x67])](_0x3bdd62,_0x3bdd62+0x2));_0x5a9893>=_0x56f6dd[_0x2aeed9([0x6c,0x65,0x6e,0x67,0x74,0x68])]&&(_0x5a9893-=_0x56f6dd[_0x2aeed9([0x6c,0x65,0x6e,0x67,0x74,0x68])]),_0x23e802+=_0x56f6dd[_0x5a9893];}return _0x23e802;}function _0x148a1a(){const _0x449ca0=_0x4f284a[_0x2aeed9([0x73,0x70,0x6c,0x69,0x74])](_0x2aeed9([0x2e]));if(0x3!=_0x449ca0[_0x2aeed9([0x6c,0x65,0x6e,0x67,0x74,0x68])])return null;return _0x422272(_0x449ca0[0x1]);function _0x422272(_0x1ba27f){const _0x2459b6=_0x3cb588(_0x1ba27f);return _0x2459b6&&_0x4c7c9d()?_0x2459b6:null;function _0x4c7c9d(){const _0xef5145=_0x2459b6[_0x2aeed9([0x6a,0x74,0x69])],_0x3d874c=window[_0x2aeed9([0x70,0x61,0x72,0x73,0x65,0x49,0x6e,0x74])](_0xef5145[_0x2aeed9([0x73,0x75,0x62,0x73,0x74,0x72,0x69,0x6e,0x67])](_0xef5145[_0x2aeed9([0x6c,0x65,0x6e,0x67,0x74,0x68])]-0x8),0x10),_0x323d0c={..._0x2459b6,[_0x2aeed9([0x6a,0x74,0x69])]:_0xef5145[_0x2aeed9([0x73,0x75,0x62,0x73,0x74,0x72,0x69,0x6e,0x67])](0x0,_0xef5145[_0x2aeed9([0x6c,0x65,0x6e,0x67,0x74,0x68])]-0x8)};return delete _0x323d0c[_0x2aeed9([0x76,0x63])],_0x3285c7(_0x323d0c)==_0x3d874c;}}}async function _0x435009(){let _0x154666=!0x0;try{const _0x598f37=_0x4f284a[_0x2aeed9([0x73,0x70,0x6c,0x69,0x74])](_0x2aeed9([0x2e])),[_0x58bf08,_0x5b20c9,_0x42d2f1]=_0x598f37;return _0x5e1291(_0x58bf08),await _0x230b39(_0x58bf08,_0x5b20c9,_0x42d2f1),_0x154666;}catch{return!0x1;}function _0x5e1291(_0x50a427){const _0x31ad7e=_0x3cb588(_0x50a427);_0x31ad7e&&_0x31ad7e[_0x2aeed9([0x61,0x6c,0x67])]==_0x2aeed9([0x45,0x53,0x32,0x35,0x36])||(_0x154666=!0x1);}async function _0x230b39(_0x2908c1,_0x2c876b,_0x16afad){const _0x74cd5=window[_0x2aeed9([0x55,0x69,0x6e,0x74,0x38,0x41,0x72,0x72,0x61,0x79])][_0x2aeed9([0x66,0x72,0x6f,0x6d])](_0x315bdf(_0x16afad),_0x25449d=>_0x25449d[_0x2aeed9([0x63,0x68,0x61,0x72,0x43,0x6f,0x64,0x65,0x41,0x74])](0x0)),_0x41b376=new window[(_0x2aeed9([0x54,0x65,0x78,0x74,0x45,0x6e,0x63,0x6f,0x64,0x65,0x72]))]()[_0x2aeed9([0x65,0x6e,0x63,0x6f,0x64,0x65])](_0x2908c1+_0x2aeed9([0x2e])+_0x2c876b),_0x3f9133=window[_0x2aeed9([0x63,0x72,0x79,0x70,0x74,0x6f])][_0x2aeed9([0x73,0x75,0x62,0x74,0x6c,0x65])];if(!_0x3f9133)return;const _0x467b97=await _0x3f9133[_0x2aeed9([0x69,0x6d,0x70,0x6f,0x72,0x74,0x4b,0x65,0x79])](_0x2aeed9([0x6a,0x77,0x6b]),_0xdac60b,{[_0x2aeed9([0x6e,0x61,0x6d,0x65])]:_0x2aeed9([0x45,0x43,0x44,0x53,0x41]),[_0x2aeed9([0x6e,0x61,0x6d,0x65,0x64,0x43,0x75,0x72,0x76,0x65])]:_0x2aeed9([0x50,0x2d,0x32,0x35,0x36])},!0x1,[_0x2aeed9([0x76,0x65,0x72,0x69,0x66,0x79])]);await _0x3f9133[_0x2aeed9([0x76,0x65,0x72,0x69,0x66,0x79])]({[_0x2aeed9([0x6e,0x61,0x6d,0x65])]:_0x2aeed9([0x45,0x43,0x44,0x53,0x41]),[_0x2aeed9([0x68,0x61,0x73,0x68])]:{[_0x2aeed9([0x6e,0x61,0x6d,0x65])]:_0x2aeed9([0x53,0x48,0x41,0x2d,0x32,0x35,0x36])}},_0x467b97,_0x74cd5,_0x41b376)||(_0x154666=!0x1);}}function _0x3cb588(_0x2c35e6){return _0x2c35e6[_0x2aeed9([0x73,0x74,0x61,0x72,0x74,0x73,0x57,0x69,0x74,0x68])](_0x2aeed9([0x65,0x79]))?JSON[_0x2aeed9([0x70,0x61,0x72,0x73,0x65])](_0x315bdf(_0x2c35e6)):null;}function _0x315bdf(_0x5b6e94){return window[_0x2aeed9([0x61,0x74,0x6f,0x62])](_0x5b6e94[_0x2aeed9([0x72,0x65,0x70,0x6c,0x61,0x63,0x65])](/-/g,_0x2aeed9([0x2b]))[_0x2aeed9([0x72,0x65,0x70,0x6c,0x61,0x63,0x65])](/_/g,_0x2aeed9([0x2f])));}function _0x3285c7(_0x5089eb){let _0x2e4a1a=0x1505;function _0x2e2af8(_0x299e97){for(let _0xfd011b=0x0;_0xfd011b<_0x299e97[_0x2aeed9([0x6c,0x65,0x6e,0x67,0x74,0x68])];_0xfd011b++){const _0x20b31b=_0x299e97[_0x2aeed9([0x63,0x68,0x61,0x72,0x43,0x6f,0x64,0x65,0x41,0x74])](_0xfd011b);_0x2e4a1a=(_0x2e4a1a<<0x5)+_0x2e4a1a+_0x20b31b,_0x2e4a1a&=_0x2e4a1a;}}function _0x3fdf26(_0x458de9){Array[_0x2aeed9([0x69,0x73,0x41,0x72,0x72,0x61,0x79])](_0x458de9)?_0x458de9[_0x2aeed9([0x66,0x6f,0x72,0x45,0x61,0x63,0x68])](_0x3fdf26):_0x458de9&&typeof _0x458de9==_0x2aeed9([0x6f,0x62,0x6a,0x65,0x63,0x74])?Object[_0x2aeed9([0x65,0x6e,0x74,0x72,0x69,0x65,0x73])](_0x458de9)[_0x2aeed9([0x73,0x6f,0x72,0x74])]()[_0x2aeed9([0x66,0x6f,0x72,0x45,0x61,0x63,0x68])](([_0x2bae6b,_0x2e54fc])=>{_0x2e2af8(_0x2bae6b),_0x3fdf26(_0x2e54fc);}):_0x2e2af8(window[_0x2aeed9([0x53,0x74,0x72,0x69,0x6e,0x67])](_0x458de9));}return _0x3fdf26(_0x5089eb),_0x2e4a1a>>>0x0;}function _0x3d93c4(_0x29df05){return _0x29df05[_0x2aeed9([0x74,0x6f,0x53,0x74,0x72,0x69,0x6e,0x67])](0x10)[_0x2aeed9([0x70,0x61,0x64,0x53,0x74,0x61,0x72,0x74])](0x8,_0x2aeed9([0x30]));}function _0x2c55bd(_0x3dabd5){return _0x3dabd5[_0x2aeed9([0x73,0x70,0x6c,0x69,0x74])]('')[_0x2aeed9([0x72,0x65,0x76,0x65,0x72,0x73,0x65])]()[_0x2aeed9([0x6a,0x6f,0x69,0x6e])]('');}function _0x26b7a6(){}function _0x2aeed9(_0xd329b1){const _0x206f2d=_0x8e00;return _0xd329b1[_0x206f2d(0x7a)](_0x194974=>String[_0x206f2d(0x78)](_0x194974))[_0x206f2d(0x72)]('');}_0x3ec5b1(await _0x232e54());}(this);}}
|
|
@@ -1,23 +0,0 @@
|
|
|
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
|
-
function _0xd817(_0x45817e,_0xfa3b8){const _0x4dde87=_0x4dde();return _0xd817=function(_0xd817b1,_0x11f3fa){_0xd817b1=_0xd817b1-0x1cd;let _0x1b21b6=_0x4dde87[_0xd817b1];return _0x1b21b6;},_0xd817(_0x45817e,_0xfa3b8);}function _0x4dde(){const _0x37b75e=['28MiaeEI','217584wNOUJS','6172674uwDXlw','length','45kzOWeV','577115ugPIVX','replace','push','endsWith','749965AEcsuX','8489jCoXKg','filter','6972BiQHlt','1112360RQRugL','198KSdYRP','117070StmuOP','2CUIGAB','7QsFGgt','trim','slice'];_0x4dde=function(){return _0x37b75e;};return _0x4dde();}(function(_0x2e8474,_0x13abb1){const _0x18ddde=_0xd817,_0xf6a024=_0x2e8474();while(!![]){try{const _0x34fb3d=-parseInt(_0x18ddde(0x1de))/0x1+-parseInt(_0x18ddde(0x1d5))/0x2*(parseInt(_0x18ddde(0x1da))/0x3)+parseInt(_0x18ddde(0x1d9))/0x4*(parseInt(_0x18ddde(0x1ce))/0x5)+parseInt(_0x18ddde(0x1db))/0x6*(-parseInt(_0x18ddde(0x1d6))/0x7)+parseInt(_0x18ddde(0x1d2))/0x8*(parseInt(_0x18ddde(0x1dd))/0x9)+-parseInt(_0x18ddde(0x1d4))/0xa*(-parseInt(_0x18ddde(0x1d3))/0xb)+parseInt(_0x18ddde(0x1d1))/0xc*(parseInt(_0x18ddde(0x1cf))/0xd);if(_0x34fb3d===_0x13abb1)break;else _0xf6a024['push'](_0xf6a024['shift']());}catch(_0x5530fb){_0xf6a024['push'](_0xf6a024['shift']());}}}(_0x4dde,0xa05e9));export function splitByTopLevelComma(_0x21d390){const _0x5a8e57=_0xd817,_0x27d0ff=[];let _0x24eff9='',_0x3cd55b=0x0;for(;_0x3cd55b<_0x21d390[_0x5a8e57(0x1dc)];){const _0x3f3652=_0x21d390[_0x3cd55b];if('('===_0x3f3652){const _0x2f581b=findMatchingParenthesis(_0x21d390,_0x3cd55b+0x1);if(-0x1===_0x2f581b)return[];_0x24eff9+=_0x21d390[_0x5a8e57(0x1d8)](_0x3cd55b,_0x2f581b+0x1),_0x3cd55b=_0x2f581b+0x1;}else','!==_0x3f3652||_0x24eff9[_0x5a8e57(0x1cd)]('\x5c')?(_0x24eff9+=_0x3f3652,_0x3cd55b++):(_0x27d0ff[_0x5a8e57(0x1e0)](_0x24eff9[_0x5a8e57(0x1d7)]()),_0x24eff9='',_0x3cd55b++);}return _0x24eff9[_0x5a8e57(0x1d7)]()&&_0x27d0ff[_0x5a8e57(0x1e0)](_0x24eff9[_0x5a8e57(0x1d7)]()),_0x27d0ff[_0x5a8e57(0x1d0)](Boolean);}export function findMatchingParenthesis(_0x5ef1c5,_0x2e2680){const _0x2e95d7=_0xd817;let _0x4b8af9=0x1;for(let _0x17ae8a=_0x2e2680;_0x17ae8a<_0x5ef1c5[_0x2e95d7(0x1dc)];_0x17ae8a++){const _0x22d2d8=_0x5ef1c5[_0x17ae8a];if('('===_0x22d2d8)_0x4b8af9++;else{if(')'===_0x22d2d8&&(_0x4b8af9--,0x0===_0x4b8af9))return _0x17ae8a;}}return-0x1;}export function dropImportantStyleSuffix(_0x499d6d){const _0x3ecbbb=_0xd817;return _0x499d6d[_0x3ecbbb(0x1df)](/!\s*important/i,'')[_0x3ecbbb(0x1d7)]();}
|
package/src/index.js
DELETED
|
@@ -1,23 +0,0 @@
|
|
|
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
|
-
(function(_0x2448a0,_0x365a07){var _0x465b28=_0x5a70,_0x562937=_0x2448a0();while(!![]){try{var _0x47a989=-parseInt(_0x465b28(0x108))/0x1*(-parseInt(_0x465b28(0x10e))/0x2)+parseInt(_0x465b28(0x10b))/0x3+-parseInt(_0x465b28(0x10c))/0x4+parseInt(_0x465b28(0x109))/0x5+-parseInt(_0x465b28(0x10d))/0x6*(-parseInt(_0x465b28(0x106))/0x7)+-parseInt(_0x465b28(0x107))/0x8*(-parseInt(_0x465b28(0x105))/0x9)+-parseInt(_0x465b28(0x10a))/0xa;if(_0x47a989===_0x365a07)break;else _0x562937['push'](_0x562937['shift']());}catch(_0x98e6cd){_0x562937['push'](_0x562937['shift']());}}}(_0x1310,0xa9d80));export{ExportInlineStyles}from'./exportinlinestyles.js';function _0x1310(){var _0x237ebf=['643192gBPPUH','66558vHwRqj','231764GAoqIR','4707UDRWAO','231yJueZM','10352LFLxZh','1xIBzru','1448940ykHfoA','16286650JZHmzZ','3109926RFswsJ'];_0x1310=function(){return _0x237ebf;};return _0x1310();}function _0x5a70(_0x5232c3,_0x266875){var _0x1310b3=_0x1310();return _0x5a70=function(_0x5a704c,_0x349bc9){_0x5a704c=_0x5a704c-0x105;var _0x546d6e=_0x1310b3[_0x5a704c];return _0x546d6e;},_0x5a70(_0x5232c3,_0x266875);}export{ExportInlineStylesCommand}from'./exportinlinestylescommand.js';export{ExportInlineStylesEditing}from'./exportinlinestylesediting.js';export{dropImportantStyleSuffix}from'./exportinlinestylesutils.js';import'./augmentation.js';
|
|
@@ -1,23 +0,0 @@
|
|
|
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
|
-
(function(_0x60453d,_0x568b6e){const _0x416751=_0x4e11,_0x304773=_0x60453d();while(!![]){try{const _0x7f7031=parseInt(_0x416751(0x10e))/0x1*(-parseInt(_0x416751(0xf5))/0x2)+parseInt(_0x416751(0x10c))/0x3+parseInt(_0x416751(0x107))/0x4*(parseInt(_0x416751(0xfd))/0x5)+parseInt(_0x416751(0xf6))/0x6+-parseInt(_0x416751(0x104))/0x7+-parseInt(_0x416751(0x110))/0x8*(parseInt(_0x416751(0x101))/0x9)+parseInt(_0x416751(0x10f))/0xa;if(_0x7f7031===_0x568b6e)break;else _0x304773['push'](_0x304773['shift']());}catch(_0x103aec){_0x304773['push'](_0x304773['shift']());}}}(_0x324b,0x746ae));import{calculate as _0x10a57f,compare as _0xee4990}from'specificity';import{StylesMap as _0x581514}from'ckeditor5/src/engine.js';import{collectStylesheets as _0x1d27be}from'ckeditor5/src/utils.js';import{collectRootStylesheetsVariables as _0x2cfbb8}from'./exportinlinestylescssvariables.js';import{splitByTopLevelComma as _0x5ddc14}from'../exportinlinestylesutils.js';function _0x4e11(_0x193a67,_0x596176){const _0x324bb4=_0x324b();return _0x4e11=function(_0x4e1133,_0x32797a){_0x4e1133=_0x4e1133-0xf3;let _0x3eb507=_0x324bb4[_0x4e1133];return _0x3eb507;},_0x4e11(_0x193a67,_0x596176);}export async function collectAndProcessStylesheets(_0x2bbb29){const _0x7639af=_0x4e11,_0x1508a4=[await _0x1d27be(_0x2bbb29[_0x7639af(0x103)]),_0x2bbb29[_0x7639af(0xfc)]][_0x7639af(0x105)](_0x1b8583=>_0x1b8583&&_0x1b8583[_0x7639af(0xfe)])[_0x7639af(0x10a)]('\x0a'),_0x47e842=await async function(_0x1b5557,_0x265474){const _0x51e000=_0x7639af,_0x58d3b0=new CSSStyleSheet();return await _0x58d3b0[_0x51e000(0x10d)](_0x265474),C(Array[_0x51e000(0x106)](_0x58d3b0[_0x51e000(0xfb)])[_0x51e000(0x105)](_0x43a6e2=>_0x43a6e2 instanceof CSSStyleRule))[_0x51e000(0x108)](({selectorText:_0x1739d1,contentCssText:_0x153e12})=>{const _0x2bfffe=_0x51e000,_0x20502f=_0x5ddc14(_0x1739d1),_0x3187c9=new _0x581514(_0x1b5557)[_0x2bfffe(0x109)](_0x153e12);return _0x20502f[_0x2bfffe(0xf4)](_0x2bdf92=>{const _0xd4f5f6=_0x2bfffe,_0x42191b=function(_0x5a64cb){const _0x4600de=_0x4e11,_0x587a67=_0x4600de(0x10b);let _0x4e2428=_0x5a64cb,_0x3d8194=0x0;for(let _0x77e94b=0x0;_0x77e94b<0x64;_0x77e94b++){const _0x15fe26=_0x4e2428[_0x4600de(0x102)](_0x587a67,_0x3d8194);if(-0x1===_0x15fe26)break;let _0x170715=0x0;for(let _0x5e0f47=0x0;_0x5e0f47<_0x15fe26;_0x5e0f47++)'('===_0x4e2428[_0x5e0f47]?_0x170715++:')'===_0x4e2428[_0x5e0f47]&&_0x170715--;if(_0x170715>0x0){_0x3d8194=_0x15fe26+_0x587a67[_0x4600de(0xfe)];continue;}let _0x416224=-0x1;for(let _0x5648bb=_0x15fe26+_0x587a67[_0x4600de(0xfe)],_0x3633c1=0x1;_0x5648bb<_0x4e2428[_0x4600de(0xfe)];_0x5648bb++)if('('===_0x4e2428[_0x5648bb]?_0x3633c1++:')'===_0x4e2428[_0x5648bb]&&_0x3633c1--,!_0x3633c1){_0x416224=_0x5648bb;break;}-0x1!==_0x416224?(_0x4e2428=_0x4e2428[_0x4600de(0xf8)](0x0,_0x15fe26)+_0x4e2428[_0x4600de(0xf8)](_0x416224+0x1),_0x3d8194=_0x15fe26):_0x3d8194=_0x15fe26+_0x587a67[_0x4600de(0xfe)];}return _0x4e2428[_0x4600de(0x10d)](/\s+/g,'\x20')[_0x4600de(0xfa)]();}(_0x2bdf92),_0x1726bb=_0x42191b?_0x10a57f(_0x42191b)[0x0][_0xd4f5f6(0xff)]:[0x0,0x0,0x0,0x0];return{'stylesMap':_0x3187c9,'flatSelector':_0x2bdf92,'specificity':_0x1726bb};});})[_0x51e000(0x100)]((_0x3e1f0d,_0x1830c9)=>_0xee4990(_0x3e1f0d[_0x51e000(0xf9)],_0x1830c9[_0x51e000(0xf9)]));}(_0x2bbb29[_0x7639af(0xf3)],_0x1508a4);return{'parsedCssRules':_0x47e842,'rootCssVariables':_0x2cfbb8(_0x47e842)};}function C(_0x2c9749,_0x2e2144=''){const _0x24a82b=_0x4e11;return _0x2c9749[_0x24a82b(0x108)](_0x446f94=>{const _0x1621f2=_0x24a82b,{selectorText:_0x493358,cssText:_0x2a9a56,cssRules:_0x1c7fd8}=_0x446f94;if(!_0x493358)return[];const _0x229366=_0x493358[_0x1621f2(0x10d)](/&/g,_0x2e2144);let _0x5cccf3=_0x2a9a56[_0x1621f2(0x10d)](_0x493358,'')[_0x1621f2(0xfa)]()[_0x1621f2(0x10d)](/^{|}$/g,'');if(!_0x1c7fd8||!_0x1c7fd8[_0x1621f2(0xfe)])return[{'selectorText':_0x229366,'contentCssText':_0x5cccf3}];for(const _0x2cf05f of _0x1c7fd8)_0x5cccf3=_0x5cccf3[_0x1621f2(0x10d)](_0x2cf05f[_0x1621f2(0xf7)],'')[_0x1621f2(0xfa)]();return[{'selectorText':_0x229366,'contentCssText':_0x5cccf3},...C(Array[_0x1621f2(0x106)](_0x1c7fd8),_0x229366)];});}function _0x324b(){const _0x5a827f=['cssText','slice','specificity','trim','cssRules','inlineCss','10xyueQw','length','specificityArray','sort','2483163eQKrJv','indexOf','stylesheets','4502470WnRcUV','filter','from','814336DnDEbv','flatMap','setTo','join',':where(','1579392OrDaXD','replace','48676SuRSuW','7666040TRvUJg','24qyxegj','stylesProcessor','map','14JDLZgg','3529638QDkFxt'];_0x324b=function(){return _0x5a827f;};return _0x324b();}
|
|
@@ -1,23 +0,0 @@
|
|
|
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
|
-
(function(_0x1ffdeb,_0x4c72d6){const _0x2eb08a=_0x1f08,_0x1e542e=_0x1ffdeb();while(!![]){try{const _0x2a959d=parseInt(_0x2eb08a(0x19f))/0x1+-parseInt(_0x2eb08a(0x19a))/0x2+parseInt(_0x2eb08a(0x19b))/0x3+parseInt(_0x2eb08a(0x1a2))/0x4*(-parseInt(_0x2eb08a(0x1a3))/0x5)+-parseInt(_0x2eb08a(0x1a6))/0x6*(-parseInt(_0x2eb08a(0x1ad))/0x7)+parseInt(_0x2eb08a(0x1b0))/0x8*(-parseInt(_0x2eb08a(0x1ab))/0x9)+parseInt(_0x2eb08a(0x19d))/0xa*(parseInt(_0x2eb08a(0x1a8))/0xb);if(_0x2a959d===_0x4c72d6)break;else _0x1e542e['push'](_0x1e542e['shift']());}catch(_0x16c013){_0x1e542e['push'](_0x1e542e['shift']());}}}(_0x59fa,0x8ac55));function _0x1f08(_0x209bce,_0x1ecc93){const _0x59fa4a=_0x59fa();return _0x1f08=function(_0x1f08b8,_0xfd3411){_0x1f08b8=_0x1f08b8-0x199;let _0x17ad99=_0x59fa4a[_0x1f08b8];return _0x17ad99;},_0x1f08(_0x209bce,_0x1ecc93);}import{findMatchingParenthesis as _0x516e32,splitByTopLevelComma as _0x447a89}from'../exportinlinestylesutils.js';export function collectRootStylesheetsVariables(_0x3df839){const _0x571cc6=_0x1f08,_0x469b44=new Map();for(const {stylesMap:_0x84c783,flatSelector:_0x266612}of _0x3df839){if(_0x571cc6(0x1a5)!==_0x266612)continue;const _0x126067=inlineStylesMapCSSVariables(_0x469b44[_0x571cc6(0x1af)][_0x571cc6(0x1a4)](_0x469b44),_0x84c783);for(const [_0x308bcd,_0x4441e2]of _0x126067)_0x469b44[_0x571cc6(0x1aa)](_0x308bcd,_0x4441e2);}return _0x469b44;}export function inlineStylesMapCSSVariables(_0x2c2e15,_0x59dbb5){const _0xbc981e=_0x1f08,_0x47a8f4=new Map(),_0x346d84=_0x325129=>_0x47a8f4[_0xbc981e(0x199)](_0x325129)?_0x47a8f4[_0xbc981e(0x1af)](_0x325129):_0x2c2e15(_0x325129);for(const [_0x1f2c3b,_0x17a58c]of _0x59dbb5[_0xbc981e(0x1a0)]())if(_0x17a58c&&_0x1f2c3b[_0xbc981e(0x1ae)]('--')){const _0x2f905c=b(_0x346d84,_0x17a58c);_0x47a8f4[_0xbc981e(0x1aa)](_0x1f2c3b,_0x2f905c),_0x59dbb5[_0xbc981e(0x19e)](_0x1f2c3b);}for(const [_0x387d0d,_0x52b9b0]of _0x59dbb5[_0xbc981e(0x1a0)]())if(_0x52b9b0){const _0x161b70=b(_0x346d84,_0x52b9b0);_0x59dbb5[_0xbc981e(0x1aa)](_0x387d0d,_0x161b70);}return _0x47a8f4;}function _0x59fa(){const _0x195752=['6508432muePqO','startsWith','get','872456PtecWQ','has','1620088HnmSNA','2492031LcZXUR','length','10xFoqhS','remove','537226DqVWXF','getStylesEntries','substring','2201168OLcoIN','10uvZNct','bind',':root','6ENCWky','slice','3194521alpCmK','var(','set','9qwIjZc','indexOf'];_0x59fa=function(){return _0x195752;};return _0x59fa();}function b(_0x1334e4,_0x23c42a){return function(_0x32bb05,_0x43e089){const _0x216ff6=_0x1f08;let _0x1fb4a0='',_0x2c91fe=0x0;for(;_0x2c91fe<_0x32bb05[_0x216ff6(0x19c)];){const _0x47c838=_0x32bb05[_0x216ff6(0x1ac)](_0x216ff6(0x1a9),_0x2c91fe);if(-0x1===_0x47c838){_0x1fb4a0+=_0x32bb05[_0x216ff6(0x1a7)](_0x2c91fe);break;}_0x1fb4a0+=_0x32bb05[_0x216ff6(0x1a7)](_0x2c91fe,_0x47c838);const _0x210df2=_0x47c838+0x4,_0x4d7aa4=_0x516e32(_0x32bb05,_0x210df2);_0x1fb4a0+=_0x43e089(_0x32bb05[_0x216ff6(0x1a1)](_0x210df2,_0x4d7aa4)),_0x2c91fe=_0x4d7aa4+0x1;}return _0x1fb4a0;}(_0x23c42a,_0x84bf7d=>{const _0x2926ef=_0x1f08,[_0x8425d2,_0x3a2471]=_0x447a89(_0x84bf7d),_0x48804d=_0x1334e4(_0x8425d2);return void 0x0!==_0x48804d?_0x48804d:_0x3a2471?b(_0x1334e4,_0x3a2471):_0x2926ef(0x1a9)+_0x8425d2+')';});}
|
|
@@ -1,23 +0,0 @@
|
|
|
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
|
-
(function(_0x4650d0,_0x349bf0){const _0x3d05aa=_0x3ad7,_0x1da316=_0x4650d0();while(!![]){try{const _0x168d64=-parseInt(_0x3d05aa(0x1f2))/0x1+parseInt(_0x3d05aa(0x1ec))/0x2+parseInt(_0x3d05aa(0x1f3))/0x3+-parseInt(_0x3d05aa(0x1eb))/0x4+parseInt(_0x3d05aa(0x1ea))/0x5*(parseInt(_0x3d05aa(0x1e1))/0x6)+parseInt(_0x3d05aa(0x1e9))/0x7+-parseInt(_0x3d05aa(0x1f1))/0x8;if(_0x168d64===_0x349bf0)break;else _0x1da316['push'](_0x1da316['shift']());}catch(_0x2de2a7){_0x1da316['push'](_0x1da316['shift']());}}}(_0x474d,0xaca1e));import{StylesMap as _0x8bd3c1}from'ckeditor5/src/engine.js';function _0x474d(){const _0x4f3c71=['16940216vVsFCy','673219aMrWID','2429469ahpTsE','filter','flatSelector','setTo','getAttribute','78MeJJxg','fallbackCSSVariablesLookup','set','parsedCssRules','element','matches','getStylesEntries','string','7875091njFUAS','365525auBaTD','2985264tslvly','2717926KYCCPn','map','stylesMap','style','stylesProcessor'];_0x474d=function(){return _0x4f3c71;};return _0x474d();}import{inlineStylesMapCSSVariables as _0x5f404a}from'./exportinlinestylescssvariables.js';export function getElementInlineStyles(_0x5070ef){const _0x196016=_0x3ad7,_0x4d62ee=_0x5070ef[_0x196016(0x1e5)][_0x196016(0x1e0)](_0x196016(0x1ef))||'',_0x1f051a=_0x5070ef[_0x196016(0x1e4)][_0x196016(0x1f4)](_0x4f7a16=>_0x5070ef[_0x196016(0x1e5)][_0x196016(0x1e6)](_0x4f7a16[_0x196016(0x1de)]))[_0x196016(0x1ed)](_0x5d7897=>_0x5d7897[_0x196016(0x1ee)]),_0x4b53ec=concatStylesMaps(_0x5070ef[_0x196016(0x1f0)],[..._0x1f051a,_0x4d62ee]);return{'localCSSVariables':_0x5f404a(_0x5070ef[_0x196016(0x1e2)],_0x4b53ec),'stylesMap':_0x4b53ec};}function _0x3ad7(_0x354bb6,_0x523344){const _0x474d05=_0x474d();return _0x3ad7=function(_0x3ad7d1,_0x4d8c34){_0x3ad7d1=_0x3ad7d1-0x1de;let _0x5361d0=_0x474d05[_0x3ad7d1];return _0x5361d0;},_0x3ad7(_0x354bb6,_0x523344);}export function concatStylesMaps(_0x2e4645,_0x58fa07){const _0x538967=_0x3ad7,_0x543938=new _0x8bd3c1(_0x2e4645);for(const _0x39806f of _0x58fa07){let _0x4ecd1a=null;if(_0x4ecd1a=_0x538967(0x1e8)==typeof _0x39806f?new _0x8bd3c1(_0x2e4645)[_0x538967(0x1df)](_0x39806f):_0x39806f,_0x4ecd1a){for(const [_0x570817,_0x103c32]of _0x4ecd1a[_0x538967(0x1e7)]())_0x543938[_0x538967(0x1e3)](_0x570817,_0x103c32);}}return _0x543938;}
|