@ckeditor/ckeditor5-operations-compressor 39.0.1 → 39.0.2
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/CHANGELOG.md +1 -1
- package/LICENSE.md +6 -6
- package/README.md +8 -8
- package/package.json +2 -6
- package/src/actioncompressor/actioncompressor.js +1 -1
- package/src/actioncompressor/deletingactioncompressor.js +1 -1
- package/src/actioncompressor/forwarddeletingactioncompressor.js +1 -1
- package/src/actioncompressor/typingactioncompressor.js +1 -1
- package/src/actioncompressor/userselectionactioncompressor.js +1 -1
- package/src/compressor.js +1 -1
- package/src/lib/compiledmessages.js +1 -1
- package/src/operationcompressor/annotationmarkeroperationcompressor.js +1 -1
- package/src/operationcompressor/attributeoperationcompressor.js +1 -1
- package/src/operationcompressor/insertoperationcompressor.js +1 -1
- package/src/operationcompressor/markeroperationcompressor.js +1 -1
- package/src/operationcompressor/nooperationcompressor.js +1 -1
- package/src/operationcompressor/operationcompressor.js +1 -1
- package/src/protobufdescriptions.js +1 -1
- package/src/protobuffactory.js +1 -1
- package/src/utils.js +1 -1
package/CHANGELOG.md
CHANGED
|
@@ -89,4 +89,4 @@ Internal changes only (updated dependencies, documentation, etc.).
|
|
|
89
89
|
|
|
90
90
|
## 1.0.0 (2018-10-08)
|
|
91
91
|
|
|
92
|
-
The first stable release of the CKEditor
|
|
92
|
+
The first stable release of the CKEditor 5 operations compressor. Compress and decompress a collection of operations using [Protocol Buffers for JavaScript](https://github.com/dcodeIO/ProtoBuf.js/) and custom optimizations.
|
package/LICENSE.md
CHANGED
|
@@ -1,23 +1,23 @@
|
|
|
1
1
|
Software License Agreement
|
|
2
2
|
==========================
|
|
3
3
|
|
|
4
|
-
**CKEditor
|
|
4
|
+
**CKEditor 5 operations compressor**<br>
|
|
5
5
|
Copyright (c) 2003-2022, [CKSource Holding sp. z o.o.](https://cksource.com) All rights reserved.
|
|
6
6
|
|
|
7
|
-
CKEditor
|
|
7
|
+
CKEditor 5 operations compressor is licensed under a commercial license and is protected by copyright law.
|
|
8
8
|
For more details about available licensing options please contact us at sales@cksource.com.
|
|
9
9
|
|
|
10
|
-
Sources of Intellectual Property Included in CKEditor
|
|
10
|
+
Sources of Intellectual Property Included in CKEditor 5 operations compressor
|
|
11
11
|
-----------------------------------------------------
|
|
12
12
|
|
|
13
|
-
Where not otherwise indicated, all CKEditor
|
|
13
|
+
Where not otherwise indicated, all CKEditor 5 Operations Compressor content is authored by CKSource engineers and consists of CKSource-owned intellectual property.
|
|
14
14
|
Any attempts to deobfuscate or disassemble the code are forbidden and will result in legal consequences.
|
|
15
15
|
|
|
16
|
-
The following libraries are included in CKEditor
|
|
16
|
+
The following libraries are included in CKEditor 5 Operations Compressor under the [MIT license](https://opensource.org/licenses/MIT):
|
|
17
17
|
|
|
18
18
|
* Lo-Dash - Copyright (c) JS Foundation and other contributors https://js.foundation/. Based on Underscore.js, copyright Jeremy Ashkenas, DocumentCloud and Investigative Reporters & Editors http://underscorejs.org/.
|
|
19
19
|
|
|
20
|
-
The following libraries are included in CKEditor
|
|
20
|
+
The following libraries are included in CKEditor 5 Operations Compressor under the [BSD-3-Clause](https://opensource.org/licenses/BSD-3-Clause):
|
|
21
21
|
|
|
22
22
|
* Protocol Buffers for JavaScript - Copyright (c) 2016, Daniel Wirtz.
|
|
23
23
|
|
package/README.md
CHANGED
|
@@ -1,27 +1,27 @@
|
|
|
1
|
-
# CKEditor
|
|
1
|
+
# CKEditor 5 operations compressor
|
|
2
2
|
|
|
3
3
|
[](https://www.npmjs.com/package/@ckeditor/ckeditor5-operations-compressor)
|
|
4
4
|
|
|
5
|
-
CKEditor
|
|
5
|
+
CKEditor 5 operations compressor is a low-level API that compresses and decompresses operations to a normalized binary format in order to decrease network usage during real-time collaborative editing. It is required by the [CKEditor 5 real-time collaborative editing](https://ckeditor.com/collaboration/real-time/) feature to enable collaboration in [CKEditor 5](https://ckeditor.com/ckeditor-5/).
|
|
6
6
|
|
|
7
7
|
## Documentation
|
|
8
8
|
|
|
9
|
-
For more information about real-time collaboration see the [CKEditor
|
|
9
|
+
For more information about real-time collaboration see the [CKEditor 5 real-time collaboration documentation](https://ckeditor.com/docs/ckeditor5/latest/features/collaboration/real-time-collaboration/real-time-collaboration.html).
|
|
10
10
|
|
|
11
|
-
Also, make sure you visit the [CKEditor
|
|
11
|
+
Also, make sure you visit the [CKEditor 5 changelog](https://github.com/ckeditor/ckeditor5/blob/master/CHANGELOG.md) whenever a new version of the package is released.
|
|
12
12
|
|
|
13
13
|
## Getting support
|
|
14
14
|
|
|
15
|
-
CKEditor
|
|
15
|
+
CKEditor 5 operations compressor comes with outstanding support from a dedicated team of customer care specialists, QA engineers and CKEditor 5 developers. The team will gladly assist you in all aspects from setting up your account to integrating CKEditor 5 Collaboration features with your application.
|
|
16
16
|
|
|
17
|
-
As a licensed CKEditor
|
|
17
|
+
As a licensed CKEditor 5 Collaboration features user you can report bugs and request features directly through the CKEditor Ecosystem customer dashboard.
|
|
18
18
|
|
|
19
19
|
## License
|
|
20
20
|
|
|
21
|
-
**CKEditor
|
|
21
|
+
**CKEditor 5 operations compressor**<br>
|
|
22
22
|
Copyright (c) 2003-2022, [CKSource Holding sp. z o.o.](https://cksource.com) All rights reserved.
|
|
23
23
|
|
|
24
|
-
CKEditor
|
|
24
|
+
CKEditor 5 operations compressor is licensed under a commercial license and is protected by copyright law.
|
|
25
25
|
For more details about available licensing options please contact us at sales@cksource.com.
|
|
26
26
|
|
|
27
27
|
### Trademarks
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@ckeditor/ckeditor5-operations-compressor",
|
|
3
|
-
"version": "39.0.
|
|
3
|
+
"version": "39.0.2",
|
|
4
4
|
"description": "CKEditor 5 operations compressor for real-time collaboration.",
|
|
5
5
|
"license": "SEE LICENSE IN LICENSE.md",
|
|
6
6
|
"homepage": "https://ckeditor.com/collaboration/real-time/",
|
|
@@ -30,14 +30,10 @@
|
|
|
30
30
|
"url": "https://support.ckeditor.com/hc/en-us/requests/new"
|
|
31
31
|
},
|
|
32
32
|
"dependencies": {
|
|
33
|
-
"ckeditor5": "39.0.
|
|
33
|
+
"ckeditor5": "39.0.2",
|
|
34
34
|
"lodash-es": "4.17.21",
|
|
35
35
|
"protobufjs": "7.2.4"
|
|
36
36
|
},
|
|
37
|
-
"engines": {
|
|
38
|
-
"node": ">=16.0.0",
|
|
39
|
-
"npm": ">=5.7.1"
|
|
40
|
-
},
|
|
41
37
|
"files": [
|
|
42
38
|
"src/**/*.js",
|
|
43
39
|
"src/**/*.d.ts",
|
|
@@ -20,4 +20,4 @@
|
|
|
20
20
|
*
|
|
21
21
|
*
|
|
22
22
|
*/
|
|
23
|
-
const
|
|
23
|
+
const _0x9b70=['_combineNext','push','shift','_decompressSingleOperation','types','_compareOperations','_id','_compressSingleOperation','_splitCurrent','_context','compress','buffers','decompress','length'];(function(_0x18c218,_0x9b702){const _0x491c47=function(_0x15c293){while(--_0x15c293){_0x18c218['push'](_0x18c218['shift']());}};_0x491c47(++_0x9b702);}(_0x9b70,0xcc));const _0x491c=function(_0x18c218,_0x9b702){_0x18c218=_0x18c218-0x0;let _0x491c47=_0x9b70[_0x18c218];return _0x491c47;};import{cloneDeep as _0x59f038}from'lodash-es';export default class b{constructor(_0x4e4672,_0x125813){this[_0x491c('0xc')]=_0x4e4672,this[_0x491c('0x1')]=_0x125813;}[_0x491c('0x2')](_0x2f3d6c,_0x50b3e5){let _0xbae73a;for(;_0x50b3e5[_0x491c('0x5')]>0x1&&this[_0x491c('0xb')](_0x50b3e5[0x0],_0x50b3e5[0x1]);)_0xbae73a?(_0xbae73a=this[_0x491c('0x6')](_0x50b3e5[_0x491c('0x8')](),_0xbae73a),_0x2f3d6c[_0x491c('0xa')][_0x491c('0x7')](0x0)):(_0xbae73a=_0x59f038(_0x50b3e5[_0x491c('0x8')]()),_0x2f3d6c[_0x491c('0xa')][_0x491c('0x7')](this[_0x491c('0xc')]));return!!_0xbae73a&&(_0xbae73a=this['_combineNext'](_0x50b3e5['shift'](),_0xbae73a),_0x2f3d6c[_0x491c('0xa')]['push'](0x0),_0x2f3d6c[_0x491c('0x3')][_0x491c('0x7')](this[_0x491c('0xd')](_0xbae73a)),!0x0);}[_0x491c('0x4')](_0x13a4ea,_0x4261a2){const _0x4ba403=this[_0x491c('0x9')](_0x4261a2);for(;0x0==_0x4261a2[_0x491c('0xa')][0x0];)_0x4261a2['types'][_0x491c('0x8')](),_0x13a4ea[_0x491c('0x7')](this[_0x491c('0x0')](_0x4ba403));_0x13a4ea[_0x491c('0x7')](_0x4ba403);}}
|
|
@@ -20,4 +20,4 @@
|
|
|
20
20
|
*
|
|
21
21
|
*
|
|
22
22
|
*/
|
|
23
|
-
const
|
|
23
|
+
const _0x5939=['MoveOperation','_getCompressorByName','root','__className','$graveyard','howMany','wasUndone','decompress','_compareOperations','buffers','compress','targetPosition','_context','sourcePosition','_checkOperation'];(function(_0x19ad52,_0x593920){const _0x2e985a=function(_0x591fc4){while(--_0x591fc4){_0x19ad52['push'](_0x19ad52['shift']());}};_0x2e985a(++_0x593920);}(_0x5939,0xcf));const _0x2e98=function(_0x19ad52,_0x593920){_0x19ad52=_0x19ad52-0x0;let _0x2e985a=_0x5939[_0x19ad52];return _0x2e985a;};import _0x1e5219 from'./actioncompressor';import{arePositionsEqual as _0x4219cc,getPositionShiftedBy as _0x563395}from'../utils';import{cloneDeep as _0x1e9187}from'lodash-es';export default class c extends _0x1e5219{['_combineNext'](_0x1cfa1c,_0x4cb6b6){return _0x4cb6b6[_0x2e98('0x8')]++,_0x4cb6b6['sourcePosition']=_0x1e9187(_0x1cfa1c[_0x2e98('0x1')]),_0x4cb6b6;}['_splitCurrent'](_0x258f2c){const _0x38f3aa=_0x1e9187(_0x258f2c);return _0x258f2c['howMany']--,_0x38f3aa[_0x2e98('0x8')]=0x1,_0x38f3aa[_0x2e98('0x1')]=_0x563395(_0x38f3aa['sourcePosition'],_0x258f2c[_0x2e98('0x8')]),_0x38f3aa;}[_0x2e98('0xb')](_0x404e24,_0x2fe77c){return!(!this[_0x2e98('0x2')](_0x404e24)||!this[_0x2e98('0x2')](_0x2fe77c))&&(_0x4219cc(_0x563395(_0x404e24[_0x2e98('0x1')],-0x1),_0x2fe77c[_0x2e98('0x1')])&&_0x4219cc(_0x404e24[_0x2e98('0xe')],_0x2fe77c['targetPosition']));}['_compressSingleOperation'](_0x1d46f3){const _0x5d39a8={'types':[],'buffers':[],'baseVersion':0x0};return this[_0x2e98('0x0')][_0x2e98('0x4')](_0x2e98('0x3'))[_0x2e98('0xd')](_0x5d39a8,[_0x1d46f3]),_0x5d39a8[_0x2e98('0xc')][0x0];}['_decompressSingleOperation'](_0x1ae716){const _0x264c29=[];return this['_context']['_getCompressorByName'](_0x2e98('0x3'))[_0x2e98('0xa')](_0x264c29,_0x1ae716),_0x264c29[0x0];}[_0x2e98('0x2')](_0x494539){return _0x2e98('0x3')==_0x494539[_0x2e98('0x6')]&&_0x2e98('0x7')==_0x494539[_0x2e98('0xe')][_0x2e98('0x5')]&&0x1==_0x494539[_0x2e98('0x8')]&&!_0x494539[_0x2e98('0x9')];}}
|
|
@@ -20,4 +20,4 @@
|
|
|
20
20
|
*
|
|
21
21
|
*
|
|
22
22
|
*/
|
|
23
|
-
const
|
|
23
|
+
const _0x3967=['_decompressSingleOperation','targetPosition','_compareOperations','_splitCurrent','howMany','root','__className','MoveOperation','compress','_context','decompress','_compressSingleOperation','buffers','sourcePosition','wasUndone','$graveyard','_checkOperation','_combineNext','_getCompressorByName'];(function(_0x30db06,_0x396798){const _0x1c2f7c=function(_0x2163e3){while(--_0x2163e3){_0x30db06['push'](_0x30db06['shift']());}};_0x1c2f7c(++_0x396798);}(_0x3967,0x131));const _0x1c2f=function(_0x30db06,_0x396798){_0x30db06=_0x30db06-0x0;let _0x1c2f7c=_0x3967[_0x30db06];return _0x1c2f7c;};import _0x4d37c1 from'./actioncompressor';import{arePositionsEqual as _0x3a6756}from'../utils';import{cloneDeep as _0x4c0966}from'lodash-es';export default class h extends _0x4d37c1{[_0x1c2f('0x10')](_0x1cfa07,_0x4a61a3){return _0x4a61a3[_0x1c2f('0x3')]++,_0x4a61a3;}[_0x1c2f('0x2')](_0x280ca0){const _0x19effe=_0x4c0966(_0x280ca0);return _0x19effe['howMany']=0x1,_0x280ca0[_0x1c2f('0x3')]--,_0x19effe;}[_0x1c2f('0x1')](_0x2266a8,_0x1c0ee6){return!(!this['_checkOperation'](_0x2266a8)||!this[_0x1c2f('0xf')](_0x1c0ee6))&&(_0x3a6756(_0x2266a8[_0x1c2f('0xc')],_0x1c0ee6[_0x1c2f('0xc')])&&_0x3a6756(_0x2266a8[_0x1c2f('0x0')],_0x1c0ee6['targetPosition']));}[_0x1c2f('0xa')](_0x2fbd56){const _0x3fe255={'types':[],'buffers':[],'baseVersion':0x0};return this[_0x1c2f('0x8')][_0x1c2f('0x11')](_0x1c2f('0x6'))[_0x1c2f('0x7')](_0x3fe255,[_0x2fbd56]),_0x3fe255[_0x1c2f('0xb')][0x0];}[_0x1c2f('0x12')](_0x3b14d3){const _0x594ffa=[];return this[_0x1c2f('0x8')][_0x1c2f('0x11')]('MoveOperation')[_0x1c2f('0x9')](_0x594ffa,_0x3b14d3),_0x594ffa[0x0];}[_0x1c2f('0xf')](_0x19f58b){return _0x1c2f('0x6')==_0x19f58b[_0x1c2f('0x5')]&&_0x1c2f('0xe')==_0x19f58b[_0x1c2f('0x0')][_0x1c2f('0x4')]&&0x1==_0x19f58b['howMany']&&!_0x19f58b[_0x1c2f('0xd')];}}
|
|
@@ -20,4 +20,4 @@
|
|
|
20
20
|
*
|
|
21
21
|
*
|
|
22
22
|
*/
|
|
23
|
-
const
|
|
23
|
+
const _0x43c5=['data','attributes','_compressSingleOperation','nodes','_decompressSingleOperation','_getCompressorByName','_compareAttributes','position','_context','_splitCurrent','length','compress','InsertOperation','_combineNext','next','keys','from','value','decompress','_checkOperation'];(function(_0x58e42f,_0x43c5f4){const _0x13d964=function(_0x5ae30f){while(--_0x5ae30f){_0x58e42f['push'](_0x58e42f['shift']());}};_0x13d964(++_0x43c5f4);}(_0x43c5,0x1d9));const _0x13d9=function(_0x58e42f,_0x43c5f4){_0x58e42f=_0x58e42f-0x0;let _0x13d964=_0x43c5[_0x58e42f];return _0x13d964;};import _0x1c4d69 from'./actioncompressor';import{arePositionsEqual as _0x1901ad,getPositionShiftedBy as _0x4d00c4}from'../utils';import{cloneDeep as _0x1e70b0}from'lodash-es';export default class m extends _0x1c4d69{[_0x13d9('0x0')](_0x3a0d03,_0x16510e){return _0x16510e[_0x13d9('0xa')][0x0][_0x13d9('0x7')]+=_0x3a0d03[_0x13d9('0xa')][0x0][_0x13d9('0x7')],_0x16510e;}[_0x13d9('0x10')](_0x256a93){const _0x326d20=_0x1e70b0(_0x256a93),_0x13d11c=_0x326d20[_0x13d9('0xa')][0x0],_0x472436=_0x256a93[_0x13d9('0xa')][0x0],_0x1da579=_0x472436[_0x13d9('0x7')][Symbol['iterator']]()[_0x13d9('0x1')]()[_0x13d9('0x4')],_0x36dd8f=_0x1da579[_0x13d9('0x11')];return _0x13d11c['data']=_0x1da579,_0x472436[_0x13d9('0x7')]=_0x472436[_0x13d9('0x7')]['substr'](_0x36dd8f),_0x256a93[_0x13d9('0xe')]=_0x4d00c4(_0x256a93[_0x13d9('0xe')],_0x36dd8f),_0x326d20;}['_compareOperations'](_0x506616,_0x1f42d0){if(this['_checkOperation'](_0x506616)&&this[_0x13d9('0x6')](_0x1f42d0)){const _0x57635f=_0x506616[_0x13d9('0xa')][0x0][_0x13d9('0x7')]['length'],_0x300fc1=_0x1901ad(_0x4d00c4(_0x506616['position'],_0x57635f),_0x1f42d0[_0x13d9('0xe')]),_0x3275f6=_0x506616[_0x13d9('0xa')][0x0],_0x4b96f7=_0x1f42d0[_0x13d9('0xa')][0x0];return _0x300fc1&&this[_0x13d9('0xd')](_0x3275f6,_0x4b96f7);}return!0x1;}[_0x13d9('0x9')](_0x4173a3){const _0x388af0={'types':[],'buffers':[],'baseVersion':0x0};return this[_0x13d9('0xf')][_0x13d9('0xc')](_0x13d9('0x13'))[_0x13d9('0x12')](_0x388af0,[_0x4173a3]),_0x388af0['buffers'][0x0];}[_0x13d9('0xb')](_0x521673){const _0x11e751=[];return this[_0x13d9('0xf')][_0x13d9('0xc')]('InsertOperation')[_0x13d9('0x5')](_0x11e751,_0x521673),_0x11e751[0x0];}[_0x13d9('0x6')](_0x4ec5d7){return'InsertOperation'==_0x4ec5d7['__className']&&0x1==_0x4ec5d7[_0x13d9('0xa')]['length']&&_0x4ec5d7['nodes'][0x0]['data']&&!_0x4ec5d7['wasUndone']&&0x1==Array[_0x13d9('0x3')](_0x4ec5d7[_0x13d9('0xa')][0x0][_0x13d9('0x7')])[_0x13d9('0x11')];}['_compareAttributes'](_0x3747a0,_0x1fa3f4){const _0x5f06b8=Object[_0x13d9('0x2')](_0x3747a0['attributes']||{}),_0x2a08a5=Object[_0x13d9('0x2')](_0x1fa3f4[_0x13d9('0x8')]||{});return _0x5f06b8[_0x13d9('0x11')]===_0x2a08a5[_0x13d9('0x11')]&&_0x5f06b8['every'](_0xf40dbc=>_0x1fa3f4['attributes'][_0xf40dbc]&&_0x1fa3f4[_0x13d9('0x8')][_0xf40dbc]===_0x3747a0[_0x13d9('0x8')][_0xf40dbc]);}}
|
|
@@ -20,4 +20,4 @@
|
|
|
20
20
|
*
|
|
21
21
|
*
|
|
22
22
|
*/
|
|
23
|
-
const
|
|
23
|
+
const _0x2b03=['types','push','_context','oldRange','split','end','shift','_getCompressorByName','MarkerOperation','newRange','user:','_decompressSingleOperation','__className','start','toNone','_compareOperations','user:position:','compress','buffers','name','decompress','startsWith','_compressSingleOperation'];(function(_0x5ac70d,_0x2b0381){const _0x54130e=function(_0x50a121){while(--_0x50a121){_0x5ac70d['push'](_0x5ac70d['shift']());}};_0x54130e(++_0x2b0381);}(_0x2b03,0x1e1));const _0x5413=function(_0x5ac70d,_0x2b0381){_0x5ac70d=_0x5ac70d-0x0;let _0x54130e=_0x2b03[_0x5ac70d];return _0x54130e;};import _0x4f2142 from'./actioncompressor';import{arePositionsEqual as _0x3260fc}from'../utils';import{cloneDeep as _0x25e1cb}from'lodash-es';export default class f extends _0x4f2142{[_0x5413('0x13')](_0x153e96,_0x6ce317){if(!this[_0x5413('0x11')](_0x6ce317[0x0],_0x6ce317[0x1]))return!0x1;const _0x335690=_0x6ce317[_0x5413('0x8')]();return _0x335690[_0x5413('0x5')]=null,_0x335690[_0x5413('0xb')]&&_0x3260fc(_0x335690[_0x5413('0xb')][_0x5413('0xf')],_0x335690[_0x5413('0xb')]['end'])&&(_0x335690[_0x5413('0xb')][_0x5413('0x7')]=null),_0x6ce317[_0x5413('0x8')](),_0x153e96[_0x5413('0x2')][_0x5413('0x3')](this['_id']),_0x153e96[_0x5413('0x2')][_0x5413('0x3')](0x0),_0x153e96['buffers']['push'](this[_0x5413('0x1')](_0x335690)),!0x0;}[_0x5413('0x16')](_0x36292b,_0x1aaf06){const _0x1f58c0=this['_decompressSingleOperation'](_0x1aaf06);_0x1f58c0[_0x5413('0xb')]&&!_0x1f58c0[_0x5413('0xb')][_0x5413('0x7')]&&(_0x1f58c0[_0x5413('0xb')][_0x5413('0x7')]=_0x25e1cb(_0x1f58c0['newRange']['start']));const _0x587138=_0x25e1cb(_0x1f58c0);_0x587138[_0x5413('0xb')]&&(_0x587138[_0x5413('0xb')]['start']['stickiness']=_0x5413('0x10'),_0x587138[_0x5413('0xb')][_0x5413('0x7')]=_0x25e1cb(_0x587138[_0x5413('0xb')][_0x5413('0xf')])),_0x587138['name']=_0x5413('0x12')+_0x587138[_0x5413('0x15')][_0x5413('0x6')](':')[0x2],_0x1aaf06['types'][_0x5413('0x8')](),_0x36292b['push'](_0x1f58c0),_0x36292b[_0x5413('0x3')](_0x587138);}[_0x5413('0x1')](_0x3501fc){const _0x366f58={'types':[],'buffers':[],'baseVersion':0x0};return this[_0x5413('0x4')][_0x5413('0x9')]('MarkerOperation')[_0x5413('0x13')](_0x366f58,[_0x3501fc]),_0x366f58[_0x5413('0x14')][0x0];}[_0x5413('0xd')](_0x431a68){const _0x4aeea3=[];return this['_context'][_0x5413('0x9')](_0x5413('0xa'))[_0x5413('0x16')](_0x4aeea3,_0x431a68),_0x4aeea3[0x0];}[_0x5413('0x11')](_0x5c76f0,_0x5029a2){return!(!_0x5c76f0||!_0x5029a2)&&(_0x5413('0xa')==_0x5c76f0[_0x5413('0xe')]&&_0x5413('0xa')==_0x5029a2[_0x5413('0xe')]&&!(!_0x5c76f0['name'][_0x5413('0x0')](_0x5413('0xc'))||!_0x5029a2[_0x5413('0x15')][_0x5413('0x0')](_0x5413('0xc'))||_0x5c76f0[_0x5413('0x15')]==_0x5029a2[_0x5413('0x15')]));}}
|
package/src/compressor.js
CHANGED
|
@@ -20,4 +20,4 @@
|
|
|
20
20
|
*
|
|
21
21
|
*
|
|
22
22
|
*/
|
|
23
|
-
const
|
|
23
|
+
const _0x1866=['ForwardDeletingAction','MarkerOperation','no-operations-provided','get','compress','TypingAction','getDescriptor','_compressorById','_compressorByName','forEach','RootOperation','set','length','baseVersion','RootAttributeOperation','RenameOperation','DeletingAction','__className','SuggestionMarkerOperation','InsertOperation','_getCompressorByName','SplitOperation','_protobufFactory','suggestion','types','MergeOperation','_registerCompressor','_registerOperationCompressor','NoOperation','_registerActionCompressor','CommentMarkerOperation','comment','decompress'];(function(_0x10c255,_0x1866da){const _0x2ff3aa=function(_0x4bc870){while(--_0x4bc870){_0x10c255['push'](_0x10c255['shift']());}};_0x2ff3aa(++_0x1866da);}(_0x1866,0xaa));const _0x2ff3=function(_0x10c255,_0x1866da){_0x10c255=_0x10c255-0x0;let _0x2ff3aa=_0x1866[_0x10c255];return _0x2ff3aa;};import{CKEditorError as _0x2efebf}from'ckeditor5/src/utils';import _0x24b532 from'./protobuffactory';import _0x2b5e81 from'./operationcompressor/operationcompressor';import _0x36badf from'./operationcompressor/attributeoperationcompressor';import _0x3fd0e3 from'./operationcompressor/insertoperationcompressor';import _0x4ac0f2 from'./operationcompressor/markeroperationcompressor';import _0x227ea4 from'./operationcompressor/nooperationcompressor';import _0x4f4284 from'./operationcompressor/annotationmarkeroperationcompressor';import _0x5adc47 from'./actioncompressor/typingactioncompressor';import _0x5710e1 from'./actioncompressor/deletingactioncompressor';import _0x58e562 from'./actioncompressor/forwarddeletingactioncompressor';import _0x4376aa from'./actioncompressor/userselectionactioncompressor';export default class g{constructor(){this[_0x2ff3('0x2')]=new Map(),this['_compressorByName']=new Map(),this[_0x2ff3('0x11')]=new _0x24b532();const _0x464516=this[_0x2ff3('0x11')][_0x2ff3('0x1')]('MarkerOperation');this[_0x2ff3('0x15')](0x1,_0x2ff3('0x17'),new _0x227ea4(0x1,_0x2ff3('0x17'),void 0x0)),this[_0x2ff3('0x16')](0xa,'AttributeOperation',_0x36badf),this[_0x2ff3('0x16')](0xb,_0x2ff3('0xe'),_0x3fd0e3),this[_0x2ff3('0x16')](0xc,_0x2ff3('0x1d'),_0x4ac0f2),this[_0x2ff3('0x16')](0xd,_0x2ff3('0x14'),_0x2b5e81),this[_0x2ff3('0x16')](0xe,'MoveOperation',_0x2b5e81),this[_0x2ff3('0x16')](0xf,_0x2ff3('0xa'),_0x2b5e81),this[_0x2ff3('0x16')](0x10,_0x2ff3('0x9'),_0x36badf),this[_0x2ff3('0x16')](0x11,_0x2ff3('0x10'),_0x2b5e81),this[_0x2ff3('0x15')](0x12,_0x2ff3('0x19'),new _0x4f4284(0x12,'MarkerOperation',_0x464516,_0x2ff3('0x1a'))),this[_0x2ff3('0x15')](0x13,_0x2ff3('0xd'),new _0x4f4284(0x13,'MarkerOperation',_0x464516,_0x2ff3('0x12'))),this['_registerOperationCompressor'](0x14,_0x2ff3('0x5'),_0x2b5e81),this[_0x2ff3('0x18')](0x64,_0x2ff3('0x0'),_0x5adc47),this[_0x2ff3('0x18')](0x65,_0x2ff3('0xb'),_0x5710e1),this['_registerActionCompressor'](0x66,_0x2ff3('0x1c'),_0x58e562),this['_registerActionCompressor'](0x67,'UserSelectionAction',_0x4376aa);}['compress'](_0x27ec1a){if(!_0x27ec1a||!_0x27ec1a[0x0])throw new _0x2efebf(_0x2ff3('0x1e'),this);const _0x30ccae={'types':[],'buffers':[],'baseVersion':_0x27ec1a[0x0][_0x2ff3('0x8')]};for(;_0x27ec1a[_0x2ff3('0x7')];)this[_0x2ff3('0xf')]('UserSelectionAction')['compress'](_0x30ccae,_0x27ec1a)||this[_0x2ff3('0xf')]('TypingAction')['compress'](_0x30ccae,_0x27ec1a)||this['_getCompressorByName']('DeletingAction')[_0x2ff3('0x20')](_0x30ccae,_0x27ec1a)||this[_0x2ff3('0xf')](_0x2ff3('0x1c'))[_0x2ff3('0x20')](_0x30ccae,_0x27ec1a)||this[_0x2ff3('0xf')](_0x2ff3('0x19'))[_0x2ff3('0x20')](_0x30ccae,_0x27ec1a)||this['_getCompressorByName'](_0x2ff3('0xd'))[_0x2ff3('0x20')](_0x30ccae,_0x27ec1a)||this[_0x2ff3('0xf')](_0x27ec1a[0x0][_0x2ff3('0xc')])[_0x2ff3('0x20')](_0x30ccae,_0x27ec1a);return _0x30ccae;}[_0x2ff3('0x1b')](_0x4eb1d2){const _0x274501=[];for(;_0x4eb1d2[_0x2ff3('0x13')]['length'];){this[_0x2ff3('0x2')][_0x2ff3('0x1f')](_0x4eb1d2[_0x2ff3('0x13')][0x0])['decompress'](_0x274501,_0x4eb1d2);}return _0x274501[_0x2ff3('0x4')]((_0x54d7ad,_0x357f6b)=>_0x54d7ad[_0x2ff3('0x8')]=_0x4eb1d2[_0x2ff3('0x8')]+_0x357f6b),_0x274501;}[_0x2ff3('0xf')](_0x552893){return this[_0x2ff3('0x3')]['get'](_0x552893);}[_0x2ff3('0x16')](_0x3a511b,_0x519085,_0x3ed531){const _0x28e65a=new _0x3ed531(_0x3a511b,_0x519085,this[_0x2ff3('0x11')][_0x2ff3('0x1')](_0x519085));this[_0x2ff3('0x15')](_0x3a511b,_0x519085,_0x28e65a);}[_0x2ff3('0x18')](_0x319db7,_0x50592e,_0x58df42){const _0xd03815=new _0x58df42(_0x319db7,this);this[_0x2ff3('0x15')](_0x319db7,_0x50592e,_0xd03815);}[_0x2ff3('0x15')](_0x3a7721,_0x15930c,_0xf14b26){this[_0x2ff3('0x2')][_0x2ff3('0x6')](_0x3a7721,_0xf14b26),this[_0x2ff3('0x3')][_0x2ff3('0x6')](_0x15930c,_0xf14b26);}}
|
|
@@ -20,4 +20,4 @@
|
|
|
20
20
|
*
|
|
21
21
|
*
|
|
22
22
|
*/
|
|
23
|
-
const _0xf1e2=['roots','toJSONOptions','howMany','end','/MarkerOperation','length','graveyardPosition.','children:\x20array\x20expected','.SplitOperation.insertionPosition:\x20object\x20expected','name','position.','attributesBoolean:\x20boolean{k:string}\x20expected','howMany:\x20integer\x20expected','.RenameOperation.position:\x20object\x20expected','sourcePosition','nodes','data:\x20string\x20expected','attributesJson','/Range','range.','.Element.attributesBoolean:\x20object\x20expected','newValueJson','insertionPosition','type.googleapis.com','arrays','attributesJson:\x20string\x20expected','isAdd:\x20boolean\x20expected','.MergeOperation.sourcePosition:\x20object\x20expected','SplitOperation','newRange.','Element','path','/MergeOperation','.InsertOperation.nodes:\x20object\x20expected','.Element.children:\x20object\x20expected','nodes.','string','boolean','rootGraveyard:\x20boolean\x20expected','/Element','RenameOperation','data','path:\x20integer[]\x20expected','.SplitOperation.splitPosition:\x20object\x20expected','range','.MergeOperation.targetPosition:\x20object\x20expected','stickiness:\x20string\x20expected','isInteger','splitPosition','newValueJson:\x20string\x20expected','RootOperation','start','elementName','defaults','.InsertOperation.position:\x20object\x20expected','isArray','graveyardPosition','oldRange','newName:\x20string\x20expected','.AttributeOperation.range:\x20object\x20expected','name:\x20string\x20expected','.Range.start:\x20object\x20expected','isString','pos','sourcePosition.','oldValueJson','object\x20expected','end.','root:\x20string\x20expected','Range','shouldReceiveAttributes:\x20boolean\x20expected','fork','rootMain','newName','.MoveOperation.targetPosition:\x20object\x20expected','attributesBoolean','encode','root','constructor','util','targetPosition','MergeOperation','targetPosition.','AttributeOperation','/MoveOperation','rootName','oldValueBoolean:\x20boolean\x20expected','oldValueJson:\x20string\x20expected','path:\x20array\x20expected','wasUndone:\x20boolean\x20expected','/InsertOperation','oldName','len','key','/RootAttributeOperation','.SplitOperation.graveyardPosition:\x20object\x20expected','encodeDelimited','position','newValueBoolean','nodes:\x20array\x20expected','.MoveOperation.sourcePosition:\x20object\x20expected','hasOwnProperty','children.','object','Writer','rootName:\x20string\x20expected','rootMain:\x20boolean\x20expected','MarkerOperation','oldValueBoolean','verify','oldRange.','toJSON','InsertOperation','newRange','.MarkerOperation.oldRange:\x20object\x20expected','keys','create','.Element.children:\x20array\x20expected','MoveOperation','default','fromObject','prototype','emptyObject','isAdd','insertionPosition.','RootAttributeOperation','/Position','wasUndone','children','splitPosition.','ldelim','emptyArray','rootGraveyard','toObject','affectsData','decode','Position','uint32','Reader','call','decodeDelimited','bool','shouldReceiveAttributes','stickiness','skipType','.InsertOperation.nodes:\x20array\x20expected','newValueBoolean:\x20boolean\x20expected','getTypeUrl','key:\x20string\x20expected','push'];(function(_0x21bda7,_0xf1e22a){const _0x2223d8=function(_0x35cff0){while(--_0x35cff0){_0x21bda7['push'](_0x21bda7['shift']());}};_0x2223d8(++_0xf1e22a);}(_0xf1e2,0xf1));const _0x2223=function(_0x21bda7,_0xf1e22a){_0x21bda7=_0x21bda7-0x0;let _0x2223d8=_0xf1e2[_0x21bda7];return _0x2223d8;};import*as _0x2c817d from'protobufjs/minimal';const j=_0x2c817d[_0x2223('0x2f')],y=_0x2c817d[_0x2223('0xd')],k=_0x2c817d[_0x2223('0x8a')],v=_0x2c817d[_0x2223('0x3b')]['default']||(_0x2c817d[_0x2223('0x3b')][_0x2223('0x1c')]={});export const AttributeOperation=v[_0x2223('0x8e')]=(()=>{function _0x6fd550(_0x27739b){if(_0x27739b)for(let _0x1fa06d=Object[_0x2223('0x18')](_0x27739b),_0x1ca991=0x0;_0x1ca991<_0x1fa06d[_0x2223('0x40')];++_0x1ca991)null!=_0x27739b[_0x1fa06d[_0x1ca991]]&&(this[_0x1fa06d[_0x1ca991]]=_0x27739b[_0x1fa06d[_0x1ca991]]);}return _0x6fd550[_0x2223('0x1e')]['range']=null,_0x6fd550[_0x2223('0x1e')]['key']='',_0x6fd550[_0x2223('0x1e')][_0x2223('0x11')]=!0x1,_0x6fd550[_0x2223('0x1e')][_0x2223('0x7c')]='',_0x6fd550['prototype'][_0x2223('0x7')]=!0x1,_0x6fd550[_0x2223('0x1e')]['newValueJson']='',_0x6fd550[_0x2223('0x1e')]['wasUndone']=!0x1,_0x6fd550['create']=function(_0x37b2e4){return new _0x6fd550(_0x37b2e4);},_0x6fd550['encode']=function(_0x5165eb,_0x26214e){return _0x26214e||(_0x26214e=y[_0x2223('0x19')]()),null!=_0x5165eb[_0x2223('0x67')]&&Object[_0x2223('0xa')][_0x2223('0x30')](_0x5165eb,_0x2223('0x67'))&&v[_0x2223('0x80')][_0x2223('0x87')](_0x5165eb[_0x2223('0x67')],_0x26214e[_0x2223('0x2e')](0xa)[_0x2223('0x82')]())[_0x2223('0x27')](),null!=_0x5165eb[_0x2223('0x2')]&&Object[_0x2223('0xa')][_0x2223('0x30')](_0x5165eb,_0x2223('0x2'))&&_0x26214e[_0x2223('0x2e')](0x12)[_0x2223('0x5f')](_0x5165eb[_0x2223('0x2')]),null!=_0x5165eb[_0x2223('0x11')]&&Object[_0x2223('0xa')][_0x2223('0x30')](_0x5165eb,'oldValueBoolean')&&_0x26214e[_0x2223('0x2e')](0x18)['bool'](_0x5165eb[_0x2223('0x11')]),null!=_0x5165eb['oldValueJson']&&Object[_0x2223('0xa')][_0x2223('0x30')](_0x5165eb,_0x2223('0x7c'))&&_0x26214e[_0x2223('0x2e')](0x22)[_0x2223('0x5f')](_0x5165eb[_0x2223('0x7c')]),null!=_0x5165eb[_0x2223('0x7')]&&Object[_0x2223('0xa')][_0x2223('0x30')](_0x5165eb,_0x2223('0x7'))&&_0x26214e[_0x2223('0x2e')](0x28)[_0x2223('0x32')](_0x5165eb['newValueBoolean']),null!=_0x5165eb[_0x2223('0x50')]&&Object[_0x2223('0xa')]['call'](_0x5165eb,_0x2223('0x50'))&&_0x26214e['uint32'](0x32)[_0x2223('0x5f')](_0x5165eb['newValueJson']),null!=_0x5165eb['wasUndone']&&Object[_0x2223('0xa')][_0x2223('0x30')](_0x5165eb,_0x2223('0x24'))&&_0x26214e[_0x2223('0x2e')](0x38)[_0x2223('0x32')](_0x5165eb['wasUndone']),_0x26214e;},_0x6fd550[_0x2223('0x5')]=function(_0x6fb320,_0x4ccc03){return this[_0x2223('0x87')](_0x6fb320,_0x4ccc03)[_0x2223('0x27')]();},_0x6fd550['decode']=function(_0x1b9f71,_0x289ae8){_0x1b9f71 instanceof j||(_0x1b9f71=j[_0x2223('0x19')](_0x1b9f71));let _0x3855a3=void 0x0===_0x289ae8?_0x1b9f71[_0x2223('0x1')]:_0x1b9f71[_0x2223('0x7a')]+_0x289ae8,_0xb57719=new v[(_0x2223('0x8e'))]();for(;_0x1b9f71[_0x2223('0x7a')]<_0x3855a3;){let _0x3c1507=_0x1b9f71[_0x2223('0x2e')]();switch(_0x3c1507>>>0x3){case 0x1:_0xb57719[_0x2223('0x67')]=v[_0x2223('0x80')][_0x2223('0x2c')](_0x1b9f71,_0x1b9f71[_0x2223('0x2e')]());break;case 0x2:_0xb57719[_0x2223('0x2')]=_0x1b9f71[_0x2223('0x5f')]();break;case 0x3:_0xb57719[_0x2223('0x11')]=_0x1b9f71[_0x2223('0x32')]();break;case 0x4:_0xb57719[_0x2223('0x7c')]=_0x1b9f71['string']();break;case 0x5:_0xb57719[_0x2223('0x7')]=_0x1b9f71[_0x2223('0x32')]();break;case 0x6:_0xb57719['newValueJson']=_0x1b9f71[_0x2223('0x5f')]();break;case 0x7:_0xb57719[_0x2223('0x24')]=_0x1b9f71[_0x2223('0x32')]();break;default:_0x1b9f71[_0x2223('0x35')](0x7&_0x3c1507);}}return _0xb57719;},_0x6fd550[_0x2223('0x31')]=function(_0x318843){return _0x318843 instanceof j||(_0x318843=new j(_0x318843)),this[_0x2223('0x2c')](_0x318843,_0x318843[_0x2223('0x2e')]());},_0x6fd550[_0x2223('0x12')]=function(_0x385486){if(_0x2223('0xc')!=typeof _0x385486||null===_0x385486)return _0x2223('0x7d');if(null!=_0x385486[_0x2223('0x67')]&&_0x385486[_0x2223('0xa')](_0x2223('0x67'))){let _0x2a506f=v[_0x2223('0x80')][_0x2223('0x12')](_0x385486[_0x2223('0x67')]);if(_0x2a506f)return _0x2223('0x4e')+_0x2a506f;}return null!=_0x385486[_0x2223('0x2')]&&_0x385486[_0x2223('0xa')](_0x2223('0x2'))&&!k[_0x2223('0x79')](_0x385486[_0x2223('0x2')])?_0x2223('0x39'):null!=_0x385486['oldValueBoolean']&&_0x385486[_0x2223('0xa')](_0x2223('0x11'))&&_0x2223('0x60')!=typeof _0x385486['oldValueBoolean']?'oldValueBoolean:\x20boolean\x20expected':null!=_0x385486['oldValueJson']&&_0x385486[_0x2223('0xa')](_0x2223('0x7c'))&&!k[_0x2223('0x79')](_0x385486[_0x2223('0x7c')])?_0x2223('0x92'):null!=_0x385486[_0x2223('0x7')]&&_0x385486[_0x2223('0xa')](_0x2223('0x7'))&&_0x2223('0x60')!=typeof _0x385486[_0x2223('0x7')]?_0x2223('0x37'):null!=_0x385486[_0x2223('0x50')]&&_0x385486[_0x2223('0xa')](_0x2223('0x50'))&&!k[_0x2223('0x79')](_0x385486[_0x2223('0x50')])?_0x2223('0x6c'):null!=_0x385486[_0x2223('0x24')]&&_0x385486[_0x2223('0xa')]('wasUndone')&&'boolean'!=typeof _0x385486['wasUndone']?_0x2223('0x94'):null;},_0x6fd550[_0x2223('0x1d')]=function(_0x1ca3e8){if(_0x1ca3e8 instanceof v[_0x2223('0x8e')])return _0x1ca3e8;let _0x92e777=new v[(_0x2223('0x8e'))]();if(null!=_0x1ca3e8[_0x2223('0x67')]){if(_0x2223('0xc')!=typeof _0x1ca3e8[_0x2223('0x67')])throw TypeError(_0x2223('0x76'));_0x92e777[_0x2223('0x67')]=v[_0x2223('0x80')][_0x2223('0x1d')](_0x1ca3e8[_0x2223('0x67')]);}return null!=_0x1ca3e8[_0x2223('0x2')]&&(_0x92e777['key']=String(_0x1ca3e8['key'])),null!=_0x1ca3e8[_0x2223('0x11')]&&(_0x92e777[_0x2223('0x11')]=Boolean(_0x1ca3e8['oldValueBoolean'])),null!=_0x1ca3e8[_0x2223('0x7c')]&&(_0x92e777['oldValueJson']=String(_0x1ca3e8[_0x2223('0x7c')])),null!=_0x1ca3e8[_0x2223('0x7')]&&(_0x92e777[_0x2223('0x7')]=Boolean(_0x1ca3e8['newValueBoolean'])),null!=_0x1ca3e8[_0x2223('0x50')]&&(_0x92e777['newValueJson']=String(_0x1ca3e8[_0x2223('0x50')])),null!=_0x1ca3e8['wasUndone']&&(_0x92e777[_0x2223('0x24')]=Boolean(_0x1ca3e8[_0x2223('0x24')])),_0x92e777;},_0x6fd550[_0x2223('0x2a')]=function(_0x34dfc4,_0x35150f){_0x35150f||(_0x35150f={});let _0x16f91b={};return _0x35150f['defaults']&&(_0x16f91b[_0x2223('0x67')]=null,_0x16f91b[_0x2223('0x2')]='',_0x16f91b[_0x2223('0x11')]=!0x1,_0x16f91b[_0x2223('0x7c')]='',_0x16f91b['newValueBoolean']=!0x1,_0x16f91b[_0x2223('0x50')]='',_0x16f91b['wasUndone']=!0x1),null!=_0x34dfc4[_0x2223('0x67')]&&_0x34dfc4[_0x2223('0xa')]('range')&&(_0x16f91b[_0x2223('0x67')]=v[_0x2223('0x80')]['toObject'](_0x34dfc4[_0x2223('0x67')],_0x35150f)),null!=_0x34dfc4['key']&&_0x34dfc4[_0x2223('0xa')](_0x2223('0x2'))&&(_0x16f91b[_0x2223('0x2')]=_0x34dfc4[_0x2223('0x2')]),null!=_0x34dfc4[_0x2223('0x11')]&&_0x34dfc4[_0x2223('0xa')](_0x2223('0x11'))&&(_0x16f91b[_0x2223('0x11')]=_0x34dfc4[_0x2223('0x11')]),null!=_0x34dfc4[_0x2223('0x7c')]&&_0x34dfc4['hasOwnProperty'](_0x2223('0x7c'))&&(_0x16f91b[_0x2223('0x7c')]=_0x34dfc4[_0x2223('0x7c')]),null!=_0x34dfc4['newValueBoolean']&&_0x34dfc4['hasOwnProperty']('newValueBoolean')&&(_0x16f91b['newValueBoolean']=_0x34dfc4['newValueBoolean']),null!=_0x34dfc4[_0x2223('0x50')]&&_0x34dfc4['hasOwnProperty']('newValueJson')&&(_0x16f91b[_0x2223('0x50')]=_0x34dfc4[_0x2223('0x50')]),null!=_0x34dfc4['wasUndone']&&_0x34dfc4[_0x2223('0xa')]('wasUndone')&&(_0x16f91b['wasUndone']=_0x34dfc4[_0x2223('0x24')]),_0x16f91b;},_0x6fd550[_0x2223('0x1e')][_0x2223('0x14')]=function(){return this[_0x2223('0x89')][_0x2223('0x2a')](this,_0x2c817d['util'][_0x2223('0x3c')]);},_0x6fd550[_0x2223('0x38')]=function(_0x5817c2){return void 0x0===_0x5817c2&&(_0x5817c2=_0x2223('0x52')),_0x5817c2+'/AttributeOperation';},_0x6fd550;})();export const InsertOperation=v[_0x2223('0x15')]=(()=>{function _0x61067a(_0x1c980c){if(this[_0x2223('0x4a')]=[],_0x1c980c)for(let _0x180732=Object[_0x2223('0x18')](_0x1c980c),_0x39c73f=0x0;_0x39c73f<_0x180732[_0x2223('0x40')];++_0x39c73f)null!=_0x1c980c[_0x180732[_0x39c73f]]&&(this[_0x180732[_0x39c73f]]=_0x1c980c[_0x180732[_0x39c73f]]);}return _0x61067a[_0x2223('0x1e')][_0x2223('0x6')]=null,_0x61067a[_0x2223('0x1e')][_0x2223('0x4a')]=k[_0x2223('0x28')],_0x61067a['prototype'][_0x2223('0x33')]=!0x1,_0x61067a[_0x2223('0x1e')][_0x2223('0x24')]=!0x1,_0x61067a[_0x2223('0x19')]=function(_0x358c16){return new _0x61067a(_0x358c16);},_0x61067a[_0x2223('0x87')]=function(_0x569081,_0x2edc40){if(_0x2edc40||(_0x2edc40=y[_0x2223('0x19')]()),null!=_0x569081[_0x2223('0x6')]&&Object[_0x2223('0xa')]['call'](_0x569081,_0x2223('0x6'))&&v['Position'][_0x2223('0x87')](_0x569081[_0x2223('0x6')],_0x2edc40['uint32'](0xa)[_0x2223('0x82')]())['ldelim'](),null!=_0x569081['nodes']&&_0x569081['nodes']['length'])for(let _0x3c6783=0x0;_0x3c6783<_0x569081[_0x2223('0x4a')]['length'];++_0x3c6783)v[_0x2223('0x59')][_0x2223('0x87')](_0x569081[_0x2223('0x4a')][_0x3c6783],_0x2edc40[_0x2223('0x2e')](0x12)[_0x2223('0x82')]())[_0x2223('0x27')]();return null!=_0x569081[_0x2223('0x33')]&&Object[_0x2223('0xa')][_0x2223('0x30')](_0x569081,_0x2223('0x33'))&&_0x2edc40[_0x2223('0x2e')](0x18)[_0x2223('0x32')](_0x569081['shouldReceiveAttributes']),null!=_0x569081[_0x2223('0x24')]&&Object[_0x2223('0xa')]['call'](_0x569081,_0x2223('0x24'))&&_0x2edc40[_0x2223('0x2e')](0x20)[_0x2223('0x32')](_0x569081[_0x2223('0x24')]),_0x2edc40;},_0x61067a[_0x2223('0x5')]=function(_0x2e1ec9,_0x1b06ca){return this[_0x2223('0x87')](_0x2e1ec9,_0x1b06ca)[_0x2223('0x27')]();},_0x61067a[_0x2223('0x2c')]=function(_0x1b9672,_0x5beee8){_0x1b9672 instanceof j||(_0x1b9672=j[_0x2223('0x19')](_0x1b9672));let _0x648b71=void 0x0===_0x5beee8?_0x1b9672[_0x2223('0x1')]:_0x1b9672[_0x2223('0x7a')]+_0x5beee8,_0xc6c8a8=new v[(_0x2223('0x15'))]();for(;_0x1b9672[_0x2223('0x7a')]<_0x648b71;){let _0x3c505c=_0x1b9672[_0x2223('0x2e')]();switch(_0x3c505c>>>0x3){case 0x1:_0xc6c8a8['position']=v[_0x2223('0x2d')][_0x2223('0x2c')](_0x1b9672,_0x1b9672[_0x2223('0x2e')]());break;case 0x2:_0xc6c8a8[_0x2223('0x4a')]&&_0xc6c8a8['nodes'][_0x2223('0x40')]||(_0xc6c8a8[_0x2223('0x4a')]=[]),_0xc6c8a8[_0x2223('0x4a')][_0x2223('0x3a')](v[_0x2223('0x59')][_0x2223('0x2c')](_0x1b9672,_0x1b9672[_0x2223('0x2e')]()));break;case 0x3:_0xc6c8a8[_0x2223('0x33')]=_0x1b9672['bool']();break;case 0x4:_0xc6c8a8[_0x2223('0x24')]=_0x1b9672[_0x2223('0x32')]();break;default:_0x1b9672[_0x2223('0x35')](0x7&_0x3c505c);}}return _0xc6c8a8;},_0x61067a[_0x2223('0x31')]=function(_0x468eb5){return _0x468eb5 instanceof j||(_0x468eb5=new j(_0x468eb5)),this['decode'](_0x468eb5,_0x468eb5[_0x2223('0x2e')]());},_0x61067a['verify']=function(_0x407c98){if(_0x2223('0xc')!=typeof _0x407c98||null===_0x407c98)return _0x2223('0x7d');if(null!=_0x407c98[_0x2223('0x6')]&&_0x407c98[_0x2223('0xa')](_0x2223('0x6'))){let _0x147f3f=v['Position'][_0x2223('0x12')](_0x407c98[_0x2223('0x6')]);if(_0x147f3f)return _0x2223('0x45')+_0x147f3f;}if(null!=_0x407c98[_0x2223('0x4a')]&&_0x407c98['hasOwnProperty']('nodes')){if(!Array['isArray'](_0x407c98[_0x2223('0x4a')]))return _0x2223('0x8');for(let _0x1eb6e9=0x0;_0x1eb6e9<_0x407c98[_0x2223('0x4a')][_0x2223('0x40')];++_0x1eb6e9){let _0x8cb21=v[_0x2223('0x59')][_0x2223('0x12')](_0x407c98['nodes'][_0x1eb6e9]);if(_0x8cb21)return _0x2223('0x5e')+_0x8cb21;}}return null!=_0x407c98[_0x2223('0x33')]&&_0x407c98[_0x2223('0xa')](_0x2223('0x33'))&&_0x2223('0x60')!=typeof _0x407c98['shouldReceiveAttributes']?_0x2223('0x81'):null!=_0x407c98[_0x2223('0x24')]&&_0x407c98['hasOwnProperty']('wasUndone')&&_0x2223('0x60')!=typeof _0x407c98[_0x2223('0x24')]?_0x2223('0x94'):null;},_0x61067a[_0x2223('0x1d')]=function(_0xd28aa4){if(_0xd28aa4 instanceof v[_0x2223('0x15')])return _0xd28aa4;let _0x211463=new v[(_0x2223('0x15'))]();if(null!=_0xd28aa4[_0x2223('0x6')]){if(_0x2223('0xc')!=typeof _0xd28aa4[_0x2223('0x6')])throw TypeError(_0x2223('0x71'));_0x211463[_0x2223('0x6')]=v[_0x2223('0x2d')][_0x2223('0x1d')](_0xd28aa4[_0x2223('0x6')]);}if(_0xd28aa4['nodes']){if(!Array['isArray'](_0xd28aa4['nodes']))throw TypeError(_0x2223('0x36'));_0x211463[_0x2223('0x4a')]=[];for(let _0x355f86=0x0;_0x355f86<_0xd28aa4[_0x2223('0x4a')][_0x2223('0x40')];++_0x355f86){if(_0x2223('0xc')!=typeof _0xd28aa4[_0x2223('0x4a')][_0x355f86])throw TypeError(_0x2223('0x5c'));_0x211463[_0x2223('0x4a')][_0x355f86]=v[_0x2223('0x59')][_0x2223('0x1d')](_0xd28aa4[_0x2223('0x4a')][_0x355f86]);}}return null!=_0xd28aa4['shouldReceiveAttributes']&&(_0x211463[_0x2223('0x33')]=Boolean(_0xd28aa4[_0x2223('0x33')])),null!=_0xd28aa4[_0x2223('0x24')]&&(_0x211463[_0x2223('0x24')]=Boolean(_0xd28aa4['wasUndone'])),_0x211463;},_0x61067a[_0x2223('0x2a')]=function(_0x539318,_0x158e1e){_0x158e1e||(_0x158e1e={});let _0x1adf2c={};if((_0x158e1e[_0x2223('0x53')]||_0x158e1e[_0x2223('0x70')])&&(_0x1adf2c[_0x2223('0x4a')]=[]),_0x158e1e[_0x2223('0x70')]&&(_0x1adf2c['position']=null,_0x1adf2c[_0x2223('0x33')]=!0x1,_0x1adf2c[_0x2223('0x24')]=!0x1),null!=_0x539318[_0x2223('0x6')]&&_0x539318[_0x2223('0xa')](_0x2223('0x6'))&&(_0x1adf2c[_0x2223('0x6')]=v[_0x2223('0x2d')][_0x2223('0x2a')](_0x539318['position'],_0x158e1e)),_0x539318[_0x2223('0x4a')]&&_0x539318[_0x2223('0x4a')][_0x2223('0x40')]){_0x1adf2c[_0x2223('0x4a')]=[];for(let _0xa57036=0x0;_0xa57036<_0x539318[_0x2223('0x4a')][_0x2223('0x40')];++_0xa57036)_0x1adf2c['nodes'][_0xa57036]=v[_0x2223('0x59')][_0x2223('0x2a')](_0x539318[_0x2223('0x4a')][_0xa57036],_0x158e1e);}return null!=_0x539318[_0x2223('0x33')]&&_0x539318['hasOwnProperty'](_0x2223('0x33'))&&(_0x1adf2c[_0x2223('0x33')]=_0x539318['shouldReceiveAttributes']),null!=_0x539318[_0x2223('0x24')]&&_0x539318[_0x2223('0xa')](_0x2223('0x24'))&&(_0x1adf2c[_0x2223('0x24')]=_0x539318['wasUndone']),_0x1adf2c;},_0x61067a[_0x2223('0x1e')]['toJSON']=function(){return this['constructor'][_0x2223('0x2a')](this,_0x2c817d['util'][_0x2223('0x3c')]);},_0x61067a['getTypeUrl']=function(_0x49aa54){return void 0x0===_0x49aa54&&(_0x49aa54=_0x2223('0x52')),_0x49aa54+_0x2223('0x95');},_0x61067a;})();export const MarkerOperation=v[_0x2223('0x10')]=(()=>{function _0x20620e(_0x30e3b1){if(_0x30e3b1)for(let _0x181f5c=Object[_0x2223('0x18')](_0x30e3b1),_0x403880=0x0;_0x403880<_0x181f5c[_0x2223('0x40')];++_0x403880)null!=_0x30e3b1[_0x181f5c[_0x403880]]&&(this[_0x181f5c[_0x403880]]=_0x30e3b1[_0x181f5c[_0x403880]]);}return _0x20620e[_0x2223('0x1e')][_0x2223('0x44')]='',_0x20620e[_0x2223('0x1e')][_0x2223('0x74')]=null,_0x20620e[_0x2223('0x1e')]['newRange']=null,_0x20620e[_0x2223('0x1e')][_0x2223('0x2b')]=!0x1,_0x20620e[_0x2223('0x1e')][_0x2223('0x24')]=!0x1,_0x20620e[_0x2223('0x19')]=function(_0x1043bf){return new _0x20620e(_0x1043bf);},_0x20620e['encode']=function(_0x5db135,_0x1c3afb){return _0x1c3afb||(_0x1c3afb=y[_0x2223('0x19')]()),null!=_0x5db135[_0x2223('0x44')]&&Object[_0x2223('0xa')]['call'](_0x5db135,_0x2223('0x44'))&&_0x1c3afb[_0x2223('0x2e')](0xa)[_0x2223('0x5f')](_0x5db135[_0x2223('0x44')]),null!=_0x5db135[_0x2223('0x74')]&&Object[_0x2223('0xa')][_0x2223('0x30')](_0x5db135,_0x2223('0x74'))&&v['Range'][_0x2223('0x87')](_0x5db135[_0x2223('0x74')],_0x1c3afb[_0x2223('0x2e')](0x12)[_0x2223('0x82')]())['ldelim'](),null!=_0x5db135['newRange']&&Object[_0x2223('0xa')][_0x2223('0x30')](_0x5db135,'newRange')&&v['Range'][_0x2223('0x87')](_0x5db135[_0x2223('0x16')],_0x1c3afb[_0x2223('0x2e')](0x1a)['fork']())['ldelim'](),null!=_0x5db135['affectsData']&&Object[_0x2223('0xa')][_0x2223('0x30')](_0x5db135,_0x2223('0x2b'))&&_0x1c3afb[_0x2223('0x2e')](0x20)[_0x2223('0x32')](_0x5db135[_0x2223('0x2b')]),null!=_0x5db135[_0x2223('0x24')]&&Object[_0x2223('0xa')]['call'](_0x5db135,'wasUndone')&&_0x1c3afb[_0x2223('0x2e')](0x28)[_0x2223('0x32')](_0x5db135[_0x2223('0x24')]),_0x1c3afb;},_0x20620e[_0x2223('0x5')]=function(_0x3941ab,_0x5a3269){return this[_0x2223('0x87')](_0x3941ab,_0x5a3269)[_0x2223('0x27')]();},_0x20620e[_0x2223('0x2c')]=function(_0x5b7729,_0x478c3c){_0x5b7729 instanceof j||(_0x5b7729=j[_0x2223('0x19')](_0x5b7729));let _0x2b08d5=void 0x0===_0x478c3c?_0x5b7729[_0x2223('0x1')]:_0x5b7729['pos']+_0x478c3c,_0x30f889=new v[(_0x2223('0x10'))]();for(;_0x5b7729[_0x2223('0x7a')]<_0x2b08d5;){let _0x59726c=_0x5b7729[_0x2223('0x2e')]();switch(_0x59726c>>>0x3){case 0x1:_0x30f889[_0x2223('0x44')]=_0x5b7729[_0x2223('0x5f')]();break;case 0x2:_0x30f889['oldRange']=v[_0x2223('0x80')][_0x2223('0x2c')](_0x5b7729,_0x5b7729[_0x2223('0x2e')]());break;case 0x3:_0x30f889[_0x2223('0x16')]=v[_0x2223('0x80')][_0x2223('0x2c')](_0x5b7729,_0x5b7729[_0x2223('0x2e')]());break;case 0x4:_0x30f889[_0x2223('0x2b')]=_0x5b7729['bool']();break;case 0x5:_0x30f889[_0x2223('0x24')]=_0x5b7729[_0x2223('0x32')]();break;default:_0x5b7729[_0x2223('0x35')](0x7&_0x59726c);}}return _0x30f889;},_0x20620e[_0x2223('0x31')]=function(_0x3e0948){return _0x3e0948 instanceof j||(_0x3e0948=new j(_0x3e0948)),this[_0x2223('0x2c')](_0x3e0948,_0x3e0948[_0x2223('0x2e')]());},_0x20620e[_0x2223('0x12')]=function(_0x1ed445){if(_0x2223('0xc')!=typeof _0x1ed445||null===_0x1ed445)return _0x2223('0x7d');if(null!=_0x1ed445[_0x2223('0x44')]&&_0x1ed445['hasOwnProperty']('name')&&!k['isString'](_0x1ed445['name']))return _0x2223('0x77');if(null!=_0x1ed445['oldRange']&&_0x1ed445[_0x2223('0xa')](_0x2223('0x74'))){let _0x26c991=v['Range'][_0x2223('0x12')](_0x1ed445[_0x2223('0x74')]);if(_0x26c991)return _0x2223('0x13')+_0x26c991;}if(null!=_0x1ed445[_0x2223('0x16')]&&_0x1ed445[_0x2223('0xa')](_0x2223('0x16'))){let _0x293c36=v[_0x2223('0x80')][_0x2223('0x12')](_0x1ed445[_0x2223('0x16')]);if(_0x293c36)return _0x2223('0x58')+_0x293c36;}return null!=_0x1ed445[_0x2223('0x2b')]&&_0x1ed445[_0x2223('0xa')]('affectsData')&&_0x2223('0x60')!=typeof _0x1ed445['affectsData']?'affectsData:\x20boolean\x20expected':null!=_0x1ed445[_0x2223('0x24')]&&_0x1ed445[_0x2223('0xa')](_0x2223('0x24'))&&_0x2223('0x60')!=typeof _0x1ed445[_0x2223('0x24')]?_0x2223('0x94'):null;},_0x20620e['fromObject']=function(_0x3a13a9){if(_0x3a13a9 instanceof v['MarkerOperation'])return _0x3a13a9;let _0x1ac054=new v[(_0x2223('0x10'))]();if(null!=_0x3a13a9[_0x2223('0x44')]&&(_0x1ac054[_0x2223('0x44')]=String(_0x3a13a9['name'])),null!=_0x3a13a9[_0x2223('0x74')]){if(_0x2223('0xc')!=typeof _0x3a13a9[_0x2223('0x74')])throw TypeError(_0x2223('0x17'));_0x1ac054[_0x2223('0x74')]=v[_0x2223('0x80')]['fromObject'](_0x3a13a9[_0x2223('0x74')]);}if(null!=_0x3a13a9['newRange']){if(_0x2223('0xc')!=typeof _0x3a13a9[_0x2223('0x16')])throw TypeError('.MarkerOperation.newRange:\x20object\x20expected');_0x1ac054[_0x2223('0x16')]=v[_0x2223('0x80')][_0x2223('0x1d')](_0x3a13a9[_0x2223('0x16')]);}return null!=_0x3a13a9['affectsData']&&(_0x1ac054[_0x2223('0x2b')]=Boolean(_0x3a13a9[_0x2223('0x2b')])),null!=_0x3a13a9['wasUndone']&&(_0x1ac054['wasUndone']=Boolean(_0x3a13a9[_0x2223('0x24')])),_0x1ac054;},_0x20620e[_0x2223('0x2a')]=function(_0x276e0a,_0x447ae0){_0x447ae0||(_0x447ae0={});let _0x195e42={};return _0x447ae0[_0x2223('0x70')]&&(_0x195e42['name']='',_0x195e42[_0x2223('0x74')]=null,_0x195e42[_0x2223('0x16')]=null,_0x195e42[_0x2223('0x2b')]=!0x1,_0x195e42[_0x2223('0x24')]=!0x1),null!=_0x276e0a['name']&&_0x276e0a[_0x2223('0xa')](_0x2223('0x44'))&&(_0x195e42[_0x2223('0x44')]=_0x276e0a['name']),null!=_0x276e0a[_0x2223('0x74')]&&_0x276e0a[_0x2223('0xa')](_0x2223('0x74'))&&(_0x195e42[_0x2223('0x74')]=v['Range'][_0x2223('0x2a')](_0x276e0a[_0x2223('0x74')],_0x447ae0)),null!=_0x276e0a[_0x2223('0x16')]&&_0x276e0a[_0x2223('0xa')]('newRange')&&(_0x195e42['newRange']=v[_0x2223('0x80')][_0x2223('0x2a')](_0x276e0a[_0x2223('0x16')],_0x447ae0)),null!=_0x276e0a['affectsData']&&_0x276e0a[_0x2223('0xa')](_0x2223('0x2b'))&&(_0x195e42[_0x2223('0x2b')]=_0x276e0a['affectsData']),null!=_0x276e0a[_0x2223('0x24')]&&_0x276e0a['hasOwnProperty'](_0x2223('0x24'))&&(_0x195e42[_0x2223('0x24')]=_0x276e0a[_0x2223('0x24')]),_0x195e42;},_0x20620e[_0x2223('0x1e')][_0x2223('0x14')]=function(){return this[_0x2223('0x89')][_0x2223('0x2a')](this,_0x2c817d['util'][_0x2223('0x3c')]);},_0x20620e['getTypeUrl']=function(_0x38086d){return void 0x0===_0x38086d&&(_0x38086d=_0x2223('0x52')),_0x38086d+_0x2223('0x3f');},_0x20620e;})();export const MergeOperation=v['MergeOperation']=(()=>{function _0x1759ec(_0x453d4b){if(_0x453d4b)for(let _0x2589da=Object[_0x2223('0x18')](_0x453d4b),_0x4ea418=0x0;_0x4ea418<_0x2589da['length'];++_0x4ea418)null!=_0x453d4b[_0x2589da[_0x4ea418]]&&(this[_0x2589da[_0x4ea418]]=_0x453d4b[_0x2589da[_0x4ea418]]);}return _0x1759ec['prototype'][_0x2223('0x49')]=null,_0x1759ec['prototype'][_0x2223('0x8b')]=null,_0x1759ec[_0x2223('0x1e')][_0x2223('0x73')]=null,_0x1759ec['prototype'][_0x2223('0x3d')]=0x0,_0x1759ec[_0x2223('0x1e')][_0x2223('0x24')]=!0x1,_0x1759ec[_0x2223('0x19')]=function(_0x267fd8){return new _0x1759ec(_0x267fd8);},_0x1759ec[_0x2223('0x87')]=function(_0x37d796,_0x3a8430){return _0x3a8430||(_0x3a8430=y[_0x2223('0x19')]()),null!=_0x37d796['sourcePosition']&&Object[_0x2223('0xa')]['call'](_0x37d796,_0x2223('0x49'))&&v[_0x2223('0x2d')]['encode'](_0x37d796[_0x2223('0x49')],_0x3a8430['uint32'](0xa)['fork']())[_0x2223('0x27')](),null!=_0x37d796['targetPosition']&&Object[_0x2223('0xa')][_0x2223('0x30')](_0x37d796,'targetPosition')&&v[_0x2223('0x2d')][_0x2223('0x87')](_0x37d796['targetPosition'],_0x3a8430[_0x2223('0x2e')](0x12)[_0x2223('0x82')]())[_0x2223('0x27')](),null!=_0x37d796[_0x2223('0x73')]&&Object[_0x2223('0xa')]['call'](_0x37d796,_0x2223('0x73'))&&v[_0x2223('0x2d')][_0x2223('0x87')](_0x37d796[_0x2223('0x73')],_0x3a8430[_0x2223('0x2e')](0x1a)[_0x2223('0x82')]())['ldelim'](),null!=_0x37d796[_0x2223('0x3d')]&&Object[_0x2223('0xa')][_0x2223('0x30')](_0x37d796,_0x2223('0x3d'))&&_0x3a8430[_0x2223('0x2e')](0x20)[_0x2223('0x2e')](_0x37d796['howMany']),null!=_0x37d796[_0x2223('0x24')]&&Object[_0x2223('0xa')][_0x2223('0x30')](_0x37d796,_0x2223('0x24'))&&_0x3a8430['uint32'](0x28)['bool'](_0x37d796['wasUndone']),_0x3a8430;},_0x1759ec[_0x2223('0x5')]=function(_0x53b455,_0x2e2261){return this[_0x2223('0x87')](_0x53b455,_0x2e2261)[_0x2223('0x27')]();},_0x1759ec[_0x2223('0x2c')]=function(_0x414dcc,_0x172681){_0x414dcc instanceof j||(_0x414dcc=j[_0x2223('0x19')](_0x414dcc));let _0x84a03d=void 0x0===_0x172681?_0x414dcc['len']:_0x414dcc[_0x2223('0x7a')]+_0x172681,_0x2c2231=new v[(_0x2223('0x8c'))]();for(;_0x414dcc[_0x2223('0x7a')]<_0x84a03d;){let _0x4e2413=_0x414dcc[_0x2223('0x2e')]();switch(_0x4e2413>>>0x3){case 0x1:_0x2c2231['sourcePosition']=v[_0x2223('0x2d')][_0x2223('0x2c')](_0x414dcc,_0x414dcc['uint32']());break;case 0x2:_0x2c2231[_0x2223('0x8b')]=v[_0x2223('0x2d')][_0x2223('0x2c')](_0x414dcc,_0x414dcc[_0x2223('0x2e')]());break;case 0x3:_0x2c2231[_0x2223('0x73')]=v[_0x2223('0x2d')][_0x2223('0x2c')](_0x414dcc,_0x414dcc[_0x2223('0x2e')]());break;case 0x4:_0x2c2231['howMany']=_0x414dcc[_0x2223('0x2e')]();break;case 0x5:_0x2c2231['wasUndone']=_0x414dcc[_0x2223('0x32')]();break;default:_0x414dcc[_0x2223('0x35')](0x7&_0x4e2413);}}return _0x2c2231;},_0x1759ec['decodeDelimited']=function(_0x280151){return _0x280151 instanceof j||(_0x280151=new j(_0x280151)),this[_0x2223('0x2c')](_0x280151,_0x280151[_0x2223('0x2e')]());},_0x1759ec[_0x2223('0x12')]=function(_0x283414){if(_0x2223('0xc')!=typeof _0x283414||null===_0x283414)return'object\x20expected';if(null!=_0x283414[_0x2223('0x49')]&&_0x283414['hasOwnProperty']('sourcePosition')){let _0x39fadc=v['Position'][_0x2223('0x12')](_0x283414[_0x2223('0x49')]);if(_0x39fadc)return _0x2223('0x7b')+_0x39fadc;}if(null!=_0x283414[_0x2223('0x8b')]&&_0x283414[_0x2223('0xa')](_0x2223('0x8b'))){let _0x3af529=v[_0x2223('0x2d')][_0x2223('0x12')](_0x283414[_0x2223('0x8b')]);if(_0x3af529)return _0x2223('0x8d')+_0x3af529;}if(null!=_0x283414[_0x2223('0x73')]&&_0x283414['hasOwnProperty'](_0x2223('0x73'))){let _0x403fbd=v['Position'][_0x2223('0x12')](_0x283414['graveyardPosition']);if(_0x403fbd)return _0x2223('0x41')+_0x403fbd;}return null!=_0x283414[_0x2223('0x3d')]&&_0x283414[_0x2223('0xa')](_0x2223('0x3d'))&&!k[_0x2223('0x6a')](_0x283414[_0x2223('0x3d')])?_0x2223('0x47'):null!=_0x283414['wasUndone']&&_0x283414['hasOwnProperty']('wasUndone')&&_0x2223('0x60')!=typeof _0x283414['wasUndone']?_0x2223('0x94'):null;},_0x1759ec['fromObject']=function(_0x55c89a){if(_0x55c89a instanceof v[_0x2223('0x8c')])return _0x55c89a;let _0x890c53=new v[(_0x2223('0x8c'))]();if(null!=_0x55c89a[_0x2223('0x49')]){if(_0x2223('0xc')!=typeof _0x55c89a[_0x2223('0x49')])throw TypeError(_0x2223('0x56'));_0x890c53[_0x2223('0x49')]=v['Position']['fromObject'](_0x55c89a[_0x2223('0x49')]);}if(null!=_0x55c89a[_0x2223('0x8b')]){if(_0x2223('0xc')!=typeof _0x55c89a[_0x2223('0x8b')])throw TypeError(_0x2223('0x68'));_0x890c53[_0x2223('0x8b')]=v[_0x2223('0x2d')][_0x2223('0x1d')](_0x55c89a['targetPosition']);}if(null!=_0x55c89a['graveyardPosition']){if(_0x2223('0xc')!=typeof _0x55c89a[_0x2223('0x73')])throw TypeError('.MergeOperation.graveyardPosition:\x20object\x20expected');_0x890c53['graveyardPosition']=v['Position'][_0x2223('0x1d')](_0x55c89a[_0x2223('0x73')]);}return null!=_0x55c89a['howMany']&&(_0x890c53['howMany']=_0x55c89a[_0x2223('0x3d')]>>>0x0),null!=_0x55c89a[_0x2223('0x24')]&&(_0x890c53[_0x2223('0x24')]=Boolean(_0x55c89a[_0x2223('0x24')])),_0x890c53;},_0x1759ec['toObject']=function(_0x9d848d,_0x5f2176){_0x5f2176||(_0x5f2176={});let _0x290427={};return _0x5f2176[_0x2223('0x70')]&&(_0x290427[_0x2223('0x49')]=null,_0x290427[_0x2223('0x8b')]=null,_0x290427[_0x2223('0x73')]=null,_0x290427[_0x2223('0x3d')]=0x0,_0x290427[_0x2223('0x24')]=!0x1),null!=_0x9d848d[_0x2223('0x49')]&&_0x9d848d['hasOwnProperty'](_0x2223('0x49'))&&(_0x290427['sourcePosition']=v[_0x2223('0x2d')][_0x2223('0x2a')](_0x9d848d['sourcePosition'],_0x5f2176)),null!=_0x9d848d[_0x2223('0x8b')]&&_0x9d848d['hasOwnProperty']('targetPosition')&&(_0x290427[_0x2223('0x8b')]=v['Position'][_0x2223('0x2a')](_0x9d848d['targetPosition'],_0x5f2176)),null!=_0x9d848d[_0x2223('0x73')]&&_0x9d848d[_0x2223('0xa')](_0x2223('0x73'))&&(_0x290427[_0x2223('0x73')]=v[_0x2223('0x2d')]['toObject'](_0x9d848d[_0x2223('0x73')],_0x5f2176)),null!=_0x9d848d[_0x2223('0x3d')]&&_0x9d848d[_0x2223('0xa')](_0x2223('0x3d'))&&(_0x290427['howMany']=_0x9d848d['howMany']),null!=_0x9d848d[_0x2223('0x24')]&&_0x9d848d[_0x2223('0xa')](_0x2223('0x24'))&&(_0x290427['wasUndone']=_0x9d848d[_0x2223('0x24')]),_0x290427;},_0x1759ec[_0x2223('0x1e')]['toJSON']=function(){return this['constructor'][_0x2223('0x2a')](this,_0x2c817d[_0x2223('0x8a')][_0x2223('0x3c')]);},_0x1759ec['getTypeUrl']=function(_0x51a5a7){return void 0x0===_0x51a5a7&&(_0x51a5a7=_0x2223('0x52')),_0x51a5a7+_0x2223('0x5b');},_0x1759ec;})();export const MoveOperation=v[_0x2223('0x1b')]=(()=>{function _0x227627(_0x48d3f0){if(_0x48d3f0)for(let _0x550bb9=Object['keys'](_0x48d3f0),_0x42eebc=0x0;_0x42eebc<_0x550bb9[_0x2223('0x40')];++_0x42eebc)null!=_0x48d3f0[_0x550bb9[_0x42eebc]]&&(this[_0x550bb9[_0x42eebc]]=_0x48d3f0[_0x550bb9[_0x42eebc]]);}return _0x227627[_0x2223('0x1e')][_0x2223('0x49')]=null,_0x227627[_0x2223('0x1e')][_0x2223('0x3d')]=0x0,_0x227627['prototype'][_0x2223('0x8b')]=null,_0x227627['prototype'][_0x2223('0x24')]=!0x1,_0x227627[_0x2223('0x19')]=function(_0x38f08e){return new _0x227627(_0x38f08e);},_0x227627[_0x2223('0x87')]=function(_0x3fa19c,_0x22b4ed){return _0x22b4ed||(_0x22b4ed=y['create']()),null!=_0x3fa19c[_0x2223('0x49')]&&Object[_0x2223('0xa')][_0x2223('0x30')](_0x3fa19c,'sourcePosition')&&v[_0x2223('0x2d')][_0x2223('0x87')](_0x3fa19c[_0x2223('0x49')],_0x22b4ed['uint32'](0xa)[_0x2223('0x82')]())[_0x2223('0x27')](),null!=_0x3fa19c[_0x2223('0x3d')]&&Object[_0x2223('0xa')]['call'](_0x3fa19c,_0x2223('0x3d'))&&_0x22b4ed[_0x2223('0x2e')](0x10)[_0x2223('0x2e')](_0x3fa19c[_0x2223('0x3d')]),null!=_0x3fa19c['targetPosition']&&Object['hasOwnProperty']['call'](_0x3fa19c,_0x2223('0x8b'))&&v['Position'][_0x2223('0x87')](_0x3fa19c['targetPosition'],_0x22b4ed[_0x2223('0x2e')](0x1a)[_0x2223('0x82')]())[_0x2223('0x27')](),null!=_0x3fa19c[_0x2223('0x24')]&&Object[_0x2223('0xa')][_0x2223('0x30')](_0x3fa19c,_0x2223('0x24'))&&_0x22b4ed['uint32'](0x20)[_0x2223('0x32')](_0x3fa19c[_0x2223('0x24')]),_0x22b4ed;},_0x227627[_0x2223('0x5')]=function(_0x28e916,_0x59f00f){return this[_0x2223('0x87')](_0x28e916,_0x59f00f)['ldelim']();},_0x227627['decode']=function(_0x3b4124,_0x5e047e){_0x3b4124 instanceof j||(_0x3b4124=j[_0x2223('0x19')](_0x3b4124));let _0x54ffc8=void 0x0===_0x5e047e?_0x3b4124[_0x2223('0x1')]:_0x3b4124[_0x2223('0x7a')]+_0x5e047e,_0x540c76=new v['MoveOperation']();for(;_0x3b4124[_0x2223('0x7a')]<_0x54ffc8;){let _0xb5e222=_0x3b4124[_0x2223('0x2e')]();switch(_0xb5e222>>>0x3){case 0x1:_0x540c76[_0x2223('0x49')]=v[_0x2223('0x2d')]['decode'](_0x3b4124,_0x3b4124['uint32']());break;case 0x2:_0x540c76[_0x2223('0x3d')]=_0x3b4124['uint32']();break;case 0x3:_0x540c76[_0x2223('0x8b')]=v[_0x2223('0x2d')]['decode'](_0x3b4124,_0x3b4124[_0x2223('0x2e')]());break;case 0x4:_0x540c76[_0x2223('0x24')]=_0x3b4124[_0x2223('0x32')]();break;default:_0x3b4124[_0x2223('0x35')](0x7&_0xb5e222);}}return _0x540c76;},_0x227627[_0x2223('0x31')]=function(_0x491763){return _0x491763 instanceof j||(_0x491763=new j(_0x491763)),this[_0x2223('0x2c')](_0x491763,_0x491763[_0x2223('0x2e')]());},_0x227627[_0x2223('0x12')]=function(_0x4d0923){if('object'!=typeof _0x4d0923||null===_0x4d0923)return _0x2223('0x7d');if(null!=_0x4d0923[_0x2223('0x49')]&&_0x4d0923[_0x2223('0xa')](_0x2223('0x49'))){let _0xf446b=v[_0x2223('0x2d')][_0x2223('0x12')](_0x4d0923[_0x2223('0x49')]);if(_0xf446b)return _0x2223('0x7b')+_0xf446b;}if(null!=_0x4d0923[_0x2223('0x3d')]&&_0x4d0923['hasOwnProperty'](_0x2223('0x3d'))&&!k['isInteger'](_0x4d0923[_0x2223('0x3d')]))return _0x2223('0x47');if(null!=_0x4d0923[_0x2223('0x8b')]&&_0x4d0923[_0x2223('0xa')](_0x2223('0x8b'))){let _0x4505a=v[_0x2223('0x2d')][_0x2223('0x12')](_0x4d0923[_0x2223('0x8b')]);if(_0x4505a)return _0x2223('0x8d')+_0x4505a;}return null!=_0x4d0923[_0x2223('0x24')]&&_0x4d0923[_0x2223('0xa')](_0x2223('0x24'))&&_0x2223('0x60')!=typeof _0x4d0923[_0x2223('0x24')]?_0x2223('0x94'):null;},_0x227627[_0x2223('0x1d')]=function(_0x4c46eb){if(_0x4c46eb instanceof v[_0x2223('0x1b')])return _0x4c46eb;let _0x19c2d9=new v[(_0x2223('0x1b'))]();if(null!=_0x4c46eb[_0x2223('0x49')]){if('object'!=typeof _0x4c46eb[_0x2223('0x49')])throw TypeError(_0x2223('0x9'));_0x19c2d9[_0x2223('0x49')]=v[_0x2223('0x2d')][_0x2223('0x1d')](_0x4c46eb[_0x2223('0x49')]);}if(null!=_0x4c46eb['howMany']&&(_0x19c2d9[_0x2223('0x3d')]=_0x4c46eb[_0x2223('0x3d')]>>>0x0),null!=_0x4c46eb[_0x2223('0x8b')]){if(_0x2223('0xc')!=typeof _0x4c46eb[_0x2223('0x8b')])throw TypeError(_0x2223('0x85'));_0x19c2d9['targetPosition']=v[_0x2223('0x2d')]['fromObject'](_0x4c46eb[_0x2223('0x8b')]);}return null!=_0x4c46eb['wasUndone']&&(_0x19c2d9['wasUndone']=Boolean(_0x4c46eb[_0x2223('0x24')])),_0x19c2d9;},_0x227627['toObject']=function(_0x52421a,_0x1a9b62){_0x1a9b62||(_0x1a9b62={});let _0x24e97b={};return _0x1a9b62['defaults']&&(_0x24e97b['sourcePosition']=null,_0x24e97b[_0x2223('0x3d')]=0x0,_0x24e97b[_0x2223('0x8b')]=null,_0x24e97b[_0x2223('0x24')]=!0x1),null!=_0x52421a[_0x2223('0x49')]&&_0x52421a[_0x2223('0xa')](_0x2223('0x49'))&&(_0x24e97b[_0x2223('0x49')]=v[_0x2223('0x2d')]['toObject'](_0x52421a[_0x2223('0x49')],_0x1a9b62)),null!=_0x52421a[_0x2223('0x3d')]&&_0x52421a[_0x2223('0xa')]('howMany')&&(_0x24e97b['howMany']=_0x52421a[_0x2223('0x3d')]),null!=_0x52421a[_0x2223('0x8b')]&&_0x52421a['hasOwnProperty']('targetPosition')&&(_0x24e97b[_0x2223('0x8b')]=v[_0x2223('0x2d')]['toObject'](_0x52421a[_0x2223('0x8b')],_0x1a9b62)),null!=_0x52421a[_0x2223('0x24')]&&_0x52421a['hasOwnProperty']('wasUndone')&&(_0x24e97b['wasUndone']=_0x52421a[_0x2223('0x24')]),_0x24e97b;},_0x227627[_0x2223('0x1e')]['toJSON']=function(){return this[_0x2223('0x89')]['toObject'](this,_0x2c817d[_0x2223('0x8a')][_0x2223('0x3c')]);},_0x227627[_0x2223('0x38')]=function(_0xa3b92e){return void 0x0===_0xa3b92e&&(_0xa3b92e=_0x2223('0x52')),_0xa3b92e+_0x2223('0x8f');},_0x227627;})();export const RenameOperation=v[_0x2223('0x63')]=(()=>{function _0x2a6d65(_0x873f82){if(_0x873f82)for(let _0x367489=Object[_0x2223('0x18')](_0x873f82),_0x3af174=0x0;_0x3af174<_0x367489[_0x2223('0x40')];++_0x3af174)null!=_0x873f82[_0x367489[_0x3af174]]&&(this[_0x367489[_0x3af174]]=_0x873f82[_0x367489[_0x3af174]]);}return _0x2a6d65[_0x2223('0x1e')][_0x2223('0x6')]=null,_0x2a6d65[_0x2223('0x1e')][_0x2223('0x0')]='',_0x2a6d65[_0x2223('0x1e')][_0x2223('0x84')]='',_0x2a6d65[_0x2223('0x1e')][_0x2223('0x24')]=!0x1,_0x2a6d65[_0x2223('0x19')]=function(_0x4b1e3f){return new _0x2a6d65(_0x4b1e3f);},_0x2a6d65[_0x2223('0x87')]=function(_0x296cdb,_0x53213f){return _0x53213f||(_0x53213f=y[_0x2223('0x19')]()),null!=_0x296cdb[_0x2223('0x6')]&&Object['hasOwnProperty'][_0x2223('0x30')](_0x296cdb,_0x2223('0x6'))&&v[_0x2223('0x2d')][_0x2223('0x87')](_0x296cdb['position'],_0x53213f[_0x2223('0x2e')](0xa)[_0x2223('0x82')]())['ldelim'](),null!=_0x296cdb[_0x2223('0x0')]&&Object[_0x2223('0xa')][_0x2223('0x30')](_0x296cdb,_0x2223('0x0'))&&_0x53213f['uint32'](0x12)[_0x2223('0x5f')](_0x296cdb[_0x2223('0x0')]),null!=_0x296cdb[_0x2223('0x84')]&&Object[_0x2223('0xa')]['call'](_0x296cdb,'newName')&&_0x53213f[_0x2223('0x2e')](0x1a)['string'](_0x296cdb['newName']),null!=_0x296cdb[_0x2223('0x24')]&&Object[_0x2223('0xa')]['call'](_0x296cdb,_0x2223('0x24'))&&_0x53213f[_0x2223('0x2e')](0x20)[_0x2223('0x32')](_0x296cdb[_0x2223('0x24')]),_0x53213f;},_0x2a6d65[_0x2223('0x5')]=function(_0x72e7e4,_0xa3e265){return this[_0x2223('0x87')](_0x72e7e4,_0xa3e265)['ldelim']();},_0x2a6d65['decode']=function(_0x4803b4,_0x57bbca){_0x4803b4 instanceof j||(_0x4803b4=j[_0x2223('0x19')](_0x4803b4));let _0x5604e8=void 0x0===_0x57bbca?_0x4803b4['len']:_0x4803b4[_0x2223('0x7a')]+_0x57bbca,_0x5af885=new v[(_0x2223('0x63'))]();for(;_0x4803b4['pos']<_0x5604e8;){let _0x41b3a2=_0x4803b4[_0x2223('0x2e')]();switch(_0x41b3a2>>>0x3){case 0x1:_0x5af885['position']=v[_0x2223('0x2d')][_0x2223('0x2c')](_0x4803b4,_0x4803b4[_0x2223('0x2e')]());break;case 0x2:_0x5af885[_0x2223('0x0')]=_0x4803b4[_0x2223('0x5f')]();break;case 0x3:_0x5af885[_0x2223('0x84')]=_0x4803b4['string']();break;case 0x4:_0x5af885[_0x2223('0x24')]=_0x4803b4[_0x2223('0x32')]();break;default:_0x4803b4[_0x2223('0x35')](0x7&_0x41b3a2);}}return _0x5af885;},_0x2a6d65[_0x2223('0x31')]=function(_0x3ab5fd){return _0x3ab5fd instanceof j||(_0x3ab5fd=new j(_0x3ab5fd)),this[_0x2223('0x2c')](_0x3ab5fd,_0x3ab5fd[_0x2223('0x2e')]());},_0x2a6d65[_0x2223('0x12')]=function(_0x2864f3){if('object'!=typeof _0x2864f3||null===_0x2864f3)return _0x2223('0x7d');if(null!=_0x2864f3['position']&&_0x2864f3[_0x2223('0xa')](_0x2223('0x6'))){let _0x3a440b=v[_0x2223('0x2d')][_0x2223('0x12')](_0x2864f3[_0x2223('0x6')]);if(_0x3a440b)return _0x2223('0x45')+_0x3a440b;}return null!=_0x2864f3[_0x2223('0x0')]&&_0x2864f3[_0x2223('0xa')]('oldName')&&!k['isString'](_0x2864f3[_0x2223('0x0')])?'oldName:\x20string\x20expected':null!=_0x2864f3[_0x2223('0x84')]&&_0x2864f3[_0x2223('0xa')]('newName')&&!k[_0x2223('0x79')](_0x2864f3[_0x2223('0x84')])?_0x2223('0x75'):null!=_0x2864f3[_0x2223('0x24')]&&_0x2864f3['hasOwnProperty'](_0x2223('0x24'))&&_0x2223('0x60')!=typeof _0x2864f3[_0x2223('0x24')]?_0x2223('0x94'):null;},_0x2a6d65['fromObject']=function(_0x57c9fe){if(_0x57c9fe instanceof v['RenameOperation'])return _0x57c9fe;let _0x326a63=new v[(_0x2223('0x63'))]();if(null!=_0x57c9fe[_0x2223('0x6')]){if(_0x2223('0xc')!=typeof _0x57c9fe[_0x2223('0x6')])throw TypeError(_0x2223('0x48'));_0x326a63[_0x2223('0x6')]=v[_0x2223('0x2d')]['fromObject'](_0x57c9fe[_0x2223('0x6')]);}return null!=_0x57c9fe[_0x2223('0x0')]&&(_0x326a63['oldName']=String(_0x57c9fe[_0x2223('0x0')])),null!=_0x57c9fe['newName']&&(_0x326a63['newName']=String(_0x57c9fe['newName'])),null!=_0x57c9fe[_0x2223('0x24')]&&(_0x326a63[_0x2223('0x24')]=Boolean(_0x57c9fe[_0x2223('0x24')])),_0x326a63;},_0x2a6d65['toObject']=function(_0x3f150b,_0x1a805d){_0x1a805d||(_0x1a805d={});let _0x5c334a={};return _0x1a805d['defaults']&&(_0x5c334a[_0x2223('0x6')]=null,_0x5c334a[_0x2223('0x0')]='',_0x5c334a[_0x2223('0x84')]='',_0x5c334a[_0x2223('0x24')]=!0x1),null!=_0x3f150b[_0x2223('0x6')]&&_0x3f150b['hasOwnProperty']('position')&&(_0x5c334a['position']=v['Position'][_0x2223('0x2a')](_0x3f150b['position'],_0x1a805d)),null!=_0x3f150b['oldName']&&_0x3f150b['hasOwnProperty'](_0x2223('0x0'))&&(_0x5c334a[_0x2223('0x0')]=_0x3f150b['oldName']),null!=_0x3f150b['newName']&&_0x3f150b[_0x2223('0xa')](_0x2223('0x84'))&&(_0x5c334a[_0x2223('0x84')]=_0x3f150b[_0x2223('0x84')]),null!=_0x3f150b[_0x2223('0x24')]&&_0x3f150b[_0x2223('0xa')]('wasUndone')&&(_0x5c334a['wasUndone']=_0x3f150b['wasUndone']),_0x5c334a;},_0x2a6d65[_0x2223('0x1e')][_0x2223('0x14')]=function(){return this[_0x2223('0x89')][_0x2223('0x2a')](this,_0x2c817d[_0x2223('0x8a')][_0x2223('0x3c')]);},_0x2a6d65[_0x2223('0x38')]=function(_0x35d9cf){return void 0x0===_0x35d9cf&&(_0x35d9cf=_0x2223('0x52')),_0x35d9cf+'/RenameOperation';},_0x2a6d65;})();export const RootAttributeOperation=v[_0x2223('0x22')]=(()=>{function _0x5aecb6(_0x55b902){if(_0x55b902)for(let _0x4ceef4=Object[_0x2223('0x18')](_0x55b902),_0x57eaec=0x0;_0x57eaec<_0x4ceef4[_0x2223('0x40')];++_0x57eaec)null!=_0x55b902[_0x4ceef4[_0x57eaec]]&&(this[_0x4ceef4[_0x57eaec]]=_0x55b902[_0x4ceef4[_0x57eaec]]);}return _0x5aecb6[_0x2223('0x1e')]['root']='',_0x5aecb6[_0x2223('0x1e')][_0x2223('0x2')]='',_0x5aecb6[_0x2223('0x1e')]['oldValueBoolean']=!0x1,_0x5aecb6[_0x2223('0x1e')][_0x2223('0x7c')]='',_0x5aecb6[_0x2223('0x1e')]['newValueBoolean']=!0x1,_0x5aecb6[_0x2223('0x1e')][_0x2223('0x50')]='',_0x5aecb6[_0x2223('0x1e')][_0x2223('0x24')]=!0x1,_0x5aecb6[_0x2223('0x19')]=function(_0x5d9449){return new _0x5aecb6(_0x5d9449);},_0x5aecb6[_0x2223('0x87')]=function(_0x32d93d,_0x3349cc){return _0x3349cc||(_0x3349cc=y[_0x2223('0x19')]()),null!=_0x32d93d[_0x2223('0x88')]&&Object['hasOwnProperty'][_0x2223('0x30')](_0x32d93d,'root')&&_0x3349cc[_0x2223('0x2e')](0xa)[_0x2223('0x5f')](_0x32d93d[_0x2223('0x88')]),null!=_0x32d93d[_0x2223('0x2')]&&Object[_0x2223('0xa')][_0x2223('0x30')](_0x32d93d,_0x2223('0x2'))&&_0x3349cc[_0x2223('0x2e')](0x12)['string'](_0x32d93d[_0x2223('0x2')]),null!=_0x32d93d[_0x2223('0x11')]&&Object[_0x2223('0xa')][_0x2223('0x30')](_0x32d93d,_0x2223('0x11'))&&_0x3349cc[_0x2223('0x2e')](0x18)['bool'](_0x32d93d[_0x2223('0x11')]),null!=_0x32d93d['oldValueJson']&&Object[_0x2223('0xa')][_0x2223('0x30')](_0x32d93d,_0x2223('0x7c'))&&_0x3349cc['uint32'](0x22)[_0x2223('0x5f')](_0x32d93d[_0x2223('0x7c')]),null!=_0x32d93d[_0x2223('0x7')]&&Object[_0x2223('0xa')][_0x2223('0x30')](_0x32d93d,_0x2223('0x7'))&&_0x3349cc[_0x2223('0x2e')](0x28)[_0x2223('0x32')](_0x32d93d[_0x2223('0x7')]),null!=_0x32d93d['newValueJson']&&Object['hasOwnProperty'][_0x2223('0x30')](_0x32d93d,_0x2223('0x50'))&&_0x3349cc[_0x2223('0x2e')](0x32)[_0x2223('0x5f')](_0x32d93d[_0x2223('0x50')]),null!=_0x32d93d[_0x2223('0x24')]&&Object[_0x2223('0xa')][_0x2223('0x30')](_0x32d93d,_0x2223('0x24'))&&_0x3349cc[_0x2223('0x2e')](0x38)[_0x2223('0x32')](_0x32d93d[_0x2223('0x24')]),_0x3349cc;},_0x5aecb6[_0x2223('0x5')]=function(_0x3f97e1,_0x238d62){return this[_0x2223('0x87')](_0x3f97e1,_0x238d62)[_0x2223('0x27')]();},_0x5aecb6[_0x2223('0x2c')]=function(_0x12b088,_0x427bd1){_0x12b088 instanceof j||(_0x12b088=j[_0x2223('0x19')](_0x12b088));let _0x1ca73e=void 0x0===_0x427bd1?_0x12b088[_0x2223('0x1')]:_0x12b088[_0x2223('0x7a')]+_0x427bd1,_0xdc78d=new v[(_0x2223('0x22'))]();for(;_0x12b088[_0x2223('0x7a')]<_0x1ca73e;){let _0x12a62e=_0x12b088[_0x2223('0x2e')]();switch(_0x12a62e>>>0x3){case 0x1:_0xdc78d[_0x2223('0x88')]=_0x12b088['string']();break;case 0x2:_0xdc78d[_0x2223('0x2')]=_0x12b088[_0x2223('0x5f')]();break;case 0x3:_0xdc78d[_0x2223('0x11')]=_0x12b088['bool']();break;case 0x4:_0xdc78d[_0x2223('0x7c')]=_0x12b088[_0x2223('0x5f')]();break;case 0x5:_0xdc78d[_0x2223('0x7')]=_0x12b088[_0x2223('0x32')]();break;case 0x6:_0xdc78d[_0x2223('0x50')]=_0x12b088[_0x2223('0x5f')]();break;case 0x7:_0xdc78d[_0x2223('0x24')]=_0x12b088[_0x2223('0x32')]();break;default:_0x12b088[_0x2223('0x35')](0x7&_0x12a62e);}}return _0xdc78d;},_0x5aecb6['decodeDelimited']=function(_0x37599a){return _0x37599a instanceof j||(_0x37599a=new j(_0x37599a)),this['decode'](_0x37599a,_0x37599a[_0x2223('0x2e')]());},_0x5aecb6['verify']=function(_0x5ec615){return _0x2223('0xc')!=typeof _0x5ec615||null===_0x5ec615?_0x2223('0x7d'):null!=_0x5ec615[_0x2223('0x88')]&&_0x5ec615[_0x2223('0xa')]('root')&&!k['isString'](_0x5ec615['root'])?_0x2223('0x7f'):null!=_0x5ec615[_0x2223('0x2')]&&_0x5ec615[_0x2223('0xa')](_0x2223('0x2'))&&!k['isString'](_0x5ec615[_0x2223('0x2')])?_0x2223('0x39'):null!=_0x5ec615[_0x2223('0x11')]&&_0x5ec615['hasOwnProperty']('oldValueBoolean')&&_0x2223('0x60')!=typeof _0x5ec615[_0x2223('0x11')]?_0x2223('0x91'):null!=_0x5ec615[_0x2223('0x7c')]&&_0x5ec615[_0x2223('0xa')]('oldValueJson')&&!k['isString'](_0x5ec615[_0x2223('0x7c')])?_0x2223('0x92'):null!=_0x5ec615['newValueBoolean']&&_0x5ec615['hasOwnProperty']('newValueBoolean')&&_0x2223('0x60')!=typeof _0x5ec615[_0x2223('0x7')]?_0x2223('0x37'):null!=_0x5ec615[_0x2223('0x50')]&&_0x5ec615[_0x2223('0xa')]('newValueJson')&&!k[_0x2223('0x79')](_0x5ec615['newValueJson'])?_0x2223('0x6c'):null!=_0x5ec615['wasUndone']&&_0x5ec615[_0x2223('0xa')](_0x2223('0x24'))&&'boolean'!=typeof _0x5ec615[_0x2223('0x24')]?_0x2223('0x94'):null;},_0x5aecb6[_0x2223('0x1d')]=function(_0xae4ec9){if(_0xae4ec9 instanceof v[_0x2223('0x22')])return _0xae4ec9;let _0x21d609=new v[(_0x2223('0x22'))]();return null!=_0xae4ec9[_0x2223('0x88')]&&(_0x21d609[_0x2223('0x88')]=String(_0xae4ec9['root'])),null!=_0xae4ec9[_0x2223('0x2')]&&(_0x21d609[_0x2223('0x2')]=String(_0xae4ec9[_0x2223('0x2')])),null!=_0xae4ec9['oldValueBoolean']&&(_0x21d609['oldValueBoolean']=Boolean(_0xae4ec9[_0x2223('0x11')])),null!=_0xae4ec9[_0x2223('0x7c')]&&(_0x21d609[_0x2223('0x7c')]=String(_0xae4ec9[_0x2223('0x7c')])),null!=_0xae4ec9[_0x2223('0x7')]&&(_0x21d609[_0x2223('0x7')]=Boolean(_0xae4ec9[_0x2223('0x7')])),null!=_0xae4ec9['newValueJson']&&(_0x21d609[_0x2223('0x50')]=String(_0xae4ec9[_0x2223('0x50')])),null!=_0xae4ec9[_0x2223('0x24')]&&(_0x21d609['wasUndone']=Boolean(_0xae4ec9[_0x2223('0x24')])),_0x21d609;},_0x5aecb6[_0x2223('0x2a')]=function(_0x32136e,_0x1f7319){_0x1f7319||(_0x1f7319={});let _0xfea608={};return _0x1f7319[_0x2223('0x70')]&&(_0xfea608[_0x2223('0x88')]='',_0xfea608['key']='',_0xfea608[_0x2223('0x11')]=!0x1,_0xfea608[_0x2223('0x7c')]='',_0xfea608['newValueBoolean']=!0x1,_0xfea608['newValueJson']='',_0xfea608[_0x2223('0x24')]=!0x1),null!=_0x32136e[_0x2223('0x88')]&&_0x32136e[_0x2223('0xa')](_0x2223('0x88'))&&(_0xfea608[_0x2223('0x88')]=_0x32136e[_0x2223('0x88')]),null!=_0x32136e[_0x2223('0x2')]&&_0x32136e[_0x2223('0xa')](_0x2223('0x2'))&&(_0xfea608[_0x2223('0x2')]=_0x32136e[_0x2223('0x2')]),null!=_0x32136e[_0x2223('0x11')]&&_0x32136e[_0x2223('0xa')](_0x2223('0x11'))&&(_0xfea608[_0x2223('0x11')]=_0x32136e[_0x2223('0x11')]),null!=_0x32136e[_0x2223('0x7c')]&&_0x32136e[_0x2223('0xa')](_0x2223('0x7c'))&&(_0xfea608[_0x2223('0x7c')]=_0x32136e['oldValueJson']),null!=_0x32136e['newValueBoolean']&&_0x32136e['hasOwnProperty']('newValueBoolean')&&(_0xfea608[_0x2223('0x7')]=_0x32136e[_0x2223('0x7')]),null!=_0x32136e['newValueJson']&&_0x32136e['hasOwnProperty']('newValueJson')&&(_0xfea608['newValueJson']=_0x32136e[_0x2223('0x50')]),null!=_0x32136e[_0x2223('0x24')]&&_0x32136e['hasOwnProperty'](_0x2223('0x24'))&&(_0xfea608[_0x2223('0x24')]=_0x32136e[_0x2223('0x24')]),_0xfea608;},_0x5aecb6['prototype'][_0x2223('0x14')]=function(){return this[_0x2223('0x89')][_0x2223('0x2a')](this,_0x2c817d[_0x2223('0x8a')][_0x2223('0x3c')]);},_0x5aecb6['getTypeUrl']=function(_0x4cd119){return void 0x0===_0x4cd119&&(_0x4cd119=_0x2223('0x52')),_0x4cd119+_0x2223('0x3');},_0x5aecb6;})();export const RootOperation=v[_0x2223('0x6d')]=(()=>{function _0x2968b9(_0x131fd5){if(_0x131fd5)for(let _0x24acde=Object['keys'](_0x131fd5),_0x7d03a0=0x0;_0x7d03a0<_0x24acde['length'];++_0x7d03a0)null!=_0x131fd5[_0x24acde[_0x7d03a0]]&&(this[_0x24acde[_0x7d03a0]]=_0x131fd5[_0x24acde[_0x7d03a0]]);}return _0x2968b9[_0x2223('0x1e')][_0x2223('0x90')]='',_0x2968b9[_0x2223('0x1e')]['elementName']='',_0x2968b9[_0x2223('0x1e')][_0x2223('0x20')]=!0x1,_0x2968b9[_0x2223('0x1e')][_0x2223('0x24')]=!0x1,_0x2968b9[_0x2223('0x19')]=function(_0x236b8c){return new _0x2968b9(_0x236b8c);},_0x2968b9[_0x2223('0x87')]=function(_0xea20a9,_0x3bf9ed){return _0x3bf9ed||(_0x3bf9ed=y[_0x2223('0x19')]()),null!=_0xea20a9[_0x2223('0x90')]&&Object[_0x2223('0xa')][_0x2223('0x30')](_0xea20a9,_0x2223('0x90'))&&_0x3bf9ed[_0x2223('0x2e')](0xa)[_0x2223('0x5f')](_0xea20a9[_0x2223('0x90')]),null!=_0xea20a9[_0x2223('0x6f')]&&Object[_0x2223('0xa')][_0x2223('0x30')](_0xea20a9,_0x2223('0x6f'))&&_0x3bf9ed[_0x2223('0x2e')](0x12)[_0x2223('0x5f')](_0xea20a9[_0x2223('0x6f')]),null!=_0xea20a9[_0x2223('0x20')]&&Object['hasOwnProperty'][_0x2223('0x30')](_0xea20a9,_0x2223('0x20'))&&_0x3bf9ed[_0x2223('0x2e')](0x18)[_0x2223('0x32')](_0xea20a9[_0x2223('0x20')]),null!=_0xea20a9['wasUndone']&&Object[_0x2223('0xa')][_0x2223('0x30')](_0xea20a9,_0x2223('0x24'))&&_0x3bf9ed[_0x2223('0x2e')](0x20)[_0x2223('0x32')](_0xea20a9['wasUndone']),_0x3bf9ed;},_0x2968b9[_0x2223('0x5')]=function(_0x4555ef,_0x2a9895){return this[_0x2223('0x87')](_0x4555ef,_0x2a9895)[_0x2223('0x27')]();},_0x2968b9[_0x2223('0x2c')]=function(_0x1d736b,_0x24b5a9){_0x1d736b instanceof j||(_0x1d736b=j[_0x2223('0x19')](_0x1d736b));let _0x1c9eea=void 0x0===_0x24b5a9?_0x1d736b[_0x2223('0x1')]:_0x1d736b[_0x2223('0x7a')]+_0x24b5a9,_0x4d9bad=new v[(_0x2223('0x6d'))]();for(;_0x1d736b[_0x2223('0x7a')]<_0x1c9eea;){let _0xe0a41c=_0x1d736b[_0x2223('0x2e')]();switch(_0xe0a41c>>>0x3){case 0x1:_0x4d9bad['rootName']=_0x1d736b[_0x2223('0x5f')]();break;case 0x2:_0x4d9bad['elementName']=_0x1d736b['string']();break;case 0x3:_0x4d9bad[_0x2223('0x20')]=_0x1d736b[_0x2223('0x32')]();break;case 0x4:_0x4d9bad[_0x2223('0x24')]=_0x1d736b[_0x2223('0x32')]();break;default:_0x1d736b[_0x2223('0x35')](0x7&_0xe0a41c);}}return _0x4d9bad;},_0x2968b9['decodeDelimited']=function(_0x3dc46b){return _0x3dc46b instanceof j||(_0x3dc46b=new j(_0x3dc46b)),this[_0x2223('0x2c')](_0x3dc46b,_0x3dc46b[_0x2223('0x2e')]());},_0x2968b9[_0x2223('0x12')]=function(_0x4ab037){return _0x2223('0xc')!=typeof _0x4ab037||null===_0x4ab037?_0x2223('0x7d'):null!=_0x4ab037[_0x2223('0x90')]&&_0x4ab037[_0x2223('0xa')]('rootName')&&!k[_0x2223('0x79')](_0x4ab037['rootName'])?_0x2223('0xe'):null!=_0x4ab037[_0x2223('0x6f')]&&_0x4ab037[_0x2223('0xa')]('elementName')&&!k[_0x2223('0x79')](_0x4ab037[_0x2223('0x6f')])?'elementName:\x20string\x20expected':null!=_0x4ab037[_0x2223('0x20')]&&_0x4ab037['hasOwnProperty']('isAdd')&&'boolean'!=typeof _0x4ab037[_0x2223('0x20')]?_0x2223('0x55'):null!=_0x4ab037[_0x2223('0x24')]&&_0x4ab037[_0x2223('0xa')]('wasUndone')&&_0x2223('0x60')!=typeof _0x4ab037[_0x2223('0x24')]?'wasUndone:\x20boolean\x20expected':null;},_0x2968b9[_0x2223('0x1d')]=function(_0x475813){if(_0x475813 instanceof v[_0x2223('0x6d')])return _0x475813;let _0x5e25f8=new v[(_0x2223('0x6d'))]();return null!=_0x475813[_0x2223('0x90')]&&(_0x5e25f8[_0x2223('0x90')]=String(_0x475813[_0x2223('0x90')])),null!=_0x475813[_0x2223('0x6f')]&&(_0x5e25f8[_0x2223('0x6f')]=String(_0x475813[_0x2223('0x6f')])),null!=_0x475813[_0x2223('0x20')]&&(_0x5e25f8[_0x2223('0x20')]=Boolean(_0x475813[_0x2223('0x20')])),null!=_0x475813[_0x2223('0x24')]&&(_0x5e25f8[_0x2223('0x24')]=Boolean(_0x475813[_0x2223('0x24')])),_0x5e25f8;},_0x2968b9['toObject']=function(_0x1136d4,_0x5f451f){_0x5f451f||(_0x5f451f={});let _0x441f26={};return _0x5f451f[_0x2223('0x70')]&&(_0x441f26['rootName']='',_0x441f26[_0x2223('0x6f')]='',_0x441f26[_0x2223('0x20')]=!0x1,_0x441f26[_0x2223('0x24')]=!0x1),null!=_0x1136d4[_0x2223('0x90')]&&_0x1136d4[_0x2223('0xa')](_0x2223('0x90'))&&(_0x441f26[_0x2223('0x90')]=_0x1136d4['rootName']),null!=_0x1136d4['elementName']&&_0x1136d4[_0x2223('0xa')](_0x2223('0x6f'))&&(_0x441f26['elementName']=_0x1136d4['elementName']),null!=_0x1136d4['isAdd']&&_0x1136d4['hasOwnProperty'](_0x2223('0x20'))&&(_0x441f26[_0x2223('0x20')]=_0x1136d4[_0x2223('0x20')]),null!=_0x1136d4[_0x2223('0x24')]&&_0x1136d4[_0x2223('0xa')](_0x2223('0x24'))&&(_0x441f26[_0x2223('0x24')]=_0x1136d4[_0x2223('0x24')]),_0x441f26;},_0x2968b9['prototype'][_0x2223('0x14')]=function(){return this[_0x2223('0x89')][_0x2223('0x2a')](this,_0x2c817d['util'][_0x2223('0x3c')]);},_0x2968b9['getTypeUrl']=function(_0x1206b6){return void 0x0===_0x1206b6&&(_0x1206b6=_0x2223('0x52')),_0x1206b6+'/RootOperation';},_0x2968b9;})();export const SplitOperation=v['SplitOperation']=(()=>{function _0x3a5935(_0x4b60a2){if(_0x4b60a2)for(let _0x527edb=Object[_0x2223('0x18')](_0x4b60a2),_0x23aca5=0x0;_0x23aca5<_0x527edb[_0x2223('0x40')];++_0x23aca5)null!=_0x4b60a2[_0x527edb[_0x23aca5]]&&(this[_0x527edb[_0x23aca5]]=_0x4b60a2[_0x527edb[_0x23aca5]]);}return _0x3a5935[_0x2223('0x1e')][_0x2223('0x6b')]=null,_0x3a5935['prototype'][_0x2223('0x73')]=null,_0x3a5935[_0x2223('0x1e')]['howMany']=0x0,_0x3a5935[_0x2223('0x1e')][_0x2223('0x51')]=null,_0x3a5935[_0x2223('0x1e')][_0x2223('0x24')]=!0x1,_0x3a5935[_0x2223('0x19')]=function(_0x24a2b5){return new _0x3a5935(_0x24a2b5);},_0x3a5935[_0x2223('0x87')]=function(_0x360155,_0x20b776){return _0x20b776||(_0x20b776=y[_0x2223('0x19')]()),null!=_0x360155[_0x2223('0x6b')]&&Object[_0x2223('0xa')][_0x2223('0x30')](_0x360155,_0x2223('0x6b'))&&v[_0x2223('0x2d')][_0x2223('0x87')](_0x360155[_0x2223('0x6b')],_0x20b776[_0x2223('0x2e')](0xa)['fork']())['ldelim'](),null!=_0x360155[_0x2223('0x73')]&&Object[_0x2223('0xa')]['call'](_0x360155,'graveyardPosition')&&v[_0x2223('0x2d')]['encode'](_0x360155[_0x2223('0x73')],_0x20b776[_0x2223('0x2e')](0x12)[_0x2223('0x82')]())['ldelim'](),null!=_0x360155[_0x2223('0x3d')]&&Object[_0x2223('0xa')]['call'](_0x360155,_0x2223('0x3d'))&&_0x20b776['uint32'](0x18)[_0x2223('0x2e')](_0x360155[_0x2223('0x3d')]),null!=_0x360155[_0x2223('0x51')]&&Object[_0x2223('0xa')][_0x2223('0x30')](_0x360155,_0x2223('0x51'))&&v[_0x2223('0x2d')][_0x2223('0x87')](_0x360155[_0x2223('0x51')],_0x20b776[_0x2223('0x2e')](0x22)[_0x2223('0x82')]())['ldelim'](),null!=_0x360155[_0x2223('0x24')]&&Object['hasOwnProperty'][_0x2223('0x30')](_0x360155,_0x2223('0x24'))&&_0x20b776['uint32'](0x28)[_0x2223('0x32')](_0x360155[_0x2223('0x24')]),_0x20b776;},_0x3a5935[_0x2223('0x5')]=function(_0x3ae023,_0x1b0e3c){return this['encode'](_0x3ae023,_0x1b0e3c)[_0x2223('0x27')]();},_0x3a5935[_0x2223('0x2c')]=function(_0x19b88f,_0x505275){_0x19b88f instanceof j||(_0x19b88f=j['create'](_0x19b88f));let _0x1cd0b1=void 0x0===_0x505275?_0x19b88f['len']:_0x19b88f[_0x2223('0x7a')]+_0x505275,_0x33055e=new v[(_0x2223('0x57'))]();for(;_0x19b88f[_0x2223('0x7a')]<_0x1cd0b1;){let _0xa717f7=_0x19b88f[_0x2223('0x2e')]();switch(_0xa717f7>>>0x3){case 0x1:_0x33055e[_0x2223('0x6b')]=v[_0x2223('0x2d')][_0x2223('0x2c')](_0x19b88f,_0x19b88f[_0x2223('0x2e')]());break;case 0x2:_0x33055e[_0x2223('0x73')]=v[_0x2223('0x2d')][_0x2223('0x2c')](_0x19b88f,_0x19b88f[_0x2223('0x2e')]());break;case 0x3:_0x33055e[_0x2223('0x3d')]=_0x19b88f[_0x2223('0x2e')]();break;case 0x4:_0x33055e[_0x2223('0x51')]=v[_0x2223('0x2d')][_0x2223('0x2c')](_0x19b88f,_0x19b88f[_0x2223('0x2e')]());break;case 0x5:_0x33055e[_0x2223('0x24')]=_0x19b88f[_0x2223('0x32')]();break;default:_0x19b88f[_0x2223('0x35')](0x7&_0xa717f7);}}return _0x33055e;},_0x3a5935[_0x2223('0x31')]=function(_0x4a09e0){return _0x4a09e0 instanceof j||(_0x4a09e0=new j(_0x4a09e0)),this[_0x2223('0x2c')](_0x4a09e0,_0x4a09e0[_0x2223('0x2e')]());},_0x3a5935['verify']=function(_0x3b61aa){if(_0x2223('0xc')!=typeof _0x3b61aa||null===_0x3b61aa)return _0x2223('0x7d');if(null!=_0x3b61aa['splitPosition']&&_0x3b61aa[_0x2223('0xa')](_0x2223('0x6b'))){let _0x5750ca=v['Position'][_0x2223('0x12')](_0x3b61aa[_0x2223('0x6b')]);if(_0x5750ca)return _0x2223('0x26')+_0x5750ca;}if(null!=_0x3b61aa['graveyardPosition']&&_0x3b61aa['hasOwnProperty'](_0x2223('0x73'))){let _0x2ce76d=v[_0x2223('0x2d')][_0x2223('0x12')](_0x3b61aa['graveyardPosition']);if(_0x2ce76d)return _0x2223('0x41')+_0x2ce76d;}if(null!=_0x3b61aa[_0x2223('0x3d')]&&_0x3b61aa[_0x2223('0xa')](_0x2223('0x3d'))&&!k[_0x2223('0x6a')](_0x3b61aa[_0x2223('0x3d')]))return _0x2223('0x47');if(null!=_0x3b61aa[_0x2223('0x51')]&&_0x3b61aa[_0x2223('0xa')](_0x2223('0x51'))){let _0x283497=v['Position']['verify'](_0x3b61aa[_0x2223('0x51')]);if(_0x283497)return _0x2223('0x21')+_0x283497;}return null!=_0x3b61aa[_0x2223('0x24')]&&_0x3b61aa[_0x2223('0xa')](_0x2223('0x24'))&&'boolean'!=typeof _0x3b61aa[_0x2223('0x24')]?_0x2223('0x94'):null;},_0x3a5935[_0x2223('0x1d')]=function(_0xa0b379){if(_0xa0b379 instanceof v[_0x2223('0x57')])return _0xa0b379;let _0x352d59=new v[(_0x2223('0x57'))]();if(null!=_0xa0b379[_0x2223('0x6b')]){if(_0x2223('0xc')!=typeof _0xa0b379[_0x2223('0x6b')])throw TypeError(_0x2223('0x66'));_0x352d59[_0x2223('0x6b')]=v[_0x2223('0x2d')][_0x2223('0x1d')](_0xa0b379[_0x2223('0x6b')]);}if(null!=_0xa0b379[_0x2223('0x73')]){if('object'!=typeof _0xa0b379[_0x2223('0x73')])throw TypeError(_0x2223('0x4'));_0x352d59[_0x2223('0x73')]=v[_0x2223('0x2d')][_0x2223('0x1d')](_0xa0b379['graveyardPosition']);}if(null!=_0xa0b379[_0x2223('0x3d')]&&(_0x352d59[_0x2223('0x3d')]=_0xa0b379[_0x2223('0x3d')]>>>0x0),null!=_0xa0b379[_0x2223('0x51')]){if(_0x2223('0xc')!=typeof _0xa0b379[_0x2223('0x51')])throw TypeError(_0x2223('0x43'));_0x352d59[_0x2223('0x51')]=v[_0x2223('0x2d')][_0x2223('0x1d')](_0xa0b379['insertionPosition']);}return null!=_0xa0b379[_0x2223('0x24')]&&(_0x352d59[_0x2223('0x24')]=Boolean(_0xa0b379[_0x2223('0x24')])),_0x352d59;},_0x3a5935[_0x2223('0x2a')]=function(_0x1d7cac,_0x5d5a99){_0x5d5a99||(_0x5d5a99={});let _0xf1cd0c={};return _0x5d5a99['defaults']&&(_0xf1cd0c[_0x2223('0x6b')]=null,_0xf1cd0c[_0x2223('0x73')]=null,_0xf1cd0c[_0x2223('0x3d')]=0x0,_0xf1cd0c[_0x2223('0x51')]=null,_0xf1cd0c[_0x2223('0x24')]=!0x1),null!=_0x1d7cac[_0x2223('0x6b')]&&_0x1d7cac[_0x2223('0xa')](_0x2223('0x6b'))&&(_0xf1cd0c[_0x2223('0x6b')]=v[_0x2223('0x2d')][_0x2223('0x2a')](_0x1d7cac[_0x2223('0x6b')],_0x5d5a99)),null!=_0x1d7cac[_0x2223('0x73')]&&_0x1d7cac[_0x2223('0xa')](_0x2223('0x73'))&&(_0xf1cd0c['graveyardPosition']=v[_0x2223('0x2d')][_0x2223('0x2a')](_0x1d7cac['graveyardPosition'],_0x5d5a99)),null!=_0x1d7cac['howMany']&&_0x1d7cac[_0x2223('0xa')](_0x2223('0x3d'))&&(_0xf1cd0c[_0x2223('0x3d')]=_0x1d7cac[_0x2223('0x3d')]),null!=_0x1d7cac[_0x2223('0x51')]&&_0x1d7cac[_0x2223('0xa')](_0x2223('0x51'))&&(_0xf1cd0c[_0x2223('0x51')]=v[_0x2223('0x2d')][_0x2223('0x2a')](_0x1d7cac[_0x2223('0x51')],_0x5d5a99)),null!=_0x1d7cac['wasUndone']&&_0x1d7cac[_0x2223('0xa')](_0x2223('0x24'))&&(_0xf1cd0c[_0x2223('0x24')]=_0x1d7cac[_0x2223('0x24')]),_0xf1cd0c;},_0x3a5935['prototype'][_0x2223('0x14')]=function(){return this[_0x2223('0x89')][_0x2223('0x2a')](this,_0x2c817d['util'][_0x2223('0x3c')]);},_0x3a5935[_0x2223('0x38')]=function(_0x2c637a){return void 0x0===_0x2c637a&&(_0x2c637a='type.googleapis.com'),_0x2c637a+'/SplitOperation';},_0x3a5935;})();export const Position=v[_0x2223('0x2d')]=(()=>{function _0x250096(_0x1b8644){if(this[_0x2223('0x5a')]=[],_0x1b8644)for(let _0x4176d7=Object['keys'](_0x1b8644),_0x53ddcb=0x0;_0x53ddcb<_0x4176d7[_0x2223('0x40')];++_0x53ddcb)null!=_0x1b8644[_0x4176d7[_0x53ddcb]]&&(this[_0x4176d7[_0x53ddcb]]=_0x1b8644[_0x4176d7[_0x53ddcb]]);}return _0x250096[_0x2223('0x1e')]['root']='',_0x250096['prototype']['rootMain']=!0x1,_0x250096['prototype']['rootGraveyard']=!0x1,_0x250096['prototype']['path']=k[_0x2223('0x28')],_0x250096[_0x2223('0x1e')][_0x2223('0x34')]='',_0x250096[_0x2223('0x19')]=function(_0x34f9f9){return new _0x250096(_0x34f9f9);},_0x250096[_0x2223('0x87')]=function(_0x3e5038,_0x1d5ac6){if(_0x1d5ac6||(_0x1d5ac6=y[_0x2223('0x19')]()),null!=_0x3e5038['root']&&Object[_0x2223('0xa')]['call'](_0x3e5038,_0x2223('0x88'))&&_0x1d5ac6[_0x2223('0x2e')](0xa)['string'](_0x3e5038[_0x2223('0x88')]),null!=_0x3e5038[_0x2223('0x83')]&&Object[_0x2223('0xa')]['call'](_0x3e5038,_0x2223('0x83'))&&_0x1d5ac6[_0x2223('0x2e')](0x10)['bool'](_0x3e5038[_0x2223('0x83')]),null!=_0x3e5038[_0x2223('0x29')]&&Object[_0x2223('0xa')][_0x2223('0x30')](_0x3e5038,_0x2223('0x29'))&&_0x1d5ac6['uint32'](0x18)[_0x2223('0x32')](_0x3e5038[_0x2223('0x29')]),null!=_0x3e5038['path']&&_0x3e5038[_0x2223('0x5a')]['length']){_0x1d5ac6[_0x2223('0x2e')](0x22)['fork']();for(let _0x8b3ad3=0x0;_0x8b3ad3<_0x3e5038['path'][_0x2223('0x40')];++_0x8b3ad3)_0x1d5ac6[_0x2223('0x2e')](_0x3e5038[_0x2223('0x5a')][_0x8b3ad3]);_0x1d5ac6[_0x2223('0x27')]();}return null!=_0x3e5038['stickiness']&&Object['hasOwnProperty']['call'](_0x3e5038,'stickiness')&&_0x1d5ac6['uint32'](0x2a)[_0x2223('0x5f')](_0x3e5038[_0x2223('0x34')]),_0x1d5ac6;},_0x250096[_0x2223('0x5')]=function(_0x4467c5,_0x13cbdd){return this[_0x2223('0x87')](_0x4467c5,_0x13cbdd)[_0x2223('0x27')]();},_0x250096['decode']=function(_0x5c7975,_0x1de5e9){_0x5c7975 instanceof j||(_0x5c7975=j['create'](_0x5c7975));let _0x1ecef0=void 0x0===_0x1de5e9?_0x5c7975[_0x2223('0x1')]:_0x5c7975['pos']+_0x1de5e9,_0x5a125a=new v[(_0x2223('0x2d'))]();for(;_0x5c7975[_0x2223('0x7a')]<_0x1ecef0;){let _0x255abc=_0x5c7975[_0x2223('0x2e')]();switch(_0x255abc>>>0x3){case 0x1:_0x5a125a['root']=_0x5c7975[_0x2223('0x5f')]();break;case 0x2:_0x5a125a[_0x2223('0x83')]=_0x5c7975[_0x2223('0x32')]();break;case 0x3:_0x5a125a[_0x2223('0x29')]=_0x5c7975[_0x2223('0x32')]();break;case 0x4:if(_0x5a125a[_0x2223('0x5a')]&&_0x5a125a['path'][_0x2223('0x40')]||(_0x5a125a[_0x2223('0x5a')]=[]),0x2==(0x7&_0x255abc)){let _0xae0cfa=_0x5c7975['uint32']()+_0x5c7975[_0x2223('0x7a')];for(;_0x5c7975[_0x2223('0x7a')]<_0xae0cfa;)_0x5a125a[_0x2223('0x5a')]['push'](_0x5c7975[_0x2223('0x2e')]());}else _0x5a125a['path'][_0x2223('0x3a')](_0x5c7975[_0x2223('0x2e')]());break;case 0x5:_0x5a125a[_0x2223('0x34')]=_0x5c7975[_0x2223('0x5f')]();break;default:_0x5c7975[_0x2223('0x35')](0x7&_0x255abc);}}return _0x5a125a;},_0x250096[_0x2223('0x31')]=function(_0x399dca){return _0x399dca instanceof j||(_0x399dca=new j(_0x399dca)),this['decode'](_0x399dca,_0x399dca[_0x2223('0x2e')]());},_0x250096[_0x2223('0x12')]=function(_0x37a7ce){if(_0x2223('0xc')!=typeof _0x37a7ce||null===_0x37a7ce)return'object\x20expected';if(null!=_0x37a7ce['root']&&_0x37a7ce['hasOwnProperty'](_0x2223('0x88'))&&!k[_0x2223('0x79')](_0x37a7ce[_0x2223('0x88')]))return _0x2223('0x7f');if(null!=_0x37a7ce[_0x2223('0x83')]&&_0x37a7ce[_0x2223('0xa')](_0x2223('0x83'))&&'boolean'!=typeof _0x37a7ce[_0x2223('0x83')])return _0x2223('0xf');if(null!=_0x37a7ce[_0x2223('0x29')]&&_0x37a7ce[_0x2223('0xa')](_0x2223('0x29'))&&_0x2223('0x60')!=typeof _0x37a7ce[_0x2223('0x29')])return _0x2223('0x61');if(null!=_0x37a7ce[_0x2223('0x5a')]&&_0x37a7ce[_0x2223('0xa')](_0x2223('0x5a'))){if(!Array[_0x2223('0x72')](_0x37a7ce[_0x2223('0x5a')]))return _0x2223('0x93');for(let _0x2d772b=0x0;_0x2d772b<_0x37a7ce[_0x2223('0x5a')][_0x2223('0x40')];++_0x2d772b)if(!k[_0x2223('0x6a')](_0x37a7ce['path'][_0x2d772b]))return _0x2223('0x65');}return null!=_0x37a7ce['stickiness']&&_0x37a7ce[_0x2223('0xa')](_0x2223('0x34'))&&!k['isString'](_0x37a7ce[_0x2223('0x34')])?_0x2223('0x69'):null;},_0x250096['fromObject']=function(_0x834093){if(_0x834093 instanceof v[_0x2223('0x2d')])return _0x834093;let _0x24c590=new v[(_0x2223('0x2d'))]();if(null!=_0x834093[_0x2223('0x88')]&&(_0x24c590[_0x2223('0x88')]=String(_0x834093[_0x2223('0x88')])),null!=_0x834093[_0x2223('0x83')]&&(_0x24c590[_0x2223('0x83')]=Boolean(_0x834093['rootMain'])),null!=_0x834093[_0x2223('0x29')]&&(_0x24c590['rootGraveyard']=Boolean(_0x834093[_0x2223('0x29')])),_0x834093['path']){if(!Array[_0x2223('0x72')](_0x834093[_0x2223('0x5a')]))throw TypeError('.Position.path:\x20array\x20expected');_0x24c590['path']=[];for(let _0xcfe853=0x0;_0xcfe853<_0x834093[_0x2223('0x5a')][_0x2223('0x40')];++_0xcfe853)_0x24c590[_0x2223('0x5a')][_0xcfe853]=_0x834093[_0x2223('0x5a')][_0xcfe853]>>>0x0;}return null!=_0x834093['stickiness']&&(_0x24c590['stickiness']=String(_0x834093[_0x2223('0x34')])),_0x24c590;},_0x250096[_0x2223('0x2a')]=function(_0x1b19db,_0x433ab8){_0x433ab8||(_0x433ab8={});let _0x3eea1a={};if((_0x433ab8['arrays']||_0x433ab8['defaults'])&&(_0x3eea1a[_0x2223('0x5a')]=[]),_0x433ab8['defaults']&&(_0x3eea1a[_0x2223('0x88')]='',_0x3eea1a[_0x2223('0x83')]=!0x1,_0x3eea1a[_0x2223('0x29')]=!0x1,_0x3eea1a['stickiness']=''),null!=_0x1b19db[_0x2223('0x88')]&&_0x1b19db['hasOwnProperty'](_0x2223('0x88'))&&(_0x3eea1a[_0x2223('0x88')]=_0x1b19db['root']),null!=_0x1b19db['rootMain']&&_0x1b19db[_0x2223('0xa')](_0x2223('0x83'))&&(_0x3eea1a[_0x2223('0x83')]=_0x1b19db['rootMain']),null!=_0x1b19db[_0x2223('0x29')]&&_0x1b19db[_0x2223('0xa')](_0x2223('0x29'))&&(_0x3eea1a[_0x2223('0x29')]=_0x1b19db[_0x2223('0x29')]),_0x1b19db[_0x2223('0x5a')]&&_0x1b19db['path'][_0x2223('0x40')]){_0x3eea1a[_0x2223('0x5a')]=[];for(let _0x17b5b3=0x0;_0x17b5b3<_0x1b19db['path'][_0x2223('0x40')];++_0x17b5b3)_0x3eea1a['path'][_0x17b5b3]=_0x1b19db['path'][_0x17b5b3];}return null!=_0x1b19db[_0x2223('0x34')]&&_0x1b19db[_0x2223('0xa')](_0x2223('0x34'))&&(_0x3eea1a[_0x2223('0x34')]=_0x1b19db[_0x2223('0x34')]),_0x3eea1a;},_0x250096[_0x2223('0x1e')][_0x2223('0x14')]=function(){return this[_0x2223('0x89')][_0x2223('0x2a')](this,_0x2c817d[_0x2223('0x8a')][_0x2223('0x3c')]);},_0x250096[_0x2223('0x38')]=function(_0x4f7a55){return void 0x0===_0x4f7a55&&(_0x4f7a55=_0x2223('0x52')),_0x4f7a55+_0x2223('0x23');},_0x250096;})();export const Range=v['Range']=(()=>{function _0x30af9d(_0x5d8675){if(_0x5d8675)for(let _0x351313=Object[_0x2223('0x18')](_0x5d8675),_0x4f3e23=0x0;_0x4f3e23<_0x351313[_0x2223('0x40')];++_0x4f3e23)null!=_0x5d8675[_0x351313[_0x4f3e23]]&&(this[_0x351313[_0x4f3e23]]=_0x5d8675[_0x351313[_0x4f3e23]]);}return _0x30af9d[_0x2223('0x1e')][_0x2223('0x6e')]=null,_0x30af9d[_0x2223('0x1e')][_0x2223('0x3e')]=null,_0x30af9d[_0x2223('0x19')]=function(_0x4cd611){return new _0x30af9d(_0x4cd611);},_0x30af9d[_0x2223('0x87')]=function(_0x7694d3,_0x33f0d5){return _0x33f0d5||(_0x33f0d5=y[_0x2223('0x19')]()),null!=_0x7694d3[_0x2223('0x6e')]&&Object['hasOwnProperty'][_0x2223('0x30')](_0x7694d3,_0x2223('0x6e'))&&v[_0x2223('0x2d')][_0x2223('0x87')](_0x7694d3[_0x2223('0x6e')],_0x33f0d5[_0x2223('0x2e')](0xa)[_0x2223('0x82')]())['ldelim'](),null!=_0x7694d3[_0x2223('0x3e')]&&Object[_0x2223('0xa')][_0x2223('0x30')](_0x7694d3,'end')&&v['Position']['encode'](_0x7694d3[_0x2223('0x3e')],_0x33f0d5['uint32'](0x12)[_0x2223('0x82')]())[_0x2223('0x27')](),_0x33f0d5;},_0x30af9d[_0x2223('0x5')]=function(_0x4b4c1d,_0x1d0da9){return this[_0x2223('0x87')](_0x4b4c1d,_0x1d0da9)[_0x2223('0x27')]();},_0x30af9d[_0x2223('0x2c')]=function(_0x20ae8f,_0x5a57b9){_0x20ae8f instanceof j||(_0x20ae8f=j[_0x2223('0x19')](_0x20ae8f));let _0x45cf11=void 0x0===_0x5a57b9?_0x20ae8f[_0x2223('0x1')]:_0x20ae8f[_0x2223('0x7a')]+_0x5a57b9,_0x1adbe2=new v['Range']();for(;_0x20ae8f[_0x2223('0x7a')]<_0x45cf11;){let _0x13e33a=_0x20ae8f[_0x2223('0x2e')]();switch(_0x13e33a>>>0x3){case 0x1:_0x1adbe2[_0x2223('0x6e')]=v[_0x2223('0x2d')][_0x2223('0x2c')](_0x20ae8f,_0x20ae8f[_0x2223('0x2e')]());break;case 0x2:_0x1adbe2[_0x2223('0x3e')]=v[_0x2223('0x2d')][_0x2223('0x2c')](_0x20ae8f,_0x20ae8f[_0x2223('0x2e')]());break;default:_0x20ae8f[_0x2223('0x35')](0x7&_0x13e33a);}}return _0x1adbe2;},_0x30af9d[_0x2223('0x31')]=function(_0x206c8c){return _0x206c8c instanceof j||(_0x206c8c=new j(_0x206c8c)),this[_0x2223('0x2c')](_0x206c8c,_0x206c8c[_0x2223('0x2e')]());},_0x30af9d[_0x2223('0x12')]=function(_0x4322b0){if('object'!=typeof _0x4322b0||null===_0x4322b0)return _0x2223('0x7d');if(null!=_0x4322b0[_0x2223('0x6e')]&&_0x4322b0['hasOwnProperty'](_0x2223('0x6e'))){let _0x59accc=v[_0x2223('0x2d')][_0x2223('0x12')](_0x4322b0['start']);if(_0x59accc)return'start.'+_0x59accc;}if(null!=_0x4322b0[_0x2223('0x3e')]&&_0x4322b0['hasOwnProperty']('end')){let _0x16a2eb=v[_0x2223('0x2d')][_0x2223('0x12')](_0x4322b0[_0x2223('0x3e')]);if(_0x16a2eb)return _0x2223('0x7e')+_0x16a2eb;}return null;},_0x30af9d[_0x2223('0x1d')]=function(_0x1cf4b6){if(_0x1cf4b6 instanceof v['Range'])return _0x1cf4b6;let _0x104541=new v[(_0x2223('0x80'))]();if(null!=_0x1cf4b6[_0x2223('0x6e')]){if(_0x2223('0xc')!=typeof _0x1cf4b6[_0x2223('0x6e')])throw TypeError(_0x2223('0x78'));_0x104541[_0x2223('0x6e')]=v[_0x2223('0x2d')][_0x2223('0x1d')](_0x1cf4b6['start']);}if(null!=_0x1cf4b6[_0x2223('0x3e')]){if('object'!=typeof _0x1cf4b6['end'])throw TypeError('.Range.end:\x20object\x20expected');_0x104541['end']=v[_0x2223('0x2d')][_0x2223('0x1d')](_0x1cf4b6[_0x2223('0x3e')]);}return _0x104541;},_0x30af9d[_0x2223('0x2a')]=function(_0x148c32,_0x382a23){_0x382a23||(_0x382a23={});let _0x242a7b={};return _0x382a23['defaults']&&(_0x242a7b[_0x2223('0x6e')]=null,_0x242a7b[_0x2223('0x3e')]=null),null!=_0x148c32[_0x2223('0x6e')]&&_0x148c32[_0x2223('0xa')](_0x2223('0x6e'))&&(_0x242a7b[_0x2223('0x6e')]=v[_0x2223('0x2d')][_0x2223('0x2a')](_0x148c32[_0x2223('0x6e')],_0x382a23)),null!=_0x148c32[_0x2223('0x3e')]&&_0x148c32[_0x2223('0xa')](_0x2223('0x3e'))&&(_0x242a7b['end']=v['Position'][_0x2223('0x2a')](_0x148c32['end'],_0x382a23)),_0x242a7b;},_0x30af9d[_0x2223('0x1e')][_0x2223('0x14')]=function(){return this[_0x2223('0x89')][_0x2223('0x2a')](this,_0x2c817d[_0x2223('0x8a')][_0x2223('0x3c')]);},_0x30af9d[_0x2223('0x38')]=function(_0xa12a28){return void 0x0===_0xa12a28&&(_0xa12a28=_0x2223('0x52')),_0xa12a28+_0x2223('0x4d');},_0x30af9d;})();export const Element=v['Element']=(()=>{function _0xfee8ba(_0x572fb4){if(this['children']=[],this[_0x2223('0x86')]={},_0x572fb4)for(let _0x1ac128=Object[_0x2223('0x18')](_0x572fb4),_0x591b76=0x0;_0x591b76<_0x1ac128['length'];++_0x591b76)null!=_0x572fb4[_0x1ac128[_0x591b76]]&&(this[_0x1ac128[_0x591b76]]=_0x572fb4[_0x1ac128[_0x591b76]]);}return _0xfee8ba['prototype'][_0x2223('0x44')]='',_0xfee8ba['prototype']['children']=k[_0x2223('0x28')],_0xfee8ba[_0x2223('0x1e')][_0x2223('0x64')]='',_0xfee8ba[_0x2223('0x1e')][_0x2223('0x86')]=k['emptyObject'],_0xfee8ba[_0x2223('0x1e')][_0x2223('0x4c')]='',_0xfee8ba[_0x2223('0x19')]=function(_0x24e8b4){return new _0xfee8ba(_0x24e8b4);},_0xfee8ba[_0x2223('0x87')]=function(_0x3ab0fd,_0x5d314c){if(_0x5d314c||(_0x5d314c=y[_0x2223('0x19')]()),null!=_0x3ab0fd[_0x2223('0x44')]&&Object[_0x2223('0xa')][_0x2223('0x30')](_0x3ab0fd,'name')&&_0x5d314c[_0x2223('0x2e')](0xa)[_0x2223('0x5f')](_0x3ab0fd[_0x2223('0x44')]),null!=_0x3ab0fd[_0x2223('0x25')]&&_0x3ab0fd[_0x2223('0x25')][_0x2223('0x40')])for(let _0x35896c=0x0;_0x35896c<_0x3ab0fd[_0x2223('0x25')]['length'];++_0x35896c)v['Element'][_0x2223('0x87')](_0x3ab0fd[_0x2223('0x25')][_0x35896c],_0x5d314c[_0x2223('0x2e')](0x12)[_0x2223('0x82')]())[_0x2223('0x27')]();if(null!=_0x3ab0fd['data']&&Object[_0x2223('0xa')][_0x2223('0x30')](_0x3ab0fd,_0x2223('0x64'))&&_0x5d314c['uint32'](0x1a)[_0x2223('0x5f')](_0x3ab0fd[_0x2223('0x64')]),null!=_0x3ab0fd[_0x2223('0x86')]&&Object[_0x2223('0xa')]['call'](_0x3ab0fd,_0x2223('0x86')))for(let _0x30ddb1=Object[_0x2223('0x18')](_0x3ab0fd[_0x2223('0x86')]),_0x5441c1=0x0;_0x5441c1<_0x30ddb1[_0x2223('0x40')];++_0x5441c1)_0x5d314c[_0x2223('0x2e')](0x22)['fork']()[_0x2223('0x2e')](0xa)[_0x2223('0x5f')](_0x30ddb1[_0x5441c1])[_0x2223('0x2e')](0x10)[_0x2223('0x32')](_0x3ab0fd['attributesBoolean'][_0x30ddb1[_0x5441c1]])[_0x2223('0x27')]();return null!=_0x3ab0fd['attributesJson']&&Object[_0x2223('0xa')][_0x2223('0x30')](_0x3ab0fd,'attributesJson')&&_0x5d314c[_0x2223('0x2e')](0x2a)[_0x2223('0x5f')](_0x3ab0fd[_0x2223('0x4c')]),_0x5d314c;},_0xfee8ba[_0x2223('0x5')]=function(_0x4bb902,_0x4722be){return this[_0x2223('0x87')](_0x4bb902,_0x4722be)[_0x2223('0x27')]();},_0xfee8ba[_0x2223('0x2c')]=function(_0x30e2d7,_0x29a862){_0x30e2d7 instanceof j||(_0x30e2d7=j['create'](_0x30e2d7));let _0x35a34f,_0x598997,_0x2c1a21=void 0x0===_0x29a862?_0x30e2d7['len']:_0x30e2d7[_0x2223('0x7a')]+_0x29a862,_0x2c1ef1=new v[(_0x2223('0x59'))]();for(;_0x30e2d7[_0x2223('0x7a')]<_0x2c1a21;){let _0x355017=_0x30e2d7[_0x2223('0x2e')]();switch(_0x355017>>>0x3){case 0x1:_0x2c1ef1[_0x2223('0x44')]=_0x30e2d7[_0x2223('0x5f')]();break;case 0x2:_0x2c1ef1[_0x2223('0x25')]&&_0x2c1ef1[_0x2223('0x25')][_0x2223('0x40')]||(_0x2c1ef1[_0x2223('0x25')]=[]),_0x2c1ef1[_0x2223('0x25')][_0x2223('0x3a')](v['Element']['decode'](_0x30e2d7,_0x30e2d7[_0x2223('0x2e')]()));break;case 0x3:_0x2c1ef1['data']=_0x30e2d7[_0x2223('0x5f')]();break;case 0x4:{_0x2c1ef1[_0x2223('0x86')]===k[_0x2223('0x1f')]&&(_0x2c1ef1[_0x2223('0x86')]={});let _0x4b4ce4=_0x30e2d7['uint32']()+_0x30e2d7[_0x2223('0x7a')];for(_0x35a34f='',_0x598997=!0x1;_0x30e2d7[_0x2223('0x7a')]<_0x4b4ce4;){let _0x267a9c=_0x30e2d7['uint32']();switch(_0x267a9c>>>0x3){case 0x1:_0x35a34f=_0x30e2d7[_0x2223('0x5f')]();break;case 0x2:_0x598997=_0x30e2d7[_0x2223('0x32')]();break;default:_0x30e2d7[_0x2223('0x35')](0x7&_0x267a9c);}}_0x2c1ef1['attributesBoolean'][_0x35a34f]=_0x598997;break;}case 0x5:_0x2c1ef1[_0x2223('0x4c')]=_0x30e2d7[_0x2223('0x5f')]();break;default:_0x30e2d7[_0x2223('0x35')](0x7&_0x355017);}}return _0x2c1ef1;},_0xfee8ba[_0x2223('0x31')]=function(_0x132990){return _0x132990 instanceof j||(_0x132990=new j(_0x132990)),this[_0x2223('0x2c')](_0x132990,_0x132990['uint32']());},_0xfee8ba[_0x2223('0x12')]=function(_0x50c13e){if('object'!=typeof _0x50c13e||null===_0x50c13e)return _0x2223('0x7d');if(null!=_0x50c13e[_0x2223('0x44')]&&_0x50c13e[_0x2223('0xa')]('name')&&!k[_0x2223('0x79')](_0x50c13e['name']))return _0x2223('0x77');if(null!=_0x50c13e['children']&&_0x50c13e['hasOwnProperty']('children')){if(!Array[_0x2223('0x72')](_0x50c13e[_0x2223('0x25')]))return _0x2223('0x42');for(let _0x2d0bb1=0x0;_0x2d0bb1<_0x50c13e[_0x2223('0x25')][_0x2223('0x40')];++_0x2d0bb1){let _0x2b27b6=v[_0x2223('0x59')][_0x2223('0x12')](_0x50c13e[_0x2223('0x25')][_0x2d0bb1]);if(_0x2b27b6)return _0x2223('0xb')+_0x2b27b6;}}if(null!=_0x50c13e[_0x2223('0x64')]&&_0x50c13e[_0x2223('0xa')](_0x2223('0x64'))&&!k['isString'](_0x50c13e['data']))return _0x2223('0x4b');if(null!=_0x50c13e[_0x2223('0x86')]&&_0x50c13e['hasOwnProperty'](_0x2223('0x86'))){if(!k['isObject'](_0x50c13e[_0x2223('0x86')]))return'attributesBoolean:\x20object\x20expected';let _0x57e81b=Object[_0x2223('0x18')](_0x50c13e[_0x2223('0x86')]);for(let _0x2d9dc1=0x0;_0x2d9dc1<_0x57e81b[_0x2223('0x40')];++_0x2d9dc1)if(_0x2223('0x60')!=typeof _0x50c13e[_0x2223('0x86')][_0x57e81b[_0x2d9dc1]])return _0x2223('0x46');}return null!=_0x50c13e['attributesJson']&&_0x50c13e[_0x2223('0xa')](_0x2223('0x4c'))&&!k['isString'](_0x50c13e['attributesJson'])?_0x2223('0x54'):null;},_0xfee8ba[_0x2223('0x1d')]=function(_0x5ccc62){if(_0x5ccc62 instanceof v['Element'])return _0x5ccc62;let _0x4c77e1=new v[(_0x2223('0x59'))]();if(null!=_0x5ccc62[_0x2223('0x44')]&&(_0x4c77e1[_0x2223('0x44')]=String(_0x5ccc62[_0x2223('0x44')])),_0x5ccc62[_0x2223('0x25')]){if(!Array[_0x2223('0x72')](_0x5ccc62[_0x2223('0x25')]))throw TypeError(_0x2223('0x1a'));_0x4c77e1[_0x2223('0x25')]=[];for(let _0x18c5be=0x0;_0x18c5be<_0x5ccc62[_0x2223('0x25')][_0x2223('0x40')];++_0x18c5be){if(_0x2223('0xc')!=typeof _0x5ccc62[_0x2223('0x25')][_0x18c5be])throw TypeError(_0x2223('0x5d'));_0x4c77e1[_0x2223('0x25')][_0x18c5be]=v[_0x2223('0x59')][_0x2223('0x1d')](_0x5ccc62[_0x2223('0x25')][_0x18c5be]);}}if(null!=_0x5ccc62[_0x2223('0x64')]&&(_0x4c77e1[_0x2223('0x64')]=String(_0x5ccc62[_0x2223('0x64')])),_0x5ccc62['attributesBoolean']){if(_0x2223('0xc')!=typeof _0x5ccc62[_0x2223('0x86')])throw TypeError(_0x2223('0x4f'));_0x4c77e1['attributesBoolean']={};for(let _0x162f59=Object['keys'](_0x5ccc62['attributesBoolean']),_0x3322bd=0x0;_0x3322bd<_0x162f59['length'];++_0x3322bd)_0x4c77e1['attributesBoolean'][_0x162f59[_0x3322bd]]=Boolean(_0x5ccc62[_0x2223('0x86')][_0x162f59[_0x3322bd]]);}return null!=_0x5ccc62[_0x2223('0x4c')]&&(_0x4c77e1[_0x2223('0x4c')]=String(_0x5ccc62[_0x2223('0x4c')])),_0x4c77e1;},_0xfee8ba[_0x2223('0x2a')]=function(_0x1e6663,_0x1066a3){_0x1066a3||(_0x1066a3={});let _0x4c7eec,_0x4e9ac4={};if((_0x1066a3['arrays']||_0x1066a3[_0x2223('0x70')])&&(_0x4e9ac4['children']=[]),(_0x1066a3['objects']||_0x1066a3[_0x2223('0x70')])&&(_0x4e9ac4[_0x2223('0x86')]={}),_0x1066a3[_0x2223('0x70')]&&(_0x4e9ac4[_0x2223('0x44')]='',_0x4e9ac4['data']='',_0x4e9ac4[_0x2223('0x4c')]=''),null!=_0x1e6663['name']&&_0x1e6663[_0x2223('0xa')](_0x2223('0x44'))&&(_0x4e9ac4['name']=_0x1e6663[_0x2223('0x44')]),_0x1e6663['children']&&_0x1e6663['children'][_0x2223('0x40')]){_0x4e9ac4[_0x2223('0x25')]=[];for(let _0x299601=0x0;_0x299601<_0x1e6663[_0x2223('0x25')][_0x2223('0x40')];++_0x299601)_0x4e9ac4['children'][_0x299601]=v[_0x2223('0x59')][_0x2223('0x2a')](_0x1e6663[_0x2223('0x25')][_0x299601],_0x1066a3);}if(null!=_0x1e6663[_0x2223('0x64')]&&_0x1e6663[_0x2223('0xa')](_0x2223('0x64'))&&(_0x4e9ac4[_0x2223('0x64')]=_0x1e6663[_0x2223('0x64')]),_0x1e6663['attributesBoolean']&&(_0x4c7eec=Object['keys'](_0x1e6663[_0x2223('0x86')]))['length']){_0x4e9ac4['attributesBoolean']={};for(let _0x452c32=0x0;_0x452c32<_0x4c7eec[_0x2223('0x40')];++_0x452c32)_0x4e9ac4[_0x2223('0x86')][_0x4c7eec[_0x452c32]]=_0x1e6663[_0x2223('0x86')][_0x4c7eec[_0x452c32]];}return null!=_0x1e6663[_0x2223('0x4c')]&&_0x1e6663['hasOwnProperty'](_0x2223('0x4c'))&&(_0x4e9ac4[_0x2223('0x4c')]=_0x1e6663['attributesJson']),_0x4e9ac4;},_0xfee8ba['prototype']['toJSON']=function(){return this[_0x2223('0x89')][_0x2223('0x2a')](this,_0x2c817d[_0x2223('0x8a')]['toJSONOptions']);},_0xfee8ba[_0x2223('0x38')]=function(_0x579b02){return void 0x0===_0x579b02&&(_0x579b02=_0x2223('0x52')),_0x579b02+_0x2223('0x62');},_0xfee8ba;})();export{v as default};
|
|
23
|
+
const _0x54e6=['root','attributesBoolean:\x20object\x20expected','.InsertOperation.nodes:\x20object\x20expected','call','.MoveOperation.sourcePosition:\x20object\x20expected','shouldReceiveAttributes:\x20boolean\x20expected','prototype','/Range','targetPosition','stickiness:\x20string\x20expected','SplitOperation','oldName:\x20string\x20expected','.Element.children:\x20object\x20expected','shouldReceiveAttributes','.Element.attributesBoolean:\x20object\x20expected','.SplitOperation.insertionPosition:\x20object\x20expected','length','position','newValueBoolean','splitPosition','rootName','MarkerOperation','pos','decode','nodes.','newValueJson:\x20string\x20expected','push','attributesBoolean:\x20boolean{k:string}\x20expected','isAdd','MergeOperation','MoveOperation','oldName','affectsData','newValueJson','elementName','verify','ldelim','newName','.Position.path:\x20array\x20expected','attributesJson:\x20string\x20expected','.SplitOperation.splitPosition:\x20object\x20expected','Range','RootOperation','isArray','insertionPosition.','path:\x20array\x20expected','.MarkerOperation.oldRange:\x20object\x20expected','newName:\x20string\x20expected','.RenameOperation.position:\x20object\x20expected','/Position','string','fromObject','len','/MoveOperation','/RootOperation','/Element','isString','emptyObject','children','isInteger','key','fork','emptyArray','data','rootMain','arrays','oldRange','roots','toJSON','newRange.','toObject','.Range.end:\x20object\x20expected','howMany:\x20integer\x20expected','.MergeOperation.targetPosition:\x20object\x20expected','InsertOperation','attributesJson','position.','attributesBoolean','.Element.children:\x20array\x20expected','create','end.','Element','sourcePosition','graveyardPosition.','end','affectsData:\x20boolean\x20expected','defaults','Position','nodes','object\x20expected','isAdd:\x20boolean\x20expected','objects','/SplitOperation','isObject','root:\x20string\x20expected','elementName:\x20string\x20expected','RenameOperation','targetPosition.','boolean','graveyardPosition','splitPosition.','newRange','start','.AttributeOperation.range:\x20object\x20expected','.MergeOperation.sourcePosition:\x20object\x20expected','type.googleapis.com','insertionPosition','constructor','toJSONOptions','oldRange.','wasUndone','key:\x20string\x20expected','object','oldValueJson','util','.MoveOperation.targetPosition:\x20object\x20expected','/RootAttributeOperation','/MarkerOperation','/MergeOperation','keys','hasOwnProperty','oldValueBoolean:\x20boolean\x20expected','default','newValueBoolean:\x20boolean\x20expected','nodes:\x20array\x20expected','AttributeOperation','rootMain:\x20boolean\x20expected','getTypeUrl','.MergeOperation.graveyardPosition:\x20object\x20expected','name','encode','range','/InsertOperation','oldValueBoolean','/RenameOperation','decodeDelimited','.MarkerOperation.newRange:\x20object\x20expected','sourcePosition.','start.','.InsertOperation.nodes:\x20array\x20expected','stickiness','data:\x20string\x20expected','Reader','/AttributeOperation','uint32','children:\x20array\x20expected','howMany','RootAttributeOperation','name:\x20string\x20expected','rootName:\x20string\x20expected','skipType','encodeDelimited','rootGraveyard','bool','path','wasUndone:\x20boolean\x20expected'];(function(_0x4b507d,_0x54e6a7){const _0x20bd86=function(_0x1fe31b){while(--_0x1fe31b){_0x4b507d['push'](_0x4b507d['shift']());}};_0x20bd86(++_0x54e6a7);}(_0x54e6,0x1a0));const _0x20bd=function(_0x4b507d,_0x54e6a7){_0x4b507d=_0x4b507d-0x0;let _0x20bd86=_0x54e6[_0x4b507d];return _0x20bd86;};import*as _0x1ecc16 from'protobufjs/minimal';const j=_0x1ecc16[_0x20bd('0x26')],y=_0x1ecc16['Writer'],k=_0x1ecc16[_0x20bd('0xa')],v=_0x1ecc16[_0x20bd('0x77')]['default']||(_0x1ecc16['roots'][_0x20bd('0x12')]={});export const AttributeOperation=v['AttributeOperation']=(()=>{function _0x492f80(_0x283a9d){if(_0x283a9d)for(let _0x1846d9=Object[_0x20bd('0xf')](_0x283a9d),_0x4649a3=0x0;_0x4649a3<_0x1846d9[_0x20bd('0x44')];++_0x4649a3)null!=_0x283a9d[_0x1846d9[_0x4649a3]]&&(this[_0x1846d9[_0x4649a3]]=_0x283a9d[_0x1846d9[_0x4649a3]]);}return _0x492f80[_0x20bd('0x3a')][_0x20bd('0x1b')]=null,_0x492f80[_0x20bd('0x3a')][_0x20bd('0x70')]='',_0x492f80[_0x20bd('0x3a')][_0x20bd('0x1d')]=!0x1,_0x492f80['prototype']['oldValueJson']='',_0x492f80[_0x20bd('0x3a')]['newValueBoolean']=!0x1,_0x492f80[_0x20bd('0x3a')][_0x20bd('0x55')]='',_0x492f80[_0x20bd('0x3a')][_0x20bd('0x6')]=!0x1,_0x492f80[_0x20bd('0x83')]=function(_0x2a68e3){return new _0x492f80(_0x2a68e3);},_0x492f80[_0x20bd('0x1a')]=function(_0x5973e9,_0x1f6f58){return _0x1f6f58||(_0x1f6f58=y[_0x20bd('0x83')]()),null!=_0x5973e9[_0x20bd('0x1b')]&&Object[_0x20bd('0x10')][_0x20bd('0x37')](_0x5973e9,'range')&&v[_0x20bd('0x5d')][_0x20bd('0x1a')](_0x5973e9[_0x20bd('0x1b')],_0x1f6f58[_0x20bd('0x28')](0xa)['fork']())[_0x20bd('0x58')](),null!=_0x5973e9[_0x20bd('0x70')]&&Object[_0x20bd('0x10')]['call'](_0x5973e9,_0x20bd('0x70'))&&_0x1f6f58['uint32'](0x12)[_0x20bd('0x66')](_0x5973e9[_0x20bd('0x70')]),null!=_0x5973e9[_0x20bd('0x1d')]&&Object[_0x20bd('0x10')][_0x20bd('0x37')](_0x5973e9,_0x20bd('0x1d'))&&_0x1f6f58[_0x20bd('0x28')](0x18)['bool'](_0x5973e9[_0x20bd('0x1d')]),null!=_0x5973e9['oldValueJson']&&Object['hasOwnProperty'][_0x20bd('0x37')](_0x5973e9,_0x20bd('0x9'))&&_0x1f6f58[_0x20bd('0x28')](0x22)[_0x20bd('0x66')](_0x5973e9[_0x20bd('0x9')]),null!=_0x5973e9['newValueBoolean']&&Object[_0x20bd('0x10')][_0x20bd('0x37')](_0x5973e9,_0x20bd('0x46'))&&_0x1f6f58['uint32'](0x28)[_0x20bd('0x31')](_0x5973e9[_0x20bd('0x46')]),null!=_0x5973e9[_0x20bd('0x55')]&&Object[_0x20bd('0x10')][_0x20bd('0x37')](_0x5973e9,'newValueJson')&&_0x1f6f58[_0x20bd('0x28')](0x32)[_0x20bd('0x66')](_0x5973e9['newValueJson']),null!=_0x5973e9[_0x20bd('0x6')]&&Object[_0x20bd('0x10')][_0x20bd('0x37')](_0x5973e9,_0x20bd('0x6'))&&_0x1f6f58[_0x20bd('0x28')](0x38)['bool'](_0x5973e9[_0x20bd('0x6')]),_0x1f6f58;},_0x492f80['encodeDelimited']=function(_0x2ad48f,_0x2e6bc2){return this[_0x20bd('0x1a')](_0x2ad48f,_0x2e6bc2)[_0x20bd('0x58')]();},_0x492f80[_0x20bd('0x4b')]=function(_0x237273,_0x247b40){_0x237273 instanceof j||(_0x237273=j[_0x20bd('0x83')](_0x237273));let _0x3e7010=void 0x0===_0x247b40?_0x237273[_0x20bd('0x68')]:_0x237273[_0x20bd('0x4a')]+_0x247b40,_0x4b5499=new v[(_0x20bd('0x15'))]();for(;_0x237273[_0x20bd('0x4a')]<_0x3e7010;){let _0x3a0d88=_0x237273[_0x20bd('0x28')]();switch(_0x3a0d88>>>0x3){case 0x1:_0x4b5499[_0x20bd('0x1b')]=v[_0x20bd('0x5d')]['decode'](_0x237273,_0x237273[_0x20bd('0x28')]());break;case 0x2:_0x4b5499[_0x20bd('0x70')]=_0x237273[_0x20bd('0x66')]();break;case 0x3:_0x4b5499[_0x20bd('0x1d')]=_0x237273[_0x20bd('0x31')]();break;case 0x4:_0x4b5499[_0x20bd('0x9')]=_0x237273[_0x20bd('0x66')]();break;case 0x5:_0x4b5499[_0x20bd('0x46')]=_0x237273[_0x20bd('0x31')]();break;case 0x6:_0x4b5499[_0x20bd('0x55')]=_0x237273[_0x20bd('0x66')]();break;case 0x7:_0x4b5499[_0x20bd('0x6')]=_0x237273[_0x20bd('0x31')]();break;default:_0x237273[_0x20bd('0x2e')](0x7&_0x3a0d88);}}return _0x4b5499;},_0x492f80['decodeDelimited']=function(_0xef6c70){return _0xef6c70 instanceof j||(_0xef6c70=new j(_0xef6c70)),this[_0x20bd('0x4b')](_0xef6c70,_0xef6c70[_0x20bd('0x28')]());},_0x492f80['verify']=function(_0x5d02ef){if(_0x20bd('0x8')!=typeof _0x5d02ef||null===_0x5d02ef)return _0x20bd('0x8d');if(null!=_0x5d02ef['range']&&_0x5d02ef[_0x20bd('0x10')](_0x20bd('0x1b'))){let _0x24c3c6=v[_0x20bd('0x5d')][_0x20bd('0x57')](_0x5d02ef[_0x20bd('0x1b')]);if(_0x24c3c6)return'range.'+_0x24c3c6;}return null!=_0x5d02ef[_0x20bd('0x70')]&&_0x5d02ef[_0x20bd('0x10')]('key')&&!k['isString'](_0x5d02ef[_0x20bd('0x70')])?_0x20bd('0x7'):null!=_0x5d02ef[_0x20bd('0x1d')]&&_0x5d02ef[_0x20bd('0x10')](_0x20bd('0x1d'))&&_0x20bd('0x96')!=typeof _0x5d02ef[_0x20bd('0x1d')]?_0x20bd('0x11'):null!=_0x5d02ef['oldValueJson']&&_0x5d02ef[_0x20bd('0x10')](_0x20bd('0x9'))&&!k['isString'](_0x5d02ef[_0x20bd('0x9')])?'oldValueJson:\x20string\x20expected':null!=_0x5d02ef[_0x20bd('0x46')]&&_0x5d02ef['hasOwnProperty']('newValueBoolean')&&_0x20bd('0x96')!=typeof _0x5d02ef[_0x20bd('0x46')]?_0x20bd('0x13'):null!=_0x5d02ef[_0x20bd('0x55')]&&_0x5d02ef[_0x20bd('0x10')](_0x20bd('0x55'))&&!k[_0x20bd('0x6c')](_0x5d02ef[_0x20bd('0x55')])?_0x20bd('0x4d'):null!=_0x5d02ef[_0x20bd('0x6')]&&_0x5d02ef[_0x20bd('0x10')]('wasUndone')&&_0x20bd('0x96')!=typeof _0x5d02ef['wasUndone']?_0x20bd('0x33'):null;},_0x492f80[_0x20bd('0x67')]=function(_0xc1beb3){if(_0xc1beb3 instanceof v[_0x20bd('0x15')])return _0xc1beb3;let _0x31b911=new v['AttributeOperation']();if(null!=_0xc1beb3[_0x20bd('0x1b')]){if('object'!=typeof _0xc1beb3[_0x20bd('0x1b')])throw TypeError(_0x20bd('0x9b'));_0x31b911[_0x20bd('0x1b')]=v['Range']['fromObject'](_0xc1beb3[_0x20bd('0x1b')]);}return null!=_0xc1beb3[_0x20bd('0x70')]&&(_0x31b911[_0x20bd('0x70')]=String(_0xc1beb3[_0x20bd('0x70')])),null!=_0xc1beb3['oldValueBoolean']&&(_0x31b911[_0x20bd('0x1d')]=Boolean(_0xc1beb3[_0x20bd('0x1d')])),null!=_0xc1beb3[_0x20bd('0x9')]&&(_0x31b911[_0x20bd('0x9')]=String(_0xc1beb3[_0x20bd('0x9')])),null!=_0xc1beb3[_0x20bd('0x46')]&&(_0x31b911[_0x20bd('0x46')]=Boolean(_0xc1beb3[_0x20bd('0x46')])),null!=_0xc1beb3['newValueJson']&&(_0x31b911[_0x20bd('0x55')]=String(_0xc1beb3[_0x20bd('0x55')])),null!=_0xc1beb3[_0x20bd('0x6')]&&(_0x31b911[_0x20bd('0x6')]=Boolean(_0xc1beb3[_0x20bd('0x6')])),_0x31b911;},_0x492f80[_0x20bd('0x7a')]=function(_0x15ed65,_0x290420){_0x290420||(_0x290420={});let _0x3e561b={};return _0x290420[_0x20bd('0x8a')]&&(_0x3e561b['range']=null,_0x3e561b[_0x20bd('0x70')]='',_0x3e561b[_0x20bd('0x1d')]=!0x1,_0x3e561b['oldValueJson']='',_0x3e561b[_0x20bd('0x46')]=!0x1,_0x3e561b[_0x20bd('0x55')]='',_0x3e561b[_0x20bd('0x6')]=!0x1),null!=_0x15ed65[_0x20bd('0x1b')]&&_0x15ed65[_0x20bd('0x10')]('range')&&(_0x3e561b['range']=v[_0x20bd('0x5d')][_0x20bd('0x7a')](_0x15ed65[_0x20bd('0x1b')],_0x290420)),null!=_0x15ed65[_0x20bd('0x70')]&&_0x15ed65[_0x20bd('0x10')]('key')&&(_0x3e561b[_0x20bd('0x70')]=_0x15ed65['key']),null!=_0x15ed65[_0x20bd('0x1d')]&&_0x15ed65[_0x20bd('0x10')](_0x20bd('0x1d'))&&(_0x3e561b[_0x20bd('0x1d')]=_0x15ed65[_0x20bd('0x1d')]),null!=_0x15ed65['oldValueJson']&&_0x15ed65[_0x20bd('0x10')](_0x20bd('0x9'))&&(_0x3e561b[_0x20bd('0x9')]=_0x15ed65[_0x20bd('0x9')]),null!=_0x15ed65[_0x20bd('0x46')]&&_0x15ed65[_0x20bd('0x10')](_0x20bd('0x46'))&&(_0x3e561b[_0x20bd('0x46')]=_0x15ed65['newValueBoolean']),null!=_0x15ed65[_0x20bd('0x55')]&&_0x15ed65[_0x20bd('0x10')](_0x20bd('0x55'))&&(_0x3e561b['newValueJson']=_0x15ed65[_0x20bd('0x55')]),null!=_0x15ed65['wasUndone']&&_0x15ed65[_0x20bd('0x10')](_0x20bd('0x6'))&&(_0x3e561b[_0x20bd('0x6')]=_0x15ed65[_0x20bd('0x6')]),_0x3e561b;},_0x492f80[_0x20bd('0x3a')][_0x20bd('0x78')]=function(){return this[_0x20bd('0x3')][_0x20bd('0x7a')](this,_0x1ecc16[_0x20bd('0xa')][_0x20bd('0x4')]);},_0x492f80[_0x20bd('0x17')]=function(_0xee04ad){return void 0x0===_0xee04ad&&(_0xee04ad=_0x20bd('0x1')),_0xee04ad+_0x20bd('0x27');},_0x492f80;})();export const InsertOperation=v[_0x20bd('0x7e')]=(()=>{function _0x4b1dce(_0xcb987b){if(this[_0x20bd('0x8c')]=[],_0xcb987b)for(let _0x58d199=Object[_0x20bd('0xf')](_0xcb987b),_0x3aea9d=0x0;_0x3aea9d<_0x58d199[_0x20bd('0x44')];++_0x3aea9d)null!=_0xcb987b[_0x58d199[_0x3aea9d]]&&(this[_0x58d199[_0x3aea9d]]=_0xcb987b[_0x58d199[_0x3aea9d]]);}return _0x4b1dce[_0x20bd('0x3a')][_0x20bd('0x45')]=null,_0x4b1dce[_0x20bd('0x3a')][_0x20bd('0x8c')]=k['emptyArray'],_0x4b1dce['prototype'][_0x20bd('0x41')]=!0x1,_0x4b1dce[_0x20bd('0x3a')][_0x20bd('0x6')]=!0x1,_0x4b1dce[_0x20bd('0x83')]=function(_0xe6f7d7){return new _0x4b1dce(_0xe6f7d7);},_0x4b1dce[_0x20bd('0x1a')]=function(_0x1c75a8,_0x5c219d){if(_0x5c219d||(_0x5c219d=y[_0x20bd('0x83')]()),null!=_0x1c75a8[_0x20bd('0x45')]&&Object[_0x20bd('0x10')][_0x20bd('0x37')](_0x1c75a8,_0x20bd('0x45'))&&v[_0x20bd('0x8b')][_0x20bd('0x1a')](_0x1c75a8['position'],_0x5c219d[_0x20bd('0x28')](0xa)[_0x20bd('0x71')]())[_0x20bd('0x58')](),null!=_0x1c75a8[_0x20bd('0x8c')]&&_0x1c75a8[_0x20bd('0x8c')][_0x20bd('0x44')])for(let _0xb62255=0x0;_0xb62255<_0x1c75a8[_0x20bd('0x8c')]['length'];++_0xb62255)v['Element'][_0x20bd('0x1a')](_0x1c75a8[_0x20bd('0x8c')][_0xb62255],_0x5c219d[_0x20bd('0x28')](0x12)[_0x20bd('0x71')]())[_0x20bd('0x58')]();return null!=_0x1c75a8[_0x20bd('0x41')]&&Object['hasOwnProperty'][_0x20bd('0x37')](_0x1c75a8,_0x20bd('0x41'))&&_0x5c219d[_0x20bd('0x28')](0x18)[_0x20bd('0x31')](_0x1c75a8['shouldReceiveAttributes']),null!=_0x1c75a8[_0x20bd('0x6')]&&Object[_0x20bd('0x10')][_0x20bd('0x37')](_0x1c75a8,'wasUndone')&&_0x5c219d['uint32'](0x20)[_0x20bd('0x31')](_0x1c75a8[_0x20bd('0x6')]),_0x5c219d;},_0x4b1dce[_0x20bd('0x2f')]=function(_0x578247,_0x494dfe){return this['encode'](_0x578247,_0x494dfe)[_0x20bd('0x58')]();},_0x4b1dce[_0x20bd('0x4b')]=function(_0x251ac7,_0x4cf4d9){_0x251ac7 instanceof j||(_0x251ac7=j[_0x20bd('0x83')](_0x251ac7));let _0x819bd6=void 0x0===_0x4cf4d9?_0x251ac7['len']:_0x251ac7['pos']+_0x4cf4d9,_0x1460f1=new v[(_0x20bd('0x7e'))]();for(;_0x251ac7[_0x20bd('0x4a')]<_0x819bd6;){let _0xf41361=_0x251ac7[_0x20bd('0x28')]();switch(_0xf41361>>>0x3){case 0x1:_0x1460f1[_0x20bd('0x45')]=v[_0x20bd('0x8b')][_0x20bd('0x4b')](_0x251ac7,_0x251ac7['uint32']());break;case 0x2:_0x1460f1[_0x20bd('0x8c')]&&_0x1460f1[_0x20bd('0x8c')][_0x20bd('0x44')]||(_0x1460f1[_0x20bd('0x8c')]=[]),_0x1460f1['nodes'][_0x20bd('0x4e')](v[_0x20bd('0x85')][_0x20bd('0x4b')](_0x251ac7,_0x251ac7[_0x20bd('0x28')]()));break;case 0x3:_0x1460f1[_0x20bd('0x41')]=_0x251ac7[_0x20bd('0x31')]();break;case 0x4:_0x1460f1[_0x20bd('0x6')]=_0x251ac7[_0x20bd('0x31')]();break;default:_0x251ac7[_0x20bd('0x2e')](0x7&_0xf41361);}}return _0x1460f1;},_0x4b1dce[_0x20bd('0x1f')]=function(_0x349209){return _0x349209 instanceof j||(_0x349209=new j(_0x349209)),this['decode'](_0x349209,_0x349209[_0x20bd('0x28')]());},_0x4b1dce[_0x20bd('0x57')]=function(_0x570108){if(_0x20bd('0x8')!=typeof _0x570108||null===_0x570108)return _0x20bd('0x8d');if(null!=_0x570108[_0x20bd('0x45')]&&_0x570108[_0x20bd('0x10')](_0x20bd('0x45'))){let _0x4df007=v[_0x20bd('0x8b')][_0x20bd('0x57')](_0x570108[_0x20bd('0x45')]);if(_0x4df007)return _0x20bd('0x80')+_0x4df007;}if(null!=_0x570108[_0x20bd('0x8c')]&&_0x570108['hasOwnProperty'](_0x20bd('0x8c'))){if(!Array['isArray'](_0x570108[_0x20bd('0x8c')]))return _0x20bd('0x14');for(let _0x333de5=0x0;_0x333de5<_0x570108[_0x20bd('0x8c')][_0x20bd('0x44')];++_0x333de5){let _0x4def88=v[_0x20bd('0x85')][_0x20bd('0x57')](_0x570108['nodes'][_0x333de5]);if(_0x4def88)return _0x20bd('0x4c')+_0x4def88;}}return null!=_0x570108['shouldReceiveAttributes']&&_0x570108[_0x20bd('0x10')](_0x20bd('0x41'))&&'boolean'!=typeof _0x570108[_0x20bd('0x41')]?_0x20bd('0x39'):null!=_0x570108[_0x20bd('0x6')]&&_0x570108[_0x20bd('0x10')](_0x20bd('0x6'))&&_0x20bd('0x96')!=typeof _0x570108['wasUndone']?_0x20bd('0x33'):null;},_0x4b1dce[_0x20bd('0x67')]=function(_0x56db9d){if(_0x56db9d instanceof v[_0x20bd('0x7e')])return _0x56db9d;let _0x3a07cb=new v['InsertOperation']();if(null!=_0x56db9d[_0x20bd('0x45')]){if('object'!=typeof _0x56db9d[_0x20bd('0x45')])throw TypeError('.InsertOperation.position:\x20object\x20expected');_0x3a07cb[_0x20bd('0x45')]=v[_0x20bd('0x8b')]['fromObject'](_0x56db9d['position']);}if(_0x56db9d['nodes']){if(!Array[_0x20bd('0x5f')](_0x56db9d[_0x20bd('0x8c')]))throw TypeError(_0x20bd('0x23'));_0x3a07cb[_0x20bd('0x8c')]=[];for(let _0x471ffb=0x0;_0x471ffb<_0x56db9d[_0x20bd('0x8c')][_0x20bd('0x44')];++_0x471ffb){if('object'!=typeof _0x56db9d[_0x20bd('0x8c')][_0x471ffb])throw TypeError(_0x20bd('0x36'));_0x3a07cb[_0x20bd('0x8c')][_0x471ffb]=v['Element'][_0x20bd('0x67')](_0x56db9d[_0x20bd('0x8c')][_0x471ffb]);}}return null!=_0x56db9d[_0x20bd('0x41')]&&(_0x3a07cb['shouldReceiveAttributes']=Boolean(_0x56db9d[_0x20bd('0x41')])),null!=_0x56db9d[_0x20bd('0x6')]&&(_0x3a07cb[_0x20bd('0x6')]=Boolean(_0x56db9d[_0x20bd('0x6')])),_0x3a07cb;},_0x4b1dce['toObject']=function(_0x104092,_0x42b6d4){_0x42b6d4||(_0x42b6d4={});let _0x40bcfd={};if((_0x42b6d4[_0x20bd('0x75')]||_0x42b6d4[_0x20bd('0x8a')])&&(_0x40bcfd[_0x20bd('0x8c')]=[]),_0x42b6d4[_0x20bd('0x8a')]&&(_0x40bcfd[_0x20bd('0x45')]=null,_0x40bcfd['shouldReceiveAttributes']=!0x1,_0x40bcfd[_0x20bd('0x6')]=!0x1),null!=_0x104092['position']&&_0x104092['hasOwnProperty'](_0x20bd('0x45'))&&(_0x40bcfd['position']=v[_0x20bd('0x8b')][_0x20bd('0x7a')](_0x104092[_0x20bd('0x45')],_0x42b6d4)),_0x104092['nodes']&&_0x104092[_0x20bd('0x8c')][_0x20bd('0x44')]){_0x40bcfd['nodes']=[];for(let _0xfbe358=0x0;_0xfbe358<_0x104092[_0x20bd('0x8c')]['length'];++_0xfbe358)_0x40bcfd['nodes'][_0xfbe358]=v[_0x20bd('0x85')][_0x20bd('0x7a')](_0x104092['nodes'][_0xfbe358],_0x42b6d4);}return null!=_0x104092[_0x20bd('0x41')]&&_0x104092[_0x20bd('0x10')]('shouldReceiveAttributes')&&(_0x40bcfd[_0x20bd('0x41')]=_0x104092[_0x20bd('0x41')]),null!=_0x104092[_0x20bd('0x6')]&&_0x104092[_0x20bd('0x10')](_0x20bd('0x6'))&&(_0x40bcfd[_0x20bd('0x6')]=_0x104092[_0x20bd('0x6')]),_0x40bcfd;},_0x4b1dce[_0x20bd('0x3a')][_0x20bd('0x78')]=function(){return this['constructor']['toObject'](this,_0x1ecc16['util'][_0x20bd('0x4')]);},_0x4b1dce[_0x20bd('0x17')]=function(_0x45ee98){return void 0x0===_0x45ee98&&(_0x45ee98='type.googleapis.com'),_0x45ee98+_0x20bd('0x1c');},_0x4b1dce;})();export const MarkerOperation=v[_0x20bd('0x49')]=(()=>{function _0x42b549(_0x133c7f){if(_0x133c7f)for(let _0x17b163=Object['keys'](_0x133c7f),_0x537bbf=0x0;_0x537bbf<_0x17b163[_0x20bd('0x44')];++_0x537bbf)null!=_0x133c7f[_0x17b163[_0x537bbf]]&&(this[_0x17b163[_0x537bbf]]=_0x133c7f[_0x17b163[_0x537bbf]]);}return _0x42b549['prototype'][_0x20bd('0x19')]='',_0x42b549[_0x20bd('0x3a')][_0x20bd('0x76')]=null,_0x42b549['prototype'][_0x20bd('0x99')]=null,_0x42b549[_0x20bd('0x3a')][_0x20bd('0x54')]=!0x1,_0x42b549[_0x20bd('0x3a')]['wasUndone']=!0x1,_0x42b549[_0x20bd('0x83')]=function(_0x478ef2){return new _0x42b549(_0x478ef2);},_0x42b549[_0x20bd('0x1a')]=function(_0x1883a6,_0x4ccb31){return _0x4ccb31||(_0x4ccb31=y['create']()),null!=_0x1883a6[_0x20bd('0x19')]&&Object[_0x20bd('0x10')][_0x20bd('0x37')](_0x1883a6,_0x20bd('0x19'))&&_0x4ccb31[_0x20bd('0x28')](0xa)[_0x20bd('0x66')](_0x1883a6[_0x20bd('0x19')]),null!=_0x1883a6[_0x20bd('0x76')]&&Object[_0x20bd('0x10')][_0x20bd('0x37')](_0x1883a6,'oldRange')&&v['Range'][_0x20bd('0x1a')](_0x1883a6['oldRange'],_0x4ccb31[_0x20bd('0x28')](0x12)[_0x20bd('0x71')]())[_0x20bd('0x58')](),null!=_0x1883a6[_0x20bd('0x99')]&&Object[_0x20bd('0x10')][_0x20bd('0x37')](_0x1883a6,_0x20bd('0x99'))&&v[_0x20bd('0x5d')][_0x20bd('0x1a')](_0x1883a6['newRange'],_0x4ccb31[_0x20bd('0x28')](0x1a)['fork']())['ldelim'](),null!=_0x1883a6[_0x20bd('0x54')]&&Object[_0x20bd('0x10')][_0x20bd('0x37')](_0x1883a6,'affectsData')&&_0x4ccb31[_0x20bd('0x28')](0x20)[_0x20bd('0x31')](_0x1883a6[_0x20bd('0x54')]),null!=_0x1883a6[_0x20bd('0x6')]&&Object[_0x20bd('0x10')][_0x20bd('0x37')](_0x1883a6,_0x20bd('0x6'))&&_0x4ccb31[_0x20bd('0x28')](0x28)[_0x20bd('0x31')](_0x1883a6[_0x20bd('0x6')]),_0x4ccb31;},_0x42b549[_0x20bd('0x2f')]=function(_0x1c34ee,_0x208d5d){return this[_0x20bd('0x1a')](_0x1c34ee,_0x208d5d)[_0x20bd('0x58')]();},_0x42b549['decode']=function(_0x5870a7,_0x31cdc7){_0x5870a7 instanceof j||(_0x5870a7=j[_0x20bd('0x83')](_0x5870a7));let _0x2b55c1=void 0x0===_0x31cdc7?_0x5870a7[_0x20bd('0x68')]:_0x5870a7[_0x20bd('0x4a')]+_0x31cdc7,_0x186e27=new v[(_0x20bd('0x49'))]();for(;_0x5870a7[_0x20bd('0x4a')]<_0x2b55c1;){let _0x4e7ed0=_0x5870a7[_0x20bd('0x28')]();switch(_0x4e7ed0>>>0x3){case 0x1:_0x186e27[_0x20bd('0x19')]=_0x5870a7[_0x20bd('0x66')]();break;case 0x2:_0x186e27[_0x20bd('0x76')]=v[_0x20bd('0x5d')][_0x20bd('0x4b')](_0x5870a7,_0x5870a7['uint32']());break;case 0x3:_0x186e27[_0x20bd('0x99')]=v['Range']['decode'](_0x5870a7,_0x5870a7[_0x20bd('0x28')]());break;case 0x4:_0x186e27[_0x20bd('0x54')]=_0x5870a7[_0x20bd('0x31')]();break;case 0x5:_0x186e27[_0x20bd('0x6')]=_0x5870a7[_0x20bd('0x31')]();break;default:_0x5870a7['skipType'](0x7&_0x4e7ed0);}}return _0x186e27;},_0x42b549[_0x20bd('0x1f')]=function(_0x4a0dc9){return _0x4a0dc9 instanceof j||(_0x4a0dc9=new j(_0x4a0dc9)),this['decode'](_0x4a0dc9,_0x4a0dc9['uint32']());},_0x42b549[_0x20bd('0x57')]=function(_0x24cc69){if('object'!=typeof _0x24cc69||null===_0x24cc69)return _0x20bd('0x8d');if(null!=_0x24cc69[_0x20bd('0x19')]&&_0x24cc69['hasOwnProperty'](_0x20bd('0x19'))&&!k[_0x20bd('0x6c')](_0x24cc69['name']))return _0x20bd('0x2c');if(null!=_0x24cc69[_0x20bd('0x76')]&&_0x24cc69[_0x20bd('0x10')]('oldRange')){let _0x536aac=v[_0x20bd('0x5d')][_0x20bd('0x57')](_0x24cc69[_0x20bd('0x76')]);if(_0x536aac)return _0x20bd('0x5')+_0x536aac;}if(null!=_0x24cc69['newRange']&&_0x24cc69[_0x20bd('0x10')]('newRange')){let _0x583cc4=v[_0x20bd('0x5d')][_0x20bd('0x57')](_0x24cc69[_0x20bd('0x99')]);if(_0x583cc4)return _0x20bd('0x79')+_0x583cc4;}return null!=_0x24cc69[_0x20bd('0x54')]&&_0x24cc69[_0x20bd('0x10')]('affectsData')&&_0x20bd('0x96')!=typeof _0x24cc69[_0x20bd('0x54')]?_0x20bd('0x89'):null!=_0x24cc69[_0x20bd('0x6')]&&_0x24cc69[_0x20bd('0x10')](_0x20bd('0x6'))&&_0x20bd('0x96')!=typeof _0x24cc69[_0x20bd('0x6')]?_0x20bd('0x33'):null;},_0x42b549[_0x20bd('0x67')]=function(_0x307121){if(_0x307121 instanceof v[_0x20bd('0x49')])return _0x307121;let _0x150757=new v[(_0x20bd('0x49'))]();if(null!=_0x307121[_0x20bd('0x19')]&&(_0x150757[_0x20bd('0x19')]=String(_0x307121['name'])),null!=_0x307121[_0x20bd('0x76')]){if(_0x20bd('0x8')!=typeof _0x307121[_0x20bd('0x76')])throw TypeError(_0x20bd('0x62'));_0x150757['oldRange']=v[_0x20bd('0x5d')][_0x20bd('0x67')](_0x307121[_0x20bd('0x76')]);}if(null!=_0x307121[_0x20bd('0x99')]){if(_0x20bd('0x8')!=typeof _0x307121[_0x20bd('0x99')])throw TypeError(_0x20bd('0x20'));_0x150757['newRange']=v[_0x20bd('0x5d')][_0x20bd('0x67')](_0x307121[_0x20bd('0x99')]);}return null!=_0x307121[_0x20bd('0x54')]&&(_0x150757[_0x20bd('0x54')]=Boolean(_0x307121['affectsData'])),null!=_0x307121['wasUndone']&&(_0x150757['wasUndone']=Boolean(_0x307121[_0x20bd('0x6')])),_0x150757;},_0x42b549[_0x20bd('0x7a')]=function(_0x2d17d0,_0x1517a0){_0x1517a0||(_0x1517a0={});let _0x38085a={};return _0x1517a0[_0x20bd('0x8a')]&&(_0x38085a[_0x20bd('0x19')]='',_0x38085a[_0x20bd('0x76')]=null,_0x38085a[_0x20bd('0x99')]=null,_0x38085a[_0x20bd('0x54')]=!0x1,_0x38085a[_0x20bd('0x6')]=!0x1),null!=_0x2d17d0[_0x20bd('0x19')]&&_0x2d17d0[_0x20bd('0x10')](_0x20bd('0x19'))&&(_0x38085a[_0x20bd('0x19')]=_0x2d17d0[_0x20bd('0x19')]),null!=_0x2d17d0[_0x20bd('0x76')]&&_0x2d17d0[_0x20bd('0x10')](_0x20bd('0x76'))&&(_0x38085a[_0x20bd('0x76')]=v[_0x20bd('0x5d')][_0x20bd('0x7a')](_0x2d17d0[_0x20bd('0x76')],_0x1517a0)),null!=_0x2d17d0['newRange']&&_0x2d17d0[_0x20bd('0x10')](_0x20bd('0x99'))&&(_0x38085a[_0x20bd('0x99')]=v[_0x20bd('0x5d')]['toObject'](_0x2d17d0[_0x20bd('0x99')],_0x1517a0)),null!=_0x2d17d0[_0x20bd('0x54')]&&_0x2d17d0[_0x20bd('0x10')]('affectsData')&&(_0x38085a['affectsData']=_0x2d17d0[_0x20bd('0x54')]),null!=_0x2d17d0[_0x20bd('0x6')]&&_0x2d17d0[_0x20bd('0x10')]('wasUndone')&&(_0x38085a[_0x20bd('0x6')]=_0x2d17d0['wasUndone']),_0x38085a;},_0x42b549[_0x20bd('0x3a')][_0x20bd('0x78')]=function(){return this[_0x20bd('0x3')][_0x20bd('0x7a')](this,_0x1ecc16[_0x20bd('0xa')]['toJSONOptions']);},_0x42b549[_0x20bd('0x17')]=function(_0x2a5e9a){return void 0x0===_0x2a5e9a&&(_0x2a5e9a=_0x20bd('0x1')),_0x2a5e9a+_0x20bd('0xd');},_0x42b549;})();export const MergeOperation=v['MergeOperation']=(()=>{function _0x21df13(_0x42d62b){if(_0x42d62b)for(let _0x1119c8=Object[_0x20bd('0xf')](_0x42d62b),_0x3f1766=0x0;_0x3f1766<_0x1119c8['length'];++_0x3f1766)null!=_0x42d62b[_0x1119c8[_0x3f1766]]&&(this[_0x1119c8[_0x3f1766]]=_0x42d62b[_0x1119c8[_0x3f1766]]);}return _0x21df13[_0x20bd('0x3a')][_0x20bd('0x86')]=null,_0x21df13[_0x20bd('0x3a')][_0x20bd('0x3c')]=null,_0x21df13['prototype']['graveyardPosition']=null,_0x21df13[_0x20bd('0x3a')][_0x20bd('0x2a')]=0x0,_0x21df13['prototype'][_0x20bd('0x6')]=!0x1,_0x21df13['create']=function(_0x188d6c){return new _0x21df13(_0x188d6c);},_0x21df13[_0x20bd('0x1a')]=function(_0xc7a524,_0x386b7b){return _0x386b7b||(_0x386b7b=y[_0x20bd('0x83')]()),null!=_0xc7a524[_0x20bd('0x86')]&&Object[_0x20bd('0x10')][_0x20bd('0x37')](_0xc7a524,_0x20bd('0x86'))&&v[_0x20bd('0x8b')][_0x20bd('0x1a')](_0xc7a524['sourcePosition'],_0x386b7b[_0x20bd('0x28')](0xa)[_0x20bd('0x71')]())[_0x20bd('0x58')](),null!=_0xc7a524[_0x20bd('0x3c')]&&Object[_0x20bd('0x10')][_0x20bd('0x37')](_0xc7a524,_0x20bd('0x3c'))&&v[_0x20bd('0x8b')][_0x20bd('0x1a')](_0xc7a524[_0x20bd('0x3c')],_0x386b7b[_0x20bd('0x28')](0x12)[_0x20bd('0x71')]())[_0x20bd('0x58')](),null!=_0xc7a524[_0x20bd('0x97')]&&Object[_0x20bd('0x10')][_0x20bd('0x37')](_0xc7a524,_0x20bd('0x97'))&&v[_0x20bd('0x8b')][_0x20bd('0x1a')](_0xc7a524[_0x20bd('0x97')],_0x386b7b['uint32'](0x1a)[_0x20bd('0x71')]())['ldelim'](),null!=_0xc7a524[_0x20bd('0x2a')]&&Object['hasOwnProperty'][_0x20bd('0x37')](_0xc7a524,'howMany')&&_0x386b7b['uint32'](0x20)['uint32'](_0xc7a524[_0x20bd('0x2a')]),null!=_0xc7a524[_0x20bd('0x6')]&&Object[_0x20bd('0x10')][_0x20bd('0x37')](_0xc7a524,'wasUndone')&&_0x386b7b[_0x20bd('0x28')](0x28)[_0x20bd('0x31')](_0xc7a524[_0x20bd('0x6')]),_0x386b7b;},_0x21df13[_0x20bd('0x2f')]=function(_0x4a07ff,_0x207cc5){return this[_0x20bd('0x1a')](_0x4a07ff,_0x207cc5)[_0x20bd('0x58')]();},_0x21df13[_0x20bd('0x4b')]=function(_0x649dfd,_0x4b9355){_0x649dfd instanceof j||(_0x649dfd=j[_0x20bd('0x83')](_0x649dfd));let _0x4a7585=void 0x0===_0x4b9355?_0x649dfd[_0x20bd('0x68')]:_0x649dfd[_0x20bd('0x4a')]+_0x4b9355,_0x33be21=new v[(_0x20bd('0x51'))]();for(;_0x649dfd[_0x20bd('0x4a')]<_0x4a7585;){let _0x438ff5=_0x649dfd[_0x20bd('0x28')]();switch(_0x438ff5>>>0x3){case 0x1:_0x33be21[_0x20bd('0x86')]=v[_0x20bd('0x8b')][_0x20bd('0x4b')](_0x649dfd,_0x649dfd[_0x20bd('0x28')]());break;case 0x2:_0x33be21[_0x20bd('0x3c')]=v[_0x20bd('0x8b')][_0x20bd('0x4b')](_0x649dfd,_0x649dfd['uint32']());break;case 0x3:_0x33be21[_0x20bd('0x97')]=v['Position'][_0x20bd('0x4b')](_0x649dfd,_0x649dfd[_0x20bd('0x28')]());break;case 0x4:_0x33be21['howMany']=_0x649dfd[_0x20bd('0x28')]();break;case 0x5:_0x33be21[_0x20bd('0x6')]=_0x649dfd[_0x20bd('0x31')]();break;default:_0x649dfd[_0x20bd('0x2e')](0x7&_0x438ff5);}}return _0x33be21;},_0x21df13[_0x20bd('0x1f')]=function(_0x2e3497){return _0x2e3497 instanceof j||(_0x2e3497=new j(_0x2e3497)),this[_0x20bd('0x4b')](_0x2e3497,_0x2e3497[_0x20bd('0x28')]());},_0x21df13['verify']=function(_0x119539){if(_0x20bd('0x8')!=typeof _0x119539||null===_0x119539)return _0x20bd('0x8d');if(null!=_0x119539[_0x20bd('0x86')]&&_0x119539[_0x20bd('0x10')](_0x20bd('0x86'))){let _0x3641b3=v[_0x20bd('0x8b')][_0x20bd('0x57')](_0x119539[_0x20bd('0x86')]);if(_0x3641b3)return _0x20bd('0x21')+_0x3641b3;}if(null!=_0x119539[_0x20bd('0x3c')]&&_0x119539[_0x20bd('0x10')](_0x20bd('0x3c'))){let _0x4b3464=v[_0x20bd('0x8b')]['verify'](_0x119539[_0x20bd('0x3c')]);if(_0x4b3464)return _0x20bd('0x95')+_0x4b3464;}if(null!=_0x119539[_0x20bd('0x97')]&&_0x119539[_0x20bd('0x10')](_0x20bd('0x97'))){let _0x137889=v[_0x20bd('0x8b')][_0x20bd('0x57')](_0x119539['graveyardPosition']);if(_0x137889)return _0x20bd('0x87')+_0x137889;}return null!=_0x119539[_0x20bd('0x2a')]&&_0x119539[_0x20bd('0x10')](_0x20bd('0x2a'))&&!k[_0x20bd('0x6f')](_0x119539[_0x20bd('0x2a')])?_0x20bd('0x7c'):null!=_0x119539[_0x20bd('0x6')]&&_0x119539[_0x20bd('0x10')](_0x20bd('0x6'))&&'boolean'!=typeof _0x119539[_0x20bd('0x6')]?_0x20bd('0x33'):null;},_0x21df13[_0x20bd('0x67')]=function(_0x4e6440){if(_0x4e6440 instanceof v[_0x20bd('0x51')])return _0x4e6440;let _0xdbda77=new v[(_0x20bd('0x51'))]();if(null!=_0x4e6440['sourcePosition']){if(_0x20bd('0x8')!=typeof _0x4e6440[_0x20bd('0x86')])throw TypeError(_0x20bd('0x0'));_0xdbda77[_0x20bd('0x86')]=v[_0x20bd('0x8b')][_0x20bd('0x67')](_0x4e6440[_0x20bd('0x86')]);}if(null!=_0x4e6440[_0x20bd('0x3c')]){if(_0x20bd('0x8')!=typeof _0x4e6440[_0x20bd('0x3c')])throw TypeError(_0x20bd('0x7d'));_0xdbda77[_0x20bd('0x3c')]=v[_0x20bd('0x8b')][_0x20bd('0x67')](_0x4e6440[_0x20bd('0x3c')]);}if(null!=_0x4e6440['graveyardPosition']){if('object'!=typeof _0x4e6440['graveyardPosition'])throw TypeError(_0x20bd('0x18'));_0xdbda77['graveyardPosition']=v[_0x20bd('0x8b')]['fromObject'](_0x4e6440[_0x20bd('0x97')]);}return null!=_0x4e6440['howMany']&&(_0xdbda77[_0x20bd('0x2a')]=_0x4e6440[_0x20bd('0x2a')]>>>0x0),null!=_0x4e6440[_0x20bd('0x6')]&&(_0xdbda77[_0x20bd('0x6')]=Boolean(_0x4e6440['wasUndone'])),_0xdbda77;},_0x21df13[_0x20bd('0x7a')]=function(_0x4ab0c3,_0x360225){_0x360225||(_0x360225={});let _0xc4032f={};return _0x360225[_0x20bd('0x8a')]&&(_0xc4032f[_0x20bd('0x86')]=null,_0xc4032f[_0x20bd('0x3c')]=null,_0xc4032f['graveyardPosition']=null,_0xc4032f[_0x20bd('0x2a')]=0x0,_0xc4032f['wasUndone']=!0x1),null!=_0x4ab0c3[_0x20bd('0x86')]&&_0x4ab0c3[_0x20bd('0x10')](_0x20bd('0x86'))&&(_0xc4032f[_0x20bd('0x86')]=v['Position'][_0x20bd('0x7a')](_0x4ab0c3[_0x20bd('0x86')],_0x360225)),null!=_0x4ab0c3[_0x20bd('0x3c')]&&_0x4ab0c3[_0x20bd('0x10')](_0x20bd('0x3c'))&&(_0xc4032f[_0x20bd('0x3c')]=v[_0x20bd('0x8b')]['toObject'](_0x4ab0c3[_0x20bd('0x3c')],_0x360225)),null!=_0x4ab0c3[_0x20bd('0x97')]&&_0x4ab0c3[_0x20bd('0x10')](_0x20bd('0x97'))&&(_0xc4032f[_0x20bd('0x97')]=v[_0x20bd('0x8b')][_0x20bd('0x7a')](_0x4ab0c3[_0x20bd('0x97')],_0x360225)),null!=_0x4ab0c3[_0x20bd('0x2a')]&&_0x4ab0c3[_0x20bd('0x10')](_0x20bd('0x2a'))&&(_0xc4032f[_0x20bd('0x2a')]=_0x4ab0c3['howMany']),null!=_0x4ab0c3[_0x20bd('0x6')]&&_0x4ab0c3[_0x20bd('0x10')]('wasUndone')&&(_0xc4032f[_0x20bd('0x6')]=_0x4ab0c3[_0x20bd('0x6')]),_0xc4032f;},_0x21df13[_0x20bd('0x3a')][_0x20bd('0x78')]=function(){return this['constructor'][_0x20bd('0x7a')](this,_0x1ecc16[_0x20bd('0xa')][_0x20bd('0x4')]);},_0x21df13[_0x20bd('0x17')]=function(_0x406b6a){return void 0x0===_0x406b6a&&(_0x406b6a='type.googleapis.com'),_0x406b6a+_0x20bd('0xe');},_0x21df13;})();export const MoveOperation=v[_0x20bd('0x52')]=(()=>{function _0x31cc69(_0x43fdb8){if(_0x43fdb8)for(let _0x306220=Object['keys'](_0x43fdb8),_0x1d2ae0=0x0;_0x1d2ae0<_0x306220[_0x20bd('0x44')];++_0x1d2ae0)null!=_0x43fdb8[_0x306220[_0x1d2ae0]]&&(this[_0x306220[_0x1d2ae0]]=_0x43fdb8[_0x306220[_0x1d2ae0]]);}return _0x31cc69['prototype'][_0x20bd('0x86')]=null,_0x31cc69[_0x20bd('0x3a')][_0x20bd('0x2a')]=0x0,_0x31cc69['prototype'][_0x20bd('0x3c')]=null,_0x31cc69[_0x20bd('0x3a')]['wasUndone']=!0x1,_0x31cc69[_0x20bd('0x83')]=function(_0x4d1a22){return new _0x31cc69(_0x4d1a22);},_0x31cc69['encode']=function(_0x24e6a8,_0x4966dd){return _0x4966dd||(_0x4966dd=y[_0x20bd('0x83')]()),null!=_0x24e6a8['sourcePosition']&&Object['hasOwnProperty']['call'](_0x24e6a8,_0x20bd('0x86'))&&v[_0x20bd('0x8b')][_0x20bd('0x1a')](_0x24e6a8[_0x20bd('0x86')],_0x4966dd[_0x20bd('0x28')](0xa)[_0x20bd('0x71')]())[_0x20bd('0x58')](),null!=_0x24e6a8[_0x20bd('0x2a')]&&Object[_0x20bd('0x10')][_0x20bd('0x37')](_0x24e6a8,'howMany')&&_0x4966dd[_0x20bd('0x28')](0x10)[_0x20bd('0x28')](_0x24e6a8['howMany']),null!=_0x24e6a8['targetPosition']&&Object[_0x20bd('0x10')][_0x20bd('0x37')](_0x24e6a8,'targetPosition')&&v[_0x20bd('0x8b')]['encode'](_0x24e6a8[_0x20bd('0x3c')],_0x4966dd[_0x20bd('0x28')](0x1a)[_0x20bd('0x71')]())['ldelim'](),null!=_0x24e6a8[_0x20bd('0x6')]&&Object[_0x20bd('0x10')]['call'](_0x24e6a8,'wasUndone')&&_0x4966dd['uint32'](0x20)[_0x20bd('0x31')](_0x24e6a8['wasUndone']),_0x4966dd;},_0x31cc69[_0x20bd('0x2f')]=function(_0xb38d6d,_0x29321d){return this[_0x20bd('0x1a')](_0xb38d6d,_0x29321d)[_0x20bd('0x58')]();},_0x31cc69[_0x20bd('0x4b')]=function(_0x37f3c9,_0x15c388){_0x37f3c9 instanceof j||(_0x37f3c9=j[_0x20bd('0x83')](_0x37f3c9));let _0x574e75=void 0x0===_0x15c388?_0x37f3c9['len']:_0x37f3c9['pos']+_0x15c388,_0x48d51b=new v[(_0x20bd('0x52'))]();for(;_0x37f3c9[_0x20bd('0x4a')]<_0x574e75;){let _0x1c1cdb=_0x37f3c9[_0x20bd('0x28')]();switch(_0x1c1cdb>>>0x3){case 0x1:_0x48d51b[_0x20bd('0x86')]=v['Position'][_0x20bd('0x4b')](_0x37f3c9,_0x37f3c9[_0x20bd('0x28')]());break;case 0x2:_0x48d51b['howMany']=_0x37f3c9['uint32']();break;case 0x3:_0x48d51b[_0x20bd('0x3c')]=v[_0x20bd('0x8b')][_0x20bd('0x4b')](_0x37f3c9,_0x37f3c9['uint32']());break;case 0x4:_0x48d51b['wasUndone']=_0x37f3c9['bool']();break;default:_0x37f3c9[_0x20bd('0x2e')](0x7&_0x1c1cdb);}}return _0x48d51b;},_0x31cc69['decodeDelimited']=function(_0xb0ffed){return _0xb0ffed instanceof j||(_0xb0ffed=new j(_0xb0ffed)),this[_0x20bd('0x4b')](_0xb0ffed,_0xb0ffed[_0x20bd('0x28')]());},_0x31cc69[_0x20bd('0x57')]=function(_0xd34eb2){if(_0x20bd('0x8')!=typeof _0xd34eb2||null===_0xd34eb2)return _0x20bd('0x8d');if(null!=_0xd34eb2[_0x20bd('0x86')]&&_0xd34eb2['hasOwnProperty'](_0x20bd('0x86'))){let _0x32d542=v[_0x20bd('0x8b')][_0x20bd('0x57')](_0xd34eb2[_0x20bd('0x86')]);if(_0x32d542)return _0x20bd('0x21')+_0x32d542;}if(null!=_0xd34eb2['howMany']&&_0xd34eb2[_0x20bd('0x10')](_0x20bd('0x2a'))&&!k['isInteger'](_0xd34eb2[_0x20bd('0x2a')]))return _0x20bd('0x7c');if(null!=_0xd34eb2[_0x20bd('0x3c')]&&_0xd34eb2[_0x20bd('0x10')](_0x20bd('0x3c'))){let _0x9731f6=v[_0x20bd('0x8b')][_0x20bd('0x57')](_0xd34eb2[_0x20bd('0x3c')]);if(_0x9731f6)return _0x20bd('0x95')+_0x9731f6;}return null!=_0xd34eb2[_0x20bd('0x6')]&&_0xd34eb2['hasOwnProperty'](_0x20bd('0x6'))&&_0x20bd('0x96')!=typeof _0xd34eb2['wasUndone']?_0x20bd('0x33'):null;},_0x31cc69['fromObject']=function(_0x204e2b){if(_0x204e2b instanceof v[_0x20bd('0x52')])return _0x204e2b;let _0x550611=new v[(_0x20bd('0x52'))]();if(null!=_0x204e2b[_0x20bd('0x86')]){if(_0x20bd('0x8')!=typeof _0x204e2b['sourcePosition'])throw TypeError(_0x20bd('0x38'));_0x550611[_0x20bd('0x86')]=v[_0x20bd('0x8b')]['fromObject'](_0x204e2b[_0x20bd('0x86')]);}if(null!=_0x204e2b['howMany']&&(_0x550611[_0x20bd('0x2a')]=_0x204e2b[_0x20bd('0x2a')]>>>0x0),null!=_0x204e2b['targetPosition']){if(_0x20bd('0x8')!=typeof _0x204e2b[_0x20bd('0x3c')])throw TypeError(_0x20bd('0xb'));_0x550611[_0x20bd('0x3c')]=v[_0x20bd('0x8b')][_0x20bd('0x67')](_0x204e2b[_0x20bd('0x3c')]);}return null!=_0x204e2b['wasUndone']&&(_0x550611[_0x20bd('0x6')]=Boolean(_0x204e2b[_0x20bd('0x6')])),_0x550611;},_0x31cc69[_0x20bd('0x7a')]=function(_0x2fbcf4,_0x39899a){_0x39899a||(_0x39899a={});let _0x1d5660={};return _0x39899a[_0x20bd('0x8a')]&&(_0x1d5660['sourcePosition']=null,_0x1d5660['howMany']=0x0,_0x1d5660['targetPosition']=null,_0x1d5660[_0x20bd('0x6')]=!0x1),null!=_0x2fbcf4[_0x20bd('0x86')]&&_0x2fbcf4['hasOwnProperty']('sourcePosition')&&(_0x1d5660[_0x20bd('0x86')]=v[_0x20bd('0x8b')][_0x20bd('0x7a')](_0x2fbcf4['sourcePosition'],_0x39899a)),null!=_0x2fbcf4[_0x20bd('0x2a')]&&_0x2fbcf4[_0x20bd('0x10')](_0x20bd('0x2a'))&&(_0x1d5660[_0x20bd('0x2a')]=_0x2fbcf4[_0x20bd('0x2a')]),null!=_0x2fbcf4[_0x20bd('0x3c')]&&_0x2fbcf4[_0x20bd('0x10')](_0x20bd('0x3c'))&&(_0x1d5660['targetPosition']=v[_0x20bd('0x8b')]['toObject'](_0x2fbcf4[_0x20bd('0x3c')],_0x39899a)),null!=_0x2fbcf4[_0x20bd('0x6')]&&_0x2fbcf4['hasOwnProperty']('wasUndone')&&(_0x1d5660[_0x20bd('0x6')]=_0x2fbcf4[_0x20bd('0x6')]),_0x1d5660;},_0x31cc69[_0x20bd('0x3a')][_0x20bd('0x78')]=function(){return this[_0x20bd('0x3')][_0x20bd('0x7a')](this,_0x1ecc16[_0x20bd('0xa')][_0x20bd('0x4')]);},_0x31cc69['getTypeUrl']=function(_0x41d12d){return void 0x0===_0x41d12d&&(_0x41d12d=_0x20bd('0x1')),_0x41d12d+_0x20bd('0x69');},_0x31cc69;})();export const RenameOperation=v[_0x20bd('0x94')]=(()=>{function _0x103166(_0x43eaad){if(_0x43eaad)for(let _0x3ee31a=Object[_0x20bd('0xf')](_0x43eaad),_0x46a9cf=0x0;_0x46a9cf<_0x3ee31a[_0x20bd('0x44')];++_0x46a9cf)null!=_0x43eaad[_0x3ee31a[_0x46a9cf]]&&(this[_0x3ee31a[_0x46a9cf]]=_0x43eaad[_0x3ee31a[_0x46a9cf]]);}return _0x103166[_0x20bd('0x3a')][_0x20bd('0x45')]=null,_0x103166[_0x20bd('0x3a')][_0x20bd('0x53')]='',_0x103166[_0x20bd('0x3a')]['newName']='',_0x103166[_0x20bd('0x3a')][_0x20bd('0x6')]=!0x1,_0x103166['create']=function(_0x47f58c){return new _0x103166(_0x47f58c);},_0x103166[_0x20bd('0x1a')]=function(_0x108d08,_0x2aa687){return _0x2aa687||(_0x2aa687=y[_0x20bd('0x83')]()),null!=_0x108d08[_0x20bd('0x45')]&&Object[_0x20bd('0x10')][_0x20bd('0x37')](_0x108d08,_0x20bd('0x45'))&&v[_0x20bd('0x8b')][_0x20bd('0x1a')](_0x108d08[_0x20bd('0x45')],_0x2aa687['uint32'](0xa)['fork']())[_0x20bd('0x58')](),null!=_0x108d08[_0x20bd('0x53')]&&Object[_0x20bd('0x10')][_0x20bd('0x37')](_0x108d08,'oldName')&&_0x2aa687[_0x20bd('0x28')](0x12)[_0x20bd('0x66')](_0x108d08[_0x20bd('0x53')]),null!=_0x108d08['newName']&&Object['hasOwnProperty']['call'](_0x108d08,_0x20bd('0x59'))&&_0x2aa687[_0x20bd('0x28')](0x1a)[_0x20bd('0x66')](_0x108d08['newName']),null!=_0x108d08[_0x20bd('0x6')]&&Object[_0x20bd('0x10')]['call'](_0x108d08,_0x20bd('0x6'))&&_0x2aa687[_0x20bd('0x28')](0x20)[_0x20bd('0x31')](_0x108d08[_0x20bd('0x6')]),_0x2aa687;},_0x103166[_0x20bd('0x2f')]=function(_0x8818c8,_0x1a821b){return this[_0x20bd('0x1a')](_0x8818c8,_0x1a821b)[_0x20bd('0x58')]();},_0x103166[_0x20bd('0x4b')]=function(_0x1df928,_0x9e2f93){_0x1df928 instanceof j||(_0x1df928=j[_0x20bd('0x83')](_0x1df928));let _0x11ecc3=void 0x0===_0x9e2f93?_0x1df928['len']:_0x1df928[_0x20bd('0x4a')]+_0x9e2f93,_0xb7f85e=new v[(_0x20bd('0x94'))]();for(;_0x1df928['pos']<_0x11ecc3;){let _0x2cc7f5=_0x1df928['uint32']();switch(_0x2cc7f5>>>0x3){case 0x1:_0xb7f85e[_0x20bd('0x45')]=v[_0x20bd('0x8b')][_0x20bd('0x4b')](_0x1df928,_0x1df928[_0x20bd('0x28')]());break;case 0x2:_0xb7f85e[_0x20bd('0x53')]=_0x1df928[_0x20bd('0x66')]();break;case 0x3:_0xb7f85e[_0x20bd('0x59')]=_0x1df928[_0x20bd('0x66')]();break;case 0x4:_0xb7f85e['wasUndone']=_0x1df928[_0x20bd('0x31')]();break;default:_0x1df928[_0x20bd('0x2e')](0x7&_0x2cc7f5);}}return _0xb7f85e;},_0x103166['decodeDelimited']=function(_0x481556){return _0x481556 instanceof j||(_0x481556=new j(_0x481556)),this[_0x20bd('0x4b')](_0x481556,_0x481556[_0x20bd('0x28')]());},_0x103166[_0x20bd('0x57')]=function(_0x288ff6){if(_0x20bd('0x8')!=typeof _0x288ff6||null===_0x288ff6)return _0x20bd('0x8d');if(null!=_0x288ff6[_0x20bd('0x45')]&&_0x288ff6[_0x20bd('0x10')]('position')){let _0x292ac5=v['Position'][_0x20bd('0x57')](_0x288ff6[_0x20bd('0x45')]);if(_0x292ac5)return'position.'+_0x292ac5;}return null!=_0x288ff6[_0x20bd('0x53')]&&_0x288ff6[_0x20bd('0x10')](_0x20bd('0x53'))&&!k[_0x20bd('0x6c')](_0x288ff6[_0x20bd('0x53')])?_0x20bd('0x3f'):null!=_0x288ff6[_0x20bd('0x59')]&&_0x288ff6[_0x20bd('0x10')](_0x20bd('0x59'))&&!k[_0x20bd('0x6c')](_0x288ff6[_0x20bd('0x59')])?_0x20bd('0x63'):null!=_0x288ff6[_0x20bd('0x6')]&&_0x288ff6[_0x20bd('0x10')](_0x20bd('0x6'))&&_0x20bd('0x96')!=typeof _0x288ff6['wasUndone']?_0x20bd('0x33'):null;},_0x103166['fromObject']=function(_0x326d47){if(_0x326d47 instanceof v[_0x20bd('0x94')])return _0x326d47;let _0x48a15b=new v['RenameOperation']();if(null!=_0x326d47[_0x20bd('0x45')]){if(_0x20bd('0x8')!=typeof _0x326d47['position'])throw TypeError(_0x20bd('0x64'));_0x48a15b[_0x20bd('0x45')]=v[_0x20bd('0x8b')][_0x20bd('0x67')](_0x326d47[_0x20bd('0x45')]);}return null!=_0x326d47[_0x20bd('0x53')]&&(_0x48a15b[_0x20bd('0x53')]=String(_0x326d47[_0x20bd('0x53')])),null!=_0x326d47[_0x20bd('0x59')]&&(_0x48a15b[_0x20bd('0x59')]=String(_0x326d47[_0x20bd('0x59')])),null!=_0x326d47['wasUndone']&&(_0x48a15b[_0x20bd('0x6')]=Boolean(_0x326d47[_0x20bd('0x6')])),_0x48a15b;},_0x103166['toObject']=function(_0x372e4a,_0x1932a2){_0x1932a2||(_0x1932a2={});let _0x5c94d0={};return _0x1932a2[_0x20bd('0x8a')]&&(_0x5c94d0[_0x20bd('0x45')]=null,_0x5c94d0[_0x20bd('0x53')]='',_0x5c94d0[_0x20bd('0x59')]='',_0x5c94d0[_0x20bd('0x6')]=!0x1),null!=_0x372e4a[_0x20bd('0x45')]&&_0x372e4a['hasOwnProperty'](_0x20bd('0x45'))&&(_0x5c94d0[_0x20bd('0x45')]=v[_0x20bd('0x8b')][_0x20bd('0x7a')](_0x372e4a['position'],_0x1932a2)),null!=_0x372e4a['oldName']&&_0x372e4a['hasOwnProperty'](_0x20bd('0x53'))&&(_0x5c94d0[_0x20bd('0x53')]=_0x372e4a[_0x20bd('0x53')]),null!=_0x372e4a[_0x20bd('0x59')]&&_0x372e4a['hasOwnProperty'](_0x20bd('0x59'))&&(_0x5c94d0[_0x20bd('0x59')]=_0x372e4a[_0x20bd('0x59')]),null!=_0x372e4a[_0x20bd('0x6')]&&_0x372e4a[_0x20bd('0x10')](_0x20bd('0x6'))&&(_0x5c94d0[_0x20bd('0x6')]=_0x372e4a[_0x20bd('0x6')]),_0x5c94d0;},_0x103166['prototype'][_0x20bd('0x78')]=function(){return this[_0x20bd('0x3')][_0x20bd('0x7a')](this,_0x1ecc16[_0x20bd('0xa')][_0x20bd('0x4')]);},_0x103166['getTypeUrl']=function(_0x55ce2d){return void 0x0===_0x55ce2d&&(_0x55ce2d=_0x20bd('0x1')),_0x55ce2d+_0x20bd('0x1e');},_0x103166;})();export const RootAttributeOperation=v['RootAttributeOperation']=(()=>{function _0xb5056b(_0xe46016){if(_0xe46016)for(let _0x3c4fb9=Object[_0x20bd('0xf')](_0xe46016),_0x2bd90d=0x0;_0x2bd90d<_0x3c4fb9[_0x20bd('0x44')];++_0x2bd90d)null!=_0xe46016[_0x3c4fb9[_0x2bd90d]]&&(this[_0x3c4fb9[_0x2bd90d]]=_0xe46016[_0x3c4fb9[_0x2bd90d]]);}return _0xb5056b[_0x20bd('0x3a')]['root']='',_0xb5056b[_0x20bd('0x3a')][_0x20bd('0x70')]='',_0xb5056b[_0x20bd('0x3a')][_0x20bd('0x1d')]=!0x1,_0xb5056b[_0x20bd('0x3a')][_0x20bd('0x9')]='',_0xb5056b['prototype'][_0x20bd('0x46')]=!0x1,_0xb5056b['prototype']['newValueJson']='',_0xb5056b[_0x20bd('0x3a')]['wasUndone']=!0x1,_0xb5056b[_0x20bd('0x83')]=function(_0x40701a){return new _0xb5056b(_0x40701a);},_0xb5056b[_0x20bd('0x1a')]=function(_0x2ae965,_0x32fdd7){return _0x32fdd7||(_0x32fdd7=y[_0x20bd('0x83')]()),null!=_0x2ae965[_0x20bd('0x34')]&&Object[_0x20bd('0x10')]['call'](_0x2ae965,'root')&&_0x32fdd7[_0x20bd('0x28')](0xa)[_0x20bd('0x66')](_0x2ae965[_0x20bd('0x34')]),null!=_0x2ae965[_0x20bd('0x70')]&&Object[_0x20bd('0x10')][_0x20bd('0x37')](_0x2ae965,'key')&&_0x32fdd7[_0x20bd('0x28')](0x12)[_0x20bd('0x66')](_0x2ae965[_0x20bd('0x70')]),null!=_0x2ae965[_0x20bd('0x1d')]&&Object[_0x20bd('0x10')][_0x20bd('0x37')](_0x2ae965,_0x20bd('0x1d'))&&_0x32fdd7['uint32'](0x18)[_0x20bd('0x31')](_0x2ae965[_0x20bd('0x1d')]),null!=_0x2ae965[_0x20bd('0x9')]&&Object[_0x20bd('0x10')]['call'](_0x2ae965,_0x20bd('0x9'))&&_0x32fdd7[_0x20bd('0x28')](0x22)[_0x20bd('0x66')](_0x2ae965['oldValueJson']),null!=_0x2ae965[_0x20bd('0x46')]&&Object[_0x20bd('0x10')][_0x20bd('0x37')](_0x2ae965,_0x20bd('0x46'))&&_0x32fdd7['uint32'](0x28)['bool'](_0x2ae965[_0x20bd('0x46')]),null!=_0x2ae965[_0x20bd('0x55')]&&Object[_0x20bd('0x10')]['call'](_0x2ae965,'newValueJson')&&_0x32fdd7['uint32'](0x32)[_0x20bd('0x66')](_0x2ae965[_0x20bd('0x55')]),null!=_0x2ae965[_0x20bd('0x6')]&&Object[_0x20bd('0x10')][_0x20bd('0x37')](_0x2ae965,'wasUndone')&&_0x32fdd7['uint32'](0x38)[_0x20bd('0x31')](_0x2ae965[_0x20bd('0x6')]),_0x32fdd7;},_0xb5056b[_0x20bd('0x2f')]=function(_0x32b634,_0x384e18){return this[_0x20bd('0x1a')](_0x32b634,_0x384e18)[_0x20bd('0x58')]();},_0xb5056b[_0x20bd('0x4b')]=function(_0x1c2b0e,_0x297b12){_0x1c2b0e instanceof j||(_0x1c2b0e=j[_0x20bd('0x83')](_0x1c2b0e));let _0x225f73=void 0x0===_0x297b12?_0x1c2b0e['len']:_0x1c2b0e[_0x20bd('0x4a')]+_0x297b12,_0x40a930=new v[(_0x20bd('0x2b'))]();for(;_0x1c2b0e[_0x20bd('0x4a')]<_0x225f73;){let _0x1669f7=_0x1c2b0e['uint32']();switch(_0x1669f7>>>0x3){case 0x1:_0x40a930['root']=_0x1c2b0e['string']();break;case 0x2:_0x40a930[_0x20bd('0x70')]=_0x1c2b0e[_0x20bd('0x66')]();break;case 0x3:_0x40a930[_0x20bd('0x1d')]=_0x1c2b0e[_0x20bd('0x31')]();break;case 0x4:_0x40a930[_0x20bd('0x9')]=_0x1c2b0e[_0x20bd('0x66')]();break;case 0x5:_0x40a930[_0x20bd('0x46')]=_0x1c2b0e['bool']();break;case 0x6:_0x40a930[_0x20bd('0x55')]=_0x1c2b0e[_0x20bd('0x66')]();break;case 0x7:_0x40a930[_0x20bd('0x6')]=_0x1c2b0e[_0x20bd('0x31')]();break;default:_0x1c2b0e[_0x20bd('0x2e')](0x7&_0x1669f7);}}return _0x40a930;},_0xb5056b['decodeDelimited']=function(_0x38e17e){return _0x38e17e instanceof j||(_0x38e17e=new j(_0x38e17e)),this['decode'](_0x38e17e,_0x38e17e[_0x20bd('0x28')]());},_0xb5056b[_0x20bd('0x57')]=function(_0x5ce44d){return _0x20bd('0x8')!=typeof _0x5ce44d||null===_0x5ce44d?_0x20bd('0x8d'):null!=_0x5ce44d[_0x20bd('0x34')]&&_0x5ce44d['hasOwnProperty']('root')&&!k[_0x20bd('0x6c')](_0x5ce44d[_0x20bd('0x34')])?_0x20bd('0x92'):null!=_0x5ce44d[_0x20bd('0x70')]&&_0x5ce44d[_0x20bd('0x10')](_0x20bd('0x70'))&&!k[_0x20bd('0x6c')](_0x5ce44d[_0x20bd('0x70')])?_0x20bd('0x7'):null!=_0x5ce44d[_0x20bd('0x1d')]&&_0x5ce44d[_0x20bd('0x10')](_0x20bd('0x1d'))&&_0x20bd('0x96')!=typeof _0x5ce44d[_0x20bd('0x1d')]?_0x20bd('0x11'):null!=_0x5ce44d[_0x20bd('0x9')]&&_0x5ce44d[_0x20bd('0x10')](_0x20bd('0x9'))&&!k[_0x20bd('0x6c')](_0x5ce44d[_0x20bd('0x9')])?'oldValueJson:\x20string\x20expected':null!=_0x5ce44d[_0x20bd('0x46')]&&_0x5ce44d[_0x20bd('0x10')]('newValueBoolean')&&'boolean'!=typeof _0x5ce44d[_0x20bd('0x46')]?_0x20bd('0x13'):null!=_0x5ce44d[_0x20bd('0x55')]&&_0x5ce44d[_0x20bd('0x10')](_0x20bd('0x55'))&&!k[_0x20bd('0x6c')](_0x5ce44d['newValueJson'])?_0x20bd('0x4d'):null!=_0x5ce44d['wasUndone']&&_0x5ce44d[_0x20bd('0x10')](_0x20bd('0x6'))&&'boolean'!=typeof _0x5ce44d[_0x20bd('0x6')]?_0x20bd('0x33'):null;},_0xb5056b['fromObject']=function(_0x5a7b58){if(_0x5a7b58 instanceof v[_0x20bd('0x2b')])return _0x5a7b58;let _0x3172fe=new v['RootAttributeOperation']();return null!=_0x5a7b58[_0x20bd('0x34')]&&(_0x3172fe['root']=String(_0x5a7b58['root'])),null!=_0x5a7b58[_0x20bd('0x70')]&&(_0x3172fe['key']=String(_0x5a7b58['key'])),null!=_0x5a7b58[_0x20bd('0x1d')]&&(_0x3172fe['oldValueBoolean']=Boolean(_0x5a7b58['oldValueBoolean'])),null!=_0x5a7b58['oldValueJson']&&(_0x3172fe[_0x20bd('0x9')]=String(_0x5a7b58[_0x20bd('0x9')])),null!=_0x5a7b58[_0x20bd('0x46')]&&(_0x3172fe[_0x20bd('0x46')]=Boolean(_0x5a7b58[_0x20bd('0x46')])),null!=_0x5a7b58[_0x20bd('0x55')]&&(_0x3172fe['newValueJson']=String(_0x5a7b58['newValueJson'])),null!=_0x5a7b58[_0x20bd('0x6')]&&(_0x3172fe[_0x20bd('0x6')]=Boolean(_0x5a7b58[_0x20bd('0x6')])),_0x3172fe;},_0xb5056b[_0x20bd('0x7a')]=function(_0x1569de,_0x5d79f){_0x5d79f||(_0x5d79f={});let _0x1c94a1={};return _0x5d79f[_0x20bd('0x8a')]&&(_0x1c94a1[_0x20bd('0x34')]='',_0x1c94a1[_0x20bd('0x70')]='',_0x1c94a1[_0x20bd('0x1d')]=!0x1,_0x1c94a1[_0x20bd('0x9')]='',_0x1c94a1[_0x20bd('0x46')]=!0x1,_0x1c94a1[_0x20bd('0x55')]='',_0x1c94a1[_0x20bd('0x6')]=!0x1),null!=_0x1569de[_0x20bd('0x34')]&&_0x1569de['hasOwnProperty'](_0x20bd('0x34'))&&(_0x1c94a1['root']=_0x1569de[_0x20bd('0x34')]),null!=_0x1569de['key']&&_0x1569de['hasOwnProperty']('key')&&(_0x1c94a1[_0x20bd('0x70')]=_0x1569de[_0x20bd('0x70')]),null!=_0x1569de['oldValueBoolean']&&_0x1569de['hasOwnProperty'](_0x20bd('0x1d'))&&(_0x1c94a1[_0x20bd('0x1d')]=_0x1569de['oldValueBoolean']),null!=_0x1569de[_0x20bd('0x9')]&&_0x1569de[_0x20bd('0x10')](_0x20bd('0x9'))&&(_0x1c94a1[_0x20bd('0x9')]=_0x1569de[_0x20bd('0x9')]),null!=_0x1569de[_0x20bd('0x46')]&&_0x1569de[_0x20bd('0x10')](_0x20bd('0x46'))&&(_0x1c94a1[_0x20bd('0x46')]=_0x1569de['newValueBoolean']),null!=_0x1569de[_0x20bd('0x55')]&&_0x1569de['hasOwnProperty']('newValueJson')&&(_0x1c94a1[_0x20bd('0x55')]=_0x1569de[_0x20bd('0x55')]),null!=_0x1569de[_0x20bd('0x6')]&&_0x1569de[_0x20bd('0x10')]('wasUndone')&&(_0x1c94a1[_0x20bd('0x6')]=_0x1569de[_0x20bd('0x6')]),_0x1c94a1;},_0xb5056b['prototype'][_0x20bd('0x78')]=function(){return this['constructor'][_0x20bd('0x7a')](this,_0x1ecc16['util'][_0x20bd('0x4')]);},_0xb5056b[_0x20bd('0x17')]=function(_0x1aa27d){return void 0x0===_0x1aa27d&&(_0x1aa27d=_0x20bd('0x1')),_0x1aa27d+_0x20bd('0xc');},_0xb5056b;})();export const RootOperation=v['RootOperation']=(()=>{function _0x3324a3(_0x172321){if(_0x172321)for(let _0x1c66a9=Object[_0x20bd('0xf')](_0x172321),_0x2a2a55=0x0;_0x2a2a55<_0x1c66a9['length'];++_0x2a2a55)null!=_0x172321[_0x1c66a9[_0x2a2a55]]&&(this[_0x1c66a9[_0x2a2a55]]=_0x172321[_0x1c66a9[_0x2a2a55]]);}return _0x3324a3[_0x20bd('0x3a')]['rootName']='',_0x3324a3[_0x20bd('0x3a')][_0x20bd('0x56')]='',_0x3324a3[_0x20bd('0x3a')][_0x20bd('0x50')]=!0x1,_0x3324a3[_0x20bd('0x3a')][_0x20bd('0x6')]=!0x1,_0x3324a3['create']=function(_0x10de04){return new _0x3324a3(_0x10de04);},_0x3324a3[_0x20bd('0x1a')]=function(_0x12a1e6,_0x6a1b1d){return _0x6a1b1d||(_0x6a1b1d=y['create']()),null!=_0x12a1e6['rootName']&&Object[_0x20bd('0x10')]['call'](_0x12a1e6,'rootName')&&_0x6a1b1d['uint32'](0xa)[_0x20bd('0x66')](_0x12a1e6['rootName']),null!=_0x12a1e6['elementName']&&Object['hasOwnProperty']['call'](_0x12a1e6,_0x20bd('0x56'))&&_0x6a1b1d['uint32'](0x12)['string'](_0x12a1e6[_0x20bd('0x56')]),null!=_0x12a1e6[_0x20bd('0x50')]&&Object['hasOwnProperty'][_0x20bd('0x37')](_0x12a1e6,'isAdd')&&_0x6a1b1d[_0x20bd('0x28')](0x18)['bool'](_0x12a1e6['isAdd']),null!=_0x12a1e6['wasUndone']&&Object[_0x20bd('0x10')]['call'](_0x12a1e6,_0x20bd('0x6'))&&_0x6a1b1d[_0x20bd('0x28')](0x20)[_0x20bd('0x31')](_0x12a1e6[_0x20bd('0x6')]),_0x6a1b1d;},_0x3324a3[_0x20bd('0x2f')]=function(_0x4be60e,_0xe1b19f){return this[_0x20bd('0x1a')](_0x4be60e,_0xe1b19f)[_0x20bd('0x58')]();},_0x3324a3['decode']=function(_0x124ff6,_0x22a5fd){_0x124ff6 instanceof j||(_0x124ff6=j[_0x20bd('0x83')](_0x124ff6));let _0x2bac5e=void 0x0===_0x22a5fd?_0x124ff6[_0x20bd('0x68')]:_0x124ff6['pos']+_0x22a5fd,_0x44a717=new v[(_0x20bd('0x5e'))]();for(;_0x124ff6[_0x20bd('0x4a')]<_0x2bac5e;){let _0x747157=_0x124ff6[_0x20bd('0x28')]();switch(_0x747157>>>0x3){case 0x1:_0x44a717[_0x20bd('0x48')]=_0x124ff6['string']();break;case 0x2:_0x44a717[_0x20bd('0x56')]=_0x124ff6['string']();break;case 0x3:_0x44a717[_0x20bd('0x50')]=_0x124ff6[_0x20bd('0x31')]();break;case 0x4:_0x44a717['wasUndone']=_0x124ff6['bool']();break;default:_0x124ff6[_0x20bd('0x2e')](0x7&_0x747157);}}return _0x44a717;},_0x3324a3['decodeDelimited']=function(_0x3a8236){return _0x3a8236 instanceof j||(_0x3a8236=new j(_0x3a8236)),this[_0x20bd('0x4b')](_0x3a8236,_0x3a8236[_0x20bd('0x28')]());},_0x3324a3[_0x20bd('0x57')]=function(_0x350dd2){return _0x20bd('0x8')!=typeof _0x350dd2||null===_0x350dd2?_0x20bd('0x8d'):null!=_0x350dd2[_0x20bd('0x48')]&&_0x350dd2['hasOwnProperty']('rootName')&&!k[_0x20bd('0x6c')](_0x350dd2[_0x20bd('0x48')])?_0x20bd('0x2d'):null!=_0x350dd2['elementName']&&_0x350dd2[_0x20bd('0x10')](_0x20bd('0x56'))&&!k['isString'](_0x350dd2[_0x20bd('0x56')])?_0x20bd('0x93'):null!=_0x350dd2[_0x20bd('0x50')]&&_0x350dd2['hasOwnProperty'](_0x20bd('0x50'))&&'boolean'!=typeof _0x350dd2[_0x20bd('0x50')]?_0x20bd('0x8e'):null!=_0x350dd2[_0x20bd('0x6')]&&_0x350dd2[_0x20bd('0x10')](_0x20bd('0x6'))&&_0x20bd('0x96')!=typeof _0x350dd2[_0x20bd('0x6')]?_0x20bd('0x33'):null;},_0x3324a3[_0x20bd('0x67')]=function(_0x4b8b3c){if(_0x4b8b3c instanceof v[_0x20bd('0x5e')])return _0x4b8b3c;let _0x1ba784=new v[(_0x20bd('0x5e'))]();return null!=_0x4b8b3c[_0x20bd('0x48')]&&(_0x1ba784['rootName']=String(_0x4b8b3c['rootName'])),null!=_0x4b8b3c[_0x20bd('0x56')]&&(_0x1ba784['elementName']=String(_0x4b8b3c[_0x20bd('0x56')])),null!=_0x4b8b3c[_0x20bd('0x50')]&&(_0x1ba784[_0x20bd('0x50')]=Boolean(_0x4b8b3c[_0x20bd('0x50')])),null!=_0x4b8b3c[_0x20bd('0x6')]&&(_0x1ba784[_0x20bd('0x6')]=Boolean(_0x4b8b3c[_0x20bd('0x6')])),_0x1ba784;},_0x3324a3[_0x20bd('0x7a')]=function(_0x1c170c,_0x497d54){_0x497d54||(_0x497d54={});let _0x451bea={};return _0x497d54[_0x20bd('0x8a')]&&(_0x451bea[_0x20bd('0x48')]='',_0x451bea[_0x20bd('0x56')]='',_0x451bea[_0x20bd('0x50')]=!0x1,_0x451bea[_0x20bd('0x6')]=!0x1),null!=_0x1c170c[_0x20bd('0x48')]&&_0x1c170c[_0x20bd('0x10')](_0x20bd('0x48'))&&(_0x451bea['rootName']=_0x1c170c[_0x20bd('0x48')]),null!=_0x1c170c[_0x20bd('0x56')]&&_0x1c170c[_0x20bd('0x10')](_0x20bd('0x56'))&&(_0x451bea[_0x20bd('0x56')]=_0x1c170c[_0x20bd('0x56')]),null!=_0x1c170c[_0x20bd('0x50')]&&_0x1c170c['hasOwnProperty'](_0x20bd('0x50'))&&(_0x451bea[_0x20bd('0x50')]=_0x1c170c[_0x20bd('0x50')]),null!=_0x1c170c['wasUndone']&&_0x1c170c[_0x20bd('0x10')](_0x20bd('0x6'))&&(_0x451bea['wasUndone']=_0x1c170c['wasUndone']),_0x451bea;},_0x3324a3[_0x20bd('0x3a')]['toJSON']=function(){return this[_0x20bd('0x3')]['toObject'](this,_0x1ecc16[_0x20bd('0xa')][_0x20bd('0x4')]);},_0x3324a3[_0x20bd('0x17')]=function(_0x3da5d4){return void 0x0===_0x3da5d4&&(_0x3da5d4=_0x20bd('0x1')),_0x3da5d4+_0x20bd('0x6a');},_0x3324a3;})();export const SplitOperation=v['SplitOperation']=(()=>{function _0x5462b8(_0x452e19){if(_0x452e19)for(let _0x160194=Object[_0x20bd('0xf')](_0x452e19),_0x4c1e58=0x0;_0x4c1e58<_0x160194[_0x20bd('0x44')];++_0x4c1e58)null!=_0x452e19[_0x160194[_0x4c1e58]]&&(this[_0x160194[_0x4c1e58]]=_0x452e19[_0x160194[_0x4c1e58]]);}return _0x5462b8['prototype'][_0x20bd('0x47')]=null,_0x5462b8[_0x20bd('0x3a')][_0x20bd('0x97')]=null,_0x5462b8['prototype'][_0x20bd('0x2a')]=0x0,_0x5462b8[_0x20bd('0x3a')][_0x20bd('0x2')]=null,_0x5462b8[_0x20bd('0x3a')][_0x20bd('0x6')]=!0x1,_0x5462b8[_0x20bd('0x83')]=function(_0x57f9b2){return new _0x5462b8(_0x57f9b2);},_0x5462b8[_0x20bd('0x1a')]=function(_0x55245f,_0x49a2bd){return _0x49a2bd||(_0x49a2bd=y[_0x20bd('0x83')]()),null!=_0x55245f['splitPosition']&&Object[_0x20bd('0x10')]['call'](_0x55245f,_0x20bd('0x47'))&&v['Position']['encode'](_0x55245f[_0x20bd('0x47')],_0x49a2bd[_0x20bd('0x28')](0xa)[_0x20bd('0x71')]())[_0x20bd('0x58')](),null!=_0x55245f[_0x20bd('0x97')]&&Object[_0x20bd('0x10')][_0x20bd('0x37')](_0x55245f,'graveyardPosition')&&v[_0x20bd('0x8b')][_0x20bd('0x1a')](_0x55245f[_0x20bd('0x97')],_0x49a2bd[_0x20bd('0x28')](0x12)[_0x20bd('0x71')]())[_0x20bd('0x58')](),null!=_0x55245f[_0x20bd('0x2a')]&&Object[_0x20bd('0x10')][_0x20bd('0x37')](_0x55245f,_0x20bd('0x2a'))&&_0x49a2bd[_0x20bd('0x28')](0x18)[_0x20bd('0x28')](_0x55245f[_0x20bd('0x2a')]),null!=_0x55245f[_0x20bd('0x2')]&&Object[_0x20bd('0x10')][_0x20bd('0x37')](_0x55245f,_0x20bd('0x2'))&&v[_0x20bd('0x8b')][_0x20bd('0x1a')](_0x55245f[_0x20bd('0x2')],_0x49a2bd['uint32'](0x22)[_0x20bd('0x71')]())[_0x20bd('0x58')](),null!=_0x55245f[_0x20bd('0x6')]&&Object['hasOwnProperty']['call'](_0x55245f,_0x20bd('0x6'))&&_0x49a2bd['uint32'](0x28)[_0x20bd('0x31')](_0x55245f['wasUndone']),_0x49a2bd;},_0x5462b8['encodeDelimited']=function(_0x45c605,_0x572c3f){return this[_0x20bd('0x1a')](_0x45c605,_0x572c3f)[_0x20bd('0x58')]();},_0x5462b8[_0x20bd('0x4b')]=function(_0x388209,_0x1c6aac){_0x388209 instanceof j||(_0x388209=j[_0x20bd('0x83')](_0x388209));let _0x19420f=void 0x0===_0x1c6aac?_0x388209['len']:_0x388209['pos']+_0x1c6aac,_0x1e1e14=new v[(_0x20bd('0x3e'))]();for(;_0x388209[_0x20bd('0x4a')]<_0x19420f;){let _0x126d42=_0x388209['uint32']();switch(_0x126d42>>>0x3){case 0x1:_0x1e1e14[_0x20bd('0x47')]=v[_0x20bd('0x8b')][_0x20bd('0x4b')](_0x388209,_0x388209[_0x20bd('0x28')]());break;case 0x2:_0x1e1e14[_0x20bd('0x97')]=v[_0x20bd('0x8b')][_0x20bd('0x4b')](_0x388209,_0x388209['uint32']());break;case 0x3:_0x1e1e14[_0x20bd('0x2a')]=_0x388209['uint32']();break;case 0x4:_0x1e1e14[_0x20bd('0x2')]=v[_0x20bd('0x8b')]['decode'](_0x388209,_0x388209[_0x20bd('0x28')]());break;case 0x5:_0x1e1e14[_0x20bd('0x6')]=_0x388209['bool']();break;default:_0x388209['skipType'](0x7&_0x126d42);}}return _0x1e1e14;},_0x5462b8[_0x20bd('0x1f')]=function(_0x2707d6){return _0x2707d6 instanceof j||(_0x2707d6=new j(_0x2707d6)),this[_0x20bd('0x4b')](_0x2707d6,_0x2707d6[_0x20bd('0x28')]());},_0x5462b8[_0x20bd('0x57')]=function(_0x11190e){if(_0x20bd('0x8')!=typeof _0x11190e||null===_0x11190e)return _0x20bd('0x8d');if(null!=_0x11190e[_0x20bd('0x47')]&&_0x11190e[_0x20bd('0x10')](_0x20bd('0x47'))){let _0x4bd4a1=v[_0x20bd('0x8b')]['verify'](_0x11190e[_0x20bd('0x47')]);if(_0x4bd4a1)return _0x20bd('0x98')+_0x4bd4a1;}if(null!=_0x11190e['graveyardPosition']&&_0x11190e['hasOwnProperty'](_0x20bd('0x97'))){let _0x4268ba=v[_0x20bd('0x8b')][_0x20bd('0x57')](_0x11190e['graveyardPosition']);if(_0x4268ba)return _0x20bd('0x87')+_0x4268ba;}if(null!=_0x11190e[_0x20bd('0x2a')]&&_0x11190e[_0x20bd('0x10')](_0x20bd('0x2a'))&&!k[_0x20bd('0x6f')](_0x11190e[_0x20bd('0x2a')]))return _0x20bd('0x7c');if(null!=_0x11190e[_0x20bd('0x2')]&&_0x11190e[_0x20bd('0x10')](_0x20bd('0x2'))){let _0x414565=v[_0x20bd('0x8b')][_0x20bd('0x57')](_0x11190e[_0x20bd('0x2')]);if(_0x414565)return _0x20bd('0x60')+_0x414565;}return null!=_0x11190e[_0x20bd('0x6')]&&_0x11190e['hasOwnProperty'](_0x20bd('0x6'))&&_0x20bd('0x96')!=typeof _0x11190e[_0x20bd('0x6')]?'wasUndone:\x20boolean\x20expected':null;},_0x5462b8['fromObject']=function(_0x5e09b1){if(_0x5e09b1 instanceof v[_0x20bd('0x3e')])return _0x5e09b1;let _0x36b90b=new v['SplitOperation']();if(null!=_0x5e09b1['splitPosition']){if(_0x20bd('0x8')!=typeof _0x5e09b1[_0x20bd('0x47')])throw TypeError(_0x20bd('0x5c'));_0x36b90b[_0x20bd('0x47')]=v[_0x20bd('0x8b')][_0x20bd('0x67')](_0x5e09b1[_0x20bd('0x47')]);}if(null!=_0x5e09b1['graveyardPosition']){if(_0x20bd('0x8')!=typeof _0x5e09b1[_0x20bd('0x97')])throw TypeError('.SplitOperation.graveyardPosition:\x20object\x20expected');_0x36b90b[_0x20bd('0x97')]=v['Position']['fromObject'](_0x5e09b1['graveyardPosition']);}if(null!=_0x5e09b1[_0x20bd('0x2a')]&&(_0x36b90b[_0x20bd('0x2a')]=_0x5e09b1['howMany']>>>0x0),null!=_0x5e09b1[_0x20bd('0x2')]){if(_0x20bd('0x8')!=typeof _0x5e09b1[_0x20bd('0x2')])throw TypeError(_0x20bd('0x43'));_0x36b90b[_0x20bd('0x2')]=v[_0x20bd('0x8b')][_0x20bd('0x67')](_0x5e09b1['insertionPosition']);}return null!=_0x5e09b1['wasUndone']&&(_0x36b90b['wasUndone']=Boolean(_0x5e09b1[_0x20bd('0x6')])),_0x36b90b;},_0x5462b8[_0x20bd('0x7a')]=function(_0x2ee065,_0x488346){_0x488346||(_0x488346={});let _0x2ba8e6={};return _0x488346['defaults']&&(_0x2ba8e6[_0x20bd('0x47')]=null,_0x2ba8e6['graveyardPosition']=null,_0x2ba8e6[_0x20bd('0x2a')]=0x0,_0x2ba8e6['insertionPosition']=null,_0x2ba8e6[_0x20bd('0x6')]=!0x1),null!=_0x2ee065[_0x20bd('0x47')]&&_0x2ee065[_0x20bd('0x10')]('splitPosition')&&(_0x2ba8e6[_0x20bd('0x47')]=v[_0x20bd('0x8b')][_0x20bd('0x7a')](_0x2ee065[_0x20bd('0x47')],_0x488346)),null!=_0x2ee065[_0x20bd('0x97')]&&_0x2ee065[_0x20bd('0x10')](_0x20bd('0x97'))&&(_0x2ba8e6[_0x20bd('0x97')]=v['Position'][_0x20bd('0x7a')](_0x2ee065[_0x20bd('0x97')],_0x488346)),null!=_0x2ee065[_0x20bd('0x2a')]&&_0x2ee065[_0x20bd('0x10')]('howMany')&&(_0x2ba8e6[_0x20bd('0x2a')]=_0x2ee065[_0x20bd('0x2a')]),null!=_0x2ee065[_0x20bd('0x2')]&&_0x2ee065[_0x20bd('0x10')](_0x20bd('0x2'))&&(_0x2ba8e6[_0x20bd('0x2')]=v[_0x20bd('0x8b')][_0x20bd('0x7a')](_0x2ee065[_0x20bd('0x2')],_0x488346)),null!=_0x2ee065[_0x20bd('0x6')]&&_0x2ee065[_0x20bd('0x10')](_0x20bd('0x6'))&&(_0x2ba8e6['wasUndone']=_0x2ee065[_0x20bd('0x6')]),_0x2ba8e6;},_0x5462b8[_0x20bd('0x3a')]['toJSON']=function(){return this['constructor'][_0x20bd('0x7a')](this,_0x1ecc16[_0x20bd('0xa')][_0x20bd('0x4')]);},_0x5462b8[_0x20bd('0x17')]=function(_0x4605e7){return void 0x0===_0x4605e7&&(_0x4605e7=_0x20bd('0x1')),_0x4605e7+_0x20bd('0x90');},_0x5462b8;})();export const Position=v['Position']=(()=>{function _0x39cfec(_0xdb5c){if(this[_0x20bd('0x32')]=[],_0xdb5c)for(let _0x363ae3=Object[_0x20bd('0xf')](_0xdb5c),_0x18d3c4=0x0;_0x18d3c4<_0x363ae3[_0x20bd('0x44')];++_0x18d3c4)null!=_0xdb5c[_0x363ae3[_0x18d3c4]]&&(this[_0x363ae3[_0x18d3c4]]=_0xdb5c[_0x363ae3[_0x18d3c4]]);}return _0x39cfec['prototype'][_0x20bd('0x34')]='',_0x39cfec[_0x20bd('0x3a')][_0x20bd('0x74')]=!0x1,_0x39cfec['prototype'][_0x20bd('0x30')]=!0x1,_0x39cfec['prototype'][_0x20bd('0x32')]=k[_0x20bd('0x72')],_0x39cfec[_0x20bd('0x3a')][_0x20bd('0x24')]='',_0x39cfec[_0x20bd('0x83')]=function(_0x17dd34){return new _0x39cfec(_0x17dd34);},_0x39cfec[_0x20bd('0x1a')]=function(_0x3c93f5,_0x5dadfd){if(_0x5dadfd||(_0x5dadfd=y['create']()),null!=_0x3c93f5[_0x20bd('0x34')]&&Object[_0x20bd('0x10')][_0x20bd('0x37')](_0x3c93f5,_0x20bd('0x34'))&&_0x5dadfd['uint32'](0xa)[_0x20bd('0x66')](_0x3c93f5[_0x20bd('0x34')]),null!=_0x3c93f5[_0x20bd('0x74')]&&Object[_0x20bd('0x10')]['call'](_0x3c93f5,_0x20bd('0x74'))&&_0x5dadfd[_0x20bd('0x28')](0x10)['bool'](_0x3c93f5[_0x20bd('0x74')]),null!=_0x3c93f5[_0x20bd('0x30')]&&Object['hasOwnProperty'][_0x20bd('0x37')](_0x3c93f5,_0x20bd('0x30'))&&_0x5dadfd['uint32'](0x18)['bool'](_0x3c93f5[_0x20bd('0x30')]),null!=_0x3c93f5[_0x20bd('0x32')]&&_0x3c93f5[_0x20bd('0x32')][_0x20bd('0x44')]){_0x5dadfd[_0x20bd('0x28')](0x22)[_0x20bd('0x71')]();for(let _0xba02e9=0x0;_0xba02e9<_0x3c93f5[_0x20bd('0x32')][_0x20bd('0x44')];++_0xba02e9)_0x5dadfd[_0x20bd('0x28')](_0x3c93f5[_0x20bd('0x32')][_0xba02e9]);_0x5dadfd[_0x20bd('0x58')]();}return null!=_0x3c93f5[_0x20bd('0x24')]&&Object[_0x20bd('0x10')][_0x20bd('0x37')](_0x3c93f5,_0x20bd('0x24'))&&_0x5dadfd[_0x20bd('0x28')](0x2a)[_0x20bd('0x66')](_0x3c93f5[_0x20bd('0x24')]),_0x5dadfd;},_0x39cfec[_0x20bd('0x2f')]=function(_0x426f52,_0x9709d2){return this[_0x20bd('0x1a')](_0x426f52,_0x9709d2)[_0x20bd('0x58')]();},_0x39cfec[_0x20bd('0x4b')]=function(_0x496f9f,_0x1af0f9){_0x496f9f instanceof j||(_0x496f9f=j['create'](_0x496f9f));let _0x3f5ee9=void 0x0===_0x1af0f9?_0x496f9f[_0x20bd('0x68')]:_0x496f9f['pos']+_0x1af0f9,_0x4d24a3=new v[(_0x20bd('0x8b'))]();for(;_0x496f9f[_0x20bd('0x4a')]<_0x3f5ee9;){let _0xd9af2c=_0x496f9f[_0x20bd('0x28')]();switch(_0xd9af2c>>>0x3){case 0x1:_0x4d24a3[_0x20bd('0x34')]=_0x496f9f[_0x20bd('0x66')]();break;case 0x2:_0x4d24a3['rootMain']=_0x496f9f[_0x20bd('0x31')]();break;case 0x3:_0x4d24a3[_0x20bd('0x30')]=_0x496f9f['bool']();break;case 0x4:if(_0x4d24a3[_0x20bd('0x32')]&&_0x4d24a3[_0x20bd('0x32')][_0x20bd('0x44')]||(_0x4d24a3[_0x20bd('0x32')]=[]),0x2==(0x7&_0xd9af2c)){let _0x3f8cce=_0x496f9f[_0x20bd('0x28')]()+_0x496f9f[_0x20bd('0x4a')];for(;_0x496f9f[_0x20bd('0x4a')]<_0x3f8cce;)_0x4d24a3[_0x20bd('0x32')][_0x20bd('0x4e')](_0x496f9f[_0x20bd('0x28')]());}else _0x4d24a3[_0x20bd('0x32')][_0x20bd('0x4e')](_0x496f9f[_0x20bd('0x28')]());break;case 0x5:_0x4d24a3[_0x20bd('0x24')]=_0x496f9f[_0x20bd('0x66')]();break;default:_0x496f9f['skipType'](0x7&_0xd9af2c);}}return _0x4d24a3;},_0x39cfec[_0x20bd('0x1f')]=function(_0x1b1aae){return _0x1b1aae instanceof j||(_0x1b1aae=new j(_0x1b1aae)),this[_0x20bd('0x4b')](_0x1b1aae,_0x1b1aae[_0x20bd('0x28')]());},_0x39cfec['verify']=function(_0xd18f57){if(_0x20bd('0x8')!=typeof _0xd18f57||null===_0xd18f57)return _0x20bd('0x8d');if(null!=_0xd18f57[_0x20bd('0x34')]&&_0xd18f57['hasOwnProperty'](_0x20bd('0x34'))&&!k['isString'](_0xd18f57[_0x20bd('0x34')]))return _0x20bd('0x92');if(null!=_0xd18f57[_0x20bd('0x74')]&&_0xd18f57['hasOwnProperty'](_0x20bd('0x74'))&&_0x20bd('0x96')!=typeof _0xd18f57[_0x20bd('0x74')])return _0x20bd('0x16');if(null!=_0xd18f57[_0x20bd('0x30')]&&_0xd18f57[_0x20bd('0x10')](_0x20bd('0x30'))&&_0x20bd('0x96')!=typeof _0xd18f57[_0x20bd('0x30')])return'rootGraveyard:\x20boolean\x20expected';if(null!=_0xd18f57[_0x20bd('0x32')]&&_0xd18f57[_0x20bd('0x10')](_0x20bd('0x32'))){if(!Array[_0x20bd('0x5f')](_0xd18f57['path']))return _0x20bd('0x61');for(let _0x4a2bb7=0x0;_0x4a2bb7<_0xd18f57[_0x20bd('0x32')]['length'];++_0x4a2bb7)if(!k[_0x20bd('0x6f')](_0xd18f57[_0x20bd('0x32')][_0x4a2bb7]))return'path:\x20integer[]\x20expected';}return null!=_0xd18f57[_0x20bd('0x24')]&&_0xd18f57['hasOwnProperty'](_0x20bd('0x24'))&&!k[_0x20bd('0x6c')](_0xd18f57[_0x20bd('0x24')])?_0x20bd('0x3d'):null;},_0x39cfec[_0x20bd('0x67')]=function(_0x7b975b){if(_0x7b975b instanceof v[_0x20bd('0x8b')])return _0x7b975b;let _0x583071=new v[(_0x20bd('0x8b'))]();if(null!=_0x7b975b[_0x20bd('0x34')]&&(_0x583071['root']=String(_0x7b975b[_0x20bd('0x34')])),null!=_0x7b975b['rootMain']&&(_0x583071[_0x20bd('0x74')]=Boolean(_0x7b975b['rootMain'])),null!=_0x7b975b[_0x20bd('0x30')]&&(_0x583071['rootGraveyard']=Boolean(_0x7b975b[_0x20bd('0x30')])),_0x7b975b[_0x20bd('0x32')]){if(!Array[_0x20bd('0x5f')](_0x7b975b['path']))throw TypeError(_0x20bd('0x5a'));_0x583071[_0x20bd('0x32')]=[];for(let _0x3402c4=0x0;_0x3402c4<_0x7b975b[_0x20bd('0x32')]['length'];++_0x3402c4)_0x583071[_0x20bd('0x32')][_0x3402c4]=_0x7b975b[_0x20bd('0x32')][_0x3402c4]>>>0x0;}return null!=_0x7b975b[_0x20bd('0x24')]&&(_0x583071[_0x20bd('0x24')]=String(_0x7b975b[_0x20bd('0x24')])),_0x583071;},_0x39cfec[_0x20bd('0x7a')]=function(_0x543f81,_0x2c6864){_0x2c6864||(_0x2c6864={});let _0x1f5d59={};if((_0x2c6864['arrays']||_0x2c6864[_0x20bd('0x8a')])&&(_0x1f5d59[_0x20bd('0x32')]=[]),_0x2c6864[_0x20bd('0x8a')]&&(_0x1f5d59['root']='',_0x1f5d59['rootMain']=!0x1,_0x1f5d59[_0x20bd('0x30')]=!0x1,_0x1f5d59['stickiness']=''),null!=_0x543f81[_0x20bd('0x34')]&&_0x543f81[_0x20bd('0x10')]('root')&&(_0x1f5d59[_0x20bd('0x34')]=_0x543f81[_0x20bd('0x34')]),null!=_0x543f81[_0x20bd('0x74')]&&_0x543f81['hasOwnProperty'](_0x20bd('0x74'))&&(_0x1f5d59['rootMain']=_0x543f81[_0x20bd('0x74')]),null!=_0x543f81[_0x20bd('0x30')]&&_0x543f81[_0x20bd('0x10')](_0x20bd('0x30'))&&(_0x1f5d59['rootGraveyard']=_0x543f81[_0x20bd('0x30')]),_0x543f81[_0x20bd('0x32')]&&_0x543f81[_0x20bd('0x32')][_0x20bd('0x44')]){_0x1f5d59[_0x20bd('0x32')]=[];for(let _0x196caf=0x0;_0x196caf<_0x543f81[_0x20bd('0x32')][_0x20bd('0x44')];++_0x196caf)_0x1f5d59[_0x20bd('0x32')][_0x196caf]=_0x543f81[_0x20bd('0x32')][_0x196caf];}return null!=_0x543f81['stickiness']&&_0x543f81[_0x20bd('0x10')](_0x20bd('0x24'))&&(_0x1f5d59[_0x20bd('0x24')]=_0x543f81[_0x20bd('0x24')]),_0x1f5d59;},_0x39cfec[_0x20bd('0x3a')][_0x20bd('0x78')]=function(){return this['constructor'][_0x20bd('0x7a')](this,_0x1ecc16['util'][_0x20bd('0x4')]);},_0x39cfec[_0x20bd('0x17')]=function(_0x3e2ba3){return void 0x0===_0x3e2ba3&&(_0x3e2ba3=_0x20bd('0x1')),_0x3e2ba3+_0x20bd('0x65');},_0x39cfec;})();export const Range=v[_0x20bd('0x5d')]=(()=>{function _0xe24134(_0x395e4e){if(_0x395e4e)for(let _0x18e702=Object[_0x20bd('0xf')](_0x395e4e),_0xf19c0b=0x0;_0xf19c0b<_0x18e702[_0x20bd('0x44')];++_0xf19c0b)null!=_0x395e4e[_0x18e702[_0xf19c0b]]&&(this[_0x18e702[_0xf19c0b]]=_0x395e4e[_0x18e702[_0xf19c0b]]);}return _0xe24134[_0x20bd('0x3a')]['start']=null,_0xe24134[_0x20bd('0x3a')][_0x20bd('0x88')]=null,_0xe24134[_0x20bd('0x83')]=function(_0x4e77f5){return new _0xe24134(_0x4e77f5);},_0xe24134['encode']=function(_0x45b05c,_0x4f9f10){return _0x4f9f10||(_0x4f9f10=y[_0x20bd('0x83')]()),null!=_0x45b05c['start']&&Object['hasOwnProperty']['call'](_0x45b05c,_0x20bd('0x9a'))&&v[_0x20bd('0x8b')][_0x20bd('0x1a')](_0x45b05c[_0x20bd('0x9a')],_0x4f9f10[_0x20bd('0x28')](0xa)[_0x20bd('0x71')]())['ldelim'](),null!=_0x45b05c[_0x20bd('0x88')]&&Object[_0x20bd('0x10')][_0x20bd('0x37')](_0x45b05c,'end')&&v[_0x20bd('0x8b')][_0x20bd('0x1a')](_0x45b05c['end'],_0x4f9f10[_0x20bd('0x28')](0x12)[_0x20bd('0x71')]())[_0x20bd('0x58')](),_0x4f9f10;},_0xe24134[_0x20bd('0x2f')]=function(_0x48fce1,_0x17e98a){return this[_0x20bd('0x1a')](_0x48fce1,_0x17e98a)[_0x20bd('0x58')]();},_0xe24134['decode']=function(_0x5576c8,_0x5b4f55){_0x5576c8 instanceof j||(_0x5576c8=j[_0x20bd('0x83')](_0x5576c8));let _0x3709f7=void 0x0===_0x5b4f55?_0x5576c8[_0x20bd('0x68')]:_0x5576c8[_0x20bd('0x4a')]+_0x5b4f55,_0x4cc8f6=new v[(_0x20bd('0x5d'))]();for(;_0x5576c8['pos']<_0x3709f7;){let _0x101c9a=_0x5576c8['uint32']();switch(_0x101c9a>>>0x3){case 0x1:_0x4cc8f6['start']=v[_0x20bd('0x8b')][_0x20bd('0x4b')](_0x5576c8,_0x5576c8['uint32']());break;case 0x2:_0x4cc8f6[_0x20bd('0x88')]=v[_0x20bd('0x8b')][_0x20bd('0x4b')](_0x5576c8,_0x5576c8['uint32']());break;default:_0x5576c8['skipType'](0x7&_0x101c9a);}}return _0x4cc8f6;},_0xe24134[_0x20bd('0x1f')]=function(_0x21a338){return _0x21a338 instanceof j||(_0x21a338=new j(_0x21a338)),this[_0x20bd('0x4b')](_0x21a338,_0x21a338[_0x20bd('0x28')]());},_0xe24134['verify']=function(_0x540b6a){if(_0x20bd('0x8')!=typeof _0x540b6a||null===_0x540b6a)return'object\x20expected';if(null!=_0x540b6a[_0x20bd('0x9a')]&&_0x540b6a[_0x20bd('0x10')](_0x20bd('0x9a'))){let _0x281c19=v[_0x20bd('0x8b')]['verify'](_0x540b6a['start']);if(_0x281c19)return _0x20bd('0x22')+_0x281c19;}if(null!=_0x540b6a[_0x20bd('0x88')]&&_0x540b6a[_0x20bd('0x10')]('end')){let _0x58dc82=v[_0x20bd('0x8b')][_0x20bd('0x57')](_0x540b6a['end']);if(_0x58dc82)return _0x20bd('0x84')+_0x58dc82;}return null;},_0xe24134[_0x20bd('0x67')]=function(_0x445b72){if(_0x445b72 instanceof v[_0x20bd('0x5d')])return _0x445b72;let _0x382645=new v[(_0x20bd('0x5d'))]();if(null!=_0x445b72[_0x20bd('0x9a')]){if(_0x20bd('0x8')!=typeof _0x445b72[_0x20bd('0x9a')])throw TypeError('.Range.start:\x20object\x20expected');_0x382645[_0x20bd('0x9a')]=v[_0x20bd('0x8b')]['fromObject'](_0x445b72[_0x20bd('0x9a')]);}if(null!=_0x445b72[_0x20bd('0x88')]){if('object'!=typeof _0x445b72[_0x20bd('0x88')])throw TypeError(_0x20bd('0x7b'));_0x382645['end']=v[_0x20bd('0x8b')][_0x20bd('0x67')](_0x445b72[_0x20bd('0x88')]);}return _0x382645;},_0xe24134['toObject']=function(_0x5ae844,_0x8de468){_0x8de468||(_0x8de468={});let _0x4abd7b={};return _0x8de468[_0x20bd('0x8a')]&&(_0x4abd7b['start']=null,_0x4abd7b[_0x20bd('0x88')]=null),null!=_0x5ae844[_0x20bd('0x9a')]&&_0x5ae844[_0x20bd('0x10')]('start')&&(_0x4abd7b[_0x20bd('0x9a')]=v[_0x20bd('0x8b')][_0x20bd('0x7a')](_0x5ae844[_0x20bd('0x9a')],_0x8de468)),null!=_0x5ae844[_0x20bd('0x88')]&&_0x5ae844[_0x20bd('0x10')](_0x20bd('0x88'))&&(_0x4abd7b[_0x20bd('0x88')]=v[_0x20bd('0x8b')][_0x20bd('0x7a')](_0x5ae844[_0x20bd('0x88')],_0x8de468)),_0x4abd7b;},_0xe24134[_0x20bd('0x3a')]['toJSON']=function(){return this[_0x20bd('0x3')][_0x20bd('0x7a')](this,_0x1ecc16[_0x20bd('0xa')][_0x20bd('0x4')]);},_0xe24134[_0x20bd('0x17')]=function(_0x5d6e84){return void 0x0===_0x5d6e84&&(_0x5d6e84=_0x20bd('0x1')),_0x5d6e84+_0x20bd('0x3b');},_0xe24134;})();export const Element=v['Element']=(()=>{function _0x3e5b75(_0x259793){if(this[_0x20bd('0x6e')]=[],this[_0x20bd('0x81')]={},_0x259793)for(let _0x285d82=Object[_0x20bd('0xf')](_0x259793),_0x4d2ac8=0x0;_0x4d2ac8<_0x285d82['length'];++_0x4d2ac8)null!=_0x259793[_0x285d82[_0x4d2ac8]]&&(this[_0x285d82[_0x4d2ac8]]=_0x259793[_0x285d82[_0x4d2ac8]]);}return _0x3e5b75[_0x20bd('0x3a')][_0x20bd('0x19')]='',_0x3e5b75[_0x20bd('0x3a')][_0x20bd('0x6e')]=k['emptyArray'],_0x3e5b75['prototype']['data']='',_0x3e5b75['prototype']['attributesBoolean']=k[_0x20bd('0x6d')],_0x3e5b75[_0x20bd('0x3a')][_0x20bd('0x7f')]='',_0x3e5b75['create']=function(_0x1cdd3f){return new _0x3e5b75(_0x1cdd3f);},_0x3e5b75[_0x20bd('0x1a')]=function(_0x3e377c,_0xf5347){if(_0xf5347||(_0xf5347=y['create']()),null!=_0x3e377c['name']&&Object[_0x20bd('0x10')][_0x20bd('0x37')](_0x3e377c,'name')&&_0xf5347[_0x20bd('0x28')](0xa)['string'](_0x3e377c['name']),null!=_0x3e377c[_0x20bd('0x6e')]&&_0x3e377c[_0x20bd('0x6e')]['length'])for(let _0x2bc412=0x0;_0x2bc412<_0x3e377c[_0x20bd('0x6e')]['length'];++_0x2bc412)v[_0x20bd('0x85')][_0x20bd('0x1a')](_0x3e377c[_0x20bd('0x6e')][_0x2bc412],_0xf5347[_0x20bd('0x28')](0x12)[_0x20bd('0x71')]())[_0x20bd('0x58')]();if(null!=_0x3e377c[_0x20bd('0x73')]&&Object[_0x20bd('0x10')][_0x20bd('0x37')](_0x3e377c,_0x20bd('0x73'))&&_0xf5347['uint32'](0x1a)[_0x20bd('0x66')](_0x3e377c[_0x20bd('0x73')]),null!=_0x3e377c['attributesBoolean']&&Object['hasOwnProperty'][_0x20bd('0x37')](_0x3e377c,_0x20bd('0x81')))for(let _0x54a776=Object[_0x20bd('0xf')](_0x3e377c[_0x20bd('0x81')]),_0x4d4037=0x0;_0x4d4037<_0x54a776['length'];++_0x4d4037)_0xf5347[_0x20bd('0x28')](0x22)[_0x20bd('0x71')]()['uint32'](0xa)[_0x20bd('0x66')](_0x54a776[_0x4d4037])['uint32'](0x10)[_0x20bd('0x31')](_0x3e377c[_0x20bd('0x81')][_0x54a776[_0x4d4037]])[_0x20bd('0x58')]();return null!=_0x3e377c[_0x20bd('0x7f')]&&Object[_0x20bd('0x10')][_0x20bd('0x37')](_0x3e377c,_0x20bd('0x7f'))&&_0xf5347['uint32'](0x2a)['string'](_0x3e377c['attributesJson']),_0xf5347;},_0x3e5b75[_0x20bd('0x2f')]=function(_0x1e50e7,_0x368155){return this[_0x20bd('0x1a')](_0x1e50e7,_0x368155)[_0x20bd('0x58')]();},_0x3e5b75[_0x20bd('0x4b')]=function(_0x456dbf,_0x4dc169){_0x456dbf instanceof j||(_0x456dbf=j['create'](_0x456dbf));let _0x541c69,_0x18b830,_0x34b6ff=void 0x0===_0x4dc169?_0x456dbf[_0x20bd('0x68')]:_0x456dbf['pos']+_0x4dc169,_0x190362=new v[(_0x20bd('0x85'))]();for(;_0x456dbf[_0x20bd('0x4a')]<_0x34b6ff;){let _0x49a495=_0x456dbf['uint32']();switch(_0x49a495>>>0x3){case 0x1:_0x190362[_0x20bd('0x19')]=_0x456dbf[_0x20bd('0x66')]();break;case 0x2:_0x190362['children']&&_0x190362[_0x20bd('0x6e')][_0x20bd('0x44')]||(_0x190362[_0x20bd('0x6e')]=[]),_0x190362[_0x20bd('0x6e')][_0x20bd('0x4e')](v[_0x20bd('0x85')]['decode'](_0x456dbf,_0x456dbf[_0x20bd('0x28')]()));break;case 0x3:_0x190362[_0x20bd('0x73')]=_0x456dbf[_0x20bd('0x66')]();break;case 0x4:{_0x190362[_0x20bd('0x81')]===k[_0x20bd('0x6d')]&&(_0x190362['attributesBoolean']={});let _0x18629f=_0x456dbf[_0x20bd('0x28')]()+_0x456dbf[_0x20bd('0x4a')];for(_0x541c69='',_0x18b830=!0x1;_0x456dbf['pos']<_0x18629f;){let _0x15160f=_0x456dbf[_0x20bd('0x28')]();switch(_0x15160f>>>0x3){case 0x1:_0x541c69=_0x456dbf[_0x20bd('0x66')]();break;case 0x2:_0x18b830=_0x456dbf[_0x20bd('0x31')]();break;default:_0x456dbf[_0x20bd('0x2e')](0x7&_0x15160f);}}_0x190362[_0x20bd('0x81')][_0x541c69]=_0x18b830;break;}case 0x5:_0x190362[_0x20bd('0x7f')]=_0x456dbf[_0x20bd('0x66')]();break;default:_0x456dbf['skipType'](0x7&_0x49a495);}}return _0x190362;},_0x3e5b75[_0x20bd('0x1f')]=function(_0x564508){return _0x564508 instanceof j||(_0x564508=new j(_0x564508)),this[_0x20bd('0x4b')](_0x564508,_0x564508['uint32']());},_0x3e5b75[_0x20bd('0x57')]=function(_0xbf62b6){if('object'!=typeof _0xbf62b6||null===_0xbf62b6)return'object\x20expected';if(null!=_0xbf62b6['name']&&_0xbf62b6[_0x20bd('0x10')]('name')&&!k[_0x20bd('0x6c')](_0xbf62b6['name']))return _0x20bd('0x2c');if(null!=_0xbf62b6['children']&&_0xbf62b6[_0x20bd('0x10')](_0x20bd('0x6e'))){if(!Array[_0x20bd('0x5f')](_0xbf62b6['children']))return _0x20bd('0x29');for(let _0x134312=0x0;_0x134312<_0xbf62b6[_0x20bd('0x6e')][_0x20bd('0x44')];++_0x134312){let _0x386b98=v['Element'][_0x20bd('0x57')](_0xbf62b6[_0x20bd('0x6e')][_0x134312]);if(_0x386b98)return'children.'+_0x386b98;}}if(null!=_0xbf62b6[_0x20bd('0x73')]&&_0xbf62b6[_0x20bd('0x10')](_0x20bd('0x73'))&&!k[_0x20bd('0x6c')](_0xbf62b6[_0x20bd('0x73')]))return _0x20bd('0x25');if(null!=_0xbf62b6[_0x20bd('0x81')]&&_0xbf62b6[_0x20bd('0x10')](_0x20bd('0x81'))){if(!k[_0x20bd('0x91')](_0xbf62b6['attributesBoolean']))return _0x20bd('0x35');let _0x442c4a=Object[_0x20bd('0xf')](_0xbf62b6[_0x20bd('0x81')]);for(let _0x15a222=0x0;_0x15a222<_0x442c4a[_0x20bd('0x44')];++_0x15a222)if(_0x20bd('0x96')!=typeof _0xbf62b6['attributesBoolean'][_0x442c4a[_0x15a222]])return _0x20bd('0x4f');}return null!=_0xbf62b6[_0x20bd('0x7f')]&&_0xbf62b6['hasOwnProperty']('attributesJson')&&!k[_0x20bd('0x6c')](_0xbf62b6['attributesJson'])?_0x20bd('0x5b'):null;},_0x3e5b75['fromObject']=function(_0x7e2eb0){if(_0x7e2eb0 instanceof v[_0x20bd('0x85')])return _0x7e2eb0;let _0x37d987=new v['Element']();if(null!=_0x7e2eb0[_0x20bd('0x19')]&&(_0x37d987['name']=String(_0x7e2eb0['name'])),_0x7e2eb0[_0x20bd('0x6e')]){if(!Array[_0x20bd('0x5f')](_0x7e2eb0[_0x20bd('0x6e')]))throw TypeError(_0x20bd('0x82'));_0x37d987[_0x20bd('0x6e')]=[];for(let _0x204b3d=0x0;_0x204b3d<_0x7e2eb0[_0x20bd('0x6e')][_0x20bd('0x44')];++_0x204b3d){if(_0x20bd('0x8')!=typeof _0x7e2eb0[_0x20bd('0x6e')][_0x204b3d])throw TypeError(_0x20bd('0x40'));_0x37d987[_0x20bd('0x6e')][_0x204b3d]=v['Element']['fromObject'](_0x7e2eb0[_0x20bd('0x6e')][_0x204b3d]);}}if(null!=_0x7e2eb0[_0x20bd('0x73')]&&(_0x37d987['data']=String(_0x7e2eb0[_0x20bd('0x73')])),_0x7e2eb0[_0x20bd('0x81')]){if(_0x20bd('0x8')!=typeof _0x7e2eb0[_0x20bd('0x81')])throw TypeError(_0x20bd('0x42'));_0x37d987[_0x20bd('0x81')]={};for(let _0x4f7fe4=Object[_0x20bd('0xf')](_0x7e2eb0[_0x20bd('0x81')]),_0x22c970=0x0;_0x22c970<_0x4f7fe4['length'];++_0x22c970)_0x37d987[_0x20bd('0x81')][_0x4f7fe4[_0x22c970]]=Boolean(_0x7e2eb0[_0x20bd('0x81')][_0x4f7fe4[_0x22c970]]);}return null!=_0x7e2eb0[_0x20bd('0x7f')]&&(_0x37d987[_0x20bd('0x7f')]=String(_0x7e2eb0[_0x20bd('0x7f')])),_0x37d987;},_0x3e5b75[_0x20bd('0x7a')]=function(_0x2eb34d,_0x12eb32){_0x12eb32||(_0x12eb32={});let _0x3567b4,_0x1f1f1e={};if((_0x12eb32[_0x20bd('0x75')]||_0x12eb32[_0x20bd('0x8a')])&&(_0x1f1f1e[_0x20bd('0x6e')]=[]),(_0x12eb32[_0x20bd('0x8f')]||_0x12eb32[_0x20bd('0x8a')])&&(_0x1f1f1e['attributesBoolean']={}),_0x12eb32['defaults']&&(_0x1f1f1e['name']='',_0x1f1f1e[_0x20bd('0x73')]='',_0x1f1f1e[_0x20bd('0x7f')]=''),null!=_0x2eb34d[_0x20bd('0x19')]&&_0x2eb34d[_0x20bd('0x10')](_0x20bd('0x19'))&&(_0x1f1f1e[_0x20bd('0x19')]=_0x2eb34d[_0x20bd('0x19')]),_0x2eb34d[_0x20bd('0x6e')]&&_0x2eb34d[_0x20bd('0x6e')][_0x20bd('0x44')]){_0x1f1f1e[_0x20bd('0x6e')]=[];for(let _0x543486=0x0;_0x543486<_0x2eb34d[_0x20bd('0x6e')][_0x20bd('0x44')];++_0x543486)_0x1f1f1e[_0x20bd('0x6e')][_0x543486]=v['Element'][_0x20bd('0x7a')](_0x2eb34d[_0x20bd('0x6e')][_0x543486],_0x12eb32);}if(null!=_0x2eb34d['data']&&_0x2eb34d[_0x20bd('0x10')](_0x20bd('0x73'))&&(_0x1f1f1e['data']=_0x2eb34d[_0x20bd('0x73')]),_0x2eb34d[_0x20bd('0x81')]&&(_0x3567b4=Object[_0x20bd('0xf')](_0x2eb34d['attributesBoolean']))[_0x20bd('0x44')]){_0x1f1f1e[_0x20bd('0x81')]={};for(let _0x5651dd=0x0;_0x5651dd<_0x3567b4[_0x20bd('0x44')];++_0x5651dd)_0x1f1f1e[_0x20bd('0x81')][_0x3567b4[_0x5651dd]]=_0x2eb34d[_0x20bd('0x81')][_0x3567b4[_0x5651dd]];}return null!=_0x2eb34d[_0x20bd('0x7f')]&&_0x2eb34d['hasOwnProperty'](_0x20bd('0x7f'))&&(_0x1f1f1e[_0x20bd('0x7f')]=_0x2eb34d[_0x20bd('0x7f')]),_0x1f1f1e;},_0x3e5b75['prototype']['toJSON']=function(){return this[_0x20bd('0x3')]['toObject'](this,_0x1ecc16['util'][_0x20bd('0x4')]);},_0x3e5b75['getTypeUrl']=function(_0x321f88){return void 0x0===_0x321f88&&(_0x321f88=_0x20bd('0x1')),_0x321f88+_0x20bd('0x6b');},_0x3e5b75;})();export{v as default};
|
|
@@ -20,4 +20,4 @@
|
|
|
20
20
|
*
|
|
21
21
|
*
|
|
22
22
|
*/
|
|
23
|
-
const
|
|
23
|
+
const _0x365e=['MarkerOperation','__className','_omittedNamespace','compress','replace','name','startsWith','length','decompress'];(function(_0x28093c,_0x365e2b){const _0x164922=function(_0x552399){while(--_0x552399){_0x28093c['push'](_0x28093c['shift']());}};_0x164922(++_0x365e2b);}(_0x365e,0x10c));const _0x1649=function(_0x28093c,_0x365e2b){_0x28093c=_0x28093c-0x0;let _0x164922=_0x365e[_0x28093c];return _0x164922;};import _0x3a5bb6 from'./markeroperationcompressor';export default class a extends _0x3a5bb6{constructor(_0x4a071a,_0x16e480,_0x1202ea,_0x4adc92){super(_0x4a071a,_0x16e480,_0x1202ea),this[_0x1649('0x4')]=_0x4adc92+':';}['compress'](_0x7e2094,_0x5e051a){return!(_0x1649('0x2')!=_0x5e051a[0x0][_0x1649('0x3')]||!_0x5e051a[0x0][_0x1649('0x7')][_0x1649('0x8')](this[_0x1649('0x4')]))&&(_0x5e051a[0x0][_0x1649('0x7')]=_0x5e051a[0x0][_0x1649('0x7')][_0x1649('0x6')](new RegExp('^'+this[_0x1649('0x4')]),''),super[_0x1649('0x5')](_0x7e2094,_0x5e051a),!0x0);}[_0x1649('0x1')](_0x1936ef,_0xc146e0){super[_0x1649('0x1')](_0x1936ef,_0xc146e0);const _0x578ab9=_0x1936ef[_0x1936ef[_0x1649('0x0')]-0x1];_0x578ab9[_0x1649('0x7')]=this[_0x1649('0x4')]+_0x578ab9[_0x1649('0x7')];}}
|
|
@@ -20,4 +20,4 @@
|
|
|
20
20
|
*
|
|
21
21
|
*
|
|
22
22
|
*/
|
|
23
|
-
const
|
|
23
|
+
const _0x4758=['push','_serializeOneOf','decompress','_deserializeOneOf','newValue','_protobufDescriptor','Json','stringify','shift','parse','boolean','_operationName','types','Boolean'];(function(_0x54fa7c,_0x4758e4){const _0x3348dc=function(_0x2caac7){while(--_0x2caac7){_0x54fa7c['push'](_0x54fa7c['shift']());}};_0x3348dc(++_0x4758e4);}(_0x4758,0x1c9));const _0x3348=function(_0x54fa7c,_0x4758e4){_0x54fa7c=_0x54fa7c-0x0;let _0x3348dc=_0x4758[_0x54fa7c];return _0x3348dc;};import _0x20e69e from'./operationcompressor';import{parsePositionBeforeCompression as _0x4a74dd,parsePositionAfterCompression as _0x372e5b}from'../utils';export default class i extends _0x20e69e{['compress'](_0x3e2382,_0xc6f22b){const _0x4fb628=_0xc6f22b[_0x3348('0xd')]();return this[_0x3348('0x6')]('oldValue',_0x4fb628),this[_0x3348('0x6')](_0x3348('0x9'),_0x4fb628),_0x4a74dd(_0x4fb628),_0x3e2382['buffers']['push'](this[_0x3348('0xa')]['compress'](_0x4fb628)),_0x3e2382[_0x3348('0x3')][_0x3348('0x5')](this['_id']),!0x0;}[_0x3348('0x7')](_0x8120af,_0x184f67){const {types:_0x13c8d4,buffers:_0x54f5b0}=_0x184f67,_0x522ba3=this[_0x3348('0xa')][_0x3348('0x7')](_0x54f5b0[_0x3348('0xd')]());_0x13c8d4[_0x3348('0xd')](),this[_0x3348('0x8')]('oldValue',_0x522ba3),this[_0x3348('0x8')](_0x3348('0x9'),_0x522ba3),_0x372e5b(_0x522ba3),_0x522ba3['__className']=this[_0x3348('0x2')],_0x8120af['push'](_0x522ba3);}[_0x3348('0x6')](_0x45b640,_0x1867a7){const _0x3ad4e5=_0x1867a7[_0x45b640];_0x3348('0x1')==typeof _0x3ad4e5?_0x1867a7[_0x45b640+_0x3348('0x4')]=_0x3ad4e5:_0x1867a7[_0x45b640+'Json']=JSON[_0x3348('0xc')](_0x3ad4e5);}[_0x3348('0x8')](_0x116ed1,_0x15cc3c){const _0x160748=_0x116ed1+_0x3348('0xb');_0x15cc3c[_0x160748]?(_0x15cc3c[_0x116ed1]=JSON[_0x3348('0x0')](_0x15cc3c[_0x160748]),delete _0x15cc3c[_0x160748]):(_0x15cc3c[_0x116ed1]=_0x15cc3c[_0x116ed1+_0x3348('0x4')],delete _0x15cc3c[_0x116ed1+_0x3348('0x4')]);}}
|
|
@@ -20,4 +20,4 @@
|
|
|
20
20
|
*
|
|
21
21
|
*
|
|
22
22
|
*/
|
|
23
|
-
const
|
|
23
|
+
const _0x542b=['stringify','decompress','_protobufDescriptor','_areValuesBoolean','children','__className','push','_id','_deserializeNodesAttributes','shift','keys','_serializeNodesAttributes','attributesBoolean','nodes','attributesJson','attributes','parse','compress','boolean'];(function(_0x5b6c80,_0x542bd6){const _0x5bacd2=function(_0x22408d){while(--_0x22408d){_0x5b6c80['push'](_0x5b6c80['shift']());}};_0x5bacd2(++_0x542bd6);}(_0x542b,0x1e4));const _0x5bac=function(_0x5b6c80,_0x542bd6){_0x5b6c80=_0x5b6c80-0x0;let _0x5bacd2=_0x542b[_0x5b6c80];return _0x5bacd2;};import _0x4ac2f4 from'./operationcompressor';import{parsePositionBeforeCompression as _0x1066e3,parsePositionAfterCompression as _0x265c71}from'../utils';export default class s extends _0x4ac2f4{['compress'](_0x3ef389,_0x21de16){const _0x5920d1=_0x21de16[_0x5bac('0x0')]();return this['_serializeNodesAttributes'](_0x5920d1[_0x5bac('0x4')]),_0x1066e3(_0x5920d1),_0x3ef389['buffers'][_0x5bac('0x10')](this[_0x5bac('0xc')][_0x5bac('0x8')](_0x5920d1)),_0x3ef389['types']['push'](this[_0x5bac('0x11')]),!0x0;}[_0x5bac('0xb')](_0x3ce7e6,_0x53e9c6){const {types:_0x214502,buffers:_0x3a0cd2}=_0x53e9c6,_0x4c3bd2=this[_0x5bac('0xc')]['decompress'](_0x3a0cd2['shift']());_0x214502[_0x5bac('0x0')](),_0x4c3bd2[_0x5bac('0x4')]||(_0x4c3bd2[_0x5bac('0x4')]=[]),this[_0x5bac('0x12')](_0x4c3bd2[_0x5bac('0x4')]),_0x265c71(_0x4c3bd2),_0x4c3bd2[_0x5bac('0xf')]=this['_operationName'],_0x3ce7e6[_0x5bac('0x10')](_0x4c3bd2);}['_serializeNodesAttributes'](_0x4d336e){for(const _0x395c47 of _0x4d336e){if(_0x395c47[_0x5bac('0x6')]){const _0x116e30=_0x395c47[_0x5bac('0x6')];this[_0x5bac('0xd')](_0x116e30)?_0x395c47['attributesBoolean']=_0x116e30:_0x395c47[_0x5bac('0x5')]=JSON[_0x5bac('0xa')](_0x116e30);}_0x395c47[_0x5bac('0xe')]&&this[_0x5bac('0x2')](_0x395c47[_0x5bac('0xe')]);}}['_deserializeNodesAttributes'](_0x442284){for(const _0x58c88f of _0x442284)(_0x58c88f[_0x5bac('0x3')]||_0x58c88f['attributesJson'])&&(_0x58c88f[_0x5bac('0x3')]?(_0x58c88f[_0x5bac('0x6')]=_0x58c88f[_0x5bac('0x3')],delete _0x58c88f['attributesBoolean']):(_0x58c88f['attributes']=JSON[_0x5bac('0x7')](_0x58c88f[_0x5bac('0x5')]),delete _0x58c88f[_0x5bac('0x5')])),_0x58c88f['children']&&this[_0x5bac('0x12')](_0x58c88f[_0x5bac('0xe')]);}['_areValuesBoolean'](_0x189a71){return Object[_0x5bac('0x1')](_0x189a71)['every'](_0xc1dc51=>_0x5bac('0x9')==typeof _0x189a71[_0xc1dc51]);}}
|
|
@@ -20,4 +20,4 @@
|
|
|
20
20
|
*
|
|
21
21
|
*
|
|
22
22
|
*/
|
|
23
|
-
const
|
|
23
|
+
const _0xa426=['decompress','newRange'];(function(_0x8ecf39,_0xa426f2){const _0xedb079=function(_0x1b696e){while(--_0x1b696e){_0x8ecf39['push'](_0x8ecf39['shift']());}};_0xedb079(++_0xa426f2);}(_0xa426,0x89));const _0xedb0=function(_0x8ecf39,_0xa426f2){_0x8ecf39=_0x8ecf39-0x0;let _0xedb079=_0xa426[_0x8ecf39];return _0xedb079;};import _0xde054d from'./operationcompressor';export default class n extends _0xde054d{['decompress'](_0x1147f5,_0x31b8ed){super[_0xedb0('0x1')](_0x1147f5,_0x31b8ed);const _0x110bf5=_0x1147f5[_0x1147f5['length']-0x1];_0x110bf5['oldRange']||(_0x110bf5['oldRange']=null),_0x110bf5[_0xedb0('0x0')]||(_0x110bf5['newRange']=null);}}
|
|
@@ -20,4 +20,4 @@
|
|
|
20
20
|
*
|
|
21
21
|
*
|
|
22
22
|
*/
|
|
23
|
-
var
|
|
23
|
+
var _0x61d6=['decompress','shift','compress','_id','_operationName','push'];(function(_0x3082fc,_0x61d67d){var _0x39fac1=function(_0x76e24b){while(--_0x76e24b){_0x3082fc['push'](_0x3082fc['shift']());}};_0x39fac1(++_0x61d67d);}(_0x61d6,0x12f));var _0x39fa=function(_0x3082fc,_0x61d67d){_0x3082fc=_0x3082fc-0x0;var _0x39fac1=_0x61d6[_0x3082fc];return _0x39fac1;};import _0x49b914 from'./operationcompressor';export default class p extends _0x49b914{[_0x39fa('0x5')](_0x150cdc,_0xc5fed){return _0xc5fed[_0x39fa('0x4')](),_0x150cdc['types'][_0x39fa('0x2')](this[_0x39fa('0x0')]),!0x0;}[_0x39fa('0x3')](_0x66183d,_0x23c3c3){_0x23c3c3['types']['shift'](),_0x66183d['push']({'__className':this[_0x39fa('0x1')]});}}
|
|
@@ -20,4 +20,4 @@
|
|
|
20
20
|
*
|
|
21
21
|
*
|
|
22
22
|
*/
|
|
23
|
-
const
|
|
23
|
+
const _0x3199=['compress','push','_operationName','buffers','shift','decompress','_protobufDescriptor','types','_id','__className'];(function(_0x227638,_0x3199c1){const _0x800ec9=function(_0x188099){while(--_0x188099){_0x227638['push'](_0x227638['shift']());}};_0x800ec9(++_0x3199c1);}(_0x3199,0xf4));const _0x800e=function(_0x227638,_0x3199c1){_0x227638=_0x227638-0x0;let _0x800ec9=_0x3199[_0x227638];return _0x800ec9;};import{parsePositionBeforeCompression as _0x46273c,parsePositionAfterCompression as _0x13afb3}from'../utils';export default class e{constructor(_0x165f29,_0x8a62d,_0x3bd2bf){this[_0x800e('0x4')]=_0x165f29,this[_0x800e('0x8')]=_0x8a62d,this[_0x800e('0x2')]=_0x3bd2bf;}[_0x800e('0x6')](_0x2c23c0,_0x16c236){const _0x15c8af=_0x16c236['shift']();return _0x46273c(_0x15c8af),_0x2c23c0['buffers'][_0x800e('0x7')](this[_0x800e('0x2')]['compress'](_0x15c8af)),_0x2c23c0[_0x800e('0x3')][_0x800e('0x7')](this[_0x800e('0x4')]),!0x0;}['decompress'](_0x24808c,_0x386ef1){_0x386ef1[_0x800e('0x3')][_0x800e('0x0')]();const _0x575814=this[_0x800e('0x2')][_0x800e('0x1')](_0x386ef1[_0x800e('0x9')]['shift']());_0x13afb3(_0x575814),_0x575814[_0x800e('0x5')]=this['_operationName'],_0x24808c['push'](_0x575814);}}
|
|
@@ -20,4 +20,4 @@
|
|
|
20
20
|
*
|
|
21
21
|
*
|
|
22
22
|
*/
|
|
23
|
-
var
|
|
23
|
+
var _0xf112=['repeated','exports','bool','Position','Element','uint32','string','Range'];(function(_0xbd59e3,_0xf1125b){var _0x63c908=function(_0x2675af){while(--_0x2675af){_0xbd59e3['push'](_0xbd59e3['shift']());}};_0x63c908(++_0xf1125b);}(_0xf112,0x95));var _0x63c9=function(_0xbd59e3,_0xf1125b){_0xbd59e3=_0xbd59e3-0x0;var _0x63c908=_0xf112[_0xbd59e3];return _0x63c908;};'use strict';module[_0x63c9('0x4')]={'AttributeOperation':{'fields':{'range':{'type':_0x63c9('0x2'),'id':0x1},'key':{'type':_0x63c9('0x1'),'id':0x2},'oldValueBoolean':{'type':_0x63c9('0x5'),'id':0x3},'oldValueJson':{'type':'string','id':0x4},'newValueBoolean':{'type':'bool','id':0x5},'newValueJson':{'type':_0x63c9('0x1'),'id':0x6},'wasUndone':{'type':'bool','id':0x7}}},'InsertOperation':{'fields':{'position':{'type':_0x63c9('0x6'),'id':0x1},'nodes':{'rule':_0x63c9('0x3'),'type':_0x63c9('0x7'),'id':0x2},'shouldReceiveAttributes':{'type':'bool','id':0x3},'wasUndone':{'type':_0x63c9('0x5'),'id':0x4}}},'MarkerOperation':{'fields':{'name':{'type':_0x63c9('0x1'),'id':0x1},'oldRange':{'type':_0x63c9('0x2'),'id':0x2},'newRange':{'type':_0x63c9('0x2'),'id':0x3},'affectsData':{'type':_0x63c9('0x5'),'id':0x4},'wasUndone':{'type':_0x63c9('0x5'),'id':0x5}}},'MergeOperation':{'fields':{'sourcePosition':{'type':'Position','id':0x1},'targetPosition':{'type':_0x63c9('0x6'),'id':0x2},'graveyardPosition':{'type':_0x63c9('0x6'),'id':0x3},'howMany':{'type':_0x63c9('0x0'),'id':0x4},'wasUndone':{'type':_0x63c9('0x5'),'id':0x5}}},'MoveOperation':{'fields':{'sourcePosition':{'type':_0x63c9('0x6'),'id':0x1},'howMany':{'type':_0x63c9('0x0'),'id':0x2},'targetPosition':{'type':_0x63c9('0x6'),'id':0x3},'wasUndone':{'type':_0x63c9('0x5'),'id':0x4}}},'RenameOperation':{'fields':{'position':{'type':_0x63c9('0x6'),'id':0x1},'oldName':{'type':'string','id':0x2},'newName':{'type':_0x63c9('0x1'),'id':0x3},'wasUndone':{'type':_0x63c9('0x5'),'id':0x4}}},'RootAttributeOperation':{'fields':{'root':{'type':'string','id':0x1},'key':{'type':_0x63c9('0x1'),'id':0x2},'oldValueBoolean':{'type':_0x63c9('0x5'),'id':0x3},'oldValueJson':{'type':_0x63c9('0x1'),'id':0x4},'newValueBoolean':{'type':_0x63c9('0x5'),'id':0x5},'newValueJson':{'type':_0x63c9('0x1'),'id':0x6},'wasUndone':{'type':_0x63c9('0x5'),'id':0x7}}},'RootOperation':{'fields':{'rootName':{'type':_0x63c9('0x1'),'id':0x1},'elementName':{'type':'string','id':0x2},'isAdd':{'type':'bool','id':0x3},'wasUndone':{'type':_0x63c9('0x5'),'id':0x4}}},'SplitOperation':{'fields':{'splitPosition':{'type':'Position','id':0x1},'graveyardPosition':{'type':_0x63c9('0x6'),'id':0x2},'howMany':{'type':_0x63c9('0x0'),'id':0x3},'insertionPosition':{'type':_0x63c9('0x6'),'id':0x4},'wasUndone':{'type':_0x63c9('0x5'),'id':0x5}}},'Position':{'fields':{'root':{'type':_0x63c9('0x1'),'id':0x1},'rootMain':{'type':'bool','id':0x2},'rootGraveyard':{'type':_0x63c9('0x5'),'id':0x3},'path':{'rule':_0x63c9('0x3'),'type':_0x63c9('0x0'),'id':0x4},'stickiness':{'type':_0x63c9('0x1'),'id':0x5}}},'Range':{'fields':{'start':{'type':'Position','id':0x1},'end':{'type':_0x63c9('0x6'),'id':0x2}}},'Element':{'fields':{'name':{'type':_0x63c9('0x1'),'id':0x1},'children':{'rule':'repeated','type':_0x63c9('0x7'),'id':0x2},'data':{'type':_0x63c9('0x1'),'id':0x3},'attributesBoolean':{'keyType':_0x63c9('0x1'),'type':'bool','id':0x4},'attributesJson':{'type':_0x63c9('0x1'),'id':0x5}}}};
|
package/src/protobuffactory.js
CHANGED
|
@@ -20,4 +20,4 @@
|
|
|
20
20
|
*
|
|
21
21
|
*
|
|
22
22
|
*/
|
|
23
|
-
const
|
|
23
|
+
const _0x1122=['verify','getDescriptor','encode','toObject','_protobufRoot','_protobuf','decompress','finish','decode'];(function(_0x2e942b,_0x1122f1){const _0x464ae0=function(_0x562368){while(--_0x562368){_0x2e942b['push'](_0x2e942b['shift']());}};_0x464ae0(++_0x1122f1);}(_0x1122,0x127));const _0x464a=function(_0x2e942b,_0x1122f1){_0x2e942b=_0x2e942b-0x0;let _0x464ae0=_0x1122[_0x2e942b];return _0x464ae0;};import*as _0x324b11 from'./lib/compiledmessages';export default class r{constructor(){this['_protobufRoot']=_0x324b11;}[_0x464a('0x3')](_0x20cc09){return new ProtobufDescriptor(this[_0x464a('0x6')][_0x20cc09]);}}export class ProtobufDescriptor{constructor(_0x302b25){this['_protobuf']=_0x302b25;}['compress'](_0x20b105){const _0xa9cda8=this[_0x464a('0x7')][_0x464a('0x2')](_0x20b105);if(_0xa9cda8)throw Error(_0xa9cda8);return this[_0x464a('0x7')][_0x464a('0x4')](this[_0x464a('0x7')]['create'](_0x20b105))[_0x464a('0x0')]();}[_0x464a('0x8')](_0x5c503d){return this[_0x464a('0x7')][_0x464a('0x5')](this[_0x464a('0x7')][_0x464a('0x1')](_0x5c503d),{'oneofs':!0x0});}}
|
package/src/utils.js
CHANGED
|
@@ -20,4 +20,4 @@
|
|
|
20
20
|
*
|
|
21
21
|
*
|
|
22
22
|
*/
|
|
23
|
-
const
|
|
23
|
+
const _0x36e7=['length','rootMain','root','path','main','$graveyard','rootGraveyard'];(function(_0xc36636,_0x36e7b0){const _0x42c67e=function(_0x2ecfd3){while(--_0x2ecfd3){_0xc36636['push'](_0xc36636['shift']());}};_0x42c67e(++_0x36e7b0);}(_0x36e7,0x97));const _0x42c6=function(_0xc36636,_0x36e7b0){_0xc36636=_0xc36636-0x0;let _0x42c67e=_0x36e7[_0xc36636];return _0x42c67e;};import{cloneDeep as _0x3cbaea,isEqual as _0x1be6bb,isObject as _0x48b4ea}from'lodash-es';export function getPositionShiftedBy(_0x1bc894,_0x2d65ba){const _0x288a11=_0x3cbaea(_0x1bc894);return _0x288a11['path'][_0x288a11['path'][_0x42c6('0x3')]-0x1]+=_0x2d65ba,_0x288a11;}export function arePositionsEqual(_0x2c425d,_0x4d3ed6){return _0x2c425d['root']===_0x4d3ed6[_0x42c6('0x5')]&&_0x1be6bb(_0x2c425d['path'],_0x4d3ed6[_0x42c6('0x6')]);}export function parsePositionBeforeCompression(_0x1a0963){P(_0x1a0963,_0x5e4f65=>(_0x42c6('0x0')==_0x5e4f65['root']?(_0x5e4f65[_0x42c6('0x4')]=!0x0,delete _0x5e4f65[_0x42c6('0x5')]):_0x42c6('0x1')==_0x5e4f65[_0x42c6('0x5')]&&(_0x5e4f65[_0x42c6('0x2')]=!0x0,delete _0x5e4f65[_0x42c6('0x5')]),_0x5e4f65));}export function parsePositionAfterCompression(_0xe7dba2){P(_0xe7dba2,_0x21ea9a=>(_0x21ea9a[_0x42c6('0x4')]?(_0x21ea9a['root']='main',delete _0x21ea9a[_0x42c6('0x4')]):_0x21ea9a[_0x42c6('0x2')]&&(_0x21ea9a[_0x42c6('0x5')]=_0x42c6('0x1'),delete _0x21ea9a[_0x42c6('0x2')]),_0x21ea9a));}function P(_0x271ad2,_0x4f09bc){for(const _0x224d09 in _0x271ad2){const _0x4656a3=_0x271ad2[_0x224d09];'nodes'!==_0x224d09&&_0x48b4ea(_0x4656a3)&&(_0x4656a3['path']&&(_0x4656a3[_0x42c6('0x5')]||_0x4656a3[_0x42c6('0x4')]||_0x4656a3[_0x42c6('0x2')])?_0x271ad2[_0x224d09]=_0x4f09bc(_0x4656a3):P(_0x4656a3,_0x4f09bc));}return _0x271ad2;}
|