@ckeditor/ckeditor5-comments 43.2.0-alpha.4 → 43.2.0-alpha.5
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- package/build/comments.js +1 -1
- package/dist/index.js +9 -9
- package/package.json +15 -15
- package/src/annotations/view/annotationcounterbuttonview.js +1 -1
- package/src/annotations/view/annotationview.js +1 -1
- package/src/annotations/view/sidebaritemview.js +1 -1
- package/src/annotations/view/sidebarview.js +1 -1
- package/src/comments/addcommentthreadcommand.js +1 -1
- package/src/comments/commentsarchiveui.js +1 -1
- package/src/comments/commentsediting.js +1 -1
- package/src/comments/commentsrepository.js +3 -3
- package/src/comments/commentsui.js +1 -1
- package/src/comments/integrations/clipboard.js +1 -1
- package/src/comments/integrations/commentsrestrictededitingmode.js +1 -1
- package/src/comments/integrations/importword.js +1 -1
- package/src/comments/ui/commenteditor/commenteditor.js +2 -2
- package/src/comments/ui/commenteditor/commenteditoruiview.js +1 -1
- package/src/comments/ui/commentthreadcontroller.js +2 -2
- package/src/comments/ui/view/basecommentthreadview.js +1 -1
- package/src/comments/ui/view/basecommentview.js +1 -1
- package/src/comments/ui/view/collapsedcommentsview.js +1 -1
- package/src/comments/ui/view/commentcontentview.js +1 -1
- package/src/comments/ui/view/commentinputview.js +1 -1
- package/src/comments/ui/view/commentsarchiveview.js +1 -1
- package/src/comments/ui/view/commentslistview.js +1 -1
- package/src/comments/ui/view/commentthreadheadercontextview.js +1 -1
- package/src/comments/ui/view/commentthreadheaderview.js +1 -1
- package/src/comments/ui/view/commentthreadinputview.js +1 -1
- package/src/comments/ui/view/commentthreadview.js +2 -2
- package/src/comments/ui/view/commentview.js +2 -2
- package/src/utils/createmutationobserver.js +1 -1
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@ckeditor/ckeditor5-comments",
|
|
3
|
-
"version": "43.2.0-alpha.
|
|
3
|
+
"version": "43.2.0-alpha.5",
|
|
4
4
|
"description": "Collaborative comments feature for CKEditor 5.",
|
|
5
5
|
"license": "SEE LICENSE IN LICENSE.md",
|
|
6
6
|
"author": "CKSource (http://cksource.com/)",
|
|
@@ -45,20 +45,20 @@
|
|
|
45
45
|
"CHANGELOG.md"
|
|
46
46
|
],
|
|
47
47
|
"dependencies": {
|
|
48
|
-
"@ckeditor/ckeditor5-clipboard": "43.2.0-alpha.
|
|
49
|
-
"@ckeditor/ckeditor5-collaboration-core": "43.2.0-alpha.
|
|
50
|
-
"@ckeditor/ckeditor5-core": "43.2.0-alpha.
|
|
51
|
-
"@ckeditor/ckeditor5-engine": "43.2.0-alpha.
|
|
52
|
-
"@ckeditor/ckeditor5-enter": "43.2.0-alpha.
|
|
53
|
-
"@ckeditor/ckeditor5-paragraph": "43.2.0-alpha.
|
|
54
|
-
"@ckeditor/ckeditor5-select-all": "43.2.0-alpha.
|
|
55
|
-
"@ckeditor/ckeditor5-theme-lark": "43.2.0-alpha.
|
|
56
|
-
"@ckeditor/ckeditor5-typing": "43.2.0-alpha.
|
|
57
|
-
"@ckeditor/ckeditor5-ui": "43.2.0-alpha.
|
|
58
|
-
"@ckeditor/ckeditor5-undo": "43.2.0-alpha.
|
|
59
|
-
"@ckeditor/ckeditor5-utils": "43.2.0-alpha.
|
|
60
|
-
"ckeditor5": "43.2.0-alpha.
|
|
61
|
-
"ckeditor5-collaboration": "43.2.0-alpha.
|
|
48
|
+
"@ckeditor/ckeditor5-clipboard": "43.2.0-alpha.5",
|
|
49
|
+
"@ckeditor/ckeditor5-collaboration-core": "43.2.0-alpha.5",
|
|
50
|
+
"@ckeditor/ckeditor5-core": "43.2.0-alpha.5",
|
|
51
|
+
"@ckeditor/ckeditor5-engine": "43.2.0-alpha.5",
|
|
52
|
+
"@ckeditor/ckeditor5-enter": "43.2.0-alpha.5",
|
|
53
|
+
"@ckeditor/ckeditor5-paragraph": "43.2.0-alpha.5",
|
|
54
|
+
"@ckeditor/ckeditor5-select-all": "43.2.0-alpha.5",
|
|
55
|
+
"@ckeditor/ckeditor5-theme-lark": "43.2.0-alpha.5",
|
|
56
|
+
"@ckeditor/ckeditor5-typing": "43.2.0-alpha.5",
|
|
57
|
+
"@ckeditor/ckeditor5-ui": "43.2.0-alpha.5",
|
|
58
|
+
"@ckeditor/ckeditor5-undo": "43.2.0-alpha.5",
|
|
59
|
+
"@ckeditor/ckeditor5-utils": "43.2.0-alpha.5",
|
|
60
|
+
"ckeditor5": "43.2.0-alpha.5",
|
|
61
|
+
"ckeditor5-collaboration": "43.2.0-alpha.5",
|
|
62
62
|
"lodash-es": "4.17.21"
|
|
63
63
|
},
|
|
64
64
|
"types": "src/index.d.ts",
|
|
@@ -20,4 +20,4 @@
|
|
|
20
20
|
*
|
|
21
21
|
*
|
|
22
22
|
*/
|
|
23
|
-
function
|
|
23
|
+
function _0x2219(){const _0x48aa77=['ck-annotation-counter__badge--','bindTemplate','annotationType','179022MLAUQk','_badge','add','114809BgqUYK','children','counterView','ck-annotation-counter__badge--edit-mode','ck-annotation-counter','18kRbXUU','6296206itKtBz','number','7388rxEovR','setTemplate','set','57330gGleYW','isDirty','ck-annotation-counter__badge','16703390eiJZnL','8TsGFIF','2395AuXPcm','icon','3009441rQSXJK','span','extendTemplate','toString','...','bind','1410nOOViK'];_0x2219=function(){return _0x48aa77;};return _0x2219();}function _0x2fd5(_0x44263e,_0x54379f){const _0x2219b4=_0x2219();return _0x2fd5=function(_0x2fd5bc,_0x244898){_0x2fd5bc=_0x2fd5bc-0x98;let _0x419c20=_0x2219b4[_0x2fd5bc];return _0x419c20;},_0x2fd5(_0x44263e,_0x54379f);}(function(_0x25b7f6,_0xf8abb9){const _0x566cd5=_0x2fd5,_0x124316=_0x25b7f6();while(!![]){try{const _0x228c86=-parseInt(_0x566cd5(0xb2))/0x1*(parseInt(_0x566cd5(0x98))/0x2)+parseInt(_0x566cd5(0xa5))/0x3+parseInt(_0x566cd5(0x9b))/0x4*(-parseInt(_0x566cd5(0xa3))/0x5)+-parseInt(_0x566cd5(0xaf))/0x6+parseInt(_0x566cd5(0x99))/0x7*(-parseInt(_0x566cd5(0xa2))/0x8)+-parseInt(_0x566cd5(0x9e))/0x9*(-parseInt(_0x566cd5(0xab))/0xa)+parseInt(_0x566cd5(0xa1))/0xb;if(_0x228c86===_0xf8abb9)break;else _0x124316['push'](_0x124316['shift']());}catch(_0xa6ded4){_0x124316['push'](_0x124316['shift']());}}}(_0x2219,0x8bc66));import{ButtonView as _0x10eae9,View as _0x5bfcc3}from'ckeditor5/src/ui.js';import _0x5d930d from'../../../theme/icons/add-comment.svg';export default class L extends _0x10eae9{constructor(_0x2383be){const _0x3a1041=_0x2fd5;super(_0x2383be);const _0x61974f=this[_0x3a1041(0xad)];this[_0x3a1041(0x9d)](_0x3a1041(0x9f),!0x1),this[_0x3a1041(0x9d)](_0x3a1041(0x9a),0x0),this[_0x3a1041(0xaa)](_0x3a1041(0xb0))['to'](this,_0x3a1041(0x9f),this,_0x3a1041(0x9a),(_0x49d5d7,_0x1cfab5)=>_0x49d5d7?_0x3a1041(0xa9):_0x1cfab5[_0x3a1041(0xa8)]()),this[_0x3a1041(0x9d)](_0x3a1041(0xae),''),this[_0x3a1041(0xa4)]=_0x5d930d,this[_0x3a1041(0xa7)]({'attributes':{'class':[_0x3a1041(0xb6)]}}),this[_0x3a1041(0xb4)]=new _0x5bfcc3(),this[_0x3a1041(0xb4)][_0x3a1041(0x9c)]({'tag':_0x3a1041(0xa6),'attributes':{'class':[_0x3a1041(0xa0),_0x61974f['to'](_0x3a1041(0xae),_0x5001f2=>_0x3a1041(0xac)+_0x5001f2),_0x61974f['if'](_0x3a1041(0x9f),_0x3a1041(0xb5))]},'children':[{'text':_0x61974f['to'](_0x3a1041(0xb0))}]}),this[_0x3a1041(0xb3)][_0x3a1041(0xb1)](this[_0x3a1041(0xb4)]);}}
|
|
@@ -20,4 +20,4 @@
|
|
|
20
20
|
*
|
|
21
21
|
*
|
|
22
22
|
*/
|
|
23
|
-
const
|
|
23
|
+
const _0xe09877=_0x1187;(function(_0x2410a4,_0x206ee2){const _0x40161e=_0x1187,_0x2f7993=_0x2410a4();while(!![]){try{const _0x4a750f=-parseInt(_0x40161e(0x1a2))/0x1*(-parseInt(_0x40161e(0x1b0))/0x2)+-parseInt(_0x40161e(0x1ad))/0x3+parseInt(_0x40161e(0x1ab))/0x4*(parseInt(_0x40161e(0x199))/0x5)+parseInt(_0x40161e(0x1a6))/0x6*(parseInt(_0x40161e(0x197))/0x7)+parseInt(_0x40161e(0x187))/0x8*(-parseInt(_0x40161e(0x1a3))/0x9)+-parseInt(_0x40161e(0x1ac))/0xa+parseInt(_0x40161e(0x1b1))/0xb;if(_0x4a750f===_0x206ee2)break;else _0x2f7993['push'](_0x2f7993['shift']());}catch(_0x3361f0){_0x2f7993['push'](_0x2f7993['shift']());}}}(_0x3c0b,0x7e4ba));import{View as _0x312473}from'ckeditor5/src/ui.js';import{FocusTracker as _0x45b885,KeystrokeHandler as _0x2c3dc6,uid as _0x5902ae}from'ckeditor5/src/utils.js';function _0x3c0b(){const _0x58aa56=['mainView','length','isDirty','1618HiTyWS','3816YngoiZ','add','div','2454rjQPtv','isActive','bindTemplate','arrowdown','fire','32372uhfbIg','4279150gwhPbl','799020TwTaXF','focusTracker','ck-annotation-wrapper','512WWwTnY','9403724DCJugl','clientHeight','presentation','_mutationObserver','first','delegate','15136fjHVNL','arrowup','Esc','render','createCollection','content','setTemplate','set','_updateHeight','element','detach','targetRect','listenTo','clear','ck-annotation-wrapper--active','destroy','5404CgwVxN','attach','265aDNIfT','height','ck-rounded-corners','keystrokes','focus','type'];_0x3c0b=function(){return _0x58aa56;};return _0x3c0b();}import _0x494afb from'../../utils/createmutationobserver.js';import'../../../theme/annotation.css';function _0x1187(_0xe54659,_0x3406b7){const _0x3c0bd7=_0x3c0b();return _0x1187=function(_0x118796,_0x1c2846){_0x118796=_0x118796-0x183;let _0x3e588e=_0x3c0bd7[_0x118796];return _0x3e588e;},_0x1187(_0xe54659,_0x3406b7);}export default class T extends _0x312473{constructor(_0x5c4b47,_0x4181dd){const _0x193b5c=_0x1187;super(_0x5c4b47),this['id']=_0x5902ae(),this[_0x193b5c(0x1ae)]=new _0x45b885(),this[_0x193b5c(0x19c)]=new _0x2c3dc6(),this[_0x193b5c(0x19c)][_0x193b5c(0x18e)](_0x193b5c(0x189),(_0x3a6510,_0x42649e)=>this[_0x193b5c(0x1aa)](_0x193b5c(0x189),_0x42649e)),this[_0x193b5c(0x18e)](_0x193b5c(0x192),{'top':0x0,'right':0x0,'bottom':0x0,'left':0x0}),this[_0x193b5c(0x18e)](_0x193b5c(0x19a),0x0),this[_0x193b5c(0x18e)](_0x193b5c(0x1a7),!0x1),this[_0x193b5c(0x18e)](_0x193b5c(0x1a1),!0x1),this[_0x193b5c(0x18e)](_0x193b5c(0x1a0),0x0),this[_0x193b5c(0x18e)](_0x193b5c(0x19e),''),this[_0x193b5c(0x184)]=_0x494afb(()=>this[_0x193b5c(0x18f)]()),this[_0x193b5c(0x18c)]=this[_0x193b5c(0x18b)](),this[_0x193b5c(0x18c)][_0x193b5c(0x186)](_0x193b5c(0x188),_0x193b5c(0x1a9))['to'](this),this[_0x193b5c(0x18c)][_0x193b5c(0x1a4)](_0x4181dd),this[_0x193b5c(0x19f)]=_0x4181dd;const _0x4665dd=this[_0x193b5c(0x1a8)];this[_0x193b5c(0x18d)]({'tag':_0x193b5c(0x1a5),'attributes':{'class':['ck',_0x193b5c(0x1af),_0x193b5c(0x19b),_0x4665dd['if'](_0x193b5c(0x1a7),_0x193b5c(0x195))],'role':_0x193b5c(0x183)},'children':this[_0x193b5c(0x18c)]});}[_0xe09877(0x18a)](){const _0x33e9ce=_0xe09877;super[_0x33e9ce(0x18a)](),this[_0x33e9ce(0x1ae)][_0x33e9ce(0x1a4)](this[_0x33e9ce(0x190)]),this[_0x33e9ce(0x19c)][_0x33e9ce(0x193)](this[_0x33e9ce(0x190)]),this[_0x33e9ce(0x184)][_0x33e9ce(0x198)](this[_0x33e9ce(0x190)]);}[_0xe09877(0x196)](){const _0x3c3a80=_0xe09877;this[_0x3c3a80(0x18c)][_0x3c3a80(0x194)](),this[_0x3c3a80(0x19c)][_0x3c3a80(0x196)](),this[_0x3c3a80(0x1ae)][_0x3c3a80(0x196)](),this[_0x3c3a80(0x184)][_0x3c3a80(0x191)](),super[_0x3c3a80(0x196)]();}[_0xe09877(0x19d)](){const _0x375368=_0xe09877;this[_0x375368(0x18c)][_0x375368(0x185)]&&this[_0x375368(0x18c)][_0x375368(0x185)][_0x375368(0x19d)]();}[_0xe09877(0x18f)](){const _0x313cd4=_0xe09877,_0x58190c=this[_0x313cd4(0x190)][_0x313cd4(0x1b2)];_0x58190c&&(this[_0x313cd4(0x19a)]=_0x58190c);}}
|
|
@@ -20,4 +20,4 @@
|
|
|
20
20
|
*
|
|
21
21
|
*
|
|
22
22
|
*/
|
|
23
|
-
|
|
23
|
+
const _0x357c3f=_0x4eef;(function(_0x2c20c0,_0x3444f6){const _0x34469c=_0x4eef,_0x2d5122=_0x2c20c0();while(!![]){try{const _0x17c583=parseInt(_0x34469c(0x133))/0x1+parseInt(_0x34469c(0x13e))/0x2+parseInt(_0x34469c(0x153))/0x3+parseInt(_0x34469c(0x13f))/0x4+parseInt(_0x34469c(0x143))/0x5*(parseInt(_0x34469c(0x144))/0x6)+parseInt(_0x34469c(0x14b))/0x7+parseInt(_0x34469c(0x132))/0x8*(-parseInt(_0x34469c(0x146))/0x9);if(_0x17c583===_0x3444f6)break;else _0x2d5122['push'](_0x2d5122['shift']());}catch(_0x15aab5){_0x2d5122['push'](_0x2d5122['shift']());}}}(_0x5708,0x24bfb));import{View as _0x27b614}from'ckeditor5/src/ui.js';import{toUnit as _0x3df5bf}from'ckeditor5/src/utils.js';import _0x1ae3c0 from'../../utils/createmutationobserver.js';const qt=_0x3df5bf('px');function _0x5708(){const _0x3d56c3=['252738sSXBHp','height','clear','delegate','updateHeight','arrowdown','bindTemplate','destroy','arrowup','div','presentation','369940VOrqHO','834796wbbmsn','bind','detach','_targetTop','40rmcRKJ','198768pMTkOH','setTemplate','10378071dAzKwX','first','createCollection','bottom','render','1481963gZtYgo','element','isAnimationDisabled','clientHeight','ck-sidebar-item','ck-sidebar-item--no-animation','set','content','541506ZcNopM','top','_mutationObserver','focus','attach','8BISkSb'];_0x5708=function(){return _0x3d56c3;};return _0x5708();}function _0x4eef(_0xd5c479,_0x213735){const _0x57080d=_0x5708();return _0x4eef=function(_0x4eef15,_0x496d4c){_0x4eef15=_0x4eef15-0x12e;let _0x2fe701=_0x57080d[_0x4eef15];return _0x2fe701;},_0x4eef(_0xd5c479,_0x213735);}export default class H extends _0x27b614{constructor(_0x3a3ffd){const _0x35dbb8=_0x4eef;super(_0x3a3ffd),this[_0x35dbb8(0x151)](_0x35dbb8(0x12e),0x0),this[_0x35dbb8(0x151)](_0x35dbb8(0x134),0x0),this[_0x35dbb8(0x140)](_0x35dbb8(0x149))['to'](this,_0x35dbb8(0x12e),this,_0x35dbb8(0x134),(_0x6d0536,_0x4bf01c)=>_0x6d0536+_0x4bf01c),this[_0x35dbb8(0x151)](_0x35dbb8(0x14d),!0x1),this[_0x35dbb8(0x12f)]=_0x1ae3c0(()=>this[_0x35dbb8(0x137)]()),this[_0x35dbb8(0x142)]=null,this[_0x35dbb8(0x152)]=this[_0x35dbb8(0x148)](),this[_0x35dbb8(0x152)][_0x35dbb8(0x136)](_0x35dbb8(0x13b),_0x35dbb8(0x138))['to'](this);const _0x1a6d1e=this[_0x35dbb8(0x139)];this[_0x35dbb8(0x145)]({'tag':_0x35dbb8(0x13c),'attributes':{'class':[_0x35dbb8(0x14f),_0x1a6d1e['to'](_0x35dbb8(0x14d),_0x3b7d0b=>_0x3b7d0b?_0x35dbb8(0x150):'')],'style':{'top':_0x1a6d1e['to'](_0x35dbb8(0x12e),_0x2f786e=>qt(_0x2f786e))},'role':_0x35dbb8(0x13d)},'children':this[_0x35dbb8(0x152)]});}[_0x357c3f(0x14a)](){const _0xcd1c1b=_0x357c3f;super[_0xcd1c1b(0x14a)](),this[_0xcd1c1b(0x12f)][_0xcd1c1b(0x131)](this[_0xcd1c1b(0x14c)]);}[_0x357c3f(0x130)](){const _0x4645c9=_0x357c3f;this[_0x4645c9(0x152)][_0x4645c9(0x147)]&&this[_0x4645c9(0x152)][_0x4645c9(0x147)][_0x4645c9(0x130)]();}[_0x357c3f(0x137)](){const _0x4a29fa=_0x357c3f,_0x1f4e14=this[_0x4a29fa(0x14c)][_0x4a29fa(0x14e)];_0x1f4e14&&(this[_0x4a29fa(0x134)]=_0x1f4e14);}[_0x357c3f(0x13a)](){const _0x237b60=_0x357c3f;this[_0x237b60(0x152)][_0x237b60(0x135)](),this[_0x237b60(0x12f)][_0x237b60(0x141)](),super[_0x237b60(0x13a)]();}}
|
|
@@ -20,4 +20,4 @@
|
|
|
20
20
|
*
|
|
21
21
|
*
|
|
22
22
|
*/
|
|
23
|
-
function
|
|
23
|
+
function _0x57ec(){const _0x465a6a=['class','23256520pAphbh','element','focusTracker','ck-sidebar','change:top','50247WMuYPb','forEach','uiLanguageDirection','remove','list','source','ck-reset','Annotations\x20sidebar','number','getIndex','change','_updateItemPositionInFocusables','delegate','focusCycler','280227yctwnQ','35975xrCUFd','_setupKeyboardNavigation','bindTemplate','render','focusFirst','setTemplate','arrowdown','removed','set','712ILyRBh','top','focusNext','3AZzeuS','div','1373554zpVTOu','add','minHeight','focusables','156eczZKd','865996yTZMdd','listenTo','length','Annotations\x20list','arrowup','createCollection','added','application','focusPrevious','1771768ySTpIV','focus'];_0x57ec=function(){return _0x465a6a;};return _0x57ec();}const _0x3cc43f=_0x3f93;function _0x3f93(_0x1dc759,_0xbbaf43){const _0x57ecc3=_0x57ec();return _0x3f93=function(_0x3f932a,_0xbe7cdc){_0x3f932a=_0x3f932a-0x1e0;let _0x5a288e=_0x57ecc3[_0x3f932a];return _0x5a288e;},_0x3f93(_0x1dc759,_0xbbaf43);}(function(_0xced77d,_0x2062fb){const _0x17854d=_0x3f93,_0x1fb0db=_0xced77d();while(!![]){try{const _0x57987f=-parseInt(_0x17854d(0x204))/0x1+-parseInt(_0x17854d(0x1e5))/0x2+-parseInt(_0x17854d(0x211))/0x3*(parseInt(_0x17854d(0x1ee))/0x4)+parseInt(_0x17854d(0x205))/0x5*(-parseInt(_0x17854d(0x1e4))/0x6)+-parseInt(_0x17854d(0x1e0))/0x7+-parseInt(_0x17854d(0x20e))/0x8*(parseInt(_0x17854d(0x1f6))/0x9)+parseInt(_0x17854d(0x1f1))/0xa;if(_0x57987f===_0x2062fb)break;else _0x1fb0db['push'](_0x1fb0db['shift']());}catch(_0x55670e){_0x1fb0db['push'](_0x1fb0db['shift']());}}}(_0x57ec,0x46a1a));import{View as _0x325b93,FocusCycler as _0x31549f}from'ckeditor5/src/ui.js';import{FocusTracker as _0x16e54e,toUnit as _0x16a735}from'ckeditor5/src/utils.js';import{getTranslation as _0x2887ad}from'../../utils/common-translations.js';import'../../../theme/sidebar.css';const qt=_0x16a735('px');export default class V extends _0x325b93{constructor(_0x190ac7){const _0x45206b=_0x3f93;super(_0x190ac7);const _0x50e804=this[_0x45206b(0x207)];this[_0x45206b(0x20d)](_0x45206b(0x1e2),0x0),this[_0x45206b(0x20d)](_0x45206b(0x1f0),''),this[_0x45206b(0x1fa)]=this[_0x45206b(0x1ea)](),this[_0x45206b(0x1e3)]=this[_0x45206b(0x1ea)](),this[_0x45206b(0x1fa)][_0x45206b(0x202)](_0x45206b(0x1e9),_0x45206b(0x20b))['to'](this),this[_0x45206b(0x1f3)]=new _0x16e54e(),this[_0x45206b(0x203)]=new _0x31549f({'focusables':this[_0x45206b(0x1e3)],'focusTracker':this[_0x45206b(0x1f3)]}),this[_0x45206b(0x20a)]({'tag':_0x45206b(0x212),'attributes':{'class':['ck',_0x45206b(0x1f4),_0x45206b(0x1fc),_0x50e804['to'](_0x45206b(0x1f0))],'style':{'minHeight':_0x50e804['to'](_0x45206b(0x1e2),_0x574b58=>_0x45206b(0x1fe)==typeof _0x574b58?qt(_0x574b58+0xa):null)},'dir':_0x190ac7[_0x45206b(0x1f8)],'role':_0x45206b(0x1ec),'aria-label':_0x2887ad(_0x190ac7,_0x45206b(0x1fd)),'tabindex':0x0},'children':[{'tag':_0x45206b(0x212),'attributes':{'role':_0x45206b(0x1fa),'aria-label':_0x2887ad(_0x190ac7,_0x45206b(0x1e8))},'children':this[_0x45206b(0x1fa)]}]});}[_0x3cc43f(0x208)](){const _0x44e3b2=_0x3cc43f;super[_0x44e3b2(0x208)](),this[_0x44e3b2(0x206)]();}[_0x3cc43f(0x1ef)](){const _0x153e18=_0x3cc43f;this[_0x153e18(0x203)][_0x153e18(0x209)]();}[_0x3cc43f(0x206)](){const _0x2fc509=_0x3cc43f;this[_0x2fc509(0x1fa)][_0x2fc509(0x202)](_0x2fc509(0x1f5))['to'](this),this['on'](_0x2fc509(0x1f5),_0x428e7e=>{const _0xef2932=_0x2fc509;this[_0xef2932(0x201)](_0x428e7e[_0xef2932(0x1fb)]);}),this[_0x2fc509(0x1fa)][_0x2fc509(0x1f7)](_0x499633=>{const _0x6e7dcf=_0x2fc509;this[_0x6e7dcf(0x1f3)][_0x6e7dcf(0x1e1)](_0x499633[_0x6e7dcf(0x1f2)]),this[_0x6e7dcf(0x201)](_0x499633);}),this[_0x2fc509(0x1fa)]['on'](_0x2fc509(0x200),(_0xaaf4c2,_0x3af73c)=>{const _0x52848c=_0x2fc509;for(const _0x4dbb3d of _0x3af73c[_0x52848c(0x20c)])this[_0x52848c(0x1f3)][_0x52848c(0x1f9)](_0x4dbb3d[_0x52848c(0x1f2)]),this[_0x52848c(0x1e3)][_0x52848c(0x1f9)](_0x4dbb3d);for(const _0x322970 of _0x3af73c[_0x52848c(0x1eb)])this[_0x52848c(0x1f3)][_0x52848c(0x1e1)](_0x322970[_0x52848c(0x1f2)]),this[_0x52848c(0x201)](_0x322970);}),this['on'](_0x2fc509(0x1e9),()=>{const _0x19532c=_0x2fc509;this[_0x19532c(0x203)][_0x19532c(0x1ed)]();}),this['on'](_0x2fc509(0x20b),()=>{const _0x1b9909=_0x2fc509;this[_0x1b9909(0x203)][_0x1b9909(0x210)]();}),this[_0x2fc509(0x1e6)](this[_0x2fc509(0x1f2)],_0x2fc509(0x1ef),()=>{const _0x27567f=_0x2fc509;this[_0x27567f(0x1ef)]();});}[_0x3cc43f(0x201)](_0x56f839){const _0x33a429=_0x3cc43f,_0x76d095=this[_0x33a429(0x1e3)][_0x33a429(0x1ff)](_0x56f839);let _0x4aea43,_0x2c1c9e;for(const _0x328678 of this[_0x33a429(0x1e3)])if(_0x56f839[_0x33a429(0x20f)]<_0x328678[_0x33a429(0x20f)]){_0x4aea43=_0x328678;break;}if(_0x2c1c9e=_0x4aea43?this[_0x33a429(0x1e3)][_0x33a429(0x1ff)](_0x4aea43):this[_0x33a429(0x1e3)][_0x33a429(0x1e7)],-0x1!==_0x76d095){if(_0x76d095===_0x2c1c9e-0x1)return;this[_0x33a429(0x1e3)][_0x33a429(0x1f9)](_0x56f839),_0x2c1c9e=_0x4aea43?this[_0x33a429(0x1e3)][_0x33a429(0x1ff)](_0x4aea43):this[_0x33a429(0x1e3)][_0x33a429(0x1e7)];}this[_0x33a429(0x1e3)][_0x33a429(0x1e1)](_0x56f839,_0x2c1c9e);}}
|
|
@@ -20,4 +20,4 @@
|
|
|
20
20
|
*
|
|
21
21
|
*
|
|
22
22
|
*/
|
|
23
|
-
|
|
23
|
+
const _0x196087=_0xd95c;(function(_0x24bc97,_0x24f433){const _0x5b068d=_0xd95c,_0x5cdcc2=_0x24bc97();while(!![]){try{const _0x5c1575=parseInt(_0x5b068d(0xbe))/0x1*(parseInt(_0x5b068d(0xa8))/0x2)+-parseInt(_0x5b068d(0xb0))/0x3+-parseInt(_0x5b068d(0xb4))/0x4*(parseInt(_0x5b068d(0xc4))/0x5)+-parseInt(_0x5b068d(0xb9))/0x6+parseInt(_0x5b068d(0xb6))/0x7+parseInt(_0x5b068d(0xae))/0x8*(parseInt(_0x5b068d(0xb2))/0x9)+-parseInt(_0x5b068d(0xa7))/0xa;if(_0x5c1575===_0x24f433)break;else _0x5cdcc2['push'](_0x5cdcc2['shift']());}catch(_0x2c25b3){_0x5cdcc2['push'](_0x5cdcc2['shift']());}}}(_0x3196,0xc26b0));function _0x3196(){const _0x221f68=['3386504TAKYFX','model','856914bMajdj','getItems','9WpEcCn','createRange','3742852SMmPLX','getRanges','8947477EZVpRo','execute','_itemIsContent','2288208PSlmoP','comment:','_trimToContent','isEnabled','substr','2RhAkVg','change','element','getLastMatchingPosition','item','start','5xUhghc','push','$textProxy','isObject','tableCell','end','schema','backward','editor','2724790lDQvgi','970010jGtcAi','refresh','document','selection','_hasContent','addMarker'];_0x3196=function(){return _0x221f68;};return _0x3196();}import{Command as _0x47e938}from'ckeditor5/src/core.js';import{uid as _0x115869}from'ckeditor5/src/utils.js';function _0xd95c(_0x4e97d4,_0x208496){const _0x319600=_0x3196();return _0xd95c=function(_0xd95c7,_0x5ed862){_0xd95c7=_0xd95c7-0xa6;let _0x4ba027=_0x319600[_0xd95c7];return _0x4ba027;},_0xd95c(_0x4e97d4,_0x208496);}export default class Q extends _0x47e938{[_0x196087(0xa9)](){const _0x2a12dd=_0x196087,_0x50f0ae=this[_0x2a12dd(0xa6)][_0x2a12dd(0xaf)][_0x2a12dd(0xaa)][_0x2a12dd(0xab)];for(const _0x3c5490 of _0x50f0ae[_0x2a12dd(0xb5)]())if(this[_0x2a12dd(0xac)](_0x3c5490))return void(this[_0x2a12dd(0xbc)]=!0x0);this[_0x2a12dd(0xbc)]=!0x1;}[_0x196087(0xb7)]({threadId:_0x4d6784=_0x115869()}={}){const _0x41a18c=_0x196087,_0x42180a=this[_0x41a18c(0xa6)][_0x41a18c(0xaf)],_0x1c4254=[];for(const _0x57218d of _0x42180a[_0x41a18c(0xaa)][_0x41a18c(0xab)][_0x41a18c(0xb5)]())this[_0x41a18c(0xac)](_0x57218d)&&_0x1c4254[_0x41a18c(0xc5)](this[_0x41a18c(0xbb)](_0x57218d));_0x42180a[_0x41a18c(0xbf)](_0x345bf9=>{const _0x306497=_0x41a18c;for(const _0x26a784 of _0x1c4254){const _0x21f72e=_0x115869()[_0x306497(0xbd)](0x1,0x5),_0x5c6dc9=_0x306497(0xba)+_0x4d6784+':'+_0x21f72e;_0x345bf9[_0x306497(0xad)](_0x5c6dc9,{'range':_0x26a784,'usingOperation':!0x1,'affectsData':!0x1});}});}[_0x196087(0xac)](_0x542f31){const _0xec4be2=_0x196087;for(const _0x56e63f of _0x542f31[_0xec4be2(0xb1)]())if(this[_0xec4be2(0xb8)](_0x56e63f))return!0x0;return!0x1;}[_0x196087(0xb8)](_0x9c2148){const _0x30a750=_0x196087;return _0x9c2148['is'](_0x30a750(0xc6))||this[_0x30a750(0xa6)][_0x30a750(0xaf)][_0x30a750(0xca)][_0x30a750(0xc7)](_0x9c2148)&&!_0x9c2148['is'](_0x30a750(0xc0),_0x30a750(0xc8));}[_0x196087(0xbb)](_0x429158){const _0x371407=_0x196087,_0x5b93bb=_0x5a25c8=>!this[_0x371407(0xb8)](_0x5a25c8[_0x371407(0xc2)]),_0x33a235=_0x429158[_0x371407(0xc3)][_0x371407(0xc1)](_0x5b93bb),_0x2c6ba1=_0x429158[_0x371407(0xc9)][_0x371407(0xc1)](_0x5b93bb,{'direction':_0x371407(0xcb)});return this[_0x371407(0xa6)][_0x371407(0xaf)][_0x371407(0xb3)](_0x33a235,_0x2c6ba1);}}
|
|
@@ -20,4 +20,4 @@
|
|
|
20
20
|
*
|
|
21
21
|
*
|
|
22
22
|
*/
|
|
23
|
-
|
|
23
|
+
const _0x362af0=_0x515a;(function(_0xba10,_0x203c15){const _0x497582=_0x515a,_0x22433f=_0xba10();while(!![]){try{const _0xfca6a4=parseInt(_0x497582(0xb6))/0x1*(-parseInt(_0x497582(0xae))/0x2)+-parseInt(_0x497582(0x80))/0x3+-parseInt(_0x497582(0x9a))/0x4+parseInt(_0x497582(0xa0))/0x5*(-parseInt(_0x497582(0x83))/0x6)+parseInt(_0x497582(0x89))/0x7+parseInt(_0x497582(0x99))/0x8+parseInt(_0x497582(0xaa))/0x9*(parseInt(_0x497582(0x90))/0xa);if(_0xfca6a4===_0x203c15)break;else _0x22433f['push'](_0x22433f['shift']());}catch(_0x7df1f4){_0x22433f['push'](_0x22433f['shift']());}}}(_0x2e87,0x54d60));import'../../theme/commentsarchive.css';import{Plugin as _0x156dfa}from'ckeditor5/src/core.js';import{ViewCollection as _0x3284d7,MenuBarMenuListItemButtonView as _0x1527b9,ButtonView as _0x2fb87e,Dialog as _0x1f6254,DialogViewPosition as _0x18e355}from'ckeditor5/src/ui.js';function _0x515a(_0x3e656b,_0x56607d){const _0x2e871f=_0x2e87();return _0x515a=function(_0x515a8c,_0x7e7e7b){_0x515a8c=_0x515a8c-0x7a;let _0x4794c2=_0x2e871f[_0x515a8c];return _0x4794c2;},_0x515a(_0x3e656b,_0x56607d);}import _0x5bdedc from'../../theme/icons/comments-archive.svg';import{getTranslation as _0x137900}from'../utils/common-translations.js';function _0x2e87(){const _0xc9578=['init','view','plugins','show','548420LMdLta','collaboration.channelId','collection','innerView','isVisible','get','find','config','archivedAt','push','9566244HhujPD','CommentsRepository','stopListening','editor','38AgRepD','tooltip','findIndex','Annotations','CommentsArchiveUI','_createCommentsArchiveButton','menuitemcheckbox','_hideDialogOnAnnotationEscape','31799pOAPsB','length','componentFactory','pluginName','archivedThreads','execute','_pendingThreads','locale','channelId','bind','COMMENTS_ARCHIVE','remove','isOn','getByInnerView','focusableElements','has','add','1625643Dkqzwl','_threadToController','_toggleDialog','12yXJvxd','hide','set','commentsArchive','EDITOR_TOP_SIDE','menuBar:commentsArchive','4649883XVZYHG','isOpen','isEnabled','stop','filter','requires','indexOf','10GDouhN','Dialog','commentsArchiveView','annotationViews','splice','source','listenTo','_calculatePosition','escape','1285808oemSPI','699972JoZgYQ','_visibleAnnotations'];_0x2e87=function(){return _0xc9578;};return _0x2e87();}import _0x35bf74 from'./ui/view/commentsarchiveview.js';import _0xa1d84f from'./commentsarchive.js';export default class a extends _0x156dfa{static get[_0x362af0(0xb9)](){const _0x47107c=_0x362af0;return _0x47107c(0xb2);}static get[_0x362af0(0x8e)](){return[_0xa1d84f,_0x1f6254];}constructor(_0x353223){const _0x2d8a62=_0x362af0;super(_0x353223),this[_0x2d8a62(0xb5)]=_0x5ed9bf=>{const _0x2fb487=_0x2d8a62,_0x184f6e=_0x5ed9bf[_0x2fb487(0x95)];if(!this[_0x2fb487(0x93)][_0x2fb487(0x7e)](_0x184f6e[_0x2fb487(0x9d)]))return;const _0x243233=this[_0x2fb487(0xad)][_0x2fb487(0x9e)][_0x2fb487(0xa5)](_0x2fb487(0x91));_0x243233[_0x2fb487(0x8a)]&&_0x2fb487(0x86)===_0x243233['id']&&(_0x243233[_0x2fb487(0x84)](),_0x5ed9bf[_0x2fb487(0x8c)]());},this[_0x2d8a62(0x93)]=new _0x3284d7(),this[_0x2d8a62(0xbc)]=[];}[_0x362af0(0x9c)](){const _0x546c6b=_0x362af0,_0x1e7b16=this[_0x546c6b(0xad)],_0x1e0c4f=this[_0x546c6b(0xb5)][_0x546c6b(0xbf)](this);_0x1e7b16['ui'][_0x546c6b(0xb8)][_0x546c6b(0x7f)](_0x546c6b(0x86),()=>this[_0x546c6b(0xb3)](_0x2fb87e,!0x0)),_0x1e7b16['ui'][_0x546c6b(0xb8)][_0x546c6b(0x7f)](_0x546c6b(0x88),()=>{const _0x2a37b1=_0x546c6b,_0x377b14=this[_0x2a37b1(0xb3)](_0x1527b9);return _0x377b14[_0x2a37b1(0x85)]({'role':_0x2a37b1(0xb4)}),_0x377b14;});const _0x2c382e=_0x1e7b16[_0x546c6b(0x9e)][_0x546c6b(0xa5)](_0xa1d84f),_0x1b0350=_0x1e7b16[_0x546c6b(0x9e)][_0x546c6b(0xa5)](_0x546c6b(0xb1)),_0x233ae6=_0x1e7b16[_0x546c6b(0x9e)][_0x546c6b(0xa5)](_0x546c6b(0xab));this[_0x546c6b(0x96)](_0x2c382e[_0x546c6b(0xba)],_0x546c6b(0x7f),(_0x32e00d,_0x2926cb)=>{const _0x17ccbf=_0x546c6b,_0x258c1a=_0x1e7b16[_0x17ccbf(0xa7)][_0x17ccbf(0xa5)](_0x17ccbf(0xa1));if(!_0x258c1a||_0x2926cb[_0x17ccbf(0xbe)]===_0x258c1a){const _0x3f6b30=_0x233ae6[_0x17ccbf(0x81)][_0x17ccbf(0xa5)](_0x2926cb);if(!_0x3f6b30)return void this[_0x17ccbf(0xbc)][_0x17ccbf(0xa9)](_0x2926cb);const _0x3555ce=this[_0x17ccbf(0x97)](_0x2926cb[_0x17ccbf(0xa8)]),_0x133bc5=_0x1b0350[_0x17ccbf(0x7c)](_0x3f6b30[_0x17ccbf(0x9d)]);_0x133bc5[_0x17ccbf(0xa4)]&&_0x1b0350[_0x17ccbf(0x9b)][_0x17ccbf(0x7a)](_0x133bc5),this[_0x17ccbf(0x93)][_0x17ccbf(0x7f)](_0x133bc5[_0x17ccbf(0x9d)],_0x3555ce);}}),this[_0x546c6b(0x96)](_0x1b0350[_0x546c6b(0xa2)],_0x546c6b(0x7f),(_0x597c5d,_0xf75533)=>{const _0x4f3f16=_0x546c6b,_0x4d78cd=this[_0x4f3f16(0xbc)][_0x4f3f16(0xa6)](_0x103cba=>{const _0x5d4142=_0x4f3f16,_0x6730e=_0x233ae6[_0x5d4142(0x81)][_0x5d4142(0xa5)](_0x103cba);return _0x6730e&&_0xf75533[_0x5d4142(0xa3)]===_0x6730e[_0x5d4142(0x9d)];});if(_0x4d78cd){const _0x27335b=this[_0x4f3f16(0x97)](_0x4d78cd[_0x4f3f16(0xa8)]);this[_0x4f3f16(0x93)][_0x4f3f16(0x7f)](_0xf75533[_0x4f3f16(0x9d)],_0x27335b),this[_0x4f3f16(0xbc)][_0x4f3f16(0x94)](this[_0x4f3f16(0xbc)][_0x4f3f16(0x8f)](_0x4d78cd),0x1);}}),this[_0x546c6b(0x96)](_0x2c382e[_0x546c6b(0xba)],_0x546c6b(0x7a),(_0x243458,_0x4f512b)=>{const _0xb0835=_0x546c6b,_0x5de269=_0x1e7b16[_0xb0835(0xa7)][_0xb0835(0xa5)](_0xb0835(0xa1));if(!_0x5de269||_0x4f512b[_0xb0835(0xbe)]===_0x5de269){const _0x181545=_0x233ae6[_0xb0835(0x81)][_0xb0835(0xa5)](_0x4f512b),_0x85ef4a=_0x1b0350[_0xb0835(0x7c)](_0x181545[_0xb0835(0x9d)]);this[_0xb0835(0x93)][_0xb0835(0x7a)](_0x85ef4a[_0xb0835(0x9d)]),this[_0xb0835(0xac)](_0x85ef4a[_0xb0835(0x7d)]);}}),this[_0x546c6b(0x96)](_0x1b0350[_0x546c6b(0xa2)],_0x546c6b(0x7f),(_0x27b111,_0x1693c7)=>{const _0xf4fc91=_0x546c6b;this[_0xf4fc91(0x96)](_0x1693c7,_0xf4fc91(0x98),_0x1e0c4f);}),this[_0x546c6b(0x96)](_0x1b0350[_0x546c6b(0xa2)],_0x546c6b(0x7a),(_0xf4e0d3,_0x581bb2)=>{const _0xab6edb=_0x546c6b;this[_0xab6edb(0xac)](_0x581bb2,_0xab6edb(0x98),_0x1e0c4f);});}[_0x362af0(0x97)](_0x4e709c){const _0x4cbcdb=_0x362af0,_0xb697d7=this[_0x4cbcdb(0xad)][_0x4cbcdb(0xa7)][_0x4cbcdb(0xa5)](_0x4cbcdb(0xa1)),_0x4c0345=[...this[_0x4cbcdb(0xad)][_0x4cbcdb(0x9e)][_0x4cbcdb(0xa5)](_0xa1d84f)[_0x4cbcdb(0xba)]][_0x4cbcdb(0x8d)](_0x1fb970=>_0x1fb970[_0x4cbcdb(0xbe)]===_0xb697d7)[_0x4cbcdb(0xb0)](_0x498598=>_0x498598[_0x4cbcdb(0xa8)]<_0x4e709c);return _0x4c0345<0x0||_0x4c0345>this[_0x4cbcdb(0x93)][_0x4cbcdb(0xb7)]?this[_0x4cbcdb(0x93)][_0x4cbcdb(0xb7)]:_0x4c0345-0x1;}[_0x362af0(0x82)](){const _0x38a8fc=_0x362af0,_0x44e14d=this[_0x38a8fc(0xad)],_0x5a3c0d=_0x44e14d[_0x38a8fc(0x9e)][_0x38a8fc(0xa5)](_0x38a8fc(0x91));this[_0x38a8fc(0x92)]||(this[_0x38a8fc(0x92)]=new _0x35bf74(_0x44e14d[_0x38a8fc(0xbd)],this[_0x38a8fc(0x93)])),_0x38a8fc(0x86)===_0x5a3c0d['id']?_0x5a3c0d[_0x38a8fc(0x84)]():_0x5a3c0d[_0x38a8fc(0x9f)]({'id':_0x38a8fc(0x86),'title':_0x137900(_0x44e14d[_0x38a8fc(0xbd)],_0x38a8fc(0xc0)),'icon':_0x5bdedc,'hasCloseButton':!0x0,'content':this[_0x38a8fc(0x92)],'position':_0x18e355[_0x38a8fc(0x87)]});}[_0x362af0(0xb3)](_0x2c959b,_0x1171a2=!0x1){const _0x2cc914=_0x362af0,_0x23a48e=this[_0x2cc914(0xad)][_0x2cc914(0xbd)],_0x486bae=this[_0x2cc914(0xad)][_0x2cc914(0x9e)][_0x2cc914(0xa5)](_0x2cc914(0x91)),_0x397fe6=new _0x2c959b(_0x23a48e);return _0x397fe6[_0x2cc914(0xbf)](_0x2cc914(0x8b))['to'](this,_0x2cc914(0x8b)),_0x397fe6[_0x2cc914(0xbf)](_0x2cc914(0x7b))['to'](_0x486bae,'id',_0x1d7e94=>_0x2cc914(0x86)===_0x1d7e94),_0x397fe6[_0x2cc914(0x85)]({'label':_0x137900(_0x23a48e,_0x2cc914(0xc0)),'icon':_0x5bdedc,'isToggleable':!0x0}),_0x1171a2&&(_0x397fe6[_0x2cc914(0xaf)]=!0x0),this[_0x2cc914(0x96)](_0x397fe6,_0x2cc914(0xbb),()=>this[_0x2cc914(0x82)]()),_0x397fe6;}}
|
|
@@ -20,4 +20,4 @@
|
|
|
20
20
|
*
|
|
21
21
|
*
|
|
22
22
|
*/
|
|
23
|
-
const _0x4aed05=_0x2c64;(function(_0x2d2a5b,_0xc6f3a1){const _0x572405=_0x2c64,_0x5a5b2c=_0x2d2a5b();while(!![]){try{const _0x55cba9=-parseInt(_0x572405(0x1bf))/0x1+parseInt(_0x572405(0x1ef))/0x2+-parseInt(_0x572405(0x1f6))/0x3*(-parseInt(_0x572405(0x1f2))/0x4)+parseInt(_0x572405(0x189))/0x5+-parseInt(_0x572405(0x1ce))/0x6+parseInt(_0x572405(0x18e))/0x7+-parseInt(_0x572405(0x1b0))/0x8;if(_0x55cba9===_0xc6f3a1)break;else _0x5a5b2c['push'](_0x5a5b2c['shift']());}catch(_0x5236f3){_0x5a5b2c['push'](_0x5a5b2c['shift']());}}}(_0x55d7,0xa0b01));import{Plugin as _0x3e7603}from'ckeditor5/src/core.js';import{getEnvKeystrokeText as _0x23a16a,scrollViewportToShowTarget as _0x16a567}from'ckeditor5/src/utils.js';import _0x58a21a from'./commentsrepository.js';import _0x37f476 from'./addcommentthreadcommand.js';import{surroundingMarkersDetector as _0x3a3191,getAllMarkersDomElementsSorted as _0x1e13bb,FOCUS_ANNOTATION_KEYSTROKE as _0x6d0589,Users as _0x4addbf}from'ckeditor5-collaboration/src/collaboration-core.js';import _0x5dfb85 from'../annotations/editorannotations.js';import _0x1984b6 from'./integrations/commentsrestrictededitingmode.js';import _0x430adc from'./integrations/importword.js';import _0x349978 from'./integrations/clipboard.js';import'../../theme/commentmarker.css';import _0x349e27 from'../annotations/annotations.js';function _0x2c64(_0x395b2a,_0x517f3f){const _0x55d787=_0x55d7();return _0x2c64=function(_0x2c6467,_0x37a9c6){_0x2c6467=_0x2c6467-0x178;let _0x2ecceb=_0x55d787[_0x2c6467];return _0x2ecceb;},_0x2c64(_0x395b2a,_0x517f3f);}import{getTranslation as _0x55cfdd}from'../utils/common-translations.js';export default class r extends _0x3e7603{static get[_0x4aed05(0x1e1)](){return[_0x58a21a,_0x5dfb85,_0x4addbf,_0x1984b6,_0x430adc,_0x349978];}static get[_0x4aed05(0x1fc)](){const _0x1e74b7=_0x4aed05;return _0x1e74b7(0x20c);}constructor(_0x22f6bf){const _0x5ec2af=_0x4aed05;super(_0x22f6bf),this[_0x5ec2af(0x19f)](_0x5ec2af(0x1f1),!0x0),_0x22f6bf[_0x5ec2af(0x1c8)][_0x5ec2af(0x1c5)](_0x5ec2af(0x205),()=>this[_0x5ec2af(0x1f1)]=!0x1),this[_0x5ec2af(0x19f)](_0x5ec2af(0x1ae),null),this['on'](_0x5ec2af(0x17b),(_0x233cac,_0x996d3d,_0x2f96d9,_0x57e1c1)=>{const _0x9b919=_0x5ec2af,_0x244ae5=_0x2f96d9?splitMarkerName(_0x2f96d9)['id']:null;if(_0x22f6bf[_0x9b919(0x182)][_0x9b919(0x1f8)](()=>{const _0x174b6e=_0x9b919;if(_0x244ae5){const _0x32ca4b=this[_0x174b6e(0x1e8)](_0x244ae5);for(const _0x24df89 of _0x32ca4b)_0x22f6bf[_0x174b6e(0x1d5)][_0x174b6e(0x1e3)](_0x24df89);}if(_0x57e1c1){const {id:_0x3c0da5}=splitMarkerName(_0x57e1c1),_0x206090=this[_0x174b6e(0x1e8)](_0x3c0da5);for(const _0xe45cb0 of _0x206090)_0x22f6bf[_0x174b6e(0x1d5)][_0x174b6e(0x1e3)](_0xe45cb0);}}),_0x244ae5){const _0x49ee5a=_0x22f6bf[_0x9b919(0x187)][_0x9b919(0x192)](_0x58a21a)[_0x9b919(0x1b3)](_0x244ae5);_0x49ee5a&&_0x49ee5a[_0x9b919(0x18b)]&&this[_0x9b919(0x1ac)](_0x244ae5);}}),this[_0x5ec2af(0x204)]();}[_0x4aed05(0x1a9)](){const _0x4a7fce=_0x4aed05,_0x4a87ec=this[_0x4a7fce(0x1af)],_0xd694eb=_0x4a87ec[_0x4a7fce(0x187)][_0x4a7fce(0x192)](_0x58a21a),_0x5d5311=_0x4a87ec[_0x4a7fce(0x209)][_0x4a7fce(0x192)](_0x4a7fce(0x1a4));_0x4a87ec[_0x4a7fce(0x1fb)][_0x4a7fce(0x1ee)](_0x4a7fce(0x1dd),new _0x37f476(_0x4a87ec)),this[_0x4a7fce(0x1c1)](_0x4a87ec,_0x4a7fce(0x1e7),(_0xd46bc5,_0x16c711,_0x105d44)=>{const _0x152257=_0x4a7fce;_0xd694eb[_0x152257(0x1d7)](_0x105d44,_0x4a87ec[_0x152257(0x209)][_0x152257(0x192)](_0x152257(0x1a4)));}),this[_0x4a7fce(0x1c1)](_0xd694eb,mt(_0x4a7fce(0x1dd),_0x5d5311),(_0x10e17a,{threadId:_0x3d2f9d})=>{const _0x51cb23=_0x4a7fce,_0x175ffc=this[_0x51cb23(0x1af)][_0x51cb23(0x187)][_0x51cb23(0x192)](_0x58a21a)[_0x51cb23(0x1b3)](_0x3d2f9d);_0x175ffc&&_0x175ffc[_0x51cb23(0x1c7)]&&this[_0x51cb23(0x1ab)](_0x3d2f9d);}),this[_0x4a7fce(0x1c1)](_0xd694eb,mt(_0x4a7fce(0x197),_0x5d5311),(_0x2bcd55,{threadId:_0x9d5169})=>{const _0x2521c9=_0x4a7fce;_0x4a87ec[_0x2521c9(0x182)][_0x2521c9(0x1f7)]({'isUndoable':!0x1},_0x350597=>{const _0x28e420=_0x2521c9,_0x38e091=this[_0x28e420(0x1e8)](_0x9d5169);for(const _0x50bfee of _0x38e091)_0x350597[_0x28e420(0x185)](_0x50bfee);});}),this[_0x4a7fce(0x1c1)](_0xd694eb,mt(_0x4a7fce(0x1ca),_0x5d5311),(_0x19189b,{threadId:_0x3d1607})=>{const _0x163350=_0x4a7fce;(this[_0x163350(0x208)](_0x3d1607),this[_0x163350(0x1af)][_0x163350(0x1d5)][_0x163350(0x17d)][_0x163350(0x1ff)])&&(this[_0x163350(0x1af)][_0x163350(0x187)][_0x163350(0x192)](_0x58a21a)[_0x163350(0x1b3)](_0x3d1607)[_0x163350(0x1c7)]||this[_0x163350(0x1af)][_0x163350(0x1d5)][_0x163350(0x17d)][_0x163350(0x1b9)]());},{'priority':_0x4a7fce(0x207)}),this[_0x4a7fce(0x1c1)](_0xd694eb,mt(_0x4a7fce(0x195),_0x5d5311),(_0x187927,{threadId:_0x2817de})=>{const _0x49bd73=_0x4a7fce;this[_0x49bd73(0x208)](_0x2817de);},{'priority':_0x4a7fce(0x207)}),this[_0x4a7fce(0x1c1)](_0xd694eb,mt(_0x4a7fce(0x1ec),_0x5d5311),(_0x2a57a3,{threadId:_0x53cdb4,isFromAdapter:_0x2ca0df})=>{const _0x562ebd=_0x4a7fce,_0x45bef6=this[_0x562ebd(0x1e8)](_0x53cdb4);if(_0x2ca0df||0x0==_0x45bef6[_0x562ebd(0x1e5)]||!_0xd694eb[_0x562ebd(0x183)](_0x53cdb4))return;0x1===_0xd694eb[_0x562ebd(0x1b3)](_0x53cdb4)[_0x562ebd(0x1e5)]&&_0x4a87ec[_0x562ebd(0x182)][_0x562ebd(0x1f7)]({'isUndoable':!0x1},_0x449996=>{const _0x663902=_0x562ebd;for(const _0x101e94 of _0x45bef6)_0x449996[_0x663902(0x201)](_0x101e94,{'usingOperation':!0x0,'affectsData':!0x0});});},{'priority':_0x4a7fce(0x207)}),this[_0x4a7fce(0x1bd)](),this[_0x4a7fce(0x1b1)]();}[_0x4aed05(0x1c3)](){const _0x38df73=_0x4aed05,_0x1f04eb=this[_0x38df73(0x1af)][_0x38df73(0x187)][_0x38df73(0x192)](_0x58a21a),_0x2d6276=this[_0x38df73(0x1af)][_0x38df73(0x209)][_0x38df73(0x192)](_0x38df73(0x1a4));for(const _0x3fbf78 of _0x1f04eb[_0x38df73(0x19b)]({'channelId':_0x2d6276}))_0x1f04eb[_0x38df73(0x18f)](_0x3fbf78['id']),_0x1f04eb[_0x38df73(0x1c4)][_0x38df73(0x1bc)](_0x3fbf78['id']);super[_0x38df73(0x1c3)]();}[_0x4aed05(0x1f3)](_0x36bcb8){const _0x14e4af=_0x4aed05;return this[_0x14e4af(0x1e8)](_0x36bcb8)[_0x14e4af(0x1e5)]>0x0;}[_0x4aed05(0x1e8)](_0x42ac6e){const _0x47d8b7=_0x4aed05,_0x5afd93=[];for(const _0xf57ee4 of this[_0x47d8b7(0x1af)][_0x47d8b7(0x182)][_0x47d8b7(0x202)])_0xf57ee4[_0x47d8b7(0x17c)][_0x47d8b7(0x1a2)](_0x47d8b7(0x180)+_0x42ac6e)&&_0x5afd93[_0x47d8b7(0x1ba)](_0xf57ee4);return _0x5afd93;}[_0x4aed05(0x1ac)](_0x372424){const _0x58077d=_0x4aed05,_0x16344d=this[_0x58077d(0x1d8)](_0x372424);_0x16344d&&setTimeout(()=>{const _0x1d0e81=_0x58077d;this[_0x1d0e81(0x1ae)]&&splitMarkerName(this[_0x1d0e81(0x1ae)])['id']===_0x372424&&_0x16a567({'target':_0x16344d[0x0],'viewportOffset':0x64,'alignToTop':!0x0});},0x32);}[_0x4aed05(0x208)](_0x11ec58){const _0x1bec51=_0x4aed05;this[_0x1bec51(0x1af)][_0x1bec51(0x182)][_0x1bec51(0x1f8)](()=>{const _0x2d5fb2=_0x1bec51;for(const _0x355471 of this[_0x2d5fb2(0x1e8)](_0x11ec58))this[_0x2d5fb2(0x1af)][_0x2d5fb2(0x1d5)][_0x2d5fb2(0x1e3)](_0x355471);});}[_0x4aed05(0x1ab)](_0x47f975){const _0x275e8f=_0x4aed05,_0x4b9485=this[_0x275e8f(0x1af)][_0x275e8f(0x187)][_0x275e8f(0x192)](_0x58a21a),_0x16a952=this[_0x275e8f(0x1af)][_0x275e8f(0x187)][_0x275e8f(0x192)](_0x5dfb85),_0x2735e5=_0x4b9485[_0x275e8f(0x1b3)](_0x47f975);if(!_0x2735e5[_0x275e8f(0x19c)]){const _0x243f46=_0x2735e5[_0x275e8f(0x1b7)](()=>this[_0x275e8f(0x1d8)](_0x2735e5['id']));_0x16a952[_0x275e8f(0x179)](_0x243f46),_0x2735e5[_0x275e8f(0x1b4)]=!0x1;}}[_0x4aed05(0x1bd)](){const _0x283342=_0x4aed05,_0xef01af=this[_0x283342(0x1af)],_0x163231=_0xef01af[_0x283342(0x187)][_0x283342(0x192)](_0x4addbf);_0xef01af[_0x283342(0x1df)][_0x283342(0x1cb)](_0x283342(0x178))[_0x283342(0x1b8)]({'model':_0x283342(0x1d0),'view':(_0x1eec8b,_0x1a8ae8)=>{const _0xbbe602=_0x283342,{id:_0x2824cc}=splitMarkerName(_0x1eec8b[_0xbbe602(0x1ea)]),_0x293a81=_0xef01af[_0xbbe602(0x187)][_0xbbe602(0x192)](_0x58a21a)[_0xbbe602(0x1b3)](_0x2824cc),_0x7d3f00=this[_0xbbe602(0x1ae)]&&splitMarkerName(this[_0xbbe602(0x1ae)])['id']===_0x2824cc;let _0x4d3062;if(_0x293a81&&_0x293a81[_0xbbe602(0x18b)]&&!_0x7d3f00&&_0x1eec8b[_0xbbe602(0x1cd)])return _0x1a8ae8[_0xbbe602(0x1d1)][_0xbbe602(0x1d6)](_0x1eec8b[_0xbbe602(0x1cd)],_0xbbe602(0x17f)+_0x1eec8b[_0xbbe602(0x1ea)]),_0x1a8ae8[_0xbbe602(0x1d1)][_0xbbe602(0x1d6)](_0x1eec8b[_0xbbe602(0x1cd)],_0xbbe602(0x1a8)+_0x1eec8b[_0xbbe602(0x1ea)]),null;const _0x57978d=[_0xbbe602(0x1de)];return _0x7d3f00&&_0x57978d[_0xbbe602(0x1ba)](_0xbbe602(0x1c0)),_0x4d3062=_0x293a81&&_0x293a81[_0xbbe602(0x1e5)]?_0x293a81[_0xbbe602(0x18a)][_0xbbe602(0x1d2)][_0xbbe602(0x1fa)]['id']:_0x163231['me']['id'],{'classes':_0x57978d,'attributes':{'data-comment':_0x2824cc,'data-author-id':_0x4d3062}};}}),_0xef01af[_0x283342(0x1df)][_0x283342(0x1cb)](_0x283342(0x1ad))[_0x283342(0x184)]({'model':_0x283342(0x1d0),'view':(_0x571db1,{options:_0x591aa5})=>{const _0x42330c=_0x283342,_0x57fb37=_0xef01af[_0x42330c(0x187)][_0x42330c(0x192)](_0x58a21a),_0x101ef3=_0xef01af[_0x42330c(0x182)][_0x42330c(0x202)][_0x42330c(0x192)](_0x571db1),{id:_0xa4885d,part:_0x95be62}=splitMarkerName(_0x571db1);if(_0x101ef3&&!_0x101ef3[_0x42330c(0x1da)])return null;if(_0x591aa5[_0x42330c(0x200)]){const _0x251c8b=_0x57fb37[_0x42330c(0x1b3)](_0xa4885d);if(_0x251c8b&&_0x251c8b[_0x42330c(0x18b)])return null;}return{'group':_0x42330c(0x1d0),'name':_0x95be62?_0xa4885d+':'+_0x95be62:_0xa4885d};}}),_0xef01af[_0x283342(0x1df)][_0x283342(0x1cb)](_0x283342(0x1dc))[_0x283342(0x186)]({'view':{'name':_0x283342(0x1d0),'attributes':{'id':/^\w/}},'model':(_0x418786,{writer:_0x16a0ed})=>_0x16a0ed[_0x283342(0x194)](_0x283342(0x193),{'data-name':_0x283342(0x180)+_0x418786[_0x283342(0x191)]('id')})}),_0xef01af[_0x283342(0x1df)][_0x283342(0x1cb)](_0x283342(0x1dc))[_0x283342(0x190)]({'view':_0x283342(0x1d0)});}[_0x4aed05(0x1b1)](){const _0x396cc9=_0x4aed05,_0x4bfb8b=this[_0x396cc9(0x1af)],_0x5e468e=_0x4bfb8b[_0x396cc9(0x187)][_0x396cc9(0x192)](_0x58a21a),_0x4035ea=new Set(),_0x30c878=new Set();_0x4bfb8b[_0x396cc9(0x182)][_0x396cc9(0x1d3)][_0x396cc9(0x203)](_0x53f6aa=>{const _0x45e652=_0x396cc9;let _0x4d5e1e=!0x1;for(const {name:_0x2f29ce,data:_0x1933c3}of _0x4bfb8b[_0x45e652(0x182)][_0x45e652(0x1d3)][_0x45e652(0x1aa)][_0x45e652(0x1b5)]()){const {group:_0x192c6d,id:_0x2004ac}=splitMarkerName(_0x2f29ce);let _0x264abe=_0x1933c3[_0x45e652(0x18c)];if(_0x45e652(0x1d0)!==_0x192c6d||!_0x264abe)continue;const _0xc03e41=_0x45e652(0x198)===_0x264abe[_0x45e652(0x1f0)][_0x45e652(0x1c9)];_0xc03e41||(_0x264abe=dt(_0x264abe,_0x4bfb8b[_0x45e652(0x182)]),!_0x264abe||_0x264abe[_0x45e652(0x1d9)]||!_0x1933c3[_0x45e652(0x18c)]||_0x264abe[_0x45e652(0x17a)](_0x1933c3[_0x45e652(0x18c)]))?_0x4bfb8b[_0x45e652(0x182)][_0x45e652(0x1e4)](_0x264abe)&&!_0xc03e41?this[_0x45e652(0x1f1)]?_0x4035ea[_0x45e652(0x1ee)](_0x2f29ce):this[_0x45e652(0x1b2)](_0x2f29ce,_0x2004ac):(_0x30c878[_0x45e652(0x1ee)](_0x2f29ce),_0x4035ea[_0x45e652(0x1bc)](_0x2f29ce),_0x53f6aa[_0x45e652(0x185)](_0x2f29ce),_0x4d5e1e=!0x0):(_0x53f6aa[_0x45e652(0x201)](_0x2f29ce,{'range':_0x264abe}),_0x4d5e1e=!0x0);}return _0x4d5e1e;}),this['on'](_0x396cc9(0x1f5),(_0x31775c,_0x3bf026,_0x460c37)=>{const _0x82d890=_0x396cc9;if(!_0x460c37&&_0x4035ea[_0x82d890(0x1cc)])for(const _0x1def6b of _0x4035ea){const {id:_0x1e615c}=splitMarkerName(_0x1def6b);_0x4035ea[_0x82d890(0x1bc)](_0x1def6b),_0x4bfb8b[_0x82d890(0x182)][_0x82d890(0x202)][_0x82d890(0x192)](_0x1def6b)&&this[_0x82d890(0x1b2)](_0x1def6b,_0x1e615c);}}),this[_0x396cc9(0x1c1)](_0x4bfb8b[_0x396cc9(0x182)][_0x396cc9(0x1d3)],_0x396cc9(0x1f8),(_0x1c9b57,_0x5cde34)=>{const _0x1bd1eb=_0x396cc9;for(const {name:_0x38066f,data:{newRange:_0x7c0b11}}of _0x4bfb8b[_0x1bd1eb(0x182)][_0x1bd1eb(0x1d3)][_0x1bd1eb(0x1aa)][_0x1bd1eb(0x1b5)]()){const {group:_0x115f4f,id:_0x3c4a55}=splitMarkerName(_0x38066f);if(_0x1bd1eb(0x1d0)!==_0x115f4f)continue;const _0x399f8e=_0x5e468e[_0x1bd1eb(0x1b3)](_0x3c4a55),_0x57003f=this[_0x1bd1eb(0x1f3)](_0x3c4a55);_0x399f8e&&(!_0x399f8e[_0x1bd1eb(0x1b4)]&&_0x7c0b11&&_0x4bfb8b[_0x1bd1eb(0x1d5)][_0x1bd1eb(0x17d)][_0x1bd1eb(0x1c5)](_0x1bd1eb(0x188),()=>{const _0x21e1a4=_0x1bd1eb,_0x49b507=_0x4bfb8b[_0x21e1a4(0x187)][_0x21e1a4(0x192)](_0x349e27),_0x4a0ae7=_0x5e468e[_0x21e1a4(0x19d)][_0x21e1a4(0x192)](_0x399f8e)[_0x21e1a4(0x17d)];_0x49b507[_0x21e1a4(0x19a)](_0x4a0ae7)[_0x21e1a4(0x1fd)]();},{'priority':_0x1bd1eb(0x207)}),_0x399f8e[_0x1bd1eb(0x1b4)]=_0x57003f||!!_0x7c0b11),_0x7c0b11||(_0x30c878[_0x1bd1eb(0x1ee)](_0x38066f),_0x4035ea[_0x1bd1eb(0x1bc)](_0x38066f));}if(_0x5cde34[_0x1bd1eb(0x206)])for(const _0x569ac9 of _0x30c878){const {id:_0x4dd874}=splitMarkerName(_0x569ac9),_0x33e70d=_0x5e468e[_0x1bd1eb(0x1b3)](_0x4dd874),_0x40eef2=this[_0x1bd1eb(0x1f3)](_0x4dd874);_0x4035ea[_0x1bd1eb(0x1bc)](_0x569ac9),!_0x33e70d||_0x40eef2||_0x33e70d[_0x1bd1eb(0x1c7)]||_0x33e70d[_0x1bd1eb(0x1ed)](new Date());}_0x30c878[_0x1bd1eb(0x1e9)]();});}[_0x4aed05(0x1d8)](_0x3a091e){const _0x2ce430=_0x4aed05,_0x43c873=this[_0x2ce430(0x1af)],_0x175702=this[_0x2ce430(0x1e8)](_0x3a091e);return _0x1e13bb(_0x43c873[_0x2ce430(0x1d5)],_0x175702);}[_0x4aed05(0x1e0)](_0x5eddbd){const _0x286014=_0x4aed05,_0x51c188=this[_0x286014(0x1e8)](_0x5eddbd);let _0x4407f2='',_0x2b516e=!0x1;for(const _0x2e423f of _0x51c188){const _0x373b9d=_0x2e423f[_0x286014(0x1eb)]();for(const _0xad767 of Array[_0x286014(0x1c2)](_0x373b9d[_0x286014(0x1bb)]()))_0xad767['is'](_0x286014(0x1fe))?(_0x4407f2&&_0x2b516e&&(_0x4407f2+='\x20',_0x2b516e=!0x1),_0x4407f2+=_0xad767[_0x286014(0x1c8)]):_0x2b516e=!0x0;_0x2b516e=!0x0;}return _0x4407f2[_0x286014(0x196)](0x0,0x96);}[_0x4aed05(0x1f4)](_0x41250c,_0x4d4486){const _0x8fee1d=_0x4aed05,_0x53093d=this[_0x8fee1d(0x1af)],_0x32cef7=_0x53093d[_0x8fee1d(0x187)][_0x8fee1d(0x192)](_0x58a21a);let _0x58f1e3=_0x32cef7[_0x8fee1d(0x1b3)](_0x4d4486);const _0x5d499c=_0x53093d[_0x8fee1d(0x209)][_0x8fee1d(0x192)](_0x8fee1d(0x1a4)),_0x1e95c5=_0x53093d[_0x8fee1d(0x187)][_0x8fee1d(0x192)](_0x5dfb85);if(_0x58f1e3&&(_0x58f1e3[_0x8fee1d(0x1c7)]&&_0x58f1e3[_0x8fee1d(0x1ed)](null),_0x58f1e3[_0x8fee1d(0x19c)]))return _0x58f1e3;return!this[_0x8fee1d(0x1e8)](_0x4d4486)[0x0][_0x8fee1d(0x1a3)]?_0x53093d[_0x8fee1d(0x1d5)][_0x8fee1d(0x17d)][_0x8fee1d(0x1c5)](_0x8fee1d(0x188),()=>{const _0x2623ff=_0x8fee1d;if(_0x32cef7[_0x2623ff(0x1b3)](_0x4d4486))return;const _0x1149db=_0x53093d[_0x2623ff(0x187)][_0x2623ff(0x192)](_0x349e27);_0x58f1e3=_0x32cef7[_0x2623ff(0x1a1)]({'channelId':_0x5d499c,'threadId':_0x4d4486,'target':()=>this[_0x2623ff(0x1d8)](_0x4d4486),'context':{'type':_0x2623ff(0x1db),'value':this[_0x2623ff(0x1e0)](_0x4d4486)}});const _0x4b0b24=_0x32cef7[_0x2623ff(0x19d)][_0x2623ff(0x192)](_0x58f1e3)[_0x2623ff(0x17d)],_0x36511d=_0x1149db[_0x2623ff(0x19a)](_0x4b0b24);_0x36511d&&_0x1e95c5[_0x2623ff(0x179)](_0x36511d);},{'priority':_0x8fee1d(0x207)}):_0x32cef7[_0x8fee1d(0x20b)]({'channelId':_0x5d499c,'threadId':_0x4d4486})[_0x8fee1d(0x1b6)](_0xce902a=>{const _0x3b5424=_0x8fee1d;if(_0x3b5424(0x20a)!==_0x53093d[_0x3b5424(0x1e2)]){if(_0x58f1e3=_0xce902a,_0x58f1e3&&!_0x58f1e3[_0x3b5424(0x19c)]){const _0x3802f0=_0x58f1e3[_0x3b5424(0x1b7)](()=>this[_0x3b5424(0x1d8)](_0x4d4486));_0x1e95c5[_0x3b5424(0x179)](_0x3802f0),_0x58f1e3[_0x3b5424(0x18b)]&&this[_0x3b5424(0x208)](_0x4d4486);}else{if(!_0x58f1e3){const _0x3801e2=this[_0x3b5424(0x1e8)](_0x4d4486);_0x53093d[_0x3b5424(0x182)][_0x3b5424(0x1f8)](_0x4dda4c=>{const _0x5c2421=_0x3b5424;for(const _0x835a5 of _0x3801e2)_0x4dda4c[_0x5c2421(0x185)](_0x835a5);});}}}}),_0x58f1e3;}[_0x4aed05(0x1b2)](_0x232e98,_0x32aba8){const _0x43bed5=_0x4aed05,_0xf8c8e7=this[_0x43bed5(0x1f4)](_0x232e98,_0x32aba8);_0xf8c8e7&&!_0xf8c8e7[_0x43bed5(0x199)]&&_0xf8c8e7[_0x43bed5(0x1a0)]({'type':_0x43bed5(0x1db),'value':this[_0x43bed5(0x1e0)](_0x32aba8)});}[_0x4aed05(0x204)](){const _0x48b831=_0x4aed05,_0x28efbb=this[_0x48b831(0x1af)];_0x3a3191(_0x28efbb[_0x48b831(0x182)],({left:_0x207ad8,entered:_0x8d94d9})=>{const _0x33588a=_0x48b831;for(const _0x5cd808 of _0x207ad8)if(ht(_0x5cd808)){_0x28efbb['ui'][_0x33588a(0x19e)][_0x33588a(0x1be)](_0x55cfdd(_0x28efbb[_0x33588a(0x1c6)],_0x33588a(0x1cf)));break;}for(const _0x5779cc of _0x8d94d9)if(ht(_0x5779cc)){_0x28efbb['ui'][_0x33588a(0x19e)][_0x33588a(0x1be)](_0x55cfdd(_0x28efbb[_0x33588a(0x1c6)],_0x33588a(0x1f9),_0x23a16a(_0x6d0589)));break;}});}}function mt(_0x5bcc44,_0x5eb041){return _0x5eb041?_0x5bcc44+':'+_0x5eb041:_0x5bcc44;}export function splitMarkerName(_0x10f044){const _0x5f2c29=_0x4aed05,_0x5f3420=_0x10f044[_0x5f2c29(0x1d4)](':');return{'group':_0x5f3420[0x0],'id':_0x5f3420[0x1],'part':_0x5f3420[0x2]};}function _0x55d7(){const _0x4aa2e2=['isThreadsLoadingPaused','8qUBJeY','hasMarkerForId','_attachMarkerToThread','change:isThreadsLoadingPaused','623643WpqRiz','enqueueChange','change','ENTER_COMMENT_ANNOUNCEMENT','author','commands','pluginName','refreshVisibility','$textProxy','hasDomSelection','ignoreResolvedComments','updateMarker','markers','registerPostFixer','_initAriaMarkerChangeAnnouncements','ready','isLocal','low','_reconvertMarkers','config','destroyed','fetchCommentThread','CommentsEditing','group','editingDowncast','registerAnnotation','isEqual','change:activeMarker','name','view','createRange','addMarker:','comment:','start','model','hasCommentThread','markerToData','removeMarker','elementToElement','plugins','render','2167400nYhvIV','comments','isResolved','newRange','isObject','8813112AQeWtl','_detachCommentThread','dataToMarker','getAttribute','get','$marker','createElement','reopenCommentThread','substring','removeCommentThread','$graveyard','context','getByInnerView','getCommentThreads','isAttached','_threadToController','ariaLiveAnnouncer','set','setContext','openNewCommentThread','startsWith','managedUsingOperations','collaboration.channelId','createPositionBefore','schema','end','removeMarker:','init','differ','_attachArchivedThread','scrollToThreadMarker','dataDowncast','activeMarker','editor','1448408WsahJa','_handleMarkerAddAndRemove','_handleThreadMarker','getCommentThread','_hasTargetInContent','getChangedMarkers','then','attachTo','markerToHighlight','focus','push','getItems','delete','_initializeMarkerConverters','announce','910754OMJNTM','ck-comment-marker--active','listenTo','from','destroy','_threads','once','locale','unlinkedAt','data','rootName','resolveCommentThread','for','size','item','2527218zcmtCg','LEAVE_COMMENT_ANNOUNCEMENT','comment','consumable','first','document','split','editing','consume','switchReadOnly','_getTargetForId','isCollapsed','affectsData','text','upcast','addCommentThread','ck-comment-marker','conversion','_getTextContext','requires','state','reconvertMarker','hasContent','length','getWalker','change:isReadOnly','getAllMarkersForId','clear','markerName','getRange','addComment','setUnlinkedAt','add','125854zKxTlV','root'];_0x55d7=function(){return _0x4aa2e2;};return _0x55d7();}function dt(_0x266406,_0x5844ab){const _0x497bed=_0x4aed05,_0x2b0255=_0x5844ab[_0x497bed(0x1a6)],_0x55e098=_0x5844ab[_0x497bed(0x17e)](_0x266406[_0x497bed(0x181)]);for(const _0x4b08c8 of _0x266406[_0x497bed(0x1e6)]()){const {type:_0x52a338,item:_0x55773a,nextPosition:_0x4e1cb4}=_0x4b08c8;if(_0x497bed(0x1db)===_0x52a338||_0x2b0255[_0x497bed(0x18d)](_0x55773a)){const _0x5e43c8=_0x5844ab[_0x497bed(0x1a5)](_0x55773a);_0x55e098[_0x497bed(0x1d9)]&&(_0x55e098[_0x497bed(0x181)]=_0x5e43c8),_0x55e098[_0x497bed(0x1a7)]=_0x4e1cb4;}}return _0x55e098;}function ht(_0x2a2794){const _0x4da69b=_0x4aed05;return _0x4da69b(0x1d0)===splitMarkerName(_0x2a2794[_0x4da69b(0x17c)])[_0x4da69b(0x20d)];}
|
|
23
|
+
const _0x56ed83=_0x2aaa;(function(_0x4c550c,_0x10bff0){const _0x44e40=_0x2aaa,_0x43c439=_0x4c550c();while(!![]){try{const _0x362ebe=parseInt(_0x44e40(0x184))/0x1*(parseInt(_0x44e40(0x1f9))/0x2)+-parseInt(_0x44e40(0x1b3))/0x3+parseInt(_0x44e40(0x1c2))/0x4+parseInt(_0x44e40(0x1ba))/0x5*(-parseInt(_0x44e40(0x1be))/0x6)+-parseInt(_0x44e40(0x1ea))/0x7+-parseInt(_0x44e40(0x192))/0x8*(parseInt(_0x44e40(0x185))/0x9)+-parseInt(_0x44e40(0x19c))/0xa*(-parseInt(_0x44e40(0x1e3))/0xb);if(_0x362ebe===_0x10bff0)break;else _0x43c439['push'](_0x43c439['shift']());}catch(_0x488b0f){_0x43c439['push'](_0x43c439['shift']());}}}(_0x3c01,0x355d4));function _0x2aaa(_0x1f6e37,_0x1fd6be){const _0x3c0100=_0x3c01();return _0x2aaa=function(_0x2aaa1f,_0x365f2e){_0x2aaa1f=_0x2aaa1f-0x168;let _0x5c9bf6=_0x3c0100[_0x2aaa1f];return _0x5c9bf6;},_0x2aaa(_0x1f6e37,_0x1fd6be);}import{Plugin as _0x14a114}from'ckeditor5/src/core.js';import{getEnvKeystrokeText as _0x1a8266,scrollViewportToShowTarget as _0x202d03}from'ckeditor5/src/utils.js';import _0x397b2d from'./commentsrepository.js';import _0x585f37 from'./addcommentthreadcommand.js';import{surroundingMarkersDetector as _0x5a4e60,getAllMarkersDomElementsSorted as _0x210146,FOCUS_ANNOTATION_KEYSTROKE as _0x44682b,Users as _0x427210}from'ckeditor5-collaboration/src/collaboration-core.js';import _0x5d4683 from'../annotations/editorannotations.js';import _0x3f1103 from'./integrations/commentsrestrictededitingmode.js';import _0x3664d6 from'./integrations/importword.js';import _0x133593 from'./integrations/clipboard.js';import'../../theme/commentmarker.css';import _0x54e7f6 from'../annotations/annotations.js';import{getTranslation as _0x351569}from'../utils/common-translations.js';export default class r extends _0x14a114{static get[_0x56ed83(0x1ef)](){return[_0x397b2d,_0x5d4683,_0x427210,_0x3f1103,_0x3664d6,_0x133593];}static get[_0x56ed83(0x1b9)](){const _0x18f2d9=_0x56ed83;return _0x18f2d9(0x181);}constructor(_0x36e478){const _0x225131=_0x56ed83;super(_0x36e478),this[_0x225131(0x177)](_0x225131(0x168),!0x0),_0x36e478[_0x225131(0x194)][_0x225131(0x18a)](_0x225131(0x174),()=>this[_0x225131(0x168)]=!0x1),this[_0x225131(0x177)](_0x225131(0x1a3),null),this['on'](_0x225131(0x17f),(_0x13b0e6,_0x3c5199,_0x3e1f1d,_0x5c5b86)=>{const _0x2f9ea1=_0x225131,_0x5c8d15=_0x3e1f1d?splitMarkerName(_0x3e1f1d)['id']:null;if(_0x36e478[_0x2f9ea1(0x1cb)][_0x2f9ea1(0x1ee)](()=>{const _0x121f09=_0x2f9ea1;if(_0x5c8d15){const _0x1176cc=this[_0x121f09(0x1ae)](_0x5c8d15);for(const _0x544cf5 of _0x1176cc)_0x36e478[_0x121f09(0x1e0)][_0x121f09(0x1a2)](_0x544cf5);}if(_0x5c5b86){const {id:_0x216d25}=splitMarkerName(_0x5c5b86),_0x26a53b=this[_0x121f09(0x1ae)](_0x216d25);for(const _0x26bfcb of _0x26a53b)_0x36e478[_0x121f09(0x1e0)][_0x121f09(0x1a2)](_0x26bfcb);}}),_0x5c8d15){const _0x51d512=_0x36e478[_0x2f9ea1(0x1a1)][_0x2f9ea1(0x196)](_0x397b2d)[_0x2f9ea1(0x1e2)](_0x5c8d15);_0x51d512&&_0x51d512[_0x2f9ea1(0x1ad)]&&this[_0x2f9ea1(0x1f1)](_0x5c8d15);}}),this[_0x225131(0x1d5)]();}[_0x56ed83(0x1eb)](){const _0x3c8d3e=_0x56ed83,_0x494a6a=this[_0x3c8d3e(0x1cc)],_0x2f02c0=_0x494a6a[_0x3c8d3e(0x1a1)][_0x3c8d3e(0x196)](_0x397b2d),_0x3c1b50=_0x494a6a[_0x3c8d3e(0x1a7)][_0x3c8d3e(0x196)](_0x3c8d3e(0x1a6));_0x494a6a[_0x3c8d3e(0x189)][_0x3c8d3e(0x1e4)](_0x3c8d3e(0x1da),new _0x585f37(_0x494a6a)),this[_0x3c8d3e(0x1db)](_0x494a6a,_0x3c8d3e(0x1e6),(_0x193fff,_0x5d2137,_0x5732cb)=>{const _0x47ab39=_0x3c8d3e;_0x2f02c0[_0x47ab39(0x1ca)](_0x5732cb,_0x494a6a[_0x47ab39(0x1a7)][_0x47ab39(0x196)](_0x47ab39(0x1a6)));}),this[_0x3c8d3e(0x1db)](_0x2f02c0,ht(_0x3c8d3e(0x1da),_0x3c1b50),(_0x33a15e,{threadId:_0x4d43b0})=>{const _0x11b0d6=_0x3c8d3e,_0x5243d3=this[_0x11b0d6(0x1cc)][_0x11b0d6(0x1a1)][_0x11b0d6(0x196)](_0x397b2d)[_0x11b0d6(0x1e2)](_0x4d43b0);_0x5243d3&&_0x5243d3[_0x11b0d6(0x1fd)]&&this[_0x11b0d6(0x1b4)](_0x4d43b0);}),this[_0x3c8d3e(0x1db)](_0x2f02c0,ht(_0x3c8d3e(0x19f),_0x3c1b50),(_0x354ec7,{threadId:_0x186627})=>{const _0x261f66=_0x3c8d3e;_0x494a6a[_0x261f66(0x1cb)][_0x261f66(0x1e7)]({'isUndoable':!0x1},_0x457b14=>{const _0x1f321d=_0x261f66,_0x2cadee=this[_0x1f321d(0x1ae)](_0x186627);for(const _0x1117ec of _0x2cadee)_0x457b14[_0x1f321d(0x1c7)](_0x1117ec);});}),this[_0x3c8d3e(0x1db)](_0x2f02c0,ht(_0x3c8d3e(0x1d0),_0x3c1b50),(_0x40c254,{threadId:_0x882d39})=>{const _0x2c96b6=_0x3c8d3e;(this[_0x2c96b6(0x193)](_0x882d39),this[_0x2c96b6(0x1cc)][_0x2c96b6(0x1e0)][_0x2c96b6(0x187)][_0x2c96b6(0x1d6)])&&(this[_0x2c96b6(0x1cc)][_0x2c96b6(0x1a1)][_0x2c96b6(0x196)](_0x397b2d)[_0x2c96b6(0x1e2)](_0x882d39)[_0x2c96b6(0x1fd)]||this[_0x2c96b6(0x1cc)][_0x2c96b6(0x1e0)][_0x2c96b6(0x187)][_0x2c96b6(0x16d)]());},{'priority':_0x3c8d3e(0x1f0)}),this[_0x3c8d3e(0x1db)](_0x2f02c0,ht(_0x3c8d3e(0x1f3),_0x3c1b50),(_0x33ac8b,{threadId:_0x3d614d})=>{const _0x42abf1=_0x3c8d3e;this[_0x42abf1(0x193)](_0x3d614d);},{'priority':_0x3c8d3e(0x1f0)}),this[_0x3c8d3e(0x1db)](_0x2f02c0,ht(_0x3c8d3e(0x1d1),_0x3c1b50),(_0x14128f,{threadId:_0x577d19,isFromAdapter:_0x4fb3d3})=>{const _0x515df7=_0x3c8d3e,_0x224863=this[_0x515df7(0x1ae)](_0x577d19);if(_0x4fb3d3||0x0==_0x224863[_0x515df7(0x200)]||!_0x2f02c0[_0x515df7(0x1f6)](_0x577d19))return;0x1===_0x2f02c0[_0x515df7(0x1e2)](_0x577d19)[_0x515df7(0x200)]&&_0x494a6a[_0x515df7(0x1cb)][_0x515df7(0x1e7)]({'isUndoable':!0x1},_0x17c751=>{const _0x333640=_0x515df7;for(const _0x399608 of _0x224863)_0x17c751[_0x333640(0x18f)](_0x399608,{'usingOperation':!0x0,'affectsData':!0x0});});},{'priority':_0x3c8d3e(0x1f0)}),this[_0x3c8d3e(0x1b6)](),this[_0x3c8d3e(0x1c0)]();}[_0x56ed83(0x17d)](){const _0x59a9ef=_0x56ed83,_0x340863=this[_0x59a9ef(0x1cc)][_0x59a9ef(0x1a1)][_0x59a9ef(0x196)](_0x397b2d),_0x296131=this[_0x59a9ef(0x1cc)][_0x59a9ef(0x1a7)][_0x59a9ef(0x196)](_0x59a9ef(0x1a6));for(const _0x26553f of _0x340863[_0x59a9ef(0x1fa)]({'channelId':_0x296131}))_0x340863[_0x59a9ef(0x16c)](_0x26553f['id']),_0x340863[_0x59a9ef(0x1d9)][_0x59a9ef(0x1b0)](_0x26553f['id']);super[_0x59a9ef(0x17d)]();}[_0x56ed83(0x1fb)](_0x3a965f){const _0x275e0c=_0x56ed83;return this[_0x275e0c(0x1ae)](_0x3a965f)[_0x275e0c(0x200)]>0x0;}[_0x56ed83(0x1ae)](_0x337218){const _0xc01f18=_0x56ed83,_0x8e16fd=[];for(const _0x11fbe2 of this[_0xc01f18(0x1cc)][_0xc01f18(0x1cb)][_0xc01f18(0x183)])_0x11fbe2[_0xc01f18(0x169)][_0xc01f18(0x1df)](_0xc01f18(0x18c)+_0x337218)&&_0x8e16fd[_0xc01f18(0x1e1)](_0x11fbe2);return _0x8e16fd;}[_0x56ed83(0x1f1)](_0x15f6a9){const _0x1c09b5=_0x56ed83,_0x151b95=this[_0x1c09b5(0x1bb)](_0x15f6a9);_0x151b95&&setTimeout(()=>{const _0x4a3526=_0x1c09b5;this[_0x4a3526(0x1a3)]&&splitMarkerName(this[_0x4a3526(0x1a3)])['id']===_0x15f6a9&&_0x202d03({'target':_0x151b95[0x0],'viewportOffset':0x64,'alignToTop':!0x0});},0x32);}[_0x56ed83(0x193)](_0x159839){const _0x5c20f3=_0x56ed83;this[_0x5c20f3(0x1cc)][_0x5c20f3(0x1cb)][_0x5c20f3(0x1ee)](()=>{const _0x10f022=_0x5c20f3;for(const _0x42858e of this[_0x10f022(0x1ae)](_0x159839))this[_0x10f022(0x1cc)][_0x10f022(0x1e0)][_0x10f022(0x1a2)](_0x42858e);});}[_0x56ed83(0x1b4)](_0x1d889d){const _0x51e1f5=_0x56ed83,_0x2b7b37=this[_0x51e1f5(0x1cc)][_0x51e1f5(0x1a1)][_0x51e1f5(0x196)](_0x397b2d),_0x46dc90=this[_0x51e1f5(0x1cc)][_0x51e1f5(0x1a1)][_0x51e1f5(0x196)](_0x5d4683),_0x10c9b5=_0x2b7b37[_0x51e1f5(0x1e2)](_0x1d889d);if(!_0x10c9b5[_0x51e1f5(0x1b2)]){const _0x137961=_0x10c9b5[_0x51e1f5(0x198)](()=>this[_0x51e1f5(0x1bb)](_0x10c9b5['id']));_0x46dc90[_0x51e1f5(0x16a)](_0x137961),_0x10c9b5[_0x51e1f5(0x186)]=!0x1;}}[_0x56ed83(0x1b6)](){const _0x3a3747=_0x56ed83,_0x38af89=this[_0x3a3747(0x1cc)],_0x18016b=_0x38af89[_0x3a3747(0x1a1)][_0x3a3747(0x196)](_0x427210);_0x38af89[_0x3a3747(0x1b1)][_0x3a3747(0x1ec)](_0x3a3747(0x17c))[_0x3a3747(0x1b7)]({'model':_0x3a3747(0x191),'view':(_0x3b88a5,_0x43c358)=>{const _0x4ea40c=_0x3a3747,{id:_0x116244}=splitMarkerName(_0x3b88a5[_0x4ea40c(0x1f2)]),_0x2396bf=_0x38af89[_0x4ea40c(0x1a1)][_0x4ea40c(0x196)](_0x397b2d)[_0x4ea40c(0x1e2)](_0x116244),_0xf2cec5=this[_0x4ea40c(0x1a3)]&&splitMarkerName(this[_0x4ea40c(0x1a3)])['id']===_0x116244;let _0x13d1d7;if(_0x2396bf&&_0x2396bf[_0x4ea40c(0x1ad)]&&!_0xf2cec5&&_0x3b88a5[_0x4ea40c(0x1d4)])return _0x43c358[_0x4ea40c(0x1e9)][_0x4ea40c(0x1c9)](_0x3b88a5[_0x4ea40c(0x1d4)],_0x4ea40c(0x199)+_0x3b88a5[_0x4ea40c(0x1f2)]),_0x43c358[_0x4ea40c(0x1e9)][_0x4ea40c(0x1c9)](_0x3b88a5[_0x4ea40c(0x1d4)],_0x4ea40c(0x1d3)+_0x3b88a5[_0x4ea40c(0x1f2)]),null;const _0x2b5289=[_0x4ea40c(0x1af)];return _0xf2cec5&&_0x2b5289[_0x4ea40c(0x1e1)](_0x4ea40c(0x1bc)),_0x13d1d7=_0x2396bf&&_0x2396bf[_0x4ea40c(0x200)]?_0x2396bf[_0x4ea40c(0x1d8)][_0x4ea40c(0x1c8)][_0x4ea40c(0x19d)]['id']:_0x18016b['me']['id'],{'classes':_0x2b5289,'attributes':{'data-comment':_0x116244,'data-author-id':_0x13d1d7}};}}),_0x38af89[_0x3a3747(0x1b1)][_0x3a3747(0x1ec)](_0x3a3747(0x190))[_0x3a3747(0x1c1)]({'model':_0x3a3747(0x191),'view':(_0x3360a3,{options:_0x49cd05})=>{const _0x3fc2d9=_0x3a3747,_0x1743a1=_0x38af89[_0x3fc2d9(0x1a1)][_0x3fc2d9(0x196)](_0x397b2d),_0x4325ba=_0x38af89[_0x3fc2d9(0x1cb)][_0x3fc2d9(0x183)][_0x3fc2d9(0x196)](_0x3360a3),{id:_0x1f89cb,part:_0x23c0e5}=splitMarkerName(_0x3360a3);if(_0x4325ba&&!_0x4325ba[_0x3fc2d9(0x1de)])return null;if(_0x49cd05[_0x3fc2d9(0x1f8)]){const _0x140f89=_0x1743a1[_0x3fc2d9(0x1e2)](_0x1f89cb);if(_0x140f89&&_0x140f89[_0x3fc2d9(0x1ad)])return null;}return{'group':_0x3fc2d9(0x191),'name':_0x23c0e5?_0x1f89cb+':'+_0x23c0e5:_0x1f89cb};}}),_0x38af89[_0x3a3747(0x1b1)][_0x3a3747(0x1ec)](_0x3a3747(0x1cf))[_0x3a3747(0x1fc)]({'view':{'name':_0x3a3747(0x191),'attributes':{'id':/^\w/}},'model':(_0x3f2a03,{writer:_0x513d58})=>_0x513d58[_0x3a3747(0x172)](_0x3a3747(0x1bd),{'data-name':_0x3a3747(0x18c)+_0x3f2a03[_0x3a3747(0x1f5)]('id')})}),_0x38af89[_0x3a3747(0x1b1)][_0x3a3747(0x1ec)](_0x3a3747(0x1cf))[_0x3a3747(0x19a)]({'view':_0x3a3747(0x191)});}[_0x56ed83(0x1c0)](){const _0x165360=_0x56ed83,_0x1e8223=this[_0x165360(0x1cc)],_0x51c3d0=_0x1e8223[_0x165360(0x1a1)][_0x165360(0x196)](_0x397b2d),_0x54b796=new Set(),_0x4cb6f4=new Set();_0x1e8223[_0x165360(0x1cb)][_0x165360(0x171)][_0x165360(0x1ff)](_0x828e95=>{const _0x5e0eda=_0x165360;let _0x421a9c=!0x1;for(const {name:_0xe5741e,data:_0x2126c0}of _0x1e8223[_0x5e0eda(0x1cb)][_0x5e0eda(0x171)][_0x5e0eda(0x1dc)][_0x5e0eda(0x1a0)]()){const {group:_0x4572c2,id:_0x1b9e62}=splitMarkerName(_0xe5741e);let _0x25b07e=_0x2126c0[_0x5e0eda(0x1a9)];if(_0x5e0eda(0x191)!==_0x4572c2||!_0x25b07e)continue;const _0x34513a=_0x5e0eda(0x195)===_0x25b07e[_0x5e0eda(0x1c3)][_0x5e0eda(0x17b)];_0x34513a||(_0x25b07e=lt(_0x25b07e,_0x1e8223[_0x5e0eda(0x1cb)]),!_0x25b07e||_0x25b07e[_0x5e0eda(0x182)]||!_0x2126c0[_0x5e0eda(0x1a9)]||_0x25b07e[_0x5e0eda(0x18e)](_0x2126c0[_0x5e0eda(0x1a9)]))?_0x1e8223[_0x5e0eda(0x1cb)][_0x5e0eda(0x179)](_0x25b07e)&&!_0x34513a?this[_0x5e0eda(0x168)]?_0x54b796[_0x5e0eda(0x1e4)](_0xe5741e):this[_0x5e0eda(0x176)](_0xe5741e,_0x1b9e62):(_0x4cb6f4[_0x5e0eda(0x1e4)](_0xe5741e),_0x54b796[_0x5e0eda(0x1b0)](_0xe5741e),_0x828e95[_0x5e0eda(0x1c7)](_0xe5741e),_0x421a9c=!0x0):(_0x828e95[_0x5e0eda(0x18f)](_0xe5741e,{'range':_0x25b07e}),_0x421a9c=!0x0);}return _0x421a9c;}),this['on'](_0x165360(0x180),(_0x36e69f,_0x505b53,_0x339337)=>{const _0x308ff0=_0x165360;if(!_0x339337&&_0x54b796[_0x308ff0(0x16b)])for(const _0x15ba95 of _0x54b796){const {id:_0x1ed96c}=splitMarkerName(_0x15ba95);_0x54b796[_0x308ff0(0x1b0)](_0x15ba95),_0x1e8223[_0x308ff0(0x1cb)][_0x308ff0(0x183)][_0x308ff0(0x196)](_0x15ba95)&&this[_0x308ff0(0x176)](_0x15ba95,_0x1ed96c);}}),this[_0x165360(0x1db)](_0x1e8223[_0x165360(0x1cb)][_0x165360(0x171)],_0x165360(0x1ee),(_0x4467ca,_0x314a23)=>{const _0x368f5d=_0x165360;for(const {name:_0x10c966,data:{newRange:_0x4c2ec8}}of _0x1e8223[_0x368f5d(0x1cb)][_0x368f5d(0x171)][_0x368f5d(0x1dc)][_0x368f5d(0x1a0)]()){const {group:_0x5ded2c,id:_0x53755a}=splitMarkerName(_0x10c966);if(_0x368f5d(0x191)!==_0x5ded2c)continue;const _0x118042=_0x51c3d0[_0x368f5d(0x1e2)](_0x53755a),_0x51a1aa=this[_0x368f5d(0x1fb)](_0x53755a);_0x118042&&(!_0x118042[_0x368f5d(0x186)]&&_0x4c2ec8&&_0x1e8223[_0x368f5d(0x1e0)][_0x368f5d(0x187)][_0x368f5d(0x18a)](_0x368f5d(0x170),()=>{const _0x5ad1c7=_0x368f5d,_0x16fcf7=_0x1e8223[_0x5ad1c7(0x1a1)][_0x5ad1c7(0x196)](_0x54e7f6),_0x14025e=_0x51c3d0[_0x5ad1c7(0x16e)][_0x5ad1c7(0x196)](_0x118042)[_0x5ad1c7(0x187)];_0x16fcf7[_0x5ad1c7(0x1cd)](_0x14025e)[_0x5ad1c7(0x17e)]();},{'priority':_0x368f5d(0x1f0)}),_0x118042[_0x368f5d(0x186)]=_0x51a1aa||!!_0x4c2ec8),_0x4c2ec8||(_0x4cb6f4[_0x368f5d(0x1e4)](_0x10c966),_0x54b796[_0x368f5d(0x1b0)](_0x10c966));}if(_0x314a23[_0x368f5d(0x1b8)])for(const _0x3fbfb0 of _0x4cb6f4){const {id:_0xcb1642}=splitMarkerName(_0x3fbfb0),_0x301070=_0x51c3d0[_0x368f5d(0x1e2)](_0xcb1642),_0x26e1cb=this[_0x368f5d(0x1fb)](_0xcb1642);_0x54b796[_0x368f5d(0x1b0)](_0x3fbfb0),!_0x301070||_0x26e1cb||_0x301070[_0x368f5d(0x1fd)]||_0x301070[_0x368f5d(0x1e8)](new Date());}_0x4cb6f4[_0x368f5d(0x1a4)]();});}[_0x56ed83(0x1bb)](_0xfcf49a){const _0x3f4510=_0x56ed83,_0x57a5a6=this[_0x3f4510(0x1cc)],_0x3e16bb=this[_0x3f4510(0x1ae)](_0xfcf49a);return _0x210146(_0x57a5a6[_0x3f4510(0x1e0)],_0x3e16bb);}[_0x56ed83(0x1a5)](_0xe2749e){const _0x4f3875=_0x56ed83,_0x17e7dd=this[_0x4f3875(0x1ae)](_0xe2749e);let _0x516af8='',_0x2b965d=!0x1;for(const _0x956681 of _0x17e7dd){const _0x23ba91=_0x956681[_0x4f3875(0x16f)]();for(const _0x4b9088 of Array[_0x4f3875(0x1e5)](_0x23ba91[_0x4f3875(0x1ed)]()))_0x4b9088['is'](_0x4f3875(0x173))?(_0x516af8&&_0x2b965d&&(_0x516af8+='\x20',_0x2b965d=!0x1),_0x516af8+=_0x4b9088[_0x4f3875(0x194)]):_0x2b965d=!0x0;_0x2b965d=!0x0;}return _0x516af8[_0x4f3875(0x1c4)](0x0,0x96);}[_0x56ed83(0x18b)](_0x1079e1,_0x2218ef){const _0x40a210=_0x56ed83,_0x3f975d=this[_0x40a210(0x1cc)],_0x1bd160=_0x3f975d[_0x40a210(0x1a1)][_0x40a210(0x196)](_0x397b2d);let _0x1fdc59=_0x1bd160[_0x40a210(0x1e2)](_0x2218ef);const _0x4899d9=_0x3f975d[_0x40a210(0x1a7)][_0x40a210(0x196)](_0x40a210(0x1a6)),_0x16c473=_0x3f975d[_0x40a210(0x1a1)][_0x40a210(0x196)](_0x5d4683);if(_0x1fdc59&&(_0x1fdc59[_0x40a210(0x1fd)]&&_0x1fdc59[_0x40a210(0x1e8)](null),_0x1fdc59[_0x40a210(0x1b2)]))return _0x1fdc59;return!this[_0x40a210(0x1ae)](_0x2218ef)[0x0][_0x40a210(0x1ab)]?_0x3f975d[_0x40a210(0x1e0)][_0x40a210(0x187)][_0x40a210(0x18a)](_0x40a210(0x170),()=>{const _0x14e0ca=_0x40a210;if(_0x1bd160[_0x14e0ca(0x1e2)](_0x2218ef))return;const _0x56a75e=_0x3f975d[_0x14e0ca(0x1a1)][_0x14e0ca(0x196)](_0x54e7f6);_0x1fdc59=_0x1bd160[_0x14e0ca(0x1c6)]({'channelId':_0x4899d9,'threadId':_0x2218ef,'target':()=>this[_0x14e0ca(0x1bb)](_0x2218ef),'context':{'type':_0x14e0ca(0x1d7),'value':this[_0x14e0ca(0x1a5)](_0x2218ef)}});const _0x46906c=_0x1bd160[_0x14e0ca(0x16e)][_0x14e0ca(0x196)](_0x1fdc59)[_0x14e0ca(0x187)],_0x12b35e=_0x56a75e[_0x14e0ca(0x1cd)](_0x46906c);_0x12b35e&&_0x16c473[_0x14e0ca(0x16a)](_0x12b35e);},{'priority':_0x40a210(0x1f0)}):_0x1bd160[_0x40a210(0x1c5)]({'channelId':_0x4899d9,'threadId':_0x2218ef})[_0x40a210(0x1a8)](_0x494703=>{const _0xb9dc07=_0x40a210;if(_0xb9dc07(0x188)!==_0x3f975d[_0xb9dc07(0x1aa)]){if(_0x1fdc59=_0x494703,_0x1fdc59&&!_0x1fdc59[_0xb9dc07(0x1b2)]){const _0xbc1678=_0x1fdc59[_0xb9dc07(0x198)](()=>this[_0xb9dc07(0x1bb)](_0x2218ef));_0x16c473[_0xb9dc07(0x16a)](_0xbc1678),_0x1fdc59[_0xb9dc07(0x1ad)]&&this[_0xb9dc07(0x193)](_0x2218ef);}else{if(!_0x1fdc59){const _0x3ec511=this[_0xb9dc07(0x1ae)](_0x2218ef);_0x3f975d[_0xb9dc07(0x1cb)][_0xb9dc07(0x1ee)](_0x40568b=>{const _0x384399=_0xb9dc07;for(const _0x3549ef of _0x3ec511)_0x40568b[_0x384399(0x1c7)](_0x3549ef);});}}}}),_0x1fdc59;}[_0x56ed83(0x176)](_0x3aac82,_0x25e389){const _0x38cd8c=_0x56ed83,_0x1804f8=this[_0x38cd8c(0x18b)](_0x3aac82,_0x25e389);_0x1804f8&&!_0x1804f8[_0x38cd8c(0x1b5)]&&_0x1804f8[_0x38cd8c(0x17a)]({'type':_0x38cd8c(0x1d7),'value':this[_0x38cd8c(0x1a5)](_0x25e389)});}[_0x56ed83(0x1d5)](){const _0x249f14=_0x56ed83,_0x1fa9a1=this[_0x249f14(0x1cc)];_0x5a4e60(_0x1fa9a1[_0x249f14(0x1cb)],({left:_0x237b45,entered:_0x467711})=>{const _0x5ed1bd=_0x249f14;for(const _0x5a7917 of _0x237b45)if(ft(_0x5a7917)){_0x1fa9a1['ui'][_0x5ed1bd(0x178)][_0x5ed1bd(0x19e)](_0x351569(_0x1fa9a1[_0x5ed1bd(0x1bf)],_0x5ed1bd(0x19b)));break;}for(const _0x18ead5 of _0x467711)if(ft(_0x18ead5)){_0x1fa9a1['ui'][_0x5ed1bd(0x178)][_0x5ed1bd(0x19e)](_0x351569(_0x1fa9a1[_0x5ed1bd(0x1bf)],_0x5ed1bd(0x1ac),_0x1a8266(_0x44682b)));break;}});}}function ht(_0x36dce2,_0x1c18b5){return _0x1c18b5?_0x36dce2+':'+_0x1c18b5:_0x36dce2;}export function splitMarkerName(_0x501c77){const _0x1f706f=_0x56ed83,_0x18438b=_0x501c77[_0x1f706f(0x175)](':');return{'group':_0x18438b[0x0],'id':_0x18438b[0x1],'part':_0x18438b[0x2]};}function lt(_0x21d6d4,_0x533800){const _0x19d274=_0x56ed83,_0x520d5c=_0x533800[_0x19d274(0x1f7)],_0x185ad2=_0x533800[_0x19d274(0x1f4)](_0x21d6d4[_0x19d274(0x1fe)]);for(const _0x3441e1 of _0x21d6d4[_0x19d274(0x18d)]()){const {type:_0x25111e,item:_0x58ab32,nextPosition:_0x4efbe1}=_0x3441e1;if(_0x19d274(0x1d7)===_0x25111e||_0x520d5c[_0x19d274(0x1dd)](_0x58ab32)){const _0x35a604=_0x533800[_0x19d274(0x1ce)](_0x58ab32);_0x185ad2[_0x19d274(0x182)]&&(_0x185ad2[_0x19d274(0x1fe)]=_0x35a604),_0x185ad2[_0x19d274(0x197)]=_0x4efbe1;}}return _0x185ad2;}function _0x3c01(){const _0x4f25d7=['collaboration.channelId','config','then','newRange','state','managedUsingOperations','ENTER_COMMENT_ANNOUNCEMENT','isResolved','getAllMarkersForId','ck-comment-marker','delete','conversion','isAttached','832119mjTlFL','_attachArchivedThread','context','_initializeMarkerConverters','markerToHighlight','isLocal','pluginName','2060545GrnSNA','_getTargetForId','ck-comment-marker--active','$marker','6cmfbSX','locale','_handleMarkerAddAndRemove','markerToData','346420JmfIKh','root','substring','fetchCommentThread','openNewCommentThread','removeMarker','first','consume','switchReadOnly','model','editor','getByInnerView','createPositionBefore','upcast','resolveCommentThread','addComment','group','removeMarker:','item','_initAriaMarkerChangeAnnouncements','hasDomSelection','text','comments','_threads','addCommentThread','listenTo','differ','isObject','affectsData','startsWith','editing','push','getCommentThread','12730729ctpAQj','add','from','change:isReadOnly','enqueueChange','setUnlinkedAt','consumable','1624378xNruPa','init','for','getItems','change','requires','low','scrollToThreadMarker','markerName','reopenCommentThread','createRange','getAttribute','hasCommentThread','schema','ignoreResolvedComments','138kekvfe','getCommentThreads','hasMarkerForId','elementToElement','unlinkedAt','start','registerPostFixer','length','isThreadsLoadingPaused','name','registerAnnotation','size','_detachCommentThread','focus','_threadToController','getRange','render','document','createElement','$textProxy','ready','split','_handleThreadMarker','set','ariaLiveAnnouncer','hasContent','setContext','rootName','editingDowncast','destroy','refreshVisibility','change:activeMarker','change:isThreadsLoadingPaused','CommentsEditing','isCollapsed','markers','1151WCqFzp','1649223AMOQvB','_hasTargetInContent','view','destroyed','commands','once','_attachMarkerToThread','comment:','getWalker','isEqual','updateMarker','dataDowncast','comment','8znuDsk','_reconvertMarkers','data','$graveyard','get','end','attachTo','addMarker:','dataToMarker','LEAVE_COMMENT_ANNOUNCEMENT','10gpkHOI','author','announce','removeCommentThread','getChangedMarkers','plugins','reconvertMarker','activeMarker','clear','_getTextContext'];_0x3c01=function(){return _0x4f25d7;};return _0x3c01();}function ft(_0x549d58){const _0x4631c1=_0x56ed83;return _0x4631c1(0x191)===splitMarkerName(_0x549d58[_0x4631c1(0x169)])[_0x4631c1(0x1d2)];}
|